Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.def457 COMPATIBLE_VALUE_LANGOPT(FunctionAlignment, 5, 0, "Default alignment for functions")
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DClang.cpp5502 unsigned FunctionAlignment = ParseFunctionAlignment(TC, Args); in ConstructJob() local
5503 assert(FunctionAlignment <= 31 && "function alignment will be truncated!"); in ConstructJob()
5504 if (FunctionAlignment) { in ConstructJob()
5506 CmdArgs.push_back(Args.MakeArgString(std::to_string(FunctionAlignment))); in ConstructJob()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp2560 if (LangOpts.FunctionAlignment) in SetLLVMFunctionAttributesForDefinition()
2561 F->setAlignment(llvm::Align(1ull << LangOpts.FunctionAlignment)); in SetLLVMFunctionAttributesForDefinition()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp1464 const Align FunctionAlignment(Subtarget.hasStdExtCOrZca() ? 2 : 4); in RISCVTargetLowering()
1465 setMinFunctionAlignment(FunctionAlignment); in RISCVTargetLowering()
1463 const Align FunctionAlignment(Subtarget.hasStdExtCOrZca() ? 2 : 4); RISCVTargetLowering() local
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td7873 MarshallingInfoInt<LangOpts<"FunctionAlignment">>;