blob: fb0804190ac160cb01dbd52b398d63e3236add18 [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"
Chris Lattnera782e752010-03-30 04:03:22 +000020#include "llvm/IntrinsicInst.h"
21#include "llvm/Function.h"
22#include "llvm/PassManagers.h"
Chris Lattner4a810672003-08-31 01:54:59 +000023#include "llvm/Analysis/CallGraph.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000024#include "llvm/ADT/SCCIterator.h"
Chris Lattnerbe577652009-08-31 07:23:46 +000025#include "llvm/Support/Debug.h"
Chris Lattnera782e752010-03-30 04:03:22 +000026#include "llvm/Support/Timer.h"
Chris Lattner45cfe542009-08-23 06:03:38 +000027#include "llvm/Support/raw_ostream.h"
Chris Lattnera10df502004-04-20 21:30:06 +000028using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000029
Devang Patel75f9abf2007-01-17 21:45:01 +000030//===----------------------------------------------------------------------===//
31// CGPassManager
32//
Dale Johannesendb2659b2009-09-10 22:01:32 +000033/// CGPassManager manages FPPassManagers and CallGraphSCCPasses.
Devang Patel75f9abf2007-01-17 21:45:01 +000034
Dan Gohman844731a2008-05-13 00:00:25 +000035namespace {
36
Devang Patel75f9abf2007-01-17 21:45:01 +000037class CGPassManager : public ModulePass, public PMDataManager {
Devang Patel75f9abf2007-01-17 21:45:01 +000038public:
Devang Patel19974732007-05-03 01:11:54 +000039 static char ID;
Dan Gohmanc2bbfc12007-08-01 15:32:29 +000040 explicit CGPassManager(int Depth)
Dan Gohmanae73dc12008-09-04 17:05:41 +000041 : ModulePass(&ID), PMDataManager(Depth) { }
Devang Patel75f9abf2007-01-17 21:45:01 +000042
43 /// run - Execute all of the passes scheduled for execution. Keep track of
44 /// whether any of the passes modifies the module, and if so, return true.
45 bool runOnModule(Module &M);
46
Bill Wendling905c7e92009-02-11 18:19:24 +000047 bool doInitialization(CallGraph &CG);
48 bool doFinalization(CallGraph &CG);
Devang Patel75f9abf2007-01-17 21:45:01 +000049
50 /// Pass Manager itself does not invalidate any analysis info.
51 void getAnalysisUsage(AnalysisUsage &Info) const {
52 // CGPassManager walks SCC and it needs CallGraph.
53 Info.addRequired<CallGraph>();
54 Info.setPreservesAll();
55 }
56
Devang Patel505f36a2007-02-01 22:09:37 +000057 virtual const char *getPassName() const {
58 return "CallGraph Pass Manager";
59 }
60
Chris Lattner3660eca2010-01-22 05:24:46 +000061 virtual PMDataManager *getAsPMDataManager() { return this; }
62 virtual Pass *getAsPass() { return this; }
63
Devang Patel75f9abf2007-01-17 21:45:01 +000064 // Print passes managed by this manager
65 void dumpPassStructure(unsigned Offset) {
David Greene2e48e532009-12-23 23:09:39 +000066 errs().indent(Offset*2) << "Call Graph SCC Pass Manager\n";
Devang Patel75f9abf2007-01-17 21:45:01 +000067 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
68 Pass *P = getContainedPass(Index);
69 P->dumpPassStructure(Offset + 1);
70 dumpLastUses(P, Offset+1);
71 }
72 }
73
74 Pass *getContainedPass(unsigned N) {
Chris Lattner45cfe542009-08-23 06:03:38 +000075 assert(N < PassVector.size() && "Pass number out of range!");
76 return static_cast<Pass *>(PassVector[N]);
Devang Patel75f9abf2007-01-17 21:45:01 +000077 }
78
Devang Patel84da80d2007-02-27 15:00:39 +000079 virtual PassManagerType getPassManagerType() const {
Devang Patel75f9abf2007-01-17 21:45:01 +000080 return PMT_CallGraphPassManager;
81 }
Chris Lattnerf3a1c152009-08-31 06:01:21 +000082
83private:
Chris Lattnerbe577652009-08-31 07:23:46 +000084 bool RunPassOnSCC(Pass *P, std::vector<CallGraphNode*> &CurSCC,
85 CallGraph &CG, bool &CallGraphUpToDate);
Chris Lattner5a6a3632009-09-01 18:32:03 +000086 void RefreshCallGraph(std::vector<CallGraphNode*> &CurSCC, CallGraph &CG,
87 bool IsCheckingMode);
Devang Patel75f9abf2007-01-17 21:45:01 +000088};
89
David Greene5c8aa952010-04-02 23:17:14 +000090/// PrintCallGraphPass - Print a Module corresponding to a call graph.
91///
92class PrintCallGraphPass : public CallGraphSCCPass {
93private:
94 std::string Banner;
95 raw_ostream &Out; // raw_ostream to print on.
96
97public:
98 static char ID;
99 PrintCallGraphPass() : CallGraphSCCPass(&ID), Out(dbgs()) {}
100 PrintCallGraphPass(const std::string &B, raw_ostream &o)
101 : CallGraphSCCPass(&ID), Banner(B), Out(o) {}
102
103 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
104 AU.setPreservesAll();
105 }
106
107 bool runOnSCC(std::vector<CallGraphNode *> &SCC) {
108 Out << Banner;
109 for (std::vector<CallGraphNode *>::iterator n = SCC.begin(), ne = SCC.end();
110 n != ne;
111 ++n) {
112 (*n)->getFunction()->print(Out);
113 }
114 return false;
115 }
116};
117
Chris Lattnerf3a1c152009-08-31 06:01:21 +0000118} // end anonymous namespace.
Dan Gohman844731a2008-05-13 00:00:25 +0000119
Devang Patel19974732007-05-03 01:11:54 +0000120char CGPassManager::ID = 0;
Chris Lattnerf3a1c152009-08-31 06:01:21 +0000121
David Greene5c8aa952010-04-02 23:17:14 +0000122char PrintCallGraphPass::ID = 0;
123
Chris Lattnerbe577652009-08-31 07:23:46 +0000124bool CGPassManager::RunPassOnSCC(Pass *P, std::vector<CallGraphNode*> &CurSCC,
125 CallGraph &CG, bool &CallGraphUpToDate) {
Chris Lattnerf3a1c152009-08-31 06:01:21 +0000126 bool Changed = false;
Chris Lattner5a66cb92010-01-22 05:46:59 +0000127 PMDataManager *PM = P->getAsPMDataManager();
128
129 if (PM == 0) {
130 CallGraphSCCPass *CGSP = (CallGraphSCCPass*)P;
Chris Lattnerbe577652009-08-31 07:23:46 +0000131 if (!CallGraphUpToDate) {
Chris Lattner5a6a3632009-09-01 18:32:03 +0000132 RefreshCallGraph(CurSCC, CG, false);
Chris Lattnerbe577652009-08-31 07:23:46 +0000133 CallGraphUpToDate = true;
134 }
Chris Lattner44a18372009-09-01 20:33:43 +0000135
Chris Lattnera782e752010-03-30 04:03:22 +0000136 {
137 TimeRegion PassTimer(getPassTimer(CGSP));
138 Changed = CGSP->runOnSCC(CurSCC);
139 }
Chris Lattner5a6a3632009-09-01 18:32:03 +0000140
141 // After the CGSCCPass is done, when assertions are enabled, use
142 // RefreshCallGraph to verify that the callgraph was correctly updated.
143#ifndef NDEBUG
144 if (Changed)
145 RefreshCallGraph(CurSCC, CG, true);
146#endif
147
Chris Lattnerf3a1c152009-08-31 06:01:21 +0000148 return Changed;
149 }
150
Chris Lattner5a66cb92010-01-22 05:46:59 +0000151
152 assert(PM->getPassManagerType() == PMT_FunctionPassManager &&
153 "Invalid CGPassManager member");
154 FPPassManager *FPP = (FPPassManager*)P;
Chris Lattnerf3a1c152009-08-31 06:01:21 +0000155
156 // Run pass P on all functions in the current SCC.
157 for (unsigned i = 0, e = CurSCC.size(); i != e; ++i) {
158 if (Function *F = CurSCC[i]->getFunction()) {
159 dumpPassInfo(P, EXECUTION_MSG, ON_FUNCTION_MSG, F->getName());
Chris Lattnera782e752010-03-30 04:03:22 +0000160 TimeRegion PassTimer(getPassTimer(FPP));
Chris Lattnerf3a1c152009-08-31 06:01:21 +0000161 Changed |= FPP->runOnFunction(*F);
162 }
163 }
Chris Lattnerf3a1c152009-08-31 06:01:21 +0000164
Chris Lattner2038cf32009-08-31 17:08:30 +0000165 // The function pass(es) modified the IR, they may have clobbered the
Chris Lattnerbe577652009-08-31 07:23:46 +0000166 // callgraph.
167 if (Changed && CallGraphUpToDate) {
David Greenec81ce582009-12-23 20:10:59 +0000168 DEBUG(dbgs() << "CGSCCPASSMGR: Pass Dirtied SCC: "
Chris Lattnerbe577652009-08-31 07:23:46 +0000169 << P->getPassName() << '\n');
170 CallGraphUpToDate = false;
171 }
Chris Lattnerf3a1c152009-08-31 06:01:21 +0000172 return Changed;
173}
174
Chris Lattner5a6a3632009-09-01 18:32:03 +0000175
176/// RefreshCallGraph - Scan the functions in the specified CFG and resync the
177/// callgraph with the call sites found in it. This is used after
178/// FunctionPasses have potentially munged the callgraph, and can be used after
179/// CallGraphSCC passes to verify that they correctly updated the callgraph.
180///
Chris Lattnerbe577652009-08-31 07:23:46 +0000181void CGPassManager::RefreshCallGraph(std::vector<CallGraphNode*> &CurSCC,
Chris Lattner5a6a3632009-09-01 18:32:03 +0000182 CallGraph &CG, bool CheckingMode) {
Chris Lattnera541b0f2009-09-01 06:31:31 +0000183 DenseMap<Value*, CallGraphNode*> CallSites;
Chris Lattnerbe577652009-08-31 07:23:46 +0000184
David Greenec81ce582009-12-23 20:10:59 +0000185 DEBUG(dbgs() << "CGSCCPASSMGR: Refreshing SCC with " << CurSCC.size()
Chris Lattnerbe577652009-08-31 07:23:46 +0000186 << " nodes:\n";
187 for (unsigned i = 0, e = CurSCC.size(); i != e; ++i)
188 CurSCC[i]->dump();
189 );
190
191 bool MadeChange = false;
Chris Lattnerbe577652009-08-31 07:23:46 +0000192
193 // Scan all functions in the SCC.
194 for (unsigned sccidx = 0, e = CurSCC.size(); sccidx != e; ++sccidx) {
195 CallGraphNode *CGN = CurSCC[sccidx];
196 Function *F = CGN->getFunction();
197 if (F == 0 || F->isDeclaration()) continue;
198
199 // Walk the function body looking for call sites. Sync up the call sites in
200 // CGN with those actually in the function.
Chris Lattner17146b82009-09-01 18:13:40 +0000201
Chris Lattnerbe577652009-08-31 07:23:46 +0000202 // Get the set of call sites currently in the function.
Duncan Sandsb3020d72009-09-02 03:48:41 +0000203 for (CallGraphNode::iterator I = CGN->begin(), E = CGN->end(); I != E; ) {
Chris Lattnera541b0f2009-09-01 06:31:31 +0000204 // If this call site is null, then the function pass deleted the call
Chris Lattner17146b82009-09-01 18:13:40 +0000205 // entirely and the WeakVH nulled it out.
Chris Lattnera541b0f2009-09-01 06:31:31 +0000206 if (I->first == 0 ||
207 // If we've already seen this call site, then the FunctionPass RAUW'd
208 // one call with another, which resulted in two "uses" in the edge
209 // list of the same call.
210 CallSites.count(I->first) ||
211
212 // If the call edge is not from a call or invoke, then the function
213 // pass RAUW'd a call with another value. This can happen when
214 // constant folding happens of well known functions etc.
215 CallSite::get(I->first).getInstruction() == 0) {
Chris Lattner5a6a3632009-09-01 18:32:03 +0000216 assert(!CheckingMode &&
217 "CallGraphSCCPass did not update the CallGraph correctly!");
218
Chris Lattnerd3bd0822009-09-02 04:39:04 +0000219 // Just remove the edge from the set of callees, keep track of whether
220 // I points to the last element of the vector.
221 bool WasLast = I + 1 == E;
Chris Lattnera541b0f2009-09-01 06:31:31 +0000222 CGN->removeCallEdge(I);
Chris Lattnerb8bcbd62009-09-02 04:34:06 +0000223
Chris Lattnerd3bd0822009-09-02 04:39:04 +0000224 // If I pointed to the last element of the vector, we have to bail out:
225 // iterator checking rejects comparisons of the resultant pointer with
226 // end.
227 if (WasLast)
228 break;
Chris Lattnera541b0f2009-09-01 06:31:31 +0000229 E = CGN->end();
Chris Lattnera541b0f2009-09-01 06:31:31 +0000230 continue;
231 }
Chris Lattner17146b82009-09-01 18:13:40 +0000232
Chris Lattnera541b0f2009-09-01 06:31:31 +0000233 assert(!CallSites.count(I->first) &&
Chris Lattnerbe577652009-08-31 07:23:46 +0000234 "Call site occurs in node multiple times");
Chris Lattnera541b0f2009-09-01 06:31:31 +0000235 CallSites.insert(std::make_pair(I->first, I->second));
Chris Lattner17146b82009-09-01 18:13:40 +0000236 ++I;
Chris Lattnerbe577652009-08-31 07:23:46 +0000237 }
Chris Lattner17146b82009-09-01 18:13:40 +0000238
Chris Lattnerbe577652009-08-31 07:23:46 +0000239 // Loop over all of the instructions in the function, getting the callsites.
240 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
241 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
242 CallSite CS = CallSite::get(I);
Chris Lattner8bff7c92009-09-01 21:37:50 +0000243 if (!CS.getInstruction() || isa<DbgInfoIntrinsic>(I)) continue;
Chris Lattnerbe577652009-08-31 07:23:46 +0000244
245 // If this call site already existed in the callgraph, just verify it
246 // matches up to expectations and remove it from CallSites.
Chris Lattnera541b0f2009-09-01 06:31:31 +0000247 DenseMap<Value*, CallGraphNode*>::iterator ExistingIt =
Chris Lattnerbe577652009-08-31 07:23:46 +0000248 CallSites.find(CS.getInstruction());
249 if (ExistingIt != CallSites.end()) {
250 CallGraphNode *ExistingNode = ExistingIt->second;
251
252 // Remove from CallSites since we have now seen it.
253 CallSites.erase(ExistingIt);
254
255 // Verify that the callee is right.
256 if (ExistingNode->getFunction() == CS.getCalledFunction())
257 continue;
258
Chris Lattner5a6a3632009-09-01 18:32:03 +0000259 // If we are in checking mode, we are not allowed to actually mutate
260 // the callgraph. If this is a case where we can infer that the
261 // callgraph is less precise than it could be (e.g. an indirect call
262 // site could be turned direct), don't reject it in checking mode, and
263 // don't tweak it to be more precise.
264 if (CheckingMode && CS.getCalledFunction() &&
265 ExistingNode->getFunction() == 0)
266 continue;
267
268 assert(!CheckingMode &&
269 "CallGraphSCCPass did not update the CallGraph correctly!");
270
Chris Lattnerbe577652009-08-31 07:23:46 +0000271 // If not, we either went from a direct call to indirect, indirect to
272 // direct, or direct to different direct.
273 CallGraphNode *CalleeNode;
274 if (Function *Callee = CS.getCalledFunction())
275 CalleeNode = CG.getOrInsertFunction(Callee);
276 else
277 CalleeNode = CG.getCallsExternalNode();
Chris Lattner44a18372009-09-01 20:33:43 +0000278
279 // Update the edge target in CGN.
280 for (CallGraphNode::iterator I = CGN->begin(); ; ++I) {
281 assert(I != CGN->end() && "Didn't find call entry");
282 if (I->first == CS.getInstruction()) {
283 I->second = CalleeNode;
284 break;
285 }
286 }
Chris Lattnerbe577652009-08-31 07:23:46 +0000287 MadeChange = true;
288 continue;
289 }
290
Chris Lattner5a6a3632009-09-01 18:32:03 +0000291 assert(!CheckingMode &&
292 "CallGraphSCCPass did not update the CallGraph correctly!");
293
Chris Lattnerbe577652009-08-31 07:23:46 +0000294 // If the call site didn't exist in the CGN yet, add it. We assume that
295 // newly introduced call sites won't be indirect. This could be fixed
296 // in the future.
297 CallGraphNode *CalleeNode;
298 if (Function *Callee = CS.getCalledFunction())
299 CalleeNode = CG.getOrInsertFunction(Callee);
300 else
301 CalleeNode = CG.getCallsExternalNode();
302
303 CGN->addCalledFunction(CS, CalleeNode);
304 MadeChange = true;
305 }
306
307 // After scanning this function, if we still have entries in callsites, then
Chris Lattnera541b0f2009-09-01 06:31:31 +0000308 // they are dangling pointers. WeakVH should save us for this, so abort if
309 // this happens.
310 assert(CallSites.empty() && "Dangling pointers found in call sites map");
Chris Lattnerbe577652009-08-31 07:23:46 +0000311
Chris Lattnera541b0f2009-09-01 06:31:31 +0000312 // Periodically do an explicit clear to remove tombstones when processing
313 // large scc's.
314 if ((sccidx & 15) == 0)
315 CallSites.clear();
Chris Lattnerbe577652009-08-31 07:23:46 +0000316 }
317
318 DEBUG(if (MadeChange) {
David Greenec81ce582009-12-23 20:10:59 +0000319 dbgs() << "CGSCCPASSMGR: Refreshed SCC is now:\n";
Chris Lattnerbe577652009-08-31 07:23:46 +0000320 for (unsigned i = 0, e = CurSCC.size(); i != e; ++i)
321 CurSCC[i]->dump();
322 } else {
David Greenec81ce582009-12-23 20:10:59 +0000323 dbgs() << "CGSCCPASSMGR: SCC Refresh didn't change call graph.\n";
Chris Lattnerbe577652009-08-31 07:23:46 +0000324 }
325 );
326}
Chris Lattnerf3a1c152009-08-31 06:01:21 +0000327
Devang Patel75f9abf2007-01-17 21:45:01 +0000328/// run - Execute all of the passes scheduled for execution. Keep track of
329/// whether any of the passes modifies the module, and if so, return true.
330bool CGPassManager::runOnModule(Module &M) {
331 CallGraph &CG = getAnalysis<CallGraph>();
Bill Wendling905c7e92009-02-11 18:19:24 +0000332 bool Changed = doInitialization(CG);
Devang Patel75f9abf2007-01-17 21:45:01 +0000333
Chris Lattner5095e3d2009-08-31 00:19:58 +0000334 std::vector<CallGraphNode*> CurSCC;
335
Chris Lattnerf3a1c152009-08-31 06:01:21 +0000336 // Walk the callgraph in bottom-up SCC order.
Chris Lattner5095e3d2009-08-31 00:19:58 +0000337 for (scc_iterator<CallGraph*> CGI = scc_begin(&CG), E = scc_end(&CG);
338 CGI != E;) {
339 // Copy the current SCC and increment past it so that the pass can hack
340 // on the SCC if it wants to without invalidating our iterator.
341 CurSCC = *CGI;
342 ++CGI;
343
Chris Lattnerf3a1c152009-08-31 06:01:21 +0000344
Chris Lattnerbe577652009-08-31 07:23:46 +0000345 // CallGraphUpToDate - Keep track of whether the callgraph is known to be
346 // up-to-date or not. The CGSSC pass manager runs two types of passes:
347 // CallGraphSCC Passes and other random function passes. Because other
348 // random function passes are not CallGraph aware, they may clobber the
349 // call graph by introducing new calls or deleting other ones. This flag
350 // is set to false when we run a function pass so that we know to clean up
351 // the callgraph when we need to run a CGSCCPass again.
352 bool CallGraphUpToDate = true;
353
Chris Lattnerf3a1c152009-08-31 06:01:21 +0000354 // Run all passes on current SCC.
355 for (unsigned PassNo = 0, e = getNumContainedPasses();
356 PassNo != e; ++PassNo) {
357 Pass *P = getContainedPass(PassNo);
Devang Patel75f9abf2007-01-17 21:45:01 +0000358
Chris Lattner9554c612009-09-15 05:03:04 +0000359 // If we're in -debug-pass=Executions mode, construct the SCC node list,
360 // otherwise avoid constructing this string as it is expensive.
361 if (isPassDebuggingExecutionsOrMore()) {
362 std::string Functions;
363#ifndef NDEBUG
364 raw_string_ostream OS(Functions);
365 for (unsigned i = 0, e = CurSCC.size(); i != e; ++i) {
366 if (i) OS << ", ";
367 CurSCC[i]->print(OS);
368 }
369 OS.flush();
370#endif
371 dumpPassInfo(P, EXECUTION_MSG, ON_CG_MSG, Functions);
372 }
Chris Lattner0dabb7e2008-08-08 15:14:09 +0000373 dumpRequiredSet(P);
Devang Patel75f9abf2007-01-17 21:45:01 +0000374
375 initializeAnalysisImpl(P);
376
Chris Lattnerf3a1c152009-08-31 06:01:21 +0000377 // Actually run this pass on the current SCC.
Chris Lattnerbe577652009-08-31 07:23:46 +0000378 Changed |= RunPassOnSCC(P, CurSCC, CG, CallGraphUpToDate);
Devang Patel75f9abf2007-01-17 21:45:01 +0000379
380 if (Changed)
Devang Patel7f997612007-03-05 20:01:30 +0000381 dumpPassInfo(P, MODIFICATION_MSG, ON_CG_MSG, "");
Chris Lattner0dabb7e2008-08-08 15:14:09 +0000382 dumpPreservedSet(P);
Devang Patel58e0ef12007-07-19 18:02:32 +0000383
384 verifyPreservedAnalysis(P);
Devang Patel75f9abf2007-01-17 21:45:01 +0000385 removeNotPreservedAnalysis(P);
386 recordAvailableAnalysis(P);
Devang Patel7f997612007-03-05 20:01:30 +0000387 removeDeadPasses(P, "", ON_CG_MSG);
Devang Patel75f9abf2007-01-17 21:45:01 +0000388 }
Chris Lattnerbe577652009-08-31 07:23:46 +0000389
390 // If the callgraph was left out of date (because the last pass run was a
391 // functionpass), refresh it before we move on to the next SCC.
392 if (!CallGraphUpToDate)
Chris Lattner5a6a3632009-09-01 18:32:03 +0000393 RefreshCallGraph(CurSCC, CG, false);
Devang Patel75f9abf2007-01-17 21:45:01 +0000394 }
Bill Wendling905c7e92009-02-11 18:19:24 +0000395 Changed |= doFinalization(CG);
Devang Patel75f9abf2007-01-17 21:45:01 +0000396 return Changed;
397}
398
399/// Initialize CG
Bill Wendling905c7e92009-02-11 18:19:24 +0000400bool CGPassManager::doInitialization(CallGraph &CG) {
Devang Patel75f9abf2007-01-17 21:45:01 +0000401 bool Changed = false;
Chris Lattner5a66cb92010-01-22 05:46:59 +0000402 for (unsigned i = 0, e = getNumContainedPasses(); i != e; ++i) {
403 if (PMDataManager *PM = getContainedPass(i)->getAsPMDataManager()) {
404 assert(PM->getPassManagerType() == PMT_FunctionPassManager &&
405 "Invalid CGPassManager member");
406 Changed |= ((FPPassManager*)PM)->doInitialization(CG.getModule());
Nick Lewycky8968a072009-02-13 07:15:53 +0000407 } else {
Chris Lattner5a66cb92010-01-22 05:46:59 +0000408 Changed |= ((CallGraphSCCPass*)getContainedPass(i))->doInitialization(CG);
Nick Lewycky8968a072009-02-13 07:15:53 +0000409 }
Devang Patel75f9abf2007-01-17 21:45:01 +0000410 }
411 return Changed;
412}
413
414/// Finalize CG
Bill Wendling905c7e92009-02-11 18:19:24 +0000415bool CGPassManager::doFinalization(CallGraph &CG) {
Devang Patel75f9abf2007-01-17 21:45:01 +0000416 bool Changed = false;
Chris Lattner5a66cb92010-01-22 05:46:59 +0000417 for (unsigned i = 0, e = getNumContainedPasses(); i != e; ++i) {
418 if (PMDataManager *PM = getContainedPass(i)->getAsPMDataManager()) {
419 assert(PM->getPassManagerType() == PMT_FunctionPassManager &&
420 "Invalid CGPassManager member");
421 Changed |= ((FPPassManager*)PM)->doFinalization(CG.getModule());
Nick Lewycky8968a072009-02-13 07:15:53 +0000422 } else {
Chris Lattner5a66cb92010-01-22 05:46:59 +0000423 Changed |= ((CallGraphSCCPass*)getContainedPass(i))->doFinalization(CG);
Nick Lewycky8968a072009-02-13 07:15:53 +0000424 }
Devang Patel75f9abf2007-01-17 21:45:01 +0000425 }
426 return Changed;
427}
428
David Greene5c8aa952010-04-02 23:17:14 +0000429Pass *CallGraphSCCPass::createPrinterPass(raw_ostream &O,
430 const std::string &Banner) const {
431 return new PrintCallGraphPass(Banner, O);
432}
433
Devang Pateld9f10c32007-01-23 21:55:17 +0000434/// Assign pass manager to manage this pass.
Devang Patel97fd2432007-01-23 21:52:35 +0000435void CallGraphSCCPass::assignPassManager(PMStack &PMS,
Anton Korobeynikovbed29462007-04-16 18:10:23 +0000436 PassManagerType PreferredType) {
Devang Patel97fd2432007-01-23 21:52:35 +0000437 // Find CGPassManager
Duncan Sands20d824b2007-07-19 09:42:01 +0000438 while (!PMS.empty() &&
439 PMS.top()->getPassManagerType() > PMT_CallGraphPassManager)
440 PMS.pop();
Devang Patel97fd2432007-01-23 21:52:35 +0000441
Chris Lattner77c95ed2010-01-22 05:37:10 +0000442 assert(!PMS.empty() && "Unable to handle Call Graph Pass");
443 CGPassManager *CGP;
444
445 if (PMS.top()->getPassManagerType() == PMT_CallGraphPassManager)
446 CGP = (CGPassManager*)PMS.top();
447 else {
448 // Create new Call Graph SCC Pass Manager if it does not exist.
449 assert(!PMS.empty() && "Unable to create Call Graph Pass Manager");
Devang Patel97fd2432007-01-23 21:52:35 +0000450 PMDataManager *PMD = PMS.top();
451
452 // [1] Create new Call Graph Pass Manager
453 CGP = new CGPassManager(PMD->getDepth() + 1);
454
455 // [2] Set up new manager's top level manager
456 PMTopLevelManager *TPM = PMD->getTopLevelManager();
457 TPM->addIndirectPassManager(CGP);
458
459 // [3] Assign manager to manage this new manager. This may create
460 // and push new managers into PMS
Chris Lattner77c95ed2010-01-22 05:37:10 +0000461 Pass *P = CGP;
Devang Patel25e681a2007-06-21 22:29:02 +0000462 TPM->schedulePass(P);
Devang Patel97fd2432007-01-23 21:52:35 +0000463
464 // [4] Push new manager into PMS
465 PMS.push(CGP);
466 }
467
468 CGP->add(this);
469}
470
Chris Lattner4a810672003-08-31 01:54:59 +0000471/// getAnalysisUsage - For this class, we declare that we require and preserve
472/// the call graph. If the derived class implements this method, it should
473/// always explicitly call the implementation here.
474void CallGraphSCCPass::getAnalysisUsage(AnalysisUsage &AU) const {
475 AU.addRequired<CallGraph>();
476 AU.addPreserved<CallGraph>();
477}