Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Target/CSKY/
H A DCSKYISelLowering.cpp156 const Align FunctionAlignment(2); in CSKYTargetLowering() local
157 setMinFunctionAlignment(FunctionAlignment); in CSKYTargetLowering()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DLangOptions.def421 COMPATIBLE_VALUE_LANGOPT(FunctionAlignment, 5, 0, "Default alignment for functions")
/openbsd-src/gnu/llvm/llvm/lib/Target/LoongArch/
H A DLoongArchISelLowering.cpp198 const Align FunctionAlignment(4); in LoongArchTargetLowering() local
199 setMinFunctionAlignment(FunctionAlignment); in LoongArchTargetLowering()
/openbsd-src/gnu/llvm/clang/lib/Driver/ToolChains/
H A 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/
H A 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/
H A 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/
H A DOptions.td6214 MarshallingInfoInt<LangOpts<"FunctionAlignment">>;