Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.def399 COMPATIBLE_VALUE_LANGOPT(FunctionAlignment, 5, 0, "Default alignment for functions")
/freebsd-13.1/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DClang.cpp4718 unsigned FunctionAlignment = ParseFunctionAlignment(TC, Args); in ConstructJob() local
4719 assert(FunctionAlignment <= 31 && "function alignment will be truncated!"); in ConstructJob()
4720 if (FunctionAlignment) { in ConstructJob()
4722 CmdArgs.push_back(Args.MakeArgString(std::to_string(FunctionAlignment))); in ConstructJob()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp1878 if (LangOpts.FunctionAlignment) in SetLLVMFunctionAttributesForDefinition()
1879 F->setAlignment(llvm::Align(1ull << LangOpts.FunctionAlignment)); in SetLLVMFunctionAttributesForDefinition()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp846 const Align FunctionAlignment(Subtarget.hasStdExtC() ? 2 : 4); in RISCVTargetLowering() local
847 setMinFunctionAlignment(FunctionAlignment); in RISCVTargetLowering()
848 setPrefFunctionAlignment(FunctionAlignment); in RISCVTargetLowering()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td5521 MarshallingInfoInt<LangOpts<"FunctionAlignment">>;