Searched refs:FunctionAlignment (Results 1 – 5 of 5) sorted by relevance
399 COMPATIBLE_VALUE_LANGOPT(FunctionAlignment, 5, 0, "Default alignment for functions")
4718 unsigned FunctionAlignment = ParseFunctionAlignment(TC, Args); in ConstructJob() local4719 assert(FunctionAlignment <= 31 && "function alignment will be truncated!"); in ConstructJob()4720 if (FunctionAlignment) { in ConstructJob()4722 CmdArgs.push_back(Args.MakeArgString(std::to_string(FunctionAlignment))); in ConstructJob()
1878 if (LangOpts.FunctionAlignment) in SetLLVMFunctionAttributesForDefinition()1879 F->setAlignment(llvm::Align(1ull << LangOpts.FunctionAlignment)); in SetLLVMFunctionAttributesForDefinition()
846 const Align FunctionAlignment(Subtarget.hasStdExtC() ? 2 : 4); in RISCVTargetLowering() local847 setMinFunctionAlignment(FunctionAlignment); in RISCVTargetLowering()848 setPrefFunctionAlignment(FunctionAlignment); in RISCVTargetLowering()
5521 MarshallingInfoInt<LangOpts<"FunctionAlignment">>;