blob: 711b6108a1ddcef904c5eae1d6b2bc19d1488c13 [file] [log] [blame]
Chris Lattner26e4f892002-01-21 07:37:31 +00001//===- Pass.cpp - LLVM Pass Infrastructure Impementation ------------------===//
2//
3// This file implements the LLVM Pass infrastructure. It is primarily
4// responsible with ensuring that passes are executed and batched together
5// optimally.
6//
7//===----------------------------------------------------------------------===//
8
Chris Lattnercdd09c22002-01-31 00:45:31 +00009#include "llvm/PassManager.h"
Chris Lattner37c86672002-04-28 20:46:05 +000010#include "PassManagerT.h" // PassManagerT implementation
Chris Lattnercdd09c22002-01-31 00:45:31 +000011#include "llvm/Module.h"
Chris Lattner26e4f892002-01-21 07:37:31 +000012#include "Support/STLExtras.h"
Chris Lattner37d3c952002-07-23 18:08:00 +000013#include "Support/TypeInfo.h"
John Criswell3ef61af2003-06-30 21:59:07 +000014#include "Config/stdio.h"
15#include "Config/sys/resource.h"
16#include "Config/sys/time.h"
17#include "Config/unistd.h"
Chris Lattner6e041bd2002-08-21 22:17:09 +000018#include <set>
Chris Lattnerd013ba92002-01-23 05:49:41 +000019
Chris Lattner675e7a92002-08-21 23:51:51 +000020// IncludeFile - Stub function used to help linking out.
21IncludeFile::IncludeFile(void*) {}
22
Chris Lattner7e0dbe62002-05-06 19:31:52 +000023//===----------------------------------------------------------------------===//
24// AnalysisID Class Implementation
25//
26
Chris Lattner198cf422002-07-30 16:27:02 +000027static std::vector<const PassInfo*> CFGOnlyAnalyses;
Chris Lattnercdd09c22002-01-31 00:45:31 +000028
Chris Lattner198cf422002-07-30 16:27:02 +000029void RegisterPassBase::setPreservesCFG() {
30 CFGOnlyAnalyses.push_back(PIObj);
Chris Lattner7e0dbe62002-05-06 19:31:52 +000031}
32
33//===----------------------------------------------------------------------===//
34// AnalysisResolver Class Implementation
35//
36
Chris Lattnercdd09c22002-01-31 00:45:31 +000037void AnalysisResolver::setAnalysisResolver(Pass *P, AnalysisResolver *AR) {
38 assert(P->Resolver == 0 && "Pass already in a PassManager!");
39 P->Resolver = AR;
40}
41
Chris Lattner7e0dbe62002-05-06 19:31:52 +000042//===----------------------------------------------------------------------===//
43// AnalysisUsage Class Implementation
44//
Chris Lattneree2ff5d2002-04-28 21:25:41 +000045
Chris Lattner820d9712002-10-21 20:00:28 +000046// setPreservesCFG - This function should be called to by the pass, iff they do
Chris Lattneree2ff5d2002-04-28 21:25:41 +000047// not:
48//
49// 1. Add or remove basic blocks from the function
50// 2. Modify terminator instructions in any way.
51//
52// This function annotates the AnalysisUsage info object to say that analyses
53// that only depend on the CFG are preserved by this pass.
54//
Chris Lattner820d9712002-10-21 20:00:28 +000055void AnalysisUsage::setPreservesCFG() {
Chris Lattner7e0dbe62002-05-06 19:31:52 +000056 // Since this transformation doesn't modify the CFG, it preserves all analyses
57 // that only depend on the CFG (like dominators, loop info, etc...)
58 //
59 Preserved.insert(Preserved.end(),
60 CFGOnlyAnalyses.begin(), CFGOnlyAnalyses.end());
Chris Lattneree2ff5d2002-04-28 21:25:41 +000061}
62
63
Chris Lattner37c86672002-04-28 20:46:05 +000064//===----------------------------------------------------------------------===//
65// PassManager implementation - The PassManager class is a simple Pimpl class
66// that wraps the PassManagerT template.
67//
68PassManager::PassManager() : PM(new PassManagerT<Module>()) {}
69PassManager::~PassManager() { delete PM; }
70void PassManager::add(Pass *P) { PM->add(P); }
Chris Lattner113f4f42002-06-25 16:13:24 +000071bool PassManager::run(Module &M) { return PM->run(M); }
Chris Lattnercdd09c22002-01-31 00:45:31 +000072
Brian Gaekeb7a83882003-08-12 17:22:39 +000073//===----------------------------------------------------------------------===//
74// FunctionPassManager implementation - The FunctionPassManager class
75// is a simple Pimpl class that wraps the PassManagerT template. It
76// is like PassManager, but only deals in FunctionPasses.
77//
78FunctionPassManager::FunctionPassManager() : PM(new PassManagerT<Function>()) {}
79FunctionPassManager::~FunctionPassManager() { delete PM; }
80void FunctionPassManager::add(FunctionPass *P) { PM->add(P); }
81bool FunctionPassManager::run(Function &F) { return PM->run(F); }
82
Chris Lattner37c86672002-04-28 20:46:05 +000083
84//===----------------------------------------------------------------------===//
Chris Lattnere2eb99e2002-04-29 04:04:29 +000085// TimingInfo Class - This class is used to calculate information about the
86// amount of time each pass takes to execute. This only happens with
87// -time-passes is enabled on the command line.
88//
Chris Lattnerf5cad152002-07-22 02:10:13 +000089static cl::opt<bool>
90EnableTiming("time-passes",
91 cl::desc("Time each pass, printing elapsed time for each on exit"));
Chris Lattnere2eb99e2002-04-29 04:04:29 +000092
Chris Lattnere7e09442003-08-14 05:20:28 +000093// createTheTimeInfo - This method either initializes the TheTimeInfo pointer to
94// a non null value (if the -time-passes option is enabled) or it leaves it
95// null. It may be called multiple times.
96void TimingInfo::createTheTimeInfo() {
97 if (!EnableTiming || TheTimeInfo) return;
98
99 // Constructed the first time this is called, iff -time-passes is enabled.
100 // This guarantees that the object will be constructed before static globals,
101 // thus it will be destroyed before them.
102 static TimingInfo TTI;
103 TheTimeInfo = &TTI;
Chris Lattnere2eb99e2002-04-29 04:04:29 +0000104}
105
Chris Lattner1e4867f2002-07-30 19:51:02 +0000106void PMDebug::PrintArgumentInformation(const Pass *P) {
107 // Print out passes in pass manager...
108 if (const AnalysisResolver *PM = dynamic_cast<const AnalysisResolver*>(P)) {
109 for (unsigned i = 0, e = PM->getNumContainedPasses(); i != e; ++i)
110 PrintArgumentInformation(PM->getContainedPass(i));
111
112 } else { // Normal pass. Print argument information...
113 // Print out arguments for registered passes that are _optimizations_
114 if (const PassInfo *PI = P->getPassInfo())
115 if (PI->getPassType() & PassInfo::Optimization)
116 std::cerr << " -" << PI->getPassArgument();
117 }
118}
Chris Lattnercdd09c22002-01-31 00:45:31 +0000119
120void PMDebug::PrintPassInformation(unsigned Depth, const char *Action,
Chris Lattnera454b5b2002-04-28 05:14:06 +0000121 Pass *P, Annotable *V) {
Chris Lattnerf5cad152002-07-22 02:10:13 +0000122 if (PassDebugging >= Executions) {
Chris Lattnerac3e0602002-01-31 18:32:27 +0000123 std::cerr << (void*)P << std::string(Depth*2+1, ' ') << Action << " '"
Chris Lattner37104aa2002-04-29 14:57:45 +0000124 << P->getPassName();
Chris Lattnercdd09c22002-01-31 00:45:31 +0000125 if (V) {
126 std::cerr << "' on ";
Chris Lattnera454b5b2002-04-28 05:14:06 +0000127
128 if (dynamic_cast<Module*>(V)) {
Chris Lattnercdd09c22002-01-31 00:45:31 +0000129 std::cerr << "Module\n"; return;
Chris Lattnera454b5b2002-04-28 05:14:06 +0000130 } else if (Function *F = dynamic_cast<Function*>(V))
131 std::cerr << "Function '" << F->getName();
132 else if (BasicBlock *BB = dynamic_cast<BasicBlock*>(V))
133 std::cerr << "BasicBlock '" << BB->getName();
134 else if (Value *Val = dynamic_cast<Value*>(V))
135 std::cerr << typeid(*Val).name() << " '" << Val->getName();
Chris Lattnercdd09c22002-01-31 00:45:31 +0000136 }
137 std::cerr << "'...\n";
138 }
139}
140
141void PMDebug::PrintAnalysisSetInfo(unsigned Depth, const char *Msg,
Chris Lattnerc8e66542002-04-27 06:56:12 +0000142 Pass *P, const std::vector<AnalysisID> &Set){
Chris Lattnerf5cad152002-07-22 02:10:13 +0000143 if (PassDebugging >= Details && !Set.empty()) {
Chris Lattnerac3e0602002-01-31 18:32:27 +0000144 std::cerr << (void*)P << std::string(Depth*2+3, ' ') << Msg << " Analyses:";
Chris Lattnerb3708e22002-08-30 20:23:45 +0000145 for (unsigned i = 0; i != Set.size(); ++i) {
146 if (i) std::cerr << ",";
147 std::cerr << " " << Set[i]->getPassName();
148 }
Chris Lattnercdd09c22002-01-31 00:45:31 +0000149 std::cerr << "\n";
150 }
151}
152
Chris Lattnercdd09c22002-01-31 00:45:31 +0000153//===----------------------------------------------------------------------===//
154// Pass Implementation
Chris Lattner654b5bc2002-01-22 00:17:48 +0000155//
Chris Lattnercdd09c22002-01-31 00:45:31 +0000156
Chris Lattnerc8e66542002-04-27 06:56:12 +0000157void Pass::addToPassManager(PassManagerT<Module> *PM, AnalysisUsage &AU) {
158 PM->addPass(this, AU);
Chris Lattner654b5bc2002-01-22 00:17:48 +0000159}
Chris Lattner26e4f892002-01-21 07:37:31 +0000160
Chris Lattner9ad77572003-03-21 21:41:02 +0000161bool Pass::mustPreserveAnalysisID(const PassInfo *AnalysisID) const {
162 return Resolver->getAnalysisToUpdate(AnalysisID) != 0;
163}
164
Chris Lattner198cf422002-07-30 16:27:02 +0000165// dumpPassStructure - Implement the -debug-passes=Structure option
166void Pass::dumpPassStructure(unsigned Offset) {
167 std::cerr << std::string(Offset*2, ' ') << getPassName() << "\n";
168}
Chris Lattner37104aa2002-04-29 14:57:45 +0000169
170// getPassName - Use C++ RTTI to get a SOMEWHAT intelligable name for the pass.
171//
Chris Lattner071577d2002-07-29 21:02:31 +0000172const char *Pass::getPassName() const {
173 if (const PassInfo *PI = getPassInfo())
174 return PI->getPassName();
175 return typeid(*this).name();
176}
Chris Lattner37104aa2002-04-29 14:57:45 +0000177
Chris Lattner26750072002-07-27 01:12:17 +0000178// print - Print out the internal state of the pass. This is called by Analyse
179// to print out the contents of an analysis. Otherwise it is not neccesary to
180// implement this method.
181//
182void Pass::print(std::ostream &O) const {
183 O << "Pass::print not implemented for pass: '" << getPassName() << "'!\n";
184}
185
186// dump - call print(std::cerr);
187void Pass::dump() const {
188 print(std::cerr, 0);
189}
190
Chris Lattnercdd09c22002-01-31 00:45:31 +0000191//===----------------------------------------------------------------------===//
Chris Lattneree0788d2002-09-25 21:59:11 +0000192// ImmutablePass Implementation
193//
194void ImmutablePass::addToPassManager(PassManagerT<Module> *PM,
195 AnalysisUsage &AU) {
196 PM->addPass(this, AU);
197}
198
199
200//===----------------------------------------------------------------------===//
Chris Lattnerc8e66542002-04-27 06:56:12 +0000201// FunctionPass Implementation
Chris Lattner26e4f892002-01-21 07:37:31 +0000202//
Chris Lattnercdd09c22002-01-31 00:45:31 +0000203
Chris Lattnerc8e66542002-04-27 06:56:12 +0000204// run - On a module, we run this pass by initializing, runOnFunction'ing once
205// for every function in the module, then by finalizing.
Chris Lattnercdd09c22002-01-31 00:45:31 +0000206//
Chris Lattner113f4f42002-06-25 16:13:24 +0000207bool FunctionPass::run(Module &M) {
Chris Lattnercdd09c22002-01-31 00:45:31 +0000208 bool Changed = doInitialization(M);
209
Chris Lattner113f4f42002-06-25 16:13:24 +0000210 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
211 if (!I->isExternal()) // Passes are not run on external functions!
Chris Lattnerc8e66542002-04-27 06:56:12 +0000212 Changed |= runOnFunction(*I);
Chris Lattnercdd09c22002-01-31 00:45:31 +0000213
214 return Changed | doFinalization(M);
Chris Lattner26e4f892002-01-21 07:37:31 +0000215}
216
Chris Lattnerc8e66542002-04-27 06:56:12 +0000217// run - On a function, we simply initialize, run the function, then finalize.
Chris Lattnercdd09c22002-01-31 00:45:31 +0000218//
Chris Lattner113f4f42002-06-25 16:13:24 +0000219bool FunctionPass::run(Function &F) {
220 if (F.isExternal()) return false;// Passes are not run on external functions!
Chris Lattnercdd09c22002-01-31 00:45:31 +0000221
Chris Lattner113f4f42002-06-25 16:13:24 +0000222 return doInitialization(*F.getParent()) | runOnFunction(F)
223 | doFinalization(*F.getParent());
Chris Lattner26e4f892002-01-21 07:37:31 +0000224}
Chris Lattnerd013ba92002-01-23 05:49:41 +0000225
Chris Lattnerc8e66542002-04-27 06:56:12 +0000226void FunctionPass::addToPassManager(PassManagerT<Module> *PM,
227 AnalysisUsage &AU) {
228 PM->addPass(this, AU);
Chris Lattnerd013ba92002-01-23 05:49:41 +0000229}
Chris Lattnercdd09c22002-01-31 00:45:31 +0000230
Chris Lattnerc8e66542002-04-27 06:56:12 +0000231void FunctionPass::addToPassManager(PassManagerT<Function> *PM,
232 AnalysisUsage &AU) {
233 PM->addPass(this, AU);
Chris Lattnercdd09c22002-01-31 00:45:31 +0000234}
235
236//===----------------------------------------------------------------------===//
237// BasicBlockPass Implementation
238//
239
Chris Lattnerc8e66542002-04-27 06:56:12 +0000240// To run this pass on a function, we simply call runOnBasicBlock once for each
241// function.
Chris Lattnercdd09c22002-01-31 00:45:31 +0000242//
Chris Lattner113f4f42002-06-25 16:13:24 +0000243bool BasicBlockPass::runOnFunction(Function &F) {
Chris Lattnerbae3c672002-09-12 17:06:40 +0000244 bool Changed = doInitialization(F);
Chris Lattner113f4f42002-06-25 16:13:24 +0000245 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
Chris Lattnercdd09c22002-01-31 00:45:31 +0000246 Changed |= runOnBasicBlock(*I);
Chris Lattnerbae3c672002-09-12 17:06:40 +0000247 return Changed | doFinalization(F);
Chris Lattnercdd09c22002-01-31 00:45:31 +0000248}
249
250// To run directly on the basic block, we initialize, runOnBasicBlock, then
251// finalize.
252//
Chris Lattner113f4f42002-06-25 16:13:24 +0000253bool BasicBlockPass::run(BasicBlock &BB) {
Chris Lattnerbae3c672002-09-12 17:06:40 +0000254 Function &F = *BB.getParent();
255 Module &M = *F.getParent();
256 return doInitialization(M) | doInitialization(F) | runOnBasicBlock(BB) |
257 doFinalization(F) | doFinalization(M);
Chris Lattnercdd09c22002-01-31 00:45:31 +0000258}
259
Chris Lattner57698e22002-03-26 18:01:55 +0000260void BasicBlockPass::addToPassManager(PassManagerT<Function> *PM,
Chris Lattnerc8e66542002-04-27 06:56:12 +0000261 AnalysisUsage &AU) {
262 PM->addPass(this, AU);
Chris Lattnercdd09c22002-01-31 00:45:31 +0000263}
264
265void BasicBlockPass::addToPassManager(PassManagerT<BasicBlock> *PM,
Chris Lattnerc8e66542002-04-27 06:56:12 +0000266 AnalysisUsage &AU) {
267 PM->addPass(this, AU);
Chris Lattnercdd09c22002-01-31 00:45:31 +0000268}
269
Chris Lattner37d3c952002-07-23 18:08:00 +0000270
271//===----------------------------------------------------------------------===//
272// Pass Registration mechanism
273//
274static std::map<TypeInfo, PassInfo*> *PassInfoMap = 0;
275static std::vector<PassRegistrationListener*> *Listeners = 0;
276
277// getPassInfo - Return the PassInfo data structure that corresponds to this
278// pass...
279const PassInfo *Pass::getPassInfo() const {
Chris Lattner071577d2002-07-29 21:02:31 +0000280 if (PassInfoCache) return PassInfoCache;
Chris Lattner4b169632002-08-21 17:08:37 +0000281 return lookupPassInfo(typeid(*this));
282}
283
284const PassInfo *Pass::lookupPassInfo(const std::type_info &TI) {
Chris Lattner071577d2002-07-29 21:02:31 +0000285 if (PassInfoMap == 0) return 0;
Chris Lattner4b169632002-08-21 17:08:37 +0000286 std::map<TypeInfo, PassInfo*>::iterator I = PassInfoMap->find(TI);
Chris Lattner071577d2002-07-29 21:02:31 +0000287 return (I != PassInfoMap->end()) ? I->second : 0;
Chris Lattner37d3c952002-07-23 18:08:00 +0000288}
289
290void RegisterPassBase::registerPass(PassInfo *PI) {
291 if (PassInfoMap == 0)
292 PassInfoMap = new std::map<TypeInfo, PassInfo*>();
293
294 assert(PassInfoMap->find(PI->getTypeInfo()) == PassInfoMap->end() &&
295 "Pass already registered!");
296 PIObj = PI;
297 PassInfoMap->insert(std::make_pair(TypeInfo(PI->getTypeInfo()), PI));
298
299 // Notify any listeners...
300 if (Listeners)
301 for (std::vector<PassRegistrationListener*>::iterator
302 I = Listeners->begin(), E = Listeners->end(); I != E; ++I)
303 (*I)->passRegistered(PI);
304}
305
Chris Lattner6e041bd2002-08-21 22:17:09 +0000306void RegisterPassBase::unregisterPass(PassInfo *PI) {
Chris Lattner37d3c952002-07-23 18:08:00 +0000307 assert(PassInfoMap && "Pass registered but not in map!");
308 std::map<TypeInfo, PassInfo*>::iterator I =
Chris Lattner6e041bd2002-08-21 22:17:09 +0000309 PassInfoMap->find(PI->getTypeInfo());
Chris Lattner37d3c952002-07-23 18:08:00 +0000310 assert(I != PassInfoMap->end() && "Pass registered but not in map!");
311
312 // Remove pass from the map...
313 PassInfoMap->erase(I);
314 if (PassInfoMap->empty()) {
315 delete PassInfoMap;
316 PassInfoMap = 0;
317 }
318
319 // Notify any listeners...
320 if (Listeners)
321 for (std::vector<PassRegistrationListener*>::iterator
322 I = Listeners->begin(), E = Listeners->end(); I != E; ++I)
Chris Lattner6e041bd2002-08-21 22:17:09 +0000323 (*I)->passUnregistered(PI);
Chris Lattner37d3c952002-07-23 18:08:00 +0000324
325 // Delete the PassInfo object itself...
Chris Lattner6e041bd2002-08-21 22:17:09 +0000326 delete PI;
Chris Lattner37d3c952002-07-23 18:08:00 +0000327}
328
Chris Lattner6e041bd2002-08-21 22:17:09 +0000329//===----------------------------------------------------------------------===//
330// Analysis Group Implementation Code
331//===----------------------------------------------------------------------===//
332
333struct AnalysisGroupInfo {
334 const PassInfo *DefaultImpl;
335 std::set<const PassInfo *> Implementations;
336 AnalysisGroupInfo() : DefaultImpl(0) {}
337};
338
339static std::map<const PassInfo *, AnalysisGroupInfo> *AnalysisGroupInfoMap = 0;
340
341// RegisterAGBase implementation
342//
343RegisterAGBase::RegisterAGBase(const std::type_info &Interface,
344 const std::type_info *Pass, bool isDefault)
345 : ImplementationInfo(0), isDefaultImplementation(isDefault) {
346
Chris Lattner6e041bd2002-08-21 22:17:09 +0000347 InterfaceInfo = const_cast<PassInfo*>(Pass::lookupPassInfo(Interface));
348 if (InterfaceInfo == 0) { // First reference to Interface, add it now.
349 InterfaceInfo = // Create the new PassInfo for the interface...
350 new PassInfo("", "", Interface, PassInfo::AnalysisGroup, 0, 0);
351 registerPass(InterfaceInfo);
352 PIObj = 0;
353 }
354 assert(InterfaceInfo->getPassType() == PassInfo::AnalysisGroup &&
355 "Trying to join an analysis group that is a normal pass!");
356
357 if (Pass) {
Chris Lattner6e041bd2002-08-21 22:17:09 +0000358 ImplementationInfo = Pass::lookupPassInfo(*Pass);
359 assert(ImplementationInfo &&
360 "Must register pass before adding to AnalysisGroup!");
361
Chris Lattnerb3708e22002-08-30 20:23:45 +0000362 // Make sure we keep track of the fact that the implementation implements
363 // the interface.
364 PassInfo *IIPI = const_cast<PassInfo*>(ImplementationInfo);
365 IIPI->addInterfaceImplemented(InterfaceInfo);
366
Chris Lattner6e041bd2002-08-21 22:17:09 +0000367 // Lazily allocate to avoid nasty initialization order dependencies
368 if (AnalysisGroupInfoMap == 0)
369 AnalysisGroupInfoMap = new std::map<const PassInfo *,AnalysisGroupInfo>();
370
371 AnalysisGroupInfo &AGI = (*AnalysisGroupInfoMap)[InterfaceInfo];
372 assert(AGI.Implementations.count(ImplementationInfo) == 0 &&
373 "Cannot add a pass to the same analysis group more than once!");
374 AGI.Implementations.insert(ImplementationInfo);
375 if (isDefault) {
376 assert(AGI.DefaultImpl == 0 && InterfaceInfo->getNormalCtor() == 0 &&
377 "Default implementation for analysis group already specified!");
378 assert(ImplementationInfo->getNormalCtor() &&
379 "Cannot specify pass as default if it does not have a default ctor");
380 AGI.DefaultImpl = ImplementationInfo;
381 InterfaceInfo->setNormalCtor(ImplementationInfo->getNormalCtor());
382 }
383 }
384}
385
386void RegisterAGBase::setGroupName(const char *Name) {
387 assert(InterfaceInfo->getPassName()[0] == 0 && "Interface Name already set!");
388 InterfaceInfo->setPassName(Name);
389}
390
391RegisterAGBase::~RegisterAGBase() {
392 if (ImplementationInfo) {
393 assert(AnalysisGroupInfoMap && "Inserted into map, but map doesn't exist?");
394 AnalysisGroupInfo &AGI = (*AnalysisGroupInfoMap)[InterfaceInfo];
395
396 assert(AGI.Implementations.count(ImplementationInfo) &&
397 "Pass not a member of analysis group?");
398
399 if (AGI.DefaultImpl == ImplementationInfo)
400 AGI.DefaultImpl = 0;
401
402 AGI.Implementations.erase(ImplementationInfo);
403
404 // Last member of this analysis group? Unregister PassInfo, delete map entry
405 if (AGI.Implementations.empty()) {
406 assert(AGI.DefaultImpl == 0 &&
407 "Default implementation didn't unregister?");
408 AnalysisGroupInfoMap->erase(InterfaceInfo);
409 if (AnalysisGroupInfoMap->empty()) { // Delete map if empty
410 delete AnalysisGroupInfoMap;
411 AnalysisGroupInfoMap = 0;
412 }
413
414 unregisterPass(InterfaceInfo);
415 }
416 }
417}
418
419
Chris Lattner37d3c952002-07-23 18:08:00 +0000420//===----------------------------------------------------------------------===//
421// PassRegistrationListener implementation
422//
423
424// PassRegistrationListener ctor - Add the current object to the list of
425// PassRegistrationListeners...
426PassRegistrationListener::PassRegistrationListener() {
427 if (!Listeners) Listeners = new std::vector<PassRegistrationListener*>();
428 Listeners->push_back(this);
429}
430
431// dtor - Remove object from list of listeners...
432PassRegistrationListener::~PassRegistrationListener() {
433 std::vector<PassRegistrationListener*>::iterator I =
434 std::find(Listeners->begin(), Listeners->end(), this);
435 assert(Listeners && I != Listeners->end() &&
436 "PassRegistrationListener not registered!");
437 Listeners->erase(I);
438
439 if (Listeners->empty()) {
440 delete Listeners;
441 Listeners = 0;
442 }
443}
444
445// enumeratePasses - Iterate over the registered passes, calling the
446// passEnumerate callback on each PassInfo object.
447//
448void PassRegistrationListener::enumeratePasses() {
449 if (PassInfoMap)
450 for (std::map<TypeInfo, PassInfo*>::iterator I = PassInfoMap->begin(),
451 E = PassInfoMap->end(); I != E; ++I)
452 passEnumerate(I->second);
453}