blob: 17e8001c5b579809f7792c6e8cc8f1ff2c0d6e4c [file] [log] [blame]
Chris Lattnerd075cc22003-08-31 19:10:30 +00001//===- InlineCommon.cpp - Code common to all inliners ---------------------===//
John Criswell482202a2003-10-20 19:43:21 +00002//
3// 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.
7//
8//===----------------------------------------------------------------------===//
Chris Lattnerd075cc22003-08-31 19:10:30 +00009//
10// This file implements the code shared between the LLVM inliners. This
11// implements all of the boring mechanics of the bottom-up inlining.
12//
13//===----------------------------------------------------------------------===//
14
15#include "Inliner.h"
Chris Lattnerb45d9072003-10-31 21:05:58 +000016#include "llvm/Constants.h" // ConstantPointerRef should die
Chris Lattnerd075cc22003-08-31 19:10:30 +000017#include "llvm/Module.h"
18#include "llvm/iOther.h"
19#include "llvm/iTerminators.h"
20#include "llvm/Analysis/CallGraph.h"
21#include "llvm/Support/CallSite.h"
22#include "llvm/Transforms/Utils/Cloning.h"
23#include "Support/CommandLine.h"
24#include "Support/Debug.h"
25#include "Support/Statistic.h"
Chris Lattnera82f1312003-11-21 21:45:31 +000026using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000027
Chris Lattnerd075cc22003-08-31 19:10:30 +000028namespace {
29 Statistic<> NumInlined("inline", "Number of functions inlined");
30 Statistic<> NumDeleted("inline", "Number of functions deleted because all callers found");
31 cl::opt<unsigned> // FIXME: 200 is VERY conservative
32 InlineLimit("inline-threshold", cl::Hidden, cl::init(200),
33 cl::desc("Control the amount of inlining to perform (default = 200)"));
34}
35
36Inliner::Inliner() : InlineThreshold(InlineLimit) {}
37
38int Inliner::getRecursiveInlineCost(CallSite CS) {
39 return getInlineCost(CS);
40}
41
42bool Inliner::runOnSCC(const std::vector<CallGraphNode*> &SCC) {
43 CallGraph &CG = getAnalysis<CallGraph>();
44
45 std::set<Function*> SCCFunctions;
46 DEBUG(std::cerr << "Inliner visiting SCC:");
47 for (unsigned i = 0, e = SCC.size(); i != e; ++i) {
48 SCCFunctions.insert(SCC[i]->getFunction());
49 DEBUG(std::cerr << " " << (SCC[i]->getFunction() ?
50 SCC[i]->getFunction()->getName() : "INDIRECTNODE"));
51 }
52 DEBUG(std::cerr << "\n");
53
54 bool Changed = false;
55 for (std::set<Function*>::iterator SCCI = SCCFunctions.begin(),
56 E = SCCFunctions.end(); SCCI != E; ++SCCI) {
57 Function *F = *SCCI;
58 if (F == 0 || F->isExternal()) continue;
59 DEBUG(std::cerr << " Inspecting function: " << F->getName() << "\n");
60
Chris Lattner4d25c862004-04-08 06:34:31 +000061 // Scan through and identify all call sites ahead of time so that we only
62 // inline call sites in the original functions, not call sites that result
63 // in inlining other functions.
64 std::vector<CallSite> CallSites;
Chris Lattnerd075cc22003-08-31 19:10:30 +000065 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
Chris Lattner4d25c862004-04-08 06:34:31 +000066 for (BasicBlock::iterator I = BB->begin(); I != BB->end(); ++I) {
67 CallSite CS = CallSite::get(I);
68 if (CS.getInstruction() && CS.getCalledFunction() &&
69 !CS.getCalledFunction()->isExternal())
70 CallSites.push_back(CS);
Chris Lattnerd075cc22003-08-31 19:10:30 +000071 }
Chris Lattner4d25c862004-04-08 06:34:31 +000072
73 // Now that we have all of the call sites, loop over them and inline them if
74 // it looks profitable to do so.
75 for (unsigned i = 0, e = CallSites.size(); i != e; ++i) {
76 CallSite CS = CallSites[i];
77 Function *Callee = CS.getCalledFunction();
78 // Determine whether this is a function IN the SCC...
79 bool inSCC = SCCFunctions.count(Callee);
80
81 // If the policy determines that we should inline this function,
82 // try to do so...
83 int InlineCost = inSCC ? getRecursiveInlineCost(CS) : getInlineCost(CS);
84 if (InlineCost >= (int)InlineThreshold) {
85 DEBUG(std::cerr << " NOT Inlining: cost=" << InlineCost
86 << ", Call: " << *CS.getInstruction());
87 } else {
88 DEBUG(std::cerr << " Inlining: cost=" << InlineCost
89 << ", Call: " << *CS.getInstruction());
90
91 Function *Caller = CS.getInstruction()->getParent()->getParent();
92
93 // Attempt to inline the function...
94 if (InlineFunction(CS)) {
95 ++NumInlined;
Chris Lattnerbe435442004-04-12 05:37:29 +000096
97 // Update the call graph by deleting the edge from Callee to Caller
98 CallGraphNode *CalleeNode = CG[Callee];
99 CallGraphNode *CallerNode = CG[Caller];
100 CallerNode->removeCallEdgeTo(CalleeNode);
101
102 // Since we inlined all uninlinable call sites in the callee into the
103 // caller, add edges from the caller to all of the callees of the
104 // callee.
105 for (CallGraphNode::iterator I = CalleeNode->begin(),
106 E = CalleeNode->end(); I != E; ++I)
107 CallerNode->addCalledFunction(*I);
Chris Lattner4d25c862004-04-08 06:34:31 +0000108
Chris Lattnerbe435442004-04-12 05:37:29 +0000109 // If the only remaining use of the function is a dead constant
110 // pointer ref, remove it.
Chris Lattner4d25c862004-04-08 06:34:31 +0000111 if (Callee->hasOneUse())
112 if (ConstantPointerRef *CPR =
113 dyn_cast<ConstantPointerRef>(Callee->use_back()))
114 if (CPR->use_empty())
115 CPR->destroyConstant();
116
117 // If we inlined the last possible call site to the function,
118 // delete the function body now.
119 if (Callee->use_empty() && Callee != Caller &&
Chris Lattnerc87784f2004-04-20 22:06:53 +0000120 Callee->hasInternalLinkage()) {
Chris Lattner4d25c862004-04-08 06:34:31 +0000121 DEBUG(std::cerr << " -> Deleting dead function: "
Chris Lattner08f201b2004-04-12 04:06:56 +0000122 << Callee->getName() << "\n");
Chris Lattner51493402004-04-20 20:20:59 +0000123 SCCFunctions.erase(Callee); // Remove function from this SCC.
Chris Lattner4d25c862004-04-08 06:34:31 +0000124
Chris Lattnerbe435442004-04-12 05:37:29 +0000125 // Remove any call graph edges from the callee to its callees.
126 while (CalleeNode->begin() != CalleeNode->end())
127 CalleeNode->removeCallEdgeTo(*(CalleeNode->end()-1));
128
129 // Removing the node for callee from the call graph and delete it.
130 delete CG.removeFunctionFromModule(CalleeNode);
Chris Lattner4d25c862004-04-08 06:34:31 +0000131 ++NumDeleted;
132 }
133 Changed = true;
134 }
135 }
136 }
Chris Lattnerd075cc22003-08-31 19:10:30 +0000137 }
Chris Lattner4d25c862004-04-08 06:34:31 +0000138
Chris Lattnerd075cc22003-08-31 19:10:30 +0000139 return Changed;
140}
141
Chris Lattnerc87784f2004-04-20 22:06:53 +0000142// doFinalization - Remove now-dead linkonce functions at the end of
143// processing to avoid breaking the SCC traversal.
144bool Inliner::doFinalization(CallGraph &CG) {
145 bool Changed = false;
146 for (CallGraph::iterator I = CG.begin(), E = CG.end(); I != E; ) {
147 CallGraphNode *CGN = (++I)->second;
148 Function *F = CGN ? CGN->getFunction() : 0;
149 if (F && (F->hasLinkOnceLinkage() || F->hasInternalLinkage()) &&
150 F->use_empty()) {
151 // Remove any call graph edges from the callee to its callees.
152 while (CGN->begin() != CGN->end())
153 CGN->removeCallEdgeTo(*(CGN->end()-1));
154
155 // If the function has external linkage (basically if it's a
156 // linkonce function) remove the edge from the external node to the
157 // callee node.
158 if (!F->hasInternalLinkage())
159 CG.getExternalCallingNode()->removeCallEdgeTo(CGN);
160
161 // Removing the node for callee from the call graph and delete it.
162 delete CG.removeFunctionFromModule(CGN);
163 ++NumDeleted;
164 Changed = true;
165 }
166 }
167 return Changed;
168}