blob: af7270a0484991b1a358323d528f58f2e9c72e41 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- Inliner.cpp - Code common to all inliners --------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// 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.
13//
14//===----------------------------------------------------------------------===//
15
16#define DEBUG_TYPE "inline"
17#include "llvm/Module.h"
18#include "llvm/Instructions.h"
Dale Johannesenb618d082009-03-19 18:03:56 +000019#include "llvm/IntrinsicInst.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000020#include "llvm/Analysis/CallGraph.h"
21#include "llvm/Support/CallSite.h"
22#include "llvm/Target/TargetData.h"
23#include "llvm/Transforms/IPO/InlinerPass.h"
24#include "llvm/Transforms/Utils/Cloning.h"
25#include "llvm/Support/CommandLine.h"
26#include "llvm/Support/Debug.h"
Daniel Dunbar005975c2009-07-25 00:23:56 +000027#include "llvm/Support/raw_ostream.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000028#include "llvm/ADT/Statistic.h"
29#include <set>
30using namespace llvm;
31
32STATISTIC(NumInlined, "Number of functions inlined");
33STATISTIC(NumDeleted, "Number of functions deleted because all callers found");
34
Dan Gohman089efff2008-05-13 00:00:25 +000035static cl::opt<int>
Dale Johannesen30d4d762009-08-25 01:13:58 +000036InlineLimit("inline-threshold", cl::Hidden, cl::init(200), cl::ZeroOrMore,
Dale Johannesen5adaa752009-01-12 22:11:50 +000037 cl::desc("Control the amount of inlining to perform (default = 200)"));
Dan Gohmanf17a25c2007-07-18 16:29:46 +000038
Dan Gohman26f8c272008-09-04 17:05:41 +000039Inliner::Inliner(void *ID)
40 : CallGraphSCCPass(ID), InlineThreshold(InlineLimit) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000041
Dan Gohman26f8c272008-09-04 17:05:41 +000042Inliner::Inliner(void *ID, int Threshold)
43 : CallGraphSCCPass(ID), InlineThreshold(Threshold) {}
Chris Lattner758296d2008-01-12 06:49:13 +000044
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000049 CallGraphSCCPass::getAnalysisUsage(Info);
50}
51
52// InlineCallIfPossible - If it is possible to inline the specified call site,
53// do so and update the CallGraph for this operation.
Dale Johannesenb618d082009-03-19 18:03:56 +000054bool Inliner::InlineCallIfPossible(CallSite CS, CallGraph &CG,
Dale Johannesendb0d8672009-03-23 23:39:20 +000055 const SmallPtrSet<Function*, 8> &SCCFunctions,
Dan Gohman56de36b2009-07-24 18:13:53 +000056 const TargetData *TD) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000057 Function *Callee = CS.getCalledFunction();
Bill Wendling1106f2c2008-11-21 00:09:21 +000058 Function *Caller = CS.getCaller();
59
Dan Gohman56de36b2009-07-24 18:13:53 +000060 if (!InlineFunction(CS, &CG, TD)) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000061
Bill Wendling2ce7f302008-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 Wendling2ce7f302008-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
Dan Gohmanf17a25c2007-07-18 16:29:46 +000070 // If we inlined the last possible call site to the function, delete the
71 // function body now.
Chris Lattnerae56c0d2009-08-27 03:51:50 +000072 if (Callee->use_empty() &&
73 (Callee->hasLocalLinkage() || Callee->hasAvailableExternallyLinkage()) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +000074 !SCCFunctions.count(Callee)) {
Daniel Dunbar005975c2009-07-25 00:23:56 +000075 DEBUG(errs() << " -> Deleting dead function: "
76 << Callee->getName() << "\n");
Duncan Sandsd105c342008-09-05 14:56:53 +000077 CallGraphNode *CalleeNode = CG[Callee];
Dan Gohmanf17a25c2007-07-18 16:29:46 +000078
79 // Remove any call graph edges from the callee to its callees.
Duncan Sandsd105c342008-09-05 14:56:53 +000080 CalleeNode->removeAllCalledFunctions();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000081
Dale Johannesenb618d082009-03-19 18:03:56 +000082 resetCachedCostInfo(CalleeNode->getFunction());
83
Dan Gohmanf17a25c2007-07-18 16:29:46 +000084 // Removing the node for callee from the call graph and delete it.
85 delete CG.removeFunctionFromModule(CalleeNode);
86 ++NumDeleted;
87 }
88 return true;
89}
Daniel Dunbarfbda8c72008-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 Dunbarde4982c2008-10-30 19:26:59 +000094 InlineCost IC = getInlineCost(CS);
Daniel Dunbarfbda8c72008-10-29 01:02:02 +000095
Daniel Dunbarde4982c2008-10-30 19:26:59 +000096 if (IC.isAlways()) {
Bill Wendling04de6812009-07-31 19:52:24 +000097 DEBUG(errs() << " Inlining: cost=always"
98 << ", Call: " << *CS.getInstruction() << "\n");
Daniel Dunbarde4982c2008-10-30 19:26:59 +000099 return true;
100 }
101
102 if (IC.isNever()) {
Bill Wendling04de6812009-07-31 19:52:24 +0000103 DEBUG(errs() << " NOT Inlining: cost=never"
104 << ", Call: " << *CS.getInstruction() << "\n");
Daniel Dunbarde4982c2008-10-30 19:26:59 +0000105 return false;
106 }
107
108 int Cost = IC.getValue();
Daniel Dunbarfbda8c72008-10-29 01:02:02 +0000109 int CurrentThreshold = InlineThreshold;
110 Function *Fn = CS.getCaller();
Bill Wendling04de6812009-07-31 19:52:24 +0000111 if (Fn && !Fn->isDeclaration() &&
112 Fn->hasFnAttr(Attribute::OptimizeForSize) &&
113 InlineThreshold != 50)
Daniel Dunbarfbda8c72008-10-29 01:02:02 +0000114 CurrentThreshold = 50;
Daniel Dunbarfbda8c72008-10-29 01:02:02 +0000115
Chris Lattnerae56c0d2009-08-27 03:51:50 +0000116 float FudgeFactor = getInlineFudgeFactor(CS);
Daniel Dunbarfbda8c72008-10-29 01:02:02 +0000117 if (Cost >= (int)(CurrentThreshold * FudgeFactor)) {
Bill Wendling04de6812009-07-31 19:52:24 +0000118 DEBUG(errs() << " NOT Inlining: cost=" << Cost
119 << ", Call: " << *CS.getInstruction() << "\n");
Daniel Dunbarfbda8c72008-10-29 01:02:02 +0000120 return false;
Daniel Dunbarfbda8c72008-10-29 01:02:02 +0000121 }
Chris Lattnerae56c0d2009-08-27 03:51:50 +0000122
123 DEBUG(errs() << " Inlining: cost=" << Cost
124 << ", Call: " << *CS.getInstruction() << "\n");
125 return true;
Daniel Dunbarfbda8c72008-10-29 01:02:02 +0000126}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000127
128bool Inliner::runOnSCC(const std::vector<CallGraphNode*> &SCC) {
129 CallGraph &CG = getAnalysis<CallGraph>();
Dan Gohman56de36b2009-07-24 18:13:53 +0000130 const TargetData *TD = getAnalysisIfAvailable<TargetData>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000131
Dale Johannesendb0d8672009-03-23 23:39:20 +0000132 SmallPtrSet<Function*, 8> SCCFunctions;
Bill Wendling04de6812009-07-31 19:52:24 +0000133 DEBUG(errs() << "Inliner visiting SCC:");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000134 for (unsigned i = 0, e = SCC.size(); i != e; ++i) {
135 Function *F = SCC[i]->getFunction();
136 if (F) SCCFunctions.insert(F);
Daniel Dunbar005975c2009-07-25 00:23:56 +0000137 DEBUG(errs() << " " << (F ? F->getName() : "INDIRECTNODE"));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000138 }
139
140 // Scan through and identify all call sites ahead of time so that we only
141 // inline call sites in the original functions, not call sites that result
142 // from inlining other functions.
143 std::vector<CallSite> CallSites;
144
Chris Lattnerae56c0d2009-08-27 03:51:50 +0000145 for (unsigned i = 0, e = SCC.size(); i != e; ++i) {
146 Function *F = SCC[i]->getFunction();
147 if (!F) continue;
148
149 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
150 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
151 CallSite CS = CallSite::get(I);
152 if (CS.getInstruction() == 0 || isa<DbgInfoIntrinsic>(I))
153 continue;
154
155 if (CS.getCalledFunction() == 0 ||
156 !CS.getCalledFunction()->isDeclaration())
157 CallSites.push_back(CS);
158 }
159 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000160
Bill Wendling04de6812009-07-31 19:52:24 +0000161 DEBUG(errs() << ": " << CallSites.size() << " call sites.\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000162
163 // Now that we have all of the call sites, move the ones to functions in the
164 // current SCC to the end of the list.
165 unsigned FirstCallInSCC = CallSites.size();
166 for (unsigned i = 0; i < FirstCallInSCC; ++i)
167 if (Function *F = CallSites[i].getCalledFunction())
168 if (SCCFunctions.count(F))
169 std::swap(CallSites[i--], CallSites[--FirstCallInSCC]);
170
171 // Now that we have all of the call sites, loop over them and inline them if
172 // it looks profitable to do so.
173 bool Changed = false;
174 bool LocalChange;
175 do {
176 LocalChange = false;
177 // Iterate over the outer loop because inlining functions can cause indirect
178 // calls to become direct calls.
Chris Lattnerae56c0d2009-08-27 03:51:50 +0000179 for (unsigned CSi = 0; CSi != CallSites.size(); ++CSi) {
180 // We can only inline direct calls.
181 Function *Callee = CallSites[CSi].getCalledFunction();
182 if (!Callee) continue;
183
184 // Calls to external functions are never inlinable.
185 if (Callee->isDeclaration()) {
186 if (SCC.size() == 1) {
187 std::swap(CallSites[CSi], CallSites.back());
188 CallSites.pop_back();
189 } else {
190 // Keep the 'in SCC / not in SCC' boundary correct.
191 CallSites.erase(CallSites.begin()+CSi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000192 }
Chris Lattnerae56c0d2009-08-27 03:51:50 +0000193 --CSi;
194 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000195 }
Chris Lattnerae56c0d2009-08-27 03:51:50 +0000196
197 // If the policy determines that we should inline this function,
198 // try to do so.
199 CallSite CS = CallSites[CSi];
200 if (!shouldInline(CS))
201 continue;
202
203 Function *Caller = CS.getCaller();
204 // Attempt to inline the function...
205 if (!InlineCallIfPossible(CS, CG, SCCFunctions, TD))
206 continue;
207
208 // Remove any cached cost info for this caller, as inlining the
209 // callee has increased the size of the caller (which may be the
210 // same as the callee).
211 resetCachedCostInfo(Caller);
212
213 // Remove this call site from the list. If possible, use
214 // swap/pop_back for efficiency, but do not use it if doing so would
215 // move a call site to a function in this SCC before the
216 // 'FirstCallInSCC' barrier.
217 if (SCC.size() == 1) {
218 std::swap(CallSites[CSi], CallSites.back());
219 CallSites.pop_back();
220 } else {
221 CallSites.erase(CallSites.begin()+CSi);
222 }
223 --CSi;
224
225 ++NumInlined;
226 Changed = true;
227 LocalChange = true;
228 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000229 } while (LocalChange);
230
231 return Changed;
232}
233
234// doFinalization - Remove now-dead linkonce functions at the end of
235// processing to avoid breaking the SCC traversal.
236bool Inliner::doFinalization(CallGraph &CG) {
Devang Patelc5456a42008-11-05 01:39:16 +0000237 return removeDeadFunctions(CG);
238}
239
Chris Lattnerae56c0d2009-08-27 03:51:50 +0000240/// removeDeadFunctions - Remove dead functions that are not included in
241/// DNR (Do Not Remove) list.
Devang Patelc5456a42008-11-05 01:39:16 +0000242bool Inliner::removeDeadFunctions(CallGraph &CG,
Chris Lattnerae56c0d2009-08-27 03:51:50 +0000243 SmallPtrSet<const Function *, 16> *DNR) {
244 SmallPtrSet<CallGraphNode*, 16> FunctionsToRemove;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000245
246 // Scan for all of the functions, looking for ones that should now be removed
247 // from the program. Insert the dead ones in the FunctionsToRemove set.
248 for (CallGraph::iterator I = CG.begin(), E = CG.end(); I != E; ++I) {
249 CallGraphNode *CGN = I->second;
Chris Lattnerae56c0d2009-08-27 03:51:50 +0000250 if (CGN == 0 || CGN->getFunction() == 0)
251 continue;
252
253 Function *F = CGN->getFunction();
254
255 // If the only remaining users of the function are dead constants, remove
256 // them.
257 F->removeDeadConstantUsers();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000258
Chris Lattnerae56c0d2009-08-27 03:51:50 +0000259 if (DNR && DNR->count(F))
260 continue;
261 if (!F->hasLinkOnceLinkage() && !F->hasLocalLinkage())
262 continue;
263 if (!F->use_empty())
264 continue;
265
266 // Remove any call graph edges from the function to its callees.
267 CGN->removeAllCalledFunctions();
Devang Patelc5456a42008-11-05 01:39:16 +0000268
Chris Lattnerae56c0d2009-08-27 03:51:50 +0000269 // Remove any edges from the external node to the function's call graph
270 // node. These edges might have been made irrelegant due to
271 // optimization of the program.
272 CG.getExternalCallingNode()->removeAnyCallEdgeTo(CGN);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000273
Chris Lattnerae56c0d2009-08-27 03:51:50 +0000274 // Removing the node for callee from the call graph and delete it.
275 FunctionsToRemove.insert(CGN);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000276 }
277
278 // Now that we know which functions to delete, do so. We didn't want to do
279 // this inline, because that would invalidate our CallGraph::iterator
280 // objects. :(
Chris Lattnerae56c0d2009-08-27 03:51:50 +0000281 //
282 // Note that it doesn't matter that we are iterating over a non-stable set
283 // here to do this, it doesn't matter which order the functions are deleted
284 // in.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000285 bool Changed = false;
Chris Lattnerae56c0d2009-08-27 03:51:50 +0000286 for (SmallPtrSet<CallGraphNode*, 16>::iterator I = FunctionsToRemove.begin(),
287 E = FunctionsToRemove.end(); I != E; ++I) {
Dale Johannesenb618d082009-03-19 18:03:56 +0000288 resetCachedCostInfo((*I)->getFunction());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000289 delete CG.removeFunctionFromModule(*I);
290 ++NumDeleted;
291 Changed = true;
292 }
293
294 return Changed;
295}