Chris Lattner | cf5933a | 2004-06-20 04:11:48 +0000 | [diff] [blame] | 1 | //===- Inliner.cpp - Code common to all inliners --------------------------===// |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 237ef56 | 2003-08-31 19:10:30 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | befa499 | 2004-05-23 21:22:17 +0000 | [diff] [blame] | 10 | // 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 Lattner | 237ef56 | 2003-08-31 19:10:30 +0000 | [diff] [blame] | 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
Chris Lattner | 86453c5 | 2006-12-19 22:09:18 +0000 | [diff] [blame] | 16 | #define DEBUG_TYPE "inline" |
Chris Lattner | 237ef56 | 2003-08-31 19:10:30 +0000 | [diff] [blame] | 17 | #include "llvm/Module.h" |
Misha Brukman | 47b14a4 | 2004-07-29 17:30:56 +0000 | [diff] [blame] | 18 | #include "llvm/Instructions.h" |
Dale Johannesen | 1f67ce4 | 2009-03-19 18:03:56 +0000 | [diff] [blame] | 19 | #include "llvm/IntrinsicInst.h" |
Chris Lattner | 237ef56 | 2003-08-31 19:10:30 +0000 | [diff] [blame] | 20 | #include "llvm/Analysis/CallGraph.h" |
| 21 | #include "llvm/Support/CallSite.h" |
Chris Lattner | ff2dad3 | 2007-01-30 23:28:39 +0000 | [diff] [blame] | 22 | #include "llvm/Target/TargetData.h" |
Tanya Lattner | 6f7426e | 2007-06-19 22:29:50 +0000 | [diff] [blame] | 23 | #include "llvm/Transforms/IPO/InlinerPass.h" |
Chris Lattner | 237ef56 | 2003-08-31 19:10:30 +0000 | [diff] [blame] | 24 | #include "llvm/Transforms/Utils/Cloning.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 25 | #include "llvm/Support/CommandLine.h" |
| 26 | #include "llvm/Support/Debug.h" |
Daniel Dunbar | ce63ffb | 2009-07-25 00:23:56 +0000 | [diff] [blame] | 27 | #include "llvm/Support/raw_ostream.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 28 | #include "llvm/ADT/Statistic.h" |
Chris Lattner | befa499 | 2004-05-23 21:22:17 +0000 | [diff] [blame] | 29 | #include <set> |
Chris Lattner | a51bcb5 | 2003-11-21 21:45:31 +0000 | [diff] [blame] | 30 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 31 | |
Chris Lattner | 86453c5 | 2006-12-19 22:09:18 +0000 | [diff] [blame] | 32 | STATISTIC(NumInlined, "Number of functions inlined"); |
| 33 | STATISTIC(NumDeleted, "Number of functions deleted because all callers found"); |
| 34 | |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 35 | static cl::opt<int> |
Dale Johannesen | 5fee49e | 2009-08-25 01:13:58 +0000 | [diff] [blame^] | 36 | InlineLimit("inline-threshold", cl::Hidden, cl::init(200), cl::ZeroOrMore, |
Dale Johannesen | cbfdf96 | 2009-01-12 22:11:50 +0000 | [diff] [blame] | 37 | cl::desc("Control the amount of inlining to perform (default = 200)")); |
Chris Lattner | 237ef56 | 2003-08-31 19:10:30 +0000 | [diff] [blame] | 38 | |
Dan Gohman | ae73dc1 | 2008-09-04 17:05:41 +0000 | [diff] [blame] | 39 | Inliner::Inliner(void *ID) |
| 40 | : CallGraphSCCPass(ID), InlineThreshold(InlineLimit) {} |
Chris Lattner | 237ef56 | 2003-08-31 19:10:30 +0000 | [diff] [blame] | 41 | |
Dan Gohman | ae73dc1 | 2008-09-04 17:05:41 +0000 | [diff] [blame] | 42 | Inliner::Inliner(void *ID, int Threshold) |
| 43 | : CallGraphSCCPass(ID), InlineThreshold(Threshold) {} |
Chris Lattner | 120d053 | 2008-01-12 06:49:13 +0000 | [diff] [blame] | 44 | |
Chris Lattner | ff2dad3 | 2007-01-30 23:28:39 +0000 | [diff] [blame] | 45 | /// 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. |
| 48 | void Inliner::getAnalysisUsage(AnalysisUsage &Info) const { |
Chris Lattner | ff2dad3 | 2007-01-30 23:28:39 +0000 | [diff] [blame] | 49 | CallGraphSCCPass::getAnalysisUsage(Info); |
| 50 | } |
| 51 | |
Chris Lattner | befa499 | 2004-05-23 21:22:17 +0000 | [diff] [blame] | 52 | // InlineCallIfPossible - If it is possible to inline the specified call site, |
| 53 | // do so and update the CallGraph for this operation. |
Dale Johannesen | 1f67ce4 | 2009-03-19 18:03:56 +0000 | [diff] [blame] | 54 | bool Inliner::InlineCallIfPossible(CallSite CS, CallGraph &CG, |
Dale Johannesen | 16581bf | 2009-03-23 23:39:20 +0000 | [diff] [blame] | 55 | const SmallPtrSet<Function*, 8> &SCCFunctions, |
Dan Gohman | 02a436c | 2009-07-24 18:13:53 +0000 | [diff] [blame] | 56 | const TargetData *TD) { |
Chris Lattner | befa499 | 2004-05-23 21:22:17 +0000 | [diff] [blame] | 57 | Function *Callee = CS.getCalledFunction(); |
Bill Wendling | 66c75aa | 2008-11-21 00:09:21 +0000 | [diff] [blame] | 58 | Function *Caller = CS.getCaller(); |
| 59 | |
Dan Gohman | 02a436c | 2009-07-24 18:13:53 +0000 | [diff] [blame] | 60 | if (!InlineFunction(CS, &CG, TD)) return false; |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 61 | |
Bill Wendling | 8c1604e | 2008-11-21 00:06:32 +0000 | [diff] [blame] | 62 | // If the inlined function had a higher stack protection level than the |
| 63 | // calling function, then bump up the caller's stack protection level. |
Bill Wendling | 8c1604e | 2008-11-21 00:06:32 +0000 | [diff] [blame] | 64 | if (Callee->hasFnAttr(Attribute::StackProtectReq)) |
| 65 | Caller->addFnAttr(Attribute::StackProtectReq); |
| 66 | else if (Callee->hasFnAttr(Attribute::StackProtect) && |
| 67 | !Caller->hasFnAttr(Attribute::StackProtectReq)) |
| 68 | Caller->addFnAttr(Attribute::StackProtect); |
| 69 | |
Chris Lattner | 54970c0 | 2004-08-08 03:29:50 +0000 | [diff] [blame] | 70 | // If we inlined the last possible call site to the function, delete the |
| 71 | // function body now. |
Torok Edwin | f5ff1d3 | 2009-05-23 14:06:57 +0000 | [diff] [blame] | 72 | if (Callee->use_empty() && (Callee->hasLocalLinkage() || |
| 73 | Callee->hasAvailableExternallyLinkage()) && |
Chris Lattner | befa499 | 2004-05-23 21:22:17 +0000 | [diff] [blame] | 74 | !SCCFunctions.count(Callee)) { |
Daniel Dunbar | ce63ffb | 2009-07-25 00:23:56 +0000 | [diff] [blame] | 75 | DEBUG(errs() << " -> Deleting dead function: " |
| 76 | << Callee->getName() << "\n"); |
Duncan Sands | 6f0a768 | 2008-09-05 14:56:53 +0000 | [diff] [blame] | 77 | CallGraphNode *CalleeNode = CG[Callee]; |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 78 | |
Chris Lattner | befa499 | 2004-05-23 21:22:17 +0000 | [diff] [blame] | 79 | // Remove any call graph edges from the callee to its callees. |
Duncan Sands | 6f0a768 | 2008-09-05 14:56:53 +0000 | [diff] [blame] | 80 | CalleeNode->removeAllCalledFunctions(); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 81 | |
Dale Johannesen | 1f67ce4 | 2009-03-19 18:03:56 +0000 | [diff] [blame] | 82 | resetCachedCostInfo(CalleeNode->getFunction()); |
| 83 | |
Chris Lattner | befa499 | 2004-05-23 21:22:17 +0000 | [diff] [blame] | 84 | // Removing the node for callee from the call graph and delete it. |
| 85 | delete CG.removeFunctionFromModule(CalleeNode); |
| 86 | ++NumDeleted; |
| 87 | } |
| 88 | return true; |
Chris Lattner | 237ef56 | 2003-08-31 19:10:30 +0000 | [diff] [blame] | 89 | } |
Daniel Dunbar | 1a99dbf | 2008-10-29 01:02:02 +0000 | [diff] [blame] | 90 | |
| 91 | /// shouldInline - Return true if the inliner should attempt to inline |
| 92 | /// at the given CallSite. |
| 93 | bool Inliner::shouldInline(CallSite CS) { |
Daniel Dunbar | c5e1ec4 | 2008-10-30 19:26:59 +0000 | [diff] [blame] | 94 | InlineCost IC = getInlineCost(CS); |
Daniel Dunbar | 1a99dbf | 2008-10-29 01:02:02 +0000 | [diff] [blame] | 95 | float FudgeFactor = getInlineFudgeFactor(CS); |
| 96 | |
Daniel Dunbar | c5e1ec4 | 2008-10-30 19:26:59 +0000 | [diff] [blame] | 97 | if (IC.isAlways()) { |
Bill Wendling | 84a832f | 2009-07-31 19:52:24 +0000 | [diff] [blame] | 98 | DEBUG(errs() << " Inlining: cost=always" |
| 99 | << ", Call: " << *CS.getInstruction() << "\n"); |
Daniel Dunbar | c5e1ec4 | 2008-10-30 19:26:59 +0000 | [diff] [blame] | 100 | return true; |
| 101 | } |
| 102 | |
| 103 | if (IC.isNever()) { |
Bill Wendling | 84a832f | 2009-07-31 19:52:24 +0000 | [diff] [blame] | 104 | DEBUG(errs() << " NOT Inlining: cost=never" |
| 105 | << ", Call: " << *CS.getInstruction() << "\n"); |
Daniel Dunbar | c5e1ec4 | 2008-10-30 19:26:59 +0000 | [diff] [blame] | 106 | return false; |
| 107 | } |
| 108 | |
| 109 | int Cost = IC.getValue(); |
Daniel Dunbar | 1a99dbf | 2008-10-29 01:02:02 +0000 | [diff] [blame] | 110 | int CurrentThreshold = InlineThreshold; |
| 111 | Function *Fn = CS.getCaller(); |
Bill Wendling | 84a832f | 2009-07-31 19:52:24 +0000 | [diff] [blame] | 112 | if (Fn && !Fn->isDeclaration() && |
| 113 | Fn->hasFnAttr(Attribute::OptimizeForSize) && |
| 114 | InlineThreshold != 50) |
Daniel Dunbar | 1a99dbf | 2008-10-29 01:02:02 +0000 | [diff] [blame] | 115 | CurrentThreshold = 50; |
Daniel Dunbar | 1a99dbf | 2008-10-29 01:02:02 +0000 | [diff] [blame] | 116 | |
| 117 | if (Cost >= (int)(CurrentThreshold * FudgeFactor)) { |
Bill Wendling | 84a832f | 2009-07-31 19:52:24 +0000 | [diff] [blame] | 118 | DEBUG(errs() << " NOT Inlining: cost=" << Cost |
| 119 | << ", Call: " << *CS.getInstruction() << "\n"); |
Daniel Dunbar | 1a99dbf | 2008-10-29 01:02:02 +0000 | [diff] [blame] | 120 | return false; |
| 121 | } else { |
Bill Wendling | 84a832f | 2009-07-31 19:52:24 +0000 | [diff] [blame] | 122 | DEBUG(errs() << " Inlining: cost=" << Cost |
| 123 | << ", Call: " << *CS.getInstruction() << "\n"); |
Daniel Dunbar | 1a99dbf | 2008-10-29 01:02:02 +0000 | [diff] [blame] | 124 | return true; |
| 125 | } |
| 126 | } |
Chris Lattner | 237ef56 | 2003-08-31 19:10:30 +0000 | [diff] [blame] | 127 | |
| 128 | bool Inliner::runOnSCC(const std::vector<CallGraphNode*> &SCC) { |
| 129 | CallGraph &CG = getAnalysis<CallGraph>(); |
Dan Gohman | 02a436c | 2009-07-24 18:13:53 +0000 | [diff] [blame] | 130 | const TargetData *TD = getAnalysisIfAvailable<TargetData>(); |
Chris Lattner | 237ef56 | 2003-08-31 19:10:30 +0000 | [diff] [blame] | 131 | |
Dale Johannesen | 16581bf | 2009-03-23 23:39:20 +0000 | [diff] [blame] | 132 | SmallPtrSet<Function*, 8> SCCFunctions; |
Bill Wendling | 84a832f | 2009-07-31 19:52:24 +0000 | [diff] [blame] | 133 | DEBUG(errs() << "Inliner visiting SCC:"); |
Chris Lattner | 237ef56 | 2003-08-31 19:10:30 +0000 | [diff] [blame] | 134 | for (unsigned i = 0, e = SCC.size(); i != e; ++i) { |
Chris Lattner | befa499 | 2004-05-23 21:22:17 +0000 | [diff] [blame] | 135 | Function *F = SCC[i]->getFunction(); |
| 136 | if (F) SCCFunctions.insert(F); |
Daniel Dunbar | ce63ffb | 2009-07-25 00:23:56 +0000 | [diff] [blame] | 137 | DEBUG(errs() << " " << (F ? F->getName() : "INDIRECTNODE")); |
Chris Lattner | 237ef56 | 2003-08-31 19:10:30 +0000 | [diff] [blame] | 138 | } |
Chris Lattner | 237ef56 | 2003-08-31 19:10:30 +0000 | [diff] [blame] | 139 | |
Chris Lattner | befa499 | 2004-05-23 21:22:17 +0000 | [diff] [blame] | 140 | // Scan through and identify all call sites ahead of time so that we only |
| 141 | // inline call sites in the original functions, not call sites that result |
| 142 | // from inlining other functions. |
| 143 | std::vector<CallSite> CallSites; |
| 144 | |
Chris Lattner | cf5933a | 2004-06-20 04:11:48 +0000 | [diff] [blame] | 145 | for (unsigned i = 0, e = SCC.size(); i != e; ++i) |
| 146 | if (Function *F = SCC[i]->getFunction()) |
Chris Lattner | befa499 | 2004-05-23 21:22:17 +0000 | [diff] [blame] | 147 | for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) |
| 148 | for (BasicBlock::iterator I = BB->begin(); I != BB->end(); ++I) { |
| 149 | CallSite CS = CallSite::get(I); |
Dale Johannesen | 1f67ce4 | 2009-03-19 18:03:56 +0000 | [diff] [blame] | 150 | if (CS.getInstruction() && !isa<DbgInfoIntrinsic>(I) && |
| 151 | (!CS.getCalledFunction() || |
Reid Spencer | 5cbf985 | 2007-01-30 20:08:39 +0000 | [diff] [blame] | 152 | !CS.getCalledFunction()->isDeclaration())) |
Chris Lattner | befa499 | 2004-05-23 21:22:17 +0000 | [diff] [blame] | 153 | CallSites.push_back(CS); |
| 154 | } |
Chris Lattner | 237ef56 | 2003-08-31 19:10:30 +0000 | [diff] [blame] | 155 | |
Bill Wendling | 84a832f | 2009-07-31 19:52:24 +0000 | [diff] [blame] | 156 | DEBUG(errs() << ": " << CallSites.size() << " call sites.\n"); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 157 | |
Chris Lattner | befa499 | 2004-05-23 21:22:17 +0000 | [diff] [blame] | 158 | // Now that we have all of the call sites, move the ones to functions in the |
| 159 | // current SCC to the end of the list. |
| 160 | unsigned FirstCallInSCC = CallSites.size(); |
| 161 | for (unsigned i = 0; i < FirstCallInSCC; ++i) |
| 162 | if (Function *F = CallSites[i].getCalledFunction()) |
| 163 | if (SCCFunctions.count(F)) |
| 164 | std::swap(CallSites[i--], CallSites[--FirstCallInSCC]); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 165 | |
Chris Lattner | befa499 | 2004-05-23 21:22:17 +0000 | [diff] [blame] | 166 | // Now that we have all of the call sites, loop over them and inline them if |
| 167 | // it looks profitable to do so. |
| 168 | bool Changed = false; |
| 169 | bool LocalChange; |
| 170 | do { |
| 171 | LocalChange = false; |
| 172 | // Iterate over the outer loop because inlining functions can cause indirect |
| 173 | // calls to become direct calls. |
| 174 | for (unsigned CSi = 0; CSi != CallSites.size(); ++CSi) |
| 175 | if (Function *Callee = CallSites[CSi].getCalledFunction()) { |
| 176 | // Calls to external functions are never inlinable. |
Dale Johannesen | cbfdf96 | 2009-01-12 22:11:50 +0000 | [diff] [blame] | 177 | if (Callee->isDeclaration()) { |
Chris Lattner | 08ff148 | 2006-11-09 23:36:08 +0000 | [diff] [blame] | 178 | if (SCC.size() == 1) { |
| 179 | std::swap(CallSites[CSi], CallSites.back()); |
| 180 | CallSites.pop_back(); |
| 181 | } else { |
| 182 | // Keep the 'in SCC / not in SCC' boundary correct. |
| 183 | CallSites.erase(CallSites.begin()+CSi); |
| 184 | } |
Chris Lattner | befa499 | 2004-05-23 21:22:17 +0000 | [diff] [blame] | 185 | --CSi; |
| 186 | continue; |
| 187 | } |
Chris Lattner | 775cbdd | 2004-04-08 06:34:31 +0000 | [diff] [blame] | 188 | |
Chris Lattner | befa499 | 2004-05-23 21:22:17 +0000 | [diff] [blame] | 189 | // If the policy determines that we should inline this function, |
| 190 | // try to do so. |
| 191 | CallSite CS = CallSites[CSi]; |
Daniel Dunbar | 1a99dbf | 2008-10-29 01:02:02 +0000 | [diff] [blame] | 192 | if (shouldInline(CS)) { |
Dale Johannesen | e345566 | 2009-01-09 01:30:11 +0000 | [diff] [blame] | 193 | Function *Caller = CS.getCaller(); |
Chris Lattner | befa499 | 2004-05-23 21:22:17 +0000 | [diff] [blame] | 194 | // Attempt to inline the function... |
Dale Johannesen | 1f67ce4 | 2009-03-19 18:03:56 +0000 | [diff] [blame] | 195 | if (InlineCallIfPossible(CS, CG, SCCFunctions, TD)) { |
| 196 | // Remove any cached cost info for this caller, as inlining the |
| 197 | // callee has increased the size of the caller (which may be the |
| 198 | // same as the callee). |
Dale Johannesen | e345566 | 2009-01-09 01:30:11 +0000 | [diff] [blame] | 199 | resetCachedCostInfo(Caller); |
| 200 | |
Chris Lattner | 08ff148 | 2006-11-09 23:36:08 +0000 | [diff] [blame] | 201 | // Remove this call site from the list. If possible, use |
| 202 | // swap/pop_back for efficiency, but do not use it if doing so would |
| 203 | // move a call site to a function in this SCC before the |
| 204 | // 'FirstCallInSCC' barrier. |
| 205 | if (SCC.size() == 1) { |
| 206 | std::swap(CallSites[CSi], CallSites.back()); |
| 207 | CallSites.pop_back(); |
| 208 | } else { |
| 209 | CallSites.erase(CallSites.begin()+CSi); |
| 210 | } |
Chris Lattner | befa499 | 2004-05-23 21:22:17 +0000 | [diff] [blame] | 211 | --CSi; |
Chris Lattner | ce1a3a2 | 2004-04-12 05:37:29 +0000 | [diff] [blame] | 212 | |
Chris Lattner | befa499 | 2004-05-23 21:22:17 +0000 | [diff] [blame] | 213 | ++NumInlined; |
| 214 | Changed = true; |
| 215 | LocalChange = true; |
Chris Lattner | 775cbdd | 2004-04-08 06:34:31 +0000 | [diff] [blame] | 216 | } |
Chris Lattner | 775cbdd | 2004-04-08 06:34:31 +0000 | [diff] [blame] | 217 | } |
| 218 | } |
Chris Lattner | befa499 | 2004-05-23 21:22:17 +0000 | [diff] [blame] | 219 | } while (LocalChange); |
Chris Lattner | 775cbdd | 2004-04-08 06:34:31 +0000 | [diff] [blame] | 220 | |
Chris Lattner | 237ef56 | 2003-08-31 19:10:30 +0000 | [diff] [blame] | 221 | return Changed; |
| 222 | } |
| 223 | |
Chris Lattner | 68d57e7 | 2004-04-20 22:06:53 +0000 | [diff] [blame] | 224 | // doFinalization - Remove now-dead linkonce functions at the end of |
| 225 | // processing to avoid breaking the SCC traversal. |
| 226 | bool Inliner::doFinalization(CallGraph &CG) { |
Devang Patel | b7c6bf1 | 2008-11-05 01:39:16 +0000 | [diff] [blame] | 227 | return removeDeadFunctions(CG); |
| 228 | } |
| 229 | |
| 230 | /// removeDeadFunctions - Remove dead functions that are not included in |
| 231 | /// DNR (Do Not Remove) list. |
| 232 | bool Inliner::removeDeadFunctions(CallGraph &CG, |
| 233 | SmallPtrSet<const Function *, 16> *DNR) { |
Chris Lattner | 3e1358a | 2004-04-21 20:44:33 +0000 | [diff] [blame] | 234 | std::set<CallGraphNode*> FunctionsToRemove; |
| 235 | |
| 236 | // Scan for all of the functions, looking for ones that should now be removed |
| 237 | // from the program. Insert the dead ones in the FunctionsToRemove set. |
| 238 | for (CallGraph::iterator I = CG.begin(), E = CG.end(); I != E; ++I) { |
| 239 | CallGraphNode *CGN = I->second; |
Chris Lattner | 54970c0 | 2004-08-08 03:29:50 +0000 | [diff] [blame] | 240 | if (Function *F = CGN ? CGN->getFunction() : 0) { |
Chris Lattner | 0c0aa71 | 2004-09-18 21:37:03 +0000 | [diff] [blame] | 241 | // If the only remaining users of the function are dead constants, remove |
| 242 | // them. |
Chris Lattner | 54970c0 | 2004-08-08 03:29:50 +0000 | [diff] [blame] | 243 | F->removeDeadConstantUsers(); |
Chris Lattner | 3e1358a | 2004-04-21 20:44:33 +0000 | [diff] [blame] | 244 | |
Devang Patel | b7c6bf1 | 2008-11-05 01:39:16 +0000 | [diff] [blame] | 245 | if (DNR && DNR->count(F)) |
| 246 | continue; |
| 247 | |
Rafael Espindola | bb46f52 | 2009-01-15 20:18:42 +0000 | [diff] [blame] | 248 | if ((F->hasLinkOnceLinkage() || F->hasLocalLinkage()) && |
Chris Lattner | 54970c0 | 2004-08-08 03:29:50 +0000 | [diff] [blame] | 249 | F->use_empty()) { |
Chris Lattner | 0c0aa71 | 2004-09-18 21:37:03 +0000 | [diff] [blame] | 250 | |
Chris Lattner | 54970c0 | 2004-08-08 03:29:50 +0000 | [diff] [blame] | 251 | // Remove any call graph edges from the function to its callees. |
Duncan Sands | 6f0a768 | 2008-09-05 14:56:53 +0000 | [diff] [blame] | 252 | CGN->removeAllCalledFunctions(); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 253 | |
Chris Lattner | 0c0aa71 | 2004-09-18 21:37:03 +0000 | [diff] [blame] | 254 | // Remove any edges from the external node to the function's call graph |
| 255 | // node. These edges might have been made irrelegant due to |
| 256 | // optimization of the program. |
| 257 | CG.getExternalCallingNode()->removeAnyCallEdgeTo(CGN); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 258 | |
Chris Lattner | 54970c0 | 2004-08-08 03:29:50 +0000 | [diff] [blame] | 259 | // Removing the node for callee from the call graph and delete it. |
| 260 | FunctionsToRemove.insert(CGN); |
| 261 | } |
Chris Lattner | 68d57e7 | 2004-04-20 22:06:53 +0000 | [diff] [blame] | 262 | } |
| 263 | } |
Chris Lattner | 3e1358a | 2004-04-21 20:44:33 +0000 | [diff] [blame] | 264 | |
| 265 | // Now that we know which functions to delete, do so. We didn't want to do |
| 266 | // this inline, because that would invalidate our CallGraph::iterator |
| 267 | // objects. :( |
| 268 | bool Changed = false; |
| 269 | for (std::set<CallGraphNode*>::iterator I = FunctionsToRemove.begin(), |
| 270 | E = FunctionsToRemove.end(); I != E; ++I) { |
Dale Johannesen | 1f67ce4 | 2009-03-19 18:03:56 +0000 | [diff] [blame] | 271 | resetCachedCostInfo((*I)->getFunction()); |
Chris Lattner | 3e1358a | 2004-04-21 20:44:33 +0000 | [diff] [blame] | 272 | delete CG.removeFunctionFromModule(*I); |
| 273 | ++NumDeleted; |
| 274 | Changed = true; |
| 275 | } |
| 276 | |
Chris Lattner | 68d57e7 | 2004-04-20 22:06:53 +0000 | [diff] [blame] | 277 | return Changed; |
| 278 | } |