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