Home
last modified time | relevance | path

Searched refs:FunctionAlignment (Results 1 – 5 of 5) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp164 unsigned FunctionAlignment = Subtarget.hasStdExtC() ? 1 : 2; in RISCVTargetLowering() local
165 setMinFunctionAlignment(FunctionAlignment); in RISCVTargetLowering()
166 setPrefFunctionAlignment(FunctionAlignment); in RISCVTargetLowering()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DLangOptions.def312 COMPATIBLE_VALUE_LANGOPT(FunctionAlignment, 5, 0, "Default alignment for functions")
/freebsd-12.1/contrib/llvm/tools/clang/lib/Driver/ToolChains/
H A DClang.cpp3776 unsigned FunctionAlignment = ParseFunctionAlignment(TC, Args); in ConstructJob() local
3777 assert(FunctionAlignment <= 31 && "function alignment will be truncated!"); in ConstructJob()
3778 if (FunctionAlignment) { in ConstructJob()
3780 CmdArgs.push_back(Args.MakeArgString(std::to_string(FunctionAlignment))); in ConstructJob()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenModule.cpp1344 if (LangOpts.FunctionAlignment) in SetLLVMFunctionAttributesForDefinition()
1345 F->setAlignment(1 << LangOpts.FunctionAlignment); in SetLLVMFunctionAttributesForDefinition()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DCompilerInvocation.cpp3307 LangOpts.FunctionAlignment = in CreateFromArgs()