blob: b188d3091c841a78d99f8c8f98cdcf15cb9c4293 [file] [log] [blame]
Chris Lattner4a810672003-08-31 01:54:59 +00001//===- CallGraphSCCPass.cpp - Pass that operates BU on call graph ---------===//
Misha Brukman2b37d7c2005-04-21 21:13:18 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman2b37d7c2005-04-21 21:13:18 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner4a810672003-08-31 01:54:59 +00009//
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 Lattnerbe577652009-08-31 07:23:46 +000018#define DEBUG_TYPE "cgscc-passmgr"
Chris Lattner4a810672003-08-31 01:54:59 +000019#include "llvm/CallGraphSCCPass.h"
20#include "llvm/Analysis/CallGraph.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000021#include "llvm/ADT/SCCIterator.h"
Devang Patel75f9abf2007-01-17 21:45:01 +000022#include "llvm/PassManagers.h"
Devang Patel95ced112007-02-01 22:38:33 +000023#include "llvm/Function.h"
Chris Lattnerbe577652009-08-31 07:23:46 +000024#include "llvm/Support/Debug.h"
Chris Lattner45cfe542009-08-23 06:03:38 +000025#include "llvm/Support/raw_ostream.h"
Chris Lattnera10df502004-04-20 21:30:06 +000026using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000027
Devang Patel75f9abf2007-01-17 21:45:01 +000028//===----------------------------------------------------------------------===//
29// CGPassManager
30//
31/// CGPassManager manages FPPassManagers and CalLGraphSCCPasses.
32
Dan Gohman844731a2008-05-13 00:00:25 +000033namespace {
34
Devang Patel75f9abf2007-01-17 21:45:01 +000035class CGPassManager : public ModulePass, public PMDataManager {
Devang Patel75f9abf2007-01-17 21:45:01 +000036public:
Devang Patel19974732007-05-03 01:11:54 +000037 static char ID;
Dan Gohmanc2bbfc12007-08-01 15:32:29 +000038 explicit CGPassManager(int Depth)
Dan Gohmanae73dc12008-09-04 17:05:41 +000039 : ModulePass(&ID), PMDataManager(Depth) { }
Devang Patel75f9abf2007-01-17 21:45:01 +000040
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 Wendling905c7e92009-02-11 18:19:24 +000045 bool doInitialization(CallGraph &CG);
46 bool doFinalization(CallGraph &CG);
Devang Patel75f9abf2007-01-17 21:45:01 +000047
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 Patel505f36a2007-02-01 22:09:37 +000055 virtual const char *getPassName() const {
56 return "CallGraph Pass Manager";
57 }
58
Devang Patel75f9abf2007-01-17 21:45:01 +000059 // Print passes managed by this manager
60 void dumpPassStructure(unsigned Offset) {
Chris Lattner45cfe542009-08-23 06:03:38 +000061 errs().indent(Offset*2) << "Call Graph SCC Pass Manager\n";
Devang Patel75f9abf2007-01-17 21:45:01 +000062 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 Lattner45cfe542009-08-23 06:03:38 +000070 assert(N < PassVector.size() && "Pass number out of range!");
71 return static_cast<Pass *>(PassVector[N]);
Devang Patel75f9abf2007-01-17 21:45:01 +000072 }
73
Devang Patel84da80d2007-02-27 15:00:39 +000074 virtual PassManagerType getPassManagerType() const {
Devang Patel75f9abf2007-01-17 21:45:01 +000075 return PMT_CallGraphPassManager;
76 }
Chris Lattnerf3a1c152009-08-31 06:01:21 +000077
78private:
Chris Lattnerbe577652009-08-31 07:23:46 +000079 bool RunPassOnSCC(Pass *P, std::vector<CallGraphNode*> &CurSCC,
80 CallGraph &CG, bool &CallGraphUpToDate);
Chris Lattner5a6a3632009-09-01 18:32:03 +000081 void RefreshCallGraph(std::vector<CallGraphNode*> &CurSCC, CallGraph &CG,
82 bool IsCheckingMode);
Devang Patel75f9abf2007-01-17 21:45:01 +000083};
84
Chris Lattnerf3a1c152009-08-31 06:01:21 +000085} // end anonymous namespace.
Dan Gohman844731a2008-05-13 00:00:25 +000086
Devang Patel19974732007-05-03 01:11:54 +000087char CGPassManager::ID = 0;
Chris Lattnerf3a1c152009-08-31 06:01:21 +000088
Chris Lattnerbe577652009-08-31 07:23:46 +000089bool CGPassManager::RunPassOnSCC(Pass *P, std::vector<CallGraphNode*> &CurSCC,
90 CallGraph &CG, bool &CallGraphUpToDate) {
Chris Lattnerf3a1c152009-08-31 06:01:21 +000091 bool Changed = false;
92 if (CallGraphSCCPass *CGSP = dynamic_cast<CallGraphSCCPass*>(P)) {
Chris Lattnerbe577652009-08-31 07:23:46 +000093 if (!CallGraphUpToDate) {
Chris Lattner5a6a3632009-09-01 18:32:03 +000094 RefreshCallGraph(CurSCC, CG, false);
Chris Lattnerbe577652009-08-31 07:23:46 +000095 CallGraphUpToDate = true;
96 }
Chris Lattner44a18372009-09-01 20:33:43 +000097
98 StartPassTimer(CGSP);
Chris Lattnerf3a1c152009-08-31 06:01:21 +000099 Changed = CGSP->runOnSCC(CurSCC);
Chris Lattner44a18372009-09-01 20:33:43 +0000100 StopPassTimer(CGSP);
Chris Lattner5a6a3632009-09-01 18:32:03 +0000101
102 // After the CGSCCPass is done, when assertions are enabled, use
103 // RefreshCallGraph to verify that the callgraph was correctly updated.
104#ifndef NDEBUG
105 if (Changed)
106 RefreshCallGraph(CurSCC, CG, true);
107#endif
108
Chris Lattnerf3a1c152009-08-31 06:01:21 +0000109 return Changed;
110 }
111
112 StartPassTimer(P);
113 FPPassManager *FPP = dynamic_cast<FPPassManager *>(P);
114 assert(FPP && "Invalid CGPassManager member");
115
116 // Run pass P on all functions in the current SCC.
117 for (unsigned i = 0, e = CurSCC.size(); i != e; ++i) {
118 if (Function *F = CurSCC[i]->getFunction()) {
119 dumpPassInfo(P, EXECUTION_MSG, ON_FUNCTION_MSG, F->getName());
120 Changed |= FPP->runOnFunction(*F);
121 }
122 }
123 StopPassTimer(P);
124
Chris Lattner2038cf32009-08-31 17:08:30 +0000125 // The function pass(es) modified the IR, they may have clobbered the
Chris Lattnerbe577652009-08-31 07:23:46 +0000126 // callgraph.
127 if (Changed && CallGraphUpToDate) {
128 DEBUG(errs() << "CGSCCPASSMGR: Pass Dirtied SCC: "
129 << P->getPassName() << '\n');
130 CallGraphUpToDate = false;
131 }
Chris Lattnerf3a1c152009-08-31 06:01:21 +0000132 return Changed;
133}
134
Chris Lattner5a6a3632009-09-01 18:32:03 +0000135
136/// RefreshCallGraph - Scan the functions in the specified CFG and resync the
137/// callgraph with the call sites found in it. This is used after
138/// FunctionPasses have potentially munged the callgraph, and can be used after
139/// CallGraphSCC passes to verify that they correctly updated the callgraph.
140///
Chris Lattnerbe577652009-08-31 07:23:46 +0000141void CGPassManager::RefreshCallGraph(std::vector<CallGraphNode*> &CurSCC,
Chris Lattner5a6a3632009-09-01 18:32:03 +0000142 CallGraph &CG, bool CheckingMode) {
Chris Lattnera541b0f2009-09-01 06:31:31 +0000143 DenseMap<Value*, CallGraphNode*> CallSites;
Chris Lattnerbe577652009-08-31 07:23:46 +0000144
145 DEBUG(errs() << "CGSCCPASSMGR: Refreshing SCC with " << CurSCC.size()
146 << " nodes:\n";
147 for (unsigned i = 0, e = CurSCC.size(); i != e; ++i)
148 CurSCC[i]->dump();
149 );
150
151 bool MadeChange = false;
Chris Lattnerbe577652009-08-31 07:23:46 +0000152
153 // Scan all functions in the SCC.
154 for (unsigned sccidx = 0, e = CurSCC.size(); sccidx != e; ++sccidx) {
155 CallGraphNode *CGN = CurSCC[sccidx];
156 Function *F = CGN->getFunction();
157 if (F == 0 || F->isDeclaration()) continue;
158
159 // Walk the function body looking for call sites. Sync up the call sites in
160 // CGN with those actually in the function.
Chris Lattner17146b82009-09-01 18:13:40 +0000161
Chris Lattnerbe577652009-08-31 07:23:46 +0000162 // Get the set of call sites currently in the function.
Chris Lattner17146b82009-09-01 18:13:40 +0000163 for (CallGraphNode::iterator I = CGN->begin(), E = CGN->end(); I != E; ){
Chris Lattnera541b0f2009-09-01 06:31:31 +0000164 // If this call site is null, then the function pass deleted the call
Chris Lattner17146b82009-09-01 18:13:40 +0000165 // entirely and the WeakVH nulled it out.
Chris Lattnera541b0f2009-09-01 06:31:31 +0000166 if (I->first == 0 ||
167 // If we've already seen this call site, then the FunctionPass RAUW'd
168 // one call with another, which resulted in two "uses" in the edge
169 // list of the same call.
170 CallSites.count(I->first) ||
171
172 // If the call edge is not from a call or invoke, then the function
173 // pass RAUW'd a call with another value. This can happen when
174 // constant folding happens of well known functions etc.
175 CallSite::get(I->first).getInstruction() == 0) {
Chris Lattner5a6a3632009-09-01 18:32:03 +0000176 assert(!CheckingMode &&
177 "CallGraphSCCPass did not update the CallGraph correctly!");
178
Chris Lattnera541b0f2009-09-01 06:31:31 +0000179 // Just remove the edge from the set of callees.
180 CGN->removeCallEdge(I);
181 E = CGN->end();
Chris Lattnera541b0f2009-09-01 06:31:31 +0000182 continue;
183 }
Chris Lattner17146b82009-09-01 18:13:40 +0000184
Chris Lattnera541b0f2009-09-01 06:31:31 +0000185 assert(!CallSites.count(I->first) &&
Chris Lattnerbe577652009-08-31 07:23:46 +0000186 "Call site occurs in node multiple times");
Chris Lattnera541b0f2009-09-01 06:31:31 +0000187 CallSites.insert(std::make_pair(I->first, I->second));
Chris Lattner17146b82009-09-01 18:13:40 +0000188 ++I;
Chris Lattnerbe577652009-08-31 07:23:46 +0000189 }
Chris Lattner17146b82009-09-01 18:13:40 +0000190
Chris Lattnerbe577652009-08-31 07:23:46 +0000191 // Loop over all of the instructions in the function, getting the callsites.
192 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
193 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
194 CallSite CS = CallSite::get(I);
195 if (!CS.getInstruction()) continue;
196
197 // If this call site already existed in the callgraph, just verify it
198 // matches up to expectations and remove it from CallSites.
Chris Lattnera541b0f2009-09-01 06:31:31 +0000199 DenseMap<Value*, CallGraphNode*>::iterator ExistingIt =
Chris Lattnerbe577652009-08-31 07:23:46 +0000200 CallSites.find(CS.getInstruction());
201 if (ExistingIt != CallSites.end()) {
202 CallGraphNode *ExistingNode = ExistingIt->second;
203
204 // Remove from CallSites since we have now seen it.
205 CallSites.erase(ExistingIt);
206
207 // Verify that the callee is right.
208 if (ExistingNode->getFunction() == CS.getCalledFunction())
209 continue;
210
Chris Lattner5a6a3632009-09-01 18:32:03 +0000211 // If we are in checking mode, we are not allowed to actually mutate
212 // the callgraph. If this is a case where we can infer that the
213 // callgraph is less precise than it could be (e.g. an indirect call
214 // site could be turned direct), don't reject it in checking mode, and
215 // don't tweak it to be more precise.
216 if (CheckingMode && CS.getCalledFunction() &&
217 ExistingNode->getFunction() == 0)
218 continue;
219
220 assert(!CheckingMode &&
221 "CallGraphSCCPass did not update the CallGraph correctly!");
222
Chris Lattnerbe577652009-08-31 07:23:46 +0000223 // If not, we either went from a direct call to indirect, indirect to
224 // direct, or direct to different direct.
225 CallGraphNode *CalleeNode;
226 if (Function *Callee = CS.getCalledFunction())
227 CalleeNode = CG.getOrInsertFunction(Callee);
228 else
229 CalleeNode = CG.getCallsExternalNode();
Chris Lattner44a18372009-09-01 20:33:43 +0000230
231 // Update the edge target in CGN.
232 for (CallGraphNode::iterator I = CGN->begin(); ; ++I) {
233 assert(I != CGN->end() && "Didn't find call entry");
234 if (I->first == CS.getInstruction()) {
235 I->second = CalleeNode;
236 break;
237 }
238 }
Chris Lattnerbe577652009-08-31 07:23:46 +0000239 MadeChange = true;
240 continue;
241 }
242
Chris Lattner5a6a3632009-09-01 18:32:03 +0000243 assert(!CheckingMode &&
244 "CallGraphSCCPass did not update the CallGraph correctly!");
245
Chris Lattnerbe577652009-08-31 07:23:46 +0000246 // If the call site didn't exist in the CGN yet, add it. We assume that
247 // newly introduced call sites won't be indirect. This could be fixed
248 // in the future.
249 CallGraphNode *CalleeNode;
250 if (Function *Callee = CS.getCalledFunction())
251 CalleeNode = CG.getOrInsertFunction(Callee);
252 else
253 CalleeNode = CG.getCallsExternalNode();
254
255 CGN->addCalledFunction(CS, CalleeNode);
256 MadeChange = true;
257 }
258
259 // After scanning this function, if we still have entries in callsites, then
Chris Lattnera541b0f2009-09-01 06:31:31 +0000260 // they are dangling pointers. WeakVH should save us for this, so abort if
261 // this happens.
262 assert(CallSites.empty() && "Dangling pointers found in call sites map");
Chris Lattnerbe577652009-08-31 07:23:46 +0000263
Chris Lattnera541b0f2009-09-01 06:31:31 +0000264 // Periodically do an explicit clear to remove tombstones when processing
265 // large scc's.
266 if ((sccidx & 15) == 0)
267 CallSites.clear();
Chris Lattnerbe577652009-08-31 07:23:46 +0000268 }
269
270 DEBUG(if (MadeChange) {
271 errs() << "CGSCCPASSMGR: Refreshed SCC is now:\n";
272 for (unsigned i = 0, e = CurSCC.size(); i != e; ++i)
273 CurSCC[i]->dump();
274 } else {
275 errs() << "CGSCCPASSMGR: SCC Refresh didn't change call graph.\n";
276 }
277 );
278}
Chris Lattnerf3a1c152009-08-31 06:01:21 +0000279
Devang Patel75f9abf2007-01-17 21:45:01 +0000280/// run - Execute all of the passes scheduled for execution. Keep track of
281/// whether any of the passes modifies the module, and if so, return true.
282bool CGPassManager::runOnModule(Module &M) {
283 CallGraph &CG = getAnalysis<CallGraph>();
Bill Wendling905c7e92009-02-11 18:19:24 +0000284 bool Changed = doInitialization(CG);
Devang Patel75f9abf2007-01-17 21:45:01 +0000285
Chris Lattner5095e3d2009-08-31 00:19:58 +0000286 std::vector<CallGraphNode*> CurSCC;
287
Chris Lattnerf3a1c152009-08-31 06:01:21 +0000288 // Walk the callgraph in bottom-up SCC order.
Chris Lattner5095e3d2009-08-31 00:19:58 +0000289 for (scc_iterator<CallGraph*> CGI = scc_begin(&CG), E = scc_end(&CG);
290 CGI != E;) {
291 // Copy the current SCC and increment past it so that the pass can hack
292 // on the SCC if it wants to without invalidating our iterator.
293 CurSCC = *CGI;
294 ++CGI;
295
Chris Lattnerf3a1c152009-08-31 06:01:21 +0000296
Chris Lattnerbe577652009-08-31 07:23:46 +0000297 // CallGraphUpToDate - Keep track of whether the callgraph is known to be
298 // up-to-date or not. The CGSSC pass manager runs two types of passes:
299 // CallGraphSCC Passes and other random function passes. Because other
300 // random function passes are not CallGraph aware, they may clobber the
301 // call graph by introducing new calls or deleting other ones. This flag
302 // is set to false when we run a function pass so that we know to clean up
303 // the callgraph when we need to run a CGSCCPass again.
304 bool CallGraphUpToDate = true;
305
Chris Lattnerf3a1c152009-08-31 06:01:21 +0000306 // Run all passes on current SCC.
307 for (unsigned PassNo = 0, e = getNumContainedPasses();
308 PassNo != e; ++PassNo) {
309 Pass *P = getContainedPass(PassNo);
Devang Patel75f9abf2007-01-17 21:45:01 +0000310
Devang Patel7f997612007-03-05 20:01:30 +0000311 dumpPassInfo(P, EXECUTION_MSG, ON_CG_MSG, "");
Chris Lattner0dabb7e2008-08-08 15:14:09 +0000312 dumpRequiredSet(P);
Devang Patel75f9abf2007-01-17 21:45:01 +0000313
314 initializeAnalysisImpl(P);
315
Chris Lattnerf3a1c152009-08-31 06:01:21 +0000316 // Actually run this pass on the current SCC.
Chris Lattnerbe577652009-08-31 07:23:46 +0000317 Changed |= RunPassOnSCC(P, CurSCC, CG, CallGraphUpToDate);
Devang Patel75f9abf2007-01-17 21:45:01 +0000318
319 if (Changed)
Devang Patel7f997612007-03-05 20:01:30 +0000320 dumpPassInfo(P, MODIFICATION_MSG, ON_CG_MSG, "");
Chris Lattner0dabb7e2008-08-08 15:14:09 +0000321 dumpPreservedSet(P);
Devang Patel58e0ef12007-07-19 18:02:32 +0000322
323 verifyPreservedAnalysis(P);
Devang Patel75f9abf2007-01-17 21:45:01 +0000324 removeNotPreservedAnalysis(P);
325 recordAvailableAnalysis(P);
Devang Patel7f997612007-03-05 20:01:30 +0000326 removeDeadPasses(P, "", ON_CG_MSG);
Devang Patel75f9abf2007-01-17 21:45:01 +0000327 }
Chris Lattnerbe577652009-08-31 07:23:46 +0000328
329 // If the callgraph was left out of date (because the last pass run was a
330 // functionpass), refresh it before we move on to the next SCC.
331 if (!CallGraphUpToDate)
Chris Lattner5a6a3632009-09-01 18:32:03 +0000332 RefreshCallGraph(CurSCC, CG, false);
Devang Patel75f9abf2007-01-17 21:45:01 +0000333 }
Bill Wendling905c7e92009-02-11 18:19:24 +0000334 Changed |= doFinalization(CG);
Devang Patel75f9abf2007-01-17 21:45:01 +0000335 return Changed;
336}
337
338/// Initialize CG
Bill Wendling905c7e92009-02-11 18:19:24 +0000339bool CGPassManager::doInitialization(CallGraph &CG) {
Devang Patel75f9abf2007-01-17 21:45:01 +0000340 bool Changed = false;
341 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
342 Pass *P = getContainedPass(Index);
Nick Lewycky8968a072009-02-13 07:15:53 +0000343 if (CallGraphSCCPass *CGSP = dynamic_cast<CallGraphSCCPass *>(P)) {
Devang Patel75f9abf2007-01-17 21:45:01 +0000344 Changed |= CGSP->doInitialization(CG);
Nick Lewycky8968a072009-02-13 07:15:53 +0000345 } else {
346 FPPassManager *FP = dynamic_cast<FPPassManager *>(P);
347 assert (FP && "Invalid CGPassManager member");
348 Changed |= FP->doInitialization(CG.getModule());
349 }
Devang Patel75f9abf2007-01-17 21:45:01 +0000350 }
351 return Changed;
352}
353
354/// Finalize CG
Bill Wendling905c7e92009-02-11 18:19:24 +0000355bool CGPassManager::doFinalization(CallGraph &CG) {
Devang Patel75f9abf2007-01-17 21:45:01 +0000356 bool Changed = false;
357 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
358 Pass *P = getContainedPass(Index);
Nick Lewycky8968a072009-02-13 07:15:53 +0000359 if (CallGraphSCCPass *CGSP = dynamic_cast<CallGraphSCCPass *>(P)) {
Devang Patel75f9abf2007-01-17 21:45:01 +0000360 Changed |= CGSP->doFinalization(CG);
Nick Lewycky8968a072009-02-13 07:15:53 +0000361 } else {
362 FPPassManager *FP = dynamic_cast<FPPassManager *>(P);
363 assert (FP && "Invalid CGPassManager member");
364 Changed |= FP->doFinalization(CG.getModule());
365 }
Devang Patel75f9abf2007-01-17 21:45:01 +0000366 }
367 return Changed;
368}
369
Devang Pateld9f10c32007-01-23 21:55:17 +0000370/// Assign pass manager to manage this pass.
Devang Patel97fd2432007-01-23 21:52:35 +0000371void CallGraphSCCPass::assignPassManager(PMStack &PMS,
Anton Korobeynikovbed29462007-04-16 18:10:23 +0000372 PassManagerType PreferredType) {
Devang Patel97fd2432007-01-23 21:52:35 +0000373 // Find CGPassManager
Duncan Sands20d824b2007-07-19 09:42:01 +0000374 while (!PMS.empty() &&
375 PMS.top()->getPassManagerType() > PMT_CallGraphPassManager)
376 PMS.pop();
Devang Patel97fd2432007-01-23 21:52:35 +0000377
Devang Patel201ebe32008-05-02 22:13:33 +0000378 assert (!PMS.empty() && "Unable to handle Call Graph Pass");
Devang Patel97fd2432007-01-23 21:52:35 +0000379 CGPassManager *CGP = dynamic_cast<CGPassManager *>(PMS.top());
380
381 // Create new Call Graph SCC Pass Manager if it does not exist.
382 if (!CGP) {
383
384 assert (!PMS.empty() && "Unable to create Call Graph Pass Manager");
385 PMDataManager *PMD = PMS.top();
386
387 // [1] Create new Call Graph Pass Manager
388 CGP = new CGPassManager(PMD->getDepth() + 1);
389
390 // [2] Set up new manager's top level manager
391 PMTopLevelManager *TPM = PMD->getTopLevelManager();
392 TPM->addIndirectPassManager(CGP);
393
394 // [3] Assign manager to manage this new manager. This may create
395 // and push new managers into PMS
396 Pass *P = dynamic_cast<Pass *>(CGP);
Devang Patel25e681a2007-06-21 22:29:02 +0000397 TPM->schedulePass(P);
Devang Patel97fd2432007-01-23 21:52:35 +0000398
399 // [4] Push new manager into PMS
400 PMS.push(CGP);
401 }
402
403 CGP->add(this);
404}
405
Chris Lattner4a810672003-08-31 01:54:59 +0000406/// getAnalysisUsage - For this class, we declare that we require and preserve
407/// the call graph. If the derived class implements this method, it should
408/// always explicitly call the implementation here.
409void CallGraphSCCPass::getAnalysisUsage(AnalysisUsage &AU) const {
410 AU.addRequired<CallGraph>();
411 AU.addPreserved<CallGraph>();
412}