blob: 418b2b70cb66a96afc059b52a3371efc0ab4a3fe [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"
19#include "llvm/Analysis/CallGraph.h"
20#include "llvm/Support/CallSite.h"
21#include "llvm/Target/TargetData.h"
22#include "llvm/Transforms/IPO/InlinerPass.h"
23#include "llvm/Transforms/Utils/Cloning.h"
24#include "llvm/Support/CommandLine.h"
25#include "llvm/Support/Debug.h"
26#include "llvm/ADT/Statistic.h"
27#include <set>
28using namespace llvm;
29
30STATISTIC(NumInlined, "Number of functions inlined");
31STATISTIC(NumDeleted, "Number of functions deleted because all callers found");
32
Dan Gohman089efff2008-05-13 00:00:25 +000033static cl::opt<int>
34InlineLimit("inline-threshold", cl::Hidden, cl::init(200),
Evan Chenga3a03292008-04-01 23:59:29 +000035 cl::desc("Control the amount of inlining to perform (default = 200)"));
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036
Dan Gohman26f8c272008-09-04 17:05:41 +000037Inliner::Inliner(void *ID)
38 : CallGraphSCCPass(ID), InlineThreshold(InlineLimit) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000039
Dan Gohman26f8c272008-09-04 17:05:41 +000040Inliner::Inliner(void *ID, int Threshold)
41 : CallGraphSCCPass(ID), InlineThreshold(Threshold) {}
Chris Lattner758296d2008-01-12 06:49:13 +000042
Dan Gohmanf17a25c2007-07-18 16:29:46 +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
51// 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,
54 const std::set<Function*> &SCCFunctions,
55 const TargetData &TD) {
56 Function *Callee = CS.getCalledFunction();
57 if (!InlineFunction(CS, &CG, &TD)) return false;
58
59 // If we inlined the last possible call site to the function, delete the
60 // function body now.
61 if (Callee->use_empty() && Callee->hasInternalLinkage() &&
62 !SCCFunctions.count(Callee)) {
63 DOUT << " -> Deleting dead function: " << Callee->getName() << "\n";
Duncan Sandsd105c342008-09-05 14:56:53 +000064 CallGraphNode *CalleeNode = CG[Callee];
Dan Gohmanf17a25c2007-07-18 16:29:46 +000065
66 // Remove any call graph edges from the callee to its callees.
Duncan Sandsd105c342008-09-05 14:56:53 +000067 CalleeNode->removeAllCalledFunctions();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000068
69 // Removing the node for callee from the call graph and delete it.
70 delete CG.removeFunctionFromModule(CalleeNode);
71 ++NumDeleted;
72 }
73 return true;
74}
Daniel Dunbarfbda8c72008-10-29 01:02:02 +000075
76/// shouldInline - Return true if the inliner should attempt to inline
77/// at the given CallSite.
78bool Inliner::shouldInline(CallSite CS) {
Daniel Dunbarde4982c2008-10-30 19:26:59 +000079 InlineCost IC = getInlineCost(CS);
Daniel Dunbarfbda8c72008-10-29 01:02:02 +000080 float FudgeFactor = getInlineFudgeFactor(CS);
81
Daniel Dunbarde4982c2008-10-30 19:26:59 +000082 if (IC.isAlways()) {
83 DOUT << " Inlining: cost=always"
84 << ", Call: " << *CS.getInstruction();
85 return true;
86 }
87
88 if (IC.isNever()) {
89 DOUT << " NOT Inlining: cost=never"
90 << ", Call: " << *CS.getInstruction();
91 return false;
92 }
93
94 int Cost = IC.getValue();
Daniel Dunbarfbda8c72008-10-29 01:02:02 +000095 int CurrentThreshold = InlineThreshold;
96 Function *Fn = CS.getCaller();
97 if (Fn && !Fn->isDeclaration()
98 && Fn->hasFnAttr(Attribute::OptimizeForSize)
99 && InlineThreshold != 50) {
100 CurrentThreshold = 50;
101 }
102
103 if (Cost >= (int)(CurrentThreshold * FudgeFactor)) {
104 DOUT << " NOT Inlining: cost=" << Cost
105 << ", Call: " << *CS.getInstruction();
106 return false;
107 } else {
108 DOUT << " Inlining: cost=" << Cost
109 << ", Call: " << *CS.getInstruction();
110 return true;
111 }
112}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000113
114bool Inliner::runOnSCC(const std::vector<CallGraphNode*> &SCC) {
115 CallGraph &CG = getAnalysis<CallGraph>();
116
117 std::set<Function*> SCCFunctions;
118 DOUT << "Inliner visiting SCC:";
119 for (unsigned i = 0, e = SCC.size(); i != e; ++i) {
120 Function *F = SCC[i]->getFunction();
121 if (F) SCCFunctions.insert(F);
122 DOUT << " " << (F ? F->getName() : "INDIRECTNODE");
123 }
124
125 // Scan through and identify all call sites ahead of time so that we only
126 // inline call sites in the original functions, not call sites that result
127 // from inlining other functions.
128 std::vector<CallSite> CallSites;
129
130 for (unsigned i = 0, e = SCC.size(); i != e; ++i)
131 if (Function *F = SCC[i]->getFunction())
132 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
133 for (BasicBlock::iterator I = BB->begin(); I != BB->end(); ++I) {
134 CallSite CS = CallSite::get(I);
135 if (CS.getInstruction() && (!CS.getCalledFunction() ||
136 !CS.getCalledFunction()->isDeclaration()))
137 CallSites.push_back(CS);
138 }
139
140 DOUT << ": " << CallSites.size() << " call sites.\n";
141
142 // Now that we have all of the call sites, move the ones to functions in the
143 // current SCC to the end of the list.
144 unsigned FirstCallInSCC = CallSites.size();
145 for (unsigned i = 0; i < FirstCallInSCC; ++i)
146 if (Function *F = CallSites[i].getCalledFunction())
147 if (SCCFunctions.count(F))
148 std::swap(CallSites[i--], CallSites[--FirstCallInSCC]);
149
150 // Now that we have all of the call sites, loop over them and inline them if
151 // it looks profitable to do so.
152 bool Changed = false;
153 bool LocalChange;
154 do {
155 LocalChange = false;
156 // Iterate over the outer loop because inlining functions can cause indirect
157 // calls to become direct calls.
158 for (unsigned CSi = 0; CSi != CallSites.size(); ++CSi)
159 if (Function *Callee = CallSites[CSi].getCalledFunction()) {
160 // Calls to external functions are never inlinable.
161 if (Callee->isDeclaration() ||
162 CallSites[CSi].getInstruction()->getParent()->getParent() ==Callee){
163 if (SCC.size() == 1) {
164 std::swap(CallSites[CSi], CallSites.back());
165 CallSites.pop_back();
166 } else {
167 // Keep the 'in SCC / not in SCC' boundary correct.
168 CallSites.erase(CallSites.begin()+CSi);
169 }
170 --CSi;
171 continue;
172 }
173
174 // If the policy determines that we should inline this function,
175 // try to do so.
176 CallSite CS = CallSites[CSi];
Daniel Dunbarfbda8c72008-10-29 01:02:02 +0000177 if (shouldInline(CS)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000178 // Attempt to inline the function...
179 if (InlineCallIfPossible(CS, CG, SCCFunctions,
180 getAnalysis<TargetData>())) {
181 // Remove this call site from the list. If possible, use
182 // swap/pop_back for efficiency, but do not use it if doing so would
183 // move a call site to a function in this SCC before the
184 // 'FirstCallInSCC' barrier.
185 if (SCC.size() == 1) {
186 std::swap(CallSites[CSi], CallSites.back());
187 CallSites.pop_back();
188 } else {
189 CallSites.erase(CallSites.begin()+CSi);
190 }
191 --CSi;
192
193 ++NumInlined;
194 Changed = true;
195 LocalChange = true;
196 }
197 }
198 }
199 } while (LocalChange);
200
201 return Changed;
202}
203
204// doFinalization - Remove now-dead linkonce functions at the end of
205// processing to avoid breaking the SCC traversal.
206bool Inliner::doFinalization(CallGraph &CG) {
Devang Patelc5456a42008-11-05 01:39:16 +0000207 return removeDeadFunctions(CG);
208}
209
210 /// removeDeadFunctions - Remove dead functions that are not included in
211 /// DNR (Do Not Remove) list.
212bool Inliner::removeDeadFunctions(CallGraph &CG,
213 SmallPtrSet<const Function *, 16> *DNR) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000214 std::set<CallGraphNode*> FunctionsToRemove;
215
216 // Scan for all of the functions, looking for ones that should now be removed
217 // from the program. Insert the dead ones in the FunctionsToRemove set.
218 for (CallGraph::iterator I = CG.begin(), E = CG.end(); I != E; ++I) {
219 CallGraphNode *CGN = I->second;
220 if (Function *F = CGN ? CGN->getFunction() : 0) {
221 // If the only remaining users of the function are dead constants, remove
222 // them.
223 F->removeDeadConstantUsers();
224
Devang Patelc5456a42008-11-05 01:39:16 +0000225 if (DNR && DNR->count(F))
226 continue;
227
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000228 if ((F->hasLinkOnceLinkage() || F->hasInternalLinkage()) &&
229 F->use_empty()) {
230
231 // Remove any call graph edges from the function to its callees.
Duncan Sandsd105c342008-09-05 14:56:53 +0000232 CGN->removeAllCalledFunctions();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000233
234 // Remove any edges from the external node to the function's call graph
235 // node. These edges might have been made irrelegant due to
236 // optimization of the program.
237 CG.getExternalCallingNode()->removeAnyCallEdgeTo(CGN);
238
239 // Removing the node for callee from the call graph and delete it.
240 FunctionsToRemove.insert(CGN);
241 }
242 }
243 }
244
245 // Now that we know which functions to delete, do so. We didn't want to do
246 // this inline, because that would invalidate our CallGraph::iterator
247 // objects. :(
248 bool Changed = false;
249 for (std::set<CallGraphNode*>::iterator I = FunctionsToRemove.begin(),
250 E = FunctionsToRemove.end(); I != E; ++I) {
251 delete CG.removeFunctionFromModule(*I);
252 ++NumDeleted;
253 Changed = true;
254 }
255
256 return Changed;
257}