blob: ed177478e167448161904cc5b798ceb2905a3067 [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"
Chris Lattner237ef562003-08-31 19:10:30 +000019#include "llvm/Analysis/CallGraph.h"
20#include "llvm/Support/CallSite.h"
Chris Lattnerff2dad32007-01-30 23:28:39 +000021#include "llvm/Target/TargetData.h"
Tanya Lattner6f7426e2007-06-19 22:29:50 +000022#include "llvm/Transforms/IPO/InlinerPass.h"
Chris Lattner237ef562003-08-31 19:10:30 +000023#include "llvm/Transforms/Utils/Cloning.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000024#include "llvm/Support/CommandLine.h"
25#include "llvm/Support/Debug.h"
26#include "llvm/ADT/Statistic.h"
Chris Lattnerbefa4992004-05-23 21:22:17 +000027#include <set>
Chris Lattnera51bcb52003-11-21 21:45:31 +000028using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000029
Chris Lattner86453c52006-12-19 22:09:18 +000030STATISTIC(NumInlined, "Number of functions inlined");
31STATISTIC(NumDeleted, "Number of functions deleted because all callers found");
32
Dan Gohman844731a2008-05-13 00:00:25 +000033static cl::opt<int>
Dale Johannesencbfdf962009-01-12 22:11:50 +000034InlineLimit("inline-threshold", cl::Hidden, cl::init(200),
35 cl::desc("Control the amount of inlining to perform (default = 200)"));
Chris Lattner237ef562003-08-31 19:10:30 +000036
Dan Gohmanae73dc12008-09-04 17:05:41 +000037Inliner::Inliner(void *ID)
38 : CallGraphSCCPass(ID), InlineThreshold(InlineLimit) {}
Chris Lattner237ef562003-08-31 19:10:30 +000039
Dan Gohmanae73dc12008-09-04 17:05:41 +000040Inliner::Inliner(void *ID, int Threshold)
41 : CallGraphSCCPass(ID), InlineThreshold(Threshold) {}
Chris Lattner120d0532008-01-12 06:49:13 +000042
Chris Lattnerff2dad32007-01-30 23:28:39 +000043/// getAnalysisUsage - For this class, we declare that we require and preserve
44/// the call graph. If the derived class implements this method, it should
45/// always explicitly call the implementation here.
46void Inliner::getAnalysisUsage(AnalysisUsage &Info) const {
47 Info.addRequired<TargetData>();
48 CallGraphSCCPass::getAnalysisUsage(Info);
49}
50
Chris Lattnerbefa4992004-05-23 21:22:17 +000051// InlineCallIfPossible - If it is possible to inline the specified call site,
52// do so and update the CallGraph for this operation.
53static bool InlineCallIfPossible(CallSite CS, CallGraph &CG,
Chris Lattnerff2dad32007-01-30 23:28:39 +000054 const std::set<Function*> &SCCFunctions,
55 const TargetData &TD) {
Chris Lattnerbefa4992004-05-23 21:22:17 +000056 Function *Callee = CS.getCalledFunction();
Bill Wendling66c75aa2008-11-21 00:09:21 +000057 Function *Caller = CS.getCaller();
58
Chris Lattnerff2dad32007-01-30 23:28:39 +000059 if (!InlineFunction(CS, &CG, &TD)) return false;
Misha Brukmanfd939082005-04-21 23:48:37 +000060
Bill Wendling8c1604e2008-11-21 00:06:32 +000061 // If the inlined function had a higher stack protection level than the
62 // calling function, then bump up the caller's stack protection level.
Bill Wendling8c1604e2008-11-21 00:06:32 +000063 if (Callee->hasFnAttr(Attribute::StackProtectReq))
64 Caller->addFnAttr(Attribute::StackProtectReq);
65 else if (Callee->hasFnAttr(Attribute::StackProtect) &&
66 !Caller->hasFnAttr(Attribute::StackProtectReq))
67 Caller->addFnAttr(Attribute::StackProtect);
68
Chris Lattner54970c02004-08-08 03:29:50 +000069 // If we inlined the last possible call site to the function, delete the
70 // function body now.
Rafael Espindolabb46f522009-01-15 20:18:42 +000071 if (Callee->use_empty() && Callee->hasLocalLinkage() &&
Chris Lattnerbefa4992004-05-23 21:22:17 +000072 !SCCFunctions.count(Callee)) {
Bill Wendling0a81aac2006-11-26 10:02:32 +000073 DOUT << " -> Deleting dead function: " << Callee->getName() << "\n";
Duncan Sands6f0a7682008-09-05 14:56:53 +000074 CallGraphNode *CalleeNode = CG[Callee];
Misha Brukmanfd939082005-04-21 23:48:37 +000075
Chris Lattnerbefa4992004-05-23 21:22:17 +000076 // Remove any call graph edges from the callee to its callees.
Duncan Sands6f0a7682008-09-05 14:56:53 +000077 CalleeNode->removeAllCalledFunctions();
Misha Brukmanfd939082005-04-21 23:48:37 +000078
Chris Lattnerbefa4992004-05-23 21:22:17 +000079 // Removing the node for callee from the call graph and delete it.
80 delete CG.removeFunctionFromModule(CalleeNode);
81 ++NumDeleted;
82 }
83 return true;
Chris Lattner237ef562003-08-31 19:10:30 +000084}
Daniel Dunbar1a99dbf2008-10-29 01:02:02 +000085
86/// shouldInline - Return true if the inliner should attempt to inline
87/// at the given CallSite.
88bool Inliner::shouldInline(CallSite CS) {
Daniel Dunbarc5e1ec42008-10-30 19:26:59 +000089 InlineCost IC = getInlineCost(CS);
Daniel Dunbar1a99dbf2008-10-29 01:02:02 +000090 float FudgeFactor = getInlineFudgeFactor(CS);
91
Daniel Dunbarc5e1ec42008-10-30 19:26:59 +000092 if (IC.isAlways()) {
93 DOUT << " Inlining: cost=always"
94 << ", Call: " << *CS.getInstruction();
95 return true;
96 }
97
98 if (IC.isNever()) {
99 DOUT << " NOT Inlining: cost=never"
100 << ", Call: " << *CS.getInstruction();
101 return false;
102 }
103
104 int Cost = IC.getValue();
Daniel Dunbar1a99dbf2008-10-29 01:02:02 +0000105 int CurrentThreshold = InlineThreshold;
106 Function *Fn = CS.getCaller();
107 if (Fn && !Fn->isDeclaration()
108 && Fn->hasFnAttr(Attribute::OptimizeForSize)
109 && InlineThreshold != 50) {
110 CurrentThreshold = 50;
111 }
112
113 if (Cost >= (int)(CurrentThreshold * FudgeFactor)) {
114 DOUT << " NOT Inlining: cost=" << Cost
115 << ", Call: " << *CS.getInstruction();
116 return false;
117 } else {
118 DOUT << " Inlining: cost=" << Cost
119 << ", Call: " << *CS.getInstruction();
120 return true;
121 }
122}
Chris Lattner237ef562003-08-31 19:10:30 +0000123
124bool Inliner::runOnSCC(const std::vector<CallGraphNode*> &SCC) {
125 CallGraph &CG = getAnalysis<CallGraph>();
126
127 std::set<Function*> SCCFunctions;
Bill Wendling0a81aac2006-11-26 10:02:32 +0000128 DOUT << "Inliner visiting SCC:";
Chris Lattner237ef562003-08-31 19:10:30 +0000129 for (unsigned i = 0, e = SCC.size(); i != e; ++i) {
Chris Lattnerbefa4992004-05-23 21:22:17 +0000130 Function *F = SCC[i]->getFunction();
131 if (F) SCCFunctions.insert(F);
Bill Wendling0a81aac2006-11-26 10:02:32 +0000132 DOUT << " " << (F ? F->getName() : "INDIRECTNODE");
Chris Lattner237ef562003-08-31 19:10:30 +0000133 }
Chris Lattner237ef562003-08-31 19:10:30 +0000134
Chris Lattnerbefa4992004-05-23 21:22:17 +0000135 // Scan through and identify all call sites ahead of time so that we only
136 // inline call sites in the original functions, not call sites that result
137 // from inlining other functions.
138 std::vector<CallSite> CallSites;
139
Chris Lattnercf5933a2004-06-20 04:11:48 +0000140 for (unsigned i = 0, e = SCC.size(); i != e; ++i)
141 if (Function *F = SCC[i]->getFunction())
Chris Lattnerbefa4992004-05-23 21:22:17 +0000142 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
143 for (BasicBlock::iterator I = BB->begin(); I != BB->end(); ++I) {
144 CallSite CS = CallSite::get(I);
145 if (CS.getInstruction() && (!CS.getCalledFunction() ||
Reid Spencer5cbf9852007-01-30 20:08:39 +0000146 !CS.getCalledFunction()->isDeclaration()))
Chris Lattnerbefa4992004-05-23 21:22:17 +0000147 CallSites.push_back(CS);
148 }
Chris Lattner237ef562003-08-31 19:10:30 +0000149
Bill Wendling0a81aac2006-11-26 10:02:32 +0000150 DOUT << ": " << CallSites.size() << " call sites.\n";
Misha Brukmanfd939082005-04-21 23:48:37 +0000151
Chris Lattnerbefa4992004-05-23 21:22:17 +0000152 // Now that we have all of the call sites, move the ones to functions in the
153 // current SCC to the end of the list.
154 unsigned FirstCallInSCC = CallSites.size();
155 for (unsigned i = 0; i < FirstCallInSCC; ++i)
156 if (Function *F = CallSites[i].getCalledFunction())
157 if (SCCFunctions.count(F))
158 std::swap(CallSites[i--], CallSites[--FirstCallInSCC]);
Misha Brukmanfd939082005-04-21 23:48:37 +0000159
Chris Lattnerbefa4992004-05-23 21:22:17 +0000160 // Now that we have all of the call sites, loop over them and inline them if
161 // it looks profitable to do so.
162 bool Changed = false;
163 bool LocalChange;
164 do {
165 LocalChange = false;
166 // Iterate over the outer loop because inlining functions can cause indirect
167 // calls to become direct calls.
168 for (unsigned CSi = 0; CSi != CallSites.size(); ++CSi)
169 if (Function *Callee = CallSites[CSi].getCalledFunction()) {
170 // Calls to external functions are never inlinable.
Dale Johannesencbfdf962009-01-12 22:11:50 +0000171 if (Callee->isDeclaration()) {
Chris Lattner08ff1482006-11-09 23:36:08 +0000172 if (SCC.size() == 1) {
173 std::swap(CallSites[CSi], CallSites.back());
174 CallSites.pop_back();
175 } else {
176 // Keep the 'in SCC / not in SCC' boundary correct.
177 CallSites.erase(CallSites.begin()+CSi);
178 }
Chris Lattnerbefa4992004-05-23 21:22:17 +0000179 --CSi;
180 continue;
181 }
Chris Lattner775cbdd2004-04-08 06:34:31 +0000182
Chris Lattnerbefa4992004-05-23 21:22:17 +0000183 // If the policy determines that we should inline this function,
184 // try to do so.
185 CallSite CS = CallSites[CSi];
Daniel Dunbar1a99dbf2008-10-29 01:02:02 +0000186 if (shouldInline(CS)) {
Dale Johannesene3455662009-01-09 01:30:11 +0000187 Function *Caller = CS.getCaller();
Chris Lattnerbefa4992004-05-23 21:22:17 +0000188 // Attempt to inline the function...
Chris Lattnerff2dad32007-01-30 23:28:39 +0000189 if (InlineCallIfPossible(CS, CG, SCCFunctions,
190 getAnalysis<TargetData>())) {
Dale Johannesene3455662009-01-09 01:30:11 +0000191 // Remove any cached cost info for this caller, as inlining the callee
Dale Johannesencbfdf962009-01-12 22:11:50 +0000192 // has increased the size of the caller (which may be the same as the
193 // callee).
Dale Johannesene3455662009-01-09 01:30:11 +0000194 resetCachedCostInfo(Caller);
195
Chris Lattner08ff1482006-11-09 23:36:08 +0000196 // Remove this call site from the list. If possible, use
197 // swap/pop_back for efficiency, but do not use it if doing so would
198 // move a call site to a function in this SCC before the
199 // 'FirstCallInSCC' barrier.
200 if (SCC.size() == 1) {
201 std::swap(CallSites[CSi], CallSites.back());
202 CallSites.pop_back();
203 } else {
204 CallSites.erase(CallSites.begin()+CSi);
205 }
Chris Lattnerbefa4992004-05-23 21:22:17 +0000206 --CSi;
Chris Lattnerce1a3a22004-04-12 05:37:29 +0000207
Chris Lattnerbefa4992004-05-23 21:22:17 +0000208 ++NumInlined;
209 Changed = true;
210 LocalChange = true;
Chris Lattner775cbdd2004-04-08 06:34:31 +0000211 }
Chris Lattner775cbdd2004-04-08 06:34:31 +0000212 }
213 }
Chris Lattnerbefa4992004-05-23 21:22:17 +0000214 } while (LocalChange);
Chris Lattner775cbdd2004-04-08 06:34:31 +0000215
Chris Lattner237ef562003-08-31 19:10:30 +0000216 return Changed;
217}
218
Chris Lattner68d57e72004-04-20 22:06:53 +0000219// doFinalization - Remove now-dead linkonce functions at the end of
220// processing to avoid breaking the SCC traversal.
221bool Inliner::doFinalization(CallGraph &CG) {
Devang Patelb7c6bf12008-11-05 01:39:16 +0000222 return removeDeadFunctions(CG);
223}
224
225 /// removeDeadFunctions - Remove dead functions that are not included in
226 /// DNR (Do Not Remove) list.
227bool Inliner::removeDeadFunctions(CallGraph &CG,
228 SmallPtrSet<const Function *, 16> *DNR) {
Chris Lattner3e1358a2004-04-21 20:44:33 +0000229 std::set<CallGraphNode*> FunctionsToRemove;
230
231 // Scan for all of the functions, looking for ones that should now be removed
232 // from the program. Insert the dead ones in the FunctionsToRemove set.
233 for (CallGraph::iterator I = CG.begin(), E = CG.end(); I != E; ++I) {
234 CallGraphNode *CGN = I->second;
Chris Lattner54970c02004-08-08 03:29:50 +0000235 if (Function *F = CGN ? CGN->getFunction() : 0) {
Chris Lattner0c0aa712004-09-18 21:37:03 +0000236 // If the only remaining users of the function are dead constants, remove
237 // them.
Chris Lattner54970c02004-08-08 03:29:50 +0000238 F->removeDeadConstantUsers();
Chris Lattner3e1358a2004-04-21 20:44:33 +0000239
Devang Patelb7c6bf12008-11-05 01:39:16 +0000240 if (DNR && DNR->count(F))
241 continue;
242
Rafael Espindolabb46f522009-01-15 20:18:42 +0000243 if ((F->hasLinkOnceLinkage() || F->hasLocalLinkage()) &&
Chris Lattner54970c02004-08-08 03:29:50 +0000244 F->use_empty()) {
Chris Lattner0c0aa712004-09-18 21:37:03 +0000245
Chris Lattner54970c02004-08-08 03:29:50 +0000246 // Remove any call graph edges from the function to its callees.
Duncan Sands6f0a7682008-09-05 14:56:53 +0000247 CGN->removeAllCalledFunctions();
Misha Brukmanfd939082005-04-21 23:48:37 +0000248
Chris Lattner0c0aa712004-09-18 21:37:03 +0000249 // Remove any edges from the external node to the function's call graph
250 // node. These edges might have been made irrelegant due to
251 // optimization of the program.
252 CG.getExternalCallingNode()->removeAnyCallEdgeTo(CGN);
Misha Brukmanfd939082005-04-21 23:48:37 +0000253
Chris Lattner54970c02004-08-08 03:29:50 +0000254 // Removing the node for callee from the call graph and delete it.
255 FunctionsToRemove.insert(CGN);
256 }
Chris Lattner68d57e72004-04-20 22:06:53 +0000257 }
258 }
Chris Lattner3e1358a2004-04-21 20:44:33 +0000259
260 // Now that we know which functions to delete, do so. We didn't want to do
261 // this inline, because that would invalidate our CallGraph::iterator
262 // objects. :(
263 bool Changed = false;
264 for (std::set<CallGraphNode*>::iterator I = FunctionsToRemove.begin(),
265 E = FunctionsToRemove.end(); I != E; ++I) {
266 delete CG.removeFunctionFromModule(*I);
267 ++NumDeleted;
268 Changed = true;
269 }
270
Chris Lattner68d57e72004-04-20 22:06:53 +0000271 return Changed;
272}