Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/clang/include/clang/Basic/
DLangOptions.def421 COMPATIBLE_VALUE_LANGOPT(FunctionAlignment, 5, 0, "Default alignment for functions")
/openbsd/src/gnu/llvm/clang/lib/Driver/ToolChains/
DClang.cpp5022 unsigned FunctionAlignment = ParseFunctionAlignment(TC, Args); in ConstructJob() local
5023 assert(FunctionAlignment <= 31 && "function alignment will be truncated!"); in ConstructJob()
5024 if (FunctionAlignment) { in ConstructJob()
5026 CmdArgs.push_back(Args.MakeArgString(std::to_string(FunctionAlignment))); in ConstructJob()
/openbsd/src/gnu/llvm/clang/lib/CodeGen/
DCodeGenModule.cpp2127 if (LangOpts.FunctionAlignment) in SetLLVMFunctionAttributesForDefinition()
2128 F->setAlignment(llvm::Align(1ull << LangOpts.FunctionAlignment)); in SetLLVMFunctionAttributesForDefinition()
/openbsd/src/gnu/llvm/llvm/lib/Target/RISCV/
DRISCVISelLowering.cpp998 const Align FunctionAlignment(Subtarget.hasStdExtCOrZca() ? 2 : 4); in RISCVTargetLowering() local
999 setMinFunctionAlignment(FunctionAlignment); in RISCVTargetLowering()
1000 setPrefFunctionAlignment(FunctionAlignment); in RISCVTargetLowering()
/openbsd/src/gnu/llvm/clang/include/clang/Driver/
DOptions.td6214 MarshallingInfoInt<LangOpts<"FunctionAlignment">>;