blob: 9a2a57b6095a767245ef1dce6250c3a513a29c05 [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 Patel67d6a5e2006-12-19 19:46:59 +0000161 }
Devang Patel0f080042007-01-12 17:23:48 +0000162
Devang Patel67d6a5e2006-12-19 19:46:59 +0000163 }
164
165 FPPassManager *getContainedManager(unsigned N) {
166 assert ( N < PassManagers.size() && "Pass number out of range!");
167 FPPassManager *FP = static_cast<FPPassManager *>(PassManagers[N]);
168 return FP;
169 }
170
Devang Patel67d6a5e2006-12-19 19:46:59 +0000171};
172
173//===----------------------------------------------------------------------===//
174// MPPassManager
175//
176/// MPPassManager manages ModulePasses and function pass managers.
Devang Patelca58e352006-11-08 10:05:38 +0000177/// It batches all Module passes passes and function pass managers together and
178/// sequence them to process one module.
Devang Patel67d6a5e2006-12-19 19:46:59 +0000179class MPPassManager : public Pass, public PMDataManager {
Devang Patelca58e352006-11-08 10:05:38 +0000180
181public:
Devang Patel0f080042007-01-12 17:23:48 +0000182 MPPassManager(int Depth) : PMDataManager(Depth) { }
Devang Patel2ff44922007-04-16 20:39:59 +0000183
184 // Delete on the fly managers.
185 virtual ~MPPassManager() {
186 for (std::map<Pass *, FPPassManager *>::iterator
187 I = OnTheFlyManagers.begin(), E = OnTheFlyManagers.end();
188 I != E; ++I) {
189 FPPassManager *FPP = I->second;
190 delete FPP;
191 }
192 }
193
Devang Patelca58e352006-11-08 10:05:38 +0000194 /// run - Execute all of the passes scheduled for execution. Keep track of
195 /// whether any of the passes modifies the module, and if so, return true.
196 bool runOnModule(Module &M);
Devang Patelebba9702006-11-13 22:40:09 +0000197
Devang Patelf9d96b92006-12-07 19:57:52 +0000198 /// Pass Manager itself does not invalidate any analysis info.
199 void getAnalysisUsage(AnalysisUsage &Info) const {
200 Info.setPreservesAll();
201 }
202
Devang Patele64d3052007-04-16 20:12:57 +0000203 /// Add RequiredPass into list of lower level passes required by pass P.
204 /// RequiredPass is run on the fly by Pass Manager when P requests it
205 /// through getAnalysis interface.
206 virtual void addLowerLevelRequiredPass(Pass *P, Pass *RequiredPass);
207
Devang Patel69e9f6d2007-04-16 20:27:05 +0000208 /// Return function pass corresponding to PassInfo PI, that is
209 /// required by module pass MP. Instantiate analysis pass, by using
210 /// its runOnFunction() for function F.
211 virtual Pass* getOnTheFlyPass(Pass *MP, const PassInfo *PI, Function &F);
212
Devang Patele3858e62007-02-01 22:08:25 +0000213 virtual const char *getPassName() const {
214 return "Module Pass Manager";
215 }
216
Devang Pateleda56172006-12-12 23:34:33 +0000217 // Print passes managed by this manager
218 void dumpPassStructure(unsigned Offset) {
219 llvm::cerr << std::string(Offset*2, ' ') << "ModulePass Manager\n";
Devang Patelabfbe3b2006-12-16 00:56:26 +0000220 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
221 ModulePass *MP = getContainedPass(Index);
222 MP->dumpPassStructure(Offset + 1);
Devang Patel2ff44922007-04-16 20:39:59 +0000223 if (FPPassManager *FPP = OnTheFlyManagers[MP])
224 FPP->dumpPassStructure(Offset + 2);
Devang Patelabfbe3b2006-12-16 00:56:26 +0000225 dumpLastUses(MP, Offset+1);
Devang Pateleda56172006-12-12 23:34:33 +0000226 }
227 }
228
Devang Patelabfbe3b2006-12-16 00:56:26 +0000229 ModulePass *getContainedPass(unsigned N) {
230 assert ( N < PassVector.size() && "Pass number out of range!");
231 ModulePass *MP = static_cast<ModulePass *>(PassVector[N]);
232 return MP;
233 }
234
Devang Patel28349ab2007-02-27 15:00:39 +0000235 virtual PassManagerType getPassManagerType() const {
236 return PMT_ModulePassManager;
237 }
Devang Patel69e9f6d2007-04-16 20:27:05 +0000238
239 private:
240 /// Collection of on the fly FPPassManagers. These managers manage
241 /// function passes that are required by module passes.
242 std::map<Pass *, FPPassManager *> OnTheFlyManagers;
Devang Patelca58e352006-11-08 10:05:38 +0000243};
244
Devang Patel10c2ca62006-12-12 22:47:13 +0000245//===----------------------------------------------------------------------===//
Devang Patel67d6a5e2006-12-19 19:46:59 +0000246// PassManagerImpl
Devang Patel10c2ca62006-12-12 22:47:13 +0000247//
Devang Patel67d6a5e2006-12-19 19:46:59 +0000248/// PassManagerImpl manages MPPassManagers
249class PassManagerImpl : public Pass,
Devang Patelad98d232007-01-11 22:15:30 +0000250 public PMDataManager,
251 public PMTopLevelManager {
Devang Patel376fefa2006-11-08 10:29:57 +0000252
253public:
254
Devang Patel4268fc02007-01-16 02:00:38 +0000255 PassManagerImpl(int Depth) : PMDataManager(Depth),
256 PMTopLevelManager(TLM_Pass) { }
Devang Patel4c36e6b2006-12-07 23:24:58 +0000257
Devang Patel376fefa2006-11-08 10:29:57 +0000258 /// add - Add a pass to the queue of passes to run. This passes ownership of
259 /// the Pass to the PassManager. When the PassManager is destroyed, the pass
260 /// will be destroyed as well, so there is no need to delete the pass. This
261 /// implies that all passes MUST be allocated with 'new'.
Devang Patel31217af2006-12-07 21:32:57 +0000262 void add(Pass *P) {
Devang Pateldf6c9ae2006-12-08 22:34:02 +0000263 schedulePass(P);
Devang Patel31217af2006-12-07 21:32:57 +0000264 }
Devang Patel376fefa2006-11-08 10:29:57 +0000265
266 /// run - Execute all of the passes scheduled for execution. Keep track of
267 /// whether any of the passes modifies the module, and if so, return true.
268 bool run(Module &M);
269
Devang Patelf9d96b92006-12-07 19:57:52 +0000270 /// Pass Manager itself does not invalidate any analysis info.
271 void getAnalysisUsage(AnalysisUsage &Info) const {
272 Info.setPreservesAll();
273 }
274
Devang Patelabcd1d32006-12-07 21:27:23 +0000275 inline void addTopLevelPass(Pass *P) {
Devang Pateld440cd92006-12-08 23:53:00 +0000276
Devang Patelfa971cd2006-12-08 23:57:43 +0000277 if (ImmutablePass *IP = dynamic_cast<ImmutablePass *> (P)) {
Devang Pateld440cd92006-12-08 23:53:00 +0000278
279 // P is a immutable pass and it will be managed by this
280 // top level manager. Set up analysis resolver to connect them.
Devang Patelb66334b2007-01-05 22:47:07 +0000281 AnalysisResolver *AR = new AnalysisResolver(*this);
Devang Pateld440cd92006-12-08 23:53:00 +0000282 P->setResolver(AR);
Devang Patel95257542006-12-12 22:21:37 +0000283 initializeAnalysisImpl(P);
Devang Patelfa971cd2006-12-08 23:57:43 +0000284 addImmutablePass(IP);
Devang Patel95257542006-12-12 22:21:37 +0000285 recordAvailableAnalysis(IP);
Devang Patel0f080042007-01-12 17:23:48 +0000286 } else {
Devang Patel0f080042007-01-12 17:23:48 +0000287 P->assignPassManager(activeStack);
Devang Pateld440cd92006-12-08 23:53:00 +0000288 }
Devang Patel0f080042007-01-12 17:23:48 +0000289
Devang Patelabcd1d32006-12-07 21:27:23 +0000290 }
291
Devang Patel67d6a5e2006-12-19 19:46:59 +0000292 MPPassManager *getContainedManager(unsigned N) {
293 assert ( N < PassManagers.size() && "Pass number out of range!");
294 MPPassManager *MP = static_cast<MPPassManager *>(PassManagers[N]);
295 return MP;
296 }
297
Devang Patel376fefa2006-11-08 10:29:57 +0000298};
299
Devang Patel1c3633e2007-01-29 23:10:37 +0000300} // End of llvm namespace
301
302namespace {
303
304//===----------------------------------------------------------------------===//
305// TimingInfo Class - This class is used to calculate information about the
306// amount of time each pass takes to execute. This only happens when
307// -time-passes is enabled on the command line.
308//
309
310class VISIBILITY_HIDDEN TimingInfo {
311 std::map<Pass*, Timer> TimingData;
312 TimerGroup TG;
313
314public:
315 // Use 'create' member to get this.
316 TimingInfo() : TG("... Pass execution timing report ...") {}
317
318 // TimingDtor - Print out information about timing information
319 ~TimingInfo() {
320 // Delete all of the timers...
321 TimingData.clear();
322 // TimerGroup is deleted next, printing the report.
323 }
324
325 // createTheTimeInfo - This method either initializes the TheTimeInfo pointer
326 // to a non null value (if the -time-passes option is enabled) or it leaves it
327 // null. It may be called multiple times.
328 static void createTheTimeInfo();
329
330 void passStarted(Pass *P) {
331
332 if (dynamic_cast<PMDataManager *>(P))
333 return;
334
335 std::map<Pass*, Timer>::iterator I = TimingData.find(P);
336 if (I == TimingData.end())
337 I=TimingData.insert(std::make_pair(P, Timer(P->getPassName(), TG))).first;
338 I->second.startTimer();
339 }
340 void passEnded(Pass *P) {
341
342 if (dynamic_cast<PMDataManager *>(P))
343 return;
344
345 std::map<Pass*, Timer>::iterator I = TimingData.find(P);
346 assert (I != TimingData.end() && "passStarted/passEnded not nested right!");
347 I->second.stopTimer();
348 }
349};
350
Devang Patelb8817b92006-12-14 00:59:42 +0000351static TimingInfo *TheTimeInfo;
352
Devang Patel1c3633e2007-01-29 23:10:37 +0000353} // End of anon namespace
Devang Patelca58e352006-11-08 10:05:38 +0000354
Devang Patela1514cb2006-12-07 19:39:39 +0000355//===----------------------------------------------------------------------===//
Devang Patelafb1f3622006-12-12 22:35:25 +0000356// PMTopLevelManager implementation
357
Devang Patel4268fc02007-01-16 02:00:38 +0000358/// Initialize top level manager. Create first pass manager.
359PMTopLevelManager::PMTopLevelManager (enum TopLevelManagerType t) {
360
361 if (t == TLM_Pass) {
362 MPPassManager *MPP = new MPPassManager(1);
363 MPP->setTopLevelManager(this);
364 addPassManager(MPP);
365 activeStack.push(MPP);
366 }
367 else if (t == TLM_Function) {
368 FPPassManager *FPP = new FPPassManager(1);
369 FPP->setTopLevelManager(this);
370 addPassManager(FPP);
371 activeStack.push(FPP);
372 }
373}
374
Devang Patelafb1f3622006-12-12 22:35:25 +0000375/// Set pass P as the last user of the given analysis passes.
376void PMTopLevelManager::setLastUser(std::vector<Pass *> &AnalysisPasses,
377 Pass *P) {
378
379 for (std::vector<Pass *>::iterator I = AnalysisPasses.begin(),
380 E = AnalysisPasses.end(); I != E; ++I) {
381 Pass *AP = *I;
382 LastUser[AP] = P;
Devang Patel01919d22007-03-08 19:05:01 +0000383
384 if (P == AP)
385 continue;
386
Devang Patelafb1f3622006-12-12 22:35:25 +0000387 // If AP is the last user of other passes then make P last user of
388 // such passes.
389 for (std::map<Pass *, Pass *>::iterator LUI = LastUser.begin(),
390 LUE = LastUser.end(); LUI != LUE; ++LUI) {
391 if (LUI->second == AP)
392 LastUser[LUI->first] = P;
393 }
394 }
Devang Patelafb1f3622006-12-12 22:35:25 +0000395}
396
397/// Collect passes whose last user is P
398void PMTopLevelManager::collectLastUses(std::vector<Pass *> &LastUses,
399 Pass *P) {
Chris Lattner9df8be42007-02-17 23:14:24 +0000400 for (std::map<Pass *, Pass *>::iterator LUI = LastUser.begin(),
401 LUE = LastUser.end(); LUI != LUE; ++LUI)
402 if (LUI->second == P)
403 LastUses.push_back(LUI->first);
Devang Patelafb1f3622006-12-12 22:35:25 +0000404}
405
406/// Schedule pass P for execution. Make sure that passes required by
407/// P are run before P is run. Update analysis info maintained by
408/// the manager. Remove dead passes. This is a recursive function.
409void PMTopLevelManager::schedulePass(Pass *P) {
410
Devang Patel3312f752007-01-16 21:43:18 +0000411 // TODO : Allocate function manager for this pass, other wise required set
412 // may be inserted into previous function manager
Devang Patelafb1f3622006-12-12 22:35:25 +0000413
Devang Patel3f806962007-02-05 19:34:17 +0000414 // If this Analysis is already requested by one of the previous pass
415 // and it is still available then do not insert new pass in the queue again.
416 if (findAnalysisPass(P->getPassInfo()))
417 return;
418
Devang Pateld74ede72007-03-06 01:06:16 +0000419 // Give pass a chance to prepare the stage.
420 P->preparePassManager(activeStack);
421
Devang Patelafb1f3622006-12-12 22:35:25 +0000422 AnalysisUsage AnUsage;
423 P->getAnalysisUsage(AnUsage);
424 const std::vector<AnalysisID> &RequiredSet = AnUsage.getRequiredSet();
425 for (std::vector<AnalysisID>::const_iterator I = RequiredSet.begin(),
426 E = RequiredSet.end(); I != E; ++I) {
427
428 Pass *AnalysisPass = findAnalysisPass(*I);
429 if (!AnalysisPass) {
Devang Patelafb1f3622006-12-12 22:35:25 +0000430 AnalysisPass = (*I)->createPass();
Devang Patele64d3052007-04-16 20:12:57 +0000431 // Schedule this analysis run first only if it is not a lower level
432 // analysis pass. Lower level analsyis passes are run on the fly.
433 if (P->getPotentialPassManagerType () >=
434 AnalysisPass->getPotentialPassManagerType())
435 schedulePass(AnalysisPass);
436 else
437 delete AnalysisPass;
Devang Patelafb1f3622006-12-12 22:35:25 +0000438 }
439 }
440
441 // Now all required passes are available.
442 addTopLevelPass(P);
443}
444
445/// Find the pass that implements Analysis AID. Search immutable
446/// passes and all pass managers. If desired pass is not found
447/// then return NULL.
448Pass *PMTopLevelManager::findAnalysisPass(AnalysisID AID) {
449
450 Pass *P = NULL;
Devang Patelcd6ba152006-12-12 22:50:05 +0000451 // Check pass managers
452 for (std::vector<Pass *>::iterator I = PassManagers.begin(),
453 E = PassManagers.end(); P == NULL && I != E; ++I) {
454 PMDataManager *PMD = dynamic_cast<PMDataManager *>(*I);
455 assert(PMD && "This is not a PassManager");
456 P = PMD->findAnalysisPass(AID, false);
457 }
458
459 // Check other pass managers
460 for (std::vector<PMDataManager *>::iterator I = IndirectPassManagers.begin(),
461 E = IndirectPassManagers.end(); P == NULL && I != E; ++I)
462 P = (*I)->findAnalysisPass(AID, false);
463
Devang Patelafb1f3622006-12-12 22:35:25 +0000464 for (std::vector<ImmutablePass *>::iterator I = ImmutablePasses.begin(),
465 E = ImmutablePasses.end(); P == NULL && I != E; ++I) {
466 const PassInfo *PI = (*I)->getPassInfo();
467 if (PI == AID)
468 P = *I;
469
470 // If Pass not found then check the interfaces implemented by Immutable Pass
471 if (!P) {
Devang Patel56d48ec2006-12-15 22:57:49 +0000472 const std::vector<const PassInfo*> &ImmPI = PI->getInterfacesImplemented();
473 if (std::find(ImmPI.begin(), ImmPI.end(), AID) != ImmPI.end())
474 P = *I;
Devang Patelafb1f3622006-12-12 22:35:25 +0000475 }
476 }
477
Devang Patelafb1f3622006-12-12 22:35:25 +0000478 return P;
479}
480
Devang Pateleda56172006-12-12 23:34:33 +0000481// Print passes managed by this top level manager.
Devang Patel991aeba2006-12-15 20:13:01 +0000482void PMTopLevelManager::dumpPasses() const {
Devang Pateleda56172006-12-12 23:34:33 +0000483
Devang Patelfd4184322007-01-17 20:33:36 +0000484 if (PassDebugging < Structure)
Devang Patel67d6a5e2006-12-19 19:46:59 +0000485 return;
486
Devang Pateleda56172006-12-12 23:34:33 +0000487 // Print out the immutable passes
488 for (unsigned i = 0, e = ImmutablePasses.size(); i != e; ++i) {
489 ImmutablePasses[i]->dumpPassStructure(0);
490 }
491
Devang Patel991aeba2006-12-15 20:13:01 +0000492 for (std::vector<Pass *>::const_iterator I = PassManagers.begin(),
Devang Pateleda56172006-12-12 23:34:33 +0000493 E = PassManagers.end(); I != E; ++I)
494 (*I)->dumpPassStructure(1);
Devang Pateleda56172006-12-12 23:34:33 +0000495}
496
Devang Patel991aeba2006-12-15 20:13:01 +0000497void PMTopLevelManager::dumpArguments() const {
Devang Patelcfd70c42006-12-13 22:10:00 +0000498
Devang Patelfd4184322007-01-17 20:33:36 +0000499 if (PassDebugging < Arguments)
Devang Patelcfd70c42006-12-13 22:10:00 +0000500 return;
501
502 cerr << "Pass Arguments: ";
Devang Patel991aeba2006-12-15 20:13:01 +0000503 for (std::vector<Pass *>::const_iterator I = PassManagers.begin(),
Devang Patelcfd70c42006-12-13 22:10:00 +0000504 E = PassManagers.end(); I != E; ++I) {
505 PMDataManager *PMD = dynamic_cast<PMDataManager *>(*I);
506 assert(PMD && "This is not a PassManager");
507 PMD->dumpPassArguments();
508 }
509 cerr << "\n";
510}
511
Devang Patele3068402006-12-21 00:16:50 +0000512void PMTopLevelManager::initializeAllAnalysisInfo() {
513
514 for (std::vector<Pass *>::iterator I = PassManagers.begin(),
515 E = PassManagers.end(); I != E; ++I) {
516 PMDataManager *PMD = dynamic_cast<PMDataManager *>(*I);
517 assert(PMD && "This is not a PassManager");
518 PMD->initializeAnalysisInfo();
519 }
520
521 // Initailize other pass managers
522 for (std::vector<PMDataManager *>::iterator I = IndirectPassManagers.begin(),
523 E = IndirectPassManagers.end(); I != E; ++I)
524 (*I)->initializeAnalysisInfo();
525}
526
Devang Patele7599552007-01-12 18:52:44 +0000527/// Destructor
528PMTopLevelManager::~PMTopLevelManager() {
529 for (std::vector<Pass *>::iterator I = PassManagers.begin(),
530 E = PassManagers.end(); I != E; ++I)
531 delete *I;
532
533 for (std::vector<ImmutablePass *>::iterator
534 I = ImmutablePasses.begin(), E = ImmutablePasses.end(); I != E; ++I)
535 delete *I;
536
537 PassManagers.clear();
538}
539
Devang Patelafb1f3622006-12-12 22:35:25 +0000540//===----------------------------------------------------------------------===//
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000541// PMDataManager implementation
Devang Patelf68a3492006-11-07 22:35:17 +0000542
Devang Pateld65e9e92006-11-08 01:31:28 +0000543/// Return true IFF pass P's required analysis set does not required new
Devang Patelf68a3492006-11-07 22:35:17 +0000544/// manager.
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000545bool PMDataManager::manageablePass(Pass *P) {
Devang Patelf68a3492006-11-07 22:35:17 +0000546
Devang Patel8f677ce2006-12-07 18:47:25 +0000547 // TODO
548 // If this pass is not preserving information that is required by a
549 // pass maintained by higher level pass manager then do not insert
550 // this pass into current manager. Use new manager. For example,
551 // For example, If FunctionPass F is not preserving ModulePass Info M1
552 // that is used by another ModulePass M2 then do not insert F in
553 // current function pass manager.
Devang Patelf68a3492006-11-07 22:35:17 +0000554 return true;
555}
556
Devang Patel643676c2006-11-11 01:10:19 +0000557/// Augement AvailableAnalysis by adding analysis made available by pass P.
Devang Patele9976aa2006-12-07 19:33:53 +0000558void PMDataManager::recordAvailableAnalysis(Pass *P) {
Devang Patelf60b5d92006-11-14 01:59:59 +0000559
Devang Patel643676c2006-11-11 01:10:19 +0000560 if (const PassInfo *PI = P->getPassInfo()) {
Devang Patelf60b5d92006-11-14 01:59:59 +0000561 AvailableAnalysis[PI] = P;
Devang Patel643676c2006-11-11 01:10:19 +0000562
Devang Patele9976aa2006-12-07 19:33:53 +0000563 //This pass is the current implementation of all of the interfaces it
564 //implements as well.
565 const std::vector<const PassInfo*> &II = PI->getInterfacesImplemented();
566 for (unsigned i = 0, e = II.size(); i != e; ++i)
567 AvailableAnalysis[II[i]] = P;
Devang Patel643676c2006-11-11 01:10:19 +0000568 }
569}
570
Devang Patel9d9fc902007-03-06 17:52:53 +0000571// Return true if P preserves high level analysis used by other
572// passes managed by this manager
573bool PMDataManager::preserveHigherLevelAnalysis(Pass *P) {
574
575 AnalysisUsage AnUsage;
576 P->getAnalysisUsage(AnUsage);
577
578 if (AnUsage.getPreservesAll())
579 return true;
580
581 const std::vector<AnalysisID> &PreservedSet = AnUsage.getPreservedSet();
582 for (std::vector<Pass *>::iterator I = HigherLevelAnalysis.begin(),
583 E = HigherLevelAnalysis.end(); I != E; ++I) {
584 Pass *P1 = *I;
Devang Patel01919d22007-03-08 19:05:01 +0000585 if (!dynamic_cast<ImmutablePass*>(P1)
586 && std::find(PreservedSet.begin(), PreservedSet.end(), P1->getPassInfo()) ==
587 PreservedSet.end())
588 return false;
Devang Patel9d9fc902007-03-06 17:52:53 +0000589 }
590
591 return true;
592}
593
Devang Patelf68a3492006-11-07 22:35:17 +0000594/// Remove Analyss not preserved by Pass P
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000595void PMDataManager::removeNotPreservedAnalysis(Pass *P) {
Devang Patel349170f2006-11-11 01:24:55 +0000596 AnalysisUsage AnUsage;
597 P->getAnalysisUsage(AnUsage);
Devang Patelf68a3492006-11-07 22:35:17 +0000598
Devang Patel2e169c32006-12-07 20:03:49 +0000599 if (AnUsage.getPreservesAll())
600 return;
601
602 const std::vector<AnalysisID> &PreservedSet = AnUsage.getPreservedSet();
Devang Patelf60b5d92006-11-14 01:59:59 +0000603 for (std::map<AnalysisID, Pass*>::iterator I = AvailableAnalysis.begin(),
Devang Patelbe6bd55e2006-12-12 23:07:44 +0000604 E = AvailableAnalysis.end(); I != E; ) {
Devang Patel56d48ec2006-12-15 22:57:49 +0000605 std::map<AnalysisID, Pass*>::iterator Info = I++;
Devang Patel01919d22007-03-08 19:05:01 +0000606 if (!dynamic_cast<ImmutablePass*>(Info->second)
607 && std::find(PreservedSet.begin(), PreservedSet.end(), Info->first) ==
608 PreservedSet.end())
Devang Patel349170f2006-11-11 01:24:55 +0000609 // Remove this analysis
Devang Patel01919d22007-03-08 19:05:01 +0000610 AvailableAnalysis.erase(Info);
Devang Patel349170f2006-11-11 01:24:55 +0000611 }
Devang Patel42dd1e92007-03-06 01:55:46 +0000612
613 // Check inherited analysis also. If P is not preserving analysis
614 // provided by parent manager then remove it here.
615 for (unsigned Index = 0; Index < PMT_Last; ++Index) {
616
617 if (!InheritedAnalysis[Index])
618 continue;
619
620 for (std::map<AnalysisID, Pass*>::iterator
621 I = InheritedAnalysis[Index]->begin(),
622 E = InheritedAnalysis[Index]->end(); I != E; ) {
623 std::map<AnalysisID, Pass *>::iterator Info = I++;
Devang Patel01919d22007-03-08 19:05:01 +0000624 if (!dynamic_cast<ImmutablePass*>(Info->second)
625 && std::find(PreservedSet.begin(), PreservedSet.end(), Info->first) ==
626 PreservedSet.end())
Devang Patel42dd1e92007-03-06 01:55:46 +0000627 // Remove this analysis
Devang Patel01919d22007-03-08 19:05:01 +0000628 InheritedAnalysis[Index]->erase(Info);
Devang Patel42dd1e92007-03-06 01:55:46 +0000629 }
630 }
631
Devang Patelf68a3492006-11-07 22:35:17 +0000632}
633
Devang Patelca189262006-11-14 03:05:08 +0000634/// Remove analysis passes that are not used any longer
Devang Patel003a5592007-03-05 20:01:30 +0000635void PMDataManager::removeDeadPasses(Pass *P, std::string Msg,
636 enum PassDebuggingString DBG_STR) {
Devang Patel17ad0962006-12-08 00:37:52 +0000637
638 std::vector<Pass *> DeadPasses;
Devang Patel69e9f6d2007-04-16 20:27:05 +0000639
Devang Patel2ff44922007-04-16 20:39:59 +0000640 // If this is a on the fly manager then it does not have TPM.
Devang Patel69e9f6d2007-04-16 20:27:05 +0000641 if (!TPM)
642 return;
643
Devang Patel17ad0962006-12-08 00:37:52 +0000644 TPM->collectLastUses(DeadPasses, P);
645
646 for (std::vector<Pass *>::iterator I = DeadPasses.begin(),
647 E = DeadPasses.end(); I != E; ++I) {
Devang Patel200d3052006-12-13 23:50:44 +0000648
Devang Patel003a5592007-03-05 20:01:30 +0000649 dumpPassInfo(*I, FREEING_MSG, DBG_STR, Msg);
Devang Patel200d3052006-12-13 23:50:44 +0000650
Devang Patel7ebf09d2007-03-05 18:20:51 +0000651 if (TheTimeInfo) TheTimeInfo->passStarted(*I);
Devang Patel17ad0962006-12-08 00:37:52 +0000652 (*I)->releaseMemory();
Devang Patel7ebf09d2007-03-05 18:20:51 +0000653 if (TheTimeInfo) TheTimeInfo->passEnded(*I);
Devang Patelb8817b92006-12-14 00:59:42 +0000654
Devang Patel17ad0962006-12-08 00:37:52 +0000655 std::map<AnalysisID, Pass*>::iterator Pos =
656 AvailableAnalysis.find((*I)->getPassInfo());
657
Devang Patel475c4532006-12-08 00:59:05 +0000658 // It is possible that pass is already removed from the AvailableAnalysis
Devang Patel17ad0962006-12-08 00:37:52 +0000659 if (Pos != AvailableAnalysis.end())
660 AvailableAnalysis.erase(Pos);
661 }
Devang Patelca189262006-11-14 03:05:08 +0000662}
663
Devang Patel8f677ce2006-12-07 18:47:25 +0000664/// Add pass P into the PassVector. Update
Devang Patel90b05e02006-11-11 02:04:19 +0000665/// AvailableAnalysis appropriately if ProcessAnalysis is true.
Devang Patelf85793d2007-01-12 20:07:16 +0000666void PMDataManager::add(Pass *P,
Devang Patel6975b6e2007-01-15 23:06:56 +0000667 bool ProcessAnalysis) {
Devang Patel8cad70d2006-11-11 01:51:02 +0000668
Devang Pateld440cd92006-12-08 23:53:00 +0000669 // This manager is going to manage pass P. Set up analysis resolver
670 // to connect them.
Devang Patelb66334b2007-01-05 22:47:07 +0000671 AnalysisResolver *AR = new AnalysisResolver(*this);
Devang Pateld440cd92006-12-08 23:53:00 +0000672 P->setResolver(AR);
673
Devang Patelec2b9a72007-03-05 22:57:49 +0000674 // If a FunctionPass F is the last user of ModulePass info M
675 // then the F's manager, not F, records itself as a last user of M.
676 std::vector<Pass *> TransferLastUses;
677
Devang Patel90b05e02006-11-11 02:04:19 +0000678 if (ProcessAnalysis) {
Devang Patelbc03f132006-12-07 23:55:10 +0000679
680 // At the moment, this pass is the last user of all required passes.
681 std::vector<Pass *> LastUses;
Devang Patele64d3052007-04-16 20:12:57 +0000682 SmallVector<Pass *, 8> RequiredPasses;
683 SmallVector<AnalysisID, 8> ReqAnalysisNotAvailable;
684
Devang Patelbc03f132006-12-07 23:55:10 +0000685 unsigned PDepth = this->getDepth();
686
Devang Patele64d3052007-04-16 20:12:57 +0000687 collectRequiredAnalysis(RequiredPasses,
688 ReqAnalysisNotAvailable, P);
689 for (SmallVector<Pass *, 8>::iterator I = RequiredPasses.begin(),
Devang Patelbc03f132006-12-07 23:55:10 +0000690 E = RequiredPasses.end(); I != E; ++I) {
691 Pass *PRequired = *I;
692 unsigned RDepth = 0;
Devang Patel64619be2006-12-09 00:07:38 +0000693
694 PMDataManager &DM = PRequired->getResolver()->getPMDataManager();
695 RDepth = DM.getDepth();
696
Devang Patelbc03f132006-12-07 23:55:10 +0000697 if (PDepth == RDepth)
698 LastUses.push_back(PRequired);
699 else if (PDepth > RDepth) {
700 // Let the parent claim responsibility of last use
Devang Patel832bc072006-12-15 00:08:26 +0000701 TransferLastUses.push_back(PRequired);
Devang Patel9d9fc902007-03-06 17:52:53 +0000702 // Keep track of higher level analysis used by this manager.
703 HigherLevelAnalysis.push_back(PRequired);
Devang Patele64d3052007-04-16 20:12:57 +0000704 } else
705 assert (0 && "Unable to accomodate Required Pass");
706 }
707
Devang Patel39786a92007-01-15 20:31:54 +0000708 // Set P as P's last user until someone starts using P.
709 // However, if P is a Pass Manager then it does not need
710 // to record its last user.
Devang Pateld85662f2007-01-16 22:38:10 +0000711 if (!dynamic_cast<PMDataManager *>(P))
Devang Patel39786a92007-01-15 20:31:54 +0000712 LastUses.push_back(P);
Devang Pateld85662f2007-01-16 22:38:10 +0000713 TPM->setLastUser(LastUses, P);
Devang Patelbc03f132006-12-07 23:55:10 +0000714
Devang Patelec2b9a72007-03-05 22:57:49 +0000715 if (!TransferLastUses.empty()) {
716 Pass *My_PM = dynamic_cast<Pass *>(this);
717 TPM->setLastUser(TransferLastUses, My_PM);
718 TransferLastUses.clear();
719 }
720
Devang Patel69e9f6d2007-04-16 20:27:05 +0000721 // Now, take care of required analysises that are not available.
722 for (SmallVector<AnalysisID, 8>::iterator
723 I = ReqAnalysisNotAvailable.begin(),
724 E = ReqAnalysisNotAvailable.end() ;I != E; ++I) {
725 Pass *AnalysisPass = (*I)->createPass();
726 this->addLowerLevelRequiredPass(P, AnalysisPass);
727 }
728
Devang Patel17bff0d2006-12-07 22:09:36 +0000729 // Take a note of analysis required and made available by this pass.
Devang Patel90b05e02006-11-11 02:04:19 +0000730 // Remove the analysis not preserved by this pass
731 removeNotPreservedAnalysis(P);
Devang Patel17bff0d2006-12-07 22:09:36 +0000732 recordAvailableAnalysis(P);
Devang Patel90b05e02006-11-11 02:04:19 +0000733 }
Devang Patel8cad70d2006-11-11 01:51:02 +0000734
735 // Add pass
736 PassVector.push_back(P);
Devang Patel8cad70d2006-11-11 01:51:02 +0000737}
738
Devang Patele64d3052007-04-16 20:12:57 +0000739
740/// Populate RP with analysis pass that are required by
741/// pass P and are available. Populate RP_NotAvail with analysis
742/// pass that are required by pass P but are not available.
743void PMDataManager::collectRequiredAnalysis(SmallVector<Pass *, 8>&RP,
744 SmallVector<AnalysisID, 8> &RP_NotAvail,
745 Pass *P) {
Devang Patel1d6267c2006-12-07 23:05:44 +0000746 AnalysisUsage AnUsage;
747 P->getAnalysisUsage(AnUsage);
748 const std::vector<AnalysisID> &RequiredSet = AnUsage.getRequiredSet();
749 for (std::vector<AnalysisID>::const_iterator
750 I = RequiredSet.begin(), E = RequiredSet.end();
751 I != E; ++I) {
Devang Patele64d3052007-04-16 20:12:57 +0000752 AnalysisID AID = *I;
753 if (Pass *AnalysisPass = findAnalysisPass(*I, true))
754 RP.push_back(AnalysisPass);
755 else
756 RP_NotAvail.push_back(AID);
Devang Patel1d6267c2006-12-07 23:05:44 +0000757 }
Devang Patelf58183d2006-12-12 23:09:32 +0000758
759 const std::vector<AnalysisID> &IDs = AnUsage.getRequiredTransitiveSet();
760 for (std::vector<AnalysisID>::const_iterator I = IDs.begin(),
761 E = IDs.end(); I != E; ++I) {
Devang Patele64d3052007-04-16 20:12:57 +0000762 AnalysisID AID = *I;
763 if (Pass *AnalysisPass = findAnalysisPass(*I, true))
764 RP.push_back(AnalysisPass);
765 else
766 RP_NotAvail.push_back(AID);
Devang Patelf58183d2006-12-12 23:09:32 +0000767 }
Devang Patel1d6267c2006-12-07 23:05:44 +0000768}
769
Devang Patel07f4f582006-11-14 21:49:36 +0000770// All Required analyses should be available to the pass as it runs! Here
771// we fill in the AnalysisImpls member of the pass so that it can
772// successfully use the getAnalysis() method to retrieve the
773// implementations it needs.
774//
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000775void PMDataManager::initializeAnalysisImpl(Pass *P) {
Devang Patelff631ae2006-11-15 01:27:05 +0000776 AnalysisUsage AnUsage;
777 P->getAnalysisUsage(AnUsage);
Devang Patel07f4f582006-11-14 21:49:36 +0000778
779 for (std::vector<const PassInfo *>::const_iterator
780 I = AnUsage.getRequiredSet().begin(),
781 E = AnUsage.getRequiredSet().end(); I != E; ++I) {
Devang Patel640c5bb2006-12-08 22:30:11 +0000782 Pass *Impl = findAnalysisPass(*I, true);
Devang Patel07f4f582006-11-14 21:49:36 +0000783 if (Impl == 0)
784 assert(0 && "Analysis used but not available!");
Devang Patelb66334b2007-01-05 22:47:07 +0000785 AnalysisResolver *AR = P->getResolver();
Devang Patel984698a2006-12-09 01:11:34 +0000786 AR->addAnalysisImplsPair(*I, Impl);
Devang Patel07f4f582006-11-14 21:49:36 +0000787 }
788}
789
Devang Patel640c5bb2006-12-08 22:30:11 +0000790/// Find the pass that implements Analysis AID. If desired pass is not found
791/// then return NULL.
792Pass *PMDataManager::findAnalysisPass(AnalysisID AID, bool SearchParent) {
793
794 // Check if AvailableAnalysis map has one entry.
795 std::map<AnalysisID, Pass*>::const_iterator I = AvailableAnalysis.find(AID);
796
797 if (I != AvailableAnalysis.end())
798 return I->second;
799
800 // Search Parents through TopLevelManager
801 if (SearchParent)
802 return TPM->findAnalysisPass(AID);
803
Devang Patel9d759b82006-12-09 00:09:12 +0000804 return NULL;
Devang Patel640c5bb2006-12-08 22:30:11 +0000805}
806
Devang Patel991aeba2006-12-15 20:13:01 +0000807// Print list of passes that are last used by P.
808void PMDataManager::dumpLastUses(Pass *P, unsigned Offset) const{
809
810 std::vector<Pass *> LUses;
Devang Patel2ff44922007-04-16 20:39:59 +0000811
812 // If this is a on the fly manager then it does not have TPM.
813 if (!TPM)
814 return;
815
Devang Patel991aeba2006-12-15 20:13:01 +0000816 TPM->collectLastUses(LUses, P);
817
818 for (std::vector<Pass *>::iterator I = LUses.begin(),
819 E = LUses.end(); I != E; ++I) {
820 llvm::cerr << "--" << std::string(Offset*2, ' ');
821 (*I)->dumpPassStructure(0);
822 }
823}
824
825void PMDataManager::dumpPassArguments() const {
826 for(std::vector<Pass *>::const_iterator I = PassVector.begin(),
827 E = PassVector.end(); I != E; ++I) {
828 if (PMDataManager *PMD = dynamic_cast<PMDataManager *>(*I))
829 PMD->dumpPassArguments();
830 else
831 if (const PassInfo *PI = (*I)->getPassInfo())
832 if (!PI->isAnalysisGroup())
833 cerr << " -" << PI->getPassArgument();
834 }
835}
836
Devang Patel003a5592007-03-05 20:01:30 +0000837void PMDataManager:: dumpPassInfo(Pass *P, enum PassDebuggingString S1,
838 enum PassDebuggingString S2,
839 std::string Msg) {
Devang Patelfd4184322007-01-17 20:33:36 +0000840 if (PassDebugging < Executions)
Devang Patel991aeba2006-12-15 20:13:01 +0000841 return;
842 cerr << (void*)this << std::string(getDepth()*2+1, ' ');
Devang Patel003a5592007-03-05 20:01:30 +0000843 switch (S1) {
844 case EXECUTION_MSG:
845 cerr << "Executing Pass '" << P->getPassName();
846 break;
847 case MODIFICATION_MSG:
848 cerr << "' Made Modification '" << P->getPassName();
849 break;
850 case FREEING_MSG:
851 cerr << " Freeing Pass '" << P->getPassName();
852 break;
853 default:
854 break;
855 }
856 switch (S2) {
857 case ON_BASICBLOCK_MSG:
858 cerr << "' on BasicBlock '" << Msg << "...\n";
859 break;
860 case ON_FUNCTION_MSG:
861 cerr << "' on Function '" << Msg << "...\n";
862 break;
863 case ON_MODULE_MSG:
864 cerr << "' on Module '" << Msg << "...\n";
865 break;
866 case ON_LOOP_MSG:
867 cerr << "' on Loop " << Msg << "...\n";
868 break;
869 case ON_CG_MSG:
870 cerr << "' on Call Graph " << Msg << "...\n";
871 break;
872 default:
873 break;
874 }
Devang Patel991aeba2006-12-15 20:13:01 +0000875}
876
877void PMDataManager::dumpAnalysisSetInfo(const char *Msg, Pass *P,
878 const std::vector<AnalysisID> &Set)
879 const {
Devang Patelfd4184322007-01-17 20:33:36 +0000880 if (PassDebugging >= Details && !Set.empty()) {
Devang Patel991aeba2006-12-15 20:13:01 +0000881 cerr << (void*)P << std::string(getDepth()*2+3, ' ') << Msg << " Analyses:";
882 for (unsigned i = 0; i != Set.size(); ++i) {
883 if (i) cerr << ",";
884 cerr << " " << Set[i]->getPassName();
885 }
886 cerr << "\n";
887 }
888}
Devang Patel9bdf7d42006-12-08 23:28:54 +0000889
Devang Patele7599552007-01-12 18:52:44 +0000890// Destructor
891PMDataManager::~PMDataManager() {
892
893 for (std::vector<Pass *>::iterator I = PassVector.begin(),
894 E = PassVector.end(); I != E; ++I)
895 delete *I;
896
897 PassVector.clear();
898}
899
Devang Patel9bdf7d42006-12-08 23:28:54 +0000900//===----------------------------------------------------------------------===//
901// NOTE: Is this the right place to define this method ?
902// getAnalysisToUpdate - Return an analysis result or null if it doesn't exist
Devang Patelb66334b2007-01-05 22:47:07 +0000903Pass *AnalysisResolver::getAnalysisToUpdate(AnalysisID ID, bool dir) const {
Devang Patel9bdf7d42006-12-08 23:28:54 +0000904 return PM.findAnalysisPass(ID, dir);
905}
906
Devang Patela1514cb2006-12-07 19:39:39 +0000907//===----------------------------------------------------------------------===//
Devang Patel67d6a5e2006-12-19 19:46:59 +0000908// BBPassManager implementation
Devang Patel6e5a1132006-11-07 21:31:57 +0000909
Devang Patel6e5a1132006-11-07 21:31:57 +0000910/// Execute all of the passes scheduled for execution by invoking
911/// runOnBasicBlock method. Keep track of whether any of the passes modifies
912/// the function, and if so, return true.
913bool
Devang Patel67d6a5e2006-12-19 19:46:59 +0000914BBPassManager::runOnFunction(Function &F) {
Devang Patel6e5a1132006-11-07 21:31:57 +0000915
Reid Spencer5301e7c2007-01-30 20:08:39 +0000916 if (F.isDeclaration())
Devang Patel745a6962006-12-12 23:15:28 +0000917 return false;
918
Devang Patele9585592006-12-08 01:38:28 +0000919 bool Changed = doInitialization(F);
Devang Patel050ec722006-11-14 01:23:29 +0000920
Devang Patel6e5a1132006-11-07 21:31:57 +0000921 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
Devang Patelabfbe3b2006-12-16 00:56:26 +0000922 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
923 BasicBlockPass *BP = getContainedPass(Index);
Devang Patelf6d1d212006-12-14 00:25:06 +0000924 AnalysisUsage AnUsage;
Devang Patelabfbe3b2006-12-16 00:56:26 +0000925 BP->getAnalysisUsage(AnUsage);
Devang Patelf6d1d212006-12-14 00:25:06 +0000926
Devang Patel003a5592007-03-05 20:01:30 +0000927 dumpPassInfo(BP, EXECUTION_MSG, ON_BASICBLOCK_MSG, (*I).getName());
Devang Patelabfbe3b2006-12-16 00:56:26 +0000928 dumpAnalysisSetInfo("Required", BP, AnUsage.getRequiredSet());
Devang Patelf6d1d212006-12-14 00:25:06 +0000929
Devang Patelabfbe3b2006-12-16 00:56:26 +0000930 initializeAnalysisImpl(BP);
Devang Patel93a197c2006-12-14 00:08:04 +0000931
Devang Patelabfbe3b2006-12-16 00:56:26 +0000932 if (TheTimeInfo) TheTimeInfo->passStarted(BP);
Devang Patel6e5a1132006-11-07 21:31:57 +0000933 Changed |= BP->runOnBasicBlock(*I);
Devang Patelabfbe3b2006-12-16 00:56:26 +0000934 if (TheTimeInfo) TheTimeInfo->passEnded(BP);
Devang Patel93a197c2006-12-14 00:08:04 +0000935
Devang Patel003a5592007-03-05 20:01:30 +0000936 if (Changed)
937 dumpPassInfo(BP, MODIFICATION_MSG, ON_BASICBLOCK_MSG, (*I).getName());
Devang Patelabfbe3b2006-12-16 00:56:26 +0000938 dumpAnalysisSetInfo("Preserved", BP, AnUsage.getPreservedSet());
Devang Patel93a197c2006-12-14 00:08:04 +0000939
Devang Patelabfbe3b2006-12-16 00:56:26 +0000940 removeNotPreservedAnalysis(BP);
941 recordAvailableAnalysis(BP);
Devang Patel003a5592007-03-05 20:01:30 +0000942 removeDeadPasses(BP, (*I).getName(), ON_BASICBLOCK_MSG);
943
Devang Patel6e5a1132006-11-07 21:31:57 +0000944 }
Devang Patel56d48ec2006-12-15 22:57:49 +0000945 return Changed |= doFinalization(F);
Devang Patel6e5a1132006-11-07 21:31:57 +0000946}
947
Devang Patel475c4532006-12-08 00:59:05 +0000948// Implement doInitialization and doFinalization
Devang Patel67d6a5e2006-12-19 19:46:59 +0000949inline bool BBPassManager::doInitialization(Module &M) {
Devang Patel475c4532006-12-08 00:59:05 +0000950 bool Changed = false;
951
Devang Patelabfbe3b2006-12-16 00:56:26 +0000952 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
953 BasicBlockPass *BP = getContainedPass(Index);
Devang Patel475c4532006-12-08 00:59:05 +0000954 Changed |= BP->doInitialization(M);
955 }
956
957 return Changed;
958}
959
Devang Patel67d6a5e2006-12-19 19:46:59 +0000960inline bool BBPassManager::doFinalization(Module &M) {
Devang Patel475c4532006-12-08 00:59:05 +0000961 bool Changed = false;
962
Devang Patelabfbe3b2006-12-16 00:56:26 +0000963 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
964 BasicBlockPass *BP = getContainedPass(Index);
Devang Patel475c4532006-12-08 00:59:05 +0000965 Changed |= BP->doFinalization(M);
966 }
967
968 return Changed;
969}
970
Devang Patel67d6a5e2006-12-19 19:46:59 +0000971inline bool BBPassManager::doInitialization(Function &F) {
Devang Patel475c4532006-12-08 00:59:05 +0000972 bool Changed = false;
973
Devang Patelabfbe3b2006-12-16 00:56:26 +0000974 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
975 BasicBlockPass *BP = getContainedPass(Index);
Devang Patel475c4532006-12-08 00:59:05 +0000976 Changed |= BP->doInitialization(F);
977 }
978
979 return Changed;
980}
981
Devang Patel67d6a5e2006-12-19 19:46:59 +0000982inline bool BBPassManager::doFinalization(Function &F) {
Devang Patel475c4532006-12-08 00:59:05 +0000983 bool Changed = false;
984
Devang Patelabfbe3b2006-12-16 00:56:26 +0000985 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
986 BasicBlockPass *BP = getContainedPass(Index);
Devang Patel475c4532006-12-08 00:59:05 +0000987 Changed |= BP->doFinalization(F);
988 }
989
990 return Changed;
991}
992
993
Devang Patela1514cb2006-12-07 19:39:39 +0000994//===----------------------------------------------------------------------===//
Devang Patelb67904d2006-12-13 02:36:01 +0000995// FunctionPassManager implementation
Devang Patela1514cb2006-12-07 19:39:39 +0000996
Devang Patel4e12f862006-11-08 10:44:40 +0000997/// Create new Function pass manager
Devang Patelb67904d2006-12-13 02:36:01 +0000998FunctionPassManager::FunctionPassManager(ModuleProvider *P) {
Devang Patel67d6a5e2006-12-19 19:46:59 +0000999 FPM = new FunctionPassManagerImpl(0);
Devang Patel9c6290c2006-12-12 22:02:16 +00001000 // FPM is the top level manager.
1001 FPM->setTopLevelManager(FPM);
Devang Patel1036b652006-12-12 23:27:37 +00001002
1003 PMDataManager *PMD = dynamic_cast<PMDataManager *>(FPM);
Devang Patelb66334b2007-01-05 22:47:07 +00001004 AnalysisResolver *AR = new AnalysisResolver(*PMD);
Devang Patel1036b652006-12-12 23:27:37 +00001005 FPM->setResolver(AR);
1006
Devang Patel1f653682006-12-08 18:57:16 +00001007 MP = P;
1008}
1009
Devang Patelb67904d2006-12-13 02:36:01 +00001010FunctionPassManager::~FunctionPassManager() {
Devang Patelab97cf42006-12-13 00:09:23 +00001011 delete FPM;
1012}
1013
Devang Patel4e12f862006-11-08 10:44:40 +00001014/// add - Add a pass to the queue of passes to run. This passes
1015/// ownership of the Pass to the PassManager. When the
1016/// PassManager_X is destroyed, the pass will be destroyed as well, so
1017/// there is no need to delete the pass. (TODO delete passes.)
1018/// This implies that all passes MUST be allocated with 'new'.
Devang Patelb67904d2006-12-13 02:36:01 +00001019void FunctionPassManager::add(Pass *P) {
Devang Patel4e12f862006-11-08 10:44:40 +00001020 FPM->add(P);
1021}
1022
Devang Patel9f3083e2006-11-15 19:39:54 +00001023/// run - Execute all of the passes scheduled for execution. Keep
1024/// track of whether any of the passes modifies the function, and if
1025/// so, return true.
1026///
Devang Patelb67904d2006-12-13 02:36:01 +00001027bool FunctionPassManager::run(Function &F) {
Devang Patel9f3083e2006-11-15 19:39:54 +00001028 std::string errstr;
1029 if (MP->materializeFunction(&F, &errstr)) {
Bill Wendlingf3baad32006-12-07 01:30:32 +00001030 cerr << "Error reading bytecode file: " << errstr << "\n";
Devang Patel9f3083e2006-11-15 19:39:54 +00001031 abort();
1032 }
Devang Patel272908d2006-12-08 22:57:48 +00001033 return FPM->run(F);
Devang Patel9f3083e2006-11-15 19:39:54 +00001034}
1035
1036
Devang Patelff631ae2006-11-15 01:27:05 +00001037/// doInitialization - Run all of the initializers for the function passes.
1038///
Devang Patelb67904d2006-12-13 02:36:01 +00001039bool FunctionPassManager::doInitialization() {
Devang Patelff631ae2006-11-15 01:27:05 +00001040 return FPM->doInitialization(*MP->getModule());
1041}
1042
1043/// doFinalization - Run all of the initializers for the function passes.
1044///
Devang Patelb67904d2006-12-13 02:36:01 +00001045bool FunctionPassManager::doFinalization() {
Devang Patelff631ae2006-11-15 01:27:05 +00001046 return FPM->doFinalization(*MP->getModule());
1047}
1048
Devang Patela1514cb2006-12-07 19:39:39 +00001049//===----------------------------------------------------------------------===//
Devang Patel67d6a5e2006-12-19 19:46:59 +00001050// FunctionPassManagerImpl implementation
1051//
Devang Patel67d6a5e2006-12-19 19:46:59 +00001052inline bool FunctionPassManagerImpl::doInitialization(Module &M) {
1053 bool Changed = false;
1054
1055 for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index) {
1056 FPPassManager *FP = getContainedManager(Index);
1057 Changed |= FP->doInitialization(M);
1058 }
1059
1060 return Changed;
1061}
1062
1063inline bool FunctionPassManagerImpl::doFinalization(Module &M) {
1064 bool Changed = false;
1065
1066 for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index) {
1067 FPPassManager *FP = getContainedManager(Index);
1068 Changed |= FP->doFinalization(M);
1069 }
1070
1071 return Changed;
1072}
1073
1074// Execute all the passes managed by this top level manager.
1075// Return true if any function is modified by a pass.
1076bool FunctionPassManagerImpl::run(Function &F) {
1077
1078 bool Changed = false;
1079
1080 TimingInfo::createTheTimeInfo();
1081
1082 dumpArguments();
1083 dumpPasses();
1084
Devang Patele3068402006-12-21 00:16:50 +00001085 initializeAllAnalysisInfo();
Devang Patel67d6a5e2006-12-19 19:46:59 +00001086 for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index) {
1087 FPPassManager *FP = getContainedManager(Index);
1088 Changed |= FP->runOnFunction(F);
1089 }
1090 return Changed;
1091}
1092
1093//===----------------------------------------------------------------------===//
1094// FPPassManager implementation
Devang Patel0c2012f2006-11-07 21:49:50 +00001095
Devang Patele7599552007-01-12 18:52:44 +00001096/// Print passes managed by this manager
1097void FPPassManager::dumpPassStructure(unsigned Offset) {
1098 llvm::cerr << std::string(Offset*2, ' ') << "FunctionPass Manager\n";
1099 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1100 FunctionPass *FP = getContainedPass(Index);
1101 FP->dumpPassStructure(Offset + 1);
1102 dumpLastUses(FP, Offset+1);
1103 }
1104}
1105
1106
Devang Patel0c2012f2006-11-07 21:49:50 +00001107/// Execute all of the passes scheduled for execution by invoking
1108/// runOnFunction method. Keep track of whether any of the passes modifies
1109/// the function, and if so, return true.
Devang Patel67d6a5e2006-12-19 19:46:59 +00001110bool FPPassManager::runOnFunction(Function &F) {
Devang Patel9f3083e2006-11-15 19:39:54 +00001111
1112 bool Changed = false;
Devang Patel745a6962006-12-12 23:15:28 +00001113
Reid Spencer5301e7c2007-01-30 20:08:39 +00001114 if (F.isDeclaration())
Devang Patel745a6962006-12-12 23:15:28 +00001115 return false;
1116
Devang Patelabfbe3b2006-12-16 00:56:26 +00001117 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1118 FunctionPass *FP = getContainedPass(Index);
1119
Devang Patelf6d1d212006-12-14 00:25:06 +00001120 AnalysisUsage AnUsage;
Devang Patelabfbe3b2006-12-16 00:56:26 +00001121 FP->getAnalysisUsage(AnUsage);
Devang Patel93a197c2006-12-14 00:08:04 +00001122
Devang Patel003a5592007-03-05 20:01:30 +00001123 dumpPassInfo(FP, EXECUTION_MSG, ON_FUNCTION_MSG, F.getName());
Devang Patelabfbe3b2006-12-16 00:56:26 +00001124 dumpAnalysisSetInfo("Required", FP, AnUsage.getRequiredSet());
Devang Patel93a197c2006-12-14 00:08:04 +00001125
Devang Patelabfbe3b2006-12-16 00:56:26 +00001126 initializeAnalysisImpl(FP);
Devang Patelb8817b92006-12-14 00:59:42 +00001127
Devang Patelabfbe3b2006-12-16 00:56:26 +00001128 if (TheTimeInfo) TheTimeInfo->passStarted(FP);
Devang Patel9f3083e2006-11-15 19:39:54 +00001129 Changed |= FP->runOnFunction(F);
Devang Patelabfbe3b2006-12-16 00:56:26 +00001130 if (TheTimeInfo) TheTimeInfo->passEnded(FP);
Devang Patel93a197c2006-12-14 00:08:04 +00001131
Devang Patel003a5592007-03-05 20:01:30 +00001132 if (Changed)
1133 dumpPassInfo(FP, MODIFICATION_MSG, ON_FUNCTION_MSG, F.getName());
Devang Patelabfbe3b2006-12-16 00:56:26 +00001134 dumpAnalysisSetInfo("Preserved", FP, AnUsage.getPreservedSet());
Devang Patel93a197c2006-12-14 00:08:04 +00001135
Devang Patelabfbe3b2006-12-16 00:56:26 +00001136 removeNotPreservedAnalysis(FP);
1137 recordAvailableAnalysis(FP);
Devang Patel003a5592007-03-05 20:01:30 +00001138 removeDeadPasses(FP, F.getName(), ON_FUNCTION_MSG);
Devang Patel9f3083e2006-11-15 19:39:54 +00001139 }
1140 return Changed;
1141}
1142
Devang Patel67d6a5e2006-12-19 19:46:59 +00001143bool FPPassManager::runOnModule(Module &M) {
Devang Patel9f3083e2006-11-15 19:39:54 +00001144
Devang Patel67d6a5e2006-12-19 19:46:59 +00001145 bool Changed = doInitialization(M);
Devang Patel67d6a5e2006-12-19 19:46:59 +00001146
1147 for(Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
1148 this->runOnFunction(*I);
1149
1150 return Changed |= doFinalization(M);
1151}
1152
1153inline bool FPPassManager::doInitialization(Module &M) {
Devang Patelff631ae2006-11-15 01:27:05 +00001154 bool Changed = false;
1155
Devang Patelabfbe3b2006-12-16 00:56:26 +00001156 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1157 FunctionPass *FP = getContainedPass(Index);
Devang Patelff631ae2006-11-15 01:27:05 +00001158 Changed |= FP->doInitialization(M);
1159 }
1160
1161 return Changed;
1162}
1163
Devang Patel67d6a5e2006-12-19 19:46:59 +00001164inline bool FPPassManager::doFinalization(Module &M) {
Devang Patelff631ae2006-11-15 01:27:05 +00001165 bool Changed = false;
1166
Devang Patelabfbe3b2006-12-16 00:56:26 +00001167 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1168 FunctionPass *FP = getContainedPass(Index);
Devang Patelff631ae2006-11-15 01:27:05 +00001169 Changed |= FP->doFinalization(M);
1170 }
1171
Devang Patelff631ae2006-11-15 01:27:05 +00001172 return Changed;
1173}
1174
Devang Patela1514cb2006-12-07 19:39:39 +00001175//===----------------------------------------------------------------------===//
Devang Patel67d6a5e2006-12-19 19:46:59 +00001176// MPPassManager implementation
Devang Patel05e1a972006-11-07 22:03:15 +00001177
Devang Patel05e1a972006-11-07 22:03:15 +00001178/// Execute all of the passes scheduled for execution by invoking
1179/// runOnModule method. Keep track of whether any of the passes modifies
1180/// the module, and if so, return true.
1181bool
Devang Patel67d6a5e2006-12-19 19:46:59 +00001182MPPassManager::runOnModule(Module &M) {
Devang Patel05e1a972006-11-07 22:03:15 +00001183 bool Changed = false;
Devang Patel050ec722006-11-14 01:23:29 +00001184
Devang Patelabfbe3b2006-12-16 00:56:26 +00001185 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1186 ModulePass *MP = getContainedPass(Index);
1187
Devang Patelf6d1d212006-12-14 00:25:06 +00001188 AnalysisUsage AnUsage;
Devang Patelabfbe3b2006-12-16 00:56:26 +00001189 MP->getAnalysisUsage(AnUsage);
Devang Patel93a197c2006-12-14 00:08:04 +00001190
Devang Patel003a5592007-03-05 20:01:30 +00001191 dumpPassInfo(MP, EXECUTION_MSG, ON_MODULE_MSG, M.getModuleIdentifier());
Devang Patelabfbe3b2006-12-16 00:56:26 +00001192 dumpAnalysisSetInfo("Required", MP, AnUsage.getRequiredSet());
Devang Patel93a197c2006-12-14 00:08:04 +00001193
Devang Patelabfbe3b2006-12-16 00:56:26 +00001194 initializeAnalysisImpl(MP);
Devang Patelb8817b92006-12-14 00:59:42 +00001195
Devang Patelabfbe3b2006-12-16 00:56:26 +00001196 if (TheTimeInfo) TheTimeInfo->passStarted(MP);
Devang Patel05e1a972006-11-07 22:03:15 +00001197 Changed |= MP->runOnModule(M);
Devang Patelabfbe3b2006-12-16 00:56:26 +00001198 if (TheTimeInfo) TheTimeInfo->passEnded(MP);
Devang Patel93a197c2006-12-14 00:08:04 +00001199
Devang Patel003a5592007-03-05 20:01:30 +00001200 if (Changed)
1201 dumpPassInfo(MP, MODIFICATION_MSG, ON_MODULE_MSG,
1202 M.getModuleIdentifier());
Devang Patelabfbe3b2006-12-16 00:56:26 +00001203 dumpAnalysisSetInfo("Preserved", MP, AnUsage.getPreservedSet());
Devang Patelf6d1d212006-12-14 00:25:06 +00001204
Devang Patelabfbe3b2006-12-16 00:56:26 +00001205 removeNotPreservedAnalysis(MP);
1206 recordAvailableAnalysis(MP);
Devang Patel003a5592007-03-05 20:01:30 +00001207 removeDeadPasses(MP, M.getModuleIdentifier(), ON_MODULE_MSG);
Devang Patel05e1a972006-11-07 22:03:15 +00001208 }
1209 return Changed;
1210}
1211
Devang Patele64d3052007-04-16 20:12:57 +00001212/// Add RequiredPass into list of lower level passes required by pass P.
1213/// RequiredPass is run on the fly by Pass Manager when P requests it
1214/// through getAnalysis interface.
1215void MPPassManager::addLowerLevelRequiredPass(Pass *P, Pass *RequiredPass) {
1216
1217 assert (P->getPotentialPassManagerType() == PMT_ModulePassManager
1218 && "Unable to handle Pass that requires lower level Analysis pass");
1219 assert ((P->getPotentialPassManagerType() <
1220 RequiredPass->getPotentialPassManagerType())
1221 && "Unable to handle Pass that requires lower level Analysis pass");
1222
Devang Patel69e9f6d2007-04-16 20:27:05 +00001223 FPPassManager *FPP = OnTheFlyManagers[P];
1224 if (!FPP) {
1225 FPP = new FPPassManager(getDepth() + 1);
1226 OnTheFlyManagers[P] = FPP;
1227 }
1228
1229 FPP->add(RequiredPass, false);
Devang Patele64d3052007-04-16 20:12:57 +00001230}
Devang Patel69e9f6d2007-04-16 20:27:05 +00001231
1232/// Return function pass corresponding to PassInfo PI, that is
1233/// required by module pass MP. Instantiate analysis pass, by using
1234/// its runOnFunction() for function F.
1235Pass* MPPassManager::getOnTheFlyPass(Pass *MP, const PassInfo *PI,
1236 Function &F) {
1237 AnalysisID AID = PI;
1238 FPPassManager *FPP =OnTheFlyManagers[MP];
1239 assert (FPP && "Unable to find on the fly pass");
1240
1241 FPP->runOnFunction(F);
1242 return FPP->findAnalysisPass(AID, false);
1243}
1244
1245
Devang Patela1514cb2006-12-07 19:39:39 +00001246//===----------------------------------------------------------------------===//
1247// PassManagerImpl implementation
Devang Patelab97cf42006-12-13 00:09:23 +00001248//
Devang Patelc290c8a2006-11-07 22:23:34 +00001249/// run - Execute all of the passes scheduled for execution. Keep track of
1250/// whether any of the passes modifies the module, and if so, return true.
Devang Patel67d6a5e2006-12-19 19:46:59 +00001251bool PassManagerImpl::run(Module &M) {
Devang Patelc290c8a2006-11-07 22:23:34 +00001252
Devang Patelc290c8a2006-11-07 22:23:34 +00001253 bool Changed = false;
Devang Patelf1567a52006-12-13 20:03:48 +00001254
Devang Patelb8817b92006-12-14 00:59:42 +00001255 TimingInfo::createTheTimeInfo();
1256
Devang Patelcfd70c42006-12-13 22:10:00 +00001257 dumpArguments();
Devang Patel67d6a5e2006-12-19 19:46:59 +00001258 dumpPasses();
Devang Patelf1567a52006-12-13 20:03:48 +00001259
Devang Patele3068402006-12-21 00:16:50 +00001260 initializeAllAnalysisInfo();
Devang Patel67d6a5e2006-12-19 19:46:59 +00001261 for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index) {
1262 MPPassManager *MP = getContainedManager(Index);
Devang Patel5bbeb492006-12-08 22:47:25 +00001263 Changed |= MP->runOnModule(M);
Devang Patelc290c8a2006-11-07 22:23:34 +00001264 }
1265 return Changed;
1266}
Devang Patel376fefa2006-11-08 10:29:57 +00001267
Devang Patela1514cb2006-12-07 19:39:39 +00001268//===----------------------------------------------------------------------===//
1269// PassManager implementation
1270
Devang Patel376fefa2006-11-08 10:29:57 +00001271/// Create new pass manager
Devang Patelb67904d2006-12-13 02:36:01 +00001272PassManager::PassManager() {
Devang Patel67d6a5e2006-12-19 19:46:59 +00001273 PM = new PassManagerImpl(0);
Devang Patel9c6290c2006-12-12 22:02:16 +00001274 // PM is the top level manager
1275 PM->setTopLevelManager(PM);
Devang Patel376fefa2006-11-08 10:29:57 +00001276}
1277
Devang Patelb67904d2006-12-13 02:36:01 +00001278PassManager::~PassManager() {
Devang Patelab97cf42006-12-13 00:09:23 +00001279 delete PM;
1280}
1281
Devang Patel376fefa2006-11-08 10:29:57 +00001282/// add - Add a pass to the queue of passes to run. This passes ownership of
1283/// the Pass to the PassManager. When the PassManager is destroyed, the pass
1284/// will be destroyed as well, so there is no need to delete the pass. This
1285/// implies that all passes MUST be allocated with 'new'.
1286void
Devang Patelb67904d2006-12-13 02:36:01 +00001287PassManager::add(Pass *P) {
Devang Patel376fefa2006-11-08 10:29:57 +00001288 PM->add(P);
1289}
1290
1291/// run - Execute all of the passes scheduled for execution. Keep track of
1292/// whether any of the passes modifies the module, and if so, return true.
1293bool
Devang Patelb67904d2006-12-13 02:36:01 +00001294PassManager::run(Module &M) {
Devang Patel376fefa2006-11-08 10:29:57 +00001295 return PM->run(M);
1296}
1297
Devang Patelb8817b92006-12-14 00:59:42 +00001298//===----------------------------------------------------------------------===//
1299// TimingInfo Class - This class is used to calculate information about the
1300// amount of time each pass takes to execute. This only happens with
1301// -time-passes is enabled on the command line.
1302//
1303bool llvm::TimePassesIsEnabled = false;
1304static cl::opt<bool,true>
1305EnableTiming("time-passes", cl::location(TimePassesIsEnabled),
1306 cl::desc("Time each pass, printing elapsed time for each on exit"));
1307
1308// createTheTimeInfo - This method either initializes the TheTimeInfo pointer to
1309// a non null value (if the -time-passes option is enabled) or it leaves it
1310// null. It may be called multiple times.
1311void TimingInfo::createTheTimeInfo() {
1312 if (!TimePassesIsEnabled || TheTimeInfo) return;
1313
1314 // Constructed the first time this is called, iff -time-passes is enabled.
1315 // This guarantees that the object will be constructed before static globals,
1316 // thus it will be destroyed before them.
1317 static ManagedStatic<TimingInfo> TTI;
1318 TheTimeInfo = &*TTI;
1319}
1320
Devang Patel1c3633e2007-01-29 23:10:37 +00001321/// If TimingInfo is enabled then start pass timer.
1322void StartPassTimer(Pass *P) {
1323 if (TheTimeInfo)
1324 TheTimeInfo->passStarted(P);
1325}
1326
1327/// If TimingInfo is enabled then stop pass timer.
1328void StopPassTimer(Pass *P) {
1329 if (TheTimeInfo)
1330 TheTimeInfo->passEnded(P);
1331}
1332
Devang Patel1c56a632007-01-08 19:29:38 +00001333//===----------------------------------------------------------------------===//
1334// PMStack implementation
1335//
Devang Patelad98d232007-01-11 22:15:30 +00001336
Devang Patel1c56a632007-01-08 19:29:38 +00001337// Pop Pass Manager from the stack and clear its analysis info.
1338void PMStack::pop() {
1339
1340 PMDataManager *Top = this->top();
1341 Top->initializeAnalysisInfo();
1342
1343 S.pop_back();
1344}
1345
1346// Push PM on the stack and set its top level manager.
Devang Patel15701b52007-01-11 00:19:00 +00001347void PMStack::push(Pass *P) {
Devang Patel1c56a632007-01-08 19:29:38 +00001348
Devang Patel15701b52007-01-11 00:19:00 +00001349 PMDataManager *Top = NULL;
1350 PMDataManager *PM = dynamic_cast<PMDataManager *>(P);
1351 assert (PM && "Unable to push. Pass Manager expected");
Devang Patel1c56a632007-01-08 19:29:38 +00001352
Devang Patel15701b52007-01-11 00:19:00 +00001353 if (this->empty()) {
1354 Top = PM;
1355 }
1356 else {
1357 Top = this->top();
1358 PMTopLevelManager *TPM = Top->getTopLevelManager();
1359
1360 assert (TPM && "Unable to find top level manager");
1361 TPM->addIndirectPassManager(PM);
1362 PM->setTopLevelManager(TPM);
1363 }
1364
1365 AnalysisResolver *AR = new AnalysisResolver(*Top);
1366 P->setResolver(AR);
1367
1368 S.push_back(PM);
1369}
1370
1371// Dump content of the pass manager stack.
1372void PMStack::dump() {
1373 for(std::deque<PMDataManager *>::iterator I = S.begin(),
1374 E = S.end(); I != E; ++I) {
1375 Pass *P = dynamic_cast<Pass *>(*I);
1376 printf ("%s ", P->getPassName());
1377 }
1378 if (!S.empty())
1379 printf ("\n");
Devang Patel1c56a632007-01-08 19:29:38 +00001380}
1381
Devang Patel1c56a632007-01-08 19:29:38 +00001382/// Find appropriate Module Pass Manager in the PM Stack and
1383/// add self into that manager.
Devang Pateldffca632007-01-17 20:30:17 +00001384void ModulePass::assignPassManager(PMStack &PMS,
Anton Korobeynikovfb801512007-04-16 18:10:23 +00001385 PassManagerType PreferredType) {
Devang Patel1c56a632007-01-08 19:29:38 +00001386
Devang Patel1c56a632007-01-08 19:29:38 +00001387 // Find Module Pass Manager
1388 while(!PMS.empty()) {
Devang Patel23f8aa92007-01-17 21:19:23 +00001389 PassManagerType TopPMType = PMS.top()->getPassManagerType();
1390 if (TopPMType == PreferredType)
1391 break; // We found desired pass manager
1392 else if (TopPMType > PMT_ModulePassManager)
Devang Patel1c56a632007-01-08 19:29:38 +00001393 PMS.pop(); // Pop children pass managers
Devang Patelac99eca2007-01-11 19:59:06 +00001394 else
1395 break;
Devang Patel1c56a632007-01-08 19:29:38 +00001396 }
1397
Devang Patel23f8aa92007-01-17 21:19:23 +00001398 PMS.top()->add(this);
Devang Patel1c56a632007-01-08 19:29:38 +00001399}
1400
Devang Patel3312f752007-01-16 21:43:18 +00001401/// Find appropriate Function Pass Manager or Call Graph Pass Manager
1402/// in the PM Stack and add self into that manager.
Devang Pateldffca632007-01-17 20:30:17 +00001403void FunctionPass::assignPassManager(PMStack &PMS,
Anton Korobeynikovfb801512007-04-16 18:10:23 +00001404 PassManagerType PreferredType) {
Devang Patel1c56a632007-01-08 19:29:38 +00001405
Devang Patel15701b52007-01-11 00:19:00 +00001406 // Find Module Pass Manager (TODO : Or Call Graph Pass Manager)
Devang Patel1c56a632007-01-08 19:29:38 +00001407 while(!PMS.empty()) {
Devang Patelac99eca2007-01-11 19:59:06 +00001408 if (PMS.top()->getPassManagerType() > PMT_FunctionPassManager)
1409 PMS.pop();
Devang Patel1c56a632007-01-08 19:29:38 +00001410 else
Devang Patel3312f752007-01-16 21:43:18 +00001411 break;
1412 }
1413 FPPassManager *FPP = dynamic_cast<FPPassManager *>(PMS.top());
1414
1415 // Create new Function Pass Manager
1416 if (!FPP) {
1417 assert(!PMS.empty() && "Unable to create Function Pass Manager");
1418 PMDataManager *PMD = PMS.top();
1419
1420 // [1] Create new Function Pass Manager
1421 FPP = new FPPassManager(PMD->getDepth() + 1);
1422
1423 // [2] Set up new manager's top level manager
1424 PMTopLevelManager *TPM = PMD->getTopLevelManager();
1425 TPM->addIndirectPassManager(FPP);
1426
1427 // [3] Assign manager to manage this new manager. This may create
1428 // and push new managers into PMS
1429 Pass *P = dynamic_cast<Pass *>(FPP);
Devang Pateldffca632007-01-17 20:30:17 +00001430
1431 // If Call Graph Pass Manager is active then use it to manage
1432 // this new Function Pass manager.
1433 if (PMD->getPassManagerType() == PMT_CallGraphPassManager)
1434 P->assignPassManager(PMS, PMT_CallGraphPassManager);
1435 else
1436 P->assignPassManager(PMS);
Devang Patel3312f752007-01-16 21:43:18 +00001437
1438 // [4] Push new manager into PMS
1439 PMS.push(FPP);
Devang Patel1c56a632007-01-08 19:29:38 +00001440 }
1441
Devang Patel3312f752007-01-16 21:43:18 +00001442 // Assign FPP as the manager of this pass.
1443 FPP->add(this);
Devang Patel1c56a632007-01-08 19:29:38 +00001444}
1445
Devang Patel3312f752007-01-16 21:43:18 +00001446/// Find appropriate Basic Pass Manager or Call Graph Pass Manager
Devang Patel1c56a632007-01-08 19:29:38 +00001447/// in the PM Stack and add self into that manager.
Devang Pateldffca632007-01-17 20:30:17 +00001448void BasicBlockPass::assignPassManager(PMStack &PMS,
Anton Korobeynikovfb801512007-04-16 18:10:23 +00001449 PassManagerType PreferredType) {
Devang Patel1c56a632007-01-08 19:29:38 +00001450
1451 BBPassManager *BBP = NULL;
1452
Devang Patel15701b52007-01-11 00:19:00 +00001453 // Basic Pass Manager is a leaf pass manager. It does not handle
1454 // any other pass manager.
1455 if (!PMS.empty()) {
Devang Patel1c56a632007-01-08 19:29:38 +00001456 BBP = dynamic_cast<BBPassManager *>(PMS.top());
Devang Patel1c56a632007-01-08 19:29:38 +00001457 }
1458
Devang Patel3312f752007-01-16 21:43:18 +00001459 // If leaf manager is not Basic Block Pass manager then create new
1460 // basic Block Pass manager.
Devang Patel15701b52007-01-11 00:19:00 +00001461
Devang Patel3312f752007-01-16 21:43:18 +00001462 if (!BBP) {
1463 assert(!PMS.empty() && "Unable to create BasicBlock Pass Manager");
1464 PMDataManager *PMD = PMS.top();
1465
1466 // [1] Create new Basic Block Manager
1467 BBP = new BBPassManager(PMD->getDepth() + 1);
1468
1469 // [2] Set up new manager's top level manager
1470 // Basic Block Pass Manager does not live by itself
1471 PMTopLevelManager *TPM = PMD->getTopLevelManager();
1472 TPM->addIndirectPassManager(BBP);
1473
Devang Patel15701b52007-01-11 00:19:00 +00001474 // [3] Assign manager to manage this new manager. This may create
1475 // and push new managers into PMS
Devang Patel3312f752007-01-16 21:43:18 +00001476 Pass *P = dynamic_cast<Pass *>(BBP);
1477 P->assignPassManager(PMS);
Devang Patel15701b52007-01-11 00:19:00 +00001478
Devang Patel3312f752007-01-16 21:43:18 +00001479 // [4] Push new manager into PMS
1480 PMS.push(BBP);
1481 }
Devang Patel1c56a632007-01-08 19:29:38 +00001482
Devang Patel3312f752007-01-16 21:43:18 +00001483 // Assign BBP as the manager of this pass.
1484 BBP->add(this);
Devang Patel1c56a632007-01-08 19:29:38 +00001485}
1486
Devang Patelc6b5a552007-01-05 20:16:23 +00001487