blob: 688dfee195555a709dbc80ce7338b9061bcb97de [file] [log] [blame]
Devang Patel6e5a1132006-11-07 21:31:57 +00001//===- PassManager.cpp - LLVM Pass Infrastructure Implementation ----------===//
2//
3// The LLVM Compiler Infrastructure
4//
Devang Patelca58e352006-11-08 10:05:38 +00005// This file was developed by Devang Patel and is distributed under
Devang Patel6e5a1132006-11-07 21:31:57 +00006// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the LLVM Pass Manager infrastructure.
11//
12//===----------------------------------------------------------------------===//
13
14
15#include "llvm/PassManager.h"
Devang Patel6e5a1132006-11-07 21:31:57 +000016#include "llvm/Module.h"
Devang Patelff631ae2006-11-15 01:27:05 +000017#include "llvm/ModuleProvider.h"
Bill Wendlingdfc91892006-11-28 02:09:03 +000018#include "llvm/Support/Streams.h"
Devang Patela9844592006-11-11 01:31:05 +000019#include <vector>
Devang Patelf60b5d92006-11-14 01:59:59 +000020#include <map>
Devang Patel6e5a1132006-11-07 21:31:57 +000021using namespace llvm;
22
Devang Patel6fea2852006-12-07 18:23:30 +000023//===----------------------------------------------------------------------===//
24// Overview:
25// The Pass Manager Infrastructure manages passes. It's responsibilities are:
26//
27// o Manage optimization pass execution order
28// o Make required Analysis information available before pass P is run
29// o Release memory occupied by dead passes
30// o If Analysis information is dirtied by a pass then regenerate Analysis
31// information before it is consumed by another pass.
32//
33// Pass Manager Infrastructure uses multipe pass managers. They are PassManager,
34// FunctionPassManager, ModulePassManager, BasicBlockPassManager. This class
35// hierarcy uses multiple inheritance but pass managers do not derive from
36// another pass manager.
37//
38// PassManager and FunctionPassManager are two top level pass manager that
39// represents the external interface of this entire pass manager infrastucture.
40//
41// Important classes :
42//
43// [o] class PMTopLevelManager;
44//
45// Two top level managers, PassManager and FunctionPassManager, derive from
46// PMTopLevelManager. PMTopLevelManager manages information used by top level
47// managers such as last user info.
48//
49// [o] class PMDataManager;
50//
51// PMDataManager manages information, e.g. list of available analysis info,
52// used by a pass manager to manage execution order of passes. It also provides
53// a place to implement common pass manager APIs. All pass managers derive from
54// PMDataManager.
55//
56// [o] class BasicBlockPassManager : public FunctionPass, public PMDataManager;
57//
58// BasicBlockPassManager manages BasicBlockPasses.
59//
60// [o] class FunctionPassManager;
61//
62// This is a external interface used by JIT to manage FunctionPasses. This
63// interface relies on FunctionPassManagerImpl to do all the tasks.
64//
65// [o] class FunctionPassManagerImpl : public ModulePass, PMDataManager,
66// public PMTopLevelManager;
67//
68// FunctionPassManagerImpl is a top level manager. It manages FunctionPasses
69// and BasicBlockPassManagers.
70//
71// [o] class ModulePassManager : public Pass, public PMDataManager;
72//
73// ModulePassManager manages ModulePasses and FunctionPassManagerImpls.
74//
75// [o] class PassManager;
76//
77// This is a external interface used by various tools to manages passes. It
78// relies on PassManagerImpl to do all the tasks.
79//
80// [o] class PassManagerImpl : public Pass, public PMDataManager,
81// public PMDTopLevelManager
82//
83// PassManagerImpl is a top level pass manager responsible for managing
84// ModulePassManagers.
85//===----------------------------------------------------------------------===//
86
Devang Patelca58e352006-11-08 10:05:38 +000087namespace llvm {
88
Devang Patelf33f3eb2006-12-07 19:21:29 +000089//===----------------------------------------------------------------------===//
90// PMTopLevelManager
91//
92/// PMTopLevelManager manages LastUser info and collects common APIs used by
93/// top level pass managers.
94class PMTopLevelManager {
95
96public:
97
98 inline std::vector<Pass *>::iterator passManagersBegin() {
99 return PassManagers.begin();
100 }
101
102 inline std::vector<Pass *>::iterator passManagersEnd() {
103 return PassManagers.end();
104 }
105
106 /// Schedule pass P for execution. Make sure that passes required by
107 /// P are run before P is run. Update analysis info maintained by
108 /// the manager. Remove dead passes. This is a recursive function.
Devang Pateldf6c9ae2006-12-08 22:34:02 +0000109 void schedulePass(Pass *P);
Devang Patelf33f3eb2006-12-07 19:21:29 +0000110
111 /// This is implemented by top level pass manager and used by
112 /// schedulePass() to add analysis info passes that are not available.
113 virtual void addTopLevelPass(Pass *P) = 0;
114
115 /// Set pass P as the last user of the given analysis passes.
116 void setLastUser(std::vector<Pass *> &AnalysisPasses, Pass *P);
117
118 /// Collect passes whose last user is P
119 void collectLastUses(std::vector<Pass *> &LastUses, Pass *P);
120
Devang Patel640c5bb2006-12-08 22:30:11 +0000121 /// Find the pass that implements Analysis AID. Search immutable
122 /// passes and all pass managers. If desired pass is not found
123 /// then return NULL.
124 Pass *findAnalysisPass(AnalysisID AID);
125
Devang Patelf33f3eb2006-12-07 19:21:29 +0000126 virtual ~PMTopLevelManager() {
127 PassManagers.clear();
128 }
129
Devang Patele0eb9d82006-12-07 20:51:18 +0000130 /// Add immutable pass and initialize it.
131 inline void addImmutablePass(ImmutablePass *P) {
132 P->initializePass();
133 ImmutablePasses.push_back(P);
134 }
135
136 inline std::vector<ImmutablePass *>& getImmutablePasses() {
137 return ImmutablePasses;
138 }
139
Devang Patel5bbeb492006-12-08 22:47:25 +0000140 void addPassManager(Pass *Manager) {
141 PassManagers.push_back(Manager);
142 }
143
Devang Patelaf1fca52006-12-08 23:11:43 +0000144 // Add Manager into the list of managers that are not directly
145 // maintained by this top level pass manager
146 void addOtherPassManager(Pass *Manager) {
147 OtherPassManagers.push_back(Manager);
148 }
149
Devang Patelf33f3eb2006-12-07 19:21:29 +0000150private:
151
152 /// Collection of pass managers
153 std::vector<Pass *> PassManagers;
154
Devang Patelaf1fca52006-12-08 23:11:43 +0000155 /// Collection of pass managers that are not directly maintained
156 /// by this pass manager
157 std::vector<Pass *> OtherPassManagers;
158
Devang Patelf33f3eb2006-12-07 19:21:29 +0000159 // Map to keep track of last user of the analysis pass.
160 // LastUser->second is the last user of Lastuser->first.
161 std::map<Pass *, Pass *> LastUser;
Devang Patele0eb9d82006-12-07 20:51:18 +0000162
163 /// Immutable passes are managed by top level manager.
164 std::vector<ImmutablePass *> ImmutablePasses;
Devang Patelf33f3eb2006-12-07 19:21:29 +0000165};
166
167/// Set pass P as the last user of the given analysis passes.
168void PMTopLevelManager::setLastUser(std::vector<Pass *> &AnalysisPasses,
169 Pass *P) {
170
171 for (std::vector<Pass *>::iterator I = AnalysisPasses.begin(),
172 E = AnalysisPasses.end(); I != E; ++I) {
173 Pass *AP = *I;
174 LastUser[AP] = P;
175 // If AP is the last user of other passes then make P last user of
176 // such passes.
177 for (std::map<Pass *, Pass *>::iterator LUI = LastUser.begin(),
178 LUE = LastUser.end(); LUI != LUE; ++LUI) {
179 if (LUI->second == AP)
180 LastUser[LUI->first] = P;
181 }
182 }
183
184}
185
186/// Collect passes whose last user is P
187void PMTopLevelManager::collectLastUses(std::vector<Pass *> &LastUses,
188 Pass *P) {
189 for (std::map<Pass *, Pass *>::iterator LUI = LastUser.begin(),
190 LUE = LastUser.end(); LUI != LUE; ++LUI)
191 if (LUI->second == P)
192 LastUses.push_back(LUI->first);
193}
194
Devang Patelde124182006-12-07 21:10:57 +0000195/// Schedule pass P for execution. Make sure that passes required by
196/// P are run before P is run. Update analysis info maintained by
197/// the manager. Remove dead passes. This is a recursive function.
Devang Pateldf6c9ae2006-12-08 22:34:02 +0000198void PMTopLevelManager::schedulePass(Pass *P) {
Devang Patelde124182006-12-07 21:10:57 +0000199
200 // TODO : Allocate function manager for this pass, other wise required set
201 // may be inserted into previous function manager
202
203 AnalysisUsage AnUsage;
204 P->getAnalysisUsage(AnUsage);
205 const std::vector<AnalysisID> &RequiredSet = AnUsage.getRequiredSet();
206 for (std::vector<AnalysisID>::const_iterator I = RequiredSet.begin(),
207 E = RequiredSet.end(); I != E; ++I) {
208
Devang Patel640c5bb2006-12-08 22:30:11 +0000209 Pass *AnalysisPass = findAnalysisPass(*I);
Devang Patelde124182006-12-07 21:10:57 +0000210 if (!AnalysisPass) {
211 // Schedule this analysis run first.
212 AnalysisPass = (*I)->createPass();
Devang Pateldf6c9ae2006-12-08 22:34:02 +0000213 schedulePass(AnalysisPass);
Devang Patelde124182006-12-07 21:10:57 +0000214 }
215 }
216
217 // Now all required passes are available.
218 addTopLevelPass(P);
219}
220
Devang Patel640c5bb2006-12-08 22:30:11 +0000221/// Find the pass that implements Analysis AID. Search immutable
222/// passes and all pass managers. If desired pass is not found
223/// then return NULL.
224Pass *PMTopLevelManager::findAnalysisPass(AnalysisID AID) {
225
226 Pass *P = NULL;
227 for (std::vector<ImmutablePass *>::iterator I = ImmutablePasses.begin(),
228 E = ImmutablePasses.end(); P == NULL && I != E; ++I) {
229 const PassInfo *PI = (*I)->getPassInfo();
230 if (PI == AID)
231 P = *I;
232
233 // If Pass not found then check the interfaces implemented by Immutable Pass
234 if (!P) {
235 const std::vector<const PassInfo*> &ImmPI =
236 PI->getInterfacesImplemented();
237 for (unsigned Index = 0, End = ImmPI.size();
238 P == NULL && Index != End; ++Index)
239 if (ImmPI[Index] == AID)
240 P = *I;
241 }
242 }
243
Devang Patelaf1fca52006-12-08 23:11:43 +0000244 // Check pass managers
Devang Patel640c5bb2006-12-08 22:30:11 +0000245 for (std::vector<Pass *>::iterator I = PassManagers.begin(),
246 E = PassManagers.end(); P == NULL && I != E; ++I)
247 P = NULL; // FIXME: (*I)->findAnalysisPass(AID, false /* Search downward */);
248
Devang Patelaf1fca52006-12-08 23:11:43 +0000249 // Check other pass managers
250 for (std::vector<Pass *>::iterator I = OtherPassManagers.begin(),
251 E = OtherPassManagers.end(); P == NULL && I != E; ++I)
252 P = NULL; // FIXME: (*I)->findAnalysisPass(AID, false /* Search downward */);
253
Devang Patel640c5bb2006-12-08 22:30:11 +0000254 return P;
255}
256
Devang Patelf3827bc2006-12-07 19:54:15 +0000257//===----------------------------------------------------------------------===//
258// PMDataManager
Devang Patelf33f3eb2006-12-07 19:21:29 +0000259
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000260/// PMDataManager provides the common place to manage the analysis data
261/// used by pass managers.
262class PMDataManager {
Devang Patela9844592006-11-11 01:31:05 +0000263
264public:
265
Devang Patel4c36e6b2006-12-07 23:24:58 +0000266 PMDataManager(int D) : TPM(NULL), Depth(D) {
Devang Patelf3827bc2006-12-07 19:54:15 +0000267 initializeAnalysisInfo();
268 }
269
Devang Patela9844592006-11-11 01:31:05 +0000270 /// Return true IFF pass P's required analysis set does not required new
271 /// manager.
272 bool manageablePass(Pass *P);
273
Devang Patela9844592006-11-11 01:31:05 +0000274 /// Augment AvailableAnalysis by adding analysis made available by pass P.
Devang Patele9976aa2006-12-07 19:33:53 +0000275 void recordAvailableAnalysis(Pass *P);
Devang Patela9844592006-11-11 01:31:05 +0000276
Devang Patela9844592006-11-11 01:31:05 +0000277 /// Remove Analysis that is not preserved by the pass
278 void removeNotPreservedAnalysis(Pass *P);
279
280 /// Remove dead passes
Devang Patelca189262006-11-14 03:05:08 +0000281 void removeDeadPasses(Pass *P);
Devang Patela9844592006-11-11 01:31:05 +0000282
Devang Patel8f677ce2006-12-07 18:47:25 +0000283 /// Add pass P into the PassVector. Update
Devang Patel90b05e02006-11-11 02:04:19 +0000284 /// AvailableAnalysis appropriately if ProcessAnalysis is true.
285 void addPassToManager (Pass *P, bool ProcessAnalysis = true);
Devang Patel8cad70d2006-11-11 01:51:02 +0000286
Devang Patel1d6267c2006-12-07 23:05:44 +0000287 /// Initialize available analysis information.
Devang Patela6b6dcb2006-12-07 18:41:09 +0000288 void initializeAnalysisInfo() {
Devang Patelbc03f132006-12-07 23:55:10 +0000289 ForcedLastUses.clear();
Devang Patel050ec722006-11-14 01:23:29 +0000290 AvailableAnalysis.clear();
Devang Patelb3900322006-12-07 21:02:08 +0000291
292 // Include immutable passes into AvailableAnalysis vector.
293 std::vector<ImmutablePass *> &ImmutablePasses = TPM->getImmutablePasses();
294 for (std::vector<ImmutablePass *>::iterator I = ImmutablePasses.begin(),
295 E = ImmutablePasses.end(); I != E; ++I)
296 recordAvailableAnalysis(*I);
Devang Patel050ec722006-11-14 01:23:29 +0000297 }
298
Devang Patel1d6267c2006-12-07 23:05:44 +0000299 /// Populate RequiredPasses with the analysis pass that are required by
300 /// pass P.
301 void collectRequiredAnalysisPasses(std::vector<Pass *> &RequiredPasses,
302 Pass *P);
303
304 /// All Required analyses should be available to the pass as it runs! Here
305 /// we fill in the AnalysisImpls member of the pass so that it can
306 /// successfully use the getAnalysis() method to retrieve the
307 /// implementations it needs.
308 void initializeAnalysisImpl(Pass *P);
Devang Patelf60b5d92006-11-14 01:59:59 +0000309
Devang Patel640c5bb2006-12-08 22:30:11 +0000310 /// Find the pass that implements Analysis AID. If desired pass is not found
311 /// then return NULL.
312 Pass *findAnalysisPass(AnalysisID AID, bool Direction);
313
Devang Patel8cad70d2006-11-11 01:51:02 +0000314 inline std::vector<Pass *>::iterator passVectorBegin() {
315 return PassVector.begin();
316 }
317
318 inline std::vector<Pass *>::iterator passVectorEnd() {
319 return PassVector.end();
320 }
321
Devang Patelf3827bc2006-12-07 19:54:15 +0000322 // Access toplevel manager
323 PMTopLevelManager *getTopLevelManager() { return TPM; }
324 void setTopLevelManager(PMTopLevelManager *T) { TPM = T; }
325
Devang Patel4c36e6b2006-12-07 23:24:58 +0000326 unsigned getDepth() { return Depth; }
327
Devang Patelbc03f132006-12-07 23:55:10 +0000328protected:
329
330 // Collection of pass whose last user asked this manager to claim
331 // last use. If a FunctionPass F is the last user of ModulePass info M
332 // then the F's manager, not F, records itself as a last user of M.
333 std::vector<Pass *> ForcedLastUses;
334
335 // Top level manager.
336 // TODO : Make it a reference.
337 PMTopLevelManager *TPM;
338
Devang Patela9844592006-11-11 01:31:05 +0000339private:
Devang Pateldafa4dd2006-11-14 00:03:04 +0000340 // Set of available Analysis. This information is used while scheduling
341 // pass. If a pass requires an analysis which is not not available then
342 // equired analysis pass is scheduled to run before the pass itself is
343 // scheduled to run.
Devang Patelf60b5d92006-11-14 01:59:59 +0000344 std::map<AnalysisID, Pass*> AvailableAnalysis;
Devang Patel8cad70d2006-11-11 01:51:02 +0000345
346 // Collection of pass that are managed by this manager
347 std::vector<Pass *> PassVector;
Devang Patelf3827bc2006-12-07 19:54:15 +0000348
Devang Patel4c36e6b2006-12-07 23:24:58 +0000349 unsigned Depth;
Devang Patela9844592006-11-11 01:31:05 +0000350};
351
Devang Patelca58e352006-11-08 10:05:38 +0000352/// BasicBlockPassManager_New manages BasicBlockPass. It batches all the
353/// pass together and sequence them to process one basic block before
354/// processing next basic block.
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000355class BasicBlockPassManager_New : public PMDataManager,
Devang Patel42add712006-11-15 01:11:27 +0000356 public FunctionPass {
Devang Patelca58e352006-11-08 10:05:38 +0000357
358public:
Devang Patel4c36e6b2006-12-07 23:24:58 +0000359 BasicBlockPassManager_New(int D) : PMDataManager(D) { }
Devang Patelca58e352006-11-08 10:05:38 +0000360
361 /// Add a pass into a passmanager queue.
362 bool addPass(Pass *p);
363
364 /// Execute all of the passes scheduled for execution. Keep track of
365 /// whether any of the passes modifies the function, and if so, return true.
366 bool runOnFunction(Function &F);
367
Devang Patelf9d96b92006-12-07 19:57:52 +0000368 /// Pass Manager itself does not invalidate any analysis info.
369 void getAnalysisUsage(AnalysisUsage &Info) const {
370 Info.setPreservesAll();
371 }
372
Devang Patel475c4532006-12-08 00:59:05 +0000373 bool doInitialization(Module &M);
374 bool doInitialization(Function &F);
375 bool doFinalization(Module &M);
376 bool doFinalization(Function &F);
377
Devang Patelca58e352006-11-08 10:05:38 +0000378};
379
Devang Patel4e12f862006-11-08 10:44:40 +0000380/// FunctionPassManagerImpl_New manages FunctionPasses and BasicBlockPassManagers.
Devang Patelca58e352006-11-08 10:05:38 +0000381/// It batches all function passes and basic block pass managers together and
382/// sequence them to process one function at a time before processing next
383/// function.
Devang Patelabcd1d32006-12-07 21:27:23 +0000384class FunctionPassManagerImpl_New : public ModulePass,
385 public PMDataManager,
386 public PMTopLevelManager {
Devang Patelca58e352006-11-08 10:05:38 +0000387public:
Devang Patel4c36e6b2006-12-07 23:24:58 +0000388 FunctionPassManagerImpl_New(ModuleProvider *P, int D) :
389 PMDataManager(D) { /* TODO */ }
390 FunctionPassManagerImpl_New(int D) : PMDataManager(D) {
Devang Patelca58e352006-11-08 10:05:38 +0000391 activeBBPassManager = NULL;
392 }
Devang Patel4e12f862006-11-08 10:44:40 +0000393 ~FunctionPassManagerImpl_New() { /* TODO */ };
Devang Patelca58e352006-11-08 10:05:38 +0000394
Devang Patelabcd1d32006-12-07 21:27:23 +0000395 inline void addTopLevelPass(Pass *P) {
Devang Pateld440cd92006-12-08 23:53:00 +0000396
Devang Patelfa971cd2006-12-08 23:57:43 +0000397 if (ImmutablePass *IP = dynamic_cast<ImmutablePass *> (P)) {
Devang Pateld440cd92006-12-08 23:53:00 +0000398
399 // P is a immutable pass then it will be managed by this
400 // top level manager. Set up analysis resolver to connect them.
401 AnalysisResolver_New *AR = new AnalysisResolver_New(*this);
402 P->setResolver(AR);
Devang Patelfa971cd2006-12-08 23:57:43 +0000403 addImmutablePass(IP);
404 }
405 else
406 addPass(P);
Devang Patelabcd1d32006-12-07 21:27:23 +0000407 }
408
Devang Patelca58e352006-11-08 10:05:38 +0000409 /// add - Add a pass to the queue of passes to run. This passes
410 /// ownership of the Pass to the PassManager. When the
411 /// PassManager_X is destroyed, the pass will be destroyed as well, so
412 /// there is no need to delete the pass. (TODO delete passes.)
413 /// This implies that all passes MUST be allocated with 'new'.
Devang Patel31217af2006-12-07 21:32:57 +0000414 void add(Pass *P) {
Devang Pateldf6c9ae2006-12-08 22:34:02 +0000415 schedulePass(P);
Devang Patel31217af2006-12-07 21:32:57 +0000416 }
Devang Patelca58e352006-11-08 10:05:38 +0000417
418 /// Add pass into the pass manager queue.
419 bool addPass(Pass *P);
420
421 /// Execute all of the passes scheduled for execution. Keep
422 /// track of whether any of the passes modifies the function, and if
423 /// so, return true.
424 bool runOnModule(Module &M);
Devang Patel9f3083e2006-11-15 19:39:54 +0000425 bool runOnFunction(Function &F);
Devang Patel272908d2006-12-08 22:57:48 +0000426 bool run(Function &F);
Devang Patelca58e352006-11-08 10:05:38 +0000427
Devang Patelff631ae2006-11-15 01:27:05 +0000428 /// doInitialization - Run all of the initializers for the function passes.
429 ///
430 bool doInitialization(Module &M);
431
432 /// doFinalization - Run all of the initializers for the function passes.
433 ///
434 bool doFinalization(Module &M);
Devang Patelf9d96b92006-12-07 19:57:52 +0000435
436 /// Pass Manager itself does not invalidate any analysis info.
437 void getAnalysisUsage(AnalysisUsage &Info) const {
438 Info.setPreservesAll();
439 }
440
Devang Patelca58e352006-11-08 10:05:38 +0000441private:
Devang Patelca58e352006-11-08 10:05:38 +0000442 // Active Pass Managers
443 BasicBlockPassManager_New *activeBBPassManager;
444};
445
446/// ModulePassManager_New manages ModulePasses and function pass managers.
447/// It batches all Module passes passes and function pass managers together and
448/// sequence them to process one module.
Devang Patelbc03f132006-12-07 23:55:10 +0000449class ModulePassManager_New : public Pass,
450 public PMDataManager {
Devang Patelca58e352006-11-08 10:05:38 +0000451
452public:
Devang Patel4c36e6b2006-12-07 23:24:58 +0000453 ModulePassManager_New(int D) : PMDataManager(D) {
454 activeFunctionPassManager = NULL;
455 }
Devang Patelca58e352006-11-08 10:05:38 +0000456
457 /// Add a pass into a passmanager queue.
458 bool addPass(Pass *p);
459
460 /// run - Execute all of the passes scheduled for execution. Keep track of
461 /// whether any of the passes modifies the module, and if so, return true.
462 bool runOnModule(Module &M);
Devang Patelebba9702006-11-13 22:40:09 +0000463
Devang Patelf9d96b92006-12-07 19:57:52 +0000464 /// Pass Manager itself does not invalidate any analysis info.
465 void getAnalysisUsage(AnalysisUsage &Info) const {
466 Info.setPreservesAll();
467 }
468
Devang Patelca58e352006-11-08 10:05:38 +0000469private:
Devang Patelca58e352006-11-08 10:05:38 +0000470 // Active Pass Manager
Devang Patel4e12f862006-11-08 10:44:40 +0000471 FunctionPassManagerImpl_New *activeFunctionPassManager;
Devang Patelca58e352006-11-08 10:05:38 +0000472};
473
Devang Patel376fefa2006-11-08 10:29:57 +0000474/// PassManager_New manages ModulePassManagers
Devang Patel31217af2006-12-07 21:32:57 +0000475class PassManagerImpl_New : public Pass,
476 public PMDataManager,
Devang Patelabcd1d32006-12-07 21:27:23 +0000477 public PMTopLevelManager {
Devang Patel376fefa2006-11-08 10:29:57 +0000478
479public:
480
Devang Patel4c36e6b2006-12-07 23:24:58 +0000481 PassManagerImpl_New(int D) : PMDataManager(D) {}
482
Devang Patel376fefa2006-11-08 10:29:57 +0000483 /// add - Add a pass to the queue of passes to run. This passes ownership of
484 /// the Pass to the PassManager. When the PassManager is destroyed, the pass
485 /// will be destroyed as well, so there is no need to delete the pass. This
486 /// implies that all passes MUST be allocated with 'new'.
Devang Patel31217af2006-12-07 21:32:57 +0000487 void add(Pass *P) {
Devang Pateldf6c9ae2006-12-08 22:34:02 +0000488 schedulePass(P);
Devang Patel31217af2006-12-07 21:32:57 +0000489 }
Devang Patel376fefa2006-11-08 10:29:57 +0000490
491 /// run - Execute all of the passes scheduled for execution. Keep track of
492 /// whether any of the passes modifies the module, and if so, return true.
493 bool run(Module &M);
494
Devang Patelf9d96b92006-12-07 19:57:52 +0000495 /// Pass Manager itself does not invalidate any analysis info.
496 void getAnalysisUsage(AnalysisUsage &Info) const {
497 Info.setPreservesAll();
498 }
499
Devang Patelabcd1d32006-12-07 21:27:23 +0000500 inline void addTopLevelPass(Pass *P) {
Devang Pateld440cd92006-12-08 23:53:00 +0000501
Devang Patelfa971cd2006-12-08 23:57:43 +0000502 if (ImmutablePass *IP = dynamic_cast<ImmutablePass *> (P)) {
Devang Pateld440cd92006-12-08 23:53:00 +0000503
504 // P is a immutable pass and it will be managed by this
505 // top level manager. Set up analysis resolver to connect them.
506 AnalysisResolver_New *AR = new AnalysisResolver_New(*this);
507 P->setResolver(AR);
Devang Patelfa971cd2006-12-08 23:57:43 +0000508 addImmutablePass(IP);
Devang Pateld440cd92006-12-08 23:53:00 +0000509 }
Devang Patelfa971cd2006-12-08 23:57:43 +0000510 else
511 addPass(P);
Devang Patelabcd1d32006-12-07 21:27:23 +0000512 }
513
Devang Patel376fefa2006-11-08 10:29:57 +0000514private:
515
Devang Patelde124182006-12-07 21:10:57 +0000516 /// Add a pass into a passmanager queue.
Devang Patel376fefa2006-11-08 10:29:57 +0000517 bool addPass(Pass *p);
518
Devang Patel376fefa2006-11-08 10:29:57 +0000519 // Active Pass Manager
520 ModulePassManager_New *activeManager;
521};
522
Devang Patelca58e352006-11-08 10:05:38 +0000523} // End of llvm namespace
524
Devang Patela1514cb2006-12-07 19:39:39 +0000525//===----------------------------------------------------------------------===//
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000526// PMDataManager implementation
Devang Patelf68a3492006-11-07 22:35:17 +0000527
Devang Pateld65e9e92006-11-08 01:31:28 +0000528/// Return true IFF pass P's required analysis set does not required new
Devang Patelf68a3492006-11-07 22:35:17 +0000529/// manager.
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000530bool PMDataManager::manageablePass(Pass *P) {
Devang Patelf68a3492006-11-07 22:35:17 +0000531
Devang Patel8f677ce2006-12-07 18:47:25 +0000532 // TODO
533 // If this pass is not preserving information that is required by a
534 // pass maintained by higher level pass manager then do not insert
535 // this pass into current manager. Use new manager. For example,
536 // For example, If FunctionPass F is not preserving ModulePass Info M1
537 // that is used by another ModulePass M2 then do not insert F in
538 // current function pass manager.
Devang Patelf68a3492006-11-07 22:35:17 +0000539 return true;
540}
541
Devang Patel643676c2006-11-11 01:10:19 +0000542/// Augement AvailableAnalysis by adding analysis made available by pass P.
Devang Patele9976aa2006-12-07 19:33:53 +0000543void PMDataManager::recordAvailableAnalysis(Pass *P) {
Devang Patelf60b5d92006-11-14 01:59:59 +0000544
Devang Patel643676c2006-11-11 01:10:19 +0000545 if (const PassInfo *PI = P->getPassInfo()) {
Devang Patelf60b5d92006-11-14 01:59:59 +0000546 AvailableAnalysis[PI] = P;
Devang Patel643676c2006-11-11 01:10:19 +0000547
Devang Patele9976aa2006-12-07 19:33:53 +0000548 //This pass is the current implementation of all of the interfaces it
549 //implements as well.
550 const std::vector<const PassInfo*> &II = PI->getInterfacesImplemented();
551 for (unsigned i = 0, e = II.size(); i != e; ++i)
552 AvailableAnalysis[II[i]] = P;
Devang Patel643676c2006-11-11 01:10:19 +0000553 }
554}
555
Devang Patelf68a3492006-11-07 22:35:17 +0000556/// Remove Analyss not preserved by Pass P
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000557void PMDataManager::removeNotPreservedAnalysis(Pass *P) {
Devang Patel349170f2006-11-11 01:24:55 +0000558 AnalysisUsage AnUsage;
559 P->getAnalysisUsage(AnUsage);
Devang Patelf68a3492006-11-07 22:35:17 +0000560
Devang Patel2e169c32006-12-07 20:03:49 +0000561 if (AnUsage.getPreservesAll())
562 return;
563
564 const std::vector<AnalysisID> &PreservedSet = AnUsage.getPreservedSet();
Devang Patelf60b5d92006-11-14 01:59:59 +0000565 for (std::map<AnalysisID, Pass*>::iterator I = AvailableAnalysis.begin(),
Devang Patel349170f2006-11-11 01:24:55 +0000566 E = AvailableAnalysis.end(); I != E; ++I ) {
Devang Patelf60b5d92006-11-14 01:59:59 +0000567 if (std::find(PreservedSet.begin(), PreservedSet.end(), I->first) ==
Devang Patel349170f2006-11-11 01:24:55 +0000568 PreservedSet.end()) {
569 // Remove this analysis
Devang Patelf60b5d92006-11-14 01:59:59 +0000570 std::map<AnalysisID, Pass*>::iterator J = I++;
Devang Patel349170f2006-11-11 01:24:55 +0000571 AvailableAnalysis.erase(J);
572 }
573 }
Devang Patelf68a3492006-11-07 22:35:17 +0000574}
575
Devang Patelca189262006-11-14 03:05:08 +0000576/// Remove analysis passes that are not used any longer
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000577void PMDataManager::removeDeadPasses(Pass *P) {
Devang Patel17ad0962006-12-08 00:37:52 +0000578
579 std::vector<Pass *> DeadPasses;
580 TPM->collectLastUses(DeadPasses, P);
581
582 for (std::vector<Pass *>::iterator I = DeadPasses.begin(),
583 E = DeadPasses.end(); I != E; ++I) {
584 (*I)->releaseMemory();
585
586 std::map<AnalysisID, Pass*>::iterator Pos =
587 AvailableAnalysis.find((*I)->getPassInfo());
588
Devang Patel475c4532006-12-08 00:59:05 +0000589 // It is possible that pass is already removed from the AvailableAnalysis
Devang Patel17ad0962006-12-08 00:37:52 +0000590 if (Pos != AvailableAnalysis.end())
591 AvailableAnalysis.erase(Pos);
592 }
Devang Patelca189262006-11-14 03:05:08 +0000593}
594
Devang Patel8f677ce2006-12-07 18:47:25 +0000595/// Add pass P into the PassVector. Update
Devang Patel90b05e02006-11-11 02:04:19 +0000596/// AvailableAnalysis appropriately if ProcessAnalysis is true.
Devang Patel2e169c32006-12-07 20:03:49 +0000597void PMDataManager::addPassToManager(Pass *P,
598 bool ProcessAnalysis) {
Devang Patel8cad70d2006-11-11 01:51:02 +0000599
Devang Pateld440cd92006-12-08 23:53:00 +0000600 // This manager is going to manage pass P. Set up analysis resolver
601 // to connect them.
602 AnalysisResolver_New *AR = new AnalysisResolver_New(*this);
603 P->setResolver(AR);
604
Devang Patel90b05e02006-11-11 02:04:19 +0000605 if (ProcessAnalysis) {
Devang Patelbc03f132006-12-07 23:55:10 +0000606
607 // At the moment, this pass is the last user of all required passes.
608 std::vector<Pass *> LastUses;
609 std::vector<Pass *> RequiredPasses;
610 unsigned PDepth = this->getDepth();
611
612 collectRequiredAnalysisPasses(RequiredPasses, P);
613 for (std::vector<Pass *>::iterator I = RequiredPasses.begin(),
614 E = RequiredPasses.end(); I != E; ++I) {
615 Pass *PRequired = *I;
616 unsigned RDepth = 0;
617 //FIXME: RDepth = PRequired->getResolver()->getDepth();
618 if (PDepth == RDepth)
619 LastUses.push_back(PRequired);
620 else if (PDepth > RDepth) {
621 // Let the parent claim responsibility of last use
622 ForcedLastUses.push_back(PRequired);
623 } else {
624 // Note : This feature is not yet implemented
625 assert (0 &&
626 "Unable to handle Pass that requires lower level Analysis pass");
627 }
628 }
629
630 if (!LastUses.empty())
631 TPM->setLastUser(LastUses, P);
632
Devang Patel17bff0d2006-12-07 22:09:36 +0000633 // Take a note of analysis required and made available by this pass.
Devang Patel90b05e02006-11-11 02:04:19 +0000634 // Remove the analysis not preserved by this pass
Devang Patel17bff0d2006-12-07 22:09:36 +0000635 initializeAnalysisImpl(P);
Devang Patel90b05e02006-11-11 02:04:19 +0000636 removeNotPreservedAnalysis(P);
Devang Patel17bff0d2006-12-07 22:09:36 +0000637 recordAvailableAnalysis(P);
Devang Patel90b05e02006-11-11 02:04:19 +0000638 }
Devang Patel8cad70d2006-11-11 01:51:02 +0000639
640 // Add pass
641 PassVector.push_back(P);
Devang Patel8cad70d2006-11-11 01:51:02 +0000642}
643
Devang Patel1d6267c2006-12-07 23:05:44 +0000644/// Populate RequiredPasses with the analysis pass that are required by
645/// pass P.
646void PMDataManager::collectRequiredAnalysisPasses(std::vector<Pass *> &RP,
647 Pass *P) {
648 AnalysisUsage AnUsage;
649 P->getAnalysisUsage(AnUsage);
650 const std::vector<AnalysisID> &RequiredSet = AnUsage.getRequiredSet();
651 for (std::vector<AnalysisID>::const_iterator
652 I = RequiredSet.begin(), E = RequiredSet.end();
653 I != E; ++I) {
Devang Patel640c5bb2006-12-08 22:30:11 +0000654 Pass *AnalysisPass = findAnalysisPass(*I, true);
Devang Patel1d6267c2006-12-07 23:05:44 +0000655 assert (AnalysisPass && "Analysis pass is not available");
656 RP.push_back(AnalysisPass);
657 }
658}
659
Devang Patel07f4f582006-11-14 21:49:36 +0000660// All Required analyses should be available to the pass as it runs! Here
661// we fill in the AnalysisImpls member of the pass so that it can
662// successfully use the getAnalysis() method to retrieve the
663// implementations it needs.
664//
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000665void PMDataManager::initializeAnalysisImpl(Pass *P) {
Devang Patelff631ae2006-11-15 01:27:05 +0000666 AnalysisUsage AnUsage;
667 P->getAnalysisUsage(AnUsage);
Devang Patel07f4f582006-11-14 21:49:36 +0000668
669 for (std::vector<const PassInfo *>::const_iterator
670 I = AnUsage.getRequiredSet().begin(),
671 E = AnUsage.getRequiredSet().end(); I != E; ++I) {
Devang Patel640c5bb2006-12-08 22:30:11 +0000672 Pass *Impl = findAnalysisPass(*I, true);
Devang Patel07f4f582006-11-14 21:49:36 +0000673 if (Impl == 0)
674 assert(0 && "Analysis used but not available!");
675 // TODO: P->AnalysisImpls.push_back(std::make_pair(*I, Impl));
676 }
677}
678
Devang Patel640c5bb2006-12-08 22:30:11 +0000679/// Find the pass that implements Analysis AID. If desired pass is not found
680/// then return NULL.
681Pass *PMDataManager::findAnalysisPass(AnalysisID AID, bool SearchParent) {
682
683 // Check if AvailableAnalysis map has one entry.
684 std::map<AnalysisID, Pass*>::const_iterator I = AvailableAnalysis.find(AID);
685
686 if (I != AvailableAnalysis.end())
687 return I->second;
688
689 // Search Parents through TopLevelManager
690 if (SearchParent)
691 return TPM->findAnalysisPass(AID);
692
693 // FIXME : This is expensive and requires. Need to check only managers not all passes.
694 // One solution is to collect managers in advance at TPM level.
695 Pass *P = NULL;
696 for(std::vector<Pass *>::iterator I = passVectorBegin(),
697 E = passVectorEnd(); P == NULL && I!= E; ++I )
698 P = NULL; // FIXME : P = (*I)->getResolver()->getAnalysisToUpdate(AID, false /* Do not search parents again */);
699
700 return P;
701}
702
Devang Patel9bdf7d42006-12-08 23:28:54 +0000703
704//===----------------------------------------------------------------------===//
705// NOTE: Is this the right place to define this method ?
706// getAnalysisToUpdate - Return an analysis result or null if it doesn't exist
707Pass *AnalysisResolver_New::getAnalysisToUpdate(AnalysisID ID, bool dir) const {
708 return PM.findAnalysisPass(ID, dir);
709}
710
Devang Patela1514cb2006-12-07 19:39:39 +0000711//===----------------------------------------------------------------------===//
712// BasicBlockPassManager_New implementation
Devang Patel6e5a1132006-11-07 21:31:57 +0000713
Devang Pateld65e9e92006-11-08 01:31:28 +0000714/// Add pass P into PassVector and return true. If this pass is not
715/// manageable by this manager then return false.
Devang Patel6e5a1132006-11-07 21:31:57 +0000716bool
Devang Pateld65e9e92006-11-08 01:31:28 +0000717BasicBlockPassManager_New::addPass(Pass *P) {
Devang Patel6e5a1132006-11-07 21:31:57 +0000718
719 BasicBlockPass *BP = dynamic_cast<BasicBlockPass*>(P);
720 if (!BP)
721 return false;
722
Devang Patel3c8eb622006-11-07 22:56:50 +0000723 // If this pass does not preserve anlysis that is used by other passes
724 // managed by this manager than it is not a suiable pass for this manager.
Devang Pateld65e9e92006-11-08 01:31:28 +0000725 if (!manageablePass(P))
Devang Patel3c8eb622006-11-07 22:56:50 +0000726 return false;
727
Devang Patel8cad70d2006-11-11 01:51:02 +0000728 addPassToManager (BP);
Devang Patel349170f2006-11-11 01:24:55 +0000729
Devang Patel6e5a1132006-11-07 21:31:57 +0000730 return true;
731}
732
733/// Execute all of the passes scheduled for execution by invoking
734/// runOnBasicBlock method. Keep track of whether any of the passes modifies
735/// the function, and if so, return true.
736bool
737BasicBlockPassManager_New::runOnFunction(Function &F) {
738
Devang Patele9585592006-12-08 01:38:28 +0000739 bool Changed = doInitialization(F);
Devang Patela6b6dcb2006-12-07 18:41:09 +0000740 initializeAnalysisInfo();
Devang Patel050ec722006-11-14 01:23:29 +0000741
Devang Patel6e5a1132006-11-07 21:31:57 +0000742 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
Devang Patel8cad70d2006-11-11 01:51:02 +0000743 for (std::vector<Pass *>::iterator itr = passVectorBegin(),
744 e = passVectorEnd(); itr != e; ++itr) {
Devang Patel6e5a1132006-11-07 21:31:57 +0000745 Pass *P = *itr;
Devang Patel050ec722006-11-14 01:23:29 +0000746
Devang Patel6e5a1132006-11-07 21:31:57 +0000747 BasicBlockPass *BP = dynamic_cast<BasicBlockPass*>(P);
748 Changed |= BP->runOnBasicBlock(*I);
Devang Patel050ec722006-11-14 01:23:29 +0000749 removeNotPreservedAnalysis(P);
Devang Patel17bff0d2006-12-07 22:09:36 +0000750 recordAvailableAnalysis(P);
Devang Patelca189262006-11-14 03:05:08 +0000751 removeDeadPasses(P);
Devang Patel6e5a1132006-11-07 21:31:57 +0000752 }
Devang Patele9585592006-12-08 01:38:28 +0000753 return Changed | doFinalization(F);
Devang Patel6e5a1132006-11-07 21:31:57 +0000754}
755
Devang Patel475c4532006-12-08 00:59:05 +0000756// Implement doInitialization and doFinalization
757inline bool BasicBlockPassManager_New::doInitialization(Module &M) {
758 bool Changed = false;
759
760 for (std::vector<Pass *>::iterator itr = passVectorBegin(),
761 e = passVectorEnd(); itr != e; ++itr) {
762 Pass *P = *itr;
763 BasicBlockPass *BP = dynamic_cast<BasicBlockPass*>(P);
764 Changed |= BP->doInitialization(M);
765 }
766
767 return Changed;
768}
769
770inline bool BasicBlockPassManager_New::doFinalization(Module &M) {
771 bool Changed = false;
772
773 for (std::vector<Pass *>::iterator itr = passVectorBegin(),
774 e = passVectorEnd(); itr != e; ++itr) {
775 Pass *P = *itr;
776 BasicBlockPass *BP = dynamic_cast<BasicBlockPass*>(P);
777 Changed |= BP->doFinalization(M);
778 }
779
780 return Changed;
781}
782
783inline bool BasicBlockPassManager_New::doInitialization(Function &F) {
784 bool Changed = false;
785
786 for (std::vector<Pass *>::iterator itr = passVectorBegin(),
787 e = passVectorEnd(); itr != e; ++itr) {
788 Pass *P = *itr;
789 BasicBlockPass *BP = dynamic_cast<BasicBlockPass*>(P);
790 Changed |= BP->doInitialization(F);
791 }
792
793 return Changed;
794}
795
796inline bool BasicBlockPassManager_New::doFinalization(Function &F) {
797 bool Changed = false;
798
799 for (std::vector<Pass *>::iterator itr = passVectorBegin(),
800 e = passVectorEnd(); itr != e; ++itr) {
801 Pass *P = *itr;
802 BasicBlockPass *BP = dynamic_cast<BasicBlockPass*>(P);
803 Changed |= BP->doFinalization(F);
804 }
805
806 return Changed;
807}
808
809
Devang Patela1514cb2006-12-07 19:39:39 +0000810//===----------------------------------------------------------------------===//
Devang Patel0c2012f2006-11-07 21:49:50 +0000811// FunctionPassManager_New implementation
Devang Patela1514cb2006-12-07 19:39:39 +0000812
Devang Patel4e12f862006-11-08 10:44:40 +0000813/// Create new Function pass manager
814FunctionPassManager_New::FunctionPassManager_New() {
Devang Patel4c36e6b2006-12-07 23:24:58 +0000815 FPM = new FunctionPassManagerImpl_New(0);
Devang Patel4e12f862006-11-08 10:44:40 +0000816}
817
Devang Patel1f653682006-12-08 18:57:16 +0000818FunctionPassManager_New::FunctionPassManager_New(ModuleProvider *P) {
819 FPM = new FunctionPassManagerImpl_New(0);
820 MP = P;
821}
822
Devang Patel4e12f862006-11-08 10:44:40 +0000823/// add - Add a pass to the queue of passes to run. This passes
824/// ownership of the Pass to the PassManager. When the
825/// PassManager_X is destroyed, the pass will be destroyed as well, so
826/// there is no need to delete the pass. (TODO delete passes.)
827/// This implies that all passes MUST be allocated with 'new'.
Devang Patel9f3083e2006-11-15 19:39:54 +0000828void FunctionPassManager_New::add(Pass *P) {
Devang Patel4e12f862006-11-08 10:44:40 +0000829 FPM->add(P);
830}
831
832/// Execute all of the passes scheduled for execution. Keep
833/// track of whether any of the passes modifies the function, and if
834/// so, return true.
Devang Patel9f3083e2006-11-15 19:39:54 +0000835bool FunctionPassManager_New::runOnModule(Module &M) {
Devang Patel4e12f862006-11-08 10:44:40 +0000836 return FPM->runOnModule(M);
837}
838
Devang Patel9f3083e2006-11-15 19:39:54 +0000839/// run - Execute all of the passes scheduled for execution. Keep
840/// track of whether any of the passes modifies the function, and if
841/// so, return true.
842///
843bool FunctionPassManager_New::run(Function &F) {
844 std::string errstr;
845 if (MP->materializeFunction(&F, &errstr)) {
Bill Wendlingf3baad32006-12-07 01:30:32 +0000846 cerr << "Error reading bytecode file: " << errstr << "\n";
Devang Patel9f3083e2006-11-15 19:39:54 +0000847 abort();
848 }
Devang Patel272908d2006-12-08 22:57:48 +0000849 return FPM->run(F);
Devang Patel9f3083e2006-11-15 19:39:54 +0000850}
851
852
Devang Patelff631ae2006-11-15 01:27:05 +0000853/// doInitialization - Run all of the initializers for the function passes.
854///
855bool FunctionPassManager_New::doInitialization() {
856 return FPM->doInitialization(*MP->getModule());
857}
858
859/// doFinalization - Run all of the initializers for the function passes.
860///
861bool FunctionPassManager_New::doFinalization() {
862 return FPM->doFinalization(*MP->getModule());
863}
864
Devang Patela1514cb2006-12-07 19:39:39 +0000865//===----------------------------------------------------------------------===//
Devang Patel4e12f862006-11-08 10:44:40 +0000866// FunctionPassManagerImpl_New implementation
Devang Patel0c2012f2006-11-07 21:49:50 +0000867
Devang Patel0c2012f2006-11-07 21:49:50 +0000868/// Add pass P into the pass manager queue. If P is a BasicBlockPass then
869/// either use it into active basic block pass manager or create new basic
870/// block pass manager to handle pass P.
871bool
Devang Patel4e12f862006-11-08 10:44:40 +0000872FunctionPassManagerImpl_New::addPass(Pass *P) {
Devang Patel0c2012f2006-11-07 21:49:50 +0000873
874 // If P is a BasicBlockPass then use BasicBlockPassManager_New.
875 if (BasicBlockPass *BP = dynamic_cast<BasicBlockPass*>(P)) {
876
Devang Patel4949fe02006-12-07 22:34:21 +0000877 if (!activeBBPassManager || !activeBBPassManager->addPass(BP)) {
Devang Patel0c2012f2006-11-07 21:49:50 +0000878
Devang Patel4949fe02006-12-07 22:34:21 +0000879 // If active manager exists then clear its analysis info.
880 if (activeBBPassManager)
881 activeBBPassManager->initializeAnalysisInfo();
Devang Patel642c1432006-12-07 21:58:50 +0000882
Devang Patel4949fe02006-12-07 22:34:21 +0000883 // Create and add new manager
Devang Patel4c36e6b2006-12-07 23:24:58 +0000884 activeBBPassManager =
885 new BasicBlockPassManager_New(getDepth() + 1);
Devang Patel90b05e02006-11-11 02:04:19 +0000886 addPassToManager(activeBBPassManager, false);
Devang Patelaf1fca52006-12-08 23:11:43 +0000887 TPM->addOtherPassManager(activeBBPassManager);
Devang Patel4949fe02006-12-07 22:34:21 +0000888
889 // Add pass into new manager. This time it must succeed.
Devang Pateld65e9e92006-11-08 01:31:28 +0000890 if (!activeBBPassManager->addPass(BP))
891 assert(0 && "Unable to add Pass");
Devang Patel0c2012f2006-11-07 21:49:50 +0000892 }
Devang Patelbc03f132006-12-07 23:55:10 +0000893
894 if (!ForcedLastUses.empty())
895 TPM->setLastUser(ForcedLastUses, this);
896
Devang Patel0c2012f2006-11-07 21:49:50 +0000897 return true;
898 }
899
900 FunctionPass *FP = dynamic_cast<FunctionPass *>(P);
901 if (!FP)
902 return false;
903
Devang Patel3c8eb622006-11-07 22:56:50 +0000904 // If this pass does not preserve anlysis that is used by other passes
905 // managed by this manager than it is not a suiable pass for this manager.
Devang Pateld65e9e92006-11-08 01:31:28 +0000906 if (!manageablePass(P))
Devang Patel3c8eb622006-11-07 22:56:50 +0000907 return false;
908
Devang Patel8cad70d2006-11-11 01:51:02 +0000909 addPassToManager (FP);
Devang Patel4949fe02006-12-07 22:34:21 +0000910
911 // If active manager exists then clear its analysis info.
912 if (activeBBPassManager) {
913 activeBBPassManager->initializeAnalysisInfo();
914 activeBBPassManager = NULL;
915 }
916
Devang Patel0c2012f2006-11-07 21:49:50 +0000917 return true;
918}
919
920/// Execute all of the passes scheduled for execution by invoking
921/// runOnFunction method. Keep track of whether any of the passes modifies
922/// the function, and if so, return true.
Devang Patel9f3083e2006-11-15 19:39:54 +0000923bool FunctionPassManagerImpl_New::runOnModule(Module &M) {
Devang Patel0c2012f2006-11-07 21:49:50 +0000924
Devang Patel0e29e292006-12-08 19:04:09 +0000925 bool Changed = doInitialization(M);
Devang Patela6b6dcb2006-12-07 18:41:09 +0000926 initializeAnalysisInfo();
Devang Patel050ec722006-11-14 01:23:29 +0000927
Devang Patel0c2012f2006-11-07 21:49:50 +0000928 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
Devang Patel19290892006-12-08 19:03:05 +0000929 this->runOnFunction(*I);
930
Devang Patel0e29e292006-12-08 19:04:09 +0000931 return Changed | doFinalization(M);
Devang Patel0c2012f2006-11-07 21:49:50 +0000932}
933
Devang Patel9f3083e2006-11-15 19:39:54 +0000934/// Execute all of the passes scheduled for execution by invoking
935/// runOnFunction method. Keep track of whether any of the passes modifies
936/// the function, and if so, return true.
937bool FunctionPassManagerImpl_New::runOnFunction(Function &F) {
938
939 bool Changed = false;
Devang Patela6b6dcb2006-12-07 18:41:09 +0000940 initializeAnalysisInfo();
Devang Patel9f3083e2006-11-15 19:39:54 +0000941
942 for (std::vector<Pass *>::iterator itr = passVectorBegin(),
943 e = passVectorEnd(); itr != e; ++itr) {
944 Pass *P = *itr;
945
Devang Patel9f3083e2006-11-15 19:39:54 +0000946 FunctionPass *FP = dynamic_cast<FunctionPass*>(P);
947 Changed |= FP->runOnFunction(F);
948 removeNotPreservedAnalysis(P);
Devang Patel17bff0d2006-12-07 22:09:36 +0000949 recordAvailableAnalysis(P);
Devang Patel9f3083e2006-11-15 19:39:54 +0000950 removeDeadPasses(P);
951 }
952 return Changed;
953}
954
955
Devang Patelff631ae2006-11-15 01:27:05 +0000956inline bool FunctionPassManagerImpl_New::doInitialization(Module &M) {
957 bool Changed = false;
958
959 for (std::vector<Pass *>::iterator itr = passVectorBegin(),
960 e = passVectorEnd(); itr != e; ++itr) {
961 Pass *P = *itr;
962
963 FunctionPass *FP = dynamic_cast<FunctionPass*>(P);
964 Changed |= FP->doInitialization(M);
965 }
966
967 return Changed;
968}
969
970inline bool FunctionPassManagerImpl_New::doFinalization(Module &M) {
971 bool Changed = false;
972
973 for (std::vector<Pass *>::iterator itr = passVectorBegin(),
974 e = passVectorEnd(); itr != e; ++itr) {
975 Pass *P = *itr;
976
977 FunctionPass *FP = dynamic_cast<FunctionPass*>(P);
978 Changed |= FP->doFinalization(M);
979 }
980
Devang Patelff631ae2006-11-15 01:27:05 +0000981 return Changed;
982}
983
Devang Patel272908d2006-12-08 22:57:48 +0000984// Execute all the passes managed by this top level manager.
985// Return true if any function is modified by a pass.
986bool FunctionPassManagerImpl_New::run(Function &F) {
987
988 bool Changed = false;
989 for (std::vector<Pass *>::iterator I = passManagersBegin(),
990 E = passManagersEnd(); I != E; ++I) {
991 FunctionPass *FP = dynamic_cast<FunctionPass *>(*I);
992 Changed |= FP->runOnFunction(F);
993 }
994 return Changed;
995}
996
Devang Patela1514cb2006-12-07 19:39:39 +0000997//===----------------------------------------------------------------------===//
Devang Patel05e1a972006-11-07 22:03:15 +0000998// ModulePassManager implementation
999
1000/// Add P into pass vector if it is manageble. If P is a FunctionPass
Devang Patel4e12f862006-11-08 10:44:40 +00001001/// then use FunctionPassManagerImpl_New to manage it. Return false if P
Devang Patel05e1a972006-11-07 22:03:15 +00001002/// is not manageable by this manager.
1003bool
Devang Pateld65e9e92006-11-08 01:31:28 +00001004ModulePassManager_New::addPass(Pass *P) {
Devang Patel05e1a972006-11-07 22:03:15 +00001005
1006 // If P is FunctionPass then use function pass maanager.
1007 if (FunctionPass *FP = dynamic_cast<FunctionPass*>(P)) {
1008
Devang Patel640c5bb2006-12-08 22:30:11 +00001009 if (!activeFunctionPassManager || !activeFunctionPassManager->addPass(P)) {
Devang Patel05e1a972006-11-07 22:03:15 +00001010
Devang Patel4949fe02006-12-07 22:34:21 +00001011 // If active manager exists then clear its analysis info.
1012 if (activeFunctionPassManager)
1013 activeFunctionPassManager->initializeAnalysisInfo();
Devang Patel642c1432006-12-07 21:58:50 +00001014
Devang Patel4949fe02006-12-07 22:34:21 +00001015 // Create and add new manager
Devang Patel4c36e6b2006-12-07 23:24:58 +00001016 activeFunctionPassManager =
1017 new FunctionPassManagerImpl_New(getDepth() + 1);
Devang Patel90b05e02006-11-11 02:04:19 +00001018 addPassToManager(activeFunctionPassManager, false);
Devang Patelaf1fca52006-12-08 23:11:43 +00001019 TPM->addOtherPassManager(activeFunctionPassManager);
1020
Devang Patel4949fe02006-12-07 22:34:21 +00001021 // Add pass into new manager. This time it must succeed.
Devang Pateld65e9e92006-11-08 01:31:28 +00001022 if (!activeFunctionPassManager->addPass(FP))
1023 assert(0 && "Unable to add pass");
Devang Patel05e1a972006-11-07 22:03:15 +00001024 }
Devang Patelbc03f132006-12-07 23:55:10 +00001025
1026 if (!ForcedLastUses.empty())
1027 TPM->setLastUser(ForcedLastUses, this);
1028
Devang Patel05e1a972006-11-07 22:03:15 +00001029 return true;
1030 }
1031
1032 ModulePass *MP = dynamic_cast<ModulePass *>(P);
1033 if (!MP)
1034 return false;
1035
Devang Patel3c8eb622006-11-07 22:56:50 +00001036 // If this pass does not preserve anlysis that is used by other passes
1037 // managed by this manager than it is not a suiable pass for this manager.
Devang Pateld65e9e92006-11-08 01:31:28 +00001038 if (!manageablePass(P))
Devang Patel3c8eb622006-11-07 22:56:50 +00001039 return false;
1040
Devang Patel8cad70d2006-11-11 01:51:02 +00001041 addPassToManager(MP);
Devang Patel4949fe02006-12-07 22:34:21 +00001042 // If active manager exists then clear its analysis info.
1043 if (activeFunctionPassManager) {
1044 activeFunctionPassManager->initializeAnalysisInfo();
1045 activeFunctionPassManager = NULL;
1046 }
1047
Devang Patel05e1a972006-11-07 22:03:15 +00001048 return true;
1049}
1050
1051
1052/// Execute all of the passes scheduled for execution by invoking
1053/// runOnModule method. Keep track of whether any of the passes modifies
1054/// the module, and if so, return true.
1055bool
1056ModulePassManager_New::runOnModule(Module &M) {
1057 bool Changed = false;
Devang Patela6b6dcb2006-12-07 18:41:09 +00001058 initializeAnalysisInfo();
Devang Patel050ec722006-11-14 01:23:29 +00001059
Devang Patel8cad70d2006-11-11 01:51:02 +00001060 for (std::vector<Pass *>::iterator itr = passVectorBegin(),
1061 e = passVectorEnd(); itr != e; ++itr) {
Devang Patel05e1a972006-11-07 22:03:15 +00001062 Pass *P = *itr;
Devang Patel050ec722006-11-14 01:23:29 +00001063
Devang Patel05e1a972006-11-07 22:03:15 +00001064 ModulePass *MP = dynamic_cast<ModulePass*>(P);
1065 Changed |= MP->runOnModule(M);
Devang Patel050ec722006-11-14 01:23:29 +00001066 removeNotPreservedAnalysis(P);
Devang Patel17bff0d2006-12-07 22:09:36 +00001067 recordAvailableAnalysis(P);
Devang Patelca189262006-11-14 03:05:08 +00001068 removeDeadPasses(P);
Devang Patel05e1a972006-11-07 22:03:15 +00001069 }
1070 return Changed;
1071}
1072
Devang Patela1514cb2006-12-07 19:39:39 +00001073//===----------------------------------------------------------------------===//
1074// PassManagerImpl implementation
1075
Devang Patelc290c8a2006-11-07 22:23:34 +00001076// PassManager_New implementation
1077/// Add P into active pass manager or use new module pass manager to
1078/// manage it.
Devang Patel1a6eaa42006-11-11 02:22:31 +00001079bool PassManagerImpl_New::addPass(Pass *P) {
Devang Patelc290c8a2006-11-07 22:23:34 +00001080
Devang Patel6c9f5482006-11-11 00:42:16 +00001081 if (!activeManager || !activeManager->addPass(P)) {
Devang Patel4c36e6b2006-12-07 23:24:58 +00001082 activeManager = new ModulePassManager_New(getDepth() + 1);
Devang Pateld440cd92006-12-08 23:53:00 +00001083
1084 // This top level manager is going to manage activeManager.
1085 // Set up analysis resolver to connect them.
1086 AnalysisResolver_New *AR = new AnalysisResolver_New(*this);
1087 activeManager->setResolver(AR);
1088
Devang Patel5bbeb492006-12-08 22:47:25 +00001089 addPassManager(activeManager);
Devang Patel28bbcbe2006-12-07 21:44:12 +00001090 return activeManager->addPass(P);
Devang Patelc290c8a2006-11-07 22:23:34 +00001091 }
Devang Patel28bbcbe2006-12-07 21:44:12 +00001092 return true;
Devang Patelc290c8a2006-11-07 22:23:34 +00001093}
1094
1095/// run - Execute all of the passes scheduled for execution. Keep track of
1096/// whether any of the passes modifies the module, and if so, return true.
Devang Patel1a6eaa42006-11-11 02:22:31 +00001097bool PassManagerImpl_New::run(Module &M) {
Devang Patelc290c8a2006-11-07 22:23:34 +00001098
Devang Patelc290c8a2006-11-07 22:23:34 +00001099 bool Changed = false;
Devang Patel5bbeb492006-12-08 22:47:25 +00001100 for (std::vector<Pass *>::iterator I = passManagersBegin(),
1101 E = passManagersEnd(); I != E; ++I) {
1102 ModulePassManager_New *MP = dynamic_cast<ModulePassManager_New *>(*I);
1103 Changed |= MP->runOnModule(M);
Devang Patelc290c8a2006-11-07 22:23:34 +00001104 }
1105 return Changed;
1106}
Devang Patel376fefa2006-11-08 10:29:57 +00001107
Devang Patela1514cb2006-12-07 19:39:39 +00001108//===----------------------------------------------------------------------===//
1109// PassManager implementation
1110
Devang Patel376fefa2006-11-08 10:29:57 +00001111/// Create new pass manager
1112PassManager_New::PassManager_New() {
Devang Patel4c36e6b2006-12-07 23:24:58 +00001113 PM = new PassManagerImpl_New(0);
Devang Patel376fefa2006-11-08 10:29:57 +00001114}
1115
1116/// add - Add a pass to the queue of passes to run. This passes ownership of
1117/// the Pass to the PassManager. When the PassManager is destroyed, the pass
1118/// will be destroyed as well, so there is no need to delete the pass. This
1119/// implies that all passes MUST be allocated with 'new'.
1120void
1121PassManager_New::add(Pass *P) {
1122 PM->add(P);
1123}
1124
1125/// run - Execute all of the passes scheduled for execution. Keep track of
1126/// whether any of the passes modifies the module, and if so, return true.
1127bool
1128PassManager_New::run(Module &M) {
1129 return PM->run(M);
1130}
1131