Searched refs:FunctionAlignment (Results 1 – 5 of 5) sorted by relevance
164 unsigned FunctionAlignment = Subtarget.hasStdExtC() ? 1 : 2; in RISCVTargetLowering() local165 setMinFunctionAlignment(FunctionAlignment); in RISCVTargetLowering()166 setPrefFunctionAlignment(FunctionAlignment); in RISCVTargetLowering()
312 COMPATIBLE_VALUE_LANGOPT(FunctionAlignment, 5, 0, "Default alignment for functions")
3776 unsigned FunctionAlignment = ParseFunctionAlignment(TC, Args); in ConstructJob() local3777 assert(FunctionAlignment <= 31 && "function alignment will be truncated!"); in ConstructJob()3778 if (FunctionAlignment) { in ConstructJob()3780 CmdArgs.push_back(Args.MakeArgString(std::to_string(FunctionAlignment))); in ConstructJob()
1344 if (LangOpts.FunctionAlignment) in SetLLVMFunctionAttributesForDefinition()1345 F->setAlignment(1 << LangOpts.FunctionAlignment); in SetLLVMFunctionAttributesForDefinition()
3307 LangOpts.FunctionAlignment = in CreateFromArgs()