blob: 312379479d6a65dcda5c7adc1c47b703e4bf5a24 [file] [log] [blame]
Devang Patel6e5a1132006-11-07 21:31:57 +00001//===- PassManager.cpp - LLVM Pass Infrastructure Implementation ----------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Patel6e5a1132006-11-07 21:31:57 +00007//
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"
Gordon Henriksen878114b2008-03-16 04:20:44 +000022#include "llvm-c/Core.h"
Jeff Cohenb622c112007-03-05 00:00:42 +000023#include <algorithm>
Devang Patela9844592006-11-11 01:31:05 +000024#include <vector>
Devang Patelf60b5d92006-11-14 01:59:59 +000025#include <map>
Dan Gohman8c43e412007-10-03 19:04:09 +000026using namespace llvm;
Devang Patelffca9102006-12-15 19:39:30 +000027
Devang Patele7599552007-01-12 18:52:44 +000028// See PassManagers.h for Pass Manager infrastructure overview.
Devang Patel6fea2852006-12-07 18:23:30 +000029
Devang Patelf1567a52006-12-13 20:03:48 +000030namespace llvm {
31
32//===----------------------------------------------------------------------===//
33// Pass debugging information. Often it is useful to find out what pass is
34// running when a crash occurs in a utility. When this library is compiled with
35// debugging on, a command line option (--debug-pass) is enabled that causes the
36// pass name to be printed before it executes.
37//
38
Devang Patel03fb5872006-12-13 21:13:31 +000039// Different debug levels that can be enabled...
40enum PassDebugLevel {
41 None, Arguments, Structure, Executions, Details
42};
43
Devang Patelf1567a52006-12-13 20:03:48 +000044static cl::opt<enum PassDebugLevel>
Devang Patelfd4184322007-01-17 20:33:36 +000045PassDebugging("debug-pass", cl::Hidden,
Devang Patelf1567a52006-12-13 20:03:48 +000046 cl::desc("Print PassManager debugging information"),
47 cl::values(
Devang Patel03fb5872006-12-13 21:13:31 +000048 clEnumVal(None , "disable debug output"),
49 clEnumVal(Arguments , "print pass arguments to pass to 'opt'"),
50 clEnumVal(Structure , "print pass structure before run()"),
51 clEnumVal(Executions, "print pass name before it is executed"),
52 clEnumVal(Details , "print pass details when it is executed"),
Devang Patelf1567a52006-12-13 20:03:48 +000053 clEnumValEnd));
54} // End of llvm namespace
55
Devang Patelffca9102006-12-15 19:39:30 +000056namespace {
Devang Patelafb1f3622006-12-12 22:35:25 +000057
Devang Patelf33f3eb2006-12-07 19:21:29 +000058//===----------------------------------------------------------------------===//
Devang Patel67d6a5e2006-12-19 19:46:59 +000059// BBPassManager
Devang Patel10c2ca62006-12-12 22:47:13 +000060//
Devang Patel67d6a5e2006-12-19 19:46:59 +000061/// BBPassManager manages BasicBlockPass. It batches all the
Devang Patelca58e352006-11-08 10:05:38 +000062/// pass together and sequence them to process one basic block before
63/// processing next basic block.
Devang Patel67d6a5e2006-12-19 19:46:59 +000064class VISIBILITY_HIDDEN BBPassManager : public PMDataManager,
65 public FunctionPass {
Devang Patelca58e352006-11-08 10:05:38 +000066
67public:
Devang Patel8c78a0b2007-05-03 01:11:54 +000068 static char ID;
Dan Gohman13ab93e2007-10-08 15:08:41 +000069 explicit BBPassManager(int Depth)
Devang Patel09f162c2007-05-01 21:15:47 +000070 : PMDataManager(Depth), FunctionPass((intptr_t)&ID) {}
Devang Patelca58e352006-11-08 10:05:38 +000071
Devang Patelca58e352006-11-08 10:05:38 +000072 /// Execute all of the passes scheduled for execution. Keep track of
73 /// whether any of the passes modifies the function, and if so, return true.
74 bool runOnFunction(Function &F);
75
Devang Patelf9d96b92006-12-07 19:57:52 +000076 /// Pass Manager itself does not invalidate any analysis info.
77 void getAnalysisUsage(AnalysisUsage &Info) const {
78 Info.setPreservesAll();
79 }
80
Devang Patel475c4532006-12-08 00:59:05 +000081 bool doInitialization(Module &M);
82 bool doInitialization(Function &F);
83 bool doFinalization(Module &M);
84 bool doFinalization(Function &F);
85
Devang Patele3858e62007-02-01 22:08:25 +000086 virtual const char *getPassName() const {
Dan Gohman1e9860a2008-03-13 01:58:48 +000087 return "BasicBlock Pass Manager";
Devang Patele3858e62007-02-01 22:08:25 +000088 }
89
Devang Pateleda56172006-12-12 23:34:33 +000090 // Print passes managed by this manager
91 void dumpPassStructure(unsigned Offset) {
Devang Patelffca9102006-12-15 19:39:30 +000092 llvm::cerr << std::string(Offset*2, ' ') << "BasicBlockPass Manager\n";
Devang Patelabfbe3b2006-12-16 00:56:26 +000093 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
94 BasicBlockPass *BP = getContainedPass(Index);
95 BP->dumpPassStructure(Offset + 1);
96 dumpLastUses(BP, Offset+1);
Devang Pateleda56172006-12-12 23:34:33 +000097 }
98 }
Devang Patelabfbe3b2006-12-16 00:56:26 +000099
100 BasicBlockPass *getContainedPass(unsigned N) {
101 assert ( N < PassVector.size() && "Pass number out of range!");
102 BasicBlockPass *BP = static_cast<BasicBlockPass *>(PassVector[N]);
103 return BP;
104 }
Devang Patel3b3f8992007-01-11 01:10:25 +0000105
Devang Patel28349ab2007-02-27 15:00:39 +0000106 virtual PassManagerType getPassManagerType() const {
Devang Patel3b3f8992007-01-11 01:10:25 +0000107 return PMT_BasicBlockPassManager;
108 }
Devang Patelca58e352006-11-08 10:05:38 +0000109};
110
Devang Patel8c78a0b2007-05-03 01:11:54 +0000111char BBPassManager::ID = 0;
Devang Patele7599552007-01-12 18:52:44 +0000112}
Devang Patel67d6a5e2006-12-19 19:46:59 +0000113
Devang Patele7599552007-01-12 18:52:44 +0000114namespace llvm {
Devang Patelca58e352006-11-08 10:05:38 +0000115
Devang Patel10c2ca62006-12-12 22:47:13 +0000116//===----------------------------------------------------------------------===//
Devang Patel67d6a5e2006-12-19 19:46:59 +0000117// FunctionPassManagerImpl
Devang Patel10c2ca62006-12-12 22:47:13 +0000118//
Devang Patel67d6a5e2006-12-19 19:46:59 +0000119/// FunctionPassManagerImpl manages FPPassManagers
120class FunctionPassManagerImpl : public Pass,
Devang Patelad98d232007-01-11 22:15:30 +0000121 public PMDataManager,
122 public PMTopLevelManager {
Devang Patel67d6a5e2006-12-19 19:46:59 +0000123public:
Devang Patel8c78a0b2007-05-03 01:11:54 +0000124 static char ID;
Dan Gohman13ab93e2007-10-08 15:08:41 +0000125 explicit FunctionPassManagerImpl(int Depth) :
Devang Patel09f162c2007-05-01 21:15:47 +0000126 Pass((intptr_t)&ID), PMDataManager(Depth),
127 PMTopLevelManager(TLM_Function) { }
Devang Patel67d6a5e2006-12-19 19:46:59 +0000128
129 /// add - Add a pass to the queue of passes to run. This passes ownership of
130 /// the Pass to the PassManager. When the PassManager is destroyed, the pass
131 /// will be destroyed as well, so there is no need to delete the pass. This
132 /// implies that all passes MUST be allocated with 'new'.
133 void add(Pass *P) {
134 schedulePass(P);
135 }
136
137 /// run - Execute all of the passes scheduled for execution. Keep track of
138 /// whether any of the passes modifies the module, and if so, return true.
139 bool run(Function &F);
140
141 /// doInitialization - Run all of the initializers for the function passes.
142 ///
143 bool doInitialization(Module &M);
144
Dan Gohmane6656eb2007-07-30 14:51:13 +0000145 /// doFinalization - Run all of the finalizers for the function passes.
Devang Patel67d6a5e2006-12-19 19:46:59 +0000146 ///
147 bool doFinalization(Module &M);
148
149 /// Pass Manager itself does not invalidate any analysis info.
150 void getAnalysisUsage(AnalysisUsage &Info) const {
151 Info.setPreservesAll();
152 }
153
154 inline void addTopLevelPass(Pass *P) {
155
156 if (ImmutablePass *IP = dynamic_cast<ImmutablePass *> (P)) {
157
158 // P is a immutable pass and it will be managed by this
159 // top level manager. Set up analysis resolver to connect them.
Devang Patelb66334b2007-01-05 22:47:07 +0000160 AnalysisResolver *AR = new AnalysisResolver(*this);
Devang Patel67d6a5e2006-12-19 19:46:59 +0000161 P->setResolver(AR);
162 initializeAnalysisImpl(P);
163 addImmutablePass(IP);
164 recordAvailableAnalysis(IP);
Devang Patel0f080042007-01-12 17:23:48 +0000165 } else {
Devang Patel0f080042007-01-12 17:23:48 +0000166 P->assignPassManager(activeStack);
Devang Patel67d6a5e2006-12-19 19:46:59 +0000167 }
Devang Patel0f080042007-01-12 17:23:48 +0000168
Devang Patel67d6a5e2006-12-19 19:46:59 +0000169 }
170
171 FPPassManager *getContainedManager(unsigned N) {
172 assert ( N < PassManagers.size() && "Pass number out of range!");
173 FPPassManager *FP = static_cast<FPPassManager *>(PassManagers[N]);
174 return FP;
175 }
Devang Patel67d6a5e2006-12-19 19:46:59 +0000176};
177
Devang Patel8c78a0b2007-05-03 01:11:54 +0000178char FunctionPassManagerImpl::ID = 0;
Devang Patel67d6a5e2006-12-19 19:46:59 +0000179//===----------------------------------------------------------------------===//
180// MPPassManager
181//
182/// MPPassManager manages ModulePasses and function pass managers.
Dan Gohmandfdf2c02008-03-11 16:18:48 +0000183/// It batches all Module passes and function pass managers together and
184/// sequences them to process one module.
Devang Patel67d6a5e2006-12-19 19:46:59 +0000185class MPPassManager : public Pass, public PMDataManager {
Devang Patelca58e352006-11-08 10:05:38 +0000186
187public:
Devang Patel8c78a0b2007-05-03 01:11:54 +0000188 static char ID;
Dan Gohman13ab93e2007-10-08 15:08:41 +0000189 explicit MPPassManager(int Depth) :
190 Pass((intptr_t)&ID), PMDataManager(Depth) { }
Devang Patel2ff44922007-04-16 20:39:59 +0000191
192 // Delete on the fly managers.
193 virtual ~MPPassManager() {
Devang Patel68f72b12007-04-26 17:50:19 +0000194 for (std::map<Pass *, FunctionPassManagerImpl *>::iterator
Devang Patel2ff44922007-04-16 20:39:59 +0000195 I = OnTheFlyManagers.begin(), E = OnTheFlyManagers.end();
196 I != E; ++I) {
Devang Patel68f72b12007-04-26 17:50:19 +0000197 FunctionPassManagerImpl *FPP = I->second;
Devang Patel2ff44922007-04-16 20:39:59 +0000198 delete FPP;
199 }
200 }
201
Devang Patelca58e352006-11-08 10:05:38 +0000202 /// run - Execute all of the passes scheduled for execution. Keep track of
203 /// whether any of the passes modifies the module, and if so, return true.
204 bool runOnModule(Module &M);
Devang Patelebba9702006-11-13 22:40:09 +0000205
Devang Patelf9d96b92006-12-07 19:57:52 +0000206 /// Pass Manager itself does not invalidate any analysis info.
207 void getAnalysisUsage(AnalysisUsage &Info) const {
208 Info.setPreservesAll();
209 }
210
Devang Patele64d3052007-04-16 20:12:57 +0000211 /// Add RequiredPass into list of lower level passes required by pass P.
212 /// RequiredPass is run on the fly by Pass Manager when P requests it
213 /// through getAnalysis interface.
214 virtual void addLowerLevelRequiredPass(Pass *P, Pass *RequiredPass);
215
Devang Patel69e9f6d2007-04-16 20:27:05 +0000216 /// Return function pass corresponding to PassInfo PI, that is
217 /// required by module pass MP. Instantiate analysis pass, by using
218 /// its runOnFunction() for function F.
219 virtual Pass* getOnTheFlyPass(Pass *MP, const PassInfo *PI, Function &F);
220
Devang Patele3858e62007-02-01 22:08:25 +0000221 virtual const char *getPassName() const {
222 return "Module Pass Manager";
223 }
224
Devang Pateleda56172006-12-12 23:34:33 +0000225 // Print passes managed by this manager
226 void dumpPassStructure(unsigned Offset) {
227 llvm::cerr << std::string(Offset*2, ' ') << "ModulePass Manager\n";
Devang Patelabfbe3b2006-12-16 00:56:26 +0000228 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
229 ModulePass *MP = getContainedPass(Index);
230 MP->dumpPassStructure(Offset + 1);
Devang Patel68f72b12007-04-26 17:50:19 +0000231 if (FunctionPassManagerImpl *FPP = OnTheFlyManagers[MP])
Devang Patel2ff44922007-04-16 20:39:59 +0000232 FPP->dumpPassStructure(Offset + 2);
Devang Patelabfbe3b2006-12-16 00:56:26 +0000233 dumpLastUses(MP, Offset+1);
Devang Pateleda56172006-12-12 23:34:33 +0000234 }
235 }
236
Devang Patelabfbe3b2006-12-16 00:56:26 +0000237 ModulePass *getContainedPass(unsigned N) {
238 assert ( N < PassVector.size() && "Pass number out of range!");
239 ModulePass *MP = static_cast<ModulePass *>(PassVector[N]);
240 return MP;
241 }
242
Devang Patel28349ab2007-02-27 15:00:39 +0000243 virtual PassManagerType getPassManagerType() const {
244 return PMT_ModulePassManager;
245 }
Devang Patel69e9f6d2007-04-16 20:27:05 +0000246
247 private:
248 /// Collection of on the fly FPPassManagers. These managers manage
249 /// function passes that are required by module passes.
Devang Patel68f72b12007-04-26 17:50:19 +0000250 std::map<Pass *, FunctionPassManagerImpl *> OnTheFlyManagers;
Devang Patelca58e352006-11-08 10:05:38 +0000251};
252
Devang Patel8c78a0b2007-05-03 01:11:54 +0000253char MPPassManager::ID = 0;
Devang Patel10c2ca62006-12-12 22:47:13 +0000254//===----------------------------------------------------------------------===//
Devang Patel67d6a5e2006-12-19 19:46:59 +0000255// PassManagerImpl
Devang Patel10c2ca62006-12-12 22:47:13 +0000256//
Devang Patel09f162c2007-05-01 21:15:47 +0000257
Devang Patel67d6a5e2006-12-19 19:46:59 +0000258/// PassManagerImpl manages MPPassManagers
259class PassManagerImpl : public Pass,
Devang Patelad98d232007-01-11 22:15:30 +0000260 public PMDataManager,
261 public PMTopLevelManager {
Devang Patel376fefa2006-11-08 10:29:57 +0000262
263public:
Devang Patel8c78a0b2007-05-03 01:11:54 +0000264 static char ID;
Dan Gohman13ab93e2007-10-08 15:08:41 +0000265 explicit PassManagerImpl(int Depth) :
266 Pass((intptr_t)&ID), PMDataManager(Depth),
267 PMTopLevelManager(TLM_Pass) { }
Devang Patel4c36e6b2006-12-07 23:24:58 +0000268
Devang Patel376fefa2006-11-08 10:29:57 +0000269 /// add - Add a pass to the queue of passes to run. This passes ownership of
270 /// the Pass to the PassManager. When the PassManager is destroyed, the pass
271 /// will be destroyed as well, so there is no need to delete the pass. This
272 /// implies that all passes MUST be allocated with 'new'.
Devang Patel31217af2006-12-07 21:32:57 +0000273 void add(Pass *P) {
Devang Pateldf6c9ae2006-12-08 22:34:02 +0000274 schedulePass(P);
Devang Patel31217af2006-12-07 21:32:57 +0000275 }
Devang Patel376fefa2006-11-08 10:29:57 +0000276
277 /// run - Execute all of the passes scheduled for execution. Keep track of
278 /// whether any of the passes modifies the module, and if so, return true.
279 bool run(Module &M);
280
Devang Patelf9d96b92006-12-07 19:57:52 +0000281 /// Pass Manager itself does not invalidate any analysis info.
282 void getAnalysisUsage(AnalysisUsage &Info) const {
283 Info.setPreservesAll();
284 }
285
Devang Patelabcd1d32006-12-07 21:27:23 +0000286 inline void addTopLevelPass(Pass *P) {
Devang Pateld440cd92006-12-08 23:53:00 +0000287
Devang Patelfa971cd2006-12-08 23:57:43 +0000288 if (ImmutablePass *IP = dynamic_cast<ImmutablePass *> (P)) {
Devang Pateld440cd92006-12-08 23:53:00 +0000289
290 // P is a immutable pass and it will be managed by this
291 // top level manager. Set up analysis resolver to connect them.
Devang Patelb66334b2007-01-05 22:47:07 +0000292 AnalysisResolver *AR = new AnalysisResolver(*this);
Devang Pateld440cd92006-12-08 23:53:00 +0000293 P->setResolver(AR);
Devang Patel95257542006-12-12 22:21:37 +0000294 initializeAnalysisImpl(P);
Devang Patelfa971cd2006-12-08 23:57:43 +0000295 addImmutablePass(IP);
Devang Patel95257542006-12-12 22:21:37 +0000296 recordAvailableAnalysis(IP);
Devang Patel0f080042007-01-12 17:23:48 +0000297 } else {
Devang Patel0f080042007-01-12 17:23:48 +0000298 P->assignPassManager(activeStack);
Devang Pateld440cd92006-12-08 23:53:00 +0000299 }
Devang Patel0f080042007-01-12 17:23:48 +0000300
Devang Patelabcd1d32006-12-07 21:27:23 +0000301 }
302
Devang Patel67d6a5e2006-12-19 19:46:59 +0000303 MPPassManager *getContainedManager(unsigned N) {
304 assert ( N < PassManagers.size() && "Pass number out of range!");
305 MPPassManager *MP = static_cast<MPPassManager *>(PassManagers[N]);
306 return MP;
307 }
308
Devang Patel376fefa2006-11-08 10:29:57 +0000309};
310
Devang Patel8c78a0b2007-05-03 01:11:54 +0000311char PassManagerImpl::ID = 0;
Devang Patel1c3633e2007-01-29 23:10:37 +0000312} // End of llvm namespace
313
314namespace {
315
316//===----------------------------------------------------------------------===//
317// TimingInfo Class - This class is used to calculate information about the
318// amount of time each pass takes to execute. This only happens when
319// -time-passes is enabled on the command line.
320//
321
322class VISIBILITY_HIDDEN TimingInfo {
323 std::map<Pass*, Timer> TimingData;
324 TimerGroup TG;
325
326public:
327 // Use 'create' member to get this.
328 TimingInfo() : TG("... Pass execution timing report ...") {}
329
330 // TimingDtor - Print out information about timing information
331 ~TimingInfo() {
332 // Delete all of the timers...
333 TimingData.clear();
334 // TimerGroup is deleted next, printing the report.
335 }
336
337 // createTheTimeInfo - This method either initializes the TheTimeInfo pointer
338 // to a non null value (if the -time-passes option is enabled) or it leaves it
339 // null. It may be called multiple times.
340 static void createTheTimeInfo();
341
342 void passStarted(Pass *P) {
343
344 if (dynamic_cast<PMDataManager *>(P))
345 return;
346
347 std::map<Pass*, Timer>::iterator I = TimingData.find(P);
348 if (I == TimingData.end())
349 I=TimingData.insert(std::make_pair(P, Timer(P->getPassName(), TG))).first;
350 I->second.startTimer();
351 }
352 void passEnded(Pass *P) {
353
354 if (dynamic_cast<PMDataManager *>(P))
355 return;
356
357 std::map<Pass*, Timer>::iterator I = TimingData.find(P);
358 assert (I != TimingData.end() && "passStarted/passEnded not nested right!");
359 I->second.stopTimer();
360 }
361};
362
Devang Patelb8817b92006-12-14 00:59:42 +0000363static TimingInfo *TheTimeInfo;
364
Devang Patel1c3633e2007-01-29 23:10:37 +0000365} // End of anon namespace
Devang Patelca58e352006-11-08 10:05:38 +0000366
Devang Patela1514cb2006-12-07 19:39:39 +0000367//===----------------------------------------------------------------------===//
Devang Patelafb1f3622006-12-12 22:35:25 +0000368// PMTopLevelManager implementation
369
Devang Patel4268fc02007-01-16 02:00:38 +0000370/// Initialize top level manager. Create first pass manager.
371PMTopLevelManager::PMTopLevelManager (enum TopLevelManagerType t) {
372
373 if (t == TLM_Pass) {
374 MPPassManager *MPP = new MPPassManager(1);
375 MPP->setTopLevelManager(this);
376 addPassManager(MPP);
377 activeStack.push(MPP);
378 }
379 else if (t == TLM_Function) {
380 FPPassManager *FPP = new FPPassManager(1);
381 FPP->setTopLevelManager(this);
382 addPassManager(FPP);
383 activeStack.push(FPP);
384 }
385}
386
Devang Patelafb1f3622006-12-12 22:35:25 +0000387/// Set pass P as the last user of the given analysis passes.
Devang Patel8adae862007-07-20 18:04:54 +0000388void PMTopLevelManager::setLastUser(SmallVector<Pass *, 12> &AnalysisPasses,
Devang Patelafb1f3622006-12-12 22:35:25 +0000389 Pass *P) {
390
Devang Patel8adae862007-07-20 18:04:54 +0000391 for (SmallVector<Pass *, 12>::iterator I = AnalysisPasses.begin(),
Devang Patelafb1f3622006-12-12 22:35:25 +0000392 E = AnalysisPasses.end(); I != E; ++I) {
393 Pass *AP = *I;
394 LastUser[AP] = P;
Devang Patel01919d22007-03-08 19:05:01 +0000395
396 if (P == AP)
397 continue;
398
Devang Patelafb1f3622006-12-12 22:35:25 +0000399 // If AP is the last user of other passes then make P last user of
400 // such passes.
401 for (std::map<Pass *, Pass *>::iterator LUI = LastUser.begin(),
402 LUE = LastUser.end(); LUI != LUE; ++LUI) {
403 if (LUI->second == AP)
404 LastUser[LUI->first] = P;
405 }
406 }
Devang Patelafb1f3622006-12-12 22:35:25 +0000407}
408
409/// Collect passes whose last user is P
Devang Patel8adae862007-07-20 18:04:54 +0000410void PMTopLevelManager::collectLastUses(SmallVector<Pass *, 12> &LastUses,
Devang Patelafb1f3622006-12-12 22:35:25 +0000411 Pass *P) {
Chris Lattner9df8be42007-02-17 23:14:24 +0000412 for (std::map<Pass *, Pass *>::iterator LUI = LastUser.begin(),
413 LUE = LastUser.end(); LUI != LUE; ++LUI)
414 if (LUI->second == P)
415 LastUses.push_back(LUI->first);
Devang Patelafb1f3622006-12-12 22:35:25 +0000416}
417
418/// Schedule pass P for execution. Make sure that passes required by
419/// P are run before P is run. Update analysis info maintained by
420/// the manager. Remove dead passes. This is a recursive function.
421void PMTopLevelManager::schedulePass(Pass *P) {
422
Devang Patel3312f752007-01-16 21:43:18 +0000423 // TODO : Allocate function manager for this pass, other wise required set
424 // may be inserted into previous function manager
Devang Patelafb1f3622006-12-12 22:35:25 +0000425
Devang Pateld74ede72007-03-06 01:06:16 +0000426 // Give pass a chance to prepare the stage.
427 P->preparePassManager(activeStack);
428
Devang Patel864970e2008-03-18 00:39:19 +0000429 // If P is an analysis pass and it is available then do not
430 // generate the analysis again. Stale analysis info should not be
431 // available at this point.
Devang Patel718da662008-03-19 21:56:59 +0000432 if (P->getPassInfo() &&
433 P->getPassInfo()->isAnalysis() && findAnalysisPass(P->getPassInfo()))
Devang Patelaf75ab82008-03-19 00:48:41 +0000434 return;
Devang Patel864970e2008-03-18 00:39:19 +0000435
Devang Patelafb1f3622006-12-12 22:35:25 +0000436 AnalysisUsage AnUsage;
437 P->getAnalysisUsage(AnUsage);
438 const std::vector<AnalysisID> &RequiredSet = AnUsage.getRequiredSet();
439 for (std::vector<AnalysisID>::const_iterator I = RequiredSet.begin(),
440 E = RequiredSet.end(); I != E; ++I) {
441
442 Pass *AnalysisPass = findAnalysisPass(*I);
443 if (!AnalysisPass) {
Devang Patelafb1f3622006-12-12 22:35:25 +0000444 AnalysisPass = (*I)->createPass();
Devang Patele64d3052007-04-16 20:12:57 +0000445 // Schedule this analysis run first only if it is not a lower level
446 // analysis pass. Lower level analsyis passes are run on the fly.
447 if (P->getPotentialPassManagerType () >=
448 AnalysisPass->getPotentialPassManagerType())
449 schedulePass(AnalysisPass);
450 else
451 delete AnalysisPass;
Devang Patelafb1f3622006-12-12 22:35:25 +0000452 }
453 }
454
455 // Now all required passes are available.
456 addTopLevelPass(P);
457}
458
459/// Find the pass that implements Analysis AID. Search immutable
460/// passes and all pass managers. If desired pass is not found
461/// then return NULL.
462Pass *PMTopLevelManager::findAnalysisPass(AnalysisID AID) {
463
464 Pass *P = NULL;
Devang Patelcd6ba152006-12-12 22:50:05 +0000465 // Check pass managers
Dan Gohman73caf5f2008-03-13 01:48:32 +0000466 for (std::vector<PMDataManager *>::iterator I = PassManagers.begin(),
Devang Patelcd6ba152006-12-12 22:50:05 +0000467 E = PassManagers.end(); P == NULL && I != E; ++I) {
Dan Gohman73caf5f2008-03-13 01:48:32 +0000468 PMDataManager *PMD = *I;
Devang Patelcd6ba152006-12-12 22:50:05 +0000469 P = PMD->findAnalysisPass(AID, false);
470 }
471
472 // Check other pass managers
473 for (std::vector<PMDataManager *>::iterator I = IndirectPassManagers.begin(),
474 E = IndirectPassManagers.end(); P == NULL && I != E; ++I)
475 P = (*I)->findAnalysisPass(AID, false);
476
Devang Patelafb1f3622006-12-12 22:35:25 +0000477 for (std::vector<ImmutablePass *>::iterator I = ImmutablePasses.begin(),
478 E = ImmutablePasses.end(); P == NULL && I != E; ++I) {
479 const PassInfo *PI = (*I)->getPassInfo();
480 if (PI == AID)
481 P = *I;
482
483 // If Pass not found then check the interfaces implemented by Immutable Pass
484 if (!P) {
Dan Gohman929391a2008-01-29 12:09:55 +0000485 const std::vector<const PassInfo*> &ImmPI =
486 PI->getInterfacesImplemented();
Devang Patel56d48ec2006-12-15 22:57:49 +0000487 if (std::find(ImmPI.begin(), ImmPI.end(), AID) != ImmPI.end())
488 P = *I;
Devang Patelafb1f3622006-12-12 22:35:25 +0000489 }
490 }
491
Devang Patelafb1f3622006-12-12 22:35:25 +0000492 return P;
493}
494
Devang Pateleda56172006-12-12 23:34:33 +0000495// Print passes managed by this top level manager.
Devang Patel991aeba2006-12-15 20:13:01 +0000496void PMTopLevelManager::dumpPasses() const {
Devang Pateleda56172006-12-12 23:34:33 +0000497
Devang Patelfd4184322007-01-17 20:33:36 +0000498 if (PassDebugging < Structure)
Devang Patel67d6a5e2006-12-19 19:46:59 +0000499 return;
500
Devang Pateleda56172006-12-12 23:34:33 +0000501 // Print out the immutable passes
502 for (unsigned i = 0, e = ImmutablePasses.size(); i != e; ++i) {
503 ImmutablePasses[i]->dumpPassStructure(0);
504 }
505
Dan Gohman73caf5f2008-03-13 01:48:32 +0000506 // Every class that derives from PMDataManager also derives from Pass
507 // (sometimes indirectly), but there's no inheritance relationship
508 // between PMDataManager and Pass, so we have to dynamic_cast to get
509 // from a PMDataManager* to a Pass*.
510 for (std::vector<PMDataManager *>::const_iterator I = PassManagers.begin(),
Devang Pateleda56172006-12-12 23:34:33 +0000511 E = PassManagers.end(); I != E; ++I)
Dan Gohman73caf5f2008-03-13 01:48:32 +0000512 dynamic_cast<Pass *>(*I)->dumpPassStructure(1);
Devang Pateleda56172006-12-12 23:34:33 +0000513}
514
Devang Patel991aeba2006-12-15 20:13:01 +0000515void PMTopLevelManager::dumpArguments() const {
Devang Patelcfd70c42006-12-13 22:10:00 +0000516
Devang Patelfd4184322007-01-17 20:33:36 +0000517 if (PassDebugging < Arguments)
Devang Patelcfd70c42006-12-13 22:10:00 +0000518 return;
519
520 cerr << "Pass Arguments: ";
Dan Gohman73caf5f2008-03-13 01:48:32 +0000521 for (std::vector<PMDataManager *>::const_iterator I = PassManagers.begin(),
Devang Patelcfd70c42006-12-13 22:10:00 +0000522 E = PassManagers.end(); I != E; ++I) {
Dan Gohman73caf5f2008-03-13 01:48:32 +0000523 PMDataManager *PMD = *I;
Devang Patelcfd70c42006-12-13 22:10:00 +0000524 PMD->dumpPassArguments();
525 }
526 cerr << "\n";
527}
528
Devang Patele3068402006-12-21 00:16:50 +0000529void PMTopLevelManager::initializeAllAnalysisInfo() {
530
Dan Gohman73caf5f2008-03-13 01:48:32 +0000531 for (std::vector<PMDataManager *>::iterator I = PassManagers.begin(),
Devang Patele3068402006-12-21 00:16:50 +0000532 E = PassManagers.end(); I != E; ++I) {
Dan Gohman73caf5f2008-03-13 01:48:32 +0000533 PMDataManager *PMD = *I;
Devang Patele3068402006-12-21 00:16:50 +0000534 PMD->initializeAnalysisInfo();
535 }
536
537 // Initailize other pass managers
538 for (std::vector<PMDataManager *>::iterator I = IndirectPassManagers.begin(),
539 E = IndirectPassManagers.end(); I != E; ++I)
540 (*I)->initializeAnalysisInfo();
541}
542
Devang Patele7599552007-01-12 18:52:44 +0000543/// Destructor
544PMTopLevelManager::~PMTopLevelManager() {
Dan Gohman73caf5f2008-03-13 01:48:32 +0000545 for (std::vector<PMDataManager *>::iterator I = PassManagers.begin(),
Devang Patele7599552007-01-12 18:52:44 +0000546 E = PassManagers.end(); I != E; ++I)
547 delete *I;
548
549 for (std::vector<ImmutablePass *>::iterator
550 I = ImmutablePasses.begin(), E = ImmutablePasses.end(); I != E; ++I)
551 delete *I;
Devang Patele7599552007-01-12 18:52:44 +0000552}
553
Devang Patelafb1f3622006-12-12 22:35:25 +0000554//===----------------------------------------------------------------------===//
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000555// PMDataManager implementation
Devang Patelf68a3492006-11-07 22:35:17 +0000556
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;
Dan Gohman929391a2008-01-29 12:09:55 +0000585 if (!dynamic_cast<ImmutablePass*>(P1) &&
586 std::find(PreservedSet.begin(), PreservedSet.end(),
587 P1->getPassInfo()) ==
Devang Patel01919d22007-03-08 19:05:01 +0000588 PreservedSet.end())
589 return false;
Devang Patel9d9fc902007-03-06 17:52:53 +0000590 }
591
592 return true;
593}
594
Devang Patela273d1c2007-07-19 18:02:32 +0000595/// verifyPreservedAnalysis -- Verify analysis presreved by pass P.
596void PMDataManager::verifyPreservedAnalysis(Pass *P) {
Devang Patel349170f2006-11-11 01:24:55 +0000597 AnalysisUsage AnUsage;
598 P->getAnalysisUsage(AnUsage);
Devang Patelef432532007-07-19 05:36:09 +0000599 const std::vector<AnalysisID> &PreservedSet = AnUsage.getPreservedSet();
Devang Patelf68a3492006-11-07 22:35:17 +0000600
Devang Patelef432532007-07-19 05:36:09 +0000601 // Verify preserved analysis
Devang Patela273d1c2007-07-19 18:02:32 +0000602 for (std::vector<AnalysisID>::const_iterator I = PreservedSet.begin(),
603 E = PreservedSet.end(); I != E; ++I) {
604 AnalysisID AID = *I;
605 Pass *AP = findAnalysisPass(AID, true);
606 if (AP)
607 AP->verifyAnalysis();
Devang Patelef432532007-07-19 05:36:09 +0000608 }
Devang Patela273d1c2007-07-19 18:02:32 +0000609}
610
611/// Remove Analyss not preserved by Pass P
612void PMDataManager::removeNotPreservedAnalysis(Pass *P) {
613 AnalysisUsage AnUsage;
614 P->getAnalysisUsage(AnUsage);
Devang Patel2e169c32006-12-07 20:03:49 +0000615 if (AnUsage.getPreservesAll())
616 return;
617
Devang Patela273d1c2007-07-19 18:02:32 +0000618 const std::vector<AnalysisID> &PreservedSet = AnUsage.getPreservedSet();
Devang Patelf60b5d92006-11-14 01:59:59 +0000619 for (std::map<AnalysisID, Pass*>::iterator I = AvailableAnalysis.begin(),
Devang Patelbe6bd55e2006-12-12 23:07:44 +0000620 E = AvailableAnalysis.end(); I != E; ) {
Devang Patel56d48ec2006-12-15 22:57:49 +0000621 std::map<AnalysisID, Pass*>::iterator Info = I++;
Devang Patel01919d22007-03-08 19:05:01 +0000622 if (!dynamic_cast<ImmutablePass*>(Info->second)
623 && std::find(PreservedSet.begin(), PreservedSet.end(), Info->first) ==
624 PreservedSet.end())
Devang Patel349170f2006-11-11 01:24:55 +0000625 // Remove this analysis
Devang Patel01919d22007-03-08 19:05:01 +0000626 AvailableAnalysis.erase(Info);
Devang Patel349170f2006-11-11 01:24:55 +0000627 }
Devang Patel42dd1e92007-03-06 01:55:46 +0000628
629 // Check inherited analysis also. If P is not preserving analysis
630 // provided by parent manager then remove it here.
631 for (unsigned Index = 0; Index < PMT_Last; ++Index) {
632
633 if (!InheritedAnalysis[Index])
634 continue;
635
636 for (std::map<AnalysisID, Pass*>::iterator
637 I = InheritedAnalysis[Index]->begin(),
638 E = InheritedAnalysis[Index]->end(); I != E; ) {
639 std::map<AnalysisID, Pass *>::iterator Info = I++;
Dan Gohman929391a2008-01-29 12:09:55 +0000640 if (!dynamic_cast<ImmutablePass*>(Info->second) &&
641 std::find(PreservedSet.begin(), PreservedSet.end(), Info->first) ==
Devang Patel01919d22007-03-08 19:05:01 +0000642 PreservedSet.end())
Devang Patel42dd1e92007-03-06 01:55:46 +0000643 // Remove this analysis
Devang Patel01919d22007-03-08 19:05:01 +0000644 InheritedAnalysis[Index]->erase(Info);
Devang Patel42dd1e92007-03-06 01:55:46 +0000645 }
646 }
647
Devang Patelf68a3492006-11-07 22:35:17 +0000648}
649
Devang Patelca189262006-11-14 03:05:08 +0000650/// Remove analysis passes that are not used any longer
Devang Pateld305c402007-08-10 18:29:32 +0000651void PMDataManager::removeDeadPasses(Pass *P, const char *Msg,
Devang Patel003a5592007-03-05 20:01:30 +0000652 enum PassDebuggingString DBG_STR) {
Devang Patel17ad0962006-12-08 00:37:52 +0000653
Devang Patel8adae862007-07-20 18:04:54 +0000654 SmallVector<Pass *, 12> DeadPasses;
Devang Patel69e9f6d2007-04-16 20:27:05 +0000655
Devang Patel2ff44922007-04-16 20:39:59 +0000656 // If this is a on the fly manager then it does not have TPM.
Devang Patel69e9f6d2007-04-16 20:27:05 +0000657 if (!TPM)
658 return;
659
Devang Patel17ad0962006-12-08 00:37:52 +0000660 TPM->collectLastUses(DeadPasses, P);
661
Devang Patel8adae862007-07-20 18:04:54 +0000662 for (SmallVector<Pass *, 12>::iterator I = DeadPasses.begin(),
Devang Patel17ad0962006-12-08 00:37:52 +0000663 E = DeadPasses.end(); I != E; ++I) {
Devang Patel200d3052006-12-13 23:50:44 +0000664
Devang Patel003a5592007-03-05 20:01:30 +0000665 dumpPassInfo(*I, FREEING_MSG, DBG_STR, Msg);
Devang Patel200d3052006-12-13 23:50:44 +0000666
Devang Patel7ebf09d2007-03-05 18:20:51 +0000667 if (TheTimeInfo) TheTimeInfo->passStarted(*I);
Devang Patel17ad0962006-12-08 00:37:52 +0000668 (*I)->releaseMemory();
Devang Patel7ebf09d2007-03-05 18:20:51 +0000669 if (TheTimeInfo) TheTimeInfo->passEnded(*I);
Devang Patelb8817b92006-12-14 00:59:42 +0000670
Devang Patel17ad0962006-12-08 00:37:52 +0000671 std::map<AnalysisID, Pass*>::iterator Pos =
672 AvailableAnalysis.find((*I)->getPassInfo());
673
Devang Patel475c4532006-12-08 00:59:05 +0000674 // It is possible that pass is already removed from the AvailableAnalysis
Devang Patel17ad0962006-12-08 00:37:52 +0000675 if (Pos != AvailableAnalysis.end())
676 AvailableAnalysis.erase(Pos);
677 }
Devang Patelca189262006-11-14 03:05:08 +0000678}
679
Devang Patel8f677ce2006-12-07 18:47:25 +0000680/// Add pass P into the PassVector. Update
Devang Patel90b05e02006-11-11 02:04:19 +0000681/// AvailableAnalysis appropriately if ProcessAnalysis is true.
Devang Patelf85793d2007-01-12 20:07:16 +0000682void PMDataManager::add(Pass *P,
Devang Patel6975b6e2007-01-15 23:06:56 +0000683 bool ProcessAnalysis) {
Devang Patel8cad70d2006-11-11 01:51:02 +0000684
Devang Pateld440cd92006-12-08 23:53:00 +0000685 // This manager is going to manage pass P. Set up analysis resolver
686 // to connect them.
Devang Patelb66334b2007-01-05 22:47:07 +0000687 AnalysisResolver *AR = new AnalysisResolver(*this);
Devang Pateld440cd92006-12-08 23:53:00 +0000688 P->setResolver(AR);
689
Devang Patelec2b9a72007-03-05 22:57:49 +0000690 // If a FunctionPass F is the last user of ModulePass info M
691 // then the F's manager, not F, records itself as a last user of M.
Devang Patel8adae862007-07-20 18:04:54 +0000692 SmallVector<Pass *, 12> TransferLastUses;
Devang Patelec2b9a72007-03-05 22:57:49 +0000693
Devang Patel90b05e02006-11-11 02:04:19 +0000694 if (ProcessAnalysis) {
Devang Patelbc03f132006-12-07 23:55:10 +0000695
696 // At the moment, this pass is the last user of all required passes.
Devang Patel8adae862007-07-20 18:04:54 +0000697 SmallVector<Pass *, 12> LastUses;
Devang Patele64d3052007-04-16 20:12:57 +0000698 SmallVector<Pass *, 8> RequiredPasses;
699 SmallVector<AnalysisID, 8> ReqAnalysisNotAvailable;
700
Devang Patelbc03f132006-12-07 23:55:10 +0000701 unsigned PDepth = this->getDepth();
702
Devang Patele64d3052007-04-16 20:12:57 +0000703 collectRequiredAnalysis(RequiredPasses,
704 ReqAnalysisNotAvailable, P);
705 for (SmallVector<Pass *, 8>::iterator I = RequiredPasses.begin(),
Devang Patelbc03f132006-12-07 23:55:10 +0000706 E = RequiredPasses.end(); I != E; ++I) {
707 Pass *PRequired = *I;
708 unsigned RDepth = 0;
Devang Patel64619be2006-12-09 00:07:38 +0000709
710 PMDataManager &DM = PRequired->getResolver()->getPMDataManager();
711 RDepth = DM.getDepth();
712
Devang Patelbc03f132006-12-07 23:55:10 +0000713 if (PDepth == RDepth)
714 LastUses.push_back(PRequired);
715 else if (PDepth > RDepth) {
716 // Let the parent claim responsibility of last use
Devang Patel832bc072006-12-15 00:08:26 +0000717 TransferLastUses.push_back(PRequired);
Devang Patel9d9fc902007-03-06 17:52:53 +0000718 // Keep track of higher level analysis used by this manager.
719 HigherLevelAnalysis.push_back(PRequired);
Devang Patele64d3052007-04-16 20:12:57 +0000720 } else
721 assert (0 && "Unable to accomodate Required Pass");
722 }
723
Devang Patel39786a92007-01-15 20:31:54 +0000724 // Set P as P's last user until someone starts using P.
725 // However, if P is a Pass Manager then it does not need
726 // to record its last user.
Devang Pateld85662f2007-01-16 22:38:10 +0000727 if (!dynamic_cast<PMDataManager *>(P))
Devang Patel39786a92007-01-15 20:31:54 +0000728 LastUses.push_back(P);
Devang Pateld85662f2007-01-16 22:38:10 +0000729 TPM->setLastUser(LastUses, P);
Devang Patelbc03f132006-12-07 23:55:10 +0000730
Devang Patelec2b9a72007-03-05 22:57:49 +0000731 if (!TransferLastUses.empty()) {
732 Pass *My_PM = dynamic_cast<Pass *>(this);
733 TPM->setLastUser(TransferLastUses, My_PM);
734 TransferLastUses.clear();
735 }
736
Devang Patel69e9f6d2007-04-16 20:27:05 +0000737 // Now, take care of required analysises that are not available.
738 for (SmallVector<AnalysisID, 8>::iterator
739 I = ReqAnalysisNotAvailable.begin(),
740 E = ReqAnalysisNotAvailable.end() ;I != E; ++I) {
741 Pass *AnalysisPass = (*I)->createPass();
742 this->addLowerLevelRequiredPass(P, AnalysisPass);
743 }
744
Devang Patel17bff0d2006-12-07 22:09:36 +0000745 // Take a note of analysis required and made available by this pass.
Devang Patel90b05e02006-11-11 02:04:19 +0000746 // Remove the analysis not preserved by this pass
747 removeNotPreservedAnalysis(P);
Devang Patel17bff0d2006-12-07 22:09:36 +0000748 recordAvailableAnalysis(P);
Devang Patel90b05e02006-11-11 02:04:19 +0000749 }
Devang Patel8cad70d2006-11-11 01:51:02 +0000750
751 // Add pass
752 PassVector.push_back(P);
Devang Patel8cad70d2006-11-11 01:51:02 +0000753}
754
Devang Patele64d3052007-04-16 20:12:57 +0000755
756/// Populate RP with analysis pass that are required by
757/// pass P and are available. Populate RP_NotAvail with analysis
758/// pass that are required by pass P but are not available.
759void PMDataManager::collectRequiredAnalysis(SmallVector<Pass *, 8>&RP,
760 SmallVector<AnalysisID, 8> &RP_NotAvail,
761 Pass *P) {
Devang Patel1d6267c2006-12-07 23:05:44 +0000762 AnalysisUsage AnUsage;
763 P->getAnalysisUsage(AnUsage);
764 const std::vector<AnalysisID> &RequiredSet = AnUsage.getRequiredSet();
765 for (std::vector<AnalysisID>::const_iterator
766 I = RequiredSet.begin(), E = RequiredSet.end();
767 I != E; ++I) {
Devang Patele64d3052007-04-16 20:12:57 +0000768 AnalysisID AID = *I;
769 if (Pass *AnalysisPass = findAnalysisPass(*I, true))
770 RP.push_back(AnalysisPass);
771 else
772 RP_NotAvail.push_back(AID);
Devang Patel1d6267c2006-12-07 23:05:44 +0000773 }
Devang Patelf58183d2006-12-12 23:09:32 +0000774
775 const std::vector<AnalysisID> &IDs = AnUsage.getRequiredTransitiveSet();
776 for (std::vector<AnalysisID>::const_iterator I = IDs.begin(),
777 E = IDs.end(); I != E; ++I) {
Devang Patele64d3052007-04-16 20:12:57 +0000778 AnalysisID AID = *I;
779 if (Pass *AnalysisPass = findAnalysisPass(*I, true))
780 RP.push_back(AnalysisPass);
781 else
782 RP_NotAvail.push_back(AID);
Devang Patelf58183d2006-12-12 23:09:32 +0000783 }
Devang Patel1d6267c2006-12-07 23:05:44 +0000784}
785
Devang Patel07f4f582006-11-14 21:49:36 +0000786// All Required analyses should be available to the pass as it runs! Here
787// we fill in the AnalysisImpls member of the pass so that it can
788// successfully use the getAnalysis() method to retrieve the
789// implementations it needs.
790//
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000791void PMDataManager::initializeAnalysisImpl(Pass *P) {
Devang Patelff631ae2006-11-15 01:27:05 +0000792 AnalysisUsage AnUsage;
793 P->getAnalysisUsage(AnUsage);
Devang Patel07f4f582006-11-14 21:49:36 +0000794
795 for (std::vector<const PassInfo *>::const_iterator
796 I = AnUsage.getRequiredSet().begin(),
797 E = AnUsage.getRequiredSet().end(); I != E; ++I) {
Devang Patel640c5bb2006-12-08 22:30:11 +0000798 Pass *Impl = findAnalysisPass(*I, true);
Devang Patel07f4f582006-11-14 21:49:36 +0000799 if (Impl == 0)
Devang Patel56a5c622007-04-16 20:44:16 +0000800 // This may be analysis pass that is initialized on the fly.
801 // If that is not the case then it will raise an assert when it is used.
802 continue;
Devang Patelb66334b2007-01-05 22:47:07 +0000803 AnalysisResolver *AR = P->getResolver();
Devang Patel984698a2006-12-09 01:11:34 +0000804 AR->addAnalysisImplsPair(*I, Impl);
Devang Patel07f4f582006-11-14 21:49:36 +0000805 }
806}
807
Devang Patel640c5bb2006-12-08 22:30:11 +0000808/// Find the pass that implements Analysis AID. If desired pass is not found
809/// then return NULL.
810Pass *PMDataManager::findAnalysisPass(AnalysisID AID, bool SearchParent) {
811
812 // Check if AvailableAnalysis map has one entry.
813 std::map<AnalysisID, Pass*>::const_iterator I = AvailableAnalysis.find(AID);
814
815 if (I != AvailableAnalysis.end())
816 return I->second;
817
818 // Search Parents through TopLevelManager
819 if (SearchParent)
820 return TPM->findAnalysisPass(AID);
821
Devang Patel9d759b82006-12-09 00:09:12 +0000822 return NULL;
Devang Patel640c5bb2006-12-08 22:30:11 +0000823}
824
Devang Patel991aeba2006-12-15 20:13:01 +0000825// Print list of passes that are last used by P.
826void PMDataManager::dumpLastUses(Pass *P, unsigned Offset) const{
827
Devang Patel8adae862007-07-20 18:04:54 +0000828 SmallVector<Pass *, 12> LUses;
Devang Patel2ff44922007-04-16 20:39:59 +0000829
830 // If this is a on the fly manager then it does not have TPM.
831 if (!TPM)
832 return;
833
Devang Patel991aeba2006-12-15 20:13:01 +0000834 TPM->collectLastUses(LUses, P);
835
Devang Patel8adae862007-07-20 18:04:54 +0000836 for (SmallVector<Pass *, 12>::iterator I = LUses.begin(),
Devang Patel991aeba2006-12-15 20:13:01 +0000837 E = LUses.end(); I != E; ++I) {
838 llvm::cerr << "--" << std::string(Offset*2, ' ');
839 (*I)->dumpPassStructure(0);
840 }
841}
842
843void PMDataManager::dumpPassArguments() const {
844 for(std::vector<Pass *>::const_iterator I = PassVector.begin(),
845 E = PassVector.end(); I != E; ++I) {
846 if (PMDataManager *PMD = dynamic_cast<PMDataManager *>(*I))
847 PMD->dumpPassArguments();
848 else
849 if (const PassInfo *PI = (*I)->getPassInfo())
850 if (!PI->isAnalysisGroup())
851 cerr << " -" << PI->getPassArgument();
852 }
853}
854
Chris Lattnerdd6304f2007-08-10 06:17:04 +0000855void PMDataManager::dumpPassInfo(Pass *P, enum PassDebuggingString S1,
856 enum PassDebuggingString S2,
Devang Pateld305c402007-08-10 18:29:32 +0000857 const char *Msg) {
Devang Patelfd4184322007-01-17 20:33:36 +0000858 if (PassDebugging < Executions)
Devang Patel991aeba2006-12-15 20:13:01 +0000859 return;
860 cerr << (void*)this << std::string(getDepth()*2+1, ' ');
Devang Patel003a5592007-03-05 20:01:30 +0000861 switch (S1) {
862 case EXECUTION_MSG:
863 cerr << "Executing Pass '" << P->getPassName();
864 break;
865 case MODIFICATION_MSG:
Devang Pateld56e4912007-06-18 21:32:29 +0000866 cerr << "Made Modification '" << P->getPassName();
Devang Patel003a5592007-03-05 20:01:30 +0000867 break;
868 case FREEING_MSG:
869 cerr << " Freeing Pass '" << P->getPassName();
870 break;
871 default:
872 break;
873 }
874 switch (S2) {
875 case ON_BASICBLOCK_MSG:
Devang Pateld56e4912007-06-18 21:32:29 +0000876 cerr << "' on BasicBlock '" << Msg << "'...\n";
Devang Patel003a5592007-03-05 20:01:30 +0000877 break;
878 case ON_FUNCTION_MSG:
Devang Pateld56e4912007-06-18 21:32:29 +0000879 cerr << "' on Function '" << Msg << "'...\n";
Devang Patel003a5592007-03-05 20:01:30 +0000880 break;
881 case ON_MODULE_MSG:
Devang Pateld56e4912007-06-18 21:32:29 +0000882 cerr << "' on Module '" << Msg << "'...\n";
Devang Patel003a5592007-03-05 20:01:30 +0000883 break;
884 case ON_LOOP_MSG:
Devang Pateld56e4912007-06-18 21:32:29 +0000885 cerr << "' on Loop " << Msg << "'...\n";
Devang Patel003a5592007-03-05 20:01:30 +0000886 break;
887 case ON_CG_MSG:
Devang Pateld56e4912007-06-18 21:32:29 +0000888 cerr << "' on Call Graph " << Msg << "'...\n";
Devang Patel003a5592007-03-05 20:01:30 +0000889 break;
890 default:
891 break;
892 }
Devang Patel991aeba2006-12-15 20:13:01 +0000893}
894
895void PMDataManager::dumpAnalysisSetInfo(const char *Msg, Pass *P,
896 const std::vector<AnalysisID> &Set)
897 const {
Devang Patelfd4184322007-01-17 20:33:36 +0000898 if (PassDebugging >= Details && !Set.empty()) {
Devang Patel991aeba2006-12-15 20:13:01 +0000899 cerr << (void*)P << std::string(getDepth()*2+3, ' ') << Msg << " Analyses:";
900 for (unsigned i = 0; i != Set.size(); ++i) {
901 if (i) cerr << ",";
902 cerr << " " << Set[i]->getPassName();
903 }
904 cerr << "\n";
905 }
906}
Devang Patel9bdf7d42006-12-08 23:28:54 +0000907
Devang Patel004937b2007-07-27 20:06:09 +0000908/// Add RequiredPass into list of lower level passes required by pass P.
909/// RequiredPass is run on the fly by Pass Manager when P requests it
910/// through getAnalysis interface.
911/// This should be handled by specific pass manager.
912void PMDataManager::addLowerLevelRequiredPass(Pass *P, Pass *RequiredPass) {
913 if (TPM) {
914 TPM->dumpArguments();
915 TPM->dumpPasses();
916 }
Devang Patel8df7cc12008-02-02 01:43:30 +0000917
918 // Module Level pass may required Function Level analysis info
919 // (e.g. dominator info). Pass manager uses on the fly function pass manager
920 // to provide this on demand. In that case, in Pass manager terminology,
921 // module level pass is requiring lower level analysis info managed by
922 // lower level pass manager.
923
924 // When Pass manager is not able to order required analysis info, Pass manager
925 // checks whether any lower level manager will be able to provide this
926 // analysis info on demand or not.
Devang Patel004937b2007-07-27 20:06:09 +0000927 assert (0 && "Unable to handle Pass that requires lower level Analysis pass");
928}
929
Devang Patele7599552007-01-12 18:52:44 +0000930// Destructor
931PMDataManager::~PMDataManager() {
932
933 for (std::vector<Pass *>::iterator I = PassVector.begin(),
934 E = PassVector.end(); I != E; ++I)
935 delete *I;
936
Devang Patele7599552007-01-12 18:52:44 +0000937}
938
Devang Patel9bdf7d42006-12-08 23:28:54 +0000939//===----------------------------------------------------------------------===//
940// NOTE: Is this the right place to define this method ?
941// getAnalysisToUpdate - Return an analysis result or null if it doesn't exist
Devang Patelb66334b2007-01-05 22:47:07 +0000942Pass *AnalysisResolver::getAnalysisToUpdate(AnalysisID ID, bool dir) const {
Devang Patel9bdf7d42006-12-08 23:28:54 +0000943 return PM.findAnalysisPass(ID, dir);
944}
945
Devang Patel92942812007-04-16 20:56:24 +0000946Pass *AnalysisResolver::findImplPass(Pass *P, const PassInfo *AnalysisPI,
947 Function &F) {
948 return PM.getOnTheFlyPass(P, AnalysisPI, F);
949}
950
Devang Patela1514cb2006-12-07 19:39:39 +0000951//===----------------------------------------------------------------------===//
Devang Patel67d6a5e2006-12-19 19:46:59 +0000952// BBPassManager implementation
Devang Patel6e5a1132006-11-07 21:31:57 +0000953
Devang Patel6e5a1132006-11-07 21:31:57 +0000954/// Execute all of the passes scheduled for execution by invoking
955/// runOnBasicBlock method. Keep track of whether any of the passes modifies
956/// the function, and if so, return true.
957bool
Devang Patel67d6a5e2006-12-19 19:46:59 +0000958BBPassManager::runOnFunction(Function &F) {
Devang Patel6e5a1132006-11-07 21:31:57 +0000959
Reid Spencer5301e7c2007-01-30 20:08:39 +0000960 if (F.isDeclaration())
Devang Patel745a6962006-12-12 23:15:28 +0000961 return false;
962
Devang Patele9585592006-12-08 01:38:28 +0000963 bool Changed = doInitialization(F);
Devang Patel050ec722006-11-14 01:23:29 +0000964
Devang Patel6e5a1132006-11-07 21:31:57 +0000965 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
Devang Patelabfbe3b2006-12-16 00:56:26 +0000966 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
967 BasicBlockPass *BP = getContainedPass(Index);
Devang Patelf6d1d212006-12-14 00:25:06 +0000968 AnalysisUsage AnUsage;
Devang Patelabfbe3b2006-12-16 00:56:26 +0000969 BP->getAnalysisUsage(AnUsage);
Devang Patelf6d1d212006-12-14 00:25:06 +0000970
Devang Pateld305c402007-08-10 18:29:32 +0000971 dumpPassInfo(BP, EXECUTION_MSG, ON_BASICBLOCK_MSG, I->getNameStart());
Devang Patelabfbe3b2006-12-16 00:56:26 +0000972 dumpAnalysisSetInfo("Required", BP, AnUsage.getRequiredSet());
Devang Patelf6d1d212006-12-14 00:25:06 +0000973
Devang Patelabfbe3b2006-12-16 00:56:26 +0000974 initializeAnalysisImpl(BP);
Devang Patel93a197c2006-12-14 00:08:04 +0000975
Devang Patelabfbe3b2006-12-16 00:56:26 +0000976 if (TheTimeInfo) TheTimeInfo->passStarted(BP);
Devang Patel6e5a1132006-11-07 21:31:57 +0000977 Changed |= BP->runOnBasicBlock(*I);
Devang Patelabfbe3b2006-12-16 00:56:26 +0000978 if (TheTimeInfo) TheTimeInfo->passEnded(BP);
Devang Patel93a197c2006-12-14 00:08:04 +0000979
Devang Patel003a5592007-03-05 20:01:30 +0000980 if (Changed)
Dan Gohman929391a2008-01-29 12:09:55 +0000981 dumpPassInfo(BP, MODIFICATION_MSG, ON_BASICBLOCK_MSG,
982 I->getNameStart());
Devang Patelabfbe3b2006-12-16 00:56:26 +0000983 dumpAnalysisSetInfo("Preserved", BP, AnUsage.getPreservedSet());
Devang Patel93a197c2006-12-14 00:08:04 +0000984
Devang Patela273d1c2007-07-19 18:02:32 +0000985 verifyPreservedAnalysis(BP);
Devang Patelabfbe3b2006-12-16 00:56:26 +0000986 removeNotPreservedAnalysis(BP);
987 recordAvailableAnalysis(BP);
Devang Pateld305c402007-08-10 18:29:32 +0000988 removeDeadPasses(BP, I->getNameStart(), ON_BASICBLOCK_MSG);
Devang Patel6e5a1132006-11-07 21:31:57 +0000989 }
Chris Lattnerde2aa652007-08-10 06:22:25 +0000990
Devang Patel56d48ec2006-12-15 22:57:49 +0000991 return Changed |= doFinalization(F);
Devang Patel6e5a1132006-11-07 21:31:57 +0000992}
993
Devang Patel475c4532006-12-08 00:59:05 +0000994// Implement doInitialization and doFinalization
Devang Patel67d6a5e2006-12-19 19:46:59 +0000995inline bool BBPassManager::doInitialization(Module &M) {
Devang Patel475c4532006-12-08 00:59:05 +0000996 bool Changed = false;
997
Devang Patelabfbe3b2006-12-16 00:56:26 +0000998 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
999 BasicBlockPass *BP = getContainedPass(Index);
Devang Patel475c4532006-12-08 00:59:05 +00001000 Changed |= BP->doInitialization(M);
1001 }
1002
1003 return Changed;
1004}
1005
Devang Patel67d6a5e2006-12-19 19:46:59 +00001006inline bool BBPassManager::doFinalization(Module &M) {
Devang Patel475c4532006-12-08 00:59:05 +00001007 bool Changed = false;
1008
Devang Patelabfbe3b2006-12-16 00:56:26 +00001009 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1010 BasicBlockPass *BP = getContainedPass(Index);
Devang Patel475c4532006-12-08 00:59:05 +00001011 Changed |= BP->doFinalization(M);
1012 }
1013
1014 return Changed;
1015}
1016
Devang Patel67d6a5e2006-12-19 19:46:59 +00001017inline bool BBPassManager::doInitialization(Function &F) {
Devang Patel475c4532006-12-08 00:59:05 +00001018 bool Changed = false;
1019
Devang Patelabfbe3b2006-12-16 00:56:26 +00001020 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1021 BasicBlockPass *BP = getContainedPass(Index);
Devang Patel475c4532006-12-08 00:59:05 +00001022 Changed |= BP->doInitialization(F);
1023 }
1024
1025 return Changed;
1026}
1027
Devang Patel67d6a5e2006-12-19 19:46:59 +00001028inline bool BBPassManager::doFinalization(Function &F) {
Devang Patel475c4532006-12-08 00:59:05 +00001029 bool Changed = false;
1030
Devang Patelabfbe3b2006-12-16 00:56:26 +00001031 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1032 BasicBlockPass *BP = getContainedPass(Index);
Devang Patel475c4532006-12-08 00:59:05 +00001033 Changed |= BP->doFinalization(F);
1034 }
1035
1036 return Changed;
1037}
1038
1039
Devang Patela1514cb2006-12-07 19:39:39 +00001040//===----------------------------------------------------------------------===//
Devang Patelb67904d2006-12-13 02:36:01 +00001041// FunctionPassManager implementation
Devang Patela1514cb2006-12-07 19:39:39 +00001042
Devang Patel4e12f862006-11-08 10:44:40 +00001043/// Create new Function pass manager
Devang Patelb67904d2006-12-13 02:36:01 +00001044FunctionPassManager::FunctionPassManager(ModuleProvider *P) {
Devang Patel67d6a5e2006-12-19 19:46:59 +00001045 FPM = new FunctionPassManagerImpl(0);
Devang Patel9c6290c2006-12-12 22:02:16 +00001046 // FPM is the top level manager.
1047 FPM->setTopLevelManager(FPM);
Devang Patel1036b652006-12-12 23:27:37 +00001048
Dan Gohman565df952008-03-13 02:08:36 +00001049 AnalysisResolver *AR = new AnalysisResolver(*FPM);
Devang Patel1036b652006-12-12 23:27:37 +00001050 FPM->setResolver(AR);
1051
Devang Patel1f653682006-12-08 18:57:16 +00001052 MP = P;
1053}
1054
Devang Patelb67904d2006-12-13 02:36:01 +00001055FunctionPassManager::~FunctionPassManager() {
Devang Patelab97cf42006-12-13 00:09:23 +00001056 delete FPM;
1057}
1058
Devang Patel4e12f862006-11-08 10:44:40 +00001059/// add - Add a pass to the queue of passes to run. This passes
1060/// ownership of the Pass to the PassManager. When the
1061/// PassManager_X is destroyed, the pass will be destroyed as well, so
1062/// there is no need to delete the pass. (TODO delete passes.)
1063/// This implies that all passes MUST be allocated with 'new'.
Devang Patelb67904d2006-12-13 02:36:01 +00001064void FunctionPassManager::add(Pass *P) {
Devang Patel4e12f862006-11-08 10:44:40 +00001065 FPM->add(P);
1066}
1067
Devang Patel9f3083e2006-11-15 19:39:54 +00001068/// run - Execute all of the passes scheduled for execution. Keep
1069/// track of whether any of the passes modifies the function, and if
1070/// so, return true.
1071///
Devang Patelb67904d2006-12-13 02:36:01 +00001072bool FunctionPassManager::run(Function &F) {
Devang Patel9f3083e2006-11-15 19:39:54 +00001073 std::string errstr;
1074 if (MP->materializeFunction(&F, &errstr)) {
Gabor Greife16561c2007-07-05 17:07:56 +00001075 cerr << "Error reading bitcode file: " << errstr << "\n";
Devang Patel9f3083e2006-11-15 19:39:54 +00001076 abort();
1077 }
Devang Patel272908d2006-12-08 22:57:48 +00001078 return FPM->run(F);
Devang Patel9f3083e2006-11-15 19:39:54 +00001079}
1080
1081
Devang Patelff631ae2006-11-15 01:27:05 +00001082/// doInitialization - Run all of the initializers for the function passes.
1083///
Devang Patelb67904d2006-12-13 02:36:01 +00001084bool FunctionPassManager::doInitialization() {
Devang Patelff631ae2006-11-15 01:27:05 +00001085 return FPM->doInitialization(*MP->getModule());
1086}
1087
Dan Gohmane6656eb2007-07-30 14:51:13 +00001088/// doFinalization - Run all of the finalizers for the function passes.
Devang Patelff631ae2006-11-15 01:27:05 +00001089///
Devang Patelb67904d2006-12-13 02:36:01 +00001090bool FunctionPassManager::doFinalization() {
Devang Patelff631ae2006-11-15 01:27:05 +00001091 return FPM->doFinalization(*MP->getModule());
1092}
1093
Devang Patela1514cb2006-12-07 19:39:39 +00001094//===----------------------------------------------------------------------===//
Devang Patel67d6a5e2006-12-19 19:46:59 +00001095// FunctionPassManagerImpl implementation
1096//
Devang Patel67d6a5e2006-12-19 19:46:59 +00001097inline bool FunctionPassManagerImpl::doInitialization(Module &M) {
1098 bool Changed = false;
1099
1100 for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index) {
1101 FPPassManager *FP = getContainedManager(Index);
1102 Changed |= FP->doInitialization(M);
1103 }
1104
1105 return Changed;
1106}
1107
1108inline bool FunctionPassManagerImpl::doFinalization(Module &M) {
1109 bool Changed = false;
1110
1111 for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index) {
1112 FPPassManager *FP = getContainedManager(Index);
1113 Changed |= FP->doFinalization(M);
1114 }
1115
1116 return Changed;
1117}
1118
1119// Execute all the passes managed by this top level manager.
1120// Return true if any function is modified by a pass.
1121bool FunctionPassManagerImpl::run(Function &F) {
1122
1123 bool Changed = false;
1124
1125 TimingInfo::createTheTimeInfo();
1126
1127 dumpArguments();
1128 dumpPasses();
1129
Devang Patele3068402006-12-21 00:16:50 +00001130 initializeAllAnalysisInfo();
Devang Patel67d6a5e2006-12-19 19:46:59 +00001131 for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index) {
1132 FPPassManager *FP = getContainedManager(Index);
1133 Changed |= FP->runOnFunction(F);
1134 }
1135 return Changed;
1136}
1137
1138//===----------------------------------------------------------------------===//
1139// FPPassManager implementation
Devang Patel0c2012f2006-11-07 21:49:50 +00001140
Devang Patel8c78a0b2007-05-03 01:11:54 +00001141char FPPassManager::ID = 0;
Devang Patele7599552007-01-12 18:52:44 +00001142/// Print passes managed by this manager
1143void FPPassManager::dumpPassStructure(unsigned Offset) {
1144 llvm::cerr << std::string(Offset*2, ' ') << "FunctionPass Manager\n";
1145 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1146 FunctionPass *FP = getContainedPass(Index);
1147 FP->dumpPassStructure(Offset + 1);
1148 dumpLastUses(FP, Offset+1);
1149 }
1150}
1151
1152
Devang Patel0c2012f2006-11-07 21:49:50 +00001153/// Execute all of the passes scheduled for execution by invoking
1154/// runOnFunction method. Keep track of whether any of the passes modifies
1155/// the function, and if so, return true.
Devang Patel67d6a5e2006-12-19 19:46:59 +00001156bool FPPassManager::runOnFunction(Function &F) {
Devang Patel9f3083e2006-11-15 19:39:54 +00001157
1158 bool Changed = false;
Devang Patel745a6962006-12-12 23:15:28 +00001159
Reid Spencer5301e7c2007-01-30 20:08:39 +00001160 if (F.isDeclaration())
Devang Patel745a6962006-12-12 23:15:28 +00001161 return false;
Devang Patelcbbf2912008-03-20 01:09:53 +00001162
1163 // Collect inherited analysis from Module level pass manager.
1164 populateInheritedAnalysis(TPM->activeStack);
Devang Patel745a6962006-12-12 23:15:28 +00001165
Devang Patelabfbe3b2006-12-16 00:56:26 +00001166 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1167 FunctionPass *FP = getContainedPass(Index);
1168
Devang Patelf6d1d212006-12-14 00:25:06 +00001169 AnalysisUsage AnUsage;
Devang Patelabfbe3b2006-12-16 00:56:26 +00001170 FP->getAnalysisUsage(AnUsage);
Devang Patel93a197c2006-12-14 00:08:04 +00001171
Devang Pateld305c402007-08-10 18:29:32 +00001172 dumpPassInfo(FP, EXECUTION_MSG, ON_FUNCTION_MSG, F.getNameStart());
Devang Patelabfbe3b2006-12-16 00:56:26 +00001173 dumpAnalysisSetInfo("Required", FP, AnUsage.getRequiredSet());
Devang Patel93a197c2006-12-14 00:08:04 +00001174
Devang Patelabfbe3b2006-12-16 00:56:26 +00001175 initializeAnalysisImpl(FP);
Devang Patelb8817b92006-12-14 00:59:42 +00001176
Devang Patelabfbe3b2006-12-16 00:56:26 +00001177 if (TheTimeInfo) TheTimeInfo->passStarted(FP);
Devang Patel9f3083e2006-11-15 19:39:54 +00001178 Changed |= FP->runOnFunction(F);
Devang Patelabfbe3b2006-12-16 00:56:26 +00001179 if (TheTimeInfo) TheTimeInfo->passEnded(FP);
Devang Patel93a197c2006-12-14 00:08:04 +00001180
Devang Patel003a5592007-03-05 20:01:30 +00001181 if (Changed)
Devang Pateld305c402007-08-10 18:29:32 +00001182 dumpPassInfo(FP, MODIFICATION_MSG, ON_FUNCTION_MSG, F.getNameStart());
Devang Patelabfbe3b2006-12-16 00:56:26 +00001183 dumpAnalysisSetInfo("Preserved", FP, AnUsage.getPreservedSet());
Devang Patel93a197c2006-12-14 00:08:04 +00001184
Devang Patela273d1c2007-07-19 18:02:32 +00001185 verifyPreservedAnalysis(FP);
Devang Patelabfbe3b2006-12-16 00:56:26 +00001186 removeNotPreservedAnalysis(FP);
1187 recordAvailableAnalysis(FP);
Devang Pateld305c402007-08-10 18:29:32 +00001188 removeDeadPasses(FP, F.getNameStart(), ON_FUNCTION_MSG);
Devang Patel9f3083e2006-11-15 19:39:54 +00001189 }
1190 return Changed;
1191}
1192
Devang Patel67d6a5e2006-12-19 19:46:59 +00001193bool FPPassManager::runOnModule(Module &M) {
Devang Patel9f3083e2006-11-15 19:39:54 +00001194
Devang Patel67d6a5e2006-12-19 19:46:59 +00001195 bool Changed = doInitialization(M);
Devang Patel67d6a5e2006-12-19 19:46:59 +00001196
1197 for(Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
1198 this->runOnFunction(*I);
1199
1200 return Changed |= doFinalization(M);
1201}
1202
1203inline bool FPPassManager::doInitialization(Module &M) {
Devang Patelff631ae2006-11-15 01:27:05 +00001204 bool Changed = false;
1205
Devang Patelabfbe3b2006-12-16 00:56:26 +00001206 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1207 FunctionPass *FP = getContainedPass(Index);
Devang Patelff631ae2006-11-15 01:27:05 +00001208 Changed |= FP->doInitialization(M);
1209 }
1210
1211 return Changed;
1212}
1213
Devang Patel67d6a5e2006-12-19 19:46:59 +00001214inline bool FPPassManager::doFinalization(Module &M) {
Devang Patelff631ae2006-11-15 01:27:05 +00001215 bool Changed = false;
1216
Devang Patelabfbe3b2006-12-16 00:56:26 +00001217 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1218 FunctionPass *FP = getContainedPass(Index);
Devang Patelff631ae2006-11-15 01:27:05 +00001219 Changed |= FP->doFinalization(M);
1220 }
1221
Devang Patelff631ae2006-11-15 01:27:05 +00001222 return Changed;
1223}
1224
Devang Patela1514cb2006-12-07 19:39:39 +00001225//===----------------------------------------------------------------------===//
Devang Patel67d6a5e2006-12-19 19:46:59 +00001226// MPPassManager implementation
Devang Patel05e1a972006-11-07 22:03:15 +00001227
Devang Patel05e1a972006-11-07 22:03:15 +00001228/// Execute all of the passes scheduled for execution by invoking
1229/// runOnModule method. Keep track of whether any of the passes modifies
1230/// the module, and if so, return true.
1231bool
Devang Patel67d6a5e2006-12-19 19:46:59 +00001232MPPassManager::runOnModule(Module &M) {
Devang Patel05e1a972006-11-07 22:03:15 +00001233 bool Changed = false;
Devang Patel050ec722006-11-14 01:23:29 +00001234
Devang Patelabfbe3b2006-12-16 00:56:26 +00001235 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1236 ModulePass *MP = getContainedPass(Index);
1237
Devang Patelf6d1d212006-12-14 00:25:06 +00001238 AnalysisUsage AnUsage;
Devang Patelabfbe3b2006-12-16 00:56:26 +00001239 MP->getAnalysisUsage(AnUsage);
Devang Patel93a197c2006-12-14 00:08:04 +00001240
Dan Gohman929391a2008-01-29 12:09:55 +00001241 dumpPassInfo(MP, EXECUTION_MSG, ON_MODULE_MSG,
1242 M.getModuleIdentifier().c_str());
Devang Patelabfbe3b2006-12-16 00:56:26 +00001243 dumpAnalysisSetInfo("Required", MP, AnUsage.getRequiredSet());
Devang Patel93a197c2006-12-14 00:08:04 +00001244
Devang Patelabfbe3b2006-12-16 00:56:26 +00001245 initializeAnalysisImpl(MP);
Devang Patelb8817b92006-12-14 00:59:42 +00001246
Devang Patelabfbe3b2006-12-16 00:56:26 +00001247 if (TheTimeInfo) TheTimeInfo->passStarted(MP);
Devang Patel05e1a972006-11-07 22:03:15 +00001248 Changed |= MP->runOnModule(M);
Devang Patelabfbe3b2006-12-16 00:56:26 +00001249 if (TheTimeInfo) TheTimeInfo->passEnded(MP);
Devang Patel93a197c2006-12-14 00:08:04 +00001250
Devang Patel003a5592007-03-05 20:01:30 +00001251 if (Changed)
Dan Gohman929391a2008-01-29 12:09:55 +00001252 dumpPassInfo(MP, MODIFICATION_MSG, ON_MODULE_MSG,
1253 M.getModuleIdentifier().c_str());
Devang Patelabfbe3b2006-12-16 00:56:26 +00001254 dumpAnalysisSetInfo("Preserved", MP, AnUsage.getPreservedSet());
Devang Patelf6d1d212006-12-14 00:25:06 +00001255
Devang Patela273d1c2007-07-19 18:02:32 +00001256 verifyPreservedAnalysis(MP);
Devang Patelabfbe3b2006-12-16 00:56:26 +00001257 removeNotPreservedAnalysis(MP);
1258 recordAvailableAnalysis(MP);
Devang Pateld305c402007-08-10 18:29:32 +00001259 removeDeadPasses(MP, M.getModuleIdentifier().c_str(), ON_MODULE_MSG);
Devang Patel05e1a972006-11-07 22:03:15 +00001260 }
1261 return Changed;
1262}
1263
Devang Patele64d3052007-04-16 20:12:57 +00001264/// Add RequiredPass into list of lower level passes required by pass P.
1265/// RequiredPass is run on the fly by Pass Manager when P requests it
1266/// through getAnalysis interface.
1267void MPPassManager::addLowerLevelRequiredPass(Pass *P, Pass *RequiredPass) {
1268
1269 assert (P->getPotentialPassManagerType() == PMT_ModulePassManager
1270 && "Unable to handle Pass that requires lower level Analysis pass");
1271 assert ((P->getPotentialPassManagerType() <
1272 RequiredPass->getPotentialPassManagerType())
1273 && "Unable to handle Pass that requires lower level Analysis pass");
1274
Devang Patel68f72b12007-04-26 17:50:19 +00001275 FunctionPassManagerImpl *FPP = OnTheFlyManagers[P];
Devang Patel69e9f6d2007-04-16 20:27:05 +00001276 if (!FPP) {
Devang Patel68f72b12007-04-26 17:50:19 +00001277 FPP = new FunctionPassManagerImpl(0);
1278 // FPP is the top level manager.
1279 FPP->setTopLevelManager(FPP);
1280
Devang Patel69e9f6d2007-04-16 20:27:05 +00001281 OnTheFlyManagers[P] = FPP;
1282 }
Devang Patel68f72b12007-04-26 17:50:19 +00001283 FPP->add(RequiredPass);
Devang Patel69e9f6d2007-04-16 20:27:05 +00001284
Devang Patel68f72b12007-04-26 17:50:19 +00001285 // Register P as the last user of RequiredPass.
Devang Patel8adae862007-07-20 18:04:54 +00001286 SmallVector<Pass *, 12> LU;
Devang Patel68f72b12007-04-26 17:50:19 +00001287 LU.push_back(RequiredPass);
1288 FPP->setLastUser(LU, P);
Devang Patele64d3052007-04-16 20:12:57 +00001289}
Devang Patel69e9f6d2007-04-16 20:27:05 +00001290
1291/// Return function pass corresponding to PassInfo PI, that is
1292/// required by module pass MP. Instantiate analysis pass, by using
1293/// its runOnFunction() for function F.
1294Pass* MPPassManager::getOnTheFlyPass(Pass *MP, const PassInfo *PI,
1295 Function &F) {
1296 AnalysisID AID = PI;
Devang Patel68f72b12007-04-26 17:50:19 +00001297 FunctionPassManagerImpl *FPP = OnTheFlyManagers[MP];
Devang Patel69e9f6d2007-04-16 20:27:05 +00001298 assert (FPP && "Unable to find on the fly pass");
1299
Devang Patel68f72b12007-04-26 17:50:19 +00001300 FPP->run(F);
1301 return (dynamic_cast<PMTopLevelManager *>(FPP))->findAnalysisPass(AID);
Devang Patel69e9f6d2007-04-16 20:27:05 +00001302}
1303
1304
Devang Patela1514cb2006-12-07 19:39:39 +00001305//===----------------------------------------------------------------------===//
1306// PassManagerImpl implementation
Devang Patelab97cf42006-12-13 00:09:23 +00001307//
Devang Patelc290c8a2006-11-07 22:23:34 +00001308/// run - Execute all of the passes scheduled for execution. Keep track of
1309/// whether any of the passes modifies the module, and if so, return true.
Devang Patel67d6a5e2006-12-19 19:46:59 +00001310bool PassManagerImpl::run(Module &M) {
Devang Patelc290c8a2006-11-07 22:23:34 +00001311
Devang Patelc290c8a2006-11-07 22:23:34 +00001312 bool Changed = false;
Devang Patelf1567a52006-12-13 20:03:48 +00001313
Devang Patelb8817b92006-12-14 00:59:42 +00001314 TimingInfo::createTheTimeInfo();
1315
Devang Patelcfd70c42006-12-13 22:10:00 +00001316 dumpArguments();
Devang Patel67d6a5e2006-12-19 19:46:59 +00001317 dumpPasses();
Devang Patelf1567a52006-12-13 20:03:48 +00001318
Devang Patele3068402006-12-21 00:16:50 +00001319 initializeAllAnalysisInfo();
Devang Patel67d6a5e2006-12-19 19:46:59 +00001320 for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index) {
1321 MPPassManager *MP = getContainedManager(Index);
Devang Patel5bbeb492006-12-08 22:47:25 +00001322 Changed |= MP->runOnModule(M);
Devang Patelc290c8a2006-11-07 22:23:34 +00001323 }
1324 return Changed;
1325}
Devang Patel376fefa2006-11-08 10:29:57 +00001326
Devang Patela1514cb2006-12-07 19:39:39 +00001327//===----------------------------------------------------------------------===//
1328// PassManager implementation
1329
Devang Patel376fefa2006-11-08 10:29:57 +00001330/// Create new pass manager
Devang Patelb67904d2006-12-13 02:36:01 +00001331PassManager::PassManager() {
Devang Patel67d6a5e2006-12-19 19:46:59 +00001332 PM = new PassManagerImpl(0);
Devang Patel9c6290c2006-12-12 22:02:16 +00001333 // PM is the top level manager
1334 PM->setTopLevelManager(PM);
Devang Patel376fefa2006-11-08 10:29:57 +00001335}
1336
Devang Patelb67904d2006-12-13 02:36:01 +00001337PassManager::~PassManager() {
Devang Patelab97cf42006-12-13 00:09:23 +00001338 delete PM;
1339}
1340
Devang Patel376fefa2006-11-08 10:29:57 +00001341/// add - Add a pass to the queue of passes to run. This passes ownership of
1342/// the Pass to the PassManager. When the PassManager is destroyed, the pass
1343/// will be destroyed as well, so there is no need to delete the pass. This
1344/// implies that all passes MUST be allocated with 'new'.
1345void
Devang Patelb67904d2006-12-13 02:36:01 +00001346PassManager::add(Pass *P) {
Devang Patel376fefa2006-11-08 10:29:57 +00001347 PM->add(P);
1348}
1349
1350/// run - Execute all of the passes scheduled for execution. Keep track of
1351/// whether any of the passes modifies the module, and if so, return true.
1352bool
Devang Patelb67904d2006-12-13 02:36:01 +00001353PassManager::run(Module &M) {
Devang Patel376fefa2006-11-08 10:29:57 +00001354 return PM->run(M);
1355}
1356
Devang Patelb8817b92006-12-14 00:59:42 +00001357//===----------------------------------------------------------------------===//
1358// TimingInfo Class - This class is used to calculate information about the
1359// amount of time each pass takes to execute. This only happens with
1360// -time-passes is enabled on the command line.
1361//
1362bool llvm::TimePassesIsEnabled = false;
1363static cl::opt<bool,true>
1364EnableTiming("time-passes", cl::location(TimePassesIsEnabled),
1365 cl::desc("Time each pass, printing elapsed time for each on exit"));
1366
1367// createTheTimeInfo - This method either initializes the TheTimeInfo pointer to
1368// a non null value (if the -time-passes option is enabled) or it leaves it
1369// null. It may be called multiple times.
1370void TimingInfo::createTheTimeInfo() {
1371 if (!TimePassesIsEnabled || TheTimeInfo) return;
1372
1373 // Constructed the first time this is called, iff -time-passes is enabled.
1374 // This guarantees that the object will be constructed before static globals,
1375 // thus it will be destroyed before them.
1376 static ManagedStatic<TimingInfo> TTI;
1377 TheTimeInfo = &*TTI;
1378}
1379
Devang Patel1c3633e2007-01-29 23:10:37 +00001380/// If TimingInfo is enabled then start pass timer.
1381void StartPassTimer(Pass *P) {
1382 if (TheTimeInfo)
1383 TheTimeInfo->passStarted(P);
1384}
1385
1386/// If TimingInfo is enabled then stop pass timer.
1387void StopPassTimer(Pass *P) {
1388 if (TheTimeInfo)
1389 TheTimeInfo->passEnded(P);
1390}
1391
Devang Patel1c56a632007-01-08 19:29:38 +00001392//===----------------------------------------------------------------------===//
1393// PMStack implementation
1394//
Devang Patelad98d232007-01-11 22:15:30 +00001395
Devang Patel1c56a632007-01-08 19:29:38 +00001396// Pop Pass Manager from the stack and clear its analysis info.
1397void PMStack::pop() {
1398
1399 PMDataManager *Top = this->top();
1400 Top->initializeAnalysisInfo();
1401
1402 S.pop_back();
1403}
1404
1405// Push PM on the stack and set its top level manager.
Dan Gohman11eecd62008-03-13 01:21:31 +00001406void PMStack::push(PMDataManager *PM) {
Devang Patel1c56a632007-01-08 19:29:38 +00001407
Devang Patel15701b52007-01-11 00:19:00 +00001408 PMDataManager *Top = NULL;
Devang Patel15701b52007-01-11 00:19:00 +00001409 assert (PM && "Unable to push. Pass Manager expected");
Devang Patel1c56a632007-01-08 19:29:38 +00001410
Devang Patel15701b52007-01-11 00:19:00 +00001411 if (this->empty()) {
1412 Top = PM;
1413 }
1414 else {
1415 Top = this->top();
1416 PMTopLevelManager *TPM = Top->getTopLevelManager();
1417
1418 assert (TPM && "Unable to find top level manager");
1419 TPM->addIndirectPassManager(PM);
1420 PM->setTopLevelManager(TPM);
1421 }
1422
Devang Patel15701b52007-01-11 00:19:00 +00001423 S.push_back(PM);
1424}
1425
1426// Dump content of the pass manager stack.
1427void PMStack::dump() {
1428 for(std::deque<PMDataManager *>::iterator I = S.begin(),
1429 E = S.end(); I != E; ++I) {
1430 Pass *P = dynamic_cast<Pass *>(*I);
Chris Lattnerde2aa652007-08-10 06:22:25 +00001431 printf("%s ", P->getPassName());
Devang Patel15701b52007-01-11 00:19:00 +00001432 }
1433 if (!S.empty())
Chris Lattnerde2aa652007-08-10 06:22:25 +00001434 printf("\n");
Devang Patel1c56a632007-01-08 19:29:38 +00001435}
1436
Devang Patel1c56a632007-01-08 19:29:38 +00001437/// Find appropriate Module Pass Manager in the PM Stack and
1438/// add self into that manager.
Devang Pateldffca632007-01-17 20:30:17 +00001439void ModulePass::assignPassManager(PMStack &PMS,
Anton Korobeynikovfb801512007-04-16 18:10:23 +00001440 PassManagerType PreferredType) {
Devang Patel1c56a632007-01-08 19:29:38 +00001441
Devang Patel1c56a632007-01-08 19:29:38 +00001442 // Find Module Pass Manager
1443 while(!PMS.empty()) {
Devang Patel23f8aa92007-01-17 21:19:23 +00001444 PassManagerType TopPMType = PMS.top()->getPassManagerType();
1445 if (TopPMType == PreferredType)
1446 break; // We found desired pass manager
1447 else if (TopPMType > PMT_ModulePassManager)
Devang Patel1c56a632007-01-08 19:29:38 +00001448 PMS.pop(); // Pop children pass managers
Devang Patelac99eca2007-01-11 19:59:06 +00001449 else
1450 break;
Devang Patel1c56a632007-01-08 19:29:38 +00001451 }
1452
Devang Patel23f8aa92007-01-17 21:19:23 +00001453 PMS.top()->add(this);
Devang Patel1c56a632007-01-08 19:29:38 +00001454}
1455
Devang Patel3312f752007-01-16 21:43:18 +00001456/// Find appropriate Function Pass Manager or Call Graph Pass Manager
1457/// in the PM Stack and add self into that manager.
Devang Pateldffca632007-01-17 20:30:17 +00001458void FunctionPass::assignPassManager(PMStack &PMS,
Anton Korobeynikovfb801512007-04-16 18:10:23 +00001459 PassManagerType PreferredType) {
Devang Patel1c56a632007-01-08 19:29:38 +00001460
Devang Patel15701b52007-01-11 00:19:00 +00001461 // Find Module Pass Manager (TODO : Or Call Graph Pass Manager)
Devang Patel1c56a632007-01-08 19:29:38 +00001462 while(!PMS.empty()) {
Devang Patelac99eca2007-01-11 19:59:06 +00001463 if (PMS.top()->getPassManagerType() > PMT_FunctionPassManager)
1464 PMS.pop();
Devang Patel1c56a632007-01-08 19:29:38 +00001465 else
Devang Patel3312f752007-01-16 21:43:18 +00001466 break;
1467 }
1468 FPPassManager *FPP = dynamic_cast<FPPassManager *>(PMS.top());
1469
1470 // Create new Function Pass Manager
1471 if (!FPP) {
1472 assert(!PMS.empty() && "Unable to create Function Pass Manager");
1473 PMDataManager *PMD = PMS.top();
1474
1475 // [1] Create new Function Pass Manager
1476 FPP = new FPPassManager(PMD->getDepth() + 1);
Devang Patelcbbf2912008-03-20 01:09:53 +00001477 FPP->populateInheritedAnalysis(PMS);
Devang Patel3312f752007-01-16 21:43:18 +00001478
1479 // [2] Set up new manager's top level manager
1480 PMTopLevelManager *TPM = PMD->getTopLevelManager();
1481 TPM->addIndirectPassManager(FPP);
1482
1483 // [3] Assign manager to manage this new manager. This may create
1484 // and push new managers into PMS
Devang Pateldffca632007-01-17 20:30:17 +00001485
1486 // If Call Graph Pass Manager is active then use it to manage
1487 // this new Function Pass manager.
1488 if (PMD->getPassManagerType() == PMT_CallGraphPassManager)
Dan Gohman565df952008-03-13 02:08:36 +00001489 FPP->assignPassManager(PMS, PMT_CallGraphPassManager);
Devang Pateldffca632007-01-17 20:30:17 +00001490 else
Dan Gohman565df952008-03-13 02:08:36 +00001491 FPP->assignPassManager(PMS);
Devang Patel3312f752007-01-16 21:43:18 +00001492
1493 // [4] Push new manager into PMS
1494 PMS.push(FPP);
Devang Patel1c56a632007-01-08 19:29:38 +00001495 }
1496
Devang Patel3312f752007-01-16 21:43:18 +00001497 // Assign FPP as the manager of this pass.
1498 FPP->add(this);
Devang Patel1c56a632007-01-08 19:29:38 +00001499}
1500
Devang Patel3312f752007-01-16 21:43:18 +00001501/// Find appropriate Basic Pass Manager or Call Graph Pass Manager
Devang Patel1c56a632007-01-08 19:29:38 +00001502/// in the PM Stack and add self into that manager.
Devang Pateldffca632007-01-17 20:30:17 +00001503void BasicBlockPass::assignPassManager(PMStack &PMS,
Anton Korobeynikovfb801512007-04-16 18:10:23 +00001504 PassManagerType PreferredType) {
Devang Patel1c56a632007-01-08 19:29:38 +00001505
1506 BBPassManager *BBP = NULL;
1507
Devang Patel15701b52007-01-11 00:19:00 +00001508 // Basic Pass Manager is a leaf pass manager. It does not handle
1509 // any other pass manager.
Chris Lattnerde2aa652007-08-10 06:22:25 +00001510 if (!PMS.empty())
Devang Patel1c56a632007-01-08 19:29:38 +00001511 BBP = dynamic_cast<BBPassManager *>(PMS.top());
Devang Patel1c56a632007-01-08 19:29:38 +00001512
Devang Patel3312f752007-01-16 21:43:18 +00001513 // If leaf manager is not Basic Block Pass manager then create new
1514 // basic Block Pass manager.
Devang Patel15701b52007-01-11 00:19:00 +00001515
Devang Patel3312f752007-01-16 21:43:18 +00001516 if (!BBP) {
1517 assert(!PMS.empty() && "Unable to create BasicBlock Pass Manager");
1518 PMDataManager *PMD = PMS.top();
1519
1520 // [1] Create new Basic Block Manager
1521 BBP = new BBPassManager(PMD->getDepth() + 1);
1522
1523 // [2] Set up new manager's top level manager
1524 // Basic Block Pass Manager does not live by itself
1525 PMTopLevelManager *TPM = PMD->getTopLevelManager();
1526 TPM->addIndirectPassManager(BBP);
1527
Devang Patel15701b52007-01-11 00:19:00 +00001528 // [3] Assign manager to manage this new manager. This may create
1529 // and push new managers into PMS
Dan Gohman565df952008-03-13 02:08:36 +00001530 BBP->assignPassManager(PMS);
Devang Patel15701b52007-01-11 00:19:00 +00001531
Devang Patel3312f752007-01-16 21:43:18 +00001532 // [4] Push new manager into PMS
1533 PMS.push(BBP);
1534 }
Devang Patel1c56a632007-01-08 19:29:38 +00001535
Devang Patel3312f752007-01-16 21:43:18 +00001536 // Assign BBP as the manager of this pass.
1537 BBP->add(this);
Devang Patel1c56a632007-01-08 19:29:38 +00001538}
1539
Dan Gohmand3a20c92008-03-11 16:41:42 +00001540PassManagerBase::~PassManagerBase() {}
Gordon Henriksen878114b2008-03-16 04:20:44 +00001541
1542/*===-- C Bindings --------------------------------------------------------===*/
1543
1544LLVMPassManagerRef LLVMCreatePassManager() {
1545 return wrap(new PassManager());
1546}
1547
1548LLVMPassManagerRef LLVMCreateFunctionPassManager(LLVMModuleProviderRef P) {
1549 return wrap(new FunctionPassManager(unwrap(P)));
1550}
1551
1552int LLVMRunPassManager(LLVMPassManagerRef PM, LLVMModuleRef M) {
1553 return unwrap<PassManager>(PM)->run(*unwrap(M));
1554}
1555
1556int LLVMInitializeFunctionPassManager(LLVMPassManagerRef FPM) {
1557 return unwrap<FunctionPassManager>(FPM)->doInitialization();
1558}
1559
1560int LLVMRunFunctionPassManager(LLVMPassManagerRef FPM, LLVMValueRef F) {
1561 return unwrap<FunctionPassManager>(FPM)->run(*unwrap<Function>(F));
1562}
1563
1564int LLVMFinalizeFunctionPassManager(LLVMPassManagerRef FPM) {
1565 return unwrap<FunctionPassManager>(FPM)->doFinalization();
1566}
1567
1568void LLVMDisposePassManager(LLVMPassManagerRef PM) {
1569 delete unwrap(PM);
1570}