mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
Add inlining threshold to log output.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98024 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
35071a0847
commit
2ddbf8208e
@ -219,8 +219,10 @@ bool Inliner::shouldInline(CallSite CS) {
|
||||
Function *Caller = CS.getCaller();
|
||||
int CurrentThreshold = getInlineThreshold(CS);
|
||||
float FudgeFactor = getInlineFudgeFactor(CS);
|
||||
if (Cost >= (int)(CurrentThreshold * FudgeFactor)) {
|
||||
int AdjThreshold = (int)(CurrentThreshold * FudgeFactor);
|
||||
if (Cost >= AdjThreshold) {
|
||||
DEBUG(dbgs() << " NOT Inlining: cost=" << Cost
|
||||
<< ", thres=" << AdjThreshold
|
||||
<< ", Call: " << *CS.getInstruction() << "\n");
|
||||
return false;
|
||||
}
|
||||
@ -285,6 +287,7 @@ bool Inliner::shouldInline(CallSite CS) {
|
||||
}
|
||||
|
||||
DEBUG(dbgs() << " Inlining: cost=" << Cost
|
||||
<< ", thres=" << AdjThreshold
|
||||
<< ", Call: " << *CS.getInstruction() << '\n');
|
||||
return true;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user