Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineFunction.cpp384 const Align FunctionAlignment = getAlignment(); in estimateFunctionSizeInBytes() local
399 if (Alignment <= FunctionAlignment) { in estimateFunctionSizeInBytes()
405 FunctionAlignment.value(); in estimateFunctionSizeInBytes()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.def425 VALUE_LANGOPT(FunctionAlignment, 5, 0, Compatible, "Default alignment for functions")
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DClang.cpp5517 unsigned FunctionAlignment = ParseFunctionAlignment(TC, Args); in ConstructJob() local
5518 assert(FunctionAlignment <= 31 && "function alignment will be truncated!"); in ConstructJob()
5519 if (FunctionAlignment) { in ConstructJob()
5521 CmdArgs.push_back(Args.MakeArgString(std::to_string(FunctionAlignment))); in ConstructJob()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp2766 if (LangOpts.FunctionAlignment) in SetLLVMFunctionAttributesForDefinition()
2767 F->setAlignment(llvm::Align(1ull << LangOpts.FunctionAlignment)); in SetLLVMFunctionAttributesForDefinition()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp1619 const Align FunctionAlignment(Subtarget.hasStdExtZca() ? 2 : 4); in RISCVTargetLowering() local
1620 setMinFunctionAlignment(FunctionAlignment); in RISCVTargetLowering()
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td8415 MarshallingInfoInt<LangOpts<"FunctionAlignment">>;