mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-23 17:24:48 +00:00
Move duplicated code into a helper function (exposed through overload).
There's a bit of duplicated "magic" code in opt.cpp and Clang's CodeGen that computes the inliner threshold from opt level and size opt level. This patch moves the code to a function that lives alongside the inliner itself, providing a convenient overload to the inliner creation. A separate patch can be committed to Clang to use this once it's committed to LLVM. Standalone tools that use the inlining pass can also avoid duplicating this code and fearing it will go out of sync. Note: this patch also restructures the conditinal logic of the computation to be cleaner. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203669 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -210,14 +210,7 @@ static void AddOptimizationPasses(PassManagerBase &MPM,FunctionPassManager &FPM,
|
||||
if (DisableInline) {
|
||||
// No inlining pass
|
||||
} else if (OptLevel > 1) {
|
||||
unsigned Threshold = 225;
|
||||
if (SizeLevel == 1) // -Os
|
||||
Threshold = 75;
|
||||
else if (SizeLevel == 2) // -Oz
|
||||
Threshold = 25;
|
||||
if (OptLevel > 2)
|
||||
Threshold = 275;
|
||||
Builder.Inliner = createFunctionInliningPass(Threshold);
|
||||
Builder.Inliner = createFunctionInliningPass(OptLevel, SizeLevel);
|
||||
} else {
|
||||
Builder.Inliner = createAlwaysInlinerPass();
|
||||
}
|
||||
|
Reference in New Issue
Block a user