Chris Lattner | 4a81067 | 2003-08-31 01:54:59 +0000 | [diff] [blame] | 1 | //===- CallGraphSCCPass.cpp - Pass that operates BU on call graph ---------===// |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +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 | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 4a81067 | 2003-08-31 01:54:59 +0000 | [diff] [blame] | 9 | // |
| 10 | // This file implements the CallGraphSCCPass class, which is used for passes |
| 11 | // which are implemented as bottom-up traversals on the call graph. Because |
| 12 | // there may be cycles in the call graph, passes of this type operate on the |
| 13 | // call-graph in SCC order: that is, they process function bottom-up, except for |
| 14 | // recursive functions, which they process all at once. |
| 15 | // |
| 16 | //===----------------------------------------------------------------------===// |
| 17 | |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 18 | #define DEBUG_TYPE "cgscc-passmgr" |
Chris Lattner | 4a81067 | 2003-08-31 01:54:59 +0000 | [diff] [blame] | 19 | #include "llvm/CallGraphSCCPass.h" |
Chris Lattner | a782e75 | 2010-03-30 04:03:22 +0000 | [diff] [blame] | 20 | #include "llvm/IntrinsicInst.h" |
| 21 | #include "llvm/Function.h" |
| 22 | #include "llvm/PassManagers.h" |
Chris Lattner | 4a81067 | 2003-08-31 01:54:59 +0000 | [diff] [blame] | 23 | #include "llvm/Analysis/CallGraph.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/SCCIterator.h" |
Chris Lattner | 08e322d | 2010-04-21 00:47:40 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/Statistic.h" |
| 26 | #include "llvm/Support/CommandLine.h" |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 27 | #include "llvm/Support/Debug.h" |
Chris Lattner | a782e75 | 2010-03-30 04:03:22 +0000 | [diff] [blame] | 28 | #include "llvm/Support/Timer.h" |
Chris Lattner | 45cfe54 | 2009-08-23 06:03:38 +0000 | [diff] [blame] | 29 | #include "llvm/Support/raw_ostream.h" |
Chris Lattner | a10df50 | 2004-04-20 21:30:06 +0000 | [diff] [blame] | 30 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 31 | |
Chris Lattner | 08e322d | 2010-04-21 00:47:40 +0000 | [diff] [blame] | 32 | static cl::opt<unsigned> |
Chris Lattner | 6da12e6 | 2010-05-01 01:15:56 +0000 | [diff] [blame] | 33 | MaxIterations("max-cg-scc-iterations", cl::ReallyHidden, cl::init(4)); |
Chris Lattner | 08e322d | 2010-04-21 00:47:40 +0000 | [diff] [blame] | 34 | |
| 35 | STATISTIC(MaxSCCIterations, "Maximum CGSCCPassMgr iterations on one SCC"); |
| 36 | |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 37 | //===----------------------------------------------------------------------===// |
| 38 | // CGPassManager |
| 39 | // |
Dale Johannesen | db2659b | 2009-09-10 22:01:32 +0000 | [diff] [blame] | 40 | /// CGPassManager manages FPPassManagers and CallGraphSCCPasses. |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 41 | |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 42 | namespace { |
| 43 | |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 44 | class CGPassManager : public ModulePass, public PMDataManager { |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 45 | public: |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 46 | static char ID; |
Dan Gohman | c2bbfc1 | 2007-08-01 15:32:29 +0000 | [diff] [blame] | 47 | explicit CGPassManager(int Depth) |
Dan Gohman | ae73dc1 | 2008-09-04 17:05:41 +0000 | [diff] [blame] | 48 | : ModulePass(&ID), PMDataManager(Depth) { } |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 49 | |
| 50 | /// run - Execute all of the passes scheduled for execution. Keep track of |
| 51 | /// whether any of the passes modifies the module, and if so, return true. |
| 52 | bool runOnModule(Module &M); |
| 53 | |
Bill Wendling | 905c7e9 | 2009-02-11 18:19:24 +0000 | [diff] [blame] | 54 | bool doInitialization(CallGraph &CG); |
| 55 | bool doFinalization(CallGraph &CG); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 56 | |
| 57 | /// Pass Manager itself does not invalidate any analysis info. |
| 58 | void getAnalysisUsage(AnalysisUsage &Info) const { |
| 59 | // CGPassManager walks SCC and it needs CallGraph. |
| 60 | Info.addRequired<CallGraph>(); |
| 61 | Info.setPreservesAll(); |
| 62 | } |
| 63 | |
Devang Patel | 505f36a | 2007-02-01 22:09:37 +0000 | [diff] [blame] | 64 | virtual const char *getPassName() const { |
| 65 | return "CallGraph Pass Manager"; |
| 66 | } |
| 67 | |
Chris Lattner | 3660eca | 2010-01-22 05:24:46 +0000 | [diff] [blame] | 68 | virtual PMDataManager *getAsPMDataManager() { return this; } |
| 69 | virtual Pass *getAsPass() { return this; } |
| 70 | |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 71 | // Print passes managed by this manager |
| 72 | void dumpPassStructure(unsigned Offset) { |
David Greene | 2e48e53 | 2009-12-23 23:09:39 +0000 | [diff] [blame] | 73 | errs().indent(Offset*2) << "Call Graph SCC Pass Manager\n"; |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 74 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
| 75 | Pass *P = getContainedPass(Index); |
| 76 | P->dumpPassStructure(Offset + 1); |
| 77 | dumpLastUses(P, Offset+1); |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | Pass *getContainedPass(unsigned N) { |
Chris Lattner | 45cfe54 | 2009-08-23 06:03:38 +0000 | [diff] [blame] | 82 | assert(N < PassVector.size() && "Pass number out of range!"); |
| 83 | return static_cast<Pass *>(PassVector[N]); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 84 | } |
| 85 | |
Devang Patel | 84da80d | 2007-02-27 15:00:39 +0000 | [diff] [blame] | 86 | virtual PassManagerType getPassManagerType() const { |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 87 | return PMT_CallGraphPassManager; |
| 88 | } |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 89 | |
| 90 | private: |
Chris Lattner | 08e322d | 2010-04-21 00:47:40 +0000 | [diff] [blame] | 91 | bool RunAllPassesOnSCC(CallGraphSCC &CurSCC, CallGraph &CG, |
| 92 | bool &DevirtualizedCall); |
| 93 | |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame] | 94 | bool RunPassOnSCC(Pass *P, CallGraphSCC &CurSCC, |
Chris Lattner | 08e322d | 2010-04-21 00:47:40 +0000 | [diff] [blame] | 95 | CallGraph &CG, bool &CallGraphUpToDate, |
| 96 | bool &DevirtualizedCall); |
| 97 | bool RefreshCallGraph(CallGraphSCC &CurSCC, CallGraph &CG, |
Chris Lattner | 5a6a363 | 2009-09-01 18:32:03 +0000 | [diff] [blame] | 98 | bool IsCheckingMode); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 99 | }; |
| 100 | |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 101 | } // end anonymous namespace. |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 102 | |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 103 | char CGPassManager::ID = 0; |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 104 | |
David Greene | 5c8aa95 | 2010-04-02 23:17:14 +0000 | [diff] [blame] | 105 | |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame] | 106 | bool CGPassManager::RunPassOnSCC(Pass *P, CallGraphSCC &CurSCC, |
Chris Lattner | 08e322d | 2010-04-21 00:47:40 +0000 | [diff] [blame] | 107 | CallGraph &CG, bool &CallGraphUpToDate, |
| 108 | bool &DevirtualizedCall) { |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 109 | bool Changed = false; |
Chris Lattner | 5a66cb9 | 2010-01-22 05:46:59 +0000 | [diff] [blame] | 110 | PMDataManager *PM = P->getAsPMDataManager(); |
| 111 | |
| 112 | if (PM == 0) { |
| 113 | CallGraphSCCPass *CGSP = (CallGraphSCCPass*)P; |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 114 | if (!CallGraphUpToDate) { |
Chris Lattner | 08e322d | 2010-04-21 00:47:40 +0000 | [diff] [blame] | 115 | DevirtualizedCall |= RefreshCallGraph(CurSCC, CG, false); |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 116 | CallGraphUpToDate = true; |
| 117 | } |
Chris Lattner | 44a1837 | 2009-09-01 20:33:43 +0000 | [diff] [blame] | 118 | |
Chris Lattner | a782e75 | 2010-03-30 04:03:22 +0000 | [diff] [blame] | 119 | { |
| 120 | TimeRegion PassTimer(getPassTimer(CGSP)); |
| 121 | Changed = CGSP->runOnSCC(CurSCC); |
| 122 | } |
Chris Lattner | 5a6a363 | 2009-09-01 18:32:03 +0000 | [diff] [blame] | 123 | |
| 124 | // After the CGSCCPass is done, when assertions are enabled, use |
| 125 | // RefreshCallGraph to verify that the callgraph was correctly updated. |
| 126 | #ifndef NDEBUG |
| 127 | if (Changed) |
| 128 | RefreshCallGraph(CurSCC, CG, true); |
| 129 | #endif |
| 130 | |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 131 | return Changed; |
| 132 | } |
| 133 | |
Chris Lattner | 5a66cb9 | 2010-01-22 05:46:59 +0000 | [diff] [blame] | 134 | |
| 135 | assert(PM->getPassManagerType() == PMT_FunctionPassManager && |
| 136 | "Invalid CGPassManager member"); |
| 137 | FPPassManager *FPP = (FPPassManager*)P; |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 138 | |
| 139 | // Run pass P on all functions in the current SCC. |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame] | 140 | for (CallGraphSCC::iterator I = CurSCC.begin(), E = CurSCC.end(); |
| 141 | I != E; ++I) { |
| 142 | if (Function *F = (*I)->getFunction()) { |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 143 | dumpPassInfo(P, EXECUTION_MSG, ON_FUNCTION_MSG, F->getName()); |
Chris Lattner | a782e75 | 2010-03-30 04:03:22 +0000 | [diff] [blame] | 144 | TimeRegion PassTimer(getPassTimer(FPP)); |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 145 | Changed |= FPP->runOnFunction(*F); |
| 146 | } |
| 147 | } |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 148 | |
Chris Lattner | 2038cf3 | 2009-08-31 17:08:30 +0000 | [diff] [blame] | 149 | // The function pass(es) modified the IR, they may have clobbered the |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 150 | // callgraph. |
| 151 | if (Changed && CallGraphUpToDate) { |
David Greene | c81ce58 | 2009-12-23 20:10:59 +0000 | [diff] [blame] | 152 | DEBUG(dbgs() << "CGSCCPASSMGR: Pass Dirtied SCC: " |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 153 | << P->getPassName() << '\n'); |
| 154 | CallGraphUpToDate = false; |
| 155 | } |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 156 | return Changed; |
| 157 | } |
| 158 | |
Chris Lattner | 5a6a363 | 2009-09-01 18:32:03 +0000 | [diff] [blame] | 159 | |
| 160 | /// RefreshCallGraph - Scan the functions in the specified CFG and resync the |
| 161 | /// callgraph with the call sites found in it. This is used after |
| 162 | /// FunctionPasses have potentially munged the callgraph, and can be used after |
| 163 | /// CallGraphSCC passes to verify that they correctly updated the callgraph. |
| 164 | /// |
Chris Lattner | 08e322d | 2010-04-21 00:47:40 +0000 | [diff] [blame] | 165 | /// This function returns true if it devirtualized an existing function call, |
| 166 | /// meaning it turned an indirect call into a direct call. This happens when |
| 167 | /// a function pass like GVN optimizes away stuff feeding the indirect call. |
| 168 | /// This never happens in checking mode. |
| 169 | /// |
| 170 | bool CGPassManager::RefreshCallGraph(CallGraphSCC &CurSCC, |
Chris Lattner | 5a6a363 | 2009-09-01 18:32:03 +0000 | [diff] [blame] | 171 | CallGraph &CG, bool CheckingMode) { |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 172 | DenseMap<Value*, CallGraphNode*> CallSites; |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 173 | |
David Greene | c81ce58 | 2009-12-23 20:10:59 +0000 | [diff] [blame] | 174 | DEBUG(dbgs() << "CGSCCPASSMGR: Refreshing SCC with " << CurSCC.size() |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 175 | << " nodes:\n"; |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame] | 176 | for (CallGraphSCC::iterator I = CurSCC.begin(), E = CurSCC.end(); |
| 177 | I != E; ++I) |
| 178 | (*I)->dump(); |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 179 | ); |
| 180 | |
| 181 | bool MadeChange = false; |
Chris Lattner | 08e322d | 2010-04-21 00:47:40 +0000 | [diff] [blame] | 182 | bool DevirtualizedCall = false; |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 183 | |
| 184 | // Scan all functions in the SCC. |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame] | 185 | unsigned FunctionNo = 0; |
| 186 | for (CallGraphSCC::iterator SCCIdx = CurSCC.begin(), E = CurSCC.end(); |
| 187 | SCCIdx != E; ++SCCIdx, ++FunctionNo) { |
| 188 | CallGraphNode *CGN = *SCCIdx; |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 189 | Function *F = CGN->getFunction(); |
| 190 | if (F == 0 || F->isDeclaration()) continue; |
| 191 | |
| 192 | // Walk the function body looking for call sites. Sync up the call sites in |
| 193 | // CGN with those actually in the function. |
Chris Lattner | bccb41a | 2010-05-01 06:38:43 +0000 | [diff] [blame^] | 194 | |
| 195 | // Keep track of the number of direct and indirect calls that were |
| 196 | // invalidated and removed. |
| 197 | unsigned NumDirectRemoved = 0, NumIndirectRemoved = 0; |
Chris Lattner | 17146b8 | 2009-09-01 18:13:40 +0000 | [diff] [blame] | 198 | |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 199 | // Get the set of call sites currently in the function. |
Duncan Sands | b3020d7 | 2009-09-02 03:48:41 +0000 | [diff] [blame] | 200 | for (CallGraphNode::iterator I = CGN->begin(), E = CGN->end(); I != E; ) { |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 201 | // If this call site is null, then the function pass deleted the call |
Chris Lattner | 17146b8 | 2009-09-01 18:13:40 +0000 | [diff] [blame] | 202 | // entirely and the WeakVH nulled it out. |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 203 | if (I->first == 0 || |
| 204 | // If we've already seen this call site, then the FunctionPass RAUW'd |
| 205 | // one call with another, which resulted in two "uses" in the edge |
| 206 | // list of the same call. |
| 207 | CallSites.count(I->first) || |
| 208 | |
| 209 | // If the call edge is not from a call or invoke, then the function |
| 210 | // pass RAUW'd a call with another value. This can happen when |
| 211 | // constant folding happens of well known functions etc. |
| 212 | CallSite::get(I->first).getInstruction() == 0) { |
Chris Lattner | 5a6a363 | 2009-09-01 18:32:03 +0000 | [diff] [blame] | 213 | assert(!CheckingMode && |
| 214 | "CallGraphSCCPass did not update the CallGraph correctly!"); |
| 215 | |
Chris Lattner | bccb41a | 2010-05-01 06:38:43 +0000 | [diff] [blame^] | 216 | // If this was an indirect call site, count it. |
| 217 | if (I->second->getFunction() == 0) |
| 218 | ++NumIndirectRemoved; |
| 219 | else |
| 220 | ++NumDirectRemoved; |
| 221 | |
Chris Lattner | d3bd082 | 2009-09-02 04:39:04 +0000 | [diff] [blame] | 222 | // Just remove the edge from the set of callees, keep track of whether |
| 223 | // I points to the last element of the vector. |
| 224 | bool WasLast = I + 1 == E; |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 225 | CGN->removeCallEdge(I); |
Chris Lattner | b8bcbd6 | 2009-09-02 04:34:06 +0000 | [diff] [blame] | 226 | |
Chris Lattner | d3bd082 | 2009-09-02 04:39:04 +0000 | [diff] [blame] | 227 | // If I pointed to the last element of the vector, we have to bail out: |
| 228 | // iterator checking rejects comparisons of the resultant pointer with |
| 229 | // end. |
| 230 | if (WasLast) |
| 231 | break; |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 232 | E = CGN->end(); |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 233 | continue; |
| 234 | } |
Chris Lattner | 17146b8 | 2009-09-01 18:13:40 +0000 | [diff] [blame] | 235 | |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 236 | assert(!CallSites.count(I->first) && |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 237 | "Call site occurs in node multiple times"); |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 238 | CallSites.insert(std::make_pair(I->first, I->second)); |
Chris Lattner | 17146b8 | 2009-09-01 18:13:40 +0000 | [diff] [blame] | 239 | ++I; |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 240 | } |
Chris Lattner | 17146b8 | 2009-09-01 18:13:40 +0000 | [diff] [blame] | 241 | |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 242 | // Loop over all of the instructions in the function, getting the callsites. |
Chris Lattner | bccb41a | 2010-05-01 06:38:43 +0000 | [diff] [blame^] | 243 | // Keep track of the number of direct/indirect calls added. |
| 244 | unsigned NumDirectAdded = 0, NumIndirectAdded = 0; |
| 245 | |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 246 | for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) |
| 247 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) { |
| 248 | CallSite CS = CallSite::get(I); |
Chris Lattner | 8bff7c9 | 2009-09-01 21:37:50 +0000 | [diff] [blame] | 249 | if (!CS.getInstruction() || isa<DbgInfoIntrinsic>(I)) continue; |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 250 | |
| 251 | // If this call site already existed in the callgraph, just verify it |
| 252 | // matches up to expectations and remove it from CallSites. |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 253 | DenseMap<Value*, CallGraphNode*>::iterator ExistingIt = |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 254 | CallSites.find(CS.getInstruction()); |
| 255 | if (ExistingIt != CallSites.end()) { |
| 256 | CallGraphNode *ExistingNode = ExistingIt->second; |
| 257 | |
| 258 | // Remove from CallSites since we have now seen it. |
| 259 | CallSites.erase(ExistingIt); |
| 260 | |
| 261 | // Verify that the callee is right. |
| 262 | if (ExistingNode->getFunction() == CS.getCalledFunction()) |
| 263 | continue; |
| 264 | |
Chris Lattner | 5a6a363 | 2009-09-01 18:32:03 +0000 | [diff] [blame] | 265 | // If we are in checking mode, we are not allowed to actually mutate |
| 266 | // the callgraph. If this is a case where we can infer that the |
| 267 | // callgraph is less precise than it could be (e.g. an indirect call |
| 268 | // site could be turned direct), don't reject it in checking mode, and |
| 269 | // don't tweak it to be more precise. |
| 270 | if (CheckingMode && CS.getCalledFunction() && |
| 271 | ExistingNode->getFunction() == 0) |
| 272 | continue; |
| 273 | |
| 274 | assert(!CheckingMode && |
| 275 | "CallGraphSCCPass did not update the CallGraph correctly!"); |
| 276 | |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 277 | // If not, we either went from a direct call to indirect, indirect to |
| 278 | // direct, or direct to different direct. |
| 279 | CallGraphNode *CalleeNode; |
Chris Lattner | 08e322d | 2010-04-21 00:47:40 +0000 | [diff] [blame] | 280 | if (Function *Callee = CS.getCalledFunction()) { |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 281 | CalleeNode = CG.getOrInsertFunction(Callee); |
Chris Lattner | 08e322d | 2010-04-21 00:47:40 +0000 | [diff] [blame] | 282 | // Keep track of whether we turned an indirect call into a direct |
| 283 | // one. |
| 284 | if (ExistingNode->getFunction() == 0) { |
| 285 | DevirtualizedCall = true; |
| 286 | DEBUG(dbgs() << " CGSCCPASSMGR: Devirtualized call to '" |
| 287 | << Callee->getName() << "'\n"); |
| 288 | } |
| 289 | } else { |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 290 | CalleeNode = CG.getCallsExternalNode(); |
Chris Lattner | 08e322d | 2010-04-21 00:47:40 +0000 | [diff] [blame] | 291 | } |
Chris Lattner | 44a1837 | 2009-09-01 20:33:43 +0000 | [diff] [blame] | 292 | |
| 293 | // Update the edge target in CGN. |
Chris Lattner | b61789d | 2010-04-22 20:42:33 +0000 | [diff] [blame] | 294 | CGN->replaceCallEdge(CS, CS, CalleeNode); |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 295 | MadeChange = true; |
| 296 | continue; |
| 297 | } |
| 298 | |
Chris Lattner | 5a6a363 | 2009-09-01 18:32:03 +0000 | [diff] [blame] | 299 | assert(!CheckingMode && |
| 300 | "CallGraphSCCPass did not update the CallGraph correctly!"); |
| 301 | |
Chris Lattner | bccb41a | 2010-05-01 06:38:43 +0000 | [diff] [blame^] | 302 | // If the call site didn't exist in the CGN yet, add it. |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 303 | CallGraphNode *CalleeNode; |
Chris Lattner | bccb41a | 2010-05-01 06:38:43 +0000 | [diff] [blame^] | 304 | if (Function *Callee = CS.getCalledFunction()) { |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 305 | CalleeNode = CG.getOrInsertFunction(Callee); |
Chris Lattner | bccb41a | 2010-05-01 06:38:43 +0000 | [diff] [blame^] | 306 | ++NumDirectAdded; |
| 307 | } else { |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 308 | CalleeNode = CG.getCallsExternalNode(); |
Chris Lattner | bccb41a | 2010-05-01 06:38:43 +0000 | [diff] [blame^] | 309 | ++NumIndirectAdded; |
| 310 | } |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 311 | |
| 312 | CGN->addCalledFunction(CS, CalleeNode); |
| 313 | MadeChange = true; |
| 314 | } |
| 315 | |
Chris Lattner | bccb41a | 2010-05-01 06:38:43 +0000 | [diff] [blame^] | 316 | // We scanned the old callgraph node, removing invalidated call sites and |
| 317 | // then added back newly found call sites. One thing that can happen is |
| 318 | // that an old indirect call site was deleted and replaced with a new direct |
| 319 | // call. In this case, we have devirtualized a call, and CGSCCPM would like |
| 320 | // to iteratively optimize the new code. Unfortunately, we don't really |
| 321 | // have a great way to detect when this happens. As an approximation, we |
| 322 | // just look at whether the number of indirect calls is reduced and the |
| 323 | // number of direct calls is increased. There are tons of ways to fool this |
| 324 | // (e.g. DCE'ing an indirect call and duplicating an unrelated block with a |
| 325 | // direct call) but this is close enough. |
| 326 | if (NumIndirectRemoved > NumIndirectAdded && |
| 327 | NumDirectRemoved < NumDirectAdded) |
| 328 | DevirtualizedCall = true; |
| 329 | |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 330 | // After scanning this function, if we still have entries in callsites, then |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 331 | // they are dangling pointers. WeakVH should save us for this, so abort if |
| 332 | // this happens. |
| 333 | assert(CallSites.empty() && "Dangling pointers found in call sites map"); |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 334 | |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 335 | // Periodically do an explicit clear to remove tombstones when processing |
| 336 | // large scc's. |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame] | 337 | if ((FunctionNo & 15) == 15) |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 338 | CallSites.clear(); |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 339 | } |
| 340 | |
| 341 | DEBUG(if (MadeChange) { |
David Greene | c81ce58 | 2009-12-23 20:10:59 +0000 | [diff] [blame] | 342 | dbgs() << "CGSCCPASSMGR: Refreshed SCC is now:\n"; |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame] | 343 | for (CallGraphSCC::iterator I = CurSCC.begin(), E = CurSCC.end(); |
| 344 | I != E; ++I) |
| 345 | (*I)->dump(); |
Chris Lattner | bccb41a | 2010-05-01 06:38:43 +0000 | [diff] [blame^] | 346 | if (DevirtualizedCall) |
| 347 | dbgs() << "CGSCCPASSMGR: Refresh devirtualized a call!\n"; |
| 348 | |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 349 | } else { |
David Greene | c81ce58 | 2009-12-23 20:10:59 +0000 | [diff] [blame] | 350 | dbgs() << "CGSCCPASSMGR: SCC Refresh didn't change call graph.\n"; |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 351 | } |
| 352 | ); |
Chris Lattner | 08e322d | 2010-04-21 00:47:40 +0000 | [diff] [blame] | 353 | |
| 354 | return DevirtualizedCall; |
| 355 | } |
| 356 | |
| 357 | /// RunAllPassesOnSCC - Execute the body of the entire pass manager on the |
| 358 | /// specified SCC. This keeps track of whether a function pass devirtualizes |
| 359 | /// any calls and returns it in DevirtualizedCall. |
| 360 | bool CGPassManager::RunAllPassesOnSCC(CallGraphSCC &CurSCC, CallGraph &CG, |
| 361 | bool &DevirtualizedCall) { |
| 362 | bool Changed = false; |
| 363 | |
| 364 | // CallGraphUpToDate - Keep track of whether the callgraph is known to be |
| 365 | // up-to-date or not. The CGSSC pass manager runs two types of passes: |
| 366 | // CallGraphSCC Passes and other random function passes. Because other |
| 367 | // random function passes are not CallGraph aware, they may clobber the |
| 368 | // call graph by introducing new calls or deleting other ones. This flag |
| 369 | // is set to false when we run a function pass so that we know to clean up |
| 370 | // the callgraph when we need to run a CGSCCPass again. |
| 371 | bool CallGraphUpToDate = true; |
| 372 | |
| 373 | // Run all passes on current SCC. |
| 374 | for (unsigned PassNo = 0, e = getNumContainedPasses(); |
| 375 | PassNo != e; ++PassNo) { |
| 376 | Pass *P = getContainedPass(PassNo); |
| 377 | |
| 378 | // If we're in -debug-pass=Executions mode, construct the SCC node list, |
| 379 | // otherwise avoid constructing this string as it is expensive. |
| 380 | if (isPassDebuggingExecutionsOrMore()) { |
| 381 | std::string Functions; |
| 382 | #ifndef NDEBUG |
| 383 | raw_string_ostream OS(Functions); |
| 384 | for (CallGraphSCC::iterator I = CurSCC.begin(), E = CurSCC.end(); |
| 385 | I != E; ++I) { |
| 386 | if (I != CurSCC.begin()) OS << ", "; |
| 387 | (*I)->print(OS); |
| 388 | } |
| 389 | OS.flush(); |
| 390 | #endif |
| 391 | dumpPassInfo(P, EXECUTION_MSG, ON_CG_MSG, Functions); |
| 392 | } |
| 393 | dumpRequiredSet(P); |
| 394 | |
| 395 | initializeAnalysisImpl(P); |
| 396 | |
| 397 | // Actually run this pass on the current SCC. |
| 398 | Changed |= RunPassOnSCC(P, CurSCC, CG, |
| 399 | CallGraphUpToDate, DevirtualizedCall); |
| 400 | |
| 401 | if (Changed) |
| 402 | dumpPassInfo(P, MODIFICATION_MSG, ON_CG_MSG, ""); |
| 403 | dumpPreservedSet(P); |
| 404 | |
| 405 | verifyPreservedAnalysis(P); |
| 406 | removeNotPreservedAnalysis(P); |
| 407 | recordAvailableAnalysis(P); |
| 408 | removeDeadPasses(P, "", ON_CG_MSG); |
| 409 | } |
| 410 | |
| 411 | // If the callgraph was left out of date (because the last pass run was a |
| 412 | // functionpass), refresh it before we move on to the next SCC. |
| 413 | if (!CallGraphUpToDate) |
| 414 | DevirtualizedCall |= RefreshCallGraph(CurSCC, CG, false); |
| 415 | return Changed; |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 416 | } |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 417 | |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 418 | /// run - Execute all of the passes scheduled for execution. Keep track of |
| 419 | /// whether any of the passes modifies the module, and if so, return true. |
| 420 | bool CGPassManager::runOnModule(Module &M) { |
| 421 | CallGraph &CG = getAnalysis<CallGraph>(); |
Bill Wendling | 905c7e9 | 2009-02-11 18:19:24 +0000 | [diff] [blame] | 422 | bool Changed = doInitialization(CG); |
Chris Lattner | 08e322d | 2010-04-21 00:47:40 +0000 | [diff] [blame] | 423 | |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 424 | // Walk the callgraph in bottom-up SCC order. |
Chris Lattner | a3dfc64 | 2010-04-16 22:59:24 +0000 | [diff] [blame] | 425 | scc_iterator<CallGraph*> CGI = scc_begin(&CG); |
| 426 | |
| 427 | CallGraphSCC CurSCC(&CGI); |
| 428 | while (!CGI.isAtEnd()) { |
Chris Lattner | 5095e3d | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 429 | // Copy the current SCC and increment past it so that the pass can hack |
| 430 | // on the SCC if it wants to without invalidating our iterator. |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame] | 431 | std::vector<CallGraphNode*> &NodeVec = *CGI; |
| 432 | CurSCC.initialize(&NodeVec[0], &NodeVec[0]+NodeVec.size()); |
Chris Lattner | 5095e3d | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 433 | ++CGI; |
| 434 | |
Chris Lattner | 08e322d | 2010-04-21 00:47:40 +0000 | [diff] [blame] | 435 | // At the top level, we run all the passes in this pass manager on the |
| 436 | // functions in this SCC. However, we support iterative compilation in the |
| 437 | // case where a function pass devirtualizes a call to a function. For |
| 438 | // example, it is very common for a function pass (often GVN or instcombine) |
| 439 | // to eliminate the addressing that feeds into a call. With that improved |
| 440 | // information, we would like the call to be an inline candidate, infer |
| 441 | // mod-ref information etc. |
| 442 | // |
| 443 | // Because of this, we allow iteration up to a specified iteration count. |
| 444 | // This only happens in the case of a devirtualized call, so we only burn |
| 445 | // compile time in the case that we're making progress. We also have a hard |
| 446 | // iteration count limit in case there is crazy code. |
| 447 | unsigned Iteration = 0; |
| 448 | bool DevirtualizedCall = false; |
| 449 | do { |
Chris Lattner | b61789d | 2010-04-22 20:42:33 +0000 | [diff] [blame] | 450 | DEBUG(if (Iteration) |
| 451 | dbgs() << " SCCPASSMGR: Re-visiting SCC, iteration #" |
| 452 | << Iteration << '\n'); |
Chris Lattner | 08e322d | 2010-04-21 00:47:40 +0000 | [diff] [blame] | 453 | DevirtualizedCall = false; |
| 454 | Changed |= RunAllPassesOnSCC(CurSCC, CG, DevirtualizedCall); |
| 455 | } while (Iteration++ < MaxIterations && DevirtualizedCall); |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 456 | |
Chris Lattner | 08e322d | 2010-04-21 00:47:40 +0000 | [diff] [blame] | 457 | if (DevirtualizedCall) |
| 458 | DEBUG(dbgs() << " CGSCCPASSMGR: Stopped iteration after " << Iteration |
| 459 | << " times, due to -max-cg-scc-iterations\n"); |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 460 | |
Chris Lattner | 08e322d | 2010-04-21 00:47:40 +0000 | [diff] [blame] | 461 | if (Iteration > MaxSCCIterations) |
| 462 | MaxSCCIterations = Iteration; |
| 463 | |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 464 | } |
Bill Wendling | 905c7e9 | 2009-02-11 18:19:24 +0000 | [diff] [blame] | 465 | Changed |= doFinalization(CG); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 466 | return Changed; |
| 467 | } |
| 468 | |
Chris Lattner | 08e322d | 2010-04-21 00:47:40 +0000 | [diff] [blame] | 469 | |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 470 | /// Initialize CG |
Bill Wendling | 905c7e9 | 2009-02-11 18:19:24 +0000 | [diff] [blame] | 471 | bool CGPassManager::doInitialization(CallGraph &CG) { |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 472 | bool Changed = false; |
Chris Lattner | 5a66cb9 | 2010-01-22 05:46:59 +0000 | [diff] [blame] | 473 | for (unsigned i = 0, e = getNumContainedPasses(); i != e; ++i) { |
| 474 | if (PMDataManager *PM = getContainedPass(i)->getAsPMDataManager()) { |
| 475 | assert(PM->getPassManagerType() == PMT_FunctionPassManager && |
| 476 | "Invalid CGPassManager member"); |
| 477 | Changed |= ((FPPassManager*)PM)->doInitialization(CG.getModule()); |
Nick Lewycky | 8968a07 | 2009-02-13 07:15:53 +0000 | [diff] [blame] | 478 | } else { |
Chris Lattner | 5a66cb9 | 2010-01-22 05:46:59 +0000 | [diff] [blame] | 479 | Changed |= ((CallGraphSCCPass*)getContainedPass(i))->doInitialization(CG); |
Nick Lewycky | 8968a07 | 2009-02-13 07:15:53 +0000 | [diff] [blame] | 480 | } |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 481 | } |
| 482 | return Changed; |
| 483 | } |
| 484 | |
| 485 | /// Finalize CG |
Bill Wendling | 905c7e9 | 2009-02-11 18:19:24 +0000 | [diff] [blame] | 486 | bool CGPassManager::doFinalization(CallGraph &CG) { |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 487 | bool Changed = false; |
Chris Lattner | 5a66cb9 | 2010-01-22 05:46:59 +0000 | [diff] [blame] | 488 | for (unsigned i = 0, e = getNumContainedPasses(); i != e; ++i) { |
| 489 | if (PMDataManager *PM = getContainedPass(i)->getAsPMDataManager()) { |
| 490 | assert(PM->getPassManagerType() == PMT_FunctionPassManager && |
| 491 | "Invalid CGPassManager member"); |
| 492 | Changed |= ((FPPassManager*)PM)->doFinalization(CG.getModule()); |
Nick Lewycky | 8968a07 | 2009-02-13 07:15:53 +0000 | [diff] [blame] | 493 | } else { |
Chris Lattner | 5a66cb9 | 2010-01-22 05:46:59 +0000 | [diff] [blame] | 494 | Changed |= ((CallGraphSCCPass*)getContainedPass(i))->doFinalization(CG); |
Nick Lewycky | 8968a07 | 2009-02-13 07:15:53 +0000 | [diff] [blame] | 495 | } |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 496 | } |
| 497 | return Changed; |
| 498 | } |
| 499 | |
Chris Lattner | c93760c | 2010-04-16 21:43:55 +0000 | [diff] [blame] | 500 | //===----------------------------------------------------------------------===// |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame] | 501 | // CallGraphSCC Implementation |
| 502 | //===----------------------------------------------------------------------===// |
| 503 | |
Chris Lattner | a3dfc64 | 2010-04-16 22:59:24 +0000 | [diff] [blame] | 504 | /// ReplaceNode - This informs the SCC and the pass manager that the specified |
| 505 | /// Old node has been deleted, and New is to be used in its place. |
| 506 | void CallGraphSCC::ReplaceNode(CallGraphNode *Old, CallGraphNode *New) { |
| 507 | assert(Old != New && "Should not replace node with self"); |
| 508 | for (unsigned i = 0; ; ++i) { |
| 509 | assert(i != Nodes.size() && "Node not in SCC"); |
| 510 | if (Nodes[i] != Old) continue; |
| 511 | Nodes[i] = New; |
| 512 | break; |
| 513 | } |
Chris Lattner | bde0bb5 | 2010-04-16 23:04:30 +0000 | [diff] [blame] | 514 | |
| 515 | // Update the active scc_iterator so that it doesn't contain dangling |
| 516 | // pointers to the old CallGraphNode. |
| 517 | scc_iterator<CallGraph*> *CGI = (scc_iterator<CallGraph*>*)Context; |
| 518 | CGI->ReplaceNode(Old, New); |
Chris Lattner | a3dfc64 | 2010-04-16 22:59:24 +0000 | [diff] [blame] | 519 | } |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame] | 520 | |
| 521 | |
| 522 | //===----------------------------------------------------------------------===// |
Chris Lattner | c93760c | 2010-04-16 21:43:55 +0000 | [diff] [blame] | 523 | // CallGraphSCCPass Implementation |
| 524 | //===----------------------------------------------------------------------===// |
David Greene | 5c8aa95 | 2010-04-02 23:17:14 +0000 | [diff] [blame] | 525 | |
Devang Patel | d9f10c3 | 2007-01-23 21:55:17 +0000 | [diff] [blame] | 526 | /// Assign pass manager to manage this pass. |
Devang Patel | 97fd243 | 2007-01-23 21:52:35 +0000 | [diff] [blame] | 527 | void CallGraphSCCPass::assignPassManager(PMStack &PMS, |
Anton Korobeynikov | bed2946 | 2007-04-16 18:10:23 +0000 | [diff] [blame] | 528 | PassManagerType PreferredType) { |
Devang Patel | 97fd243 | 2007-01-23 21:52:35 +0000 | [diff] [blame] | 529 | // Find CGPassManager |
Duncan Sands | 20d824b | 2007-07-19 09:42:01 +0000 | [diff] [blame] | 530 | while (!PMS.empty() && |
| 531 | PMS.top()->getPassManagerType() > PMT_CallGraphPassManager) |
| 532 | PMS.pop(); |
Devang Patel | 97fd243 | 2007-01-23 21:52:35 +0000 | [diff] [blame] | 533 | |
Chris Lattner | 77c95ed | 2010-01-22 05:37:10 +0000 | [diff] [blame] | 534 | assert(!PMS.empty() && "Unable to handle Call Graph Pass"); |
| 535 | CGPassManager *CGP; |
| 536 | |
| 537 | if (PMS.top()->getPassManagerType() == PMT_CallGraphPassManager) |
| 538 | CGP = (CGPassManager*)PMS.top(); |
| 539 | else { |
| 540 | // Create new Call Graph SCC Pass Manager if it does not exist. |
| 541 | assert(!PMS.empty() && "Unable to create Call Graph Pass Manager"); |
Devang Patel | 97fd243 | 2007-01-23 21:52:35 +0000 | [diff] [blame] | 542 | PMDataManager *PMD = PMS.top(); |
| 543 | |
| 544 | // [1] Create new Call Graph Pass Manager |
| 545 | CGP = new CGPassManager(PMD->getDepth() + 1); |
| 546 | |
| 547 | // [2] Set up new manager's top level manager |
| 548 | PMTopLevelManager *TPM = PMD->getTopLevelManager(); |
| 549 | TPM->addIndirectPassManager(CGP); |
| 550 | |
| 551 | // [3] Assign manager to manage this new manager. This may create |
| 552 | // and push new managers into PMS |
Chris Lattner | 77c95ed | 2010-01-22 05:37:10 +0000 | [diff] [blame] | 553 | Pass *P = CGP; |
Devang Patel | 25e681a | 2007-06-21 22:29:02 +0000 | [diff] [blame] | 554 | TPM->schedulePass(P); |
Devang Patel | 97fd243 | 2007-01-23 21:52:35 +0000 | [diff] [blame] | 555 | |
| 556 | // [4] Push new manager into PMS |
| 557 | PMS.push(CGP); |
| 558 | } |
| 559 | |
| 560 | CGP->add(this); |
| 561 | } |
| 562 | |
Chris Lattner | 4a81067 | 2003-08-31 01:54:59 +0000 | [diff] [blame] | 563 | /// getAnalysisUsage - For this class, we declare that we require and preserve |
| 564 | /// the call graph. If the derived class implements this method, it should |
| 565 | /// always explicitly call the implementation here. |
| 566 | void CallGraphSCCPass::getAnalysisUsage(AnalysisUsage &AU) const { |
| 567 | AU.addRequired<CallGraph>(); |
| 568 | AU.addPreserved<CallGraph>(); |
| 569 | } |
Chris Lattner | c93760c | 2010-04-16 21:43:55 +0000 | [diff] [blame] | 570 | |
| 571 | |
| 572 | //===----------------------------------------------------------------------===// |
| 573 | // PrintCallGraphPass Implementation |
| 574 | //===----------------------------------------------------------------------===// |
| 575 | |
| 576 | namespace { |
| 577 | /// PrintCallGraphPass - Print a Module corresponding to a call graph. |
| 578 | /// |
| 579 | class PrintCallGraphPass : public CallGraphSCCPass { |
| 580 | std::string Banner; |
| 581 | raw_ostream &Out; // raw_ostream to print on. |
| 582 | |
| 583 | public: |
| 584 | static char ID; |
| 585 | PrintCallGraphPass() : CallGraphSCCPass(&ID), Out(dbgs()) {} |
| 586 | PrintCallGraphPass(const std::string &B, raw_ostream &o) |
| 587 | : CallGraphSCCPass(&ID), Banner(B), Out(o) {} |
| 588 | |
| 589 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 590 | AU.setPreservesAll(); |
| 591 | } |
| 592 | |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame] | 593 | bool runOnSCC(CallGraphSCC &SCC) { |
Chris Lattner | c93760c | 2010-04-16 21:43:55 +0000 | [diff] [blame] | 594 | Out << Banner; |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame] | 595 | for (CallGraphSCC::iterator I = SCC.begin(), E = SCC.end(); I != E; ++I) |
| 596 | (*I)->getFunction()->print(Out); |
Chris Lattner | c93760c | 2010-04-16 21:43:55 +0000 | [diff] [blame] | 597 | return false; |
| 598 | } |
| 599 | }; |
| 600 | |
| 601 | } // end anonymous namespace. |
| 602 | |
| 603 | char PrintCallGraphPass::ID = 0; |
| 604 | |
| 605 | Pass *CallGraphSCCPass::createPrinterPass(raw_ostream &O, |
| 606 | const std::string &Banner) const { |
| 607 | return new PrintCallGraphPass(Banner, O); |
| 608 | } |
| 609 | |