Searched refs:FunctionAlignment (Results 1 – 7 of 7) sorted by relevance
102 const Align FunctionAlignment(4); in LoongArchTargetLowering() local103 setMinFunctionAlignment(FunctionAlignment); in LoongArchTargetLowering()
153 const Align FunctionAlignment(2); in CSKYTargetLowering() local154 setMinFunctionAlignment(FunctionAlignment); in CSKYTargetLowering()
418 COMPATIBLE_VALUE_LANGOPT(FunctionAlignment, 5, 0, "Default alignment for functions")
4988 unsigned FunctionAlignment = ParseFunctionAlignment(TC, Args); in ConstructJob() local4989 assert(FunctionAlignment <= 31 && "function alignment will be truncated!"); in ConstructJob()4990 if (FunctionAlignment) { in ConstructJob()4992 CmdArgs.push_back(Args.MakeArgString(std::to_string(FunctionAlignment))); in ConstructJob()
2058 if (LangOpts.FunctionAlignment) in SetLLVMFunctionAttributesForDefinition()2059 F->setAlignment(llvm::Align(1ull << LangOpts.FunctionAlignment)); in SetLLVMFunctionAttributesForDefinition()
932 const Align FunctionAlignment(Subtarget.hasStdExtC() ? 2 : 4); in RISCVTargetLowering() local933 setMinFunctionAlignment(FunctionAlignment); in RISCVTargetLowering()934 setPrefFunctionAlignment(FunctionAlignment); in RISCVTargetLowering()
6014 MarshallingInfoInt<LangOpts<"FunctionAlignment">>;