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" |
| 20 | #include "llvm/Analysis/CallGraph.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/SCCIterator.h" |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 22 | #include "llvm/PassManagers.h" |
Devang Patel | 95ced11 | 2007-02-01 22:38:33 +0000 | [diff] [blame] | 23 | #include "llvm/Function.h" |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 24 | #include "llvm/Support/Debug.h" |
Chris Lattner | 8bff7c9 | 2009-09-01 21:37:50 +0000 | [diff] [blame] | 25 | #include "llvm/IntrinsicInst.h" |
Chris Lattner | 45cfe54 | 2009-08-23 06:03:38 +0000 | [diff] [blame] | 26 | #include "llvm/Support/raw_ostream.h" |
Chris Lattner | a10df50 | 2004-04-20 21:30:06 +0000 | [diff] [blame] | 27 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 28 | |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 29 | //===----------------------------------------------------------------------===// |
| 30 | // CGPassManager |
| 31 | // |
Dale Johannesen | db2659b | 2009-09-10 22:01:32 +0000 | [diff] [blame] | 32 | /// CGPassManager manages FPPassManagers and CallGraphSCCPasses. |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 33 | |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 34 | namespace { |
| 35 | |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 36 | class CGPassManager : public ModulePass, public PMDataManager { |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 37 | public: |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 38 | static char ID; |
Dan Gohman | c2bbfc1 | 2007-08-01 15:32:29 +0000 | [diff] [blame] | 39 | explicit CGPassManager(int Depth) |
Dan Gohman | ae73dc1 | 2008-09-04 17:05:41 +0000 | [diff] [blame] | 40 | : ModulePass(&ID), PMDataManager(Depth) { } |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 41 | |
| 42 | /// run - Execute all of the passes scheduled for execution. Keep track of |
| 43 | /// whether any of the passes modifies the module, and if so, return true. |
| 44 | bool runOnModule(Module &M); |
| 45 | |
Bill Wendling | 905c7e9 | 2009-02-11 18:19:24 +0000 | [diff] [blame] | 46 | bool doInitialization(CallGraph &CG); |
| 47 | bool doFinalization(CallGraph &CG); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 48 | |
| 49 | /// Pass Manager itself does not invalidate any analysis info. |
| 50 | void getAnalysisUsage(AnalysisUsage &Info) const { |
| 51 | // CGPassManager walks SCC and it needs CallGraph. |
| 52 | Info.addRequired<CallGraph>(); |
| 53 | Info.setPreservesAll(); |
| 54 | } |
| 55 | |
Devang Patel | 505f36a | 2007-02-01 22:09:37 +0000 | [diff] [blame] | 56 | virtual const char *getPassName() const { |
| 57 | return "CallGraph Pass Manager"; |
| 58 | } |
| 59 | |
Chris Lattner | 3660eca | 2010-01-22 05:24:46 +0000 | [diff] [blame] | 60 | virtual PMDataManager *getAsPMDataManager() { return this; } |
| 61 | virtual Pass *getAsPass() { return this; } |
| 62 | |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 63 | // Print passes managed by this manager |
| 64 | void dumpPassStructure(unsigned Offset) { |
David Greene | 2e48e53 | 2009-12-23 23:09:39 +0000 | [diff] [blame] | 65 | errs().indent(Offset*2) << "Call Graph SCC Pass Manager\n"; |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 66 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
| 67 | Pass *P = getContainedPass(Index); |
| 68 | P->dumpPassStructure(Offset + 1); |
| 69 | dumpLastUses(P, Offset+1); |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | Pass *getContainedPass(unsigned N) { |
Chris Lattner | 45cfe54 | 2009-08-23 06:03:38 +0000 | [diff] [blame] | 74 | assert(N < PassVector.size() && "Pass number out of range!"); |
| 75 | return static_cast<Pass *>(PassVector[N]); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 76 | } |
| 77 | |
Devang Patel | 84da80d | 2007-02-27 15:00:39 +0000 | [diff] [blame] | 78 | virtual PassManagerType getPassManagerType() const { |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 79 | return PMT_CallGraphPassManager; |
| 80 | } |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 81 | |
| 82 | private: |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 83 | bool RunPassOnSCC(Pass *P, std::vector<CallGraphNode*> &CurSCC, |
| 84 | CallGraph &CG, bool &CallGraphUpToDate); |
Chris Lattner | 5a6a363 | 2009-09-01 18:32:03 +0000 | [diff] [blame] | 85 | void RefreshCallGraph(std::vector<CallGraphNode*> &CurSCC, CallGraph &CG, |
| 86 | bool IsCheckingMode); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 87 | }; |
| 88 | |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 89 | } // end anonymous namespace. |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 90 | |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 91 | char CGPassManager::ID = 0; |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 92 | |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 93 | bool CGPassManager::RunPassOnSCC(Pass *P, std::vector<CallGraphNode*> &CurSCC, |
| 94 | CallGraph &CG, bool &CallGraphUpToDate) { |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 95 | bool Changed = false; |
Chris Lattner | 5a66cb9 | 2010-01-22 05:46:59 +0000 | [diff] [blame^] | 96 | PMDataManager *PM = P->getAsPMDataManager(); |
| 97 | |
| 98 | if (PM == 0) { |
| 99 | CallGraphSCCPass *CGSP = (CallGraphSCCPass*)P; |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 100 | if (!CallGraphUpToDate) { |
Chris Lattner | 5a6a363 | 2009-09-01 18:32:03 +0000 | [diff] [blame] | 101 | RefreshCallGraph(CurSCC, CG, false); |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 102 | CallGraphUpToDate = true; |
| 103 | } |
Chris Lattner | 44a1837 | 2009-09-01 20:33:43 +0000 | [diff] [blame] | 104 | |
Dan Gohman | 5c12ada | 2009-09-28 00:07:05 +0000 | [diff] [blame] | 105 | Timer *T = StartPassTimer(CGSP); |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 106 | Changed = CGSP->runOnSCC(CurSCC); |
Dan Gohman | 5c12ada | 2009-09-28 00:07:05 +0000 | [diff] [blame] | 107 | StopPassTimer(CGSP, T); |
Chris Lattner | 5a6a363 | 2009-09-01 18:32:03 +0000 | [diff] [blame] | 108 | |
| 109 | // After the CGSCCPass is done, when assertions are enabled, use |
| 110 | // RefreshCallGraph to verify that the callgraph was correctly updated. |
| 111 | #ifndef NDEBUG |
| 112 | if (Changed) |
| 113 | RefreshCallGraph(CurSCC, CG, true); |
| 114 | #endif |
| 115 | |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 116 | return Changed; |
| 117 | } |
| 118 | |
Chris Lattner | 5a66cb9 | 2010-01-22 05:46:59 +0000 | [diff] [blame^] | 119 | |
| 120 | assert(PM->getPassManagerType() == PMT_FunctionPassManager && |
| 121 | "Invalid CGPassManager member"); |
| 122 | FPPassManager *FPP = (FPPassManager*)P; |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 123 | |
| 124 | // Run pass P on all functions in the current SCC. |
| 125 | for (unsigned i = 0, e = CurSCC.size(); i != e; ++i) { |
| 126 | if (Function *F = CurSCC[i]->getFunction()) { |
| 127 | dumpPassInfo(P, EXECUTION_MSG, ON_FUNCTION_MSG, F->getName()); |
Dan Gohman | 5c12ada | 2009-09-28 00:07:05 +0000 | [diff] [blame] | 128 | Timer *T = StartPassTimer(FPP); |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 129 | Changed |= FPP->runOnFunction(*F); |
Dan Gohman | 5c12ada | 2009-09-28 00:07:05 +0000 | [diff] [blame] | 130 | StopPassTimer(FPP, T); |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 131 | } |
| 132 | } |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 133 | |
Chris Lattner | 2038cf3 | 2009-08-31 17:08:30 +0000 | [diff] [blame] | 134 | // The function pass(es) modified the IR, they may have clobbered the |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 135 | // callgraph. |
| 136 | if (Changed && CallGraphUpToDate) { |
David Greene | c81ce58 | 2009-12-23 20:10:59 +0000 | [diff] [blame] | 137 | DEBUG(dbgs() << "CGSCCPASSMGR: Pass Dirtied SCC: " |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 138 | << P->getPassName() << '\n'); |
| 139 | CallGraphUpToDate = false; |
| 140 | } |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 141 | return Changed; |
| 142 | } |
| 143 | |
Chris Lattner | 5a6a363 | 2009-09-01 18:32:03 +0000 | [diff] [blame] | 144 | |
| 145 | /// RefreshCallGraph - Scan the functions in the specified CFG and resync the |
| 146 | /// callgraph with the call sites found in it. This is used after |
| 147 | /// FunctionPasses have potentially munged the callgraph, and can be used after |
| 148 | /// CallGraphSCC passes to verify that they correctly updated the callgraph. |
| 149 | /// |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 150 | void CGPassManager::RefreshCallGraph(std::vector<CallGraphNode*> &CurSCC, |
Chris Lattner | 5a6a363 | 2009-09-01 18:32:03 +0000 | [diff] [blame] | 151 | CallGraph &CG, bool CheckingMode) { |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 152 | DenseMap<Value*, CallGraphNode*> CallSites; |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 153 | |
David Greene | c81ce58 | 2009-12-23 20:10:59 +0000 | [diff] [blame] | 154 | DEBUG(dbgs() << "CGSCCPASSMGR: Refreshing SCC with " << CurSCC.size() |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 155 | << " nodes:\n"; |
| 156 | for (unsigned i = 0, e = CurSCC.size(); i != e; ++i) |
| 157 | CurSCC[i]->dump(); |
| 158 | ); |
| 159 | |
| 160 | bool MadeChange = false; |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 161 | |
| 162 | // Scan all functions in the SCC. |
| 163 | for (unsigned sccidx = 0, e = CurSCC.size(); sccidx != e; ++sccidx) { |
| 164 | CallGraphNode *CGN = CurSCC[sccidx]; |
| 165 | Function *F = CGN->getFunction(); |
| 166 | if (F == 0 || F->isDeclaration()) continue; |
| 167 | |
| 168 | // Walk the function body looking for call sites. Sync up the call sites in |
| 169 | // CGN with those actually in the function. |
Chris Lattner | 17146b8 | 2009-09-01 18:13:40 +0000 | [diff] [blame] | 170 | |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 171 | // Get the set of call sites currently in the function. |
Duncan Sands | b3020d7 | 2009-09-02 03:48:41 +0000 | [diff] [blame] | 172 | for (CallGraphNode::iterator I = CGN->begin(), E = CGN->end(); I != E; ) { |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 173 | // 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] | 174 | // entirely and the WeakVH nulled it out. |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 175 | if (I->first == 0 || |
| 176 | // If we've already seen this call site, then the FunctionPass RAUW'd |
| 177 | // one call with another, which resulted in two "uses" in the edge |
| 178 | // list of the same call. |
| 179 | CallSites.count(I->first) || |
| 180 | |
| 181 | // If the call edge is not from a call or invoke, then the function |
| 182 | // pass RAUW'd a call with another value. This can happen when |
| 183 | // constant folding happens of well known functions etc. |
| 184 | CallSite::get(I->first).getInstruction() == 0) { |
Chris Lattner | 5a6a363 | 2009-09-01 18:32:03 +0000 | [diff] [blame] | 185 | assert(!CheckingMode && |
| 186 | "CallGraphSCCPass did not update the CallGraph correctly!"); |
| 187 | |
Chris Lattner | d3bd082 | 2009-09-02 04:39:04 +0000 | [diff] [blame] | 188 | // Just remove the edge from the set of callees, keep track of whether |
| 189 | // I points to the last element of the vector. |
| 190 | bool WasLast = I + 1 == E; |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 191 | CGN->removeCallEdge(I); |
Chris Lattner | b8bcbd6 | 2009-09-02 04:34:06 +0000 | [diff] [blame] | 192 | |
Chris Lattner | d3bd082 | 2009-09-02 04:39:04 +0000 | [diff] [blame] | 193 | // If I pointed to the last element of the vector, we have to bail out: |
| 194 | // iterator checking rejects comparisons of the resultant pointer with |
| 195 | // end. |
| 196 | if (WasLast) |
| 197 | break; |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 198 | E = CGN->end(); |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 199 | continue; |
| 200 | } |
Chris Lattner | 17146b8 | 2009-09-01 18:13:40 +0000 | [diff] [blame] | 201 | |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 202 | assert(!CallSites.count(I->first) && |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 203 | "Call site occurs in node multiple times"); |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 204 | CallSites.insert(std::make_pair(I->first, I->second)); |
Chris Lattner | 17146b8 | 2009-09-01 18:13:40 +0000 | [diff] [blame] | 205 | ++I; |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 206 | } |
Chris Lattner | 17146b8 | 2009-09-01 18:13:40 +0000 | [diff] [blame] | 207 | |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 208 | // Loop over all of the instructions in the function, getting the callsites. |
| 209 | for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) |
| 210 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) { |
| 211 | CallSite CS = CallSite::get(I); |
Chris Lattner | 8bff7c9 | 2009-09-01 21:37:50 +0000 | [diff] [blame] | 212 | if (!CS.getInstruction() || isa<DbgInfoIntrinsic>(I)) continue; |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 213 | |
| 214 | // If this call site already existed in the callgraph, just verify it |
| 215 | // matches up to expectations and remove it from CallSites. |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 216 | DenseMap<Value*, CallGraphNode*>::iterator ExistingIt = |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 217 | CallSites.find(CS.getInstruction()); |
| 218 | if (ExistingIt != CallSites.end()) { |
| 219 | CallGraphNode *ExistingNode = ExistingIt->second; |
| 220 | |
| 221 | // Remove from CallSites since we have now seen it. |
| 222 | CallSites.erase(ExistingIt); |
| 223 | |
| 224 | // Verify that the callee is right. |
| 225 | if (ExistingNode->getFunction() == CS.getCalledFunction()) |
| 226 | continue; |
| 227 | |
Chris Lattner | 5a6a363 | 2009-09-01 18:32:03 +0000 | [diff] [blame] | 228 | // If we are in checking mode, we are not allowed to actually mutate |
| 229 | // the callgraph. If this is a case where we can infer that the |
| 230 | // callgraph is less precise than it could be (e.g. an indirect call |
| 231 | // site could be turned direct), don't reject it in checking mode, and |
| 232 | // don't tweak it to be more precise. |
| 233 | if (CheckingMode && CS.getCalledFunction() && |
| 234 | ExistingNode->getFunction() == 0) |
| 235 | continue; |
| 236 | |
| 237 | assert(!CheckingMode && |
| 238 | "CallGraphSCCPass did not update the CallGraph correctly!"); |
| 239 | |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 240 | // If not, we either went from a direct call to indirect, indirect to |
| 241 | // direct, or direct to different direct. |
| 242 | CallGraphNode *CalleeNode; |
| 243 | if (Function *Callee = CS.getCalledFunction()) |
| 244 | CalleeNode = CG.getOrInsertFunction(Callee); |
| 245 | else |
| 246 | CalleeNode = CG.getCallsExternalNode(); |
Chris Lattner | 44a1837 | 2009-09-01 20:33:43 +0000 | [diff] [blame] | 247 | |
| 248 | // Update the edge target in CGN. |
| 249 | for (CallGraphNode::iterator I = CGN->begin(); ; ++I) { |
| 250 | assert(I != CGN->end() && "Didn't find call entry"); |
| 251 | if (I->first == CS.getInstruction()) { |
| 252 | I->second = CalleeNode; |
| 253 | break; |
| 254 | } |
| 255 | } |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 256 | MadeChange = true; |
| 257 | continue; |
| 258 | } |
| 259 | |
Chris Lattner | 5a6a363 | 2009-09-01 18:32:03 +0000 | [diff] [blame] | 260 | assert(!CheckingMode && |
| 261 | "CallGraphSCCPass did not update the CallGraph correctly!"); |
| 262 | |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 263 | // If the call site didn't exist in the CGN yet, add it. We assume that |
| 264 | // newly introduced call sites won't be indirect. This could be fixed |
| 265 | // in the future. |
| 266 | CallGraphNode *CalleeNode; |
| 267 | if (Function *Callee = CS.getCalledFunction()) |
| 268 | CalleeNode = CG.getOrInsertFunction(Callee); |
| 269 | else |
| 270 | CalleeNode = CG.getCallsExternalNode(); |
| 271 | |
| 272 | CGN->addCalledFunction(CS, CalleeNode); |
| 273 | MadeChange = true; |
| 274 | } |
| 275 | |
| 276 | // After scanning this function, if we still have entries in callsites, then |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 277 | // they are dangling pointers. WeakVH should save us for this, so abort if |
| 278 | // this happens. |
| 279 | assert(CallSites.empty() && "Dangling pointers found in call sites map"); |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 280 | |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 281 | // Periodically do an explicit clear to remove tombstones when processing |
| 282 | // large scc's. |
| 283 | if ((sccidx & 15) == 0) |
| 284 | CallSites.clear(); |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 285 | } |
| 286 | |
| 287 | DEBUG(if (MadeChange) { |
David Greene | c81ce58 | 2009-12-23 20:10:59 +0000 | [diff] [blame] | 288 | dbgs() << "CGSCCPASSMGR: Refreshed SCC is now:\n"; |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 289 | for (unsigned i = 0, e = CurSCC.size(); i != e; ++i) |
| 290 | CurSCC[i]->dump(); |
| 291 | } else { |
David Greene | c81ce58 | 2009-12-23 20:10:59 +0000 | [diff] [blame] | 292 | dbgs() << "CGSCCPASSMGR: SCC Refresh didn't change call graph.\n"; |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 293 | } |
| 294 | ); |
| 295 | } |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 296 | |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 297 | /// run - Execute all of the passes scheduled for execution. Keep track of |
| 298 | /// whether any of the passes modifies the module, and if so, return true. |
| 299 | bool CGPassManager::runOnModule(Module &M) { |
| 300 | CallGraph &CG = getAnalysis<CallGraph>(); |
Bill Wendling | 905c7e9 | 2009-02-11 18:19:24 +0000 | [diff] [blame] | 301 | bool Changed = doInitialization(CG); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 302 | |
Chris Lattner | 5095e3d | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 303 | std::vector<CallGraphNode*> CurSCC; |
| 304 | |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 305 | // Walk the callgraph in bottom-up SCC order. |
Chris Lattner | 5095e3d | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 306 | for (scc_iterator<CallGraph*> CGI = scc_begin(&CG), E = scc_end(&CG); |
| 307 | CGI != E;) { |
| 308 | // Copy the current SCC and increment past it so that the pass can hack |
| 309 | // on the SCC if it wants to without invalidating our iterator. |
| 310 | CurSCC = *CGI; |
| 311 | ++CGI; |
| 312 | |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 313 | |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 314 | // CallGraphUpToDate - Keep track of whether the callgraph is known to be |
| 315 | // up-to-date or not. The CGSSC pass manager runs two types of passes: |
| 316 | // CallGraphSCC Passes and other random function passes. Because other |
| 317 | // random function passes are not CallGraph aware, they may clobber the |
| 318 | // call graph by introducing new calls or deleting other ones. This flag |
| 319 | // is set to false when we run a function pass so that we know to clean up |
| 320 | // the callgraph when we need to run a CGSCCPass again. |
| 321 | bool CallGraphUpToDate = true; |
| 322 | |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 323 | // Run all passes on current SCC. |
| 324 | for (unsigned PassNo = 0, e = getNumContainedPasses(); |
| 325 | PassNo != e; ++PassNo) { |
| 326 | Pass *P = getContainedPass(PassNo); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 327 | |
Chris Lattner | 9554c61 | 2009-09-15 05:03:04 +0000 | [diff] [blame] | 328 | // If we're in -debug-pass=Executions mode, construct the SCC node list, |
| 329 | // otherwise avoid constructing this string as it is expensive. |
| 330 | if (isPassDebuggingExecutionsOrMore()) { |
| 331 | std::string Functions; |
| 332 | #ifndef NDEBUG |
| 333 | raw_string_ostream OS(Functions); |
| 334 | for (unsigned i = 0, e = CurSCC.size(); i != e; ++i) { |
| 335 | if (i) OS << ", "; |
| 336 | CurSCC[i]->print(OS); |
| 337 | } |
| 338 | OS.flush(); |
| 339 | #endif |
| 340 | dumpPassInfo(P, EXECUTION_MSG, ON_CG_MSG, Functions); |
| 341 | } |
Chris Lattner | 0dabb7e | 2008-08-08 15:14:09 +0000 | [diff] [blame] | 342 | dumpRequiredSet(P); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 343 | |
| 344 | initializeAnalysisImpl(P); |
| 345 | |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 346 | // Actually run this pass on the current SCC. |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 347 | Changed |= RunPassOnSCC(P, CurSCC, CG, CallGraphUpToDate); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 348 | |
| 349 | if (Changed) |
Devang Patel | 7f99761 | 2007-03-05 20:01:30 +0000 | [diff] [blame] | 350 | dumpPassInfo(P, MODIFICATION_MSG, ON_CG_MSG, ""); |
Chris Lattner | 0dabb7e | 2008-08-08 15:14:09 +0000 | [diff] [blame] | 351 | dumpPreservedSet(P); |
Devang Patel | 58e0ef1 | 2007-07-19 18:02:32 +0000 | [diff] [blame] | 352 | |
| 353 | verifyPreservedAnalysis(P); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 354 | removeNotPreservedAnalysis(P); |
| 355 | recordAvailableAnalysis(P); |
Devang Patel | 7f99761 | 2007-03-05 20:01:30 +0000 | [diff] [blame] | 356 | removeDeadPasses(P, "", ON_CG_MSG); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 357 | } |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 358 | |
| 359 | // If the callgraph was left out of date (because the last pass run was a |
| 360 | // functionpass), refresh it before we move on to the next SCC. |
| 361 | if (!CallGraphUpToDate) |
Chris Lattner | 5a6a363 | 2009-09-01 18:32:03 +0000 | [diff] [blame] | 362 | RefreshCallGraph(CurSCC, CG, false); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 363 | } |
Bill Wendling | 905c7e9 | 2009-02-11 18:19:24 +0000 | [diff] [blame] | 364 | Changed |= doFinalization(CG); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 365 | return Changed; |
| 366 | } |
| 367 | |
| 368 | /// Initialize CG |
Bill Wendling | 905c7e9 | 2009-02-11 18:19:24 +0000 | [diff] [blame] | 369 | bool CGPassManager::doInitialization(CallGraph &CG) { |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 370 | bool Changed = false; |
Chris Lattner | 5a66cb9 | 2010-01-22 05:46:59 +0000 | [diff] [blame^] | 371 | for (unsigned i = 0, e = getNumContainedPasses(); i != e; ++i) { |
| 372 | if (PMDataManager *PM = getContainedPass(i)->getAsPMDataManager()) { |
| 373 | assert(PM->getPassManagerType() == PMT_FunctionPassManager && |
| 374 | "Invalid CGPassManager member"); |
| 375 | Changed |= ((FPPassManager*)PM)->doInitialization(CG.getModule()); |
Nick Lewycky | 8968a07 | 2009-02-13 07:15:53 +0000 | [diff] [blame] | 376 | } else { |
Chris Lattner | 5a66cb9 | 2010-01-22 05:46:59 +0000 | [diff] [blame^] | 377 | Changed |= ((CallGraphSCCPass*)getContainedPass(i))->doInitialization(CG); |
Nick Lewycky | 8968a07 | 2009-02-13 07:15:53 +0000 | [diff] [blame] | 378 | } |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 379 | } |
| 380 | return Changed; |
| 381 | } |
| 382 | |
| 383 | /// Finalize CG |
Bill Wendling | 905c7e9 | 2009-02-11 18:19:24 +0000 | [diff] [blame] | 384 | bool CGPassManager::doFinalization(CallGraph &CG) { |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 385 | bool Changed = false; |
Chris Lattner | 5a66cb9 | 2010-01-22 05:46:59 +0000 | [diff] [blame^] | 386 | for (unsigned i = 0, e = getNumContainedPasses(); i != e; ++i) { |
| 387 | if (PMDataManager *PM = getContainedPass(i)->getAsPMDataManager()) { |
| 388 | assert(PM->getPassManagerType() == PMT_FunctionPassManager && |
| 389 | "Invalid CGPassManager member"); |
| 390 | Changed |= ((FPPassManager*)PM)->doFinalization(CG.getModule()); |
Nick Lewycky | 8968a07 | 2009-02-13 07:15:53 +0000 | [diff] [blame] | 391 | } else { |
Chris Lattner | 5a66cb9 | 2010-01-22 05:46:59 +0000 | [diff] [blame^] | 392 | Changed |= ((CallGraphSCCPass*)getContainedPass(i))->doFinalization(CG); |
Nick Lewycky | 8968a07 | 2009-02-13 07:15:53 +0000 | [diff] [blame] | 393 | } |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 394 | } |
| 395 | return Changed; |
| 396 | } |
| 397 | |
Devang Patel | d9f10c3 | 2007-01-23 21:55:17 +0000 | [diff] [blame] | 398 | /// Assign pass manager to manage this pass. |
Devang Patel | 97fd243 | 2007-01-23 21:52:35 +0000 | [diff] [blame] | 399 | void CallGraphSCCPass::assignPassManager(PMStack &PMS, |
Anton Korobeynikov | bed2946 | 2007-04-16 18:10:23 +0000 | [diff] [blame] | 400 | PassManagerType PreferredType) { |
Devang Patel | 97fd243 | 2007-01-23 21:52:35 +0000 | [diff] [blame] | 401 | // Find CGPassManager |
Duncan Sands | 20d824b | 2007-07-19 09:42:01 +0000 | [diff] [blame] | 402 | while (!PMS.empty() && |
| 403 | PMS.top()->getPassManagerType() > PMT_CallGraphPassManager) |
| 404 | PMS.pop(); |
Devang Patel | 97fd243 | 2007-01-23 21:52:35 +0000 | [diff] [blame] | 405 | |
Chris Lattner | 77c95ed | 2010-01-22 05:37:10 +0000 | [diff] [blame] | 406 | assert(!PMS.empty() && "Unable to handle Call Graph Pass"); |
| 407 | CGPassManager *CGP; |
| 408 | |
| 409 | if (PMS.top()->getPassManagerType() == PMT_CallGraphPassManager) |
| 410 | CGP = (CGPassManager*)PMS.top(); |
| 411 | else { |
| 412 | // Create new Call Graph SCC Pass Manager if it does not exist. |
| 413 | assert(!PMS.empty() && "Unable to create Call Graph Pass Manager"); |
Devang Patel | 97fd243 | 2007-01-23 21:52:35 +0000 | [diff] [blame] | 414 | PMDataManager *PMD = PMS.top(); |
| 415 | |
| 416 | // [1] Create new Call Graph Pass Manager |
| 417 | CGP = new CGPassManager(PMD->getDepth() + 1); |
| 418 | |
| 419 | // [2] Set up new manager's top level manager |
| 420 | PMTopLevelManager *TPM = PMD->getTopLevelManager(); |
| 421 | TPM->addIndirectPassManager(CGP); |
| 422 | |
| 423 | // [3] Assign manager to manage this new manager. This may create |
| 424 | // and push new managers into PMS |
Chris Lattner | 77c95ed | 2010-01-22 05:37:10 +0000 | [diff] [blame] | 425 | Pass *P = CGP; |
Devang Patel | 25e681a | 2007-06-21 22:29:02 +0000 | [diff] [blame] | 426 | TPM->schedulePass(P); |
Devang Patel | 97fd243 | 2007-01-23 21:52:35 +0000 | [diff] [blame] | 427 | |
| 428 | // [4] Push new manager into PMS |
| 429 | PMS.push(CGP); |
| 430 | } |
| 431 | |
| 432 | CGP->add(this); |
| 433 | } |
| 434 | |
Chris Lattner | 4a81067 | 2003-08-31 01:54:59 +0000 | [diff] [blame] | 435 | /// getAnalysisUsage - For this class, we declare that we require and preserve |
| 436 | /// the call graph. If the derived class implements this method, it should |
| 437 | /// always explicitly call the implementation here. |
| 438 | void CallGraphSCCPass::getAnalysisUsage(AnalysisUsage &AU) const { |
| 439 | AU.addRequired<CallGraph>(); |
| 440 | AU.addPreserved<CallGraph>(); |
| 441 | } |