Fix PR324 and testcase: Inline/2004-04-20-InlineLinkOnce.llx
[oota-llvm.git] / lib / Transforms / IPO / Inliner.cpp
1 //===- InlineCommon.cpp - Code common to all inliners ---------------------===//
2 // 
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 //===----------------------------------------------------------------------===//
9 //
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"
16 #include "llvm/Constants.h"   // ConstantPointerRef should die
17 #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"
26 using namespace llvm;
27
28 namespace {
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
36 Inliner::Inliner() : InlineThreshold(InlineLimit) {}
37
38 int Inliner::getRecursiveInlineCost(CallSite CS) {
39   return getInlineCost(CS);
40 }
41
42 bool 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
61     // 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;
65     for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
66       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);
71       }
72
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;
96
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);
108   
109           // If the only remaining use of the function is a dead constant
110           // pointer ref, remove it.
111           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 &&
120               (Callee->hasInternalLinkage() || Callee->hasLinkOnceLinkage())) {
121             DEBUG(std::cerr << "    -> Deleting dead function: "
122                             << Callee->getName() << "\n");
123             SCCFunctions.erase(Callee);    // Remove function from this SCC.
124
125             // 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             // If the function has external linkage (basically if it's a
130             // linkonce function) remove the edge from the external node to the
131             // callee node.
132             if (!Callee->hasInternalLinkage())
133               CG.getExternalCallingNode()->removeCallEdgeTo(CalleeNode);
134
135             // Removing the node for callee from the call graph and delete it.
136             delete CG.removeFunctionFromModule(CalleeNode);
137             ++NumDeleted;
138           }
139           Changed = true;
140         }
141       }
142     }
143   }
144
145   return Changed;
146 }
147