blob: acd360464ca0e44b89b83b53335dd438d05f4f1a [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
Chris Lattner237ef562003-08-31 19:10:30 +000033namespace {
Chris Lattnerb822e702008-03-01 08:09:51 +000034 cl::opt<int> // FIXME: 200 is VERY conservative
Chris Lattner237ef562003-08-31 19:10:30 +000035 InlineLimit("inline-threshold", cl::Hidden, cl::init(200),
Chris Lattner8acb2492006-01-13 18:06:56 +000036 cl::desc("Control the amount of inlining to perform (default = 200)"));
Chris Lattner237ef562003-08-31 19:10:30 +000037}
38
Chris Lattner1ce6f8d2007-05-06 23:13:56 +000039Inliner::Inliner(const void *ID)
40 : CallGraphSCCPass((intptr_t)ID), InlineThreshold(InlineLimit) {}
Chris Lattner237ef562003-08-31 19:10:30 +000041
Chris Lattner120d0532008-01-12 06:49:13 +000042Inliner::Inliner(const void *ID, int Threshold)
43 : CallGraphSCCPass((intptr_t)ID), InlineThreshold(Threshold) {}
44
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 {
49 Info.addRequired<TargetData>();
50 CallGraphSCCPass::getAnalysisUsage(Info);
51}
52
Chris Lattnerbefa4992004-05-23 21:22:17 +000053// InlineCallIfPossible - If it is possible to inline the specified call site,
54// do so and update the CallGraph for this operation.
55static bool InlineCallIfPossible(CallSite CS, CallGraph &CG,
Chris Lattnerff2dad32007-01-30 23:28:39 +000056 const std::set<Function*> &SCCFunctions,
57 const TargetData &TD) {
Chris Lattnerbefa4992004-05-23 21:22:17 +000058 Function *Callee = CS.getCalledFunction();
Chris Lattnerff2dad32007-01-30 23:28:39 +000059 if (!InlineFunction(CS, &CG, &TD)) return false;
Misha Brukmanfd939082005-04-21 23:48:37 +000060
Chris Lattner54970c02004-08-08 03:29:50 +000061 // If we inlined the last possible call site to the function, delete the
62 // function body now.
Chris Lattnerbefa4992004-05-23 21:22:17 +000063 if (Callee->use_empty() && Callee->hasInternalLinkage() &&
64 !SCCFunctions.count(Callee)) {
Bill Wendling0a81aac2006-11-26 10:02:32 +000065 DOUT << " -> Deleting dead function: " << Callee->getName() << "\n";
Misha Brukmanfd939082005-04-21 23:48:37 +000066
Chris Lattnerbefa4992004-05-23 21:22:17 +000067 // Remove any call graph edges from the callee to its callees.
Chris Lattner432a2052006-01-14 20:09:18 +000068 CallGraphNode *CalleeNode = CG[Callee];
Dan Gohmancb406c22007-10-03 19:26:29 +000069 while (!CalleeNode->empty())
Chris Lattnerd85340f2006-07-12 18:29:36 +000070 CalleeNode->removeCallEdgeTo((CalleeNode->end()-1)->second);
Misha Brukmanfd939082005-04-21 23:48:37 +000071
Chris Lattnerbefa4992004-05-23 21:22:17 +000072 // Removing the node for callee from the call graph and delete it.
73 delete CG.removeFunctionFromModule(CalleeNode);
74 ++NumDeleted;
75 }
76 return true;
Chris Lattner237ef562003-08-31 19:10:30 +000077}
78
79bool Inliner::runOnSCC(const std::vector<CallGraphNode*> &SCC) {
80 CallGraph &CG = getAnalysis<CallGraph>();
81
82 std::set<Function*> SCCFunctions;
Bill Wendling0a81aac2006-11-26 10:02:32 +000083 DOUT << "Inliner visiting SCC:";
Chris Lattner237ef562003-08-31 19:10:30 +000084 for (unsigned i = 0, e = SCC.size(); i != e; ++i) {
Chris Lattnerbefa4992004-05-23 21:22:17 +000085 Function *F = SCC[i]->getFunction();
86 if (F) SCCFunctions.insert(F);
Bill Wendling0a81aac2006-11-26 10:02:32 +000087 DOUT << " " << (F ? F->getName() : "INDIRECTNODE");
Chris Lattner237ef562003-08-31 19:10:30 +000088 }
Chris Lattner237ef562003-08-31 19:10:30 +000089
Chris Lattnerbefa4992004-05-23 21:22:17 +000090 // Scan through and identify all call sites ahead of time so that we only
91 // inline call sites in the original functions, not call sites that result
92 // from inlining other functions.
93 std::vector<CallSite> CallSites;
94
Chris Lattnercf5933a2004-06-20 04:11:48 +000095 for (unsigned i = 0, e = SCC.size(); i != e; ++i)
96 if (Function *F = SCC[i]->getFunction())
Chris Lattnerbefa4992004-05-23 21:22:17 +000097 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
98 for (BasicBlock::iterator I = BB->begin(); I != BB->end(); ++I) {
99 CallSite CS = CallSite::get(I);
100 if (CS.getInstruction() && (!CS.getCalledFunction() ||
Reid Spencer5cbf9852007-01-30 20:08:39 +0000101 !CS.getCalledFunction()->isDeclaration()))
Chris Lattnerbefa4992004-05-23 21:22:17 +0000102 CallSites.push_back(CS);
103 }
Chris Lattner237ef562003-08-31 19:10:30 +0000104
Bill Wendling0a81aac2006-11-26 10:02:32 +0000105 DOUT << ": " << CallSites.size() << " call sites.\n";
Misha Brukmanfd939082005-04-21 23:48:37 +0000106
Chris Lattnerbefa4992004-05-23 21:22:17 +0000107 // Now that we have all of the call sites, move the ones to functions in the
108 // current SCC to the end of the list.
109 unsigned FirstCallInSCC = CallSites.size();
110 for (unsigned i = 0; i < FirstCallInSCC; ++i)
111 if (Function *F = CallSites[i].getCalledFunction())
112 if (SCCFunctions.count(F))
113 std::swap(CallSites[i--], CallSites[--FirstCallInSCC]);
Misha Brukmanfd939082005-04-21 23:48:37 +0000114
Chris Lattnerbefa4992004-05-23 21:22:17 +0000115 // Now that we have all of the call sites, loop over them and inline them if
116 // it looks profitable to do so.
117 bool Changed = false;
118 bool LocalChange;
119 do {
120 LocalChange = false;
121 // Iterate over the outer loop because inlining functions can cause indirect
122 // calls to become direct calls.
123 for (unsigned CSi = 0; CSi != CallSites.size(); ++CSi)
124 if (Function *Callee = CallSites[CSi].getCalledFunction()) {
125 // Calls to external functions are never inlinable.
Reid Spencer5cbf9852007-01-30 20:08:39 +0000126 if (Callee->isDeclaration() ||
Chris Lattnerbefa4992004-05-23 21:22:17 +0000127 CallSites[CSi].getInstruction()->getParent()->getParent() ==Callee){
Chris Lattner08ff1482006-11-09 23:36:08 +0000128 if (SCC.size() == 1) {
129 std::swap(CallSites[CSi], CallSites.back());
130 CallSites.pop_back();
131 } else {
132 // Keep the 'in SCC / not in SCC' boundary correct.
133 CallSites.erase(CallSites.begin()+CSi);
134 }
Chris Lattnerbefa4992004-05-23 21:22:17 +0000135 --CSi;
136 continue;
137 }
Chris Lattner775cbdd2004-04-08 06:34:31 +0000138
Chris Lattnerbefa4992004-05-23 21:22:17 +0000139 // If the policy determines that we should inline this function,
140 // try to do so.
141 CallSite CS = CallSites[CSi];
142 int InlineCost = getInlineCost(CS);
143 if (InlineCost >= (int)InlineThreshold) {
Bill Wendling0a81aac2006-11-26 10:02:32 +0000144 DOUT << " NOT Inlining: cost=" << InlineCost
145 << ", Call: " << *CS.getInstruction();
Chris Lattnerbefa4992004-05-23 21:22:17 +0000146 } else {
Bill Wendling0a81aac2006-11-26 10:02:32 +0000147 DOUT << " Inlining: cost=" << InlineCost
148 << ", Call: " << *CS.getInstruction();
Misha Brukmanfd939082005-04-21 23:48:37 +0000149
Chris Lattnerbefa4992004-05-23 21:22:17 +0000150 // Attempt to inline the function...
Chris Lattnerff2dad32007-01-30 23:28:39 +0000151 if (InlineCallIfPossible(CS, CG, SCCFunctions,
152 getAnalysis<TargetData>())) {
Chris Lattner08ff1482006-11-09 23:36:08 +0000153 // Remove this call site from the list. If possible, use
154 // swap/pop_back for efficiency, but do not use it if doing so would
155 // move a call site to a function in this SCC before the
156 // 'FirstCallInSCC' barrier.
157 if (SCC.size() == 1) {
158 std::swap(CallSites[CSi], CallSites.back());
159 CallSites.pop_back();
160 } else {
161 CallSites.erase(CallSites.begin()+CSi);
162 }
Chris Lattnerbefa4992004-05-23 21:22:17 +0000163 --CSi;
Chris Lattnerce1a3a22004-04-12 05:37:29 +0000164
Chris Lattnerbefa4992004-05-23 21:22:17 +0000165 ++NumInlined;
166 Changed = true;
167 LocalChange = true;
Chris Lattner775cbdd2004-04-08 06:34:31 +0000168 }
Chris Lattner775cbdd2004-04-08 06:34:31 +0000169 }
170 }
Chris Lattnerbefa4992004-05-23 21:22:17 +0000171 } while (LocalChange);
Chris Lattner775cbdd2004-04-08 06:34:31 +0000172
Chris Lattner237ef562003-08-31 19:10:30 +0000173 return Changed;
174}
175
Chris Lattner68d57e72004-04-20 22:06:53 +0000176// doFinalization - Remove now-dead linkonce functions at the end of
177// processing to avoid breaking the SCC traversal.
178bool Inliner::doFinalization(CallGraph &CG) {
Chris Lattner3e1358a2004-04-21 20:44:33 +0000179 std::set<CallGraphNode*> FunctionsToRemove;
180
181 // Scan for all of the functions, looking for ones that should now be removed
182 // from the program. Insert the dead ones in the FunctionsToRemove set.
183 for (CallGraph::iterator I = CG.begin(), E = CG.end(); I != E; ++I) {
184 CallGraphNode *CGN = I->second;
Chris Lattner54970c02004-08-08 03:29:50 +0000185 if (Function *F = CGN ? CGN->getFunction() : 0) {
Chris Lattner0c0aa712004-09-18 21:37:03 +0000186 // If the only remaining users of the function are dead constants, remove
187 // them.
Chris Lattner54970c02004-08-08 03:29:50 +0000188 F->removeDeadConstantUsers();
Chris Lattner3e1358a2004-04-21 20:44:33 +0000189
Chris Lattner54970c02004-08-08 03:29:50 +0000190 if ((F->hasLinkOnceLinkage() || F->hasInternalLinkage()) &&
191 F->use_empty()) {
Chris Lattner0c0aa712004-09-18 21:37:03 +0000192
Chris Lattner54970c02004-08-08 03:29:50 +0000193 // Remove any call graph edges from the function to its callees.
Dan Gohmancb406c22007-10-03 19:26:29 +0000194 while (!CGN->empty())
Chris Lattnerd85340f2006-07-12 18:29:36 +0000195 CGN->removeCallEdgeTo((CGN->end()-1)->second);
Misha Brukmanfd939082005-04-21 23:48:37 +0000196
Chris Lattner0c0aa712004-09-18 21:37:03 +0000197 // Remove any edges from the external node to the function's call graph
198 // node. These edges might have been made irrelegant due to
199 // optimization of the program.
200 CG.getExternalCallingNode()->removeAnyCallEdgeTo(CGN);
Misha Brukmanfd939082005-04-21 23:48:37 +0000201
Chris Lattner54970c02004-08-08 03:29:50 +0000202 // Removing the node for callee from the call graph and delete it.
203 FunctionsToRemove.insert(CGN);
204 }
Chris Lattner68d57e72004-04-20 22:06:53 +0000205 }
206 }
Chris Lattner3e1358a2004-04-21 20:44:33 +0000207
208 // Now that we know which functions to delete, do so. We didn't want to do
209 // this inline, because that would invalidate our CallGraph::iterator
210 // objects. :(
211 bool Changed = false;
212 for (std::set<CallGraphNode*>::iterator I = FunctionsToRemove.begin(),
213 E = FunctionsToRemove.end(); I != E; ++I) {
214 delete CG.removeFunctionFromModule(*I);
215 ++NumDeleted;
216 Changed = true;
217 }
218
Chris Lattner68d57e72004-04-20 22:06:53 +0000219 return Changed;
220}