Searched refs:FunctionAlignment (Results 1 – 7 of 7) sorted by relevance
156 const Align FunctionAlignment(2); in CSKYTargetLowering() local157 setMinFunctionAlignment(FunctionAlignment); in CSKYTargetLowering()
421 COMPATIBLE_VALUE_LANGOPT(FunctionAlignment, 5, 0, "Default alignment for functions")
198 const Align FunctionAlignment(4); in LoongArchTargetLowering() local199 setMinFunctionAlignment(FunctionAlignment); in LoongArchTargetLowering()
5022 unsigned FunctionAlignment = ParseFunctionAlignment(TC, Args); in ConstructJob() local5023 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()
2127 if (LangOpts.FunctionAlignment) in SetLLVMFunctionAttributesForDefinition()2128 F->setAlignment(llvm::Align(1ull << LangOpts.FunctionAlignment)); in SetLLVMFunctionAttributesForDefinition()
998 const Align FunctionAlignment(Subtarget.hasStdExtCOrZca() ? 2 : 4); in RISCVTargetLowering() local999 setMinFunctionAlignment(FunctionAlignment); in RISCVTargetLowering()1000 setPrefFunctionAlignment(FunctionAlignment); in RISCVTargetLowering()
6214 MarshallingInfoInt<LangOpts<"FunctionAlignment">>;