blob: ca8eec48b4a7b75e7a9ab741f057fae0de537c73 [file] [log] [blame]
Chris Lattner7d30a6c2004-06-20 04:11:48 +00001//===- Inliner.cpp - Code common to all inliners --------------------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattnerd075cc22003-08-31 19:10:30 +00009//
Chris Lattner6754b822004-05-23 21:22:17 +000010// This file implements the mechanics required to implement inlining without
11// missing any calls and updating the call graph. The decisions of which calls
12// are profitable to inline are implemented elsewhere.
Chris Lattnerd075cc22003-08-31 19:10:30 +000013//
14//===----------------------------------------------------------------------===//
15
Chris Lattner1631bcb2006-12-19 22:09:18 +000016#define DEBUG_TYPE "inline"
Chris Lattnerd075cc22003-08-31 19:10:30 +000017#include "llvm/Module.h"
Misha Brukman63b38bd2004-07-29 17:30:56 +000018#include "llvm/Instructions.h"
Chris Lattnerd075cc22003-08-31 19:10:30 +000019#include "llvm/Analysis/CallGraph.h"
20#include "llvm/Support/CallSite.h"
Chris Lattnerf94bed32007-01-30 23:28:39 +000021#include "llvm/Target/TargetData.h"
Tanya Lattnerab11b1c2007-06-19 22:29:50 +000022#include "llvm/Transforms/IPO/InlinerPass.h"
Chris Lattnerd075cc22003-08-31 19:10:30 +000023#include "llvm/Transforms/Utils/Cloning.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000024#include "llvm/Support/CommandLine.h"
25#include "llvm/Support/Debug.h"
26#include "llvm/ADT/Statistic.h"
Chris Lattner6754b822004-05-23 21:22:17 +000027#include <set>
Chris Lattnera82f1312003-11-21 21:45:31 +000028using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000029
Chris Lattner1631bcb2006-12-19 22:09:18 +000030STATISTIC(NumInlined, "Number of functions inlined");
31STATISTIC(NumDeleted, "Number of functions deleted because all callers found");
32
Chris Lattnerd075cc22003-08-31 19:10:30 +000033namespace {
Chris Lattnerd075cc22003-08-31 19:10:30 +000034 cl::opt<unsigned> // FIXME: 200 is VERY conservative
35 InlineLimit("inline-threshold", cl::Hidden, cl::init(200),
Chris Lattner49c4d532006-01-13 18:06:56 +000036 cl::desc("Control the amount of inlining to perform (default = 200)"));
Chris Lattnerd075cc22003-08-31 19:10:30 +000037}
38
Chris Lattner3b6f75c2007-05-06 23:13:56 +000039Inliner::Inliner(const void *ID)
40 : CallGraphSCCPass((intptr_t)ID), InlineThreshold(InlineLimit) {}
Chris Lattnerd075cc22003-08-31 19:10:30 +000041
Chris Lattnerf94bed32007-01-30 23:28:39 +000042/// getAnalysisUsage - For this class, we declare that we require and preserve
43/// the call graph. If the derived class implements this method, it should
44/// always explicitly call the implementation here.
45void Inliner::getAnalysisUsage(AnalysisUsage &Info) const {
46 Info.addRequired<TargetData>();
47 CallGraphSCCPass::getAnalysisUsage(Info);
48}
49
Chris Lattner6754b822004-05-23 21:22:17 +000050// InlineCallIfPossible - If it is possible to inline the specified call site,
51// do so and update the CallGraph for this operation.
52static bool InlineCallIfPossible(CallSite CS, CallGraph &CG,
Chris Lattnerf94bed32007-01-30 23:28:39 +000053 const std::set<Function*> &SCCFunctions,
54 const TargetData &TD) {
Chris Lattner6754b822004-05-23 21:22:17 +000055 Function *Callee = CS.getCalledFunction();
Chris Lattnerf94bed32007-01-30 23:28:39 +000056 if (!InlineFunction(CS, &CG, &TD)) return false;
Misha Brukmanb1c93172005-04-21 23:48:37 +000057
Chris Lattner4956a322004-08-08 03:29:50 +000058 // If we inlined the last possible call site to the function, delete the
59 // function body now.
Chris Lattner6754b822004-05-23 21:22:17 +000060 if (Callee->use_empty() && Callee->hasInternalLinkage() &&
61 !SCCFunctions.count(Callee)) {
Bill Wendling8f13b5c2006-11-26 10:02:32 +000062 DOUT << " -> Deleting dead function: " << Callee->getName() << "\n";
Misha Brukmanb1c93172005-04-21 23:48:37 +000063
Chris Lattner6754b822004-05-23 21:22:17 +000064 // Remove any call graph edges from the callee to its callees.
Chris Lattnerf6d68232006-01-14 20:09:18 +000065 CallGraphNode *CalleeNode = CG[Callee];
Dan Gohmanc731c972007-10-03 19:26:29 +000066 while (!CalleeNode->empty())
Chris Lattner5de3b8b2006-07-12 18:29:36 +000067 CalleeNode->removeCallEdgeTo((CalleeNode->end()-1)->second);
Misha Brukmanb1c93172005-04-21 23:48:37 +000068
Chris Lattner6754b822004-05-23 21:22:17 +000069 // Removing the node for callee from the call graph and delete it.
70 delete CG.removeFunctionFromModule(CalleeNode);
71 ++NumDeleted;
72 }
73 return true;
Chris Lattnerd075cc22003-08-31 19:10:30 +000074}
75
76bool Inliner::runOnSCC(const std::vector<CallGraphNode*> &SCC) {
77 CallGraph &CG = getAnalysis<CallGraph>();
78
79 std::set<Function*> SCCFunctions;
Bill Wendling8f13b5c2006-11-26 10:02:32 +000080 DOUT << "Inliner visiting SCC:";
Chris Lattnerd075cc22003-08-31 19:10:30 +000081 for (unsigned i = 0, e = SCC.size(); i != e; ++i) {
Chris Lattner6754b822004-05-23 21:22:17 +000082 Function *F = SCC[i]->getFunction();
83 if (F) SCCFunctions.insert(F);
Bill Wendling8f13b5c2006-11-26 10:02:32 +000084 DOUT << " " << (F ? F->getName() : "INDIRECTNODE");
Chris Lattnerd075cc22003-08-31 19:10:30 +000085 }
Chris Lattnerd075cc22003-08-31 19:10:30 +000086
Chris Lattner6754b822004-05-23 21:22:17 +000087 // Scan through and identify all call sites ahead of time so that we only
88 // inline call sites in the original functions, not call sites that result
89 // from inlining other functions.
90 std::vector<CallSite> CallSites;
91
Chris Lattner7d30a6c2004-06-20 04:11:48 +000092 for (unsigned i = 0, e = SCC.size(); i != e; ++i)
93 if (Function *F = SCC[i]->getFunction())
Chris Lattner6754b822004-05-23 21:22:17 +000094 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
95 for (BasicBlock::iterator I = BB->begin(); I != BB->end(); ++I) {
96 CallSite CS = CallSite::get(I);
97 if (CS.getInstruction() && (!CS.getCalledFunction() ||
Reid Spencer5301e7c2007-01-30 20:08:39 +000098 !CS.getCalledFunction()->isDeclaration()))
Chris Lattner6754b822004-05-23 21:22:17 +000099 CallSites.push_back(CS);
100 }
Chris Lattnerd075cc22003-08-31 19:10:30 +0000101
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000102 DOUT << ": " << CallSites.size() << " call sites.\n";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000103
Chris Lattner6754b822004-05-23 21:22:17 +0000104 // Now that we have all of the call sites, move the ones to functions in the
105 // current SCC to the end of the list.
106 unsigned FirstCallInSCC = CallSites.size();
107 for (unsigned i = 0; i < FirstCallInSCC; ++i)
108 if (Function *F = CallSites[i].getCalledFunction())
109 if (SCCFunctions.count(F))
110 std::swap(CallSites[i--], CallSites[--FirstCallInSCC]);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000111
Chris Lattner6754b822004-05-23 21:22:17 +0000112 // Now that we have all of the call sites, loop over them and inline them if
113 // it looks profitable to do so.
114 bool Changed = false;
115 bool LocalChange;
116 do {
117 LocalChange = false;
118 // Iterate over the outer loop because inlining functions can cause indirect
119 // calls to become direct calls.
120 for (unsigned CSi = 0; CSi != CallSites.size(); ++CSi)
121 if (Function *Callee = CallSites[CSi].getCalledFunction()) {
122 // Calls to external functions are never inlinable.
Reid Spencer5301e7c2007-01-30 20:08:39 +0000123 if (Callee->isDeclaration() ||
Chris Lattner6754b822004-05-23 21:22:17 +0000124 CallSites[CSi].getInstruction()->getParent()->getParent() ==Callee){
Chris Lattner82928ca2006-11-09 23:36:08 +0000125 if (SCC.size() == 1) {
126 std::swap(CallSites[CSi], CallSites.back());
127 CallSites.pop_back();
128 } else {
129 // Keep the 'in SCC / not in SCC' boundary correct.
130 CallSites.erase(CallSites.begin()+CSi);
131 }
Chris Lattner6754b822004-05-23 21:22:17 +0000132 --CSi;
133 continue;
134 }
Chris Lattner4d25c862004-04-08 06:34:31 +0000135
Chris Lattner6754b822004-05-23 21:22:17 +0000136 // If the policy determines that we should inline this function,
137 // try to do so.
138 CallSite CS = CallSites[CSi];
139 int InlineCost = getInlineCost(CS);
140 if (InlineCost >= (int)InlineThreshold) {
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000141 DOUT << " NOT Inlining: cost=" << InlineCost
142 << ", Call: " << *CS.getInstruction();
Chris Lattner6754b822004-05-23 21:22:17 +0000143 } else {
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000144 DOUT << " Inlining: cost=" << InlineCost
145 << ", Call: " << *CS.getInstruction();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000146
Chris Lattner6754b822004-05-23 21:22:17 +0000147 // Attempt to inline the function...
Chris Lattnerf94bed32007-01-30 23:28:39 +0000148 if (InlineCallIfPossible(CS, CG, SCCFunctions,
149 getAnalysis<TargetData>())) {
Chris Lattner82928ca2006-11-09 23:36:08 +0000150 // Remove this call site from the list. If possible, use
151 // swap/pop_back for efficiency, but do not use it if doing so would
152 // move a call site to a function in this SCC before the
153 // 'FirstCallInSCC' barrier.
154 if (SCC.size() == 1) {
155 std::swap(CallSites[CSi], CallSites.back());
156 CallSites.pop_back();
157 } else {
158 CallSites.erase(CallSites.begin()+CSi);
159 }
Chris Lattner6754b822004-05-23 21:22:17 +0000160 --CSi;
Chris Lattnerbe435442004-04-12 05:37:29 +0000161
Chris Lattner6754b822004-05-23 21:22:17 +0000162 ++NumInlined;
163 Changed = true;
164 LocalChange = true;
Chris Lattner4d25c862004-04-08 06:34:31 +0000165 }
Chris Lattner4d25c862004-04-08 06:34:31 +0000166 }
167 }
Chris Lattner6754b822004-05-23 21:22:17 +0000168 } while (LocalChange);
Chris Lattner4d25c862004-04-08 06:34:31 +0000169
Chris Lattnerd075cc22003-08-31 19:10:30 +0000170 return Changed;
171}
172
Chris Lattnerc87784f2004-04-20 22:06:53 +0000173// doFinalization - Remove now-dead linkonce functions at the end of
174// processing to avoid breaking the SCC traversal.
175bool Inliner::doFinalization(CallGraph &CG) {
Chris Lattnerbe8bb802004-04-21 20:44:33 +0000176 std::set<CallGraphNode*> FunctionsToRemove;
177
178 // Scan for all of the functions, looking for ones that should now be removed
179 // from the program. Insert the dead ones in the FunctionsToRemove set.
180 for (CallGraph::iterator I = CG.begin(), E = CG.end(); I != E; ++I) {
181 CallGraphNode *CGN = I->second;
Chris Lattner4956a322004-08-08 03:29:50 +0000182 if (Function *F = CGN ? CGN->getFunction() : 0) {
Chris Lattner6455c512004-09-18 21:37:03 +0000183 // If the only remaining users of the function are dead constants, remove
184 // them.
Chris Lattner4956a322004-08-08 03:29:50 +0000185 F->removeDeadConstantUsers();
Chris Lattnerbe8bb802004-04-21 20:44:33 +0000186
Chris Lattner4956a322004-08-08 03:29:50 +0000187 if ((F->hasLinkOnceLinkage() || F->hasInternalLinkage()) &&
188 F->use_empty()) {
Chris Lattner6455c512004-09-18 21:37:03 +0000189
Chris Lattner4956a322004-08-08 03:29:50 +0000190 // Remove any call graph edges from the function to its callees.
Dan Gohmanc731c972007-10-03 19:26:29 +0000191 while (!CGN->empty())
Chris Lattner5de3b8b2006-07-12 18:29:36 +0000192 CGN->removeCallEdgeTo((CGN->end()-1)->second);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000193
Chris Lattner6455c512004-09-18 21:37:03 +0000194 // Remove any edges from the external node to the function's call graph
195 // node. These edges might have been made irrelegant due to
196 // optimization of the program.
197 CG.getExternalCallingNode()->removeAnyCallEdgeTo(CGN);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000198
Chris Lattner4956a322004-08-08 03:29:50 +0000199 // Removing the node for callee from the call graph and delete it.
200 FunctionsToRemove.insert(CGN);
201 }
Chris Lattnerc87784f2004-04-20 22:06:53 +0000202 }
203 }
Chris Lattnerbe8bb802004-04-21 20:44:33 +0000204
205 // Now that we know which functions to delete, do so. We didn't want to do
206 // this inline, because that would invalidate our CallGraph::iterator
207 // objects. :(
208 bool Changed = false;
209 for (std::set<CallGraphNode*>::iterator I = FunctionsToRemove.begin(),
210 E = FunctionsToRemove.end(); I != E; ++I) {
211 delete CG.removeFunctionFromModule(*I);
212 ++NumDeleted;
213 Changed = true;
214 }
215
Chris Lattnerc87784f2004-04-20 22:06:53 +0000216 return Changed;
217}