summaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO/Inliner.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-04-22 23:37:35 +0000
committerChris Lattner <sabre@nondot.org>2010-04-22 23:37:35 +0000
commitfe9af3b1f7e5d68ecc330bdf4f047d76838f8cc3 (patch)
treed106def385fa1eec7fe9778021359c2f1987cf0b /lib/Transforms/IPO/Inliner.cpp
parent3a1287b470bde29d10e7c6998fb69b74d2265b6c (diff)
downloadllvm-fe9af3b1f7e5d68ecc330bdf4f047d76838f8cc3.tar.gz
llvm-fe9af3b1f7e5d68ecc330bdf4f047d76838f8cc3.tar.bz2
llvm-fe9af3b1f7e5d68ecc330bdf4f047d76838f8cc3.tar.xz
The inliner was choosing to not consider call sites
that appear in the SCC as a result of inlining as candidates for inlining. Change this so that it *does* consider call sites that change from being indirect to being direct as a result of inlining. This allows it to completely "devirtualize" the testcase. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102146 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/IPO/Inliner.cpp')
-rw-r--r--lib/Transforms/IPO/Inliner.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/Transforms/IPO/Inliner.cpp b/lib/Transforms/IPO/Inliner.cpp
index 19b65e8e1f..1de7b0753d 100644
--- a/lib/Transforms/IPO/Inliner.cpp
+++ b/lib/Transforms/IPO/Inliner.cpp
@@ -383,11 +383,17 @@ bool Inliner::runOnSCC(CallGraphSCC &SCC) {
if (!shouldInline(CS))
continue;
- // Attempt to inline the function...
+ // Attempt to inline the function.
if (!InlineCallIfPossible(CS, InlineInfo, InlinedArrayAllocas))
continue;
++NumInlined;
+ // If inlining this function devirtualized any call sites, throw them
+ // onto our worklist to process. They are useful inline candidates.
+ for (unsigned i = 0, e = InlineInfo.DevirtualizedCalls.size();
+ i != e; ++i)
+ CallSites.push_back(CallSite(InlineInfo.DevirtualizedCalls[i]));
+
// Update the cached cost info with the inlined call.
growCachedCostInfo(Caller, Callee);
}