Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DLangOptions.def393 COMPATIBLE_VALUE_LANGOPT(FunctionAlignment, 5, 0, "Default alignment for functions")
/netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
H A DClang.cpp4701 unsigned FunctionAlignment = ParseFunctionAlignment(TC, Args); in ConstructJob() local
4702 assert(FunctionAlignment <= 31 && "function alignment will be truncated!"); in ConstructJob()
4703 if (FunctionAlignment) { in ConstructJob()
4705 CmdArgs.push_back(Args.MakeArgString(std::to_string(FunctionAlignment))); in ConstructJob()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCodeGenModule.cpp1848 if (LangOpts.FunctionAlignment) in SetLLVMFunctionAttributesForDefinition()
1849 F->setAlignment(llvm::Align(1ull << LangOpts.FunctionAlignment)); in SetLLVMFunctionAttributesForDefinition()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp801 const Align FunctionAlignment(Subtarget.hasStdExtC() ? 2 : 4); in RISCVTargetLowering() local
802 setMinFunctionAlignment(FunctionAlignment); in RISCVTargetLowering()
803 setPrefFunctionAlignment(FunctionAlignment); in RISCVTargetLowering()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Driver/
H A DOptions.td5457 MarshallingInfoInt<LangOpts<"FunctionAlignment">>;