Searched refs:FunctionAlignment (Results 1 – 5 of 5) sorted by relevance
440 COMPATIBLE_VALUE_LANGOPT(FunctionAlignment, 5, 0, "Default alignment for functions")
5247 unsigned FunctionAlignment = ParseFunctionAlignment(TC, Args); in ConstructJob() local5248 assert(FunctionAlignment <= 31 && "function alignment will be truncated!"); in ConstructJob()5249 if (FunctionAlignment) { in ConstructJob()5251 CmdArgs.push_back(Args.MakeArgString(std::to_string(FunctionAlignment))); in ConstructJob()
2526 if (LangOpts.FunctionAlignment) in SetLLVMFunctionAttributesForDefinition()2527 F->setAlignment(llvm::Align(1ull << LangOpts.FunctionAlignment)); in SetLLVMFunctionAttributesForDefinition()
1371 const Align FunctionAlignment(Subtarget.hasStdExtCOrZca() ? 2 : 4); in RISCVTargetLowering() local1372 setMinFunctionAlignment(FunctionAlignment); in RISCVTargetLowering()
7559 MarshallingInfoInt<LangOpts<"FunctionAlignment">>;