blob: bca529731911227ffe2a87611d37487e3ca742fb [file] [log] [blame]
Devang Patel6e5a1132006-11-07 21:31:57 +00001//===- PassManager.cpp - LLVM Pass Infrastructure Implementation ----------===//
2//
3// The LLVM Compiler Infrastructure
4//
Devang Patelca58e352006-11-08 10:05:38 +00005// This file was developed by Devang Patel and is distributed under
Devang Patel6e5a1132006-11-07 21:31:57 +00006// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the LLVM Pass Manager infrastructure.
11//
12//===----------------------------------------------------------------------===//
13
14
Devang Patele7599552007-01-12 18:52:44 +000015#include "llvm/PassManagers.h"
Devang Patelf1567a52006-12-13 20:03:48 +000016#include "llvm/Support/CommandLine.h"
Devang Patel1c3633e2007-01-29 23:10:37 +000017#include "llvm/Support/Timer.h"
Devang Patel6e5a1132006-11-07 21:31:57 +000018#include "llvm/Module.h"
Devang Patelff631ae2006-11-15 01:27:05 +000019#include "llvm/ModuleProvider.h"
Bill Wendlingdfc91892006-11-28 02:09:03 +000020#include "llvm/Support/Streams.h"
Devang Patelb8817b92006-12-14 00:59:42 +000021#include "llvm/Support/ManagedStatic.h"
Jeff Cohenb622c112007-03-05 00:00:42 +000022#include <algorithm>
Devang Patela9844592006-11-11 01:31:05 +000023#include <vector>
Devang Patelf60b5d92006-11-14 01:59:59 +000024#include <map>
Devang Patelffca9102006-12-15 19:39:30 +000025
Devang Patele7599552007-01-12 18:52:44 +000026// See PassManagers.h for Pass Manager infrastructure overview.
Devang Patel6fea2852006-12-07 18:23:30 +000027
Devang Patelf1567a52006-12-13 20:03:48 +000028namespace llvm {
29
30//===----------------------------------------------------------------------===//
31// Pass debugging information. Often it is useful to find out what pass is
32// running when a crash occurs in a utility. When this library is compiled with
33// debugging on, a command line option (--debug-pass) is enabled that causes the
34// pass name to be printed before it executes.
35//
36
Devang Patel03fb5872006-12-13 21:13:31 +000037// Different debug levels that can be enabled...
38enum PassDebugLevel {
39 None, Arguments, Structure, Executions, Details
40};
41
Devang Patelf1567a52006-12-13 20:03:48 +000042static cl::opt<enum PassDebugLevel>
Devang Patelfd4184322007-01-17 20:33:36 +000043PassDebugging("debug-pass", cl::Hidden,
Devang Patelf1567a52006-12-13 20:03:48 +000044 cl::desc("Print PassManager debugging information"),
45 cl::values(
Devang Patel03fb5872006-12-13 21:13:31 +000046 clEnumVal(None , "disable debug output"),
47 clEnumVal(Arguments , "print pass arguments to pass to 'opt'"),
48 clEnumVal(Structure , "print pass structure before run()"),
49 clEnumVal(Executions, "print pass name before it is executed"),
50 clEnumVal(Details , "print pass details when it is executed"),
Devang Patelf1567a52006-12-13 20:03:48 +000051 clEnumValEnd));
52} // End of llvm namespace
53
Devang Patelffca9102006-12-15 19:39:30 +000054namespace {
Devang Patelafb1f3622006-12-12 22:35:25 +000055
Devang Patelf33f3eb2006-12-07 19:21:29 +000056//===----------------------------------------------------------------------===//
Devang Patel67d6a5e2006-12-19 19:46:59 +000057// BBPassManager
Devang Patel10c2ca62006-12-12 22:47:13 +000058//
Devang Patel67d6a5e2006-12-19 19:46:59 +000059/// BBPassManager manages BasicBlockPass. It batches all the
Devang Patelca58e352006-11-08 10:05:38 +000060/// pass together and sequence them to process one basic block before
61/// processing next basic block.
Devang Patel67d6a5e2006-12-19 19:46:59 +000062class VISIBILITY_HIDDEN BBPassManager : public PMDataManager,
63 public FunctionPass {
Devang Patelca58e352006-11-08 10:05:38 +000064
65public:
Devang Patel67d6a5e2006-12-19 19:46:59 +000066 BBPassManager(int Depth) : PMDataManager(Depth) { }
Devang Patelca58e352006-11-08 10:05:38 +000067
Devang Patelca58e352006-11-08 10:05:38 +000068 /// Execute all of the passes scheduled for execution. Keep track of
69 /// whether any of the passes modifies the function, and if so, return true.
70 bool runOnFunction(Function &F);
71
Devang Patelf9d96b92006-12-07 19:57:52 +000072 /// Pass Manager itself does not invalidate any analysis info.
73 void getAnalysisUsage(AnalysisUsage &Info) const {
74 Info.setPreservesAll();
75 }
76
Devang Patel475c4532006-12-08 00:59:05 +000077 bool doInitialization(Module &M);
78 bool doInitialization(Function &F);
79 bool doFinalization(Module &M);
80 bool doFinalization(Function &F);
81
Devang Patele3858e62007-02-01 22:08:25 +000082 virtual const char *getPassName() const {
83 return "BasicBlock Pass Manager";
84 }
85
Devang Pateleda56172006-12-12 23:34:33 +000086 // Print passes managed by this manager
87 void dumpPassStructure(unsigned Offset) {
Devang Patelffca9102006-12-15 19:39:30 +000088 llvm::cerr << std::string(Offset*2, ' ') << "BasicBlockPass Manager\n";
Devang Patelabfbe3b2006-12-16 00:56:26 +000089 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
90 BasicBlockPass *BP = getContainedPass(Index);
91 BP->dumpPassStructure(Offset + 1);
92 dumpLastUses(BP, Offset+1);
Devang Pateleda56172006-12-12 23:34:33 +000093 }
94 }
Devang Patelabfbe3b2006-12-16 00:56:26 +000095
96 BasicBlockPass *getContainedPass(unsigned N) {
97 assert ( N < PassVector.size() && "Pass number out of range!");
98 BasicBlockPass *BP = static_cast<BasicBlockPass *>(PassVector[N]);
99 return BP;
100 }
Devang Patel3b3f8992007-01-11 01:10:25 +0000101
Devang Patel28349ab2007-02-27 15:00:39 +0000102 virtual PassManagerType getPassManagerType() const {
Devang Patel3b3f8992007-01-11 01:10:25 +0000103 return PMT_BasicBlockPassManager;
104 }
Devang Patelca58e352006-11-08 10:05:38 +0000105};
106
Devang Patele7599552007-01-12 18:52:44 +0000107}
Devang Patel67d6a5e2006-12-19 19:46:59 +0000108
Devang Patele7599552007-01-12 18:52:44 +0000109namespace llvm {
Devang Patelca58e352006-11-08 10:05:38 +0000110
Devang Patel10c2ca62006-12-12 22:47:13 +0000111//===----------------------------------------------------------------------===//
Devang Patel67d6a5e2006-12-19 19:46:59 +0000112// FunctionPassManagerImpl
Devang Patel10c2ca62006-12-12 22:47:13 +0000113//
Devang Patel67d6a5e2006-12-19 19:46:59 +0000114/// FunctionPassManagerImpl manages FPPassManagers
115class FunctionPassManagerImpl : public Pass,
Devang Patelad98d232007-01-11 22:15:30 +0000116 public PMDataManager,
117 public PMTopLevelManager {
Devang Patel67d6a5e2006-12-19 19:46:59 +0000118public:
119
Devang Patel4268fc02007-01-16 02:00:38 +0000120 FunctionPassManagerImpl(int Depth) : PMDataManager(Depth),
121 PMTopLevelManager(TLM_Function) { }
Devang Patel67d6a5e2006-12-19 19:46:59 +0000122
123 /// add - Add a pass to the queue of passes to run. This passes ownership of
124 /// the Pass to the PassManager. When the PassManager is destroyed, the pass
125 /// will be destroyed as well, so there is no need to delete the pass. This
126 /// implies that all passes MUST be allocated with 'new'.
127 void add(Pass *P) {
128 schedulePass(P);
129 }
130
131 /// run - Execute all of the passes scheduled for execution. Keep track of
132 /// whether any of the passes modifies the module, and if so, return true.
133 bool run(Function &F);
134
135 /// doInitialization - Run all of the initializers for the function passes.
136 ///
137 bool doInitialization(Module &M);
138
139 /// doFinalization - Run all of the initializers for the function passes.
140 ///
141 bool doFinalization(Module &M);
142
143 /// Pass Manager itself does not invalidate any analysis info.
144 void getAnalysisUsage(AnalysisUsage &Info) const {
145 Info.setPreservesAll();
146 }
147
148 inline void addTopLevelPass(Pass *P) {
149
150 if (ImmutablePass *IP = dynamic_cast<ImmutablePass *> (P)) {
151
152 // P is a immutable pass and it will be managed by this
153 // top level manager. Set up analysis resolver to connect them.
Devang Patelb66334b2007-01-05 22:47:07 +0000154 AnalysisResolver *AR = new AnalysisResolver(*this);
Devang Patel67d6a5e2006-12-19 19:46:59 +0000155 P->setResolver(AR);
156 initializeAnalysisImpl(P);
157 addImmutablePass(IP);
158 recordAvailableAnalysis(IP);
Devang Patel0f080042007-01-12 17:23:48 +0000159 } else {
Devang Patel0f080042007-01-12 17:23:48 +0000160 P->assignPassManager(activeStack);
Devang Patel4d06ace2007-02-07 19:37:53 +0000161 activeStack.handleLastUserOverflow();
Devang Patel67d6a5e2006-12-19 19:46:59 +0000162 }
Devang Patel0f080042007-01-12 17:23:48 +0000163
Devang Patel67d6a5e2006-12-19 19:46:59 +0000164 }
165
166 FPPassManager *getContainedManager(unsigned N) {
167 assert ( N < PassManagers.size() && "Pass number out of range!");
168 FPPassManager *FP = static_cast<FPPassManager *>(PassManagers[N]);
169 return FP;
170 }
171
Devang Patel67d6a5e2006-12-19 19:46:59 +0000172};
173
174//===----------------------------------------------------------------------===//
175// MPPassManager
176//
177/// MPPassManager manages ModulePasses and function pass managers.
Devang Patelca58e352006-11-08 10:05:38 +0000178/// It batches all Module passes passes and function pass managers together and
179/// sequence them to process one module.
Devang Patel67d6a5e2006-12-19 19:46:59 +0000180class MPPassManager : public Pass, public PMDataManager {
Devang Patelca58e352006-11-08 10:05:38 +0000181
182public:
Devang Patel0f080042007-01-12 17:23:48 +0000183 MPPassManager(int Depth) : PMDataManager(Depth) { }
Devang Patelca58e352006-11-08 10:05:38 +0000184
185 /// run - Execute all of the passes scheduled for execution. Keep track of
186 /// whether any of the passes modifies the module, and if so, return true.
187 bool runOnModule(Module &M);
Devang Patelebba9702006-11-13 22:40:09 +0000188
Devang Patelf9d96b92006-12-07 19:57:52 +0000189 /// Pass Manager itself does not invalidate any analysis info.
190 void getAnalysisUsage(AnalysisUsage &Info) const {
191 Info.setPreservesAll();
192 }
193
Devang Patele3858e62007-02-01 22:08:25 +0000194 virtual const char *getPassName() const {
195 return "Module Pass Manager";
196 }
197
Devang Pateleda56172006-12-12 23:34:33 +0000198 // Print passes managed by this manager
199 void dumpPassStructure(unsigned Offset) {
200 llvm::cerr << std::string(Offset*2, ' ') << "ModulePass Manager\n";
Devang Patelabfbe3b2006-12-16 00:56:26 +0000201 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
202 ModulePass *MP = getContainedPass(Index);
203 MP->dumpPassStructure(Offset + 1);
204 dumpLastUses(MP, Offset+1);
Devang Pateleda56172006-12-12 23:34:33 +0000205 }
206 }
207
Devang Patelabfbe3b2006-12-16 00:56:26 +0000208 ModulePass *getContainedPass(unsigned N) {
209 assert ( N < PassVector.size() && "Pass number out of range!");
210 ModulePass *MP = static_cast<ModulePass *>(PassVector[N]);
211 return MP;
212 }
213
Devang Patel28349ab2007-02-27 15:00:39 +0000214 virtual PassManagerType getPassManagerType() const {
215 return PMT_ModulePassManager;
216 }
Devang Patelca58e352006-11-08 10:05:38 +0000217};
218
Devang Patel10c2ca62006-12-12 22:47:13 +0000219//===----------------------------------------------------------------------===//
Devang Patel67d6a5e2006-12-19 19:46:59 +0000220// PassManagerImpl
Devang Patel10c2ca62006-12-12 22:47:13 +0000221//
Devang Patel67d6a5e2006-12-19 19:46:59 +0000222/// PassManagerImpl manages MPPassManagers
223class PassManagerImpl : public Pass,
Devang Patelad98d232007-01-11 22:15:30 +0000224 public PMDataManager,
225 public PMTopLevelManager {
Devang Patel376fefa2006-11-08 10:29:57 +0000226
227public:
228
Devang Patel4268fc02007-01-16 02:00:38 +0000229 PassManagerImpl(int Depth) : PMDataManager(Depth),
230 PMTopLevelManager(TLM_Pass) { }
Devang Patel4c36e6b2006-12-07 23:24:58 +0000231
Devang Patel376fefa2006-11-08 10:29:57 +0000232 /// add - Add a pass to the queue of passes to run. This passes ownership of
233 /// the Pass to the PassManager. When the PassManager is destroyed, the pass
234 /// will be destroyed as well, so there is no need to delete the pass. This
235 /// implies that all passes MUST be allocated with 'new'.
Devang Patel31217af2006-12-07 21:32:57 +0000236 void add(Pass *P) {
Devang Pateldf6c9ae2006-12-08 22:34:02 +0000237 schedulePass(P);
Devang Patel31217af2006-12-07 21:32:57 +0000238 }
Devang Patel376fefa2006-11-08 10:29:57 +0000239
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 run(Module &M);
243
Devang Patelf9d96b92006-12-07 19:57:52 +0000244 /// Pass Manager itself does not invalidate any analysis info.
245 void getAnalysisUsage(AnalysisUsage &Info) const {
246 Info.setPreservesAll();
247 }
248
Devang Patelabcd1d32006-12-07 21:27:23 +0000249 inline void addTopLevelPass(Pass *P) {
Devang Pateld440cd92006-12-08 23:53:00 +0000250
Devang Patelfa971cd2006-12-08 23:57:43 +0000251 if (ImmutablePass *IP = dynamic_cast<ImmutablePass *> (P)) {
Devang Pateld440cd92006-12-08 23:53:00 +0000252
253 // P is a immutable pass and it will be managed by this
254 // top level manager. Set up analysis resolver to connect them.
Devang Patelb66334b2007-01-05 22:47:07 +0000255 AnalysisResolver *AR = new AnalysisResolver(*this);
Devang Pateld440cd92006-12-08 23:53:00 +0000256 P->setResolver(AR);
Devang Patel95257542006-12-12 22:21:37 +0000257 initializeAnalysisImpl(P);
Devang Patelfa971cd2006-12-08 23:57:43 +0000258 addImmutablePass(IP);
Devang Patel95257542006-12-12 22:21:37 +0000259 recordAvailableAnalysis(IP);
Devang Patel0f080042007-01-12 17:23:48 +0000260 } else {
Devang Patel0f080042007-01-12 17:23:48 +0000261 P->assignPassManager(activeStack);
Devang Patel4d06ace2007-02-07 19:37:53 +0000262 activeStack.handleLastUserOverflow();
Devang Pateld440cd92006-12-08 23:53:00 +0000263 }
Devang Patel0f080042007-01-12 17:23:48 +0000264
Devang Patelabcd1d32006-12-07 21:27:23 +0000265 }
266
Devang Patel67d6a5e2006-12-19 19:46:59 +0000267 MPPassManager *getContainedManager(unsigned N) {
268 assert ( N < PassManagers.size() && "Pass number out of range!");
269 MPPassManager *MP = static_cast<MPPassManager *>(PassManagers[N]);
270 return MP;
271 }
272
Devang Patel376fefa2006-11-08 10:29:57 +0000273};
274
Devang Patel1c3633e2007-01-29 23:10:37 +0000275} // End of llvm namespace
276
277namespace {
278
279//===----------------------------------------------------------------------===//
280// TimingInfo Class - This class is used to calculate information about the
281// amount of time each pass takes to execute. This only happens when
282// -time-passes is enabled on the command line.
283//
284
285class VISIBILITY_HIDDEN TimingInfo {
286 std::map<Pass*, Timer> TimingData;
287 TimerGroup TG;
288
289public:
290 // Use 'create' member to get this.
291 TimingInfo() : TG("... Pass execution timing report ...") {}
292
293 // TimingDtor - Print out information about timing information
294 ~TimingInfo() {
295 // Delete all of the timers...
296 TimingData.clear();
297 // TimerGroup is deleted next, printing the report.
298 }
299
300 // createTheTimeInfo - This method either initializes the TheTimeInfo pointer
301 // to a non null value (if the -time-passes option is enabled) or it leaves it
302 // null. It may be called multiple times.
303 static void createTheTimeInfo();
304
305 void passStarted(Pass *P) {
306
307 if (dynamic_cast<PMDataManager *>(P))
308 return;
309
310 std::map<Pass*, Timer>::iterator I = TimingData.find(P);
311 if (I == TimingData.end())
312 I=TimingData.insert(std::make_pair(P, Timer(P->getPassName(), TG))).first;
313 I->second.startTimer();
314 }
315 void passEnded(Pass *P) {
316
317 if (dynamic_cast<PMDataManager *>(P))
318 return;
319
320 std::map<Pass*, Timer>::iterator I = TimingData.find(P);
321 assert (I != TimingData.end() && "passStarted/passEnded not nested right!");
322 I->second.stopTimer();
323 }
324};
325
Devang Patelb8817b92006-12-14 00:59:42 +0000326static TimingInfo *TheTimeInfo;
327
Devang Patel1c3633e2007-01-29 23:10:37 +0000328} // End of anon namespace
Devang Patelca58e352006-11-08 10:05:38 +0000329
Devang Patela1514cb2006-12-07 19:39:39 +0000330//===----------------------------------------------------------------------===//
Devang Patelafb1f3622006-12-12 22:35:25 +0000331// PMTopLevelManager implementation
332
Devang Patel4268fc02007-01-16 02:00:38 +0000333/// Initialize top level manager. Create first pass manager.
334PMTopLevelManager::PMTopLevelManager (enum TopLevelManagerType t) {
335
336 if (t == TLM_Pass) {
337 MPPassManager *MPP = new MPPassManager(1);
338 MPP->setTopLevelManager(this);
339 addPassManager(MPP);
340 activeStack.push(MPP);
341 }
342 else if (t == TLM_Function) {
343 FPPassManager *FPP = new FPPassManager(1);
344 FPP->setTopLevelManager(this);
345 addPassManager(FPP);
346 activeStack.push(FPP);
347 }
348}
349
Devang Patelafb1f3622006-12-12 22:35:25 +0000350/// Set pass P as the last user of the given analysis passes.
351void PMTopLevelManager::setLastUser(std::vector<Pass *> &AnalysisPasses,
352 Pass *P) {
353
354 for (std::vector<Pass *>::iterator I = AnalysisPasses.begin(),
355 E = AnalysisPasses.end(); I != E; ++I) {
356 Pass *AP = *I;
357 LastUser[AP] = P;
358 // If AP is the last user of other passes then make P last user of
359 // such passes.
360 for (std::map<Pass *, Pass *>::iterator LUI = LastUser.begin(),
361 LUE = LastUser.end(); LUI != LUE; ++LUI) {
362 if (LUI->second == AP)
363 LastUser[LUI->first] = P;
364 }
365 }
Devang Patelafb1f3622006-12-12 22:35:25 +0000366}
367
368/// Collect passes whose last user is P
369void PMTopLevelManager::collectLastUses(std::vector<Pass *> &LastUses,
370 Pass *P) {
Chris Lattner9df8be42007-02-17 23:14:24 +0000371 for (std::map<Pass *, Pass *>::iterator LUI = LastUser.begin(),
372 LUE = LastUser.end(); LUI != LUE; ++LUI)
373 if (LUI->second == P)
374 LastUses.push_back(LUI->first);
Devang Patelafb1f3622006-12-12 22:35:25 +0000375}
376
377/// Schedule pass P for execution. Make sure that passes required by
378/// P are run before P is run. Update analysis info maintained by
379/// the manager. Remove dead passes. This is a recursive function.
380void PMTopLevelManager::schedulePass(Pass *P) {
381
Devang Patel3312f752007-01-16 21:43:18 +0000382 // TODO : Allocate function manager for this pass, other wise required set
383 // may be inserted into previous function manager
Devang Patelafb1f3622006-12-12 22:35:25 +0000384
Devang Patel3f806962007-02-05 19:34:17 +0000385 // If this Analysis is already requested by one of the previous pass
386 // and it is still available then do not insert new pass in the queue again.
387 if (findAnalysisPass(P->getPassInfo()))
388 return;
389
Devang Patelafb1f3622006-12-12 22:35:25 +0000390 AnalysisUsage AnUsage;
391 P->getAnalysisUsage(AnUsage);
392 const std::vector<AnalysisID> &RequiredSet = AnUsage.getRequiredSet();
393 for (std::vector<AnalysisID>::const_iterator I = RequiredSet.begin(),
394 E = RequiredSet.end(); I != E; ++I) {
395
396 Pass *AnalysisPass = findAnalysisPass(*I);
397 if (!AnalysisPass) {
398 // Schedule this analysis run first.
399 AnalysisPass = (*I)->createPass();
400 schedulePass(AnalysisPass);
401 }
402 }
403
404 // Now all required passes are available.
405 addTopLevelPass(P);
406}
407
408/// Find the pass that implements Analysis AID. Search immutable
409/// passes and all pass managers. If desired pass is not found
410/// then return NULL.
411Pass *PMTopLevelManager::findAnalysisPass(AnalysisID AID) {
412
413 Pass *P = NULL;
Devang Patelcd6ba152006-12-12 22:50:05 +0000414 // Check pass managers
415 for (std::vector<Pass *>::iterator I = PassManagers.begin(),
416 E = PassManagers.end(); P == NULL && I != E; ++I) {
417 PMDataManager *PMD = dynamic_cast<PMDataManager *>(*I);
418 assert(PMD && "This is not a PassManager");
419 P = PMD->findAnalysisPass(AID, false);
420 }
421
422 // Check other pass managers
423 for (std::vector<PMDataManager *>::iterator I = IndirectPassManagers.begin(),
424 E = IndirectPassManagers.end(); P == NULL && I != E; ++I)
425 P = (*I)->findAnalysisPass(AID, false);
426
Devang Patelafb1f3622006-12-12 22:35:25 +0000427 for (std::vector<ImmutablePass *>::iterator I = ImmutablePasses.begin(),
428 E = ImmutablePasses.end(); P == NULL && I != E; ++I) {
429 const PassInfo *PI = (*I)->getPassInfo();
430 if (PI == AID)
431 P = *I;
432
433 // If Pass not found then check the interfaces implemented by Immutable Pass
434 if (!P) {
Devang Patel56d48ec2006-12-15 22:57:49 +0000435 const std::vector<const PassInfo*> &ImmPI = PI->getInterfacesImplemented();
436 if (std::find(ImmPI.begin(), ImmPI.end(), AID) != ImmPI.end())
437 P = *I;
Devang Patelafb1f3622006-12-12 22:35:25 +0000438 }
439 }
440
Devang Patelafb1f3622006-12-12 22:35:25 +0000441 return P;
442}
443
Devang Pateleda56172006-12-12 23:34:33 +0000444// Print passes managed by this top level manager.
Devang Patel991aeba2006-12-15 20:13:01 +0000445void PMTopLevelManager::dumpPasses() const {
Devang Pateleda56172006-12-12 23:34:33 +0000446
Devang Patelfd4184322007-01-17 20:33:36 +0000447 if (PassDebugging < Structure)
Devang Patel67d6a5e2006-12-19 19:46:59 +0000448 return;
449
Devang Pateleda56172006-12-12 23:34:33 +0000450 // Print out the immutable passes
451 for (unsigned i = 0, e = ImmutablePasses.size(); i != e; ++i) {
452 ImmutablePasses[i]->dumpPassStructure(0);
453 }
454
Devang Patel991aeba2006-12-15 20:13:01 +0000455 for (std::vector<Pass *>::const_iterator I = PassManagers.begin(),
Devang Pateleda56172006-12-12 23:34:33 +0000456 E = PassManagers.end(); I != E; ++I)
457 (*I)->dumpPassStructure(1);
Devang Pateleda56172006-12-12 23:34:33 +0000458}
459
Devang Patel991aeba2006-12-15 20:13:01 +0000460void PMTopLevelManager::dumpArguments() const {
Devang Patelcfd70c42006-12-13 22:10:00 +0000461
Devang Patelfd4184322007-01-17 20:33:36 +0000462 if (PassDebugging < Arguments)
Devang Patelcfd70c42006-12-13 22:10:00 +0000463 return;
464
465 cerr << "Pass Arguments: ";
Devang Patel991aeba2006-12-15 20:13:01 +0000466 for (std::vector<Pass *>::const_iterator I = PassManagers.begin(),
Devang Patelcfd70c42006-12-13 22:10:00 +0000467 E = PassManagers.end(); I != E; ++I) {
468 PMDataManager *PMD = dynamic_cast<PMDataManager *>(*I);
469 assert(PMD && "This is not a PassManager");
470 PMD->dumpPassArguments();
471 }
472 cerr << "\n";
473}
474
Devang Patele3068402006-12-21 00:16:50 +0000475void PMTopLevelManager::initializeAllAnalysisInfo() {
476
477 for (std::vector<Pass *>::iterator I = PassManagers.begin(),
478 E = PassManagers.end(); I != E; ++I) {
479 PMDataManager *PMD = dynamic_cast<PMDataManager *>(*I);
480 assert(PMD && "This is not a PassManager");
481 PMD->initializeAnalysisInfo();
482 }
483
484 // Initailize other pass managers
485 for (std::vector<PMDataManager *>::iterator I = IndirectPassManagers.begin(),
486 E = IndirectPassManagers.end(); I != E; ++I)
487 (*I)->initializeAnalysisInfo();
488}
489
Devang Patele7599552007-01-12 18:52:44 +0000490/// Destructor
491PMTopLevelManager::~PMTopLevelManager() {
492 for (std::vector<Pass *>::iterator I = PassManagers.begin(),
493 E = PassManagers.end(); I != E; ++I)
494 delete *I;
495
496 for (std::vector<ImmutablePass *>::iterator
497 I = ImmutablePasses.begin(), E = ImmutablePasses.end(); I != E; ++I)
498 delete *I;
499
500 PassManagers.clear();
501}
502
Devang Patelafb1f3622006-12-12 22:35:25 +0000503//===----------------------------------------------------------------------===//
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000504// PMDataManager implementation
Devang Patelf68a3492006-11-07 22:35:17 +0000505
Devang Pateld65e9e92006-11-08 01:31:28 +0000506/// Return true IFF pass P's required analysis set does not required new
Devang Patelf68a3492006-11-07 22:35:17 +0000507/// manager.
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000508bool PMDataManager::manageablePass(Pass *P) {
Devang Patelf68a3492006-11-07 22:35:17 +0000509
Devang Patel8f677ce2006-12-07 18:47:25 +0000510 // TODO
511 // If this pass is not preserving information that is required by a
512 // pass maintained by higher level pass manager then do not insert
513 // this pass into current manager. Use new manager. For example,
514 // For example, If FunctionPass F is not preserving ModulePass Info M1
515 // that is used by another ModulePass M2 then do not insert F in
516 // current function pass manager.
Devang Patelf68a3492006-11-07 22:35:17 +0000517 return true;
518}
519
Devang Patel643676c2006-11-11 01:10:19 +0000520/// Augement AvailableAnalysis by adding analysis made available by pass P.
Devang Patele9976aa2006-12-07 19:33:53 +0000521void PMDataManager::recordAvailableAnalysis(Pass *P) {
Devang Patelf60b5d92006-11-14 01:59:59 +0000522
Devang Patel643676c2006-11-11 01:10:19 +0000523 if (const PassInfo *PI = P->getPassInfo()) {
Devang Patelf60b5d92006-11-14 01:59:59 +0000524 AvailableAnalysis[PI] = P;
Devang Patel643676c2006-11-11 01:10:19 +0000525
Devang Patele9976aa2006-12-07 19:33:53 +0000526 //This pass is the current implementation of all of the interfaces it
527 //implements as well.
528 const std::vector<const PassInfo*> &II = PI->getInterfacesImplemented();
529 for (unsigned i = 0, e = II.size(); i != e; ++i)
530 AvailableAnalysis[II[i]] = P;
Devang Patel643676c2006-11-11 01:10:19 +0000531 }
532}
533
Devang Patelf68a3492006-11-07 22:35:17 +0000534/// Remove Analyss not preserved by Pass P
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000535void PMDataManager::removeNotPreservedAnalysis(Pass *P) {
Devang Patel349170f2006-11-11 01:24:55 +0000536 AnalysisUsage AnUsage;
537 P->getAnalysisUsage(AnUsage);
Devang Patelf68a3492006-11-07 22:35:17 +0000538
Devang Patel2e169c32006-12-07 20:03:49 +0000539 if (AnUsage.getPreservesAll())
540 return;
541
542 const std::vector<AnalysisID> &PreservedSet = AnUsage.getPreservedSet();
Devang Patelf60b5d92006-11-14 01:59:59 +0000543 for (std::map<AnalysisID, Pass*>::iterator I = AvailableAnalysis.begin(),
Devang Patelbe6bd55e2006-12-12 23:07:44 +0000544 E = AvailableAnalysis.end(); I != E; ) {
Devang Patel56d48ec2006-12-15 22:57:49 +0000545 std::map<AnalysisID, Pass*>::iterator Info = I++;
546 if (std::find(PreservedSet.begin(), PreservedSet.end(), Info->first) ==
Devang Patel349170f2006-11-11 01:24:55 +0000547 PreservedSet.end()) {
548 // Remove this analysis
Devang Patel56d48ec2006-12-15 22:57:49 +0000549 if (!dynamic_cast<ImmutablePass*>(Info->second))
550 AvailableAnalysis.erase(Info);
551 }
Devang Patel349170f2006-11-11 01:24:55 +0000552 }
Devang Patelf68a3492006-11-07 22:35:17 +0000553}
554
Devang Patelca189262006-11-14 03:05:08 +0000555/// Remove analysis passes that are not used any longer
Devang Patel200d3052006-12-13 23:50:44 +0000556void PMDataManager::removeDeadPasses(Pass *P, std::string &Msg) {
Devang Patel17ad0962006-12-08 00:37:52 +0000557
558 std::vector<Pass *> DeadPasses;
559 TPM->collectLastUses(DeadPasses, P);
560
561 for (std::vector<Pass *>::iterator I = DeadPasses.begin(),
562 E = DeadPasses.end(); I != E; ++I) {
Devang Patel200d3052006-12-13 23:50:44 +0000563
564 std::string Msg1 = " Freeing Pass '";
565 dumpPassInfo(*I, Msg1, Msg);
566
Devang Patel7ebf09d2007-03-05 18:20:51 +0000567 if (TheTimeInfo) TheTimeInfo->passStarted(*I);
Devang Patel17ad0962006-12-08 00:37:52 +0000568 (*I)->releaseMemory();
Devang Patel7ebf09d2007-03-05 18:20:51 +0000569 if (TheTimeInfo) TheTimeInfo->passEnded(*I);
Devang Patelb8817b92006-12-14 00:59:42 +0000570
Devang Patel17ad0962006-12-08 00:37:52 +0000571 std::map<AnalysisID, Pass*>::iterator Pos =
572 AvailableAnalysis.find((*I)->getPassInfo());
573
Devang Patel475c4532006-12-08 00:59:05 +0000574 // It is possible that pass is already removed from the AvailableAnalysis
Devang Patel17ad0962006-12-08 00:37:52 +0000575 if (Pos != AvailableAnalysis.end())
576 AvailableAnalysis.erase(Pos);
577 }
Devang Patelca189262006-11-14 03:05:08 +0000578}
579
Devang Patel8f677ce2006-12-07 18:47:25 +0000580/// Add pass P into the PassVector. Update
Devang Patel90b05e02006-11-11 02:04:19 +0000581/// AvailableAnalysis appropriately if ProcessAnalysis is true.
Devang Patelf85793d2007-01-12 20:07:16 +0000582void PMDataManager::add(Pass *P,
Devang Patel6975b6e2007-01-15 23:06:56 +0000583 bool ProcessAnalysis) {
Devang Patel8cad70d2006-11-11 01:51:02 +0000584
Devang Pateld440cd92006-12-08 23:53:00 +0000585 // This manager is going to manage pass P. Set up analysis resolver
586 // to connect them.
Devang Patelb66334b2007-01-05 22:47:07 +0000587 AnalysisResolver *AR = new AnalysisResolver(*this);
Devang Pateld440cd92006-12-08 23:53:00 +0000588 P->setResolver(AR);
589
Devang Patel90b05e02006-11-11 02:04:19 +0000590 if (ProcessAnalysis) {
Devang Patelbc03f132006-12-07 23:55:10 +0000591
592 // At the moment, this pass is the last user of all required passes.
593 std::vector<Pass *> LastUses;
594 std::vector<Pass *> RequiredPasses;
595 unsigned PDepth = this->getDepth();
596
597 collectRequiredAnalysisPasses(RequiredPasses, P);
598 for (std::vector<Pass *>::iterator I = RequiredPasses.begin(),
599 E = RequiredPasses.end(); I != E; ++I) {
600 Pass *PRequired = *I;
601 unsigned RDepth = 0;
Devang Patel64619be2006-12-09 00:07:38 +0000602
603 PMDataManager &DM = PRequired->getResolver()->getPMDataManager();
604 RDepth = DM.getDepth();
605
Devang Patelbc03f132006-12-07 23:55:10 +0000606 if (PDepth == RDepth)
607 LastUses.push_back(PRequired);
608 else if (PDepth > RDepth) {
609 // Let the parent claim responsibility of last use
Devang Patel832bc072006-12-15 00:08:26 +0000610 TransferLastUses.push_back(PRequired);
Devang Patelbc03f132006-12-07 23:55:10 +0000611 } else {
612 // Note : This feature is not yet implemented
613 assert (0 &&
614 "Unable to handle Pass that requires lower level Analysis pass");
615 }
616 }
617
Devang Patel39786a92007-01-15 20:31:54 +0000618 // Set P as P's last user until someone starts using P.
619 // However, if P is a Pass Manager then it does not need
620 // to record its last user.
Devang Pateld85662f2007-01-16 22:38:10 +0000621 if (!dynamic_cast<PMDataManager *>(P))
Devang Patel39786a92007-01-15 20:31:54 +0000622 LastUses.push_back(P);
Devang Pateld85662f2007-01-16 22:38:10 +0000623 TPM->setLastUser(LastUses, P);
Devang Patelbc03f132006-12-07 23:55:10 +0000624
Devang Patel17bff0d2006-12-07 22:09:36 +0000625 // Take a note of analysis required and made available by this pass.
Devang Patel90b05e02006-11-11 02:04:19 +0000626 // Remove the analysis not preserved by this pass
627 removeNotPreservedAnalysis(P);
Devang Patel17bff0d2006-12-07 22:09:36 +0000628 recordAvailableAnalysis(P);
Devang Patel90b05e02006-11-11 02:04:19 +0000629 }
Devang Patel8cad70d2006-11-11 01:51:02 +0000630
631 // Add pass
632 PassVector.push_back(P);
Devang Patel8cad70d2006-11-11 01:51:02 +0000633}
634
Devang Patel1d6267c2006-12-07 23:05:44 +0000635/// Populate RequiredPasses with the analysis pass that are required by
636/// pass P.
637void PMDataManager::collectRequiredAnalysisPasses(std::vector<Pass *> &RP,
638 Pass *P) {
639 AnalysisUsage AnUsage;
640 P->getAnalysisUsage(AnUsage);
641 const std::vector<AnalysisID> &RequiredSet = AnUsage.getRequiredSet();
642 for (std::vector<AnalysisID>::const_iterator
643 I = RequiredSet.begin(), E = RequiredSet.end();
644 I != E; ++I) {
Devang Patel640c5bb2006-12-08 22:30:11 +0000645 Pass *AnalysisPass = findAnalysisPass(*I, true);
Devang Patel1d6267c2006-12-07 23:05:44 +0000646 assert (AnalysisPass && "Analysis pass is not available");
647 RP.push_back(AnalysisPass);
648 }
Devang Patelf58183d2006-12-12 23:09:32 +0000649
650 const std::vector<AnalysisID> &IDs = AnUsage.getRequiredTransitiveSet();
651 for (std::vector<AnalysisID>::const_iterator I = IDs.begin(),
652 E = IDs.end(); I != E; ++I) {
653 Pass *AnalysisPass = findAnalysisPass(*I, true);
654 assert (AnalysisPass && "Analysis pass is not available");
655 RP.push_back(AnalysisPass);
656 }
Devang Patel1d6267c2006-12-07 23:05:44 +0000657}
658
Devang Patel07f4f582006-11-14 21:49:36 +0000659// All Required analyses should be available to the pass as it runs! Here
660// we fill in the AnalysisImpls member of the pass so that it can
661// successfully use the getAnalysis() method to retrieve the
662// implementations it needs.
663//
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000664void PMDataManager::initializeAnalysisImpl(Pass *P) {
Devang Patelff631ae2006-11-15 01:27:05 +0000665 AnalysisUsage AnUsage;
666 P->getAnalysisUsage(AnUsage);
Devang Patel07f4f582006-11-14 21:49:36 +0000667
668 for (std::vector<const PassInfo *>::const_iterator
669 I = AnUsage.getRequiredSet().begin(),
670 E = AnUsage.getRequiredSet().end(); I != E; ++I) {
Devang Patel640c5bb2006-12-08 22:30:11 +0000671 Pass *Impl = findAnalysisPass(*I, true);
Devang Patel07f4f582006-11-14 21:49:36 +0000672 if (Impl == 0)
673 assert(0 && "Analysis used but not available!");
Devang Patelb66334b2007-01-05 22:47:07 +0000674 AnalysisResolver *AR = P->getResolver();
Devang Patel984698a2006-12-09 01:11:34 +0000675 AR->addAnalysisImplsPair(*I, Impl);
Devang Patel07f4f582006-11-14 21:49:36 +0000676 }
677}
678
Devang Patel640c5bb2006-12-08 22:30:11 +0000679/// Find the pass that implements Analysis AID. If desired pass is not found
680/// then return NULL.
681Pass *PMDataManager::findAnalysisPass(AnalysisID AID, bool SearchParent) {
682
683 // Check if AvailableAnalysis map has one entry.
684 std::map<AnalysisID, Pass*>::const_iterator I = AvailableAnalysis.find(AID);
685
686 if (I != AvailableAnalysis.end())
687 return I->second;
688
689 // Search Parents through TopLevelManager
690 if (SearchParent)
691 return TPM->findAnalysisPass(AID);
692
Devang Patel9d759b82006-12-09 00:09:12 +0000693 return NULL;
Devang Patel640c5bb2006-12-08 22:30:11 +0000694}
695
Devang Patel991aeba2006-12-15 20:13:01 +0000696// Print list of passes that are last used by P.
697void PMDataManager::dumpLastUses(Pass *P, unsigned Offset) const{
698
699 std::vector<Pass *> LUses;
700
701 assert (TPM && "Top Level Manager is missing");
702 TPM->collectLastUses(LUses, P);
703
704 for (std::vector<Pass *>::iterator I = LUses.begin(),
705 E = LUses.end(); I != E; ++I) {
706 llvm::cerr << "--" << std::string(Offset*2, ' ');
707 (*I)->dumpPassStructure(0);
708 }
709}
710
711void PMDataManager::dumpPassArguments() const {
712 for(std::vector<Pass *>::const_iterator I = PassVector.begin(),
713 E = PassVector.end(); I != E; ++I) {
714 if (PMDataManager *PMD = dynamic_cast<PMDataManager *>(*I))
715 PMD->dumpPassArguments();
716 else
717 if (const PassInfo *PI = (*I)->getPassInfo())
718 if (!PI->isAnalysisGroup())
719 cerr << " -" << PI->getPassArgument();
720 }
721}
722
723void PMDataManager:: dumpPassInfo(Pass *P, std::string &Msg1,
724 std::string &Msg2) const {
Devang Patelfd4184322007-01-17 20:33:36 +0000725 if (PassDebugging < Executions)
Devang Patel991aeba2006-12-15 20:13:01 +0000726 return;
727 cerr << (void*)this << std::string(getDepth()*2+1, ' ');
728 cerr << Msg1;
729 cerr << P->getPassName();
730 cerr << Msg2;
731}
732
733void PMDataManager::dumpAnalysisSetInfo(const char *Msg, Pass *P,
734 const std::vector<AnalysisID> &Set)
735 const {
Devang Patelfd4184322007-01-17 20:33:36 +0000736 if (PassDebugging >= Details && !Set.empty()) {
Devang Patel991aeba2006-12-15 20:13:01 +0000737 cerr << (void*)P << std::string(getDepth()*2+3, ' ') << Msg << " Analyses:";
738 for (unsigned i = 0; i != Set.size(); ++i) {
739 if (i) cerr << ",";
740 cerr << " " << Set[i]->getPassName();
741 }
742 cerr << "\n";
743 }
744}
Devang Patel9bdf7d42006-12-08 23:28:54 +0000745
Devang Patele7599552007-01-12 18:52:44 +0000746// Destructor
747PMDataManager::~PMDataManager() {
748
749 for (std::vector<Pass *>::iterator I = PassVector.begin(),
750 E = PassVector.end(); I != E; ++I)
751 delete *I;
752
753 PassVector.clear();
754}
755
Devang Patel9bdf7d42006-12-08 23:28:54 +0000756//===----------------------------------------------------------------------===//
757// NOTE: Is this the right place to define this method ?
758// getAnalysisToUpdate - Return an analysis result or null if it doesn't exist
Devang Patelb66334b2007-01-05 22:47:07 +0000759Pass *AnalysisResolver::getAnalysisToUpdate(AnalysisID ID, bool dir) const {
Devang Patel9bdf7d42006-12-08 23:28:54 +0000760 return PM.findAnalysisPass(ID, dir);
761}
762
Devang Patela1514cb2006-12-07 19:39:39 +0000763//===----------------------------------------------------------------------===//
Devang Patel67d6a5e2006-12-19 19:46:59 +0000764// BBPassManager implementation
Devang Patel6e5a1132006-11-07 21:31:57 +0000765
Devang Patel6e5a1132006-11-07 21:31:57 +0000766/// Execute all of the passes scheduled for execution by invoking
767/// runOnBasicBlock method. Keep track of whether any of the passes modifies
768/// the function, and if so, return true.
769bool
Devang Patel67d6a5e2006-12-19 19:46:59 +0000770BBPassManager::runOnFunction(Function &F) {
Devang Patel6e5a1132006-11-07 21:31:57 +0000771
Reid Spencer5301e7c2007-01-30 20:08:39 +0000772 if (F.isDeclaration())
Devang Patel745a6962006-12-12 23:15:28 +0000773 return false;
774
Devang Patele9585592006-12-08 01:38:28 +0000775 bool Changed = doInitialization(F);
Devang Patel050ec722006-11-14 01:23:29 +0000776
Devang Patel93a197c2006-12-14 00:08:04 +0000777 std::string Msg1 = "Executing Pass '";
778 std::string Msg3 = "' Made Modification '";
779
Devang Patel6e5a1132006-11-07 21:31:57 +0000780 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
Devang Patelabfbe3b2006-12-16 00:56:26 +0000781 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
782 BasicBlockPass *BP = getContainedPass(Index);
Devang Patelf6d1d212006-12-14 00:25:06 +0000783 AnalysisUsage AnUsage;
Devang Patelabfbe3b2006-12-16 00:56:26 +0000784 BP->getAnalysisUsage(AnUsage);
Devang Patelf6d1d212006-12-14 00:25:06 +0000785
Devang Patel200d3052006-12-13 23:50:44 +0000786 std::string Msg2 = "' on BasicBlock '" + (*I).getName() + "'...\n";
Devang Patelabfbe3b2006-12-16 00:56:26 +0000787 dumpPassInfo(BP, Msg1, Msg2);
788 dumpAnalysisSetInfo("Required", BP, AnUsage.getRequiredSet());
Devang Patelf6d1d212006-12-14 00:25:06 +0000789
Devang Patelabfbe3b2006-12-16 00:56:26 +0000790 initializeAnalysisImpl(BP);
Devang Patel93a197c2006-12-14 00:08:04 +0000791
Devang Patelabfbe3b2006-12-16 00:56:26 +0000792 if (TheTimeInfo) TheTimeInfo->passStarted(BP);
Devang Patel6e5a1132006-11-07 21:31:57 +0000793 Changed |= BP->runOnBasicBlock(*I);
Devang Patelabfbe3b2006-12-16 00:56:26 +0000794 if (TheTimeInfo) TheTimeInfo->passEnded(BP);
Devang Patel93a197c2006-12-14 00:08:04 +0000795
796 if (Changed)
Devang Patelabfbe3b2006-12-16 00:56:26 +0000797 dumpPassInfo(BP, Msg3, Msg2);
798 dumpAnalysisSetInfo("Preserved", BP, AnUsage.getPreservedSet());
Devang Patel93a197c2006-12-14 00:08:04 +0000799
Devang Patelabfbe3b2006-12-16 00:56:26 +0000800 removeNotPreservedAnalysis(BP);
801 recordAvailableAnalysis(BP);
802 removeDeadPasses(BP, Msg2);
Devang Patel6e5a1132006-11-07 21:31:57 +0000803 }
Devang Patel56d48ec2006-12-15 22:57:49 +0000804 return Changed |= doFinalization(F);
Devang Patel6e5a1132006-11-07 21:31:57 +0000805}
806
Devang Patel475c4532006-12-08 00:59:05 +0000807// Implement doInitialization and doFinalization
Devang Patel67d6a5e2006-12-19 19:46:59 +0000808inline bool BBPassManager::doInitialization(Module &M) {
Devang Patel475c4532006-12-08 00:59:05 +0000809 bool Changed = false;
810
Devang Patelabfbe3b2006-12-16 00:56:26 +0000811 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
812 BasicBlockPass *BP = getContainedPass(Index);
Devang Patel475c4532006-12-08 00:59:05 +0000813 Changed |= BP->doInitialization(M);
814 }
815
816 return Changed;
817}
818
Devang Patel67d6a5e2006-12-19 19:46:59 +0000819inline bool BBPassManager::doFinalization(Module &M) {
Devang Patel475c4532006-12-08 00:59:05 +0000820 bool Changed = false;
821
Devang Patelabfbe3b2006-12-16 00:56:26 +0000822 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
823 BasicBlockPass *BP = getContainedPass(Index);
Devang Patel475c4532006-12-08 00:59:05 +0000824 Changed |= BP->doFinalization(M);
825 }
826
827 return Changed;
828}
829
Devang Patel67d6a5e2006-12-19 19:46:59 +0000830inline bool BBPassManager::doInitialization(Function &F) {
Devang Patel475c4532006-12-08 00:59:05 +0000831 bool Changed = false;
832
Devang Patelabfbe3b2006-12-16 00:56:26 +0000833 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
834 BasicBlockPass *BP = getContainedPass(Index);
Devang Patel475c4532006-12-08 00:59:05 +0000835 Changed |= BP->doInitialization(F);
836 }
837
838 return Changed;
839}
840
Devang Patel67d6a5e2006-12-19 19:46:59 +0000841inline bool BBPassManager::doFinalization(Function &F) {
Devang Patel475c4532006-12-08 00:59:05 +0000842 bool Changed = false;
843
Devang Patelabfbe3b2006-12-16 00:56:26 +0000844 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
845 BasicBlockPass *BP = getContainedPass(Index);
Devang Patel475c4532006-12-08 00:59:05 +0000846 Changed |= BP->doFinalization(F);
847 }
848
849 return Changed;
850}
851
852
Devang Patela1514cb2006-12-07 19:39:39 +0000853//===----------------------------------------------------------------------===//
Devang Patelb67904d2006-12-13 02:36:01 +0000854// FunctionPassManager implementation
Devang Patela1514cb2006-12-07 19:39:39 +0000855
Devang Patel4e12f862006-11-08 10:44:40 +0000856/// Create new Function pass manager
Devang Patelb67904d2006-12-13 02:36:01 +0000857FunctionPassManager::FunctionPassManager(ModuleProvider *P) {
Devang Patel67d6a5e2006-12-19 19:46:59 +0000858 FPM = new FunctionPassManagerImpl(0);
Devang Patel9c6290c2006-12-12 22:02:16 +0000859 // FPM is the top level manager.
860 FPM->setTopLevelManager(FPM);
Devang Patel1036b652006-12-12 23:27:37 +0000861
862 PMDataManager *PMD = dynamic_cast<PMDataManager *>(FPM);
Devang Patelb66334b2007-01-05 22:47:07 +0000863 AnalysisResolver *AR = new AnalysisResolver(*PMD);
Devang Patel1036b652006-12-12 23:27:37 +0000864 FPM->setResolver(AR);
865
Devang Patel1f653682006-12-08 18:57:16 +0000866 MP = P;
867}
868
Devang Patelb67904d2006-12-13 02:36:01 +0000869FunctionPassManager::~FunctionPassManager() {
Devang Patelab97cf42006-12-13 00:09:23 +0000870 delete FPM;
871}
872
Devang Patel4e12f862006-11-08 10:44:40 +0000873/// add - Add a pass to the queue of passes to run. This passes
874/// ownership of the Pass to the PassManager. When the
875/// PassManager_X is destroyed, the pass will be destroyed as well, so
876/// there is no need to delete the pass. (TODO delete passes.)
877/// This implies that all passes MUST be allocated with 'new'.
Devang Patelb67904d2006-12-13 02:36:01 +0000878void FunctionPassManager::add(Pass *P) {
Devang Patel4e12f862006-11-08 10:44:40 +0000879 FPM->add(P);
880}
881
Devang Patel9f3083e2006-11-15 19:39:54 +0000882/// run - Execute all of the passes scheduled for execution. Keep
883/// track of whether any of the passes modifies the function, and if
884/// so, return true.
885///
Devang Patelb67904d2006-12-13 02:36:01 +0000886bool FunctionPassManager::run(Function &F) {
Devang Patel9f3083e2006-11-15 19:39:54 +0000887 std::string errstr;
888 if (MP->materializeFunction(&F, &errstr)) {
Bill Wendlingf3baad32006-12-07 01:30:32 +0000889 cerr << "Error reading bytecode file: " << errstr << "\n";
Devang Patel9f3083e2006-11-15 19:39:54 +0000890 abort();
891 }
Devang Patel272908d2006-12-08 22:57:48 +0000892 return FPM->run(F);
Devang Patel9f3083e2006-11-15 19:39:54 +0000893}
894
895
Devang Patelff631ae2006-11-15 01:27:05 +0000896/// doInitialization - Run all of the initializers for the function passes.
897///
Devang Patelb67904d2006-12-13 02:36:01 +0000898bool FunctionPassManager::doInitialization() {
Devang Patelff631ae2006-11-15 01:27:05 +0000899 return FPM->doInitialization(*MP->getModule());
900}
901
902/// doFinalization - Run all of the initializers for the function passes.
903///
Devang Patelb67904d2006-12-13 02:36:01 +0000904bool FunctionPassManager::doFinalization() {
Devang Patelff631ae2006-11-15 01:27:05 +0000905 return FPM->doFinalization(*MP->getModule());
906}
907
Devang Patela1514cb2006-12-07 19:39:39 +0000908//===----------------------------------------------------------------------===//
Devang Patel67d6a5e2006-12-19 19:46:59 +0000909// FunctionPassManagerImpl implementation
910//
Devang Patel67d6a5e2006-12-19 19:46:59 +0000911inline bool FunctionPassManagerImpl::doInitialization(Module &M) {
912 bool Changed = false;
913
914 for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index) {
915 FPPassManager *FP = getContainedManager(Index);
916 Changed |= FP->doInitialization(M);
917 }
918
919 return Changed;
920}
921
922inline bool FunctionPassManagerImpl::doFinalization(Module &M) {
923 bool Changed = false;
924
925 for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index) {
926 FPPassManager *FP = getContainedManager(Index);
927 Changed |= FP->doFinalization(M);
928 }
929
930 return Changed;
931}
932
933// Execute all the passes managed by this top level manager.
934// Return true if any function is modified by a pass.
935bool FunctionPassManagerImpl::run(Function &F) {
936
937 bool Changed = false;
938
939 TimingInfo::createTheTimeInfo();
940
941 dumpArguments();
942 dumpPasses();
943
Devang Patele3068402006-12-21 00:16:50 +0000944 initializeAllAnalysisInfo();
Devang Patel67d6a5e2006-12-19 19:46:59 +0000945 for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index) {
946 FPPassManager *FP = getContainedManager(Index);
947 Changed |= FP->runOnFunction(F);
948 }
949 return Changed;
950}
951
952//===----------------------------------------------------------------------===//
953// FPPassManager implementation
Devang Patel0c2012f2006-11-07 21:49:50 +0000954
Devang Patele7599552007-01-12 18:52:44 +0000955/// Print passes managed by this manager
956void FPPassManager::dumpPassStructure(unsigned Offset) {
957 llvm::cerr << std::string(Offset*2, ' ') << "FunctionPass Manager\n";
958 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
959 FunctionPass *FP = getContainedPass(Index);
960 FP->dumpPassStructure(Offset + 1);
961 dumpLastUses(FP, Offset+1);
962 }
963}
964
965
Devang Patel0c2012f2006-11-07 21:49:50 +0000966/// Execute all of the passes scheduled for execution by invoking
967/// runOnFunction method. Keep track of whether any of the passes modifies
968/// the function, and if so, return true.
Devang Patel67d6a5e2006-12-19 19:46:59 +0000969bool FPPassManager::runOnFunction(Function &F) {
Devang Patel9f3083e2006-11-15 19:39:54 +0000970
971 bool Changed = false;
Devang Patel745a6962006-12-12 23:15:28 +0000972
Reid Spencer5301e7c2007-01-30 20:08:39 +0000973 if (F.isDeclaration())
Devang Patel745a6962006-12-12 23:15:28 +0000974 return false;
975
Devang Patel93a197c2006-12-14 00:08:04 +0000976 std::string Msg1 = "Executing Pass '";
977 std::string Msg3 = "' Made Modification '";
978
Devang Patelabfbe3b2006-12-16 00:56:26 +0000979 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
980 FunctionPass *FP = getContainedPass(Index);
981
Devang Patelf6d1d212006-12-14 00:25:06 +0000982 AnalysisUsage AnUsage;
Devang Patelabfbe3b2006-12-16 00:56:26 +0000983 FP->getAnalysisUsage(AnUsage);
Devang Patel93a197c2006-12-14 00:08:04 +0000984
Devang Patel200d3052006-12-13 23:50:44 +0000985 std::string Msg2 = "' on Function '" + F.getName() + "'...\n";
Devang Patelabfbe3b2006-12-16 00:56:26 +0000986 dumpPassInfo(FP, Msg1, Msg2);
987 dumpAnalysisSetInfo("Required", FP, AnUsage.getRequiredSet());
Devang Patel93a197c2006-12-14 00:08:04 +0000988
Devang Patelabfbe3b2006-12-16 00:56:26 +0000989 initializeAnalysisImpl(FP);
Devang Patelb8817b92006-12-14 00:59:42 +0000990
Devang Patelabfbe3b2006-12-16 00:56:26 +0000991 if (TheTimeInfo) TheTimeInfo->passStarted(FP);
Devang Patel9f3083e2006-11-15 19:39:54 +0000992 Changed |= FP->runOnFunction(F);
Devang Patelabfbe3b2006-12-16 00:56:26 +0000993 if (TheTimeInfo) TheTimeInfo->passEnded(FP);
Devang Patel93a197c2006-12-14 00:08:04 +0000994
995 if (Changed)
Devang Patelabfbe3b2006-12-16 00:56:26 +0000996 dumpPassInfo(FP, Msg3, Msg2);
997 dumpAnalysisSetInfo("Preserved", FP, AnUsage.getPreservedSet());
Devang Patel93a197c2006-12-14 00:08:04 +0000998
Devang Patelabfbe3b2006-12-16 00:56:26 +0000999 removeNotPreservedAnalysis(FP);
1000 recordAvailableAnalysis(FP);
1001 removeDeadPasses(FP, Msg2);
Devang Patel9f3083e2006-11-15 19:39:54 +00001002 }
1003 return Changed;
1004}
1005
Devang Patel67d6a5e2006-12-19 19:46:59 +00001006bool FPPassManager::runOnModule(Module &M) {
Devang Patel9f3083e2006-11-15 19:39:54 +00001007
Devang Patel67d6a5e2006-12-19 19:46:59 +00001008 bool Changed = doInitialization(M);
Devang Patel67d6a5e2006-12-19 19:46:59 +00001009
1010 for(Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
1011 this->runOnFunction(*I);
1012
1013 return Changed |= doFinalization(M);
1014}
1015
1016inline bool FPPassManager::doInitialization(Module &M) {
Devang Patelff631ae2006-11-15 01:27:05 +00001017 bool Changed = false;
1018
Devang Patelabfbe3b2006-12-16 00:56:26 +00001019 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1020 FunctionPass *FP = getContainedPass(Index);
Devang Patelff631ae2006-11-15 01:27:05 +00001021 Changed |= FP->doInitialization(M);
1022 }
1023
1024 return Changed;
1025}
1026
Devang Patel67d6a5e2006-12-19 19:46:59 +00001027inline bool FPPassManager::doFinalization(Module &M) {
Devang Patelff631ae2006-11-15 01:27:05 +00001028 bool Changed = false;
1029
Devang Patelabfbe3b2006-12-16 00:56:26 +00001030 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1031 FunctionPass *FP = getContainedPass(Index);
Devang Patelff631ae2006-11-15 01:27:05 +00001032 Changed |= FP->doFinalization(M);
1033 }
1034
Devang Patelff631ae2006-11-15 01:27:05 +00001035 return Changed;
1036}
1037
Devang Patela1514cb2006-12-07 19:39:39 +00001038//===----------------------------------------------------------------------===//
Devang Patel67d6a5e2006-12-19 19:46:59 +00001039// MPPassManager implementation
Devang Patel05e1a972006-11-07 22:03:15 +00001040
Devang Patel05e1a972006-11-07 22:03:15 +00001041/// Execute all of the passes scheduled for execution by invoking
1042/// runOnModule method. Keep track of whether any of the passes modifies
1043/// the module, and if so, return true.
1044bool
Devang Patel67d6a5e2006-12-19 19:46:59 +00001045MPPassManager::runOnModule(Module &M) {
Devang Patel05e1a972006-11-07 22:03:15 +00001046 bool Changed = false;
Devang Patel050ec722006-11-14 01:23:29 +00001047
Devang Patel93a197c2006-12-14 00:08:04 +00001048 std::string Msg1 = "Executing Pass '";
1049 std::string Msg3 = "' Made Modification '";
1050
Devang Patelabfbe3b2006-12-16 00:56:26 +00001051 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1052 ModulePass *MP = getContainedPass(Index);
1053
Devang Patelf6d1d212006-12-14 00:25:06 +00001054 AnalysisUsage AnUsage;
Devang Patelabfbe3b2006-12-16 00:56:26 +00001055 MP->getAnalysisUsage(AnUsage);
Devang Patel93a197c2006-12-14 00:08:04 +00001056
Devang Patel200d3052006-12-13 23:50:44 +00001057 std::string Msg2 = "' on Module '" + M.getModuleIdentifier() + "'...\n";
Devang Patelabfbe3b2006-12-16 00:56:26 +00001058 dumpPassInfo(MP, Msg1, Msg2);
1059 dumpAnalysisSetInfo("Required", MP, AnUsage.getRequiredSet());
Devang Patel93a197c2006-12-14 00:08:04 +00001060
Devang Patelabfbe3b2006-12-16 00:56:26 +00001061 initializeAnalysisImpl(MP);
Devang Patelb8817b92006-12-14 00:59:42 +00001062
Devang Patelabfbe3b2006-12-16 00:56:26 +00001063 if (TheTimeInfo) TheTimeInfo->passStarted(MP);
Devang Patel05e1a972006-11-07 22:03:15 +00001064 Changed |= MP->runOnModule(M);
Devang Patelabfbe3b2006-12-16 00:56:26 +00001065 if (TheTimeInfo) TheTimeInfo->passEnded(MP);
Devang Patel93a197c2006-12-14 00:08:04 +00001066
1067 if (Changed)
Devang Patelabfbe3b2006-12-16 00:56:26 +00001068 dumpPassInfo(MP, Msg3, Msg2);
1069 dumpAnalysisSetInfo("Preserved", MP, AnUsage.getPreservedSet());
Devang Patelf6d1d212006-12-14 00:25:06 +00001070
Devang Patelabfbe3b2006-12-16 00:56:26 +00001071 removeNotPreservedAnalysis(MP);
1072 recordAvailableAnalysis(MP);
1073 removeDeadPasses(MP, Msg2);
Devang Patel05e1a972006-11-07 22:03:15 +00001074 }
1075 return Changed;
1076}
1077
Devang Patela1514cb2006-12-07 19:39:39 +00001078//===----------------------------------------------------------------------===//
1079// PassManagerImpl implementation
Devang Patelab97cf42006-12-13 00:09:23 +00001080//
Devang Patelc290c8a2006-11-07 22:23:34 +00001081/// run - Execute all of the passes scheduled for execution. Keep track of
1082/// whether any of the passes modifies the module, and if so, return true.
Devang Patel67d6a5e2006-12-19 19:46:59 +00001083bool PassManagerImpl::run(Module &M) {
Devang Patelc290c8a2006-11-07 22:23:34 +00001084
Devang Patelc290c8a2006-11-07 22:23:34 +00001085 bool Changed = false;
Devang Patelf1567a52006-12-13 20:03:48 +00001086
Devang Patelb8817b92006-12-14 00:59:42 +00001087 TimingInfo::createTheTimeInfo();
1088
Devang Patelcfd70c42006-12-13 22:10:00 +00001089 dumpArguments();
Devang Patel67d6a5e2006-12-19 19:46:59 +00001090 dumpPasses();
Devang Patelf1567a52006-12-13 20:03:48 +00001091
Devang Patele3068402006-12-21 00:16:50 +00001092 initializeAllAnalysisInfo();
Devang Patel67d6a5e2006-12-19 19:46:59 +00001093 for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index) {
1094 MPPassManager *MP = getContainedManager(Index);
Devang Patel5bbeb492006-12-08 22:47:25 +00001095 Changed |= MP->runOnModule(M);
Devang Patelc290c8a2006-11-07 22:23:34 +00001096 }
1097 return Changed;
1098}
Devang Patel376fefa2006-11-08 10:29:57 +00001099
Devang Patela1514cb2006-12-07 19:39:39 +00001100//===----------------------------------------------------------------------===//
1101// PassManager implementation
1102
Devang Patel376fefa2006-11-08 10:29:57 +00001103/// Create new pass manager
Devang Patelb67904d2006-12-13 02:36:01 +00001104PassManager::PassManager() {
Devang Patel67d6a5e2006-12-19 19:46:59 +00001105 PM = new PassManagerImpl(0);
Devang Patel9c6290c2006-12-12 22:02:16 +00001106 // PM is the top level manager
1107 PM->setTopLevelManager(PM);
Devang Patel376fefa2006-11-08 10:29:57 +00001108}
1109
Devang Patelb67904d2006-12-13 02:36:01 +00001110PassManager::~PassManager() {
Devang Patelab97cf42006-12-13 00:09:23 +00001111 delete PM;
1112}
1113
Devang Patel376fefa2006-11-08 10:29:57 +00001114/// add - Add a pass to the queue of passes to run. This passes ownership of
1115/// the Pass to the PassManager. When the PassManager is destroyed, the pass
1116/// will be destroyed as well, so there is no need to delete the pass. This
1117/// implies that all passes MUST be allocated with 'new'.
1118void
Devang Patelb67904d2006-12-13 02:36:01 +00001119PassManager::add(Pass *P) {
Devang Patel376fefa2006-11-08 10:29:57 +00001120 PM->add(P);
1121}
1122
1123/// run - Execute all of the passes scheduled for execution. Keep track of
1124/// whether any of the passes modifies the module, and if so, return true.
1125bool
Devang Patelb67904d2006-12-13 02:36:01 +00001126PassManager::run(Module &M) {
Devang Patel376fefa2006-11-08 10:29:57 +00001127 return PM->run(M);
1128}
1129
Devang Patelb8817b92006-12-14 00:59:42 +00001130//===----------------------------------------------------------------------===//
1131// TimingInfo Class - This class is used to calculate information about the
1132// amount of time each pass takes to execute. This only happens with
1133// -time-passes is enabled on the command line.
1134//
1135bool llvm::TimePassesIsEnabled = false;
1136static cl::opt<bool,true>
1137EnableTiming("time-passes", cl::location(TimePassesIsEnabled),
1138 cl::desc("Time each pass, printing elapsed time for each on exit"));
1139
1140// createTheTimeInfo - This method either initializes the TheTimeInfo pointer to
1141// a non null value (if the -time-passes option is enabled) or it leaves it
1142// null. It may be called multiple times.
1143void TimingInfo::createTheTimeInfo() {
1144 if (!TimePassesIsEnabled || TheTimeInfo) return;
1145
1146 // Constructed the first time this is called, iff -time-passes is enabled.
1147 // This guarantees that the object will be constructed before static globals,
1148 // thus it will be destroyed before them.
1149 static ManagedStatic<TimingInfo> TTI;
1150 TheTimeInfo = &*TTI;
1151}
1152
Devang Patel1c3633e2007-01-29 23:10:37 +00001153/// If TimingInfo is enabled then start pass timer.
1154void StartPassTimer(Pass *P) {
1155 if (TheTimeInfo)
1156 TheTimeInfo->passStarted(P);
1157}
1158
1159/// If TimingInfo is enabled then stop pass timer.
1160void StopPassTimer(Pass *P) {
1161 if (TheTimeInfo)
1162 TheTimeInfo->passEnded(P);
1163}
1164
Devang Patel1c56a632007-01-08 19:29:38 +00001165//===----------------------------------------------------------------------===//
1166// PMStack implementation
1167//
Devang Patelad98d232007-01-11 22:15:30 +00001168
Devang Patel1c56a632007-01-08 19:29:38 +00001169// Pop Pass Manager from the stack and clear its analysis info.
1170void PMStack::pop() {
1171
1172 PMDataManager *Top = this->top();
1173 Top->initializeAnalysisInfo();
1174
1175 S.pop_back();
1176}
1177
1178// Push PM on the stack and set its top level manager.
Devang Patel15701b52007-01-11 00:19:00 +00001179void PMStack::push(Pass *P) {
Devang Patel1c56a632007-01-08 19:29:38 +00001180
Devang Patel15701b52007-01-11 00:19:00 +00001181 PMDataManager *Top = NULL;
1182 PMDataManager *PM = dynamic_cast<PMDataManager *>(P);
1183 assert (PM && "Unable to push. Pass Manager expected");
Devang Patel1c56a632007-01-08 19:29:38 +00001184
Devang Patel15701b52007-01-11 00:19:00 +00001185 if (this->empty()) {
1186 Top = PM;
1187 }
1188 else {
1189 Top = this->top();
1190 PMTopLevelManager *TPM = Top->getTopLevelManager();
1191
1192 assert (TPM && "Unable to find top level manager");
1193 TPM->addIndirectPassManager(PM);
1194 PM->setTopLevelManager(TPM);
1195 }
1196
1197 AnalysisResolver *AR = new AnalysisResolver(*Top);
1198 P->setResolver(AR);
1199
1200 S.push_back(PM);
1201}
1202
1203// Dump content of the pass manager stack.
1204void PMStack::dump() {
1205 for(std::deque<PMDataManager *>::iterator I = S.begin(),
1206 E = S.end(); I != E; ++I) {
1207 Pass *P = dynamic_cast<Pass *>(*I);
1208 printf ("%s ", P->getPassName());
1209 }
1210 if (!S.empty())
1211 printf ("\n");
Devang Patel1c56a632007-01-08 19:29:38 +00001212}
1213
1214// Walk Pass Manager stack and set LastUse markers if any
1215// manager is transfering this priviledge to its parent manager
1216void PMStack::handleLastUserOverflow() {
1217
1218 for(PMStack::iterator I = this->begin(), E = this->end(); I != E;) {
1219
1220 PMDataManager *Child = *I++;
1221 if (I != E) {
1222 PMDataManager *Parent = *I++;
1223 PMTopLevelManager *TPM = Parent->getTopLevelManager();
1224 std::vector<Pass *> &TLU = Child->getTransferredLastUses();
1225 if (!TLU.empty()) {
1226 Pass *P = dynamic_cast<Pass *>(Parent);
1227 TPM->setLastUser(TLU, P);
Devang Patel4d06ace2007-02-07 19:37:53 +00001228 TLU.clear();
Devang Patel1c56a632007-01-08 19:29:38 +00001229 }
1230 }
1231 }
1232}
1233
1234/// Find appropriate Module Pass Manager in the PM Stack and
1235/// add self into that manager.
Devang Pateldffca632007-01-17 20:30:17 +00001236void ModulePass::assignPassManager(PMStack &PMS,
1237 PassManagerType PreferredType) {
Devang Patel1c56a632007-01-08 19:29:38 +00001238
Devang Patel1c56a632007-01-08 19:29:38 +00001239 // Find Module Pass Manager
1240 while(!PMS.empty()) {
Devang Patel23f8aa92007-01-17 21:19:23 +00001241 PassManagerType TopPMType = PMS.top()->getPassManagerType();
1242 if (TopPMType == PreferredType)
1243 break; // We found desired pass manager
1244 else if (TopPMType > PMT_ModulePassManager)
Devang Patel1c56a632007-01-08 19:29:38 +00001245 PMS.pop(); // Pop children pass managers
Devang Patelac99eca2007-01-11 19:59:06 +00001246 else
1247 break;
Devang Patel1c56a632007-01-08 19:29:38 +00001248 }
1249
Devang Patel23f8aa92007-01-17 21:19:23 +00001250 PMS.top()->add(this);
Devang Patel1c56a632007-01-08 19:29:38 +00001251}
1252
Devang Patel3312f752007-01-16 21:43:18 +00001253/// Find appropriate Function Pass Manager or Call Graph Pass Manager
1254/// in the PM Stack and add self into that manager.
Devang Pateldffca632007-01-17 20:30:17 +00001255void FunctionPass::assignPassManager(PMStack &PMS,
1256 PassManagerType PreferredType) {
Devang Patel1c56a632007-01-08 19:29:38 +00001257
Devang Patel15701b52007-01-11 00:19:00 +00001258 // Find Module Pass Manager (TODO : Or Call Graph Pass Manager)
Devang Patel1c56a632007-01-08 19:29:38 +00001259 while(!PMS.empty()) {
Devang Patelac99eca2007-01-11 19:59:06 +00001260 if (PMS.top()->getPassManagerType() > PMT_FunctionPassManager)
1261 PMS.pop();
Devang Patel1c56a632007-01-08 19:29:38 +00001262 else
Devang Patel3312f752007-01-16 21:43:18 +00001263 break;
1264 }
1265 FPPassManager *FPP = dynamic_cast<FPPassManager *>(PMS.top());
1266
1267 // Create new Function Pass Manager
1268 if (!FPP) {
1269 assert(!PMS.empty() && "Unable to create Function Pass Manager");
1270 PMDataManager *PMD = PMS.top();
1271
1272 // [1] Create new Function Pass Manager
1273 FPP = new FPPassManager(PMD->getDepth() + 1);
1274
1275 // [2] Set up new manager's top level manager
1276 PMTopLevelManager *TPM = PMD->getTopLevelManager();
1277 TPM->addIndirectPassManager(FPP);
1278
1279 // [3] Assign manager to manage this new manager. This may create
1280 // and push new managers into PMS
1281 Pass *P = dynamic_cast<Pass *>(FPP);
Devang Pateldffca632007-01-17 20:30:17 +00001282
1283 // If Call Graph Pass Manager is active then use it to manage
1284 // this new Function Pass manager.
1285 if (PMD->getPassManagerType() == PMT_CallGraphPassManager)
1286 P->assignPassManager(PMS, PMT_CallGraphPassManager);
1287 else
1288 P->assignPassManager(PMS);
Devang Patel3312f752007-01-16 21:43:18 +00001289
1290 // [4] Push new manager into PMS
1291 PMS.push(FPP);
Devang Patel1c56a632007-01-08 19:29:38 +00001292 }
1293
Devang Patel3312f752007-01-16 21:43:18 +00001294 // Assign FPP as the manager of this pass.
1295 FPP->add(this);
Devang Patel1c56a632007-01-08 19:29:38 +00001296}
1297
Devang Patel3312f752007-01-16 21:43:18 +00001298/// Find appropriate Basic Pass Manager or Call Graph Pass Manager
Devang Patel1c56a632007-01-08 19:29:38 +00001299/// in the PM Stack and add self into that manager.
Devang Pateldffca632007-01-17 20:30:17 +00001300void BasicBlockPass::assignPassManager(PMStack &PMS,
1301 PassManagerType PreferredType) {
Devang Patel1c56a632007-01-08 19:29:38 +00001302
1303 BBPassManager *BBP = NULL;
1304
Devang Patel15701b52007-01-11 00:19:00 +00001305 // Basic Pass Manager is a leaf pass manager. It does not handle
1306 // any other pass manager.
1307 if (!PMS.empty()) {
Devang Patel1c56a632007-01-08 19:29:38 +00001308 BBP = dynamic_cast<BBPassManager *>(PMS.top());
Devang Patel1c56a632007-01-08 19:29:38 +00001309 }
1310
Devang Patel3312f752007-01-16 21:43:18 +00001311 // If leaf manager is not Basic Block Pass manager then create new
1312 // basic Block Pass manager.
Devang Patel15701b52007-01-11 00:19:00 +00001313
Devang Patel3312f752007-01-16 21:43:18 +00001314 if (!BBP) {
1315 assert(!PMS.empty() && "Unable to create BasicBlock Pass Manager");
1316 PMDataManager *PMD = PMS.top();
1317
1318 // [1] Create new Basic Block Manager
1319 BBP = new BBPassManager(PMD->getDepth() + 1);
1320
1321 // [2] Set up new manager's top level manager
1322 // Basic Block Pass Manager does not live by itself
1323 PMTopLevelManager *TPM = PMD->getTopLevelManager();
1324 TPM->addIndirectPassManager(BBP);
1325
Devang Patel15701b52007-01-11 00:19:00 +00001326 // [3] Assign manager to manage this new manager. This may create
1327 // and push new managers into PMS
Devang Patel3312f752007-01-16 21:43:18 +00001328 Pass *P = dynamic_cast<Pass *>(BBP);
1329 P->assignPassManager(PMS);
Devang Patel15701b52007-01-11 00:19:00 +00001330
Devang Patel3312f752007-01-16 21:43:18 +00001331 // [4] Push new manager into PMS
1332 PMS.push(BBP);
1333 }
Devang Patel1c56a632007-01-08 19:29:38 +00001334
Devang Patel3312f752007-01-16 21:43:18 +00001335 // Assign BBP as the manager of this pass.
1336 BBP->add(this);
Devang Patel1c56a632007-01-08 19:29:38 +00001337}
1338
Devang Patelc6b5a552007-01-05 20:16:23 +00001339