blob: 78004d1615212939dbdaef8c22cd7c35b2d59a18 [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.
109 void schedulePass(Pass *P, Pass *PM);
110
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
121 virtual ~PMTopLevelManager() {
122 PassManagers.clear();
123 }
124
125private:
126
127 /// Collection of pass managers
128 std::vector<Pass *> PassManagers;
129
130 // Map to keep track of last user of the analysis pass.
131 // LastUser->second is the last user of Lastuser->first.
132 std::map<Pass *, Pass *> LastUser;
133};
134
135/// Set pass P as the last user of the given analysis passes.
136void PMTopLevelManager::setLastUser(std::vector<Pass *> &AnalysisPasses,
137 Pass *P) {
138
139 for (std::vector<Pass *>::iterator I = AnalysisPasses.begin(),
140 E = AnalysisPasses.end(); I != E; ++I) {
141 Pass *AP = *I;
142 LastUser[AP] = P;
143 // If AP is the last user of other passes then make P last user of
144 // such passes.
145 for (std::map<Pass *, Pass *>::iterator LUI = LastUser.begin(),
146 LUE = LastUser.end(); LUI != LUE; ++LUI) {
147 if (LUI->second == AP)
148 LastUser[LUI->first] = P;
149 }
150 }
151
152}
153
154/// Collect passes whose last user is P
155void PMTopLevelManager::collectLastUses(std::vector<Pass *> &LastUses,
156 Pass *P) {
157 for (std::map<Pass *, Pass *>::iterator LUI = LastUser.begin(),
158 LUE = LastUser.end(); LUI != LUE; ++LUI)
159 if (LUI->second == P)
160 LastUses.push_back(LUI->first);
161}
162
163
164
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000165/// PMDataManager provides the common place to manage the analysis data
166/// used by pass managers.
167class PMDataManager {
Devang Patela9844592006-11-11 01:31:05 +0000168
169public:
170
171 /// Return true IFF pass P's required analysis set does not required new
172 /// manager.
173 bool manageablePass(Pass *P);
174
Devang Patelf60b5d92006-11-14 01:59:59 +0000175 Pass *getAnalysisPass(AnalysisID AID) const {
176
177 std::map<AnalysisID, Pass*>::const_iterator I =
178 AvailableAnalysis.find(AID);
179
180 if (I != AvailableAnalysis.end())
181 return NULL;
182 else
183 return I->second;
Devang Patelebba9702006-11-13 22:40:09 +0000184 }
Devang Patela9844592006-11-11 01:31:05 +0000185
Devang Patela9844592006-11-11 01:31:05 +0000186 /// Augment AvailableAnalysis by adding analysis made available by pass P.
Devang Patele9976aa2006-12-07 19:33:53 +0000187 void recordAvailableAnalysis(Pass *P);
Devang Patela9844592006-11-11 01:31:05 +0000188
Devang Patela9844592006-11-11 01:31:05 +0000189 /// Remove Analysis that is not preserved by the pass
190 void removeNotPreservedAnalysis(Pass *P);
191
192 /// Remove dead passes
Devang Patelca189262006-11-14 03:05:08 +0000193 void removeDeadPasses(Pass *P);
Devang Patela9844592006-11-11 01:31:05 +0000194
Devang Patel8f677ce2006-12-07 18:47:25 +0000195 /// Add pass P into the PassVector. Update
Devang Patel90b05e02006-11-11 02:04:19 +0000196 /// AvailableAnalysis appropriately if ProcessAnalysis is true.
197 void addPassToManager (Pass *P, bool ProcessAnalysis = true);
Devang Patel8cad70d2006-11-11 01:51:02 +0000198
Devang Patela6b6dcb2006-12-07 18:41:09 +0000199 // Initialize available analysis information.
200 void initializeAnalysisInfo() {
Devang Patel050ec722006-11-14 01:23:29 +0000201 AvailableAnalysis.clear();
Devang Patel3f0832a2006-11-14 02:54:23 +0000202 LastUser.clear();
Devang Patel050ec722006-11-14 01:23:29 +0000203 }
204
Devang Patelf60b5d92006-11-14 01:59:59 +0000205 // All Required analyses should be available to the pass as it runs! Here
206 // we fill in the AnalysisImpls member of the pass so that it can
207 // successfully use the getAnalysis() method to retrieve the
208 // implementations it needs.
209 //
Devang Patel07f4f582006-11-14 21:49:36 +0000210 void initializeAnalysisImpl(Pass *P);
Devang Patelf60b5d92006-11-14 01:59:59 +0000211
Devang Patel8cad70d2006-11-11 01:51:02 +0000212 inline std::vector<Pass *>::iterator passVectorBegin() {
213 return PassVector.begin();
214 }
215
216 inline std::vector<Pass *>::iterator passVectorEnd() {
217 return PassVector.end();
218 }
219
Devang Patel4a3fa4f2006-11-15 01:48:14 +0000220 inline void setLastUser(Pass *P, Pass *LU) {
Devang Patel07f4f582006-11-14 21:49:36 +0000221 LastUser[P] = LU;
222 // TODO : Check if pass P is available.
Devang Patel07f4f582006-11-14 21:49:36 +0000223 }
Devang Patel3f0832a2006-11-14 02:54:23 +0000224
Devang Patela9844592006-11-11 01:31:05 +0000225private:
Devang Pateldafa4dd2006-11-14 00:03:04 +0000226 // Set of available Analysis. This information is used while scheduling
227 // pass. If a pass requires an analysis which is not not available then
228 // equired analysis pass is scheduled to run before the pass itself is
229 // scheduled to run.
Devang Patelf60b5d92006-11-14 01:59:59 +0000230 std::map<AnalysisID, Pass*> AvailableAnalysis;
Devang Patel8cad70d2006-11-11 01:51:02 +0000231
Devang Patel3f0832a2006-11-14 02:54:23 +0000232 // Map to keep track of last user of the analysis pass.
233 // LastUser->second is the last user of Lastuser->first.
234 std::map<Pass *, Pass *> LastUser;
235
Devang Patel8cad70d2006-11-11 01:51:02 +0000236 // Collection of pass that are managed by this manager
237 std::vector<Pass *> PassVector;
Devang Patela9844592006-11-11 01:31:05 +0000238};
239
Devang Patelca58e352006-11-08 10:05:38 +0000240/// BasicBlockPassManager_New manages BasicBlockPass. It batches all the
241/// pass together and sequence them to process one basic block before
242/// processing next basic block.
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000243class BasicBlockPassManager_New : public PMDataManager,
Devang Patel42add712006-11-15 01:11:27 +0000244 public FunctionPass {
Devang Patelca58e352006-11-08 10:05:38 +0000245
246public:
247 BasicBlockPassManager_New() { }
248
249 /// Add a pass into a passmanager queue.
250 bool addPass(Pass *p);
251
252 /// Execute all of the passes scheduled for execution. Keep track of
253 /// whether any of the passes modifies the function, and if so, return true.
254 bool runOnFunction(Function &F);
255
Devang Patelebba9702006-11-13 22:40:09 +0000256 /// Return true IFF AnalysisID AID is currently available.
Devang Patel3f0832a2006-11-14 02:54:23 +0000257 Pass *getAnalysisPassFromManager(AnalysisID AID);
Devang Patelebba9702006-11-13 22:40:09 +0000258
Devang Patelca58e352006-11-08 10:05:38 +0000259private:
Devang Patelca58e352006-11-08 10:05:38 +0000260};
261
Devang Patel4e12f862006-11-08 10:44:40 +0000262/// FunctionPassManagerImpl_New manages FunctionPasses and BasicBlockPassManagers.
Devang Patelca58e352006-11-08 10:05:38 +0000263/// It batches all function passes and basic block pass managers together and
264/// sequence them to process one function at a time before processing next
265/// function.
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000266class FunctionPassManagerImpl_New : public PMDataManager,
Devang Patel42add712006-11-15 01:11:27 +0000267 public ModulePass {
Devang Patelca58e352006-11-08 10:05:38 +0000268public:
Devang Patel4e12f862006-11-08 10:44:40 +0000269 FunctionPassManagerImpl_New(ModuleProvider *P) { /* TODO */ }
270 FunctionPassManagerImpl_New() {
Devang Patelca58e352006-11-08 10:05:38 +0000271 activeBBPassManager = NULL;
272 }
Devang Patel4e12f862006-11-08 10:44:40 +0000273 ~FunctionPassManagerImpl_New() { /* TODO */ };
Devang Patelca58e352006-11-08 10:05:38 +0000274
275 /// add - Add a pass to the queue of passes to run. This passes
276 /// ownership of the Pass to the PassManager. When the
277 /// PassManager_X is destroyed, the pass will be destroyed as well, so
278 /// there is no need to delete the pass. (TODO delete passes.)
279 /// This implies that all passes MUST be allocated with 'new'.
280 void add(Pass *P) { /* TODO*/ }
281
282 /// Add pass into the pass manager queue.
283 bool addPass(Pass *P);
284
285 /// Execute all of the passes scheduled for execution. Keep
286 /// track of whether any of the passes modifies the function, and if
287 /// so, return true.
288 bool runOnModule(Module &M);
Devang Patel9f3083e2006-11-15 19:39:54 +0000289 bool runOnFunction(Function &F);
Devang Patelca58e352006-11-08 10:05:38 +0000290
Devang Patelebba9702006-11-13 22:40:09 +0000291 /// Return true IFF AnalysisID AID is currently available.
Devang Patel3f0832a2006-11-14 02:54:23 +0000292 Pass *getAnalysisPassFromManager(AnalysisID AID);
Devang Patelebba9702006-11-13 22:40:09 +0000293
Devang Patelff631ae2006-11-15 01:27:05 +0000294 /// doInitialization - Run all of the initializers for the function passes.
295 ///
296 bool doInitialization(Module &M);
297
298 /// doFinalization - Run all of the initializers for the function passes.
299 ///
300 bool doFinalization(Module &M);
Devang Patelca58e352006-11-08 10:05:38 +0000301private:
Devang Patelca58e352006-11-08 10:05:38 +0000302 // Active Pass Managers
303 BasicBlockPassManager_New *activeBBPassManager;
304};
305
306/// ModulePassManager_New manages ModulePasses and function pass managers.
307/// It batches all Module passes passes and function pass managers together and
308/// sequence them to process one module.
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000309class ModulePassManager_New : public PMDataManager {
Devang Patelca58e352006-11-08 10:05:38 +0000310
311public:
312 ModulePassManager_New() { activeFunctionPassManager = NULL; }
313
314 /// Add a pass into a passmanager queue.
315 bool addPass(Pass *p);
316
317 /// run - Execute all of the passes scheduled for execution. Keep track of
318 /// whether any of the passes modifies the module, and if so, return true.
319 bool runOnModule(Module &M);
Devang Patelebba9702006-11-13 22:40:09 +0000320
321 /// Return true IFF AnalysisID AID is currently available.
Devang Patel3f0832a2006-11-14 02:54:23 +0000322 Pass *getAnalysisPassFromManager(AnalysisID AID);
Devang Patelca58e352006-11-08 10:05:38 +0000323
324private:
Devang Patelca58e352006-11-08 10:05:38 +0000325 // Active Pass Manager
Devang Patel4e12f862006-11-08 10:44:40 +0000326 FunctionPassManagerImpl_New *activeFunctionPassManager;
Devang Patelca58e352006-11-08 10:05:38 +0000327};
328
Devang Patel376fefa2006-11-08 10:29:57 +0000329/// PassManager_New manages ModulePassManagers
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000330class PassManagerImpl_New : public PMDataManager {
Devang Patel376fefa2006-11-08 10:29:57 +0000331
332public:
333
334 /// add - Add a pass to the queue of passes to run. This passes ownership of
335 /// the Pass to the PassManager. When the PassManager is destroyed, the pass
336 /// will be destroyed as well, so there is no need to delete the pass. This
337 /// implies that all passes MUST be allocated with 'new'.
338 void add(Pass *P);
339
340 /// run - Execute all of the passes scheduled for execution. Keep track of
341 /// whether any of the passes modifies the module, and if so, return true.
342 bool run(Module &M);
343
Devang Patelebba9702006-11-13 22:40:09 +0000344 /// Return true IFF AnalysisID AID is currently available.
Devang Patel3f0832a2006-11-14 02:54:23 +0000345 Pass *getAnalysisPassFromManager(AnalysisID AID);
Devang Patelebba9702006-11-13 22:40:09 +0000346
Devang Patel376fefa2006-11-08 10:29:57 +0000347private:
348
349 /// Add a pass into a passmanager queue. This is used by schedulePasses
350 bool addPass(Pass *p);
351
Devang Patel1a6eaa42006-11-11 02:22:31 +0000352 /// Schedule pass P for execution. Make sure that passes required by
353 /// P are run before P is run. Update analysis info maintained by
354 /// the manager. Remove dead passes. This is a recursive function.
355 void schedulePass(Pass *P);
356
Devang Patel376fefa2006-11-08 10:29:57 +0000357 /// Schedule all passes collected in pass queue using add(). Add all the
358 /// schedule passes into various manager's queue using addPass().
359 void schedulePasses();
360
361 // Collection of pass managers
362 std::vector<ModulePassManager_New *> PassManagers;
363
Devang Patel376fefa2006-11-08 10:29:57 +0000364 // Active Pass Manager
365 ModulePassManager_New *activeManager;
366};
367
Devang Patelca58e352006-11-08 10:05:38 +0000368} // End of llvm namespace
369
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000370// PMDataManager implementation
Devang Patelf68a3492006-11-07 22:35:17 +0000371
Devang Pateld65e9e92006-11-08 01:31:28 +0000372/// Return true IFF pass P's required analysis set does not required new
Devang Patelf68a3492006-11-07 22:35:17 +0000373/// manager.
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000374bool PMDataManager::manageablePass(Pass *P) {
Devang Patelf68a3492006-11-07 22:35:17 +0000375
Devang Patel8f677ce2006-12-07 18:47:25 +0000376 // TODO
377 // If this pass is not preserving information that is required by a
378 // pass maintained by higher level pass manager then do not insert
379 // this pass into current manager. Use new manager. For example,
380 // For example, If FunctionPass F is not preserving ModulePass Info M1
381 // that is used by another ModulePass M2 then do not insert F in
382 // current function pass manager.
Devang Patelf68a3492006-11-07 22:35:17 +0000383 return true;
384}
385
Devang Patel643676c2006-11-11 01:10:19 +0000386/// Augement AvailableAnalysis by adding analysis made available by pass P.
Devang Patele9976aa2006-12-07 19:33:53 +0000387void PMDataManager::recordAvailableAnalysis(Pass *P) {
Devang Patelf60b5d92006-11-14 01:59:59 +0000388
Devang Patel643676c2006-11-11 01:10:19 +0000389 if (const PassInfo *PI = P->getPassInfo()) {
Devang Patelf60b5d92006-11-14 01:59:59 +0000390 AvailableAnalysis[PI] = P;
Devang Patel643676c2006-11-11 01:10:19 +0000391
Devang Patele9976aa2006-12-07 19:33:53 +0000392 //This pass is the current implementation of all of the interfaces it
393 //implements as well.
394 const std::vector<const PassInfo*> &II = PI->getInterfacesImplemented();
395 for (unsigned i = 0, e = II.size(); i != e; ++i)
396 AvailableAnalysis[II[i]] = P;
Devang Patel643676c2006-11-11 01:10:19 +0000397 }
398}
399
Devang Patelf68a3492006-11-07 22:35:17 +0000400/// Remove Analyss not preserved by Pass P
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000401void PMDataManager::removeNotPreservedAnalysis(Pass *P) {
Devang Patel349170f2006-11-11 01:24:55 +0000402 AnalysisUsage AnUsage;
403 P->getAnalysisUsage(AnUsage);
404 const std::vector<AnalysisID> &PreservedSet = AnUsage.getPreservedSet();
Devang Patelf68a3492006-11-07 22:35:17 +0000405
Devang Patelf60b5d92006-11-14 01:59:59 +0000406 for (std::map<AnalysisID, Pass*>::iterator I = AvailableAnalysis.begin(),
Devang Patel349170f2006-11-11 01:24:55 +0000407 E = AvailableAnalysis.end(); I != E; ++I ) {
Devang Patelf60b5d92006-11-14 01:59:59 +0000408 if (std::find(PreservedSet.begin(), PreservedSet.end(), I->first) ==
Devang Patel349170f2006-11-11 01:24:55 +0000409 PreservedSet.end()) {
410 // Remove this analysis
Devang Patelf60b5d92006-11-14 01:59:59 +0000411 std::map<AnalysisID, Pass*>::iterator J = I++;
Devang Patel349170f2006-11-11 01:24:55 +0000412 AvailableAnalysis.erase(J);
413 }
414 }
Devang Patelf68a3492006-11-07 22:35:17 +0000415}
416
Devang Patelca189262006-11-14 03:05:08 +0000417/// Remove analysis passes that are not used any longer
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000418void PMDataManager::removeDeadPasses(Pass *P) {
Devang Patelca189262006-11-14 03:05:08 +0000419
420 for (std::map<Pass *, Pass *>::iterator I = LastUser.begin(),
421 E = LastUser.end(); I !=E; ++I) {
422 if (I->second == P) {
423 Pass *deadPass = I->first;
424 deadPass->releaseMemory();
425
426 std::map<AnalysisID, Pass*>::iterator Pos =
427 AvailableAnalysis.find(deadPass->getPassInfo());
428
429 assert (Pos != AvailableAnalysis.end() &&
430 "Pass is not available");
431 AvailableAnalysis.erase(Pos);
432 }
433 }
434}
435
Devang Patel8f677ce2006-12-07 18:47:25 +0000436/// Add pass P into the PassVector. Update
Devang Patel90b05e02006-11-11 02:04:19 +0000437/// AvailableAnalysis appropriately if ProcessAnalysis is true.
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000438void PMDataManager::addPassToManager (Pass *P,
Devang Patel90b05e02006-11-11 02:04:19 +0000439 bool ProcessAnalysis) {
Devang Patel8cad70d2006-11-11 01:51:02 +0000440
Devang Patel90b05e02006-11-11 02:04:19 +0000441 if (ProcessAnalysis) {
442 // Take a note of analysis required and made available by this pass
Devang Patel8f677ce2006-12-07 18:47:25 +0000443 initializeAnalysisImpl(P);
Devang Patele9976aa2006-12-07 19:33:53 +0000444 recordAvailableAnalysis(P);
Devang Patel90b05e02006-11-11 02:04:19 +0000445
446 // Remove the analysis not preserved by this pass
447 removeNotPreservedAnalysis(P);
448 }
Devang Patel8cad70d2006-11-11 01:51:02 +0000449
450 // Add pass
451 PassVector.push_back(P);
Devang Patel8cad70d2006-11-11 01:51:02 +0000452}
453
Devang Patel07f4f582006-11-14 21:49:36 +0000454// All Required analyses should be available to the pass as it runs! Here
455// we fill in the AnalysisImpls member of the pass so that it can
456// successfully use the getAnalysis() method to retrieve the
457// implementations it needs.
458//
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000459void PMDataManager::initializeAnalysisImpl(Pass *P) {
Devang Patelff631ae2006-11-15 01:27:05 +0000460 AnalysisUsage AnUsage;
461 P->getAnalysisUsage(AnUsage);
Devang Patel07f4f582006-11-14 21:49:36 +0000462
463 for (std::vector<const PassInfo *>::const_iterator
464 I = AnUsage.getRequiredSet().begin(),
465 E = AnUsage.getRequiredSet().end(); I != E; ++I) {
466 Pass *Impl = getAnalysisPass(*I);
467 if (Impl == 0)
468 assert(0 && "Analysis used but not available!");
469 // TODO: P->AnalysisImpls.push_back(std::make_pair(*I, Impl));
470 }
471}
472
Devang Patel6e5a1132006-11-07 21:31:57 +0000473/// BasicBlockPassManager implementation
474
Devang Pateld65e9e92006-11-08 01:31:28 +0000475/// Add pass P into PassVector and return true. If this pass is not
476/// manageable by this manager then return false.
Devang Patel6e5a1132006-11-07 21:31:57 +0000477bool
Devang Pateld65e9e92006-11-08 01:31:28 +0000478BasicBlockPassManager_New::addPass(Pass *P) {
Devang Patel6e5a1132006-11-07 21:31:57 +0000479
480 BasicBlockPass *BP = dynamic_cast<BasicBlockPass*>(P);
481 if (!BP)
482 return false;
483
Devang Patel3c8eb622006-11-07 22:56:50 +0000484 // If this pass does not preserve anlysis that is used by other passes
485 // managed by this manager than it is not a suiable pass for this manager.
Devang Pateld65e9e92006-11-08 01:31:28 +0000486 if (!manageablePass(P))
Devang Patel3c8eb622006-11-07 22:56:50 +0000487 return false;
488
Devang Patel8cad70d2006-11-11 01:51:02 +0000489 addPassToManager (BP);
Devang Patel349170f2006-11-11 01:24:55 +0000490
Devang Patel6e5a1132006-11-07 21:31:57 +0000491 return true;
492}
493
494/// Execute all of the passes scheduled for execution by invoking
495/// runOnBasicBlock method. Keep track of whether any of the passes modifies
496/// the function, and if so, return true.
497bool
498BasicBlockPassManager_New::runOnFunction(Function &F) {
499
500 bool Changed = false;
Devang Patela6b6dcb2006-12-07 18:41:09 +0000501 initializeAnalysisInfo();
Devang Patel050ec722006-11-14 01:23:29 +0000502
Devang Patel6e5a1132006-11-07 21:31:57 +0000503 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
Devang Patel8cad70d2006-11-11 01:51:02 +0000504 for (std::vector<Pass *>::iterator itr = passVectorBegin(),
505 e = passVectorEnd(); itr != e; ++itr) {
Devang Patel6e5a1132006-11-07 21:31:57 +0000506 Pass *P = *itr;
Devang Patel050ec722006-11-14 01:23:29 +0000507
Devang Patele9976aa2006-12-07 19:33:53 +0000508 recordAvailableAnalysis(P);
Devang Patel6e5a1132006-11-07 21:31:57 +0000509 BasicBlockPass *BP = dynamic_cast<BasicBlockPass*>(P);
510 Changed |= BP->runOnBasicBlock(*I);
Devang Patel050ec722006-11-14 01:23:29 +0000511 removeNotPreservedAnalysis(P);
Devang Patelca189262006-11-14 03:05:08 +0000512 removeDeadPasses(P);
Devang Patel6e5a1132006-11-07 21:31:57 +0000513 }
514 return Changed;
515}
516
Devang Patelebba9702006-11-13 22:40:09 +0000517/// Return true IFF AnalysisID AID is currently available.
Devang Patel3f0832a2006-11-14 02:54:23 +0000518Pass * BasicBlockPassManager_New::getAnalysisPassFromManager(AnalysisID AID) {
519 return getAnalysisPass(AID);
Devang Patelebba9702006-11-13 22:40:09 +0000520}
521
Devang Patel0c2012f2006-11-07 21:49:50 +0000522// FunctionPassManager_New implementation
Devang Patel4e12f862006-11-08 10:44:40 +0000523/// Create new Function pass manager
524FunctionPassManager_New::FunctionPassManager_New() {
525 FPM = new FunctionPassManagerImpl_New();
526}
527
528/// add - Add a pass to the queue of passes to run. This passes
529/// ownership of the Pass to the PassManager. When the
530/// PassManager_X is destroyed, the pass will be destroyed as well, so
531/// there is no need to delete the pass. (TODO delete passes.)
532/// This implies that all passes MUST be allocated with 'new'.
Devang Patel9f3083e2006-11-15 19:39:54 +0000533void FunctionPassManager_New::add(Pass *P) {
Devang Patel4e12f862006-11-08 10:44:40 +0000534 FPM->add(P);
535}
536
537/// Execute all of the passes scheduled for execution. Keep
538/// track of whether any of the passes modifies the function, and if
539/// so, return true.
Devang Patel9f3083e2006-11-15 19:39:54 +0000540bool FunctionPassManager_New::runOnModule(Module &M) {
Devang Patel4e12f862006-11-08 10:44:40 +0000541 return FPM->runOnModule(M);
542}
543
Devang Patel9f3083e2006-11-15 19:39:54 +0000544/// run - Execute all of the passes scheduled for execution. Keep
545/// track of whether any of the passes modifies the function, and if
546/// so, return true.
547///
548bool FunctionPassManager_New::run(Function &F) {
549 std::string errstr;
550 if (MP->materializeFunction(&F, &errstr)) {
Bill Wendlingf3baad32006-12-07 01:30:32 +0000551 cerr << "Error reading bytecode file: " << errstr << "\n";
Devang Patel9f3083e2006-11-15 19:39:54 +0000552 abort();
553 }
554 return FPM->runOnFunction(F);
555}
556
557
Devang Patelff631ae2006-11-15 01:27:05 +0000558/// doInitialization - Run all of the initializers for the function passes.
559///
560bool FunctionPassManager_New::doInitialization() {
561 return FPM->doInitialization(*MP->getModule());
562}
563
564/// doFinalization - Run all of the initializers for the function passes.
565///
566bool FunctionPassManager_New::doFinalization() {
567 return FPM->doFinalization(*MP->getModule());
568}
569
Devang Patel4e12f862006-11-08 10:44:40 +0000570// FunctionPassManagerImpl_New implementation
Devang Patel0c2012f2006-11-07 21:49:50 +0000571
Devang Patel0c2012f2006-11-07 21:49:50 +0000572// FunctionPassManager
573
574/// Add pass P into the pass manager queue. If P is a BasicBlockPass then
575/// either use it into active basic block pass manager or create new basic
576/// block pass manager to handle pass P.
577bool
Devang Patel4e12f862006-11-08 10:44:40 +0000578FunctionPassManagerImpl_New::addPass(Pass *P) {
Devang Patel0c2012f2006-11-07 21:49:50 +0000579
580 // If P is a BasicBlockPass then use BasicBlockPassManager_New.
581 if (BasicBlockPass *BP = dynamic_cast<BasicBlockPass*>(P)) {
582
583 if (!activeBBPassManager
584 || !activeBBPassManager->addPass(BP)) {
585
586 activeBBPassManager = new BasicBlockPassManager_New();
Devang Patel90b05e02006-11-11 02:04:19 +0000587 addPassToManager(activeBBPassManager, false);
Devang Pateld65e9e92006-11-08 01:31:28 +0000588 if (!activeBBPassManager->addPass(BP))
589 assert(0 && "Unable to add Pass");
Devang Patel0c2012f2006-11-07 21:49:50 +0000590 }
591 return true;
592 }
593
594 FunctionPass *FP = dynamic_cast<FunctionPass *>(P);
595 if (!FP)
596 return false;
597
Devang Patel3c8eb622006-11-07 22:56:50 +0000598 // If this pass does not preserve anlysis that is used by other passes
599 // managed by this manager than it is not a suiable pass for this manager.
Devang Pateld65e9e92006-11-08 01:31:28 +0000600 if (!manageablePass(P))
Devang Patel3c8eb622006-11-07 22:56:50 +0000601 return false;
602
Devang Patel8cad70d2006-11-11 01:51:02 +0000603 addPassToManager (FP);
Devang Patel0c2012f2006-11-07 21:49:50 +0000604 activeBBPassManager = NULL;
605 return true;
606}
607
608/// Execute all of the passes scheduled for execution by invoking
609/// runOnFunction method. Keep track of whether any of the passes modifies
610/// the function, and if so, return true.
Devang Patel9f3083e2006-11-15 19:39:54 +0000611bool FunctionPassManagerImpl_New::runOnModule(Module &M) {
Devang Patel0c2012f2006-11-07 21:49:50 +0000612
613 bool Changed = false;
Devang Patela6b6dcb2006-12-07 18:41:09 +0000614 initializeAnalysisInfo();
Devang Patel050ec722006-11-14 01:23:29 +0000615
Devang Patel0c2012f2006-11-07 21:49:50 +0000616 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
Devang Patel8cad70d2006-11-11 01:51:02 +0000617 for (std::vector<Pass *>::iterator itr = passVectorBegin(),
618 e = passVectorEnd(); itr != e; ++itr) {
Devang Patel0c2012f2006-11-07 21:49:50 +0000619 Pass *P = *itr;
Devang Patel050ec722006-11-14 01:23:29 +0000620
Devang Patele9976aa2006-12-07 19:33:53 +0000621 recordAvailableAnalysis(P);
Devang Patel0c2012f2006-11-07 21:49:50 +0000622 FunctionPass *FP = dynamic_cast<FunctionPass*>(P);
623 Changed |= FP->runOnFunction(*I);
Devang Patel050ec722006-11-14 01:23:29 +0000624 removeNotPreservedAnalysis(P);
Devang Patelca189262006-11-14 03:05:08 +0000625 removeDeadPasses(P);
Devang Patel0c2012f2006-11-07 21:49:50 +0000626 }
627 return Changed;
628}
629
Devang Patel9f3083e2006-11-15 19:39:54 +0000630/// Execute all of the passes scheduled for execution by invoking
631/// runOnFunction method. Keep track of whether any of the passes modifies
632/// the function, and if so, return true.
633bool FunctionPassManagerImpl_New::runOnFunction(Function &F) {
634
635 bool Changed = false;
Devang Patela6b6dcb2006-12-07 18:41:09 +0000636 initializeAnalysisInfo();
Devang Patel9f3083e2006-11-15 19:39:54 +0000637
638 for (std::vector<Pass *>::iterator itr = passVectorBegin(),
639 e = passVectorEnd(); itr != e; ++itr) {
640 Pass *P = *itr;
641
Devang Patele9976aa2006-12-07 19:33:53 +0000642 recordAvailableAnalysis(P);
Devang Patel9f3083e2006-11-15 19:39:54 +0000643 FunctionPass *FP = dynamic_cast<FunctionPass*>(P);
644 Changed |= FP->runOnFunction(F);
645 removeNotPreservedAnalysis(P);
646 removeDeadPasses(P);
647 }
648 return Changed;
649}
650
651
Devang Patelebba9702006-11-13 22:40:09 +0000652/// Return true IFF AnalysisID AID is currently available.
Devang Patel3f0832a2006-11-14 02:54:23 +0000653Pass *FunctionPassManagerImpl_New::getAnalysisPassFromManager(AnalysisID AID) {
Devang Patelebba9702006-11-13 22:40:09 +0000654
Devang Patel3f0832a2006-11-14 02:54:23 +0000655 Pass *P = getAnalysisPass(AID);
656 if (P)
657 return P;
Devang Patelebba9702006-11-13 22:40:09 +0000658
659 if (activeBBPassManager &&
Devang Patelf60b5d92006-11-14 01:59:59 +0000660 activeBBPassManager->getAnalysisPass(AID) != 0)
Devang Patel3f0832a2006-11-14 02:54:23 +0000661 return activeBBPassManager->getAnalysisPass(AID);
Devang Patelebba9702006-11-13 22:40:09 +0000662
663 // TODO : Check inactive managers
Devang Patel3f0832a2006-11-14 02:54:23 +0000664 return NULL;
Devang Patelebba9702006-11-13 22:40:09 +0000665}
Devang Patel0c2012f2006-11-07 21:49:50 +0000666
Devang Patelff631ae2006-11-15 01:27:05 +0000667inline bool FunctionPassManagerImpl_New::doInitialization(Module &M) {
668 bool Changed = false;
669
670 for (std::vector<Pass *>::iterator itr = passVectorBegin(),
671 e = passVectorEnd(); itr != e; ++itr) {
672 Pass *P = *itr;
673
674 FunctionPass *FP = dynamic_cast<FunctionPass*>(P);
675 Changed |= FP->doInitialization(M);
676 }
677
678 return Changed;
679}
680
681inline bool FunctionPassManagerImpl_New::doFinalization(Module &M) {
682 bool Changed = false;
683
684 for (std::vector<Pass *>::iterator itr = passVectorBegin(),
685 e = passVectorEnd(); itr != e; ++itr) {
686 Pass *P = *itr;
687
688 FunctionPass *FP = dynamic_cast<FunctionPass*>(P);
689 Changed |= FP->doFinalization(M);
690 }
691
692
693 return Changed;
694}
695
696
Devang Patel05e1a972006-11-07 22:03:15 +0000697// ModulePassManager implementation
698
699/// Add P into pass vector if it is manageble. If P is a FunctionPass
Devang Patel4e12f862006-11-08 10:44:40 +0000700/// then use FunctionPassManagerImpl_New to manage it. Return false if P
Devang Patel05e1a972006-11-07 22:03:15 +0000701/// is not manageable by this manager.
702bool
Devang Pateld65e9e92006-11-08 01:31:28 +0000703ModulePassManager_New::addPass(Pass *P) {
Devang Patel05e1a972006-11-07 22:03:15 +0000704
705 // If P is FunctionPass then use function pass maanager.
706 if (FunctionPass *FP = dynamic_cast<FunctionPass*>(P)) {
707
708 activeFunctionPassManager = NULL;
709
710 if (!activeFunctionPassManager
711 || !activeFunctionPassManager->addPass(P)) {
712
Devang Patel4e12f862006-11-08 10:44:40 +0000713 activeFunctionPassManager = new FunctionPassManagerImpl_New();
Devang Patel90b05e02006-11-11 02:04:19 +0000714 addPassToManager(activeFunctionPassManager, false);
Devang Pateld65e9e92006-11-08 01:31:28 +0000715 if (!activeFunctionPassManager->addPass(FP))
716 assert(0 && "Unable to add pass");
Devang Patel05e1a972006-11-07 22:03:15 +0000717 }
718 return true;
719 }
720
721 ModulePass *MP = dynamic_cast<ModulePass *>(P);
722 if (!MP)
723 return false;
724
Devang Patel3c8eb622006-11-07 22:56:50 +0000725 // If this pass does not preserve anlysis that is used by other passes
726 // managed by this manager than it is not a suiable pass for this manager.
Devang Pateld65e9e92006-11-08 01:31:28 +0000727 if (!manageablePass(P))
Devang Patel3c8eb622006-11-07 22:56:50 +0000728 return false;
729
Devang Patel8cad70d2006-11-11 01:51:02 +0000730 addPassToManager(MP);
Devang Patel05e1a972006-11-07 22:03:15 +0000731 activeFunctionPassManager = NULL;
732 return true;
733}
734
735
736/// Execute all of the passes scheduled for execution by invoking
737/// runOnModule method. Keep track of whether any of the passes modifies
738/// the module, and if so, return true.
739bool
740ModulePassManager_New::runOnModule(Module &M) {
741 bool Changed = false;
Devang Patela6b6dcb2006-12-07 18:41:09 +0000742 initializeAnalysisInfo();
Devang Patel050ec722006-11-14 01:23:29 +0000743
Devang Patel8cad70d2006-11-11 01:51:02 +0000744 for (std::vector<Pass *>::iterator itr = passVectorBegin(),
745 e = passVectorEnd(); itr != e; ++itr) {
Devang Patel05e1a972006-11-07 22:03:15 +0000746 Pass *P = *itr;
Devang Patel050ec722006-11-14 01:23:29 +0000747
Devang Patele9976aa2006-12-07 19:33:53 +0000748 recordAvailableAnalysis(P);
Devang Patel05e1a972006-11-07 22:03:15 +0000749 ModulePass *MP = dynamic_cast<ModulePass*>(P);
750 Changed |= MP->runOnModule(M);
Devang Patel050ec722006-11-14 01:23:29 +0000751 removeNotPreservedAnalysis(P);
Devang Patelca189262006-11-14 03:05:08 +0000752 removeDeadPasses(P);
Devang Patel05e1a972006-11-07 22:03:15 +0000753 }
754 return Changed;
755}
756
Devang Patelebba9702006-11-13 22:40:09 +0000757/// Return true IFF AnalysisID AID is currently available.
Devang Patel3f0832a2006-11-14 02:54:23 +0000758Pass *ModulePassManager_New::getAnalysisPassFromManager(AnalysisID AID) {
Devang Patelebba9702006-11-13 22:40:09 +0000759
Devang Patel3f0832a2006-11-14 02:54:23 +0000760
761 Pass *P = getAnalysisPass(AID);
762 if (P)
763 return P;
Devang Patelebba9702006-11-13 22:40:09 +0000764
765 if (activeFunctionPassManager &&
Devang Patelf60b5d92006-11-14 01:59:59 +0000766 activeFunctionPassManager->getAnalysisPass(AID) != 0)
Devang Patel3f0832a2006-11-14 02:54:23 +0000767 return activeFunctionPassManager->getAnalysisPass(AID);
Devang Patelebba9702006-11-13 22:40:09 +0000768
769 // TODO : Check inactive managers
Devang Patel3f0832a2006-11-14 02:54:23 +0000770 return NULL;
Devang Patelebba9702006-11-13 22:40:09 +0000771}
772
773/// Return true IFF AnalysisID AID is currently available.
Devang Patel3f0832a2006-11-14 02:54:23 +0000774Pass *PassManagerImpl_New::getAnalysisPassFromManager(AnalysisID AID) {
Devang Patelebba9702006-11-13 22:40:09 +0000775
Devang Patel3f0832a2006-11-14 02:54:23 +0000776 Pass *P = NULL;
Devang Patel70868442006-11-13 22:53:19 +0000777 for (std::vector<ModulePassManager_New *>::iterator itr = PassManagers.begin(),
Devang Patel3f0832a2006-11-14 02:54:23 +0000778 e = PassManagers.end(); !P && itr != e; ++itr)
779 P = (*itr)->getAnalysisPassFromManager(AID);
780 return P;
Devang Patelebba9702006-11-13 22:40:09 +0000781}
782
Devang Patel1a6eaa42006-11-11 02:22:31 +0000783/// Schedule pass P for execution. Make sure that passes required by
784/// P are run before P is run. Update analysis info maintained by
785/// the manager. Remove dead passes. This is a recursive function.
786void PassManagerImpl_New::schedulePass(Pass *P) {
787
788 AnalysisUsage AnUsage;
789 P->getAnalysisUsage(AnUsage);
790 const std::vector<AnalysisID> &RequiredSet = AnUsage.getRequiredSet();
791 for (std::vector<AnalysisID>::const_iterator I = RequiredSet.begin(),
792 E = RequiredSet.end(); I != E; ++I) {
793
Devang Patel3f0832a2006-11-14 02:54:23 +0000794 Pass *AnalysisPass = getAnalysisPassFromManager(*I);
795 if (!AnalysisPass) {
Devang Patel1a6eaa42006-11-11 02:22:31 +0000796 // Schedule this analysis run first.
Devang Patel3f0832a2006-11-14 02:54:23 +0000797 AnalysisPass = (*I)->createPass();
798 schedulePass(AnalysisPass);
Devang Patel1a6eaa42006-11-11 02:22:31 +0000799 }
Devang Patel3f0832a2006-11-14 02:54:23 +0000800 setLastUser (AnalysisPass, P);
Devang Patel4a3fa4f2006-11-15 01:48:14 +0000801
802 // Prolong live range of analyses that are needed after an analysis pass
803 // is destroyed, for querying by subsequent passes
804 const std::vector<AnalysisID> &IDs = AnUsage.getRequiredTransitiveSet();
805 for (std::vector<AnalysisID>::const_iterator I = IDs.begin(),
806 E = IDs.end(); I != E; ++I) {
807 Pass *AP = getAnalysisPassFromManager(*I);
808 assert (AP && "Analysis pass is not available");
809 setLastUser(AP, P);
810 }
Devang Patel1a6eaa42006-11-11 02:22:31 +0000811 }
Devang Patel1a6eaa42006-11-11 02:22:31 +0000812 addPass(P);
Devang Patel1a6eaa42006-11-11 02:22:31 +0000813}
814
Devang Patelc290c8a2006-11-07 22:23:34 +0000815/// Schedule all passes from the queue by adding them in their
816/// respective manager's queue.
Devang Patel1a6eaa42006-11-11 02:22:31 +0000817void PassManagerImpl_New::schedulePasses() {
818 for (std::vector<Pass *>::iterator I = passVectorBegin(),
819 E = passVectorEnd(); I != E; ++I)
820 schedulePass (*I);
Devang Patelc290c8a2006-11-07 22:23:34 +0000821}
822
823/// Add pass P to the queue of passes to run.
Devang Patel1a6eaa42006-11-11 02:22:31 +0000824void PassManagerImpl_New::add(Pass *P) {
825 // Do not process Analysis now. Analysis is process while scheduling
826 // the pass vector.
Devang Pateldb789fb2006-11-11 02:06:21 +0000827 addPassToManager(P, false);
Devang Patelc290c8a2006-11-07 22:23:34 +0000828}
829
830// PassManager_New implementation
831/// Add P into active pass manager or use new module pass manager to
832/// manage it.
Devang Patel1a6eaa42006-11-11 02:22:31 +0000833bool PassManagerImpl_New::addPass(Pass *P) {
Devang Patelc290c8a2006-11-07 22:23:34 +0000834
Devang Patel6c9f5482006-11-11 00:42:16 +0000835 if (!activeManager || !activeManager->addPass(P)) {
Devang Patelc290c8a2006-11-07 22:23:34 +0000836 activeManager = new ModulePassManager_New();
837 PassManagers.push_back(activeManager);
838 }
839
840 return activeManager->addPass(P);
841}
842
843/// run - Execute all of the passes scheduled for execution. Keep track of
844/// whether any of the passes modifies the module, and if so, return true.
Devang Patel1a6eaa42006-11-11 02:22:31 +0000845bool PassManagerImpl_New::run(Module &M) {
Devang Patelc290c8a2006-11-07 22:23:34 +0000846
847 schedulePasses();
848 bool Changed = false;
849 for (std::vector<ModulePassManager_New *>::iterator itr = PassManagers.begin(),
850 e = PassManagers.end(); itr != e; ++itr) {
851 ModulePassManager_New *pm = *itr;
852 Changed |= pm->runOnModule(M);
853 }
854 return Changed;
855}
Devang Patel376fefa2006-11-08 10:29:57 +0000856
857/// Create new pass manager
858PassManager_New::PassManager_New() {
859 PM = new PassManagerImpl_New();
860}
861
862/// add - Add a pass to the queue of passes to run. This passes ownership of
863/// the Pass to the PassManager. When the PassManager is destroyed, the pass
864/// will be destroyed as well, so there is no need to delete the pass. This
865/// implies that all passes MUST be allocated with 'new'.
866void
867PassManager_New::add(Pass *P) {
868 PM->add(P);
869}
870
871/// run - Execute all of the passes scheduled for execution. Keep track of
872/// whether any of the passes modifies the module, and if so, return true.
873bool
874PassManager_New::run(Module &M) {
875 return PM->run(M);
876}
877