blob: cd204a74334bee2e8966595d9f07446b48a25565 [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//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source 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 "Inliner.h"
18#include "llvm/Module.h"
Misha Brukman47b14a42004-07-29 17:30:56 +000019#include "llvm/Instructions.h"
Chris Lattner237ef562003-08-31 19:10:30 +000020#include "llvm/Analysis/CallGraph.h"
21#include "llvm/Support/CallSite.h"
Chris Lattnerff2dad32007-01-30 23:28:39 +000022#include "llvm/Target/TargetData.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 Lattner237ef562003-08-31 19:10:30 +000034 cl::opt<unsigned> // FIXME: 200 is VERY conservative
35 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
Devang Patel19974732007-05-03 01:11:54 +000039char Inliner::ID = 0;
Devang Patel794fd752007-05-01 21:15:47 +000040Inliner::Inliner()
41 : CallGraphSCCPass((intptr_t)&ID), InlineThreshold(InlineLimit) {}
Chris Lattner237ef562003-08-31 19:10:30 +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();
Chris Lattnerff2dad32007-01-30 23:28:39 +000057 if (!InlineFunction(CS, &CG, &TD)) return false;
Misha Brukmanfd939082005-04-21 23:48:37 +000058
Chris Lattner54970c02004-08-08 03:29:50 +000059 // If we inlined the last possible call site to the function, delete the
60 // function body now.
Chris Lattnerbefa4992004-05-23 21:22:17 +000061 if (Callee->use_empty() && Callee->hasInternalLinkage() &&
62 !SCCFunctions.count(Callee)) {
Bill Wendling0a81aac2006-11-26 10:02:32 +000063 DOUT << " -> Deleting dead function: " << Callee->getName() << "\n";
Misha Brukmanfd939082005-04-21 23:48:37 +000064
Chris Lattnerbefa4992004-05-23 21:22:17 +000065 // Remove any call graph edges from the callee to its callees.
Chris Lattner432a2052006-01-14 20:09:18 +000066 CallGraphNode *CalleeNode = CG[Callee];
Chris Lattnerbefa4992004-05-23 21:22:17 +000067 while (CalleeNode->begin() != CalleeNode->end())
Chris Lattnerd85340f2006-07-12 18:29:36 +000068 CalleeNode->removeCallEdgeTo((CalleeNode->end()-1)->second);
Misha Brukmanfd939082005-04-21 23:48:37 +000069
Chris Lattnerbefa4992004-05-23 21:22:17 +000070 // Removing the node for callee from the call graph and delete it.
71 delete CG.removeFunctionFromModule(CalleeNode);
72 ++NumDeleted;
73 }
74 return true;
Chris Lattner237ef562003-08-31 19:10:30 +000075}
76
77bool Inliner::runOnSCC(const std::vector<CallGraphNode*> &SCC) {
78 CallGraph &CG = getAnalysis<CallGraph>();
79
80 std::set<Function*> SCCFunctions;
Bill Wendling0a81aac2006-11-26 10:02:32 +000081 DOUT << "Inliner visiting SCC:";
Chris Lattner237ef562003-08-31 19:10:30 +000082 for (unsigned i = 0, e = SCC.size(); i != e; ++i) {
Chris Lattnerbefa4992004-05-23 21:22:17 +000083 Function *F = SCC[i]->getFunction();
84 if (F) SCCFunctions.insert(F);
Bill Wendling0a81aac2006-11-26 10:02:32 +000085 DOUT << " " << (F ? F->getName() : "INDIRECTNODE");
Chris Lattner237ef562003-08-31 19:10:30 +000086 }
Chris Lattner237ef562003-08-31 19:10:30 +000087
Chris Lattnerbefa4992004-05-23 21:22:17 +000088 // Scan through and identify all call sites ahead of time so that we only
89 // inline call sites in the original functions, not call sites that result
90 // from inlining other functions.
91 std::vector<CallSite> CallSites;
92
Chris Lattnercf5933a2004-06-20 04:11:48 +000093 for (unsigned i = 0, e = SCC.size(); i != e; ++i)
94 if (Function *F = SCC[i]->getFunction())
Chris Lattnerbefa4992004-05-23 21:22:17 +000095 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
96 for (BasicBlock::iterator I = BB->begin(); I != BB->end(); ++I) {
97 CallSite CS = CallSite::get(I);
98 if (CS.getInstruction() && (!CS.getCalledFunction() ||
Reid Spencer5cbf9852007-01-30 20:08:39 +000099 !CS.getCalledFunction()->isDeclaration()))
Chris Lattnerbefa4992004-05-23 21:22:17 +0000100 CallSites.push_back(CS);
101 }
Chris Lattner237ef562003-08-31 19:10:30 +0000102
Bill Wendling0a81aac2006-11-26 10:02:32 +0000103 DOUT << ": " << CallSites.size() << " call sites.\n";
Misha Brukmanfd939082005-04-21 23:48:37 +0000104
Chris Lattnerbefa4992004-05-23 21:22:17 +0000105 // Now that we have all of the call sites, move the ones to functions in the
106 // current SCC to the end of the list.
107 unsigned FirstCallInSCC = CallSites.size();
108 for (unsigned i = 0; i < FirstCallInSCC; ++i)
109 if (Function *F = CallSites[i].getCalledFunction())
110 if (SCCFunctions.count(F))
111 std::swap(CallSites[i--], CallSites[--FirstCallInSCC]);
Misha Brukmanfd939082005-04-21 23:48:37 +0000112
Chris Lattnerbefa4992004-05-23 21:22:17 +0000113 // Now that we have all of the call sites, loop over them and inline them if
114 // it looks profitable to do so.
115 bool Changed = false;
116 bool LocalChange;
117 do {
118 LocalChange = false;
119 // Iterate over the outer loop because inlining functions can cause indirect
120 // calls to become direct calls.
121 for (unsigned CSi = 0; CSi != CallSites.size(); ++CSi)
122 if (Function *Callee = CallSites[CSi].getCalledFunction()) {
123 // Calls to external functions are never inlinable.
Reid Spencer5cbf9852007-01-30 20:08:39 +0000124 if (Callee->isDeclaration() ||
Chris Lattnerbefa4992004-05-23 21:22:17 +0000125 CallSites[CSi].getInstruction()->getParent()->getParent() ==Callee){
Chris Lattner08ff1482006-11-09 23:36:08 +0000126 if (SCC.size() == 1) {
127 std::swap(CallSites[CSi], CallSites.back());
128 CallSites.pop_back();
129 } else {
130 // Keep the 'in SCC / not in SCC' boundary correct.
131 CallSites.erase(CallSites.begin()+CSi);
132 }
Chris Lattnerbefa4992004-05-23 21:22:17 +0000133 --CSi;
134 continue;
135 }
Chris Lattner775cbdd2004-04-08 06:34:31 +0000136
Chris Lattnerbefa4992004-05-23 21:22:17 +0000137 // If the policy determines that we should inline this function,
138 // try to do so.
139 CallSite CS = CallSites[CSi];
140 int InlineCost = getInlineCost(CS);
141 if (InlineCost >= (int)InlineThreshold) {
Bill Wendling0a81aac2006-11-26 10:02:32 +0000142 DOUT << " NOT Inlining: cost=" << InlineCost
143 << ", Call: " << *CS.getInstruction();
Chris Lattnerbefa4992004-05-23 21:22:17 +0000144 } else {
Bill Wendling0a81aac2006-11-26 10:02:32 +0000145 DOUT << " Inlining: cost=" << InlineCost
146 << ", Call: " << *CS.getInstruction();
Misha Brukmanfd939082005-04-21 23:48:37 +0000147
Chris Lattnerbefa4992004-05-23 21:22:17 +0000148 // Attempt to inline the function...
Chris Lattnerff2dad32007-01-30 23:28:39 +0000149 if (InlineCallIfPossible(CS, CG, SCCFunctions,
150 getAnalysis<TargetData>())) {
Chris Lattner08ff1482006-11-09 23:36:08 +0000151 // Remove this call site from the list. If possible, use
152 // swap/pop_back for efficiency, but do not use it if doing so would
153 // move a call site to a function in this SCC before the
154 // 'FirstCallInSCC' barrier.
155 if (SCC.size() == 1) {
156 std::swap(CallSites[CSi], CallSites.back());
157 CallSites.pop_back();
158 } else {
159 CallSites.erase(CallSites.begin()+CSi);
160 }
Chris Lattnerbefa4992004-05-23 21:22:17 +0000161 --CSi;
Chris Lattnerce1a3a22004-04-12 05:37:29 +0000162
Chris Lattnerbefa4992004-05-23 21:22:17 +0000163 ++NumInlined;
164 Changed = true;
165 LocalChange = true;
Chris Lattner775cbdd2004-04-08 06:34:31 +0000166 }
Chris Lattner775cbdd2004-04-08 06:34:31 +0000167 }
168 }
Chris Lattnerbefa4992004-05-23 21:22:17 +0000169 } while (LocalChange);
Chris Lattner775cbdd2004-04-08 06:34:31 +0000170
Chris Lattner237ef562003-08-31 19:10:30 +0000171 return Changed;
172}
173
Chris Lattner68d57e72004-04-20 22:06:53 +0000174// doFinalization - Remove now-dead linkonce functions at the end of
175// processing to avoid breaking the SCC traversal.
176bool Inliner::doFinalization(CallGraph &CG) {
Chris Lattner3e1358a2004-04-21 20:44:33 +0000177 std::set<CallGraphNode*> FunctionsToRemove;
178
179 // Scan for all of the functions, looking for ones that should now be removed
180 // from the program. Insert the dead ones in the FunctionsToRemove set.
181 for (CallGraph::iterator I = CG.begin(), E = CG.end(); I != E; ++I) {
182 CallGraphNode *CGN = I->second;
Chris Lattner54970c02004-08-08 03:29:50 +0000183 if (Function *F = CGN ? CGN->getFunction() : 0) {
Chris Lattner0c0aa712004-09-18 21:37:03 +0000184 // If the only remaining users of the function are dead constants, remove
185 // them.
Chris Lattner54970c02004-08-08 03:29:50 +0000186 F->removeDeadConstantUsers();
Chris Lattner3e1358a2004-04-21 20:44:33 +0000187
Chris Lattner54970c02004-08-08 03:29:50 +0000188 if ((F->hasLinkOnceLinkage() || F->hasInternalLinkage()) &&
189 F->use_empty()) {
Chris Lattner0c0aa712004-09-18 21:37:03 +0000190
Chris Lattner54970c02004-08-08 03:29:50 +0000191 // Remove any call graph edges from the function to its callees.
192 while (CGN->begin() != CGN->end())
Chris Lattnerd85340f2006-07-12 18:29:36 +0000193 CGN->removeCallEdgeTo((CGN->end()-1)->second);
Misha Brukmanfd939082005-04-21 23:48:37 +0000194
Chris Lattner0c0aa712004-09-18 21:37:03 +0000195 // Remove any edges from the external node to the function's call graph
196 // node. These edges might have been made irrelegant due to
197 // optimization of the program.
198 CG.getExternalCallingNode()->removeAnyCallEdgeTo(CGN);
Misha Brukmanfd939082005-04-21 23:48:37 +0000199
Chris Lattner54970c02004-08-08 03:29:50 +0000200 // Removing the node for callee from the call graph and delete it.
201 FunctionsToRemove.insert(CGN);
202 }
Chris Lattner68d57e72004-04-20 22:06:53 +0000203 }
204 }
Chris Lattner3e1358a2004-04-21 20:44:33 +0000205
206 // Now that we know which functions to delete, do so. We didn't want to do
207 // this inline, because that would invalidate our CallGraph::iterator
208 // objects. :(
209 bool Changed = false;
210 for (std::set<CallGraphNode*>::iterator I = FunctionsToRemove.begin(),
211 E = FunctionsToRemove.end(); I != E; ++I) {
212 delete CG.removeFunctionFromModule(*I);
213 ++NumDeleted;
214 Changed = true;
215 }
216
Chris Lattner68d57e72004-04-20 22:06:53 +0000217 return Changed;
218}