Searched refs:FunctionAlignment (Results 1 – 6 of 6) sorted by relevance
384 const Align FunctionAlignment = getAlignment(); in estimateFunctionSizeInBytes() local399 if (Alignment <= FunctionAlignment) { in estimateFunctionSizeInBytes()405 FunctionAlignment.value(); in estimateFunctionSizeInBytes()
425 VALUE_LANGOPT(FunctionAlignment, 5, 0, Compatible, "Default alignment for functions")
5517 unsigned FunctionAlignment = ParseFunctionAlignment(TC, Args); in ConstructJob() local5518 assert(FunctionAlignment <= 31 && "function alignment will be truncated!"); in ConstructJob()5519 if (FunctionAlignment) { in ConstructJob()5521 CmdArgs.push_back(Args.MakeArgString(std::to_string(FunctionAlignment))); in ConstructJob()
2766 if (LangOpts.FunctionAlignment) in SetLLVMFunctionAttributesForDefinition()2767 F->setAlignment(llvm::Align(1ull << LangOpts.FunctionAlignment)); in SetLLVMFunctionAttributesForDefinition()
1619 const Align FunctionAlignment(Subtarget.hasStdExtZca() ? 2 : 4); in RISCVTargetLowering() local1620 setMinFunctionAlignment(FunctionAlignment); in RISCVTargetLowering()
8415 MarshallingInfoInt<LangOpts<"FunctionAlignment">>;