blob: e874a98b8dbd442b61c7f2d111c1f44abfa1297f [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"
27#include "llvm/ADT/Statistic.h"
28#include <set>
29using namespace llvm;
30
31STATISTIC(NumInlined, "Number of functions inlined");
32STATISTIC(NumDeleted, "Number of functions deleted because all callers found");
33
Dan Gohman089efff2008-05-13 00:00:25 +000034static cl::opt<int>
Dale Johannesen5adaa752009-01-12 22:11:50 +000035InlineLimit("inline-threshold", cl::Hidden, cl::init(200),
36 cl::desc("Control the amount of inlining to perform (default = 200)"));
Dan Gohmanf17a25c2007-07-18 16:29:46 +000037
Dan Gohman26f8c272008-09-04 17:05:41 +000038Inliner::Inliner(void *ID)
39 : CallGraphSCCPass(ID), InlineThreshold(InlineLimit) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040
Dan Gohman26f8c272008-09-04 17:05:41 +000041Inliner::Inliner(void *ID, int Threshold)
42 : CallGraphSCCPass(ID), InlineThreshold(Threshold) {}
Chris Lattner758296d2008-01-12 06:49:13 +000043
Dan Gohmanf17a25c2007-07-18 16:29:46 +000044/// getAnalysisUsage - For this class, we declare that we require and preserve
45/// the call graph. If the derived class implements this method, it should
46/// always explicitly call the implementation here.
47void Inliner::getAnalysisUsage(AnalysisUsage &Info) const {
48 Info.addRequired<TargetData>();
49 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 Gohmanf17a25c2007-07-18 16:29:46 +000056 const TargetData &TD) {
57 Function *Callee = CS.getCalledFunction();
Bill Wendling1106f2c2008-11-21 00:09:21 +000058 Function *Caller = CS.getCaller();
59
Dan Gohmanf17a25c2007-07-18 16:29:46 +000060 if (!InlineFunction(CS, &CG, &TD)) return false;
61
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.
Edwin Török6fc3a5f2009-05-23 14:06:57 +000072 if (Callee->use_empty() && (Callee->hasLocalLinkage() ||
73 Callee->hasAvailableExternallyLinkage()) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +000074 !SCCFunctions.count(Callee)) {
75 DOUT << " -> Deleting dead function: " << Callee->getName() << "\n";
Duncan Sandsd105c342008-09-05 14:56:53 +000076 CallGraphNode *CalleeNode = CG[Callee];
Dan Gohmanf17a25c2007-07-18 16:29:46 +000077
78 // Remove any call graph edges from the callee to its callees.
Duncan Sandsd105c342008-09-05 14:56:53 +000079 CalleeNode->removeAllCalledFunctions();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000080
Dale Johannesenb618d082009-03-19 18:03:56 +000081 resetCachedCostInfo(CalleeNode->getFunction());
82
Dan Gohmanf17a25c2007-07-18 16:29:46 +000083 // Removing the node for callee from the call graph and delete it.
84 delete CG.removeFunctionFromModule(CalleeNode);
85 ++NumDeleted;
86 }
87 return true;
88}
Daniel Dunbarfbda8c72008-10-29 01:02:02 +000089
90/// shouldInline - Return true if the inliner should attempt to inline
91/// at the given CallSite.
92bool Inliner::shouldInline(CallSite CS) {
Daniel Dunbarde4982c2008-10-30 19:26:59 +000093 InlineCost IC = getInlineCost(CS);
Daniel Dunbarfbda8c72008-10-29 01:02:02 +000094 float FudgeFactor = getInlineFudgeFactor(CS);
95
Daniel Dunbarde4982c2008-10-30 19:26:59 +000096 if (IC.isAlways()) {
97 DOUT << " Inlining: cost=always"
Eli Friedmanbf4732d2009-07-18 05:12:58 +000098 << ", Call: " << *CS.getInstruction() << "\n";
Daniel Dunbarde4982c2008-10-30 19:26:59 +000099 return true;
100 }
101
102 if (IC.isNever()) {
103 DOUT << " NOT Inlining: cost=never"
Eli Friedmanbf4732d2009-07-18 05:12:58 +0000104 << ", 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();
111 if (Fn && !Fn->isDeclaration()
112 && Fn->hasFnAttr(Attribute::OptimizeForSize)
113 && InlineThreshold != 50) {
114 CurrentThreshold = 50;
115 }
116
117 if (Cost >= (int)(CurrentThreshold * FudgeFactor)) {
118 DOUT << " NOT Inlining: cost=" << Cost
Eli Friedmanbf4732d2009-07-18 05:12:58 +0000119 << ", Call: " << *CS.getInstruction() << "\n";
Daniel Dunbarfbda8c72008-10-29 01:02:02 +0000120 return false;
121 } else {
122 DOUT << " Inlining: cost=" << Cost
Eli Friedmanbf4732d2009-07-18 05:12:58 +0000123 << ", Call: " << *CS.getInstruction() << "\n";
Daniel Dunbarfbda8c72008-10-29 01:02:02 +0000124 return true;
125 }
126}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000127
128bool Inliner::runOnSCC(const std::vector<CallGraphNode*> &SCC) {
129 CallGraph &CG = getAnalysis<CallGraph>();
Dale Johannesenb618d082009-03-19 18:03:56 +0000130 TargetData &TD = getAnalysis<TargetData>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000131
Dale Johannesendb0d8672009-03-23 23:39:20 +0000132 SmallPtrSet<Function*, 8> SCCFunctions;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000133 DOUT << "Inliner visiting SCC:";
134 for (unsigned i = 0, e = SCC.size(); i != e; ++i) {
135 Function *F = SCC[i]->getFunction();
136 if (F) SCCFunctions.insert(F);
137 DOUT << " " << (F ? F->getName() : "INDIRECTNODE");
138 }
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
145 for (unsigned i = 0, e = SCC.size(); i != e; ++i)
146 if (Function *F = SCC[i]->getFunction())
147 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
148 for (BasicBlock::iterator I = BB->begin(); I != BB->end(); ++I) {
149 CallSite CS = CallSite::get(I);
Dale Johannesenb618d082009-03-19 18:03:56 +0000150 if (CS.getInstruction() && !isa<DbgInfoIntrinsic>(I) &&
151 (!CS.getCalledFunction() ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000152 !CS.getCalledFunction()->isDeclaration()))
153 CallSites.push_back(CS);
154 }
155
156 DOUT << ": " << CallSites.size() << " call sites.\n";
157
158 // Now that we have all of the call sites, move the ones to functions in the
159 // current SCC to the end of the list.
160 unsigned FirstCallInSCC = CallSites.size();
161 for (unsigned i = 0; i < FirstCallInSCC; ++i)
162 if (Function *F = CallSites[i].getCalledFunction())
163 if (SCCFunctions.count(F))
164 std::swap(CallSites[i--], CallSites[--FirstCallInSCC]);
165
166 // Now that we have all of the call sites, loop over them and inline them if
167 // it looks profitable to do so.
168 bool Changed = false;
169 bool LocalChange;
170 do {
171 LocalChange = false;
172 // Iterate over the outer loop because inlining functions can cause indirect
173 // calls to become direct calls.
174 for (unsigned CSi = 0; CSi != CallSites.size(); ++CSi)
175 if (Function *Callee = CallSites[CSi].getCalledFunction()) {
176 // Calls to external functions are never inlinable.
Dale Johannesen5adaa752009-01-12 22:11:50 +0000177 if (Callee->isDeclaration()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000178 if (SCC.size() == 1) {
179 std::swap(CallSites[CSi], CallSites.back());
180 CallSites.pop_back();
181 } else {
182 // Keep the 'in SCC / not in SCC' boundary correct.
183 CallSites.erase(CallSites.begin()+CSi);
184 }
185 --CSi;
186 continue;
187 }
188
189 // If the policy determines that we should inline this function,
190 // try to do so.
191 CallSite CS = CallSites[CSi];
Daniel Dunbarfbda8c72008-10-29 01:02:02 +0000192 if (shouldInline(CS)) {
Dale Johannesenec46e482009-01-09 01:30:11 +0000193 Function *Caller = CS.getCaller();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000194 // Attempt to inline the function...
Dale Johannesenb618d082009-03-19 18:03:56 +0000195 if (InlineCallIfPossible(CS, CG, SCCFunctions, TD)) {
196 // Remove any cached cost info for this caller, as inlining the
197 // callee has increased the size of the caller (which may be the
198 // same as the callee).
Dale Johannesenec46e482009-01-09 01:30:11 +0000199 resetCachedCostInfo(Caller);
200
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000201 // Remove this call site from the list. If possible, use
202 // swap/pop_back for efficiency, but do not use it if doing so would
203 // move a call site to a function in this SCC before the
204 // 'FirstCallInSCC' barrier.
205 if (SCC.size() == 1) {
206 std::swap(CallSites[CSi], CallSites.back());
207 CallSites.pop_back();
208 } else {
209 CallSites.erase(CallSites.begin()+CSi);
210 }
211 --CSi;
212
213 ++NumInlined;
214 Changed = true;
215 LocalChange = true;
216 }
217 }
218 }
219 } while (LocalChange);
220
221 return Changed;
222}
223
224// doFinalization - Remove now-dead linkonce functions at the end of
225// processing to avoid breaking the SCC traversal.
226bool Inliner::doFinalization(CallGraph &CG) {
Devang Patelc5456a42008-11-05 01:39:16 +0000227 return removeDeadFunctions(CG);
228}
229
230 /// removeDeadFunctions - Remove dead functions that are not included in
231 /// DNR (Do Not Remove) list.
232bool Inliner::removeDeadFunctions(CallGraph &CG,
233 SmallPtrSet<const Function *, 16> *DNR) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000234 std::set<CallGraphNode*> FunctionsToRemove;
235
236 // Scan for all of the functions, looking for ones that should now be removed
237 // from the program. Insert the dead ones in the FunctionsToRemove set.
238 for (CallGraph::iterator I = CG.begin(), E = CG.end(); I != E; ++I) {
239 CallGraphNode *CGN = I->second;
240 if (Function *F = CGN ? CGN->getFunction() : 0) {
241 // If the only remaining users of the function are dead constants, remove
242 // them.
243 F->removeDeadConstantUsers();
244
Devang Patelc5456a42008-11-05 01:39:16 +0000245 if (DNR && DNR->count(F))
246 continue;
247
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000248 if ((F->hasLinkOnceLinkage() || F->hasLocalLinkage()) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000249 F->use_empty()) {
250
251 // Remove any call graph edges from the function to its callees.
Duncan Sandsd105c342008-09-05 14:56:53 +0000252 CGN->removeAllCalledFunctions();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000253
254 // Remove any edges from the external node to the function's call graph
255 // node. These edges might have been made irrelegant due to
256 // optimization of the program.
257 CG.getExternalCallingNode()->removeAnyCallEdgeTo(CGN);
258
259 // Removing the node for callee from the call graph and delete it.
260 FunctionsToRemove.insert(CGN);
261 }
262 }
263 }
264
265 // Now that we know which functions to delete, do so. We didn't want to do
266 // this inline, because that would invalidate our CallGraph::iterator
267 // objects. :(
268 bool Changed = false;
269 for (std::set<CallGraphNode*>::iterator I = FunctionsToRemove.begin(),
270 E = FunctionsToRemove.end(); I != E; ++I) {
Dale Johannesenb618d082009-03-19 18:03:56 +0000271 resetCachedCostInfo((*I)->getFunction());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000272 delete CG.removeFunctionFromModule(*I);
273 ++NumDeleted;
274 Changed = true;
275 }
276
277 return Changed;
278}