blob: d6dd361068970997b30f71cbba0a01335cc0156c [file] [log] [blame]
Chris Lattnercf5933a2004-06-20 04:11:48 +00001//===- Inliner.cpp - Code common to all inliners --------------------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-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 Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner237ef562003-08-31 19:10:30 +00009//
Chris Lattnerbefa4992004-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 Lattner237ef562003-08-31 19:10:30 +000013//
14//===----------------------------------------------------------------------===//
15
Chris Lattner86453c52006-12-19 22:09:18 +000016#define DEBUG_TYPE "inline"
Chris Lattner237ef562003-08-31 19:10:30 +000017#include "llvm/Module.h"
Misha Brukman47b14a42004-07-29 17:30:56 +000018#include "llvm/Instructions.h"
Dale Johannesen1f67ce42009-03-19 18:03:56 +000019#include "llvm/IntrinsicInst.h"
Chris Lattner237ef562003-08-31 19:10:30 +000020#include "llvm/Analysis/CallGraph.h"
21#include "llvm/Support/CallSite.h"
Chris Lattnerff2dad32007-01-30 23:28:39 +000022#include "llvm/Target/TargetData.h"
Tanya Lattner6f7426e2007-06-19 22:29:50 +000023#include "llvm/Transforms/IPO/InlinerPass.h"
Chris Lattner237ef562003-08-31 19:10:30 +000024#include "llvm/Transforms/Utils/Cloning.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000025#include "llvm/Support/CommandLine.h"
26#include "llvm/Support/Debug.h"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +000027#include "llvm/Support/raw_ostream.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000028#include "llvm/ADT/Statistic.h"
Chris Lattnerbefa4992004-05-23 21:22:17 +000029#include <set>
Chris Lattnera51bcb52003-11-21 21:45:31 +000030using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000031
Chris Lattner86453c52006-12-19 22:09:18 +000032STATISTIC(NumInlined, "Number of functions inlined");
33STATISTIC(NumDeleted, "Number of functions deleted because all callers found");
34
Dan Gohman844731a2008-05-13 00:00:25 +000035static cl::opt<int>
Dale Johannesencbfdf962009-01-12 22:11:50 +000036InlineLimit("inline-threshold", cl::Hidden, cl::init(200),
37 cl::desc("Control the amount of inlining to perform (default = 200)"));
Chris Lattner237ef562003-08-31 19:10:30 +000038
Dan Gohmanae73dc12008-09-04 17:05:41 +000039Inliner::Inliner(void *ID)
40 : CallGraphSCCPass(ID), InlineThreshold(InlineLimit) {}
Chris Lattner237ef562003-08-31 19:10:30 +000041
Dan Gohmanae73dc12008-09-04 17:05:41 +000042Inliner::Inliner(void *ID, int Threshold)
43 : CallGraphSCCPass(ID), InlineThreshold(Threshold) {}
Chris Lattner120d0532008-01-12 06:49:13 +000044
Chris Lattnerff2dad32007-01-30 23:28:39 +000045/// getAnalysisUsage - For this class, we declare that we require and preserve
46/// the call graph. If the derived class implements this method, it should
47/// always explicitly call the implementation here.
48void Inliner::getAnalysisUsage(AnalysisUsage &Info) const {
Chris Lattnerff2dad32007-01-30 23:28:39 +000049 CallGraphSCCPass::getAnalysisUsage(Info);
50}
51
Chris Lattnerbefa4992004-05-23 21:22:17 +000052// InlineCallIfPossible - If it is possible to inline the specified call site,
53// do so and update the CallGraph for this operation.
Dale Johannesen1f67ce42009-03-19 18:03:56 +000054bool Inliner::InlineCallIfPossible(CallSite CS, CallGraph &CG,
Dale Johannesen16581bf2009-03-23 23:39:20 +000055 const SmallPtrSet<Function*, 8> &SCCFunctions,
Dan Gohman02a436c2009-07-24 18:13:53 +000056 const TargetData *TD) {
Chris Lattnerbefa4992004-05-23 21:22:17 +000057 Function *Callee = CS.getCalledFunction();
Bill Wendling66c75aa2008-11-21 00:09:21 +000058 Function *Caller = CS.getCaller();
59
Dan Gohman02a436c2009-07-24 18:13:53 +000060 if (!InlineFunction(CS, &CG, TD)) return false;
Misha Brukmanfd939082005-04-21 23:48:37 +000061
Bill Wendling8c1604e2008-11-21 00:06:32 +000062 // If the inlined function had a higher stack protection level than the
63 // calling function, then bump up the caller's stack protection level.
Bill Wendling8c1604e2008-11-21 00:06:32 +000064 if (Callee->hasFnAttr(Attribute::StackProtectReq))
65 Caller->addFnAttr(Attribute::StackProtectReq);
66 else if (Callee->hasFnAttr(Attribute::StackProtect) &&
67 !Caller->hasFnAttr(Attribute::StackProtectReq))
68 Caller->addFnAttr(Attribute::StackProtect);
69
Chris Lattner54970c02004-08-08 03:29:50 +000070 // If we inlined the last possible call site to the function, delete the
71 // function body now.
Torok Edwinf5ff1d32009-05-23 14:06:57 +000072 if (Callee->use_empty() && (Callee->hasLocalLinkage() ||
73 Callee->hasAvailableExternallyLinkage()) &&
Chris Lattnerbefa4992004-05-23 21:22:17 +000074 !SCCFunctions.count(Callee)) {
Daniel Dunbarce63ffb2009-07-25 00:23:56 +000075 DEBUG(errs() << " -> Deleting dead function: "
76 << Callee->getName() << "\n");
Duncan Sands6f0a7682008-09-05 14:56:53 +000077 CallGraphNode *CalleeNode = CG[Callee];
Misha Brukmanfd939082005-04-21 23:48:37 +000078
Chris Lattnerbefa4992004-05-23 21:22:17 +000079 // Remove any call graph edges from the callee to its callees.
Duncan Sands6f0a7682008-09-05 14:56:53 +000080 CalleeNode->removeAllCalledFunctions();
Misha Brukmanfd939082005-04-21 23:48:37 +000081
Dale Johannesen1f67ce42009-03-19 18:03:56 +000082 resetCachedCostInfo(CalleeNode->getFunction());
83
Chris Lattnerbefa4992004-05-23 21:22:17 +000084 // Removing the node for callee from the call graph and delete it.
85 delete CG.removeFunctionFromModule(CalleeNode);
86 ++NumDeleted;
87 }
88 return true;
Chris Lattner237ef562003-08-31 19:10:30 +000089}
Daniel Dunbar1a99dbf2008-10-29 01:02:02 +000090
91/// shouldInline - Return true if the inliner should attempt to inline
92/// at the given CallSite.
93bool Inliner::shouldInline(CallSite CS) {
Daniel Dunbarc5e1ec42008-10-30 19:26:59 +000094 InlineCost IC = getInlineCost(CS);
Daniel Dunbar1a99dbf2008-10-29 01:02:02 +000095 float FudgeFactor = getInlineFudgeFactor(CS);
96
Daniel Dunbarc5e1ec42008-10-30 19:26:59 +000097 if (IC.isAlways()) {
98 DOUT << " Inlining: cost=always"
Eli Friedmanef6ab662009-07-18 05:12:58 +000099 << ", Call: " << *CS.getInstruction() << "\n";
Daniel Dunbarc5e1ec42008-10-30 19:26:59 +0000100 return true;
101 }
102
103 if (IC.isNever()) {
104 DOUT << " NOT Inlining: cost=never"
Eli Friedmanef6ab662009-07-18 05:12:58 +0000105 << ", Call: " << *CS.getInstruction() << "\n";
Daniel Dunbarc5e1ec42008-10-30 19:26:59 +0000106 return false;
107 }
108
109 int Cost = IC.getValue();
Daniel Dunbar1a99dbf2008-10-29 01:02:02 +0000110 int CurrentThreshold = InlineThreshold;
111 Function *Fn = CS.getCaller();
112 if (Fn && !Fn->isDeclaration()
113 && Fn->hasFnAttr(Attribute::OptimizeForSize)
114 && InlineThreshold != 50) {
115 CurrentThreshold = 50;
116 }
117
118 if (Cost >= (int)(CurrentThreshold * FudgeFactor)) {
119 DOUT << " NOT Inlining: cost=" << Cost
Eli Friedmanef6ab662009-07-18 05:12:58 +0000120 << ", Call: " << *CS.getInstruction() << "\n";
Daniel Dunbar1a99dbf2008-10-29 01:02:02 +0000121 return false;
122 } else {
123 DOUT << " Inlining: cost=" << Cost
Eli Friedmanef6ab662009-07-18 05:12:58 +0000124 << ", Call: " << *CS.getInstruction() << "\n";
Daniel Dunbar1a99dbf2008-10-29 01:02:02 +0000125 return true;
126 }
127}
Chris Lattner237ef562003-08-31 19:10:30 +0000128
129bool Inliner::runOnSCC(const std::vector<CallGraphNode*> &SCC) {
130 CallGraph &CG = getAnalysis<CallGraph>();
Dan Gohman02a436c2009-07-24 18:13:53 +0000131 const TargetData *TD = getAnalysisIfAvailable<TargetData>();
Chris Lattner237ef562003-08-31 19:10:30 +0000132
Dale Johannesen16581bf2009-03-23 23:39:20 +0000133 SmallPtrSet<Function*, 8> SCCFunctions;
Bill Wendling0a81aac2006-11-26 10:02:32 +0000134 DOUT << "Inliner visiting SCC:";
Chris Lattner237ef562003-08-31 19:10:30 +0000135 for (unsigned i = 0, e = SCC.size(); i != e; ++i) {
Chris Lattnerbefa4992004-05-23 21:22:17 +0000136 Function *F = SCC[i]->getFunction();
137 if (F) SCCFunctions.insert(F);
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000138 DEBUG(errs() << " " << (F ? F->getName() : "INDIRECTNODE"));
Chris Lattner237ef562003-08-31 19:10:30 +0000139 }
Chris Lattner237ef562003-08-31 19:10:30 +0000140
Chris Lattnerbefa4992004-05-23 21:22:17 +0000141 // Scan through and identify all call sites ahead of time so that we only
142 // inline call sites in the original functions, not call sites that result
143 // from inlining other functions.
144 std::vector<CallSite> CallSites;
145
Chris Lattnercf5933a2004-06-20 04:11:48 +0000146 for (unsigned i = 0, e = SCC.size(); i != e; ++i)
147 if (Function *F = SCC[i]->getFunction())
Chris Lattnerbefa4992004-05-23 21:22:17 +0000148 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
149 for (BasicBlock::iterator I = BB->begin(); I != BB->end(); ++I) {
150 CallSite CS = CallSite::get(I);
Dale Johannesen1f67ce42009-03-19 18:03:56 +0000151 if (CS.getInstruction() && !isa<DbgInfoIntrinsic>(I) &&
152 (!CS.getCalledFunction() ||
Reid Spencer5cbf9852007-01-30 20:08:39 +0000153 !CS.getCalledFunction()->isDeclaration()))
Chris Lattnerbefa4992004-05-23 21:22:17 +0000154 CallSites.push_back(CS);
155 }
Chris Lattner237ef562003-08-31 19:10:30 +0000156
Bill Wendling0a81aac2006-11-26 10:02:32 +0000157 DOUT << ": " << CallSites.size() << " call sites.\n";
Misha Brukmanfd939082005-04-21 23:48:37 +0000158
Chris Lattnerbefa4992004-05-23 21:22:17 +0000159 // Now that we have all of the call sites, move the ones to functions in the
160 // current SCC to the end of the list.
161 unsigned FirstCallInSCC = CallSites.size();
162 for (unsigned i = 0; i < FirstCallInSCC; ++i)
163 if (Function *F = CallSites[i].getCalledFunction())
164 if (SCCFunctions.count(F))
165 std::swap(CallSites[i--], CallSites[--FirstCallInSCC]);
Misha Brukmanfd939082005-04-21 23:48:37 +0000166
Chris Lattnerbefa4992004-05-23 21:22:17 +0000167 // Now that we have all of the call sites, loop over them and inline them if
168 // it looks profitable to do so.
169 bool Changed = false;
170 bool LocalChange;
171 do {
172 LocalChange = false;
173 // Iterate over the outer loop because inlining functions can cause indirect
174 // calls to become direct calls.
175 for (unsigned CSi = 0; CSi != CallSites.size(); ++CSi)
176 if (Function *Callee = CallSites[CSi].getCalledFunction()) {
177 // Calls to external functions are never inlinable.
Dale Johannesencbfdf962009-01-12 22:11:50 +0000178 if (Callee->isDeclaration()) {
Chris Lattner08ff1482006-11-09 23:36:08 +0000179 if (SCC.size() == 1) {
180 std::swap(CallSites[CSi], CallSites.back());
181 CallSites.pop_back();
182 } else {
183 // Keep the 'in SCC / not in SCC' boundary correct.
184 CallSites.erase(CallSites.begin()+CSi);
185 }
Chris Lattnerbefa4992004-05-23 21:22:17 +0000186 --CSi;
187 continue;
188 }
Chris Lattner775cbdd2004-04-08 06:34:31 +0000189
Chris Lattnerbefa4992004-05-23 21:22:17 +0000190 // If the policy determines that we should inline this function,
191 // try to do so.
192 CallSite CS = CallSites[CSi];
Daniel Dunbar1a99dbf2008-10-29 01:02:02 +0000193 if (shouldInline(CS)) {
Dale Johannesene3455662009-01-09 01:30:11 +0000194 Function *Caller = CS.getCaller();
Chris Lattnerbefa4992004-05-23 21:22:17 +0000195 // Attempt to inline the function...
Dale Johannesen1f67ce42009-03-19 18:03:56 +0000196 if (InlineCallIfPossible(CS, CG, SCCFunctions, TD)) {
197 // Remove any cached cost info for this caller, as inlining the
198 // callee has increased the size of the caller (which may be the
199 // same as the callee).
Dale Johannesene3455662009-01-09 01:30:11 +0000200 resetCachedCostInfo(Caller);
201
Chris Lattner08ff1482006-11-09 23:36:08 +0000202 // Remove this call site from the list. If possible, use
203 // swap/pop_back for efficiency, but do not use it if doing so would
204 // move a call site to a function in this SCC before the
205 // 'FirstCallInSCC' barrier.
206 if (SCC.size() == 1) {
207 std::swap(CallSites[CSi], CallSites.back());
208 CallSites.pop_back();
209 } else {
210 CallSites.erase(CallSites.begin()+CSi);
211 }
Chris Lattnerbefa4992004-05-23 21:22:17 +0000212 --CSi;
Chris Lattnerce1a3a22004-04-12 05:37:29 +0000213
Chris Lattnerbefa4992004-05-23 21:22:17 +0000214 ++NumInlined;
215 Changed = true;
216 LocalChange = true;
Chris Lattner775cbdd2004-04-08 06:34:31 +0000217 }
Chris Lattner775cbdd2004-04-08 06:34:31 +0000218 }
219 }
Chris Lattnerbefa4992004-05-23 21:22:17 +0000220 } while (LocalChange);
Chris Lattner775cbdd2004-04-08 06:34:31 +0000221
Chris Lattner237ef562003-08-31 19:10:30 +0000222 return Changed;
223}
224
Chris Lattner68d57e72004-04-20 22:06:53 +0000225// doFinalization - Remove now-dead linkonce functions at the end of
226// processing to avoid breaking the SCC traversal.
227bool Inliner::doFinalization(CallGraph &CG) {
Devang Patelb7c6bf12008-11-05 01:39:16 +0000228 return removeDeadFunctions(CG);
229}
230
231 /// removeDeadFunctions - Remove dead functions that are not included in
232 /// DNR (Do Not Remove) list.
233bool Inliner::removeDeadFunctions(CallGraph &CG,
234 SmallPtrSet<const Function *, 16> *DNR) {
Chris Lattner3e1358a2004-04-21 20:44:33 +0000235 std::set<CallGraphNode*> FunctionsToRemove;
236
237 // Scan for all of the functions, looking for ones that should now be removed
238 // from the program. Insert the dead ones in the FunctionsToRemove set.
239 for (CallGraph::iterator I = CG.begin(), E = CG.end(); I != E; ++I) {
240 CallGraphNode *CGN = I->second;
Chris Lattner54970c02004-08-08 03:29:50 +0000241 if (Function *F = CGN ? CGN->getFunction() : 0) {
Chris Lattner0c0aa712004-09-18 21:37:03 +0000242 // If the only remaining users of the function are dead constants, remove
243 // them.
Chris Lattner54970c02004-08-08 03:29:50 +0000244 F->removeDeadConstantUsers();
Chris Lattner3e1358a2004-04-21 20:44:33 +0000245
Devang Patelb7c6bf12008-11-05 01:39:16 +0000246 if (DNR && DNR->count(F))
247 continue;
248
Rafael Espindolabb46f522009-01-15 20:18:42 +0000249 if ((F->hasLinkOnceLinkage() || F->hasLocalLinkage()) &&
Chris Lattner54970c02004-08-08 03:29:50 +0000250 F->use_empty()) {
Chris Lattner0c0aa712004-09-18 21:37:03 +0000251
Chris Lattner54970c02004-08-08 03:29:50 +0000252 // Remove any call graph edges from the function to its callees.
Duncan Sands6f0a7682008-09-05 14:56:53 +0000253 CGN->removeAllCalledFunctions();
Misha Brukmanfd939082005-04-21 23:48:37 +0000254
Chris Lattner0c0aa712004-09-18 21:37:03 +0000255 // Remove any edges from the external node to the function's call graph
256 // node. These edges might have been made irrelegant due to
257 // optimization of the program.
258 CG.getExternalCallingNode()->removeAnyCallEdgeTo(CGN);
Misha Brukmanfd939082005-04-21 23:48:37 +0000259
Chris Lattner54970c02004-08-08 03:29:50 +0000260 // Removing the node for callee from the call graph and delete it.
261 FunctionsToRemove.insert(CGN);
262 }
Chris Lattner68d57e72004-04-20 22:06:53 +0000263 }
264 }
Chris Lattner3e1358a2004-04-21 20:44:33 +0000265
266 // Now that we know which functions to delete, do so. We didn't want to do
267 // this inline, because that would invalidate our CallGraph::iterator
268 // objects. :(
269 bool Changed = false;
270 for (std::set<CallGraphNode*>::iterator I = FunctionsToRemove.begin(),
271 E = FunctionsToRemove.end(); I != E; ++I) {
Dale Johannesen1f67ce42009-03-19 18:03:56 +0000272 resetCachedCostInfo((*I)->getFunction());
Chris Lattner3e1358a2004-04-21 20:44:33 +0000273 delete CG.removeFunctionFromModule(*I);
274 ++NumDeleted;
275 Changed = true;
276 }
277
Chris Lattner68d57e72004-04-20 22:06:53 +0000278 return Changed;
279}