blob: 06c64759b3fc9af87155fcf389fd1ad370e33576 [file] [log] [blame]
Devang Patel55fd43f2006-11-07 21:31:57 +00001//===- PassManager.cpp - LLVM Pass Infrastructure Implementation ----------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Devang Patel55fd43f2006-11-07 21:31:57 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the LLVM Pass Manager infrastructure.
11//
12//===----------------------------------------------------------------------===//
13
14
Devang Patelab7752c2007-01-12 18:52:44 +000015#include "llvm/PassManagers.h"
Devang Patel45dc02d2006-12-13 20:03:48 +000016#include "llvm/Support/CommandLine.h"
Devang Patelc874eb52007-01-29 23:10:37 +000017#include "llvm/Support/Timer.h"
Devang Patel55fd43f2006-11-07 21:31:57 +000018#include "llvm/Module.h"
Devang Patel3799f972006-11-15 01:27:05 +000019#include "llvm/ModuleProvider.h"
Bill Wendling8f487662006-11-28 02:09:03 +000020#include "llvm/Support/Streams.h"
Devang Patel8e58a1b2006-12-14 00:59:42 +000021#include "llvm/Support/ManagedStatic.h"
Jeff Cohenca5183d2007-03-05 00:00:42 +000022#include <algorithm>
Devang Patel85d344b2006-11-11 01:31:05 +000023#include <vector>
Devang Patelb899eed2006-11-14 01:59:59 +000024#include <map>
Dan Gohman2bb7d062007-10-03 19:04:09 +000025using namespace llvm;
Devang Patelc2ff9622006-12-15 19:39:30 +000026
Devang Patelab7752c2007-01-12 18:52:44 +000027// See PassManagers.h for Pass Manager infrastructure overview.
Devang Patele77242c2006-12-07 18:23:30 +000028
Devang Patel45dc02d2006-12-13 20:03:48 +000029namespace llvm {
30
31//===----------------------------------------------------------------------===//
32// Pass debugging information. Often it is useful to find out what pass is
33// running when a crash occurs in a utility. When this library is compiled with
34// debugging on, a command line option (--debug-pass) is enabled that causes the
35// pass name to be printed before it executes.
36//
37
Devang Patele8ff1ce2006-12-13 21:13:31 +000038// Different debug levels that can be enabled...
39enum PassDebugLevel {
40 None, Arguments, Structure, Executions, Details
41};
42
Devang Patel45dc02d2006-12-13 20:03:48 +000043static cl::opt<enum PassDebugLevel>
Devang Patel26426942007-01-17 20:33:36 +000044PassDebugging("debug-pass", cl::Hidden,
Devang Patel45dc02d2006-12-13 20:03:48 +000045 cl::desc("Print PassManager debugging information"),
46 cl::values(
Devang Patele8ff1ce2006-12-13 21:13:31 +000047 clEnumVal(None , "disable debug output"),
48 clEnumVal(Arguments , "print pass arguments to pass to 'opt'"),
49 clEnumVal(Structure , "print pass structure before run()"),
50 clEnumVal(Executions, "print pass name before it is executed"),
51 clEnumVal(Details , "print pass details when it is executed"),
Devang Patel45dc02d2006-12-13 20:03:48 +000052 clEnumValEnd));
53} // End of llvm namespace
54
Devang Patelc2ff9622006-12-15 19:39:30 +000055namespace {
Devang Patel1b8d0152006-12-12 22:35:25 +000056
Devang Patel3f5d2b52006-12-07 19:21:29 +000057//===----------------------------------------------------------------------===//
Devang Patel5f4ddf52006-12-19 19:46:59 +000058// BBPassManager
Devang Patel7e601a72006-12-12 22:47:13 +000059//
Devang Patel5f4ddf52006-12-19 19:46:59 +000060/// BBPassManager manages BasicBlockPass. It batches all the
Devang Patelc67c9382006-11-08 10:05:38 +000061/// pass together and sequence them to process one basic block before
62/// processing next basic block.
Devang Patel5f4ddf52006-12-19 19:46:59 +000063class VISIBILITY_HIDDEN BBPassManager : public PMDataManager,
64 public FunctionPass {
Devang Patelc67c9382006-11-08 10:05:38 +000065
66public:
Devang Patel19974732007-05-03 01:11:54 +000067 static char ID;
Dan Gohmancdf2b3b2007-10-08 15:08:41 +000068 explicit BBPassManager(int Depth)
Devang Patel794fd752007-05-01 21:15:47 +000069 : PMDataManager(Depth), FunctionPass((intptr_t)&ID) {}
Devang Patelc67c9382006-11-08 10:05:38 +000070
Devang Patelc67c9382006-11-08 10:05:38 +000071 /// Execute all of the passes scheduled for execution. Keep track of
72 /// whether any of the passes modifies the function, and if so, return true.
73 bool runOnFunction(Function &F);
74
Devang Patel66d72e12006-12-07 19:57:52 +000075 /// Pass Manager itself does not invalidate any analysis info.
76 void getAnalysisUsage(AnalysisUsage &Info) const {
77 Info.setPreservesAll();
78 }
79
Devang Patel964e45e2006-12-08 00:59:05 +000080 bool doInitialization(Module &M);
81 bool doInitialization(Function &F);
82 bool doFinalization(Module &M);
83 bool doFinalization(Function &F);
84
Devang Patele27ae7e2007-02-01 22:08:25 +000085 virtual const char *getPassName() const {
86 return "BasicBlock Pass Manager";
87 }
88
Devang Patelebc09222006-12-12 23:34:33 +000089 // Print passes managed by this manager
90 void dumpPassStructure(unsigned Offset) {
Devang Patelc2ff9622006-12-15 19:39:30 +000091 llvm::cerr << std::string(Offset*2, ' ') << "BasicBlockPass Manager\n";
Devang Patel1554c852006-12-16 00:56:26 +000092 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
93 BasicBlockPass *BP = getContainedPass(Index);
94 BP->dumpPassStructure(Offset + 1);
95 dumpLastUses(BP, Offset+1);
Devang Patelebc09222006-12-12 23:34:33 +000096 }
97 }
Devang Patel1554c852006-12-16 00:56:26 +000098
99 BasicBlockPass *getContainedPass(unsigned N) {
100 assert ( N < PassVector.size() && "Pass number out of range!");
101 BasicBlockPass *BP = static_cast<BasicBlockPass *>(PassVector[N]);
102 return BP;
103 }
Devang Patel25919cb2007-01-11 01:10:25 +0000104
Devang Patel84da80d2007-02-27 15:00:39 +0000105 virtual PassManagerType getPassManagerType() const {
Devang Patel25919cb2007-01-11 01:10:25 +0000106 return PMT_BasicBlockPassManager;
107 }
Devang Patelc67c9382006-11-08 10:05:38 +0000108};
109
Devang Patel19974732007-05-03 01:11:54 +0000110char BBPassManager::ID = 0;
Devang Patelab7752c2007-01-12 18:52:44 +0000111}
Devang Patel5f4ddf52006-12-19 19:46:59 +0000112
Devang Patelab7752c2007-01-12 18:52:44 +0000113namespace llvm {
Devang Patelc67c9382006-11-08 10:05:38 +0000114
Devang Patel7e601a72006-12-12 22:47:13 +0000115//===----------------------------------------------------------------------===//
Devang Patel5f4ddf52006-12-19 19:46:59 +0000116// FunctionPassManagerImpl
Devang Patel7e601a72006-12-12 22:47:13 +0000117//
Devang Patel5f4ddf52006-12-19 19:46:59 +0000118/// FunctionPassManagerImpl manages FPPassManagers
119class FunctionPassManagerImpl : public Pass,
Devang Patel36bcb822007-01-11 22:15:30 +0000120 public PMDataManager,
121 public PMTopLevelManager {
Devang Patel5f4ddf52006-12-19 19:46:59 +0000122public:
Devang Patel19974732007-05-03 01:11:54 +0000123 static char ID;
Dan Gohmancdf2b3b2007-10-08 15:08:41 +0000124 explicit FunctionPassManagerImpl(int Depth) :
Devang Patel794fd752007-05-01 21:15:47 +0000125 Pass((intptr_t)&ID), PMDataManager(Depth),
126 PMTopLevelManager(TLM_Function) { }
Devang Patel5f4ddf52006-12-19 19:46:59 +0000127
128 /// add - Add a pass to the queue of passes to run. This passes ownership of
129 /// the Pass to the PassManager. When the PassManager is destroyed, the pass
130 /// will be destroyed as well, so there is no need to delete the pass. This
131 /// implies that all passes MUST be allocated with 'new'.
132 void add(Pass *P) {
133 schedulePass(P);
134 }
135
136 /// run - Execute all of the passes scheduled for execution. Keep track of
137 /// whether any of the passes modifies the module, and if so, return true.
138 bool run(Function &F);
139
140 /// doInitialization - Run all of the initializers for the function passes.
141 ///
142 bool doInitialization(Module &M);
143
Dan Gohman209ee182007-07-30 14:51:13 +0000144 /// doFinalization - Run all of the finalizers for the function passes.
Devang Patel5f4ddf52006-12-19 19:46:59 +0000145 ///
146 bool doFinalization(Module &M);
147
148 /// Pass Manager itself does not invalidate any analysis info.
149 void getAnalysisUsage(AnalysisUsage &Info) const {
150 Info.setPreservesAll();
151 }
152
153 inline void addTopLevelPass(Pass *P) {
154
155 if (ImmutablePass *IP = dynamic_cast<ImmutablePass *> (P)) {
156
157 // P is a immutable pass and it will be managed by this
158 // top level manager. Set up analysis resolver to connect them.
Devang Patelcde53d32007-01-05 22:47:07 +0000159 AnalysisResolver *AR = new AnalysisResolver(*this);
Devang Patel5f4ddf52006-12-19 19:46:59 +0000160 P->setResolver(AR);
161 initializeAnalysisImpl(P);
162 addImmutablePass(IP);
163 recordAvailableAnalysis(IP);
Devang Patela0dd9872007-01-12 17:23:48 +0000164 } else {
Devang Patela0dd9872007-01-12 17:23:48 +0000165 P->assignPassManager(activeStack);
Devang Patel5f4ddf52006-12-19 19:46:59 +0000166 }
Devang Patela0dd9872007-01-12 17:23:48 +0000167
Devang Patel5f4ddf52006-12-19 19:46:59 +0000168 }
169
170 FPPassManager *getContainedManager(unsigned N) {
171 assert ( N < PassManagers.size() && "Pass number out of range!");
172 FPPassManager *FP = static_cast<FPPassManager *>(PassManagers[N]);
173 return FP;
174 }
Devang Patel5f4ddf52006-12-19 19:46:59 +0000175};
176
Devang Patel19974732007-05-03 01:11:54 +0000177char FunctionPassManagerImpl::ID = 0;
Devang Patel5f4ddf52006-12-19 19:46:59 +0000178//===----------------------------------------------------------------------===//
179// MPPassManager
180//
181/// MPPassManager manages ModulePasses and function pass managers.
Devang Patelc67c9382006-11-08 10:05:38 +0000182/// It batches all Module passes passes and function pass managers together and
183/// sequence them to process one module.
Devang Patel5f4ddf52006-12-19 19:46:59 +0000184class MPPassManager : public Pass, public PMDataManager {
Devang Patelc67c9382006-11-08 10:05:38 +0000185
186public:
Devang Patel19974732007-05-03 01:11:54 +0000187 static char ID;
Dan Gohmancdf2b3b2007-10-08 15:08:41 +0000188 explicit MPPassManager(int Depth) :
189 Pass((intptr_t)&ID), PMDataManager(Depth) { }
Devang Patel693941b2007-04-16 20:39:59 +0000190
191 // Delete on the fly managers.
192 virtual ~MPPassManager() {
Devang Pateldfa1ec32007-04-26 17:50:19 +0000193 for (std::map<Pass *, FunctionPassManagerImpl *>::iterator
Devang Patel693941b2007-04-16 20:39:59 +0000194 I = OnTheFlyManagers.begin(), E = OnTheFlyManagers.end();
195 I != E; ++I) {
Devang Pateldfa1ec32007-04-26 17:50:19 +0000196 FunctionPassManagerImpl *FPP = I->second;
Devang Patel693941b2007-04-16 20:39:59 +0000197 delete FPP;
198 }
199 }
200
Devang Patelc67c9382006-11-08 10:05:38 +0000201 /// run - Execute all of the passes scheduled for execution. Keep track of
202 /// whether any of the passes modifies the module, and if so, return true.
203 bool runOnModule(Module &M);
Devang Patelbe6d5152006-11-13 22:40:09 +0000204
Devang Patel66d72e12006-12-07 19:57:52 +0000205 /// Pass Manager itself does not invalidate any analysis info.
206 void getAnalysisUsage(AnalysisUsage &Info) const {
207 Info.setPreservesAll();
208 }
209
Devang Patel569a6fd2007-04-16 20:12:57 +0000210 /// Add RequiredPass into list of lower level passes required by pass P.
211 /// RequiredPass is run on the fly by Pass Manager when P requests it
212 /// through getAnalysis interface.
213 virtual void addLowerLevelRequiredPass(Pass *P, Pass *RequiredPass);
214
Devang Patel0ed8df32007-04-16 20:27:05 +0000215 /// Return function pass corresponding to PassInfo PI, that is
216 /// required by module pass MP. Instantiate analysis pass, by using
217 /// its runOnFunction() for function F.
218 virtual Pass* getOnTheFlyPass(Pass *MP, const PassInfo *PI, Function &F);
219
Devang Patele27ae7e2007-02-01 22:08:25 +0000220 virtual const char *getPassName() const {
221 return "Module Pass Manager";
222 }
223
Devang Patelebc09222006-12-12 23:34:33 +0000224 // Print passes managed by this manager
225 void dumpPassStructure(unsigned Offset) {
226 llvm::cerr << std::string(Offset*2, ' ') << "ModulePass Manager\n";
Devang Patel1554c852006-12-16 00:56:26 +0000227 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
228 ModulePass *MP = getContainedPass(Index);
229 MP->dumpPassStructure(Offset + 1);
Devang Pateldfa1ec32007-04-26 17:50:19 +0000230 if (FunctionPassManagerImpl *FPP = OnTheFlyManagers[MP])
Devang Patel693941b2007-04-16 20:39:59 +0000231 FPP->dumpPassStructure(Offset + 2);
Devang Patel1554c852006-12-16 00:56:26 +0000232 dumpLastUses(MP, Offset+1);
Devang Patelebc09222006-12-12 23:34:33 +0000233 }
234 }
235
Devang Patel1554c852006-12-16 00:56:26 +0000236 ModulePass *getContainedPass(unsigned N) {
237 assert ( N < PassVector.size() && "Pass number out of range!");
238 ModulePass *MP = static_cast<ModulePass *>(PassVector[N]);
239 return MP;
240 }
241
Devang Patel84da80d2007-02-27 15:00:39 +0000242 virtual PassManagerType getPassManagerType() const {
243 return PMT_ModulePassManager;
244 }
Devang Patel0ed8df32007-04-16 20:27:05 +0000245
246 private:
247 /// Collection of on the fly FPPassManagers. These managers manage
248 /// function passes that are required by module passes.
Devang Pateldfa1ec32007-04-26 17:50:19 +0000249 std::map<Pass *, FunctionPassManagerImpl *> OnTheFlyManagers;
Devang Patelc67c9382006-11-08 10:05:38 +0000250};
251
Devang Patel19974732007-05-03 01:11:54 +0000252char MPPassManager::ID = 0;
Devang Patel7e601a72006-12-12 22:47:13 +0000253//===----------------------------------------------------------------------===//
Devang Patel5f4ddf52006-12-19 19:46:59 +0000254// PassManagerImpl
Devang Patel7e601a72006-12-12 22:47:13 +0000255//
Devang Patel794fd752007-05-01 21:15:47 +0000256
Devang Patel5f4ddf52006-12-19 19:46:59 +0000257/// PassManagerImpl manages MPPassManagers
258class PassManagerImpl : public Pass,
Devang Patel36bcb822007-01-11 22:15:30 +0000259 public PMDataManager,
260 public PMTopLevelManager {
Devang Patel5a39b2e2006-11-08 10:29:57 +0000261
262public:
Devang Patel19974732007-05-03 01:11:54 +0000263 static char ID;
Dan Gohmancdf2b3b2007-10-08 15:08:41 +0000264 explicit PassManagerImpl(int Depth) :
265 Pass((intptr_t)&ID), PMDataManager(Depth),
266 PMTopLevelManager(TLM_Pass) { }
Devang Patelf72d29c2006-12-07 23:24:58 +0000267
Devang Patel5a39b2e2006-11-08 10:29:57 +0000268 /// add - Add a pass to the queue of passes to run. This passes ownership of
269 /// the Pass to the PassManager. When the PassManager is destroyed, the pass
270 /// will be destroyed as well, so there is no need to delete the pass. This
271 /// implies that all passes MUST be allocated with 'new'.
Devang Patel877bfbb2006-12-07 21:32:57 +0000272 void add(Pass *P) {
Devang Patele61b7472006-12-08 22:34:02 +0000273 schedulePass(P);
Devang Patel877bfbb2006-12-07 21:32:57 +0000274 }
Devang Patel5a39b2e2006-11-08 10:29:57 +0000275
276 /// run - Execute all of the passes scheduled for execution. Keep track of
277 /// whether any of the passes modifies the module, and if so, return true.
278 bool run(Module &M);
279
Devang Patel66d72e12006-12-07 19:57:52 +0000280 /// Pass Manager itself does not invalidate any analysis info.
281 void getAnalysisUsage(AnalysisUsage &Info) const {
282 Info.setPreservesAll();
283 }
284
Devang Pateleb0d6132006-12-07 21:27:23 +0000285 inline void addTopLevelPass(Pass *P) {
Devang Patel145e83d2006-12-08 23:53:00 +0000286
Devang Patelc9a62932006-12-08 23:57:43 +0000287 if (ImmutablePass *IP = dynamic_cast<ImmutablePass *> (P)) {
Devang Patel145e83d2006-12-08 23:53:00 +0000288
289 // P is a immutable pass and it will be managed by this
290 // top level manager. Set up analysis resolver to connect them.
Devang Patelcde53d32007-01-05 22:47:07 +0000291 AnalysisResolver *AR = new AnalysisResolver(*this);
Devang Patel145e83d2006-12-08 23:53:00 +0000292 P->setResolver(AR);
Devang Patel689c6832006-12-12 22:21:37 +0000293 initializeAnalysisImpl(P);
Devang Patelc9a62932006-12-08 23:57:43 +0000294 addImmutablePass(IP);
Devang Patel689c6832006-12-12 22:21:37 +0000295 recordAvailableAnalysis(IP);
Devang Patela0dd9872007-01-12 17:23:48 +0000296 } else {
Devang Patela0dd9872007-01-12 17:23:48 +0000297 P->assignPassManager(activeStack);
Devang Patel145e83d2006-12-08 23:53:00 +0000298 }
Devang Patela0dd9872007-01-12 17:23:48 +0000299
Devang Pateleb0d6132006-12-07 21:27:23 +0000300 }
301
Devang Patel5f4ddf52006-12-19 19:46:59 +0000302 MPPassManager *getContainedManager(unsigned N) {
303 assert ( N < PassManagers.size() && "Pass number out of range!");
304 MPPassManager *MP = static_cast<MPPassManager *>(PassManagers[N]);
305 return MP;
306 }
307
Devang Patel5a39b2e2006-11-08 10:29:57 +0000308};
309
Devang Patel19974732007-05-03 01:11:54 +0000310char PassManagerImpl::ID = 0;
Devang Patelc874eb52007-01-29 23:10:37 +0000311} // End of llvm namespace
312
313namespace {
314
315//===----------------------------------------------------------------------===//
316// TimingInfo Class - This class is used to calculate information about the
317// amount of time each pass takes to execute. This only happens when
318// -time-passes is enabled on the command line.
319//
320
321class VISIBILITY_HIDDEN TimingInfo {
322 std::map<Pass*, Timer> TimingData;
323 TimerGroup TG;
324
325public:
326 // Use 'create' member to get this.
327 TimingInfo() : TG("... Pass execution timing report ...") {}
328
329 // TimingDtor - Print out information about timing information
330 ~TimingInfo() {
331 // Delete all of the timers...
332 TimingData.clear();
333 // TimerGroup is deleted next, printing the report.
334 }
335
336 // createTheTimeInfo - This method either initializes the TheTimeInfo pointer
337 // to a non null value (if the -time-passes option is enabled) or it leaves it
338 // null. It may be called multiple times.
339 static void createTheTimeInfo();
340
341 void passStarted(Pass *P) {
342
343 if (dynamic_cast<PMDataManager *>(P))
344 return;
345
346 std::map<Pass*, Timer>::iterator I = TimingData.find(P);
347 if (I == TimingData.end())
348 I=TimingData.insert(std::make_pair(P, Timer(P->getPassName(), TG))).first;
349 I->second.startTimer();
350 }
351 void passEnded(Pass *P) {
352
353 if (dynamic_cast<PMDataManager *>(P))
354 return;
355
356 std::map<Pass*, Timer>::iterator I = TimingData.find(P);
357 assert (I != TimingData.end() && "passStarted/passEnded not nested right!");
358 I->second.stopTimer();
359 }
360};
361
Devang Patel8e58a1b2006-12-14 00:59:42 +0000362static TimingInfo *TheTimeInfo;
363
Devang Patelc874eb52007-01-29 23:10:37 +0000364} // End of anon namespace
Devang Patelc67c9382006-11-08 10:05:38 +0000365
Devang Patel06e86562006-12-07 19:39:39 +0000366//===----------------------------------------------------------------------===//
Devang Patel1b8d0152006-12-12 22:35:25 +0000367// PMTopLevelManager implementation
368
Devang Patel8f3f3d12007-01-16 02:00:38 +0000369/// Initialize top level manager. Create first pass manager.
370PMTopLevelManager::PMTopLevelManager (enum TopLevelManagerType t) {
371
372 if (t == TLM_Pass) {
373 MPPassManager *MPP = new MPPassManager(1);
374 MPP->setTopLevelManager(this);
375 addPassManager(MPP);
376 activeStack.push(MPP);
377 }
378 else if (t == TLM_Function) {
379 FPPassManager *FPP = new FPPassManager(1);
380 FPP->setTopLevelManager(this);
381 addPassManager(FPP);
382 activeStack.push(FPP);
383 }
384}
385
Devang Patel1b8d0152006-12-12 22:35:25 +0000386/// Set pass P as the last user of the given analysis passes.
Devang Pateledbef382007-07-20 18:04:54 +0000387void PMTopLevelManager::setLastUser(SmallVector<Pass *, 12> &AnalysisPasses,
Devang Patel1b8d0152006-12-12 22:35:25 +0000388 Pass *P) {
389
Devang Pateledbef382007-07-20 18:04:54 +0000390 for (SmallVector<Pass *, 12>::iterator I = AnalysisPasses.begin(),
Devang Patel1b8d0152006-12-12 22:35:25 +0000391 E = AnalysisPasses.end(); I != E; ++I) {
392 Pass *AP = *I;
393 LastUser[AP] = P;
Devang Pateld46825c2007-03-08 19:05:01 +0000394
395 if (P == AP)
396 continue;
397
Devang Patel1b8d0152006-12-12 22:35:25 +0000398 // If AP is the last user of other passes then make P last user of
399 // such passes.
400 for (std::map<Pass *, Pass *>::iterator LUI = LastUser.begin(),
401 LUE = LastUser.end(); LUI != LUE; ++LUI) {
402 if (LUI->second == AP)
403 LastUser[LUI->first] = P;
404 }
405 }
Devang Patel1b8d0152006-12-12 22:35:25 +0000406}
407
408/// Collect passes whose last user is P
Devang Pateledbef382007-07-20 18:04:54 +0000409void PMTopLevelManager::collectLastUses(SmallVector<Pass *, 12> &LastUses,
Devang Patel1b8d0152006-12-12 22:35:25 +0000410 Pass *P) {
Chris Lattner63925c82007-02-17 23:14:24 +0000411 for (std::map<Pass *, Pass *>::iterator LUI = LastUser.begin(),
412 LUE = LastUser.end(); LUI != LUE; ++LUI)
413 if (LUI->second == P)
414 LastUses.push_back(LUI->first);
Devang Patel1b8d0152006-12-12 22:35:25 +0000415}
416
417/// Schedule pass P for execution. Make sure that passes required by
418/// P are run before P is run. Update analysis info maintained by
419/// the manager. Remove dead passes. This is a recursive function.
420void PMTopLevelManager::schedulePass(Pass *P) {
421
Devang Patel9d133e12007-01-16 21:43:18 +0000422 // TODO : Allocate function manager for this pass, other wise required set
423 // may be inserted into previous function manager
Devang Patel1b8d0152006-12-12 22:35:25 +0000424
Devang Patel22a1cf92007-03-06 01:06:16 +0000425 // Give pass a chance to prepare the stage.
426 P->preparePassManager(activeStack);
427
Devang Patel1b8d0152006-12-12 22:35:25 +0000428 AnalysisUsage AnUsage;
429 P->getAnalysisUsage(AnUsage);
430 const std::vector<AnalysisID> &RequiredSet = AnUsage.getRequiredSet();
431 for (std::vector<AnalysisID>::const_iterator I = RequiredSet.begin(),
432 E = RequiredSet.end(); I != E; ++I) {
433
434 Pass *AnalysisPass = findAnalysisPass(*I);
435 if (!AnalysisPass) {
Devang Patel1b8d0152006-12-12 22:35:25 +0000436 AnalysisPass = (*I)->createPass();
Devang Patel569a6fd2007-04-16 20:12:57 +0000437 // Schedule this analysis run first only if it is not a lower level
438 // analysis pass. Lower level analsyis passes are run on the fly.
439 if (P->getPotentialPassManagerType () >=
440 AnalysisPass->getPotentialPassManagerType())
441 schedulePass(AnalysisPass);
442 else
443 delete AnalysisPass;
Devang Patel1b8d0152006-12-12 22:35:25 +0000444 }
445 }
446
447 // Now all required passes are available.
448 addTopLevelPass(P);
449}
450
451/// Find the pass that implements Analysis AID. Search immutable
452/// passes and all pass managers. If desired pass is not found
453/// then return NULL.
454Pass *PMTopLevelManager::findAnalysisPass(AnalysisID AID) {
455
456 Pass *P = NULL;
Devang Pateld0fa16c2006-12-12 22:50:05 +0000457 // Check pass managers
458 for (std::vector<Pass *>::iterator I = PassManagers.begin(),
459 E = PassManagers.end(); P == NULL && I != E; ++I) {
460 PMDataManager *PMD = dynamic_cast<PMDataManager *>(*I);
461 assert(PMD && "This is not a PassManager");
462 P = PMD->findAnalysisPass(AID, false);
463 }
464
465 // Check other pass managers
466 for (std::vector<PMDataManager *>::iterator I = IndirectPassManagers.begin(),
467 E = IndirectPassManagers.end(); P == NULL && I != E; ++I)
468 P = (*I)->findAnalysisPass(AID, false);
469
Devang Patel1b8d0152006-12-12 22:35:25 +0000470 for (std::vector<ImmutablePass *>::iterator I = ImmutablePasses.begin(),
471 E = ImmutablePasses.end(); P == NULL && I != E; ++I) {
472 const PassInfo *PI = (*I)->getPassInfo();
473 if (PI == AID)
474 P = *I;
475
476 // If Pass not found then check the interfaces implemented by Immutable Pass
477 if (!P) {
Devang Patel1a803862006-12-15 22:57:49 +0000478 const std::vector<const PassInfo*> &ImmPI = PI->getInterfacesImplemented();
479 if (std::find(ImmPI.begin(), ImmPI.end(), AID) != ImmPI.end())
480 P = *I;
Devang Patel1b8d0152006-12-12 22:35:25 +0000481 }
482 }
483
Devang Patel1b8d0152006-12-12 22:35:25 +0000484 return P;
485}
486
Devang Patelebc09222006-12-12 23:34:33 +0000487// Print passes managed by this top level manager.
Devang Patela52035a2006-12-15 20:13:01 +0000488void PMTopLevelManager::dumpPasses() const {
Devang Patelebc09222006-12-12 23:34:33 +0000489
Devang Patel26426942007-01-17 20:33:36 +0000490 if (PassDebugging < Structure)
Devang Patel5f4ddf52006-12-19 19:46:59 +0000491 return;
492
Devang Patelebc09222006-12-12 23:34:33 +0000493 // Print out the immutable passes
494 for (unsigned i = 0, e = ImmutablePasses.size(); i != e; ++i) {
495 ImmutablePasses[i]->dumpPassStructure(0);
496 }
497
Devang Patela52035a2006-12-15 20:13:01 +0000498 for (std::vector<Pass *>::const_iterator I = PassManagers.begin(),
Devang Patelebc09222006-12-12 23:34:33 +0000499 E = PassManagers.end(); I != E; ++I)
500 (*I)->dumpPassStructure(1);
Devang Patelebc09222006-12-12 23:34:33 +0000501}
502
Devang Patela52035a2006-12-15 20:13:01 +0000503void PMTopLevelManager::dumpArguments() const {
Devang Patelc32cf542006-12-13 22:10:00 +0000504
Devang Patel26426942007-01-17 20:33:36 +0000505 if (PassDebugging < Arguments)
Devang Patelc32cf542006-12-13 22:10:00 +0000506 return;
507
508 cerr << "Pass Arguments: ";
Devang Patela52035a2006-12-15 20:13:01 +0000509 for (std::vector<Pass *>::const_iterator I = PassManagers.begin(),
Devang Patelc32cf542006-12-13 22:10:00 +0000510 E = PassManagers.end(); I != E; ++I) {
511 PMDataManager *PMD = dynamic_cast<PMDataManager *>(*I);
512 assert(PMD && "This is not a PassManager");
513 PMD->dumpPassArguments();
514 }
515 cerr << "\n";
516}
517
Devang Patel1336a6b2006-12-21 00:16:50 +0000518void PMTopLevelManager::initializeAllAnalysisInfo() {
519
520 for (std::vector<Pass *>::iterator I = PassManagers.begin(),
521 E = PassManagers.end(); I != E; ++I) {
522 PMDataManager *PMD = dynamic_cast<PMDataManager *>(*I);
523 assert(PMD && "This is not a PassManager");
524 PMD->initializeAnalysisInfo();
525 }
526
527 // Initailize other pass managers
528 for (std::vector<PMDataManager *>::iterator I = IndirectPassManagers.begin(),
529 E = IndirectPassManagers.end(); I != E; ++I)
530 (*I)->initializeAnalysisInfo();
531}
532
Devang Patelab7752c2007-01-12 18:52:44 +0000533/// Destructor
534PMTopLevelManager::~PMTopLevelManager() {
535 for (std::vector<Pass *>::iterator I = PassManagers.begin(),
536 E = PassManagers.end(); I != E; ++I)
537 delete *I;
538
539 for (std::vector<ImmutablePass *>::iterator
540 I = ImmutablePasses.begin(), E = ImmutablePasses.end(); I != E; ++I)
541 delete *I;
542
543 PassManagers.clear();
544}
545
Devang Patel1b8d0152006-12-12 22:35:25 +0000546//===----------------------------------------------------------------------===//
Devang Patel419f0e92006-12-07 18:36:24 +0000547// PMDataManager implementation
Devang Patel889739c2006-11-07 22:35:17 +0000548
Devang Patel2c5d1852006-11-08 01:31:28 +0000549/// Return true IFF pass P's required analysis set does not required new
Devang Patel889739c2006-11-07 22:35:17 +0000550/// manager.
Devang Patel419f0e92006-12-07 18:36:24 +0000551bool PMDataManager::manageablePass(Pass *P) {
Devang Patel889739c2006-11-07 22:35:17 +0000552
Devang Patel4045af12006-12-07 18:47:25 +0000553 // TODO
554 // If this pass is not preserving information that is required by a
555 // pass maintained by higher level pass manager then do not insert
556 // this pass into current manager. Use new manager. For example,
557 // For example, If FunctionPass F is not preserving ModulePass Info M1
558 // that is used by another ModulePass M2 then do not insert F in
559 // current function pass manager.
Devang Patel889739c2006-11-07 22:35:17 +0000560 return true;
561}
562
Devang Patelb8526162006-11-11 01:10:19 +0000563/// Augement AvailableAnalysis by adding analysis made available by pass P.
Devang Patelf32b4dd2006-12-07 19:33:53 +0000564void PMDataManager::recordAvailableAnalysis(Pass *P) {
Devang Patelb899eed2006-11-14 01:59:59 +0000565
Devang Patelb8526162006-11-11 01:10:19 +0000566 if (const PassInfo *PI = P->getPassInfo()) {
Devang Patelb899eed2006-11-14 01:59:59 +0000567 AvailableAnalysis[PI] = P;
Devang Patelb8526162006-11-11 01:10:19 +0000568
Devang Patelf32b4dd2006-12-07 19:33:53 +0000569 //This pass is the current implementation of all of the interfaces it
570 //implements as well.
571 const std::vector<const PassInfo*> &II = PI->getInterfacesImplemented();
572 for (unsigned i = 0, e = II.size(); i != e; ++i)
573 AvailableAnalysis[II[i]] = P;
Devang Patelb8526162006-11-11 01:10:19 +0000574 }
575}
576
Devang Patel7b65dd92007-03-06 17:52:53 +0000577// Return true if P preserves high level analysis used by other
578// passes managed by this manager
579bool PMDataManager::preserveHigherLevelAnalysis(Pass *P) {
580
581 AnalysisUsage AnUsage;
582 P->getAnalysisUsage(AnUsage);
583
584 if (AnUsage.getPreservesAll())
585 return true;
586
587 const std::vector<AnalysisID> &PreservedSet = AnUsage.getPreservedSet();
588 for (std::vector<Pass *>::iterator I = HigherLevelAnalysis.begin(),
589 E = HigherLevelAnalysis.end(); I != E; ++I) {
590 Pass *P1 = *I;
Devang Pateld46825c2007-03-08 19:05:01 +0000591 if (!dynamic_cast<ImmutablePass*>(P1)
592 && std::find(PreservedSet.begin(), PreservedSet.end(), P1->getPassInfo()) ==
593 PreservedSet.end())
594 return false;
Devang Patel7b65dd92007-03-06 17:52:53 +0000595 }
596
597 return true;
598}
599
Devang Patel58e0ef12007-07-19 18:02:32 +0000600/// verifyPreservedAnalysis -- Verify analysis presreved by pass P.
601void PMDataManager::verifyPreservedAnalysis(Pass *P) {
Devang Patel14d65812006-11-11 01:24:55 +0000602 AnalysisUsage AnUsage;
603 P->getAnalysisUsage(AnUsage);
Devang Patel9750b5d2007-07-19 05:36:09 +0000604 const std::vector<AnalysisID> &PreservedSet = AnUsage.getPreservedSet();
Devang Patel889739c2006-11-07 22:35:17 +0000605
Devang Patel9750b5d2007-07-19 05:36:09 +0000606 // Verify preserved analysis
Devang Patel58e0ef12007-07-19 18:02:32 +0000607 for (std::vector<AnalysisID>::const_iterator I = PreservedSet.begin(),
608 E = PreservedSet.end(); I != E; ++I) {
609 AnalysisID AID = *I;
610 Pass *AP = findAnalysisPass(AID, true);
611 if (AP)
612 AP->verifyAnalysis();
Devang Patel9750b5d2007-07-19 05:36:09 +0000613 }
Devang Patel58e0ef12007-07-19 18:02:32 +0000614}
615
616/// Remove Analyss not preserved by Pass P
617void PMDataManager::removeNotPreservedAnalysis(Pass *P) {
618 AnalysisUsage AnUsage;
619 P->getAnalysisUsage(AnUsage);
Devang Patel04b4e052006-12-07 20:03:49 +0000620 if (AnUsage.getPreservesAll())
621 return;
622
Devang Patel58e0ef12007-07-19 18:02:32 +0000623 const std::vector<AnalysisID> &PreservedSet = AnUsage.getPreservedSet();
Devang Patelb899eed2006-11-14 01:59:59 +0000624 for (std::map<AnalysisID, Pass*>::iterator I = AvailableAnalysis.begin(),
Devang Patel54e247d2006-12-12 23:07:44 +0000625 E = AvailableAnalysis.end(); I != E; ) {
Devang Patel1a803862006-12-15 22:57:49 +0000626 std::map<AnalysisID, Pass*>::iterator Info = I++;
Devang Pateld46825c2007-03-08 19:05:01 +0000627 if (!dynamic_cast<ImmutablePass*>(Info->second)
628 && std::find(PreservedSet.begin(), PreservedSet.end(), Info->first) ==
629 PreservedSet.end())
Devang Patel14d65812006-11-11 01:24:55 +0000630 // Remove this analysis
Devang Pateld46825c2007-03-08 19:05:01 +0000631 AvailableAnalysis.erase(Info);
Devang Patel14d65812006-11-11 01:24:55 +0000632 }
Devang Patelfe613902007-03-06 01:55:46 +0000633
634 // Check inherited analysis also. If P is not preserving analysis
635 // provided by parent manager then remove it here.
636 for (unsigned Index = 0; Index < PMT_Last; ++Index) {
637
638 if (!InheritedAnalysis[Index])
639 continue;
640
641 for (std::map<AnalysisID, Pass*>::iterator
642 I = InheritedAnalysis[Index]->begin(),
643 E = InheritedAnalysis[Index]->end(); I != E; ) {
644 std::map<AnalysisID, Pass *>::iterator Info = I++;
Devang Pateld46825c2007-03-08 19:05:01 +0000645 if (!dynamic_cast<ImmutablePass*>(Info->second)
646 && std::find(PreservedSet.begin(), PreservedSet.end(), Info->first) ==
647 PreservedSet.end())
Devang Patelfe613902007-03-06 01:55:46 +0000648 // Remove this analysis
Devang Pateld46825c2007-03-08 19:05:01 +0000649 InheritedAnalysis[Index]->erase(Info);
Devang Patelfe613902007-03-06 01:55:46 +0000650 }
651 }
652
Devang Patel889739c2006-11-07 22:35:17 +0000653}
654
Devang Pateldf1a10e2006-11-14 03:05:08 +0000655/// Remove analysis passes that are not used any longer
Devang Patel6b4af742007-08-10 18:29:32 +0000656void PMDataManager::removeDeadPasses(Pass *P, const char *Msg,
Devang Patel7f997612007-03-05 20:01:30 +0000657 enum PassDebuggingString DBG_STR) {
Devang Patelf9a60ae2006-12-08 00:37:52 +0000658
Devang Pateledbef382007-07-20 18:04:54 +0000659 SmallVector<Pass *, 12> DeadPasses;
Devang Patel0ed8df32007-04-16 20:27:05 +0000660
Devang Patel693941b2007-04-16 20:39:59 +0000661 // If this is a on the fly manager then it does not have TPM.
Devang Patel0ed8df32007-04-16 20:27:05 +0000662 if (!TPM)
663 return;
664
Devang Patelf9a60ae2006-12-08 00:37:52 +0000665 TPM->collectLastUses(DeadPasses, P);
666
Devang Pateledbef382007-07-20 18:04:54 +0000667 for (SmallVector<Pass *, 12>::iterator I = DeadPasses.begin(),
Devang Patelf9a60ae2006-12-08 00:37:52 +0000668 E = DeadPasses.end(); I != E; ++I) {
Devang Patel4eeea772006-12-13 23:50:44 +0000669
Devang Patel7f997612007-03-05 20:01:30 +0000670 dumpPassInfo(*I, FREEING_MSG, DBG_STR, Msg);
Devang Patel4eeea772006-12-13 23:50:44 +0000671
Devang Patel55d5ac72007-03-05 18:20:51 +0000672 if (TheTimeInfo) TheTimeInfo->passStarted(*I);
Devang Patelf9a60ae2006-12-08 00:37:52 +0000673 (*I)->releaseMemory();
Devang Patel55d5ac72007-03-05 18:20:51 +0000674 if (TheTimeInfo) TheTimeInfo->passEnded(*I);
Devang Patel8e58a1b2006-12-14 00:59:42 +0000675
Devang Patelf9a60ae2006-12-08 00:37:52 +0000676 std::map<AnalysisID, Pass*>::iterator Pos =
677 AvailableAnalysis.find((*I)->getPassInfo());
678
Devang Patel964e45e2006-12-08 00:59:05 +0000679 // It is possible that pass is already removed from the AvailableAnalysis
Devang Patelf9a60ae2006-12-08 00:37:52 +0000680 if (Pos != AvailableAnalysis.end())
681 AvailableAnalysis.erase(Pos);
682 }
Devang Pateldf1a10e2006-11-14 03:05:08 +0000683}
684
Devang Patel4045af12006-12-07 18:47:25 +0000685/// Add pass P into the PassVector. Update
Devang Patel893a5a62006-11-11 02:04:19 +0000686/// AvailableAnalysis appropriately if ProcessAnalysis is true.
Devang Patele24e0e12007-01-12 20:07:16 +0000687void PMDataManager::add(Pass *P,
Devang Patel66eeb492007-01-15 23:06:56 +0000688 bool ProcessAnalysis) {
Devang Patele2533852006-11-11 01:51:02 +0000689
Devang Patel145e83d2006-12-08 23:53:00 +0000690 // This manager is going to manage pass P. Set up analysis resolver
691 // to connect them.
Devang Patelcde53d32007-01-05 22:47:07 +0000692 AnalysisResolver *AR = new AnalysisResolver(*this);
Devang Patel145e83d2006-12-08 23:53:00 +0000693 P->setResolver(AR);
694
Devang Patelcf5fb2b2007-03-05 22:57:49 +0000695 // If a FunctionPass F is the last user of ModulePass info M
696 // then the F's manager, not F, records itself as a last user of M.
Devang Pateledbef382007-07-20 18:04:54 +0000697 SmallVector<Pass *, 12> TransferLastUses;
Devang Patelcf5fb2b2007-03-05 22:57:49 +0000698
Devang Patel893a5a62006-11-11 02:04:19 +0000699 if (ProcessAnalysis) {
Devang Patele1663402006-12-07 23:55:10 +0000700
701 // At the moment, this pass is the last user of all required passes.
Devang Pateledbef382007-07-20 18:04:54 +0000702 SmallVector<Pass *, 12> LastUses;
Devang Patel569a6fd2007-04-16 20:12:57 +0000703 SmallVector<Pass *, 8> RequiredPasses;
704 SmallVector<AnalysisID, 8> ReqAnalysisNotAvailable;
705
Devang Patele1663402006-12-07 23:55:10 +0000706 unsigned PDepth = this->getDepth();
707
Devang Patel569a6fd2007-04-16 20:12:57 +0000708 collectRequiredAnalysis(RequiredPasses,
709 ReqAnalysisNotAvailable, P);
710 for (SmallVector<Pass *, 8>::iterator I = RequiredPasses.begin(),
Devang Patele1663402006-12-07 23:55:10 +0000711 E = RequiredPasses.end(); I != E; ++I) {
712 Pass *PRequired = *I;
713 unsigned RDepth = 0;
Devang Patelcd520b12006-12-09 00:07:38 +0000714
715 PMDataManager &DM = PRequired->getResolver()->getPMDataManager();
716 RDepth = DM.getDepth();
717
Devang Patele1663402006-12-07 23:55:10 +0000718 if (PDepth == RDepth)
719 LastUses.push_back(PRequired);
720 else if (PDepth > RDepth) {
721 // Let the parent claim responsibility of last use
Devang Patelef89c552006-12-15 00:08:26 +0000722 TransferLastUses.push_back(PRequired);
Devang Patel7b65dd92007-03-06 17:52:53 +0000723 // Keep track of higher level analysis used by this manager.
724 HigherLevelAnalysis.push_back(PRequired);
Devang Patel569a6fd2007-04-16 20:12:57 +0000725 } else
726 assert (0 && "Unable to accomodate Required Pass");
727 }
728
Devang Patel3f5ecd72007-01-15 20:31:54 +0000729 // Set P as P's last user until someone starts using P.
730 // However, if P is a Pass Manager then it does not need
731 // to record its last user.
Devang Patel8df87092007-01-16 22:38:10 +0000732 if (!dynamic_cast<PMDataManager *>(P))
Devang Patel3f5ecd72007-01-15 20:31:54 +0000733 LastUses.push_back(P);
Devang Patel8df87092007-01-16 22:38:10 +0000734 TPM->setLastUser(LastUses, P);
Devang Patele1663402006-12-07 23:55:10 +0000735
Devang Patelcf5fb2b2007-03-05 22:57:49 +0000736 if (!TransferLastUses.empty()) {
737 Pass *My_PM = dynamic_cast<Pass *>(this);
738 TPM->setLastUser(TransferLastUses, My_PM);
739 TransferLastUses.clear();
740 }
741
Devang Patel0ed8df32007-04-16 20:27:05 +0000742 // Now, take care of required analysises that are not available.
743 for (SmallVector<AnalysisID, 8>::iterator
744 I = ReqAnalysisNotAvailable.begin(),
745 E = ReqAnalysisNotAvailable.end() ;I != E; ++I) {
746 Pass *AnalysisPass = (*I)->createPass();
747 this->addLowerLevelRequiredPass(P, AnalysisPass);
748 }
749
Devang Patel0ac961d2006-12-07 22:09:36 +0000750 // Take a note of analysis required and made available by this pass.
Devang Patel893a5a62006-11-11 02:04:19 +0000751 // Remove the analysis not preserved by this pass
752 removeNotPreservedAnalysis(P);
Devang Patel0ac961d2006-12-07 22:09:36 +0000753 recordAvailableAnalysis(P);
Devang Patel893a5a62006-11-11 02:04:19 +0000754 }
Devang Patele2533852006-11-11 01:51:02 +0000755
756 // Add pass
757 PassVector.push_back(P);
Devang Patele2533852006-11-11 01:51:02 +0000758}
759
Devang Patel569a6fd2007-04-16 20:12:57 +0000760
761/// Populate RP with analysis pass that are required by
762/// pass P and are available. Populate RP_NotAvail with analysis
763/// pass that are required by pass P but are not available.
764void PMDataManager::collectRequiredAnalysis(SmallVector<Pass *, 8>&RP,
765 SmallVector<AnalysisID, 8> &RP_NotAvail,
766 Pass *P) {
Devang Patelc17bbb62006-12-07 23:05:44 +0000767 AnalysisUsage AnUsage;
768 P->getAnalysisUsage(AnUsage);
769 const std::vector<AnalysisID> &RequiredSet = AnUsage.getRequiredSet();
770 for (std::vector<AnalysisID>::const_iterator
771 I = RequiredSet.begin(), E = RequiredSet.end();
772 I != E; ++I) {
Devang Patel569a6fd2007-04-16 20:12:57 +0000773 AnalysisID AID = *I;
774 if (Pass *AnalysisPass = findAnalysisPass(*I, true))
775 RP.push_back(AnalysisPass);
776 else
777 RP_NotAvail.push_back(AID);
Devang Patelc17bbb62006-12-07 23:05:44 +0000778 }
Devang Patel27aaab22006-12-12 23:09:32 +0000779
780 const std::vector<AnalysisID> &IDs = AnUsage.getRequiredTransitiveSet();
781 for (std::vector<AnalysisID>::const_iterator I = IDs.begin(),
782 E = IDs.end(); I != E; ++I) {
Devang Patel569a6fd2007-04-16 20:12:57 +0000783 AnalysisID AID = *I;
784 if (Pass *AnalysisPass = findAnalysisPass(*I, true))
785 RP.push_back(AnalysisPass);
786 else
787 RP_NotAvail.push_back(AID);
Devang Patel27aaab22006-12-12 23:09:32 +0000788 }
Devang Patelc17bbb62006-12-07 23:05:44 +0000789}
790
Devang Patel2f42ed62006-11-14 21:49:36 +0000791// All Required analyses should be available to the pass as it runs! Here
792// we fill in the AnalysisImpls member of the pass so that it can
793// successfully use the getAnalysis() method to retrieve the
794// implementations it needs.
795//
Devang Patel419f0e92006-12-07 18:36:24 +0000796void PMDataManager::initializeAnalysisImpl(Pass *P) {
Devang Patel3799f972006-11-15 01:27:05 +0000797 AnalysisUsage AnUsage;
798 P->getAnalysisUsage(AnUsage);
Devang Patel2f42ed62006-11-14 21:49:36 +0000799
800 for (std::vector<const PassInfo *>::const_iterator
801 I = AnUsage.getRequiredSet().begin(),
802 E = AnUsage.getRequiredSet().end(); I != E; ++I) {
Devang Patel69867b52006-12-08 22:30:11 +0000803 Pass *Impl = findAnalysisPass(*I, true);
Devang Patel2f42ed62006-11-14 21:49:36 +0000804 if (Impl == 0)
Devang Patelf4bd76a2007-04-16 20:44:16 +0000805 // This may be analysis pass that is initialized on the fly.
806 // If that is not the case then it will raise an assert when it is used.
807 continue;
Devang Patelcde53d32007-01-05 22:47:07 +0000808 AnalysisResolver *AR = P->getResolver();
Devang Patel298fead2006-12-09 01:11:34 +0000809 AR->addAnalysisImplsPair(*I, Impl);
Devang Patel2f42ed62006-11-14 21:49:36 +0000810 }
811}
812
Devang Patel69867b52006-12-08 22:30:11 +0000813/// Find the pass that implements Analysis AID. If desired pass is not found
814/// then return NULL.
815Pass *PMDataManager::findAnalysisPass(AnalysisID AID, bool SearchParent) {
816
817 // Check if AvailableAnalysis map has one entry.
818 std::map<AnalysisID, Pass*>::const_iterator I = AvailableAnalysis.find(AID);
819
820 if (I != AvailableAnalysis.end())
821 return I->second;
822
823 // Search Parents through TopLevelManager
824 if (SearchParent)
825 return TPM->findAnalysisPass(AID);
826
Devang Patel5b640e72006-12-09 00:09:12 +0000827 return NULL;
Devang Patel69867b52006-12-08 22:30:11 +0000828}
829
Devang Patela52035a2006-12-15 20:13:01 +0000830// Print list of passes that are last used by P.
831void PMDataManager::dumpLastUses(Pass *P, unsigned Offset) const{
832
Devang Pateledbef382007-07-20 18:04:54 +0000833 SmallVector<Pass *, 12> LUses;
Devang Patel693941b2007-04-16 20:39:59 +0000834
835 // If this is a on the fly manager then it does not have TPM.
836 if (!TPM)
837 return;
838
Devang Patela52035a2006-12-15 20:13:01 +0000839 TPM->collectLastUses(LUses, P);
840
Devang Pateledbef382007-07-20 18:04:54 +0000841 for (SmallVector<Pass *, 12>::iterator I = LUses.begin(),
Devang Patela52035a2006-12-15 20:13:01 +0000842 E = LUses.end(); I != E; ++I) {
843 llvm::cerr << "--" << std::string(Offset*2, ' ');
844 (*I)->dumpPassStructure(0);
845 }
846}
847
848void PMDataManager::dumpPassArguments() const {
849 for(std::vector<Pass *>::const_iterator I = PassVector.begin(),
850 E = PassVector.end(); I != E; ++I) {
851 if (PMDataManager *PMD = dynamic_cast<PMDataManager *>(*I))
852 PMD->dumpPassArguments();
853 else
854 if (const PassInfo *PI = (*I)->getPassInfo())
855 if (!PI->isAnalysisGroup())
856 cerr << " -" << PI->getPassArgument();
857 }
858}
859
Chris Lattner417efc82007-08-10 06:17:04 +0000860void PMDataManager::dumpPassInfo(Pass *P, enum PassDebuggingString S1,
861 enum PassDebuggingString S2,
Devang Patel6b4af742007-08-10 18:29:32 +0000862 const char *Msg) {
Devang Patel26426942007-01-17 20:33:36 +0000863 if (PassDebugging < Executions)
Devang Patela52035a2006-12-15 20:13:01 +0000864 return;
865 cerr << (void*)this << std::string(getDepth()*2+1, ' ');
Devang Patel7f997612007-03-05 20:01:30 +0000866 switch (S1) {
867 case EXECUTION_MSG:
868 cerr << "Executing Pass '" << P->getPassName();
869 break;
870 case MODIFICATION_MSG:
Devang Patel7d97bf12007-06-18 21:32:29 +0000871 cerr << "Made Modification '" << P->getPassName();
Devang Patel7f997612007-03-05 20:01:30 +0000872 break;
873 case FREEING_MSG:
874 cerr << " Freeing Pass '" << P->getPassName();
875 break;
876 default:
877 break;
878 }
879 switch (S2) {
880 case ON_BASICBLOCK_MSG:
Devang Patel7d97bf12007-06-18 21:32:29 +0000881 cerr << "' on BasicBlock '" << Msg << "'...\n";
Devang Patel7f997612007-03-05 20:01:30 +0000882 break;
883 case ON_FUNCTION_MSG:
Devang Patel7d97bf12007-06-18 21:32:29 +0000884 cerr << "' on Function '" << Msg << "'...\n";
Devang Patel7f997612007-03-05 20:01:30 +0000885 break;
886 case ON_MODULE_MSG:
Devang Patel7d97bf12007-06-18 21:32:29 +0000887 cerr << "' on Module '" << Msg << "'...\n";
Devang Patel7f997612007-03-05 20:01:30 +0000888 break;
889 case ON_LOOP_MSG:
Devang Patel7d97bf12007-06-18 21:32:29 +0000890 cerr << "' on Loop " << Msg << "'...\n";
Devang Patel7f997612007-03-05 20:01:30 +0000891 break;
892 case ON_CG_MSG:
Devang Patel7d97bf12007-06-18 21:32:29 +0000893 cerr << "' on Call Graph " << Msg << "'...\n";
Devang Patel7f997612007-03-05 20:01:30 +0000894 break;
895 default:
896 break;
897 }
Devang Patela52035a2006-12-15 20:13:01 +0000898}
899
900void PMDataManager::dumpAnalysisSetInfo(const char *Msg, Pass *P,
901 const std::vector<AnalysisID> &Set)
902 const {
Devang Patel26426942007-01-17 20:33:36 +0000903 if (PassDebugging >= Details && !Set.empty()) {
Devang Patela52035a2006-12-15 20:13:01 +0000904 cerr << (void*)P << std::string(getDepth()*2+3, ' ') << Msg << " Analyses:";
905 for (unsigned i = 0; i != Set.size(); ++i) {
906 if (i) cerr << ",";
907 cerr << " " << Set[i]->getPassName();
908 }
909 cerr << "\n";
910 }
911}
Devang Patelf3dc6d92006-12-08 23:28:54 +0000912
Devang Patel19fe8f92007-07-27 20:06:09 +0000913/// Add RequiredPass into list of lower level passes required by pass P.
914/// RequiredPass is run on the fly by Pass Manager when P requests it
915/// through getAnalysis interface.
916/// This should be handled by specific pass manager.
917void PMDataManager::addLowerLevelRequiredPass(Pass *P, Pass *RequiredPass) {
918 if (TPM) {
919 TPM->dumpArguments();
920 TPM->dumpPasses();
921 }
922 assert (0 && "Unable to handle Pass that requires lower level Analysis pass");
923}
924
Devang Patelab7752c2007-01-12 18:52:44 +0000925// Destructor
926PMDataManager::~PMDataManager() {
927
928 for (std::vector<Pass *>::iterator I = PassVector.begin(),
929 E = PassVector.end(); I != E; ++I)
930 delete *I;
931
932 PassVector.clear();
933}
934
Devang Patelf3dc6d92006-12-08 23:28:54 +0000935//===----------------------------------------------------------------------===//
936// NOTE: Is this the right place to define this method ?
937// getAnalysisToUpdate - Return an analysis result or null if it doesn't exist
Devang Patelcde53d32007-01-05 22:47:07 +0000938Pass *AnalysisResolver::getAnalysisToUpdate(AnalysisID ID, bool dir) const {
Devang Patelf3dc6d92006-12-08 23:28:54 +0000939 return PM.findAnalysisPass(ID, dir);
940}
941
Devang Patel6b1df0e2007-04-16 20:56:24 +0000942Pass *AnalysisResolver::findImplPass(Pass *P, const PassInfo *AnalysisPI,
943 Function &F) {
944 return PM.getOnTheFlyPass(P, AnalysisPI, F);
945}
946
Devang Patel06e86562006-12-07 19:39:39 +0000947//===----------------------------------------------------------------------===//
Devang Patel5f4ddf52006-12-19 19:46:59 +0000948// BBPassManager implementation
Devang Patel55fd43f2006-11-07 21:31:57 +0000949
Devang Patel55fd43f2006-11-07 21:31:57 +0000950/// Execute all of the passes scheduled for execution by invoking
951/// runOnBasicBlock method. Keep track of whether any of the passes modifies
952/// the function, and if so, return true.
953bool
Devang Patel5f4ddf52006-12-19 19:46:59 +0000954BBPassManager::runOnFunction(Function &F) {
Devang Patel55fd43f2006-11-07 21:31:57 +0000955
Reid Spencer5cbf9852007-01-30 20:08:39 +0000956 if (F.isDeclaration())
Devang Patel1fbe2c92006-12-12 23:15:28 +0000957 return false;
958
Devang Patel3b14fbe2006-12-08 01:38:28 +0000959 bool Changed = doInitialization(F);
Devang Patelc1d6e1f2006-11-14 01:23:29 +0000960
Devang Patel55fd43f2006-11-07 21:31:57 +0000961 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
Devang Patel1554c852006-12-16 00:56:26 +0000962 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
963 BasicBlockPass *BP = getContainedPass(Index);
Devang Patel017b5d92006-12-14 00:25:06 +0000964 AnalysisUsage AnUsage;
Devang Patel1554c852006-12-16 00:56:26 +0000965 BP->getAnalysisUsage(AnUsage);
Devang Patel017b5d92006-12-14 00:25:06 +0000966
Devang Patel6b4af742007-08-10 18:29:32 +0000967 dumpPassInfo(BP, EXECUTION_MSG, ON_BASICBLOCK_MSG, I->getNameStart());
Devang Patel1554c852006-12-16 00:56:26 +0000968 dumpAnalysisSetInfo("Required", BP, AnUsage.getRequiredSet());
Devang Patel017b5d92006-12-14 00:25:06 +0000969
Devang Patel1554c852006-12-16 00:56:26 +0000970 initializeAnalysisImpl(BP);
Devang Patel693a74e2006-12-14 00:08:04 +0000971
Devang Patel1554c852006-12-16 00:56:26 +0000972 if (TheTimeInfo) TheTimeInfo->passStarted(BP);
Devang Patel55fd43f2006-11-07 21:31:57 +0000973 Changed |= BP->runOnBasicBlock(*I);
Devang Patel1554c852006-12-16 00:56:26 +0000974 if (TheTimeInfo) TheTimeInfo->passEnded(BP);
Devang Patel693a74e2006-12-14 00:08:04 +0000975
Devang Patel7f997612007-03-05 20:01:30 +0000976 if (Changed)
Devang Patel6b4af742007-08-10 18:29:32 +0000977 dumpPassInfo(BP, MODIFICATION_MSG, ON_BASICBLOCK_MSG, I->getNameStart());
Devang Patel1554c852006-12-16 00:56:26 +0000978 dumpAnalysisSetInfo("Preserved", BP, AnUsage.getPreservedSet());
Devang Patel693a74e2006-12-14 00:08:04 +0000979
Devang Patel58e0ef12007-07-19 18:02:32 +0000980 verifyPreservedAnalysis(BP);
Devang Patel1554c852006-12-16 00:56:26 +0000981 removeNotPreservedAnalysis(BP);
982 recordAvailableAnalysis(BP);
Devang Patel6b4af742007-08-10 18:29:32 +0000983 removeDeadPasses(BP, I->getNameStart(), ON_BASICBLOCK_MSG);
Devang Patel55fd43f2006-11-07 21:31:57 +0000984 }
Chris Lattnerfc23bc72007-08-10 06:22:25 +0000985
Devang Patel1a803862006-12-15 22:57:49 +0000986 return Changed |= doFinalization(F);
Devang Patel55fd43f2006-11-07 21:31:57 +0000987}
988
Devang Patel964e45e2006-12-08 00:59:05 +0000989// Implement doInitialization and doFinalization
Devang Patel5f4ddf52006-12-19 19:46:59 +0000990inline bool BBPassManager::doInitialization(Module &M) {
Devang Patel964e45e2006-12-08 00:59:05 +0000991 bool Changed = false;
992
Devang Patel1554c852006-12-16 00:56:26 +0000993 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
994 BasicBlockPass *BP = getContainedPass(Index);
Devang Patel964e45e2006-12-08 00:59:05 +0000995 Changed |= BP->doInitialization(M);
996 }
997
998 return Changed;
999}
1000
Devang Patel5f4ddf52006-12-19 19:46:59 +00001001inline bool BBPassManager::doFinalization(Module &M) {
Devang Patel964e45e2006-12-08 00:59:05 +00001002 bool Changed = false;
1003
Devang Patel1554c852006-12-16 00:56:26 +00001004 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1005 BasicBlockPass *BP = getContainedPass(Index);
Devang Patel964e45e2006-12-08 00:59:05 +00001006 Changed |= BP->doFinalization(M);
1007 }
1008
1009 return Changed;
1010}
1011
Devang Patel5f4ddf52006-12-19 19:46:59 +00001012inline bool BBPassManager::doInitialization(Function &F) {
Devang Patel964e45e2006-12-08 00:59:05 +00001013 bool Changed = false;
1014
Devang Patel1554c852006-12-16 00:56:26 +00001015 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1016 BasicBlockPass *BP = getContainedPass(Index);
Devang Patel964e45e2006-12-08 00:59:05 +00001017 Changed |= BP->doInitialization(F);
1018 }
1019
1020 return Changed;
1021}
1022
Devang Patel5f4ddf52006-12-19 19:46:59 +00001023inline bool BBPassManager::doFinalization(Function &F) {
Devang Patel964e45e2006-12-08 00:59:05 +00001024 bool Changed = false;
1025
Devang Patel1554c852006-12-16 00:56:26 +00001026 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1027 BasicBlockPass *BP = getContainedPass(Index);
Devang Patel964e45e2006-12-08 00:59:05 +00001028 Changed |= BP->doFinalization(F);
1029 }
1030
1031 return Changed;
1032}
1033
1034
Devang Patel06e86562006-12-07 19:39:39 +00001035//===----------------------------------------------------------------------===//
Devang Patel31626912006-12-13 02:36:01 +00001036// FunctionPassManager implementation
Devang Patel06e86562006-12-07 19:39:39 +00001037
Devang Patelc63592b2006-11-08 10:44:40 +00001038/// Create new Function pass manager
Devang Patel31626912006-12-13 02:36:01 +00001039FunctionPassManager::FunctionPassManager(ModuleProvider *P) {
Devang Patel5f4ddf52006-12-19 19:46:59 +00001040 FPM = new FunctionPassManagerImpl(0);
Devang Pateldff33ef2006-12-12 22:02:16 +00001041 // FPM is the top level manager.
1042 FPM->setTopLevelManager(FPM);
Devang Patelb920bd82006-12-12 23:27:37 +00001043
1044 PMDataManager *PMD = dynamic_cast<PMDataManager *>(FPM);
Devang Patelcde53d32007-01-05 22:47:07 +00001045 AnalysisResolver *AR = new AnalysisResolver(*PMD);
Devang Patelb920bd82006-12-12 23:27:37 +00001046 FPM->setResolver(AR);
1047
Devang Patelcc132cd2006-12-08 18:57:16 +00001048 MP = P;
1049}
1050
Devang Patel31626912006-12-13 02:36:01 +00001051FunctionPassManager::~FunctionPassManager() {
Devang Patel37a6f792006-12-13 00:09:23 +00001052 delete FPM;
1053}
1054
Devang Patelc63592b2006-11-08 10:44:40 +00001055/// add - Add a pass to the queue of passes to run. This passes
1056/// ownership of the Pass to the PassManager. When the
1057/// PassManager_X is destroyed, the pass will be destroyed as well, so
1058/// there is no need to delete the pass. (TODO delete passes.)
1059/// This implies that all passes MUST be allocated with 'new'.
Devang Patel31626912006-12-13 02:36:01 +00001060void FunctionPassManager::add(Pass *P) {
Devang Patelc63592b2006-11-08 10:44:40 +00001061 FPM->add(P);
1062}
1063
Devang Patel214ca232006-11-15 19:39:54 +00001064/// run - Execute all of the passes scheduled for execution. Keep
1065/// track of whether any of the passes modifies the function, and if
1066/// so, return true.
1067///
Devang Patel31626912006-12-13 02:36:01 +00001068bool FunctionPassManager::run(Function &F) {
Devang Patel214ca232006-11-15 19:39:54 +00001069 std::string errstr;
1070 if (MP->materializeFunction(&F, &errstr)) {
Gabor Greifa99be512007-07-05 17:07:56 +00001071 cerr << "Error reading bitcode file: " << errstr << "\n";
Devang Patel214ca232006-11-15 19:39:54 +00001072 abort();
1073 }
Devang Patelc4756922006-12-08 22:57:48 +00001074 return FPM->run(F);
Devang Patel214ca232006-11-15 19:39:54 +00001075}
1076
1077
Devang Patel3799f972006-11-15 01:27:05 +00001078/// doInitialization - Run all of the initializers for the function passes.
1079///
Devang Patel31626912006-12-13 02:36:01 +00001080bool FunctionPassManager::doInitialization() {
Devang Patel3799f972006-11-15 01:27:05 +00001081 return FPM->doInitialization(*MP->getModule());
1082}
1083
Dan Gohman209ee182007-07-30 14:51:13 +00001084/// doFinalization - Run all of the finalizers for the function passes.
Devang Patel3799f972006-11-15 01:27:05 +00001085///
Devang Patel31626912006-12-13 02:36:01 +00001086bool FunctionPassManager::doFinalization() {
Devang Patel3799f972006-11-15 01:27:05 +00001087 return FPM->doFinalization(*MP->getModule());
1088}
1089
Devang Patel06e86562006-12-07 19:39:39 +00001090//===----------------------------------------------------------------------===//
Devang Patel5f4ddf52006-12-19 19:46:59 +00001091// FunctionPassManagerImpl implementation
1092//
Devang Patel5f4ddf52006-12-19 19:46:59 +00001093inline bool FunctionPassManagerImpl::doInitialization(Module &M) {
1094 bool Changed = false;
1095
1096 for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index) {
1097 FPPassManager *FP = getContainedManager(Index);
1098 Changed |= FP->doInitialization(M);
1099 }
1100
1101 return Changed;
1102}
1103
1104inline bool FunctionPassManagerImpl::doFinalization(Module &M) {
1105 bool Changed = false;
1106
1107 for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index) {
1108 FPPassManager *FP = getContainedManager(Index);
1109 Changed |= FP->doFinalization(M);
1110 }
1111
1112 return Changed;
1113}
1114
1115// Execute all the passes managed by this top level manager.
1116// Return true if any function is modified by a pass.
1117bool FunctionPassManagerImpl::run(Function &F) {
1118
1119 bool Changed = false;
1120
1121 TimingInfo::createTheTimeInfo();
1122
1123 dumpArguments();
1124 dumpPasses();
1125
Devang Patel1336a6b2006-12-21 00:16:50 +00001126 initializeAllAnalysisInfo();
Devang Patel5f4ddf52006-12-19 19:46:59 +00001127 for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index) {
1128 FPPassManager *FP = getContainedManager(Index);
1129 Changed |= FP->runOnFunction(F);
1130 }
1131 return Changed;
1132}
1133
1134//===----------------------------------------------------------------------===//
1135// FPPassManager implementation
Devang Patel448d27c2006-11-07 21:49:50 +00001136
Devang Patel19974732007-05-03 01:11:54 +00001137char FPPassManager::ID = 0;
Devang Patelab7752c2007-01-12 18:52:44 +00001138/// Print passes managed by this manager
1139void FPPassManager::dumpPassStructure(unsigned Offset) {
1140 llvm::cerr << std::string(Offset*2, ' ') << "FunctionPass Manager\n";
1141 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1142 FunctionPass *FP = getContainedPass(Index);
1143 FP->dumpPassStructure(Offset + 1);
1144 dumpLastUses(FP, Offset+1);
1145 }
1146}
1147
1148
Devang Patel448d27c2006-11-07 21:49:50 +00001149/// Execute all of the passes scheduled for execution by invoking
1150/// runOnFunction method. Keep track of whether any of the passes modifies
1151/// the function, and if so, return true.
Devang Patel5f4ddf52006-12-19 19:46:59 +00001152bool FPPassManager::runOnFunction(Function &F) {
Devang Patel214ca232006-11-15 19:39:54 +00001153
1154 bool Changed = false;
Devang Patel1fbe2c92006-12-12 23:15:28 +00001155
Reid Spencer5cbf9852007-01-30 20:08:39 +00001156 if (F.isDeclaration())
Devang Patel1fbe2c92006-12-12 23:15:28 +00001157 return false;
1158
Devang Patel1554c852006-12-16 00:56:26 +00001159 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1160 FunctionPass *FP = getContainedPass(Index);
1161
Devang Patel017b5d92006-12-14 00:25:06 +00001162 AnalysisUsage AnUsage;
Devang Patel1554c852006-12-16 00:56:26 +00001163 FP->getAnalysisUsage(AnUsage);
Devang Patel693a74e2006-12-14 00:08:04 +00001164
Devang Patel6b4af742007-08-10 18:29:32 +00001165 dumpPassInfo(FP, EXECUTION_MSG, ON_FUNCTION_MSG, F.getNameStart());
Devang Patel1554c852006-12-16 00:56:26 +00001166 dumpAnalysisSetInfo("Required", FP, AnUsage.getRequiredSet());
Devang Patel693a74e2006-12-14 00:08:04 +00001167
Devang Patel1554c852006-12-16 00:56:26 +00001168 initializeAnalysisImpl(FP);
Devang Patel8e58a1b2006-12-14 00:59:42 +00001169
Devang Patel1554c852006-12-16 00:56:26 +00001170 if (TheTimeInfo) TheTimeInfo->passStarted(FP);
Devang Patel214ca232006-11-15 19:39:54 +00001171 Changed |= FP->runOnFunction(F);
Devang Patel1554c852006-12-16 00:56:26 +00001172 if (TheTimeInfo) TheTimeInfo->passEnded(FP);
Devang Patel693a74e2006-12-14 00:08:04 +00001173
Devang Patel7f997612007-03-05 20:01:30 +00001174 if (Changed)
Devang Patel6b4af742007-08-10 18:29:32 +00001175 dumpPassInfo(FP, MODIFICATION_MSG, ON_FUNCTION_MSG, F.getNameStart());
Devang Patel1554c852006-12-16 00:56:26 +00001176 dumpAnalysisSetInfo("Preserved", FP, AnUsage.getPreservedSet());
Devang Patel693a74e2006-12-14 00:08:04 +00001177
Devang Patel58e0ef12007-07-19 18:02:32 +00001178 verifyPreservedAnalysis(FP);
Devang Patel1554c852006-12-16 00:56:26 +00001179 removeNotPreservedAnalysis(FP);
1180 recordAvailableAnalysis(FP);
Devang Patel6b4af742007-08-10 18:29:32 +00001181 removeDeadPasses(FP, F.getNameStart(), ON_FUNCTION_MSG);
Devang Patel214ca232006-11-15 19:39:54 +00001182 }
1183 return Changed;
1184}
1185
Devang Patel5f4ddf52006-12-19 19:46:59 +00001186bool FPPassManager::runOnModule(Module &M) {
Devang Patel214ca232006-11-15 19:39:54 +00001187
Devang Patel5f4ddf52006-12-19 19:46:59 +00001188 bool Changed = doInitialization(M);
Devang Patel5f4ddf52006-12-19 19:46:59 +00001189
1190 for(Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
1191 this->runOnFunction(*I);
1192
1193 return Changed |= doFinalization(M);
1194}
1195
1196inline bool FPPassManager::doInitialization(Module &M) {
Devang Patel3799f972006-11-15 01:27:05 +00001197 bool Changed = false;
1198
Devang Patel1554c852006-12-16 00:56:26 +00001199 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1200 FunctionPass *FP = getContainedPass(Index);
Devang Patel3799f972006-11-15 01:27:05 +00001201 Changed |= FP->doInitialization(M);
1202 }
1203
1204 return Changed;
1205}
1206
Devang Patel5f4ddf52006-12-19 19:46:59 +00001207inline bool FPPassManager::doFinalization(Module &M) {
Devang Patel3799f972006-11-15 01:27:05 +00001208 bool Changed = false;
1209
Devang Patel1554c852006-12-16 00:56:26 +00001210 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1211 FunctionPass *FP = getContainedPass(Index);
Devang Patel3799f972006-11-15 01:27:05 +00001212 Changed |= FP->doFinalization(M);
1213 }
1214
Devang Patel3799f972006-11-15 01:27:05 +00001215 return Changed;
1216}
1217
Devang Patel06e86562006-12-07 19:39:39 +00001218//===----------------------------------------------------------------------===//
Devang Patel5f4ddf52006-12-19 19:46:59 +00001219// MPPassManager implementation
Devang Patel92c45ee2006-11-07 22:03:15 +00001220
Devang Patel92c45ee2006-11-07 22:03:15 +00001221/// Execute all of the passes scheduled for execution by invoking
1222/// runOnModule method. Keep track of whether any of the passes modifies
1223/// the module, and if so, return true.
1224bool
Devang Patel5f4ddf52006-12-19 19:46:59 +00001225MPPassManager::runOnModule(Module &M) {
Devang Patel92c45ee2006-11-07 22:03:15 +00001226 bool Changed = false;
Devang Patelc1d6e1f2006-11-14 01:23:29 +00001227
Devang Patel1554c852006-12-16 00:56:26 +00001228 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1229 ModulePass *MP = getContainedPass(Index);
1230
Devang Patel017b5d92006-12-14 00:25:06 +00001231 AnalysisUsage AnUsage;
Devang Patel1554c852006-12-16 00:56:26 +00001232 MP->getAnalysisUsage(AnUsage);
Devang Patel693a74e2006-12-14 00:08:04 +00001233
Devang Patel6b4af742007-08-10 18:29:32 +00001234 dumpPassInfo(MP, EXECUTION_MSG, ON_MODULE_MSG, M.getModuleIdentifier().c_str());
Devang Patel1554c852006-12-16 00:56:26 +00001235 dumpAnalysisSetInfo("Required", MP, AnUsage.getRequiredSet());
Devang Patel693a74e2006-12-14 00:08:04 +00001236
Devang Patel1554c852006-12-16 00:56:26 +00001237 initializeAnalysisImpl(MP);
Devang Patel8e58a1b2006-12-14 00:59:42 +00001238
Devang Patel1554c852006-12-16 00:56:26 +00001239 if (TheTimeInfo) TheTimeInfo->passStarted(MP);
Devang Patel92c45ee2006-11-07 22:03:15 +00001240 Changed |= MP->runOnModule(M);
Devang Patel1554c852006-12-16 00:56:26 +00001241 if (TheTimeInfo) TheTimeInfo->passEnded(MP);
Devang Patel693a74e2006-12-14 00:08:04 +00001242
Devang Patel7f997612007-03-05 20:01:30 +00001243 if (Changed)
Devang Patel6b4af742007-08-10 18:29:32 +00001244 dumpPassInfo(MP, MODIFICATION_MSG, ON_MODULE_MSG, M.getModuleIdentifier().c_str());
Devang Patel1554c852006-12-16 00:56:26 +00001245 dumpAnalysisSetInfo("Preserved", MP, AnUsage.getPreservedSet());
Devang Patel017b5d92006-12-14 00:25:06 +00001246
Devang Patel58e0ef12007-07-19 18:02:32 +00001247 verifyPreservedAnalysis(MP);
Devang Patel1554c852006-12-16 00:56:26 +00001248 removeNotPreservedAnalysis(MP);
1249 recordAvailableAnalysis(MP);
Devang Patel6b4af742007-08-10 18:29:32 +00001250 removeDeadPasses(MP, M.getModuleIdentifier().c_str(), ON_MODULE_MSG);
Devang Patel92c45ee2006-11-07 22:03:15 +00001251 }
1252 return Changed;
1253}
1254
Devang Patel569a6fd2007-04-16 20:12:57 +00001255/// Add RequiredPass into list of lower level passes required by pass P.
1256/// RequiredPass is run on the fly by Pass Manager when P requests it
1257/// through getAnalysis interface.
1258void MPPassManager::addLowerLevelRequiredPass(Pass *P, Pass *RequiredPass) {
1259
1260 assert (P->getPotentialPassManagerType() == PMT_ModulePassManager
1261 && "Unable to handle Pass that requires lower level Analysis pass");
1262 assert ((P->getPotentialPassManagerType() <
1263 RequiredPass->getPotentialPassManagerType())
1264 && "Unable to handle Pass that requires lower level Analysis pass");
1265
Devang Pateldfa1ec32007-04-26 17:50:19 +00001266 FunctionPassManagerImpl *FPP = OnTheFlyManagers[P];
Devang Patel0ed8df32007-04-16 20:27:05 +00001267 if (!FPP) {
Devang Pateldfa1ec32007-04-26 17:50:19 +00001268 FPP = new FunctionPassManagerImpl(0);
1269 // FPP is the top level manager.
1270 FPP->setTopLevelManager(FPP);
1271
Devang Patel0ed8df32007-04-16 20:27:05 +00001272 OnTheFlyManagers[P] = FPP;
1273 }
Devang Pateldfa1ec32007-04-26 17:50:19 +00001274 FPP->add(RequiredPass);
Devang Patel0ed8df32007-04-16 20:27:05 +00001275
Devang Pateldfa1ec32007-04-26 17:50:19 +00001276 // Register P as the last user of RequiredPass.
Devang Pateledbef382007-07-20 18:04:54 +00001277 SmallVector<Pass *, 12> LU;
Devang Pateldfa1ec32007-04-26 17:50:19 +00001278 LU.push_back(RequiredPass);
1279 FPP->setLastUser(LU, P);
Devang Patel569a6fd2007-04-16 20:12:57 +00001280}
Devang Patel0ed8df32007-04-16 20:27:05 +00001281
1282/// Return function pass corresponding to PassInfo PI, that is
1283/// required by module pass MP. Instantiate analysis pass, by using
1284/// its runOnFunction() for function F.
1285Pass* MPPassManager::getOnTheFlyPass(Pass *MP, const PassInfo *PI,
1286 Function &F) {
1287 AnalysisID AID = PI;
Devang Pateldfa1ec32007-04-26 17:50:19 +00001288 FunctionPassManagerImpl *FPP = OnTheFlyManagers[MP];
Devang Patel0ed8df32007-04-16 20:27:05 +00001289 assert (FPP && "Unable to find on the fly pass");
1290
Devang Pateldfa1ec32007-04-26 17:50:19 +00001291 FPP->run(F);
1292 return (dynamic_cast<PMTopLevelManager *>(FPP))->findAnalysisPass(AID);
Devang Patel0ed8df32007-04-16 20:27:05 +00001293}
1294
1295
Devang Patel06e86562006-12-07 19:39:39 +00001296//===----------------------------------------------------------------------===//
1297// PassManagerImpl implementation
Devang Patel37a6f792006-12-13 00:09:23 +00001298//
Devang Patelb30803b2006-11-07 22:23:34 +00001299/// run - Execute all of the passes scheduled for execution. Keep track of
1300/// whether any of the passes modifies the module, and if so, return true.
Devang Patel5f4ddf52006-12-19 19:46:59 +00001301bool PassManagerImpl::run(Module &M) {
Devang Patelb30803b2006-11-07 22:23:34 +00001302
Devang Patelb30803b2006-11-07 22:23:34 +00001303 bool Changed = false;
Devang Patel45dc02d2006-12-13 20:03:48 +00001304
Devang Patel8e58a1b2006-12-14 00:59:42 +00001305 TimingInfo::createTheTimeInfo();
1306
Devang Patelc32cf542006-12-13 22:10:00 +00001307 dumpArguments();
Devang Patel5f4ddf52006-12-19 19:46:59 +00001308 dumpPasses();
Devang Patel45dc02d2006-12-13 20:03:48 +00001309
Devang Patel1336a6b2006-12-21 00:16:50 +00001310 initializeAllAnalysisInfo();
Devang Patel5f4ddf52006-12-19 19:46:59 +00001311 for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index) {
1312 MPPassManager *MP = getContainedManager(Index);
Devang Patela083e942006-12-08 22:47:25 +00001313 Changed |= MP->runOnModule(M);
Devang Patelb30803b2006-11-07 22:23:34 +00001314 }
1315 return Changed;
1316}
Devang Patel5a39b2e2006-11-08 10:29:57 +00001317
Devang Patel06e86562006-12-07 19:39:39 +00001318//===----------------------------------------------------------------------===//
1319// PassManager implementation
1320
Devang Patel5a39b2e2006-11-08 10:29:57 +00001321/// Create new pass manager
Devang Patel31626912006-12-13 02:36:01 +00001322PassManager::PassManager() {
Devang Patel5f4ddf52006-12-19 19:46:59 +00001323 PM = new PassManagerImpl(0);
Devang Pateldff33ef2006-12-12 22:02:16 +00001324 // PM is the top level manager
1325 PM->setTopLevelManager(PM);
Devang Patel5a39b2e2006-11-08 10:29:57 +00001326}
1327
Devang Patel31626912006-12-13 02:36:01 +00001328PassManager::~PassManager() {
Devang Patel37a6f792006-12-13 00:09:23 +00001329 delete PM;
1330}
1331
Devang Patel5a39b2e2006-11-08 10:29:57 +00001332/// add - Add a pass to the queue of passes to run. This passes ownership of
1333/// the Pass to the PassManager. When the PassManager is destroyed, the pass
1334/// will be destroyed as well, so there is no need to delete the pass. This
1335/// implies that all passes MUST be allocated with 'new'.
1336void
Devang Patel31626912006-12-13 02:36:01 +00001337PassManager::add(Pass *P) {
Devang Patel5a39b2e2006-11-08 10:29:57 +00001338 PM->add(P);
1339}
1340
1341/// run - Execute all of the passes scheduled for execution. Keep track of
1342/// whether any of the passes modifies the module, and if so, return true.
1343bool
Devang Patel31626912006-12-13 02:36:01 +00001344PassManager::run(Module &M) {
Devang Patel5a39b2e2006-11-08 10:29:57 +00001345 return PM->run(M);
1346}
1347
Devang Patel8e58a1b2006-12-14 00:59:42 +00001348//===----------------------------------------------------------------------===//
1349// TimingInfo Class - This class is used to calculate information about the
1350// amount of time each pass takes to execute. This only happens with
1351// -time-passes is enabled on the command line.
1352//
1353bool llvm::TimePassesIsEnabled = false;
1354static cl::opt<bool,true>
1355EnableTiming("time-passes", cl::location(TimePassesIsEnabled),
1356 cl::desc("Time each pass, printing elapsed time for each on exit"));
1357
1358// createTheTimeInfo - This method either initializes the TheTimeInfo pointer to
1359// a non null value (if the -time-passes option is enabled) or it leaves it
1360// null. It may be called multiple times.
1361void TimingInfo::createTheTimeInfo() {
1362 if (!TimePassesIsEnabled || TheTimeInfo) return;
1363
1364 // Constructed the first time this is called, iff -time-passes is enabled.
1365 // This guarantees that the object will be constructed before static globals,
1366 // thus it will be destroyed before them.
1367 static ManagedStatic<TimingInfo> TTI;
1368 TheTimeInfo = &*TTI;
1369}
1370
Devang Patelc874eb52007-01-29 23:10:37 +00001371/// If TimingInfo is enabled then start pass timer.
1372void StartPassTimer(Pass *P) {
1373 if (TheTimeInfo)
1374 TheTimeInfo->passStarted(P);
1375}
1376
1377/// If TimingInfo is enabled then stop pass timer.
1378void StopPassTimer(Pass *P) {
1379 if (TheTimeInfo)
1380 TheTimeInfo->passEnded(P);
1381}
1382
Devang Patel09e6e432007-01-08 19:29:38 +00001383//===----------------------------------------------------------------------===//
1384// PMStack implementation
1385//
Devang Patel36bcb822007-01-11 22:15:30 +00001386
Devang Patel09e6e432007-01-08 19:29:38 +00001387// Pop Pass Manager from the stack and clear its analysis info.
1388void PMStack::pop() {
1389
1390 PMDataManager *Top = this->top();
1391 Top->initializeAnalysisInfo();
1392
1393 S.pop_back();
1394}
1395
1396// Push PM on the stack and set its top level manager.
Devang Patel97149732007-01-11 00:19:00 +00001397void PMStack::push(Pass *P) {
Devang Patel09e6e432007-01-08 19:29:38 +00001398
Devang Patel97149732007-01-11 00:19:00 +00001399 PMDataManager *Top = NULL;
1400 PMDataManager *PM = dynamic_cast<PMDataManager *>(P);
1401 assert (PM && "Unable to push. Pass Manager expected");
Devang Patel09e6e432007-01-08 19:29:38 +00001402
Devang Patel97149732007-01-11 00:19:00 +00001403 if (this->empty()) {
1404 Top = PM;
1405 }
1406 else {
1407 Top = this->top();
1408 PMTopLevelManager *TPM = Top->getTopLevelManager();
1409
1410 assert (TPM && "Unable to find top level manager");
1411 TPM->addIndirectPassManager(PM);
1412 PM->setTopLevelManager(TPM);
1413 }
1414
Devang Patel97149732007-01-11 00:19:00 +00001415 S.push_back(PM);
1416}
1417
1418// Dump content of the pass manager stack.
1419void PMStack::dump() {
1420 for(std::deque<PMDataManager *>::iterator I = S.begin(),
1421 E = S.end(); I != E; ++I) {
1422 Pass *P = dynamic_cast<Pass *>(*I);
Chris Lattnerfc23bc72007-08-10 06:22:25 +00001423 printf("%s ", P->getPassName());
Devang Patel97149732007-01-11 00:19:00 +00001424 }
1425 if (!S.empty())
Chris Lattnerfc23bc72007-08-10 06:22:25 +00001426 printf("\n");
Devang Patel09e6e432007-01-08 19:29:38 +00001427}
1428
Devang Patel09e6e432007-01-08 19:29:38 +00001429/// Find appropriate Module Pass Manager in the PM Stack and
1430/// add self into that manager.
Devang Patelbe1ffc62007-01-17 20:30:17 +00001431void ModulePass::assignPassManager(PMStack &PMS,
Anton Korobeynikovbed29462007-04-16 18:10:23 +00001432 PassManagerType PreferredType) {
Devang Patel09e6e432007-01-08 19:29:38 +00001433
Devang Patel09e6e432007-01-08 19:29:38 +00001434 // Find Module Pass Manager
1435 while(!PMS.empty()) {
Devang Patel44b0d292007-01-17 21:19:23 +00001436 PassManagerType TopPMType = PMS.top()->getPassManagerType();
1437 if (TopPMType == PreferredType)
1438 break; // We found desired pass manager
1439 else if (TopPMType > PMT_ModulePassManager)
Devang Patel09e6e432007-01-08 19:29:38 +00001440 PMS.pop(); // Pop children pass managers
Devang Patel6b9420e2007-01-11 19:59:06 +00001441 else
1442 break;
Devang Patel09e6e432007-01-08 19:29:38 +00001443 }
1444
Devang Patel44b0d292007-01-17 21:19:23 +00001445 PMS.top()->add(this);
Devang Patel09e6e432007-01-08 19:29:38 +00001446}
1447
Devang Patel9d133e12007-01-16 21:43:18 +00001448/// Find appropriate Function Pass Manager or Call Graph Pass Manager
1449/// in the PM Stack and add self into that manager.
Devang Patelbe1ffc62007-01-17 20:30:17 +00001450void FunctionPass::assignPassManager(PMStack &PMS,
Anton Korobeynikovbed29462007-04-16 18:10:23 +00001451 PassManagerType PreferredType) {
Devang Patel09e6e432007-01-08 19:29:38 +00001452
Devang Patel97149732007-01-11 00:19:00 +00001453 // Find Module Pass Manager (TODO : Or Call Graph Pass Manager)
Devang Patel09e6e432007-01-08 19:29:38 +00001454 while(!PMS.empty()) {
Devang Patel6b9420e2007-01-11 19:59:06 +00001455 if (PMS.top()->getPassManagerType() > PMT_FunctionPassManager)
1456 PMS.pop();
Devang Patel09e6e432007-01-08 19:29:38 +00001457 else
Devang Patel9d133e12007-01-16 21:43:18 +00001458 break;
1459 }
1460 FPPassManager *FPP = dynamic_cast<FPPassManager *>(PMS.top());
1461
1462 // Create new Function Pass Manager
1463 if (!FPP) {
1464 assert(!PMS.empty() && "Unable to create Function Pass Manager");
1465 PMDataManager *PMD = PMS.top();
1466
1467 // [1] Create new Function Pass Manager
1468 FPP = new FPPassManager(PMD->getDepth() + 1);
1469
1470 // [2] Set up new manager's top level manager
1471 PMTopLevelManager *TPM = PMD->getTopLevelManager();
1472 TPM->addIndirectPassManager(FPP);
1473
1474 // [3] Assign manager to manage this new manager. This may create
1475 // and push new managers into PMS
1476 Pass *P = dynamic_cast<Pass *>(FPP);
Devang Patelbe1ffc62007-01-17 20:30:17 +00001477
1478 // If Call Graph Pass Manager is active then use it to manage
1479 // this new Function Pass manager.
1480 if (PMD->getPassManagerType() == PMT_CallGraphPassManager)
1481 P->assignPassManager(PMS, PMT_CallGraphPassManager);
1482 else
1483 P->assignPassManager(PMS);
Devang Patel9d133e12007-01-16 21:43:18 +00001484
1485 // [4] Push new manager into PMS
1486 PMS.push(FPP);
Devang Patel09e6e432007-01-08 19:29:38 +00001487 }
1488
Devang Patel9d133e12007-01-16 21:43:18 +00001489 // Assign FPP as the manager of this pass.
1490 FPP->add(this);
Devang Patel09e6e432007-01-08 19:29:38 +00001491}
1492
Devang Patel9d133e12007-01-16 21:43:18 +00001493/// Find appropriate Basic Pass Manager or Call Graph Pass Manager
Devang Patel09e6e432007-01-08 19:29:38 +00001494/// in the PM Stack and add self into that manager.
Devang Patelbe1ffc62007-01-17 20:30:17 +00001495void BasicBlockPass::assignPassManager(PMStack &PMS,
Anton Korobeynikovbed29462007-04-16 18:10:23 +00001496 PassManagerType PreferredType) {
Devang Patel09e6e432007-01-08 19:29:38 +00001497
1498 BBPassManager *BBP = NULL;
1499
Devang Patel97149732007-01-11 00:19:00 +00001500 // Basic Pass Manager is a leaf pass manager. It does not handle
1501 // any other pass manager.
Chris Lattnerfc23bc72007-08-10 06:22:25 +00001502 if (!PMS.empty())
Devang Patel09e6e432007-01-08 19:29:38 +00001503 BBP = dynamic_cast<BBPassManager *>(PMS.top());
Devang Patel09e6e432007-01-08 19:29:38 +00001504
Devang Patel9d133e12007-01-16 21:43:18 +00001505 // If leaf manager is not Basic Block Pass manager then create new
1506 // basic Block Pass manager.
Devang Patel97149732007-01-11 00:19:00 +00001507
Devang Patel9d133e12007-01-16 21:43:18 +00001508 if (!BBP) {
1509 assert(!PMS.empty() && "Unable to create BasicBlock Pass Manager");
1510 PMDataManager *PMD = PMS.top();
1511
1512 // [1] Create new Basic Block Manager
1513 BBP = new BBPassManager(PMD->getDepth() + 1);
1514
1515 // [2] Set up new manager's top level manager
1516 // Basic Block Pass Manager does not live by itself
1517 PMTopLevelManager *TPM = PMD->getTopLevelManager();
1518 TPM->addIndirectPassManager(BBP);
1519
Devang Patel97149732007-01-11 00:19:00 +00001520 // [3] Assign manager to manage this new manager. This may create
1521 // and push new managers into PMS
Devang Patel9d133e12007-01-16 21:43:18 +00001522 Pass *P = dynamic_cast<Pass *>(BBP);
1523 P->assignPassManager(PMS);
Devang Patel97149732007-01-11 00:19:00 +00001524
Devang Patel9d133e12007-01-16 21:43:18 +00001525 // [4] Push new manager into PMS
1526 PMS.push(BBP);
1527 }
Devang Patel09e6e432007-01-08 19:29:38 +00001528
Devang Patel9d133e12007-01-16 21:43:18 +00001529 // Assign BBP as the manager of this pass.
1530 BBP->add(this);
Devang Patel09e6e432007-01-08 19:29:38 +00001531}
1532
Devang Patelcccd80d2007-01-05 20:16:23 +00001533