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