blob: b7ebe7781b1f7722c732265a80428b4b8f710752 [file] [log] [blame]
Chris Lattner7d30a6c2004-06-20 04:11:48 +00001//===- Inliner.cpp - Code common to all inliners --------------------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-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 Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattnerd075cc22003-08-31 19:10:30 +00009//
Chris Lattner6754b822004-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 Lattnerd075cc22003-08-31 19:10:30 +000013//
14//===----------------------------------------------------------------------===//
15
Chris Lattner1631bcb2006-12-19 22:09:18 +000016#define DEBUG_TYPE "inline"
Chris Lattnerd075cc22003-08-31 19:10:30 +000017#include "Inliner.h"
18#include "llvm/Module.h"
Misha Brukman63b38bd2004-07-29 17:30:56 +000019#include "llvm/Instructions.h"
Chris Lattnerd075cc22003-08-31 19:10:30 +000020#include "llvm/Analysis/CallGraph.h"
21#include "llvm/Support/CallSite.h"
22#include "llvm/Transforms/Utils/Cloning.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000023#include "llvm/Support/CommandLine.h"
24#include "llvm/Support/Debug.h"
25#include "llvm/ADT/Statistic.h"
Chris Lattner6754b822004-05-23 21:22:17 +000026#include <set>
Chris Lattnera82f1312003-11-21 21:45:31 +000027using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000028
Chris Lattner1631bcb2006-12-19 22:09:18 +000029STATISTIC(NumInlined, "Number of functions inlined");
30STATISTIC(NumDeleted, "Number of functions deleted because all callers found");
31
Chris Lattnerd075cc22003-08-31 19:10:30 +000032namespace {
Chris Lattnerd075cc22003-08-31 19:10:30 +000033 cl::opt<unsigned> // FIXME: 200 is VERY conservative
34 InlineLimit("inline-threshold", cl::Hidden, cl::init(200),
Chris Lattner49c4d532006-01-13 18:06:56 +000035 cl::desc("Control the amount of inlining to perform (default = 200)"));
Chris Lattnerd075cc22003-08-31 19:10:30 +000036}
37
38Inliner::Inliner() : InlineThreshold(InlineLimit) {}
39
Chris Lattner6754b822004-05-23 21:22:17 +000040// InlineCallIfPossible - If it is possible to inline the specified call site,
41// do so and update the CallGraph for this operation.
42static bool InlineCallIfPossible(CallSite CS, CallGraph &CG,
43 const std::set<Function*> &SCCFunctions) {
Chris Lattner6754b822004-05-23 21:22:17 +000044 Function *Callee = CS.getCalledFunction();
Chris Lattnerf6d68232006-01-14 20:09:18 +000045 if (!InlineFunction(CS, &CG)) return false;
Misha Brukmanb1c93172005-04-21 23:48:37 +000046
Chris Lattner4956a322004-08-08 03:29:50 +000047 // If we inlined the last possible call site to the function, delete the
48 // function body now.
Chris Lattner6754b822004-05-23 21:22:17 +000049 if (Callee->use_empty() && Callee->hasInternalLinkage() &&
50 !SCCFunctions.count(Callee)) {
Bill Wendling8f13b5c2006-11-26 10:02:32 +000051 DOUT << " -> Deleting dead function: " << Callee->getName() << "\n";
Misha Brukmanb1c93172005-04-21 23:48:37 +000052
Chris Lattner6754b822004-05-23 21:22:17 +000053 // Remove any call graph edges from the callee to its callees.
Chris Lattnerf6d68232006-01-14 20:09:18 +000054 CallGraphNode *CalleeNode = CG[Callee];
Chris Lattner6754b822004-05-23 21:22:17 +000055 while (CalleeNode->begin() != CalleeNode->end())
Chris Lattner5de3b8b2006-07-12 18:29:36 +000056 CalleeNode->removeCallEdgeTo((CalleeNode->end()-1)->second);
Misha Brukmanb1c93172005-04-21 23:48:37 +000057
Chris Lattner6754b822004-05-23 21:22:17 +000058 // Removing the node for callee from the call graph and delete it.
59 delete CG.removeFunctionFromModule(CalleeNode);
60 ++NumDeleted;
61 }
62 return true;
Chris Lattnerd075cc22003-08-31 19:10:30 +000063}
64
65bool Inliner::runOnSCC(const std::vector<CallGraphNode*> &SCC) {
66 CallGraph &CG = getAnalysis<CallGraph>();
67
68 std::set<Function*> SCCFunctions;
Bill Wendling8f13b5c2006-11-26 10:02:32 +000069 DOUT << "Inliner visiting SCC:";
Chris Lattnerd075cc22003-08-31 19:10:30 +000070 for (unsigned i = 0, e = SCC.size(); i != e; ++i) {
Chris Lattner6754b822004-05-23 21:22:17 +000071 Function *F = SCC[i]->getFunction();
72 if (F) SCCFunctions.insert(F);
Bill Wendling8f13b5c2006-11-26 10:02:32 +000073 DOUT << " " << (F ? F->getName() : "INDIRECTNODE");
Chris Lattnerd075cc22003-08-31 19:10:30 +000074 }
Chris Lattnerd075cc22003-08-31 19:10:30 +000075
Chris Lattner6754b822004-05-23 21:22:17 +000076 // Scan through and identify all call sites ahead of time so that we only
77 // inline call sites in the original functions, not call sites that result
78 // from inlining other functions.
79 std::vector<CallSite> CallSites;
80
Chris Lattner7d30a6c2004-06-20 04:11:48 +000081 for (unsigned i = 0, e = SCC.size(); i != e; ++i)
82 if (Function *F = SCC[i]->getFunction())
Chris Lattner6754b822004-05-23 21:22:17 +000083 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
84 for (BasicBlock::iterator I = BB->begin(); I != BB->end(); ++I) {
85 CallSite CS = CallSite::get(I);
86 if (CS.getInstruction() && (!CS.getCalledFunction() ||
Reid Spencer5301e7c2007-01-30 20:08:39 +000087 !CS.getCalledFunction()->isDeclaration()))
Chris Lattner6754b822004-05-23 21:22:17 +000088 CallSites.push_back(CS);
89 }
Chris Lattnerd075cc22003-08-31 19:10:30 +000090
Bill Wendling8f13b5c2006-11-26 10:02:32 +000091 DOUT << ": " << CallSites.size() << " call sites.\n";
Misha Brukmanb1c93172005-04-21 23:48:37 +000092
Chris Lattner6754b822004-05-23 21:22:17 +000093 // Now that we have all of the call sites, move the ones to functions in the
94 // current SCC to the end of the list.
95 unsigned FirstCallInSCC = CallSites.size();
96 for (unsigned i = 0; i < FirstCallInSCC; ++i)
97 if (Function *F = CallSites[i].getCalledFunction())
98 if (SCCFunctions.count(F))
99 std::swap(CallSites[i--], CallSites[--FirstCallInSCC]);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000100
Chris Lattner6754b822004-05-23 21:22:17 +0000101 // Now that we have all of the call sites, loop over them and inline them if
102 // it looks profitable to do so.
103 bool Changed = false;
104 bool LocalChange;
105 do {
106 LocalChange = false;
107 // Iterate over the outer loop because inlining functions can cause indirect
108 // calls to become direct calls.
109 for (unsigned CSi = 0; CSi != CallSites.size(); ++CSi)
110 if (Function *Callee = CallSites[CSi].getCalledFunction()) {
111 // Calls to external functions are never inlinable.
Reid Spencer5301e7c2007-01-30 20:08:39 +0000112 if (Callee->isDeclaration() ||
Chris Lattner6754b822004-05-23 21:22:17 +0000113 CallSites[CSi].getInstruction()->getParent()->getParent() ==Callee){
Chris Lattner82928ca2006-11-09 23:36:08 +0000114 if (SCC.size() == 1) {
115 std::swap(CallSites[CSi], CallSites.back());
116 CallSites.pop_back();
117 } else {
118 // Keep the 'in SCC / not in SCC' boundary correct.
119 CallSites.erase(CallSites.begin()+CSi);
120 }
Chris Lattner6754b822004-05-23 21:22:17 +0000121 --CSi;
122 continue;
123 }
Chris Lattner4d25c862004-04-08 06:34:31 +0000124
Chris Lattner6754b822004-05-23 21:22:17 +0000125 // If the policy determines that we should inline this function,
126 // try to do so.
127 CallSite CS = CallSites[CSi];
128 int InlineCost = getInlineCost(CS);
129 if (InlineCost >= (int)InlineThreshold) {
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000130 DOUT << " NOT Inlining: cost=" << InlineCost
131 << ", Call: " << *CS.getInstruction();
Chris Lattner6754b822004-05-23 21:22:17 +0000132 } else {
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000133 DOUT << " Inlining: cost=" << InlineCost
134 << ", Call: " << *CS.getInstruction();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000135
Chris Lattner6754b822004-05-23 21:22:17 +0000136 // Attempt to inline the function...
137 if (InlineCallIfPossible(CS, CG, SCCFunctions)) {
Chris Lattner82928ca2006-11-09 23:36:08 +0000138 // Remove this call site from the list. If possible, use
139 // swap/pop_back for efficiency, but do not use it if doing so would
140 // move a call site to a function in this SCC before the
141 // 'FirstCallInSCC' barrier.
142 if (SCC.size() == 1) {
143 std::swap(CallSites[CSi], CallSites.back());
144 CallSites.pop_back();
145 } else {
146 CallSites.erase(CallSites.begin()+CSi);
147 }
Chris Lattner6754b822004-05-23 21:22:17 +0000148 --CSi;
Chris Lattnerbe435442004-04-12 05:37:29 +0000149
Chris Lattner6754b822004-05-23 21:22:17 +0000150 ++NumInlined;
151 Changed = true;
152 LocalChange = true;
Chris Lattner4d25c862004-04-08 06:34:31 +0000153 }
Chris Lattner4d25c862004-04-08 06:34:31 +0000154 }
155 }
Chris Lattner6754b822004-05-23 21:22:17 +0000156 } while (LocalChange);
Chris Lattner4d25c862004-04-08 06:34:31 +0000157
Chris Lattnerd075cc22003-08-31 19:10:30 +0000158 return Changed;
159}
160
Chris Lattnerc87784f2004-04-20 22:06:53 +0000161// doFinalization - Remove now-dead linkonce functions at the end of
162// processing to avoid breaking the SCC traversal.
163bool Inliner::doFinalization(CallGraph &CG) {
Chris Lattnerbe8bb802004-04-21 20:44:33 +0000164 std::set<CallGraphNode*> FunctionsToRemove;
165
166 // Scan for all of the functions, looking for ones that should now be removed
167 // from the program. Insert the dead ones in the FunctionsToRemove set.
168 for (CallGraph::iterator I = CG.begin(), E = CG.end(); I != E; ++I) {
169 CallGraphNode *CGN = I->second;
Chris Lattner4956a322004-08-08 03:29:50 +0000170 if (Function *F = CGN ? CGN->getFunction() : 0) {
Chris Lattner6455c512004-09-18 21:37:03 +0000171 // If the only remaining users of the function are dead constants, remove
172 // them.
Chris Lattner4956a322004-08-08 03:29:50 +0000173 F->removeDeadConstantUsers();
Chris Lattnerbe8bb802004-04-21 20:44:33 +0000174
Chris Lattner4956a322004-08-08 03:29:50 +0000175 if ((F->hasLinkOnceLinkage() || F->hasInternalLinkage()) &&
176 F->use_empty()) {
Chris Lattner6455c512004-09-18 21:37:03 +0000177
Chris Lattner4956a322004-08-08 03:29:50 +0000178 // Remove any call graph edges from the function to its callees.
179 while (CGN->begin() != CGN->end())
Chris Lattner5de3b8b2006-07-12 18:29:36 +0000180 CGN->removeCallEdgeTo((CGN->end()-1)->second);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000181
Chris Lattner6455c512004-09-18 21:37:03 +0000182 // Remove any edges from the external node to the function's call graph
183 // node. These edges might have been made irrelegant due to
184 // optimization of the program.
185 CG.getExternalCallingNode()->removeAnyCallEdgeTo(CGN);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000186
Chris Lattner4956a322004-08-08 03:29:50 +0000187 // Removing the node for callee from the call graph and delete it.
188 FunctionsToRemove.insert(CGN);
189 }
Chris Lattnerc87784f2004-04-20 22:06:53 +0000190 }
191 }
Chris Lattnerbe8bb802004-04-21 20:44:33 +0000192
193 // Now that we know which functions to delete, do so. We didn't want to do
194 // this inline, because that would invalidate our CallGraph::iterator
195 // objects. :(
196 bool Changed = false;
197 for (std::set<CallGraphNode*>::iterator I = FunctionsToRemove.begin(),
198 E = FunctionsToRemove.end(); I != E; ++I) {
199 delete CG.removeFunctionFromModule(*I);
200 ++NumDeleted;
201 Changed = true;
202 }
203
Chris Lattnerc87784f2004-04-20 22:06:53 +0000204 return Changed;
205}