blob: f10bc6f5ef6f7744c367cf056a9c841b04873405 [file] [log] [blame]
Devang Patel6e5a1132006-11-07 21:31:57 +00001//===- PassManager.cpp - LLVM Pass Infrastructure Implementation ----------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Devang Patel6e5a1132006-11-07 21:31:57 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the LLVM Pass Manager infrastructure.
11//
12//===----------------------------------------------------------------------===//
13
14
Devang Patele7599552007-01-12 18:52:44 +000015#include "llvm/PassManagers.h"
Dan Gohman4dbb3012009-09-28 00:27:48 +000016#include "llvm/Assembly/Writer.h"
Devang Patelf1567a52006-12-13 20:03:48 +000017#include "llvm/Support/CommandLine.h"
Devang Patel1c3633e2007-01-29 23:10:37 +000018#include "llvm/Support/Timer.h"
Devang Patel6e5a1132006-11-07 21:31:57 +000019#include "llvm/Module.h"
Devang Patelff631ae2006-11-15 01:27:05 +000020#include "llvm/ModuleProvider.h"
Torok Edwin6dd27302009-07-08 18:01:40 +000021#include "llvm/Support/ErrorHandling.h"
Devang Patelb8817b92006-12-14 00:59:42 +000022#include "llvm/Support/ManagedStatic.h"
Chris Lattner4c1e9542009-03-06 06:45:05 +000023#include "llvm/Support/raw_ostream.h"
Owen Anderson0dd39fd2009-06-17 21:28:54 +000024#include "llvm/System/Mutex.h"
Owen Anderson7d42b952009-06-18 16:54:52 +000025#include "llvm/System/Threading.h"
Gordon Henriksen878114b2008-03-16 04:20:44 +000026#include "llvm-c/Core.h"
Jeff Cohenb622c112007-03-05 00:00:42 +000027#include <algorithm>
Duncan Sands26ff6f92008-10-08 07:23:46 +000028#include <cstdio>
Devang Patelf60b5d92006-11-14 01:59:59 +000029#include <map>
Dan Gohman8c43e412007-10-03 19:04:09 +000030using namespace llvm;
Devang Patelffca9102006-12-15 19:39:30 +000031
Devang Patele7599552007-01-12 18:52:44 +000032// See PassManagers.h for Pass Manager infrastructure overview.
Devang Patel6fea2852006-12-07 18:23:30 +000033
Devang Patelf1567a52006-12-13 20:03:48 +000034namespace llvm {
35
36//===----------------------------------------------------------------------===//
37// Pass debugging information. Often it is useful to find out what pass is
38// running when a crash occurs in a utility. When this library is compiled with
39// debugging on, a command line option (--debug-pass) is enabled that causes the
40// pass name to be printed before it executes.
41//
42
Devang Patel03fb5872006-12-13 21:13:31 +000043// Different debug levels that can be enabled...
44enum PassDebugLevel {
45 None, Arguments, Structure, Executions, Details
46};
47
Devang Patelf1567a52006-12-13 20:03:48 +000048static cl::opt<enum PassDebugLevel>
Devang Patelfd4184322007-01-17 20:33:36 +000049PassDebugging("debug-pass", cl::Hidden,
Devang Patelf1567a52006-12-13 20:03:48 +000050 cl::desc("Print PassManager debugging information"),
51 cl::values(
Devang Patel03fb5872006-12-13 21:13:31 +000052 clEnumVal(None , "disable debug output"),
53 clEnumVal(Arguments , "print pass arguments to pass to 'opt'"),
54 clEnumVal(Structure , "print pass structure before run()"),
55 clEnumVal(Executions, "print pass name before it is executed"),
56 clEnumVal(Details , "print pass details when it is executed"),
Devang Patelf1567a52006-12-13 20:03:48 +000057 clEnumValEnd));
58} // End of llvm namespace
59
Chris Lattnerd4d966f2009-09-15 05:03:04 +000060/// isPassDebuggingExecutionsOrMore - Return true if -debug-pass=Executions
61/// or higher is specified.
62bool PMDataManager::isPassDebuggingExecutionsOrMore() const {
63 return PassDebugging >= Executions;
64}
65
66
67
68
Chris Lattner4c1e9542009-03-06 06:45:05 +000069void PassManagerPrettyStackEntry::print(raw_ostream &OS) const {
70 if (V == 0 && M == 0)
71 OS << "Releasing pass '";
72 else
73 OS << "Running pass '";
74
75 OS << P->getPassName() << "'";
76
77 if (M) {
78 OS << " on module '" << M->getModuleIdentifier() << "'.\n";
79 return;
80 }
81 if (V == 0) {
82 OS << '\n';
83 return;
84 }
85
Dan Gohman79fc0e92009-03-10 18:47:59 +000086 OS << " on ";
Chris Lattner4c1e9542009-03-06 06:45:05 +000087 if (isa<Function>(V))
Dan Gohman79fc0e92009-03-10 18:47:59 +000088 OS << "function";
Chris Lattner4c1e9542009-03-06 06:45:05 +000089 else if (isa<BasicBlock>(V))
Dan Gohman79fc0e92009-03-10 18:47:59 +000090 OS << "basic block";
Chris Lattner4c1e9542009-03-06 06:45:05 +000091 else
Dan Gohman79fc0e92009-03-10 18:47:59 +000092 OS << "value";
93
94 OS << " '";
95 WriteAsOperand(OS, V, /*PrintTy=*/false, M);
96 OS << "'\n";
Chris Lattner4c1e9542009-03-06 06:45:05 +000097}
98
99
Devang Patelffca9102006-12-15 19:39:30 +0000100namespace {
Devang Patelafb1f3622006-12-12 22:35:25 +0000101
Devang Patelf33f3eb2006-12-07 19:21:29 +0000102//===----------------------------------------------------------------------===//
Devang Patel67d6a5e2006-12-19 19:46:59 +0000103// BBPassManager
Devang Patel10c2ca62006-12-12 22:47:13 +0000104//
Devang Patel67d6a5e2006-12-19 19:46:59 +0000105/// BBPassManager manages BasicBlockPass. It batches all the
Devang Patelca58e352006-11-08 10:05:38 +0000106/// pass together and sequence them to process one basic block before
107/// processing next basic block.
Devang Patel67d6a5e2006-12-19 19:46:59 +0000108class VISIBILITY_HIDDEN BBPassManager : public PMDataManager,
109 public FunctionPass {
Devang Patelca58e352006-11-08 10:05:38 +0000110
111public:
Devang Patel8c78a0b2007-05-03 01:11:54 +0000112 static char ID;
Dan Gohman13ab93e2007-10-08 15:08:41 +0000113 explicit BBPassManager(int Depth)
Dan Gohmana79db302008-09-04 17:05:41 +0000114 : PMDataManager(Depth), FunctionPass(&ID) {}
Devang Patelca58e352006-11-08 10:05:38 +0000115
Devang Patelca58e352006-11-08 10:05:38 +0000116 /// Execute all of the passes scheduled for execution. Keep track of
117 /// whether any of the passes modifies the function, and if so, return true.
118 bool runOnFunction(Function &F);
119
Devang Patelf9d96b92006-12-07 19:57:52 +0000120 /// Pass Manager itself does not invalidate any analysis info.
121 void getAnalysisUsage(AnalysisUsage &Info) const {
122 Info.setPreservesAll();
123 }
124
Devang Patel475c4532006-12-08 00:59:05 +0000125 bool doInitialization(Module &M);
126 bool doInitialization(Function &F);
127 bool doFinalization(Module &M);
128 bool doFinalization(Function &F);
129
Devang Patele3858e62007-02-01 22:08:25 +0000130 virtual const char *getPassName() const {
Dan Gohman1e9860a2008-03-13 01:58:48 +0000131 return "BasicBlock Pass Manager";
Devang Patele3858e62007-02-01 22:08:25 +0000132 }
133
Devang Pateleda56172006-12-12 23:34:33 +0000134 // Print passes managed by this manager
135 void dumpPassStructure(unsigned Offset) {
Daniel Dunbar9813b0b2009-07-26 07:49:05 +0000136 llvm::errs() << std::string(Offset*2, ' ') << "BasicBlockPass Manager\n";
Devang Patelabfbe3b2006-12-16 00:56:26 +0000137 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
138 BasicBlockPass *BP = getContainedPass(Index);
139 BP->dumpPassStructure(Offset + 1);
140 dumpLastUses(BP, Offset+1);
Devang Pateleda56172006-12-12 23:34:33 +0000141 }
142 }
Devang Patelabfbe3b2006-12-16 00:56:26 +0000143
144 BasicBlockPass *getContainedPass(unsigned N) {
Chris Lattner60987362009-03-06 05:53:14 +0000145 assert(N < PassVector.size() && "Pass number out of range!");
Devang Patelabfbe3b2006-12-16 00:56:26 +0000146 BasicBlockPass *BP = static_cast<BasicBlockPass *>(PassVector[N]);
147 return BP;
148 }
Devang Patel3b3f8992007-01-11 01:10:25 +0000149
Devang Patel28349ab2007-02-27 15:00:39 +0000150 virtual PassManagerType getPassManagerType() const {
Devang Patel3b3f8992007-01-11 01:10:25 +0000151 return PMT_BasicBlockPassManager;
152 }
Devang Patelca58e352006-11-08 10:05:38 +0000153};
154
Devang Patel8c78a0b2007-05-03 01:11:54 +0000155char BBPassManager::ID = 0;
Devang Patele7599552007-01-12 18:52:44 +0000156}
Devang Patel67d6a5e2006-12-19 19:46:59 +0000157
Devang Patele7599552007-01-12 18:52:44 +0000158namespace llvm {
Devang Patelca58e352006-11-08 10:05:38 +0000159
Devang Patel10c2ca62006-12-12 22:47:13 +0000160//===----------------------------------------------------------------------===//
Devang Patel67d6a5e2006-12-19 19:46:59 +0000161// FunctionPassManagerImpl
Devang Patel10c2ca62006-12-12 22:47:13 +0000162//
Devang Patel67d6a5e2006-12-19 19:46:59 +0000163/// FunctionPassManagerImpl manages FPPassManagers
164class FunctionPassManagerImpl : public Pass,
Devang Patelad98d232007-01-11 22:15:30 +0000165 public PMDataManager,
166 public PMTopLevelManager {
Torok Edwin24c78352009-06-29 18:49:09 +0000167private:
168 bool wasRun;
Devang Patel67d6a5e2006-12-19 19:46:59 +0000169public:
Devang Patel8c78a0b2007-05-03 01:11:54 +0000170 static char ID;
Dan Gohman13ab93e2007-10-08 15:08:41 +0000171 explicit FunctionPassManagerImpl(int Depth) :
Dan Gohmana79db302008-09-04 17:05:41 +0000172 Pass(&ID), PMDataManager(Depth),
Torok Edwin24c78352009-06-29 18:49:09 +0000173 PMTopLevelManager(TLM_Function), wasRun(false) { }
Devang Patel67d6a5e2006-12-19 19:46:59 +0000174
175 /// add - Add a pass to the queue of passes to run. This passes ownership of
176 /// the Pass to the PassManager. When the PassManager is destroyed, the pass
177 /// will be destroyed as well, so there is no need to delete the pass. This
178 /// implies that all passes MUST be allocated with 'new'.
179 void add(Pass *P) {
180 schedulePass(P);
181 }
182
Torok Edwin24c78352009-06-29 18:49:09 +0000183 // Prepare for running an on the fly pass, freeing memory if needed
184 // from a previous run.
185 void releaseMemoryOnTheFly();
186
Devang Patel67d6a5e2006-12-19 19:46:59 +0000187 /// run - Execute all of the passes scheduled for execution. Keep track of
188 /// whether any of the passes modifies the module, and if so, return true.
189 bool run(Function &F);
190
191 /// doInitialization - Run all of the initializers for the function passes.
192 ///
193 bool doInitialization(Module &M);
194
Dan Gohmane6656eb2007-07-30 14:51:13 +0000195 /// doFinalization - Run all of the finalizers for the function passes.
Devang Patel67d6a5e2006-12-19 19:46:59 +0000196 ///
197 bool doFinalization(Module &M);
198
199 /// Pass Manager itself does not invalidate any analysis info.
200 void getAnalysisUsage(AnalysisUsage &Info) const {
201 Info.setPreservesAll();
202 }
203
204 inline void addTopLevelPass(Pass *P) {
205
206 if (ImmutablePass *IP = dynamic_cast<ImmutablePass *> (P)) {
207
208 // P is a immutable pass and it will be managed by this
209 // top level manager. Set up analysis resolver to connect them.
Devang Patelb66334b2007-01-05 22:47:07 +0000210 AnalysisResolver *AR = new AnalysisResolver(*this);
Devang Patel67d6a5e2006-12-19 19:46:59 +0000211 P->setResolver(AR);
212 initializeAnalysisImpl(P);
213 addImmutablePass(IP);
214 recordAvailableAnalysis(IP);
Devang Patel0f080042007-01-12 17:23:48 +0000215 } else {
Devang Patel0f080042007-01-12 17:23:48 +0000216 P->assignPassManager(activeStack);
Devang Patel67d6a5e2006-12-19 19:46:59 +0000217 }
Devang Patel0f080042007-01-12 17:23:48 +0000218
Devang Patel67d6a5e2006-12-19 19:46:59 +0000219 }
220
221 FPPassManager *getContainedManager(unsigned N) {
Chris Lattner60987362009-03-06 05:53:14 +0000222 assert(N < PassManagers.size() && "Pass number out of range!");
Devang Patel67d6a5e2006-12-19 19:46:59 +0000223 FPPassManager *FP = static_cast<FPPassManager *>(PassManagers[N]);
224 return FP;
225 }
Devang Patel67d6a5e2006-12-19 19:46:59 +0000226};
227
Devang Patel8c78a0b2007-05-03 01:11:54 +0000228char FunctionPassManagerImpl::ID = 0;
Devang Patel67d6a5e2006-12-19 19:46:59 +0000229//===----------------------------------------------------------------------===//
230// MPPassManager
231//
232/// MPPassManager manages ModulePasses and function pass managers.
Dan Gohmandfdf2c02008-03-11 16:18:48 +0000233/// It batches all Module passes and function pass managers together and
234/// sequences them to process one module.
Devang Patel67d6a5e2006-12-19 19:46:59 +0000235class MPPassManager : public Pass, public PMDataManager {
Devang Patelca58e352006-11-08 10:05:38 +0000236public:
Devang Patel8c78a0b2007-05-03 01:11:54 +0000237 static char ID;
Dan Gohman13ab93e2007-10-08 15:08:41 +0000238 explicit MPPassManager(int Depth) :
Dan Gohmana79db302008-09-04 17:05:41 +0000239 Pass(&ID), PMDataManager(Depth) { }
Devang Patel2ff44922007-04-16 20:39:59 +0000240
241 // Delete on the fly managers.
242 virtual ~MPPassManager() {
Devang Patel68f72b12007-04-26 17:50:19 +0000243 for (std::map<Pass *, FunctionPassManagerImpl *>::iterator
Devang Patel2ff44922007-04-16 20:39:59 +0000244 I = OnTheFlyManagers.begin(), E = OnTheFlyManagers.end();
245 I != E; ++I) {
Devang Patel68f72b12007-04-26 17:50:19 +0000246 FunctionPassManagerImpl *FPP = I->second;
Devang Patel2ff44922007-04-16 20:39:59 +0000247 delete FPP;
248 }
249 }
250
Devang Patelca58e352006-11-08 10:05:38 +0000251 /// run - Execute all of the passes scheduled for execution. Keep track of
252 /// whether any of the passes modifies the module, and if so, return true.
253 bool runOnModule(Module &M);
Devang Patelebba9702006-11-13 22:40:09 +0000254
Devang Patelf9d96b92006-12-07 19:57:52 +0000255 /// Pass Manager itself does not invalidate any analysis info.
256 void getAnalysisUsage(AnalysisUsage &Info) const {
257 Info.setPreservesAll();
258 }
259
Devang Patele64d3052007-04-16 20:12:57 +0000260 /// Add RequiredPass into list of lower level passes required by pass P.
261 /// RequiredPass is run on the fly by Pass Manager when P requests it
262 /// through getAnalysis interface.
263 virtual void addLowerLevelRequiredPass(Pass *P, Pass *RequiredPass);
264
Devang Patel69e9f6d2007-04-16 20:27:05 +0000265 /// Return function pass corresponding to PassInfo PI, that is
266 /// required by module pass MP. Instantiate analysis pass, by using
267 /// its runOnFunction() for function F.
268 virtual Pass* getOnTheFlyPass(Pass *MP, const PassInfo *PI, Function &F);
269
Devang Patele3858e62007-02-01 22:08:25 +0000270 virtual const char *getPassName() const {
271 return "Module Pass Manager";
272 }
273
Devang Pateleda56172006-12-12 23:34:33 +0000274 // Print passes managed by this manager
275 void dumpPassStructure(unsigned Offset) {
Daniel Dunbar9813b0b2009-07-26 07:49:05 +0000276 llvm::errs() << std::string(Offset*2, ' ') << "ModulePass Manager\n";
Devang Patelabfbe3b2006-12-16 00:56:26 +0000277 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
278 ModulePass *MP = getContainedPass(Index);
279 MP->dumpPassStructure(Offset + 1);
Dan Gohman83ff1842009-07-01 23:12:33 +0000280 std::map<Pass *, FunctionPassManagerImpl *>::const_iterator I =
281 OnTheFlyManagers.find(MP);
282 if (I != OnTheFlyManagers.end())
283 I->second->dumpPassStructure(Offset + 2);
Devang Patelabfbe3b2006-12-16 00:56:26 +0000284 dumpLastUses(MP, Offset+1);
Devang Pateleda56172006-12-12 23:34:33 +0000285 }
286 }
287
Devang Patelabfbe3b2006-12-16 00:56:26 +0000288 ModulePass *getContainedPass(unsigned N) {
Chris Lattner60987362009-03-06 05:53:14 +0000289 assert(N < PassVector.size() && "Pass number out of range!");
290 return static_cast<ModulePass *>(PassVector[N]);
Devang Patelabfbe3b2006-12-16 00:56:26 +0000291 }
292
Devang Patel28349ab2007-02-27 15:00:39 +0000293 virtual PassManagerType getPassManagerType() const {
294 return PMT_ModulePassManager;
295 }
Devang Patel69e9f6d2007-04-16 20:27:05 +0000296
297 private:
298 /// Collection of on the fly FPPassManagers. These managers manage
299 /// function passes that are required by module passes.
Devang Patel68f72b12007-04-26 17:50:19 +0000300 std::map<Pass *, FunctionPassManagerImpl *> OnTheFlyManagers;
Devang Patelca58e352006-11-08 10:05:38 +0000301};
302
Devang Patel8c78a0b2007-05-03 01:11:54 +0000303char MPPassManager::ID = 0;
Devang Patel10c2ca62006-12-12 22:47:13 +0000304//===----------------------------------------------------------------------===//
Devang Patel67d6a5e2006-12-19 19:46:59 +0000305// PassManagerImpl
Devang Patel10c2ca62006-12-12 22:47:13 +0000306//
Devang Patel09f162c2007-05-01 21:15:47 +0000307
Devang Patel67d6a5e2006-12-19 19:46:59 +0000308/// PassManagerImpl manages MPPassManagers
309class PassManagerImpl : public Pass,
Devang Patelad98d232007-01-11 22:15:30 +0000310 public PMDataManager,
311 public PMTopLevelManager {
Devang Patel376fefa2006-11-08 10:29:57 +0000312
313public:
Devang Patel8c78a0b2007-05-03 01:11:54 +0000314 static char ID;
Dan Gohman13ab93e2007-10-08 15:08:41 +0000315 explicit PassManagerImpl(int Depth) :
Dan Gohmana79db302008-09-04 17:05:41 +0000316 Pass(&ID), PMDataManager(Depth), PMTopLevelManager(TLM_Pass) { }
Devang Patel4c36e6b2006-12-07 23:24:58 +0000317
Devang Patel376fefa2006-11-08 10:29:57 +0000318 /// add - Add a pass to the queue of passes to run. This passes ownership of
319 /// the Pass to the PassManager. When the PassManager is destroyed, the pass
320 /// will be destroyed as well, so there is no need to delete the pass. This
321 /// implies that all passes MUST be allocated with 'new'.
Devang Patel31217af2006-12-07 21:32:57 +0000322 void add(Pass *P) {
Devang Pateldf6c9ae2006-12-08 22:34:02 +0000323 schedulePass(P);
Devang Patel31217af2006-12-07 21:32:57 +0000324 }
Devang Patel376fefa2006-11-08 10:29:57 +0000325
326 /// run - Execute all of the passes scheduled for execution. Keep track of
327 /// whether any of the passes modifies the module, and if so, return true.
328 bool run(Module &M);
329
Devang Patelf9d96b92006-12-07 19:57:52 +0000330 /// Pass Manager itself does not invalidate any analysis info.
331 void getAnalysisUsage(AnalysisUsage &Info) const {
332 Info.setPreservesAll();
333 }
334
Devang Patelabcd1d32006-12-07 21:27:23 +0000335 inline void addTopLevelPass(Pass *P) {
Devang Patelfa971cd2006-12-08 23:57:43 +0000336 if (ImmutablePass *IP = dynamic_cast<ImmutablePass *> (P)) {
Devang Pateld440cd92006-12-08 23:53:00 +0000337
338 // P is a immutable pass and it will be managed by this
339 // top level manager. Set up analysis resolver to connect them.
Devang Patelb66334b2007-01-05 22:47:07 +0000340 AnalysisResolver *AR = new AnalysisResolver(*this);
Devang Pateld440cd92006-12-08 23:53:00 +0000341 P->setResolver(AR);
Devang Patel95257542006-12-12 22:21:37 +0000342 initializeAnalysisImpl(P);
Devang Patelfa971cd2006-12-08 23:57:43 +0000343 addImmutablePass(IP);
Devang Patel95257542006-12-12 22:21:37 +0000344 recordAvailableAnalysis(IP);
Devang Patel0f080042007-01-12 17:23:48 +0000345 } else {
Devang Patel0f080042007-01-12 17:23:48 +0000346 P->assignPassManager(activeStack);
Devang Pateld440cd92006-12-08 23:53:00 +0000347 }
Devang Patelabcd1d32006-12-07 21:27:23 +0000348 }
349
Devang Patel67d6a5e2006-12-19 19:46:59 +0000350 MPPassManager *getContainedManager(unsigned N) {
Chris Lattner60987362009-03-06 05:53:14 +0000351 assert(N < PassManagers.size() && "Pass number out of range!");
Devang Patel67d6a5e2006-12-19 19:46:59 +0000352 MPPassManager *MP = static_cast<MPPassManager *>(PassManagers[N]);
353 return MP;
354 }
Devang Patel376fefa2006-11-08 10:29:57 +0000355};
356
Devang Patel8c78a0b2007-05-03 01:11:54 +0000357char PassManagerImpl::ID = 0;
Devang Patel1c3633e2007-01-29 23:10:37 +0000358} // End of llvm namespace
359
360namespace {
361
362//===----------------------------------------------------------------------===//
Chris Lattner4c1e9542009-03-06 06:45:05 +0000363/// TimingInfo Class - This class is used to calculate information about the
364/// amount of time each pass takes to execute. This only happens when
365/// -time-passes is enabled on the command line.
366///
Owen Anderson0dd39fd2009-06-17 21:28:54 +0000367
Owen Anderson5a6960f2009-06-18 20:51:00 +0000368static ManagedStatic<sys::SmartMutex<true> > TimingInfoMutex;
Owen Anderson0dd39fd2009-06-17 21:28:54 +0000369
Devang Patel1c3633e2007-01-29 23:10:37 +0000370class VISIBILITY_HIDDEN TimingInfo {
371 std::map<Pass*, Timer> TimingData;
372 TimerGroup TG;
373
374public:
375 // Use 'create' member to get this.
376 TimingInfo() : TG("... Pass execution timing report ...") {}
377
378 // TimingDtor - Print out information about timing information
379 ~TimingInfo() {
380 // Delete all of the timers...
381 TimingData.clear();
382 // TimerGroup is deleted next, printing the report.
383 }
384
385 // createTheTimeInfo - This method either initializes the TheTimeInfo pointer
386 // to a non null value (if the -time-passes option is enabled) or it leaves it
387 // null. It may be called multiple times.
388 static void createTheTimeInfo();
389
Dan Gohman277e7672009-09-28 00:07:05 +0000390 /// passStarted - This method creates a timer for the given pass if it doesn't
391 /// already have one, and starts the timer.
392 Timer *passStarted(Pass *P) {
Devang Patel1c3633e2007-01-29 23:10:37 +0000393 if (dynamic_cast<PMDataManager *>(P))
Dan Gohman277e7672009-09-28 00:07:05 +0000394 return 0;
Devang Patel1c3633e2007-01-29 23:10:37 +0000395
Owen Anderson5c96ef72009-07-07 18:33:04 +0000396 sys::SmartScopedLock<true> Lock(*TimingInfoMutex);
Devang Patel1c3633e2007-01-29 23:10:37 +0000397 std::map<Pass*, Timer>::iterator I = TimingData.find(P);
398 if (I == TimingData.end())
399 I=TimingData.insert(std::make_pair(P, Timer(P->getPassName(), TG))).first;
Dan Gohman277e7672009-09-28 00:07:05 +0000400 Timer *T = &I->second;
401 T->startTimer();
402 return T;
Devang Patel1c3633e2007-01-29 23:10:37 +0000403 }
404};
405
Devang Patel1c3633e2007-01-29 23:10:37 +0000406} // End of anon namespace
Devang Patelca58e352006-11-08 10:05:38 +0000407
Dan Gohmand78c4002008-05-13 00:00:25 +0000408static TimingInfo *TheTimeInfo;
409
Devang Patela1514cb2006-12-07 19:39:39 +0000410//===----------------------------------------------------------------------===//
Devang Patelafb1f3622006-12-12 22:35:25 +0000411// PMTopLevelManager implementation
412
Devang Patel4268fc02007-01-16 02:00:38 +0000413/// Initialize top level manager. Create first pass manager.
Chris Lattner4c1e9542009-03-06 06:45:05 +0000414PMTopLevelManager::PMTopLevelManager(enum TopLevelManagerType t) {
Devang Patel4268fc02007-01-16 02:00:38 +0000415 if (t == TLM_Pass) {
416 MPPassManager *MPP = new MPPassManager(1);
417 MPP->setTopLevelManager(this);
418 addPassManager(MPP);
419 activeStack.push(MPP);
Chris Lattner4c1e9542009-03-06 06:45:05 +0000420 } else if (t == TLM_Function) {
Devang Patel4268fc02007-01-16 02:00:38 +0000421 FPPassManager *FPP = new FPPassManager(1);
422 FPP->setTopLevelManager(this);
423 addPassManager(FPP);
424 activeStack.push(FPP);
425 }
426}
427
Devang Patelafb1f3622006-12-12 22:35:25 +0000428/// Set pass P as the last user of the given analysis passes.
Devang Patel8adae862007-07-20 18:04:54 +0000429void PMTopLevelManager::setLastUser(SmallVector<Pass *, 12> &AnalysisPasses,
Devang Patelafb1f3622006-12-12 22:35:25 +0000430 Pass *P) {
Devang Patel8adae862007-07-20 18:04:54 +0000431 for (SmallVector<Pass *, 12>::iterator I = AnalysisPasses.begin(),
Devang Patelafb1f3622006-12-12 22:35:25 +0000432 E = AnalysisPasses.end(); I != E; ++I) {
433 Pass *AP = *I;
434 LastUser[AP] = P;
Devang Patel01919d22007-03-08 19:05:01 +0000435
436 if (P == AP)
437 continue;
438
Devang Patelafb1f3622006-12-12 22:35:25 +0000439 // If AP is the last user of other passes then make P last user of
440 // such passes.
Devang Patelc68a0b62008-08-12 00:26:16 +0000441 for (DenseMap<Pass *, Pass *>::iterator LUI = LastUser.begin(),
Devang Patelafb1f3622006-12-12 22:35:25 +0000442 LUE = LastUser.end(); LUI != LUE; ++LUI) {
443 if (LUI->second == AP)
Devang Patelc68a0b62008-08-12 00:26:16 +0000444 // DenseMap iterator is not invalidated here because
445 // this is just updating exisitng entry.
Devang Patelafb1f3622006-12-12 22:35:25 +0000446 LastUser[LUI->first] = P;
447 }
448 }
Devang Patelafb1f3622006-12-12 22:35:25 +0000449}
450
451/// Collect passes whose last user is P
Devang Patel8adae862007-07-20 18:04:54 +0000452void PMTopLevelManager::collectLastUses(SmallVector<Pass *, 12> &LastUses,
Devang Patelc68a0b62008-08-12 00:26:16 +0000453 Pass *P) {
454 DenseMap<Pass *, SmallPtrSet<Pass *, 8> >::iterator DMI =
455 InversedLastUser.find(P);
456 if (DMI == InversedLastUser.end())
457 return;
458
459 SmallPtrSet<Pass *, 8> &LU = DMI->second;
460 for (SmallPtrSet<Pass *, 8>::iterator I = LU.begin(),
461 E = LU.end(); I != E; ++I) {
462 LastUses.push_back(*I);
463 }
464
Devang Patelafb1f3622006-12-12 22:35:25 +0000465}
466
Devang Patelec9e1a60a2008-08-11 21:13:39 +0000467AnalysisUsage *PMTopLevelManager::findAnalysisUsage(Pass *P) {
468 AnalysisUsage *AnUsage = NULL;
469 DenseMap<Pass *, AnalysisUsage *>::iterator DMI = AnUsageMap.find(P);
470 if (DMI != AnUsageMap.end())
471 AnUsage = DMI->second;
472 else {
473 AnUsage = new AnalysisUsage();
474 P->getAnalysisUsage(*AnUsage);
475 AnUsageMap[P] = AnUsage;
476 }
477 return AnUsage;
478}
479
Devang Patelafb1f3622006-12-12 22:35:25 +0000480/// Schedule pass P for execution. Make sure that passes required by
481/// P are run before P is run. Update analysis info maintained by
482/// the manager. Remove dead passes. This is a recursive function.
483void PMTopLevelManager::schedulePass(Pass *P) {
484
Devang Patel3312f752007-01-16 21:43:18 +0000485 // TODO : Allocate function manager for this pass, other wise required set
486 // may be inserted into previous function manager
Devang Patelafb1f3622006-12-12 22:35:25 +0000487
Devang Pateld74ede72007-03-06 01:06:16 +0000488 // Give pass a chance to prepare the stage.
489 P->preparePassManager(activeStack);
490
Devang Patel864970e2008-03-18 00:39:19 +0000491 // If P is an analysis pass and it is available then do not
492 // generate the analysis again. Stale analysis info should not be
493 // available at this point.
Devang Patel718da662008-03-19 21:56:59 +0000494 if (P->getPassInfo() &&
Nuno Lopes0460bb22008-11-04 23:03:58 +0000495 P->getPassInfo()->isAnalysis() && findAnalysisPass(P->getPassInfo())) {
496 delete P;
Devang Patelaf75ab82008-03-19 00:48:41 +0000497 return;
Nuno Lopes0460bb22008-11-04 23:03:58 +0000498 }
Devang Patel864970e2008-03-18 00:39:19 +0000499
Devang Patelec9e1a60a2008-08-11 21:13:39 +0000500 AnalysisUsage *AnUsage = findAnalysisUsage(P);
501
Devang Patelfdee7032008-08-14 23:07:48 +0000502 bool checkAnalysis = true;
503 while (checkAnalysis) {
504 checkAnalysis = false;
505
506 const AnalysisUsage::VectorType &RequiredSet = AnUsage->getRequiredSet();
507 for (AnalysisUsage::VectorType::const_iterator I = RequiredSet.begin(),
508 E = RequiredSet.end(); I != E; ++I) {
509
510 Pass *AnalysisPass = findAnalysisPass(*I);
511 if (!AnalysisPass) {
512 AnalysisPass = (*I)->createPass();
513 if (P->getPotentialPassManagerType () ==
514 AnalysisPass->getPotentialPassManagerType())
515 // Schedule analysis pass that is managed by the same pass manager.
516 schedulePass(AnalysisPass);
517 else if (P->getPotentialPassManagerType () >
518 AnalysisPass->getPotentialPassManagerType()) {
519 // Schedule analysis pass that is managed by a new manager.
520 schedulePass(AnalysisPass);
521 // Recheck analysis passes to ensure that required analysises that
522 // are already checked are still available.
523 checkAnalysis = true;
524 }
525 else
526 // Do not schedule this analysis. Lower level analsyis
527 // passes are run on the fly.
528 delete AnalysisPass;
529 }
Devang Patelafb1f3622006-12-12 22:35:25 +0000530 }
531 }
532
533 // Now all required passes are available.
534 addTopLevelPass(P);
535}
536
537/// Find the pass that implements Analysis AID. Search immutable
538/// passes and all pass managers. If desired pass is not found
539/// then return NULL.
540Pass *PMTopLevelManager::findAnalysisPass(AnalysisID AID) {
541
542 Pass *P = NULL;
Devang Patelcd6ba152006-12-12 22:50:05 +0000543 // Check pass managers
Devang Patel0d29ae02008-08-12 15:44:31 +0000544 for (SmallVector<PMDataManager *, 8>::iterator I = PassManagers.begin(),
Devang Patelcd6ba152006-12-12 22:50:05 +0000545 E = PassManagers.end(); P == NULL && I != E; ++I) {
Dan Gohman73caf5f2008-03-13 01:48:32 +0000546 PMDataManager *PMD = *I;
Devang Patelcd6ba152006-12-12 22:50:05 +0000547 P = PMD->findAnalysisPass(AID, false);
548 }
549
550 // Check other pass managers
Chris Lattner60987362009-03-06 05:53:14 +0000551 for (SmallVector<PMDataManager *, 8>::iterator
552 I = IndirectPassManagers.begin(),
Devang Patelcd6ba152006-12-12 22:50:05 +0000553 E = IndirectPassManagers.end(); P == NULL && I != E; ++I)
554 P = (*I)->findAnalysisPass(AID, false);
555
Devang Patel0d29ae02008-08-12 15:44:31 +0000556 for (SmallVector<ImmutablePass *, 8>::iterator I = ImmutablePasses.begin(),
Devang Patelafb1f3622006-12-12 22:35:25 +0000557 E = ImmutablePasses.end(); P == NULL && I != E; ++I) {
558 const PassInfo *PI = (*I)->getPassInfo();
559 if (PI == AID)
560 P = *I;
561
562 // If Pass not found then check the interfaces implemented by Immutable Pass
563 if (!P) {
Dan Gohman929391a2008-01-29 12:09:55 +0000564 const std::vector<const PassInfo*> &ImmPI =
565 PI->getInterfacesImplemented();
Devang Patel56d48ec2006-12-15 22:57:49 +0000566 if (std::find(ImmPI.begin(), ImmPI.end(), AID) != ImmPI.end())
567 P = *I;
Devang Patelafb1f3622006-12-12 22:35:25 +0000568 }
569 }
570
Devang Patelafb1f3622006-12-12 22:35:25 +0000571 return P;
572}
573
Devang Pateleda56172006-12-12 23:34:33 +0000574// Print passes managed by this top level manager.
Devang Patel991aeba2006-12-15 20:13:01 +0000575void PMTopLevelManager::dumpPasses() const {
Devang Pateleda56172006-12-12 23:34:33 +0000576
Devang Patelfd4184322007-01-17 20:33:36 +0000577 if (PassDebugging < Structure)
Devang Patel67d6a5e2006-12-19 19:46:59 +0000578 return;
579
Devang Pateleda56172006-12-12 23:34:33 +0000580 // Print out the immutable passes
581 for (unsigned i = 0, e = ImmutablePasses.size(); i != e; ++i) {
582 ImmutablePasses[i]->dumpPassStructure(0);
583 }
584
Dan Gohman73caf5f2008-03-13 01:48:32 +0000585 // Every class that derives from PMDataManager also derives from Pass
586 // (sometimes indirectly), but there's no inheritance relationship
587 // between PMDataManager and Pass, so we have to dynamic_cast to get
588 // from a PMDataManager* to a Pass*.
Devang Patel0d29ae02008-08-12 15:44:31 +0000589 for (SmallVector<PMDataManager *, 8>::const_iterator I = PassManagers.begin(),
Devang Pateleda56172006-12-12 23:34:33 +0000590 E = PassManagers.end(); I != E; ++I)
Dan Gohman73caf5f2008-03-13 01:48:32 +0000591 dynamic_cast<Pass *>(*I)->dumpPassStructure(1);
Devang Pateleda56172006-12-12 23:34:33 +0000592}
593
Devang Patel991aeba2006-12-15 20:13:01 +0000594void PMTopLevelManager::dumpArguments() const {
Devang Patelcfd70c42006-12-13 22:10:00 +0000595
Devang Patelfd4184322007-01-17 20:33:36 +0000596 if (PassDebugging < Arguments)
Devang Patelcfd70c42006-12-13 22:10:00 +0000597 return;
598
Daniel Dunbar9813b0b2009-07-26 07:49:05 +0000599 errs() << "Pass Arguments: ";
Devang Patel0d29ae02008-08-12 15:44:31 +0000600 for (SmallVector<PMDataManager *, 8>::const_iterator I = PassManagers.begin(),
Chris Lattner4c1e9542009-03-06 06:45:05 +0000601 E = PassManagers.end(); I != E; ++I)
602 (*I)->dumpPassArguments();
Daniel Dunbar9813b0b2009-07-26 07:49:05 +0000603 errs() << "\n";
Devang Patelcfd70c42006-12-13 22:10:00 +0000604}
605
Devang Patele3068402006-12-21 00:16:50 +0000606void PMTopLevelManager::initializeAllAnalysisInfo() {
Devang Patel0d29ae02008-08-12 15:44:31 +0000607 for (SmallVector<PMDataManager *, 8>::iterator I = PassManagers.begin(),
Chris Lattner4c1e9542009-03-06 06:45:05 +0000608 E = PassManagers.end(); I != E; ++I)
609 (*I)->initializeAnalysisInfo();
Devang Patele3068402006-12-21 00:16:50 +0000610
611 // Initailize other pass managers
Devang Patel0d29ae02008-08-12 15:44:31 +0000612 for (SmallVector<PMDataManager *, 8>::iterator I = IndirectPassManagers.begin(),
Devang Patele3068402006-12-21 00:16:50 +0000613 E = IndirectPassManagers.end(); I != E; ++I)
614 (*I)->initializeAnalysisInfo();
Devang Patelc68a0b62008-08-12 00:26:16 +0000615
Chris Lattner60987362009-03-06 05:53:14 +0000616 for (DenseMap<Pass *, Pass *>::iterator DMI = LastUser.begin(),
Devang Patelc68a0b62008-08-12 00:26:16 +0000617 DME = LastUser.end(); DMI != DME; ++DMI) {
618 DenseMap<Pass *, SmallPtrSet<Pass *, 8> >::iterator InvDMI =
619 InversedLastUser.find(DMI->second);
620 if (InvDMI != InversedLastUser.end()) {
621 SmallPtrSet<Pass *, 8> &L = InvDMI->second;
622 L.insert(DMI->first);
623 } else {
624 SmallPtrSet<Pass *, 8> L; L.insert(DMI->first);
625 InversedLastUser[DMI->second] = L;
626 }
627 }
Devang Patele3068402006-12-21 00:16:50 +0000628}
629
Devang Patele7599552007-01-12 18:52:44 +0000630/// Destructor
631PMTopLevelManager::~PMTopLevelManager() {
Devang Patel0d29ae02008-08-12 15:44:31 +0000632 for (SmallVector<PMDataManager *, 8>::iterator I = PassManagers.begin(),
Devang Patele7599552007-01-12 18:52:44 +0000633 E = PassManagers.end(); I != E; ++I)
634 delete *I;
635
Devang Patel0d29ae02008-08-12 15:44:31 +0000636 for (SmallVector<ImmutablePass *, 8>::iterator
Devang Patele7599552007-01-12 18:52:44 +0000637 I = ImmutablePasses.begin(), E = ImmutablePasses.end(); I != E; ++I)
638 delete *I;
Devang Patelec9e1a60a2008-08-11 21:13:39 +0000639
640 for (DenseMap<Pass *, AnalysisUsage *>::iterator DMI = AnUsageMap.begin(),
Chris Lattner60987362009-03-06 05:53:14 +0000641 DME = AnUsageMap.end(); DMI != DME; ++DMI)
642 delete DMI->second;
Devang Patele7599552007-01-12 18:52:44 +0000643}
644
Devang Patelafb1f3622006-12-12 22:35:25 +0000645//===----------------------------------------------------------------------===//
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000646// PMDataManager implementation
Devang Patelf68a3492006-11-07 22:35:17 +0000647
Devang Patel643676c2006-11-11 01:10:19 +0000648/// Augement AvailableAnalysis by adding analysis made available by pass P.
Devang Patele9976aa2006-12-07 19:33:53 +0000649void PMDataManager::recordAvailableAnalysis(Pass *P) {
Chris Lattner60987362009-03-06 05:53:14 +0000650 const PassInfo *PI = P->getPassInfo();
651 if (PI == 0) return;
652
653 AvailableAnalysis[PI] = P;
Devang Patel643676c2006-11-11 01:10:19 +0000654
Chris Lattner60987362009-03-06 05:53:14 +0000655 //This pass is the current implementation of all of the interfaces it
656 //implements as well.
657 const std::vector<const PassInfo*> &II = PI->getInterfacesImplemented();
658 for (unsigned i = 0, e = II.size(); i != e; ++i)
659 AvailableAnalysis[II[i]] = P;
Devang Patel643676c2006-11-11 01:10:19 +0000660}
661
Devang Patel9d9fc902007-03-06 17:52:53 +0000662// Return true if P preserves high level analysis used by other
663// passes managed by this manager
664bool PMDataManager::preserveHigherLevelAnalysis(Pass *P) {
Devang Patelec9e1a60a2008-08-11 21:13:39 +0000665 AnalysisUsage *AnUsage = TPM->findAnalysisUsage(P);
Devang Patelec9e1a60a2008-08-11 21:13:39 +0000666 if (AnUsage->getPreservesAll())
Devang Patel9d9fc902007-03-06 17:52:53 +0000667 return true;
668
Devang Patelec9e1a60a2008-08-11 21:13:39 +0000669 const AnalysisUsage::VectorType &PreservedSet = AnUsage->getPreservedSet();
Devang Patel0d29ae02008-08-12 15:44:31 +0000670 for (SmallVector<Pass *, 8>::iterator I = HigherLevelAnalysis.begin(),
Devang Patel9d9fc902007-03-06 17:52:53 +0000671 E = HigherLevelAnalysis.end(); I != E; ++I) {
672 Pass *P1 = *I;
Dan Gohman929391a2008-01-29 12:09:55 +0000673 if (!dynamic_cast<ImmutablePass*>(P1) &&
674 std::find(PreservedSet.begin(), PreservedSet.end(),
675 P1->getPassInfo()) ==
Devang Patel01919d22007-03-08 19:05:01 +0000676 PreservedSet.end())
677 return false;
Devang Patel9d9fc902007-03-06 17:52:53 +0000678 }
679
680 return true;
681}
682
Chris Lattner02eb94c2008-08-07 07:34:50 +0000683/// verifyPreservedAnalysis -- Verify analysis preserved by pass P.
Devang Patela273d1c2007-07-19 18:02:32 +0000684void PMDataManager::verifyPreservedAnalysis(Pass *P) {
Chris Lattner02eb94c2008-08-07 07:34:50 +0000685 // Don't do this unless assertions are enabled.
686#ifdef NDEBUG
687 return;
688#endif
Devang Patelec9e1a60a2008-08-11 21:13:39 +0000689 AnalysisUsage *AnUsage = TPM->findAnalysisUsage(P);
690 const AnalysisUsage::VectorType &PreservedSet = AnUsage->getPreservedSet();
Devang Patelf68a3492006-11-07 22:35:17 +0000691
Devang Patelef432532007-07-19 05:36:09 +0000692 // Verify preserved analysis
Chris Lattnercbd160f2008-08-08 05:33:04 +0000693 for (AnalysisUsage::VectorType::const_iterator I = PreservedSet.begin(),
Devang Patela273d1c2007-07-19 18:02:32 +0000694 E = PreservedSet.end(); I != E; ++I) {
695 AnalysisID AID = *I;
Dan Gohman4dbb3012009-09-28 00:27:48 +0000696 if (Pass *AP = findAnalysisPass(AID, true)) {
697
698 Timer *T = 0;
699 if (TheTimeInfo) T = TheTimeInfo->passStarted(AP);
Devang Patela273d1c2007-07-19 18:02:32 +0000700 AP->verifyAnalysis();
Dan Gohman4dbb3012009-09-28 00:27:48 +0000701 if (T) T->stopTimer();
702 }
Devang Patel9dbe4d12008-07-01 17:44:24 +0000703 }
704}
705
Devang Patel67c79a42008-07-01 19:50:56 +0000706/// Remove Analysis not preserved by Pass P
Devang Patela273d1c2007-07-19 18:02:32 +0000707void PMDataManager::removeNotPreservedAnalysis(Pass *P) {
Devang Patelec9e1a60a2008-08-11 21:13:39 +0000708 AnalysisUsage *AnUsage = TPM->findAnalysisUsage(P);
709 if (AnUsage->getPreservesAll())
Devang Patel2e169c32006-12-07 20:03:49 +0000710 return;
711
Devang Patelec9e1a60a2008-08-11 21:13:39 +0000712 const AnalysisUsage::VectorType &PreservedSet = AnUsage->getPreservedSet();
Devang Patelf60b5d92006-11-14 01:59:59 +0000713 for (std::map<AnalysisID, Pass*>::iterator I = AvailableAnalysis.begin(),
Devang Patelbe6bd55e2006-12-12 23:07:44 +0000714 E = AvailableAnalysis.end(); I != E; ) {
Devang Patel56d48ec2006-12-15 22:57:49 +0000715 std::map<AnalysisID, Pass*>::iterator Info = I++;
Devang Patel01919d22007-03-08 19:05:01 +0000716 if (!dynamic_cast<ImmutablePass*>(Info->second)
717 && std::find(PreservedSet.begin(), PreservedSet.end(), Info->first) ==
Devang Patelbb4720c2008-06-03 01:02:16 +0000718 PreservedSet.end()) {
Devang Patel349170f2006-11-11 01:24:55 +0000719 // Remove this analysis
Devang Patelbb4720c2008-06-03 01:02:16 +0000720 if (PassDebugging >= Details) {
721 Pass *S = Info->second;
Daniel Dunbar9813b0b2009-07-26 07:49:05 +0000722 errs() << " -- '" << P->getPassName() << "' is not preserving '";
723 errs() << S->getPassName() << "'\n";
Devang Patelbb4720c2008-06-03 01:02:16 +0000724 }
Dan Gohman193e4c02008-11-06 21:57:17 +0000725 AvailableAnalysis.erase(Info);
Devang Patelbb4720c2008-06-03 01:02:16 +0000726 }
Devang Patel349170f2006-11-11 01:24:55 +0000727 }
Devang Patel42dd1e92007-03-06 01:55:46 +0000728
729 // Check inherited analysis also. If P is not preserving analysis
730 // provided by parent manager then remove it here.
731 for (unsigned Index = 0; Index < PMT_Last; ++Index) {
732
733 if (!InheritedAnalysis[Index])
734 continue;
735
736 for (std::map<AnalysisID, Pass*>::iterator
737 I = InheritedAnalysis[Index]->begin(),
738 E = InheritedAnalysis[Index]->end(); I != E; ) {
739 std::map<AnalysisID, Pass *>::iterator Info = I++;
Dan Gohman929391a2008-01-29 12:09:55 +0000740 if (!dynamic_cast<ImmutablePass*>(Info->second) &&
741 std::find(PreservedSet.begin(), PreservedSet.end(), Info->first) ==
Devang Patel01919d22007-03-08 19:05:01 +0000742 PreservedSet.end())
Devang Patel42dd1e92007-03-06 01:55:46 +0000743 // Remove this analysis
Devang Patel01919d22007-03-08 19:05:01 +0000744 InheritedAnalysis[Index]->erase(Info);
Devang Patel42dd1e92007-03-06 01:55:46 +0000745 }
746 }
Devang Patelf68a3492006-11-07 22:35:17 +0000747}
748
Devang Patelca189262006-11-14 03:05:08 +0000749/// Remove analysis passes that are not used any longer
Daniel Dunbar9813b0b2009-07-26 07:49:05 +0000750void PMDataManager::removeDeadPasses(Pass *P, const StringRef &Msg,
Devang Patel003a5592007-03-05 20:01:30 +0000751 enum PassDebuggingString DBG_STR) {
Devang Patel17ad0962006-12-08 00:37:52 +0000752
Devang Patel8adae862007-07-20 18:04:54 +0000753 SmallVector<Pass *, 12> DeadPasses;
Devang Patel69e9f6d2007-04-16 20:27:05 +0000754
Devang Patel2ff44922007-04-16 20:39:59 +0000755 // If this is a on the fly manager then it does not have TPM.
Devang Patel69e9f6d2007-04-16 20:27:05 +0000756 if (!TPM)
757 return;
758
Devang Patel17ad0962006-12-08 00:37:52 +0000759 TPM->collectLastUses(DeadPasses, P);
760
Devang Patel656a9172008-06-06 17:50:36 +0000761 if (PassDebugging >= Details && !DeadPasses.empty()) {
Daniel Dunbar9813b0b2009-07-26 07:49:05 +0000762 errs() << " -*- '" << P->getPassName();
763 errs() << "' is the last user of following pass instances.";
764 errs() << " Free these instances\n";
Evan Cheng93af6ce2008-06-04 09:13:31 +0000765 }
766
Devang Patel8adae862007-07-20 18:04:54 +0000767 for (SmallVector<Pass *, 12>::iterator I = DeadPasses.begin(),
Dan Gohman5e8ba5d2009-09-27 23:38:27 +0000768 E = DeadPasses.end(); I != E; ++I)
769 freePass(*I, Msg, DBG_STR);
770}
Devang Patel200d3052006-12-13 23:50:44 +0000771
Dan Gohman5e8ba5d2009-09-27 23:38:27 +0000772void PMDataManager::freePass(Pass *P, const StringRef &Msg,
773 enum PassDebuggingString DBG_STR) {
774 dumpPassInfo(P, FREEING_MSG, DBG_STR, Msg);
Devang Patel200d3052006-12-13 23:50:44 +0000775
Dan Gohman5e8ba5d2009-09-27 23:38:27 +0000776 {
777 // If the pass crashes releasing memory, remember this.
778 PassManagerPrettyStackEntry X(P);
779
Dan Gohman277e7672009-09-28 00:07:05 +0000780 Timer *T = StartPassTimer(P);
Dan Gohman5e8ba5d2009-09-27 23:38:27 +0000781 P->releaseMemory();
Dan Gohman277e7672009-09-28 00:07:05 +0000782 StopPassTimer(P, T);
Dan Gohman5e8ba5d2009-09-27 23:38:27 +0000783 }
784
785 if (const PassInfo *PI = P->getPassInfo()) {
786 // Remove the pass itself (if it is not already removed).
787 AvailableAnalysis.erase(PI);
788
789 // Remove all interfaces this pass implements, for which it is also
790 // listed as the available implementation.
791 const std::vector<const PassInfo*> &II = PI->getInterfacesImplemented();
792 for (unsigned i = 0, e = II.size(); i != e; ++i) {
Devang Patelc3e3ca92008-10-06 20:36:36 +0000793 std::map<AnalysisID, Pass*>::iterator Pos =
Dan Gohman5e8ba5d2009-09-27 23:38:27 +0000794 AvailableAnalysis.find(II[i]);
795 if (Pos != AvailableAnalysis.end() && Pos->second == P)
Devang Patelc3e3ca92008-10-06 20:36:36 +0000796 AvailableAnalysis.erase(Pos);
Devang Patelc3e3ca92008-10-06 20:36:36 +0000797 }
Devang Patel17ad0962006-12-08 00:37:52 +0000798 }
Devang Patelca189262006-11-14 03:05:08 +0000799}
800
Devang Patel8f677ce2006-12-07 18:47:25 +0000801/// Add pass P into the PassVector. Update
Devang Patel90b05e02006-11-11 02:04:19 +0000802/// AvailableAnalysis appropriately if ProcessAnalysis is true.
Chris Lattner60987362009-03-06 05:53:14 +0000803void PMDataManager::add(Pass *P, bool ProcessAnalysis) {
Devang Pateld440cd92006-12-08 23:53:00 +0000804 // This manager is going to manage pass P. Set up analysis resolver
805 // to connect them.
Devang Patelb66334b2007-01-05 22:47:07 +0000806 AnalysisResolver *AR = new AnalysisResolver(*this);
Devang Pateld440cd92006-12-08 23:53:00 +0000807 P->setResolver(AR);
808
Devang Patelec2b9a72007-03-05 22:57:49 +0000809 // If a FunctionPass F is the last user of ModulePass info M
810 // then the F's manager, not F, records itself as a last user of M.
Devang Patel8adae862007-07-20 18:04:54 +0000811 SmallVector<Pass *, 12> TransferLastUses;
Devang Patelec2b9a72007-03-05 22:57:49 +0000812
Chris Lattner60987362009-03-06 05:53:14 +0000813 if (!ProcessAnalysis) {
814 // Add pass
815 PassVector.push_back(P);
816 return;
Devang Patel90b05e02006-11-11 02:04:19 +0000817 }
Devang Patel8cad70d2006-11-11 01:51:02 +0000818
Chris Lattner60987362009-03-06 05:53:14 +0000819 // At the moment, this pass is the last user of all required passes.
820 SmallVector<Pass *, 12> LastUses;
821 SmallVector<Pass *, 8> RequiredPasses;
822 SmallVector<AnalysisID, 8> ReqAnalysisNotAvailable;
823
824 unsigned PDepth = this->getDepth();
825
826 collectRequiredAnalysis(RequiredPasses,
827 ReqAnalysisNotAvailable, P);
828 for (SmallVector<Pass *, 8>::iterator I = RequiredPasses.begin(),
829 E = RequiredPasses.end(); I != E; ++I) {
830 Pass *PRequired = *I;
831 unsigned RDepth = 0;
832
833 assert(PRequired->getResolver() && "Analysis Resolver is not set");
834 PMDataManager &DM = PRequired->getResolver()->getPMDataManager();
835 RDepth = DM.getDepth();
836
837 if (PDepth == RDepth)
838 LastUses.push_back(PRequired);
839 else if (PDepth > RDepth) {
840 // Let the parent claim responsibility of last use
841 TransferLastUses.push_back(PRequired);
842 // Keep track of higher level analysis used by this manager.
843 HigherLevelAnalysis.push_back(PRequired);
844 } else
Torok Edwinfbcc6632009-07-14 16:55:14 +0000845 llvm_unreachable("Unable to accomodate Required Pass");
Chris Lattner60987362009-03-06 05:53:14 +0000846 }
847
848 // Set P as P's last user until someone starts using P.
849 // However, if P is a Pass Manager then it does not need
850 // to record its last user.
851 if (!dynamic_cast<PMDataManager *>(P))
852 LastUses.push_back(P);
853 TPM->setLastUser(LastUses, P);
854
855 if (!TransferLastUses.empty()) {
856 Pass *My_PM = dynamic_cast<Pass *>(this);
857 TPM->setLastUser(TransferLastUses, My_PM);
858 TransferLastUses.clear();
859 }
860
861 // Now, take care of required analysises that are not available.
862 for (SmallVector<AnalysisID, 8>::iterator
863 I = ReqAnalysisNotAvailable.begin(),
864 E = ReqAnalysisNotAvailable.end() ;I != E; ++I) {
865 Pass *AnalysisPass = (*I)->createPass();
866 this->addLowerLevelRequiredPass(P, AnalysisPass);
867 }
868
869 // Take a note of analysis required and made available by this pass.
870 // Remove the analysis not preserved by this pass
871 removeNotPreservedAnalysis(P);
872 recordAvailableAnalysis(P);
873
Devang Patel8cad70d2006-11-11 01:51:02 +0000874 // Add pass
875 PassVector.push_back(P);
Devang Patel8cad70d2006-11-11 01:51:02 +0000876}
877
Devang Patele64d3052007-04-16 20:12:57 +0000878
879/// Populate RP with analysis pass that are required by
880/// pass P and are available. Populate RP_NotAvail with analysis
881/// pass that are required by pass P but are not available.
882void PMDataManager::collectRequiredAnalysis(SmallVector<Pass *, 8>&RP,
883 SmallVector<AnalysisID, 8> &RP_NotAvail,
884 Pass *P) {
Devang Patelec9e1a60a2008-08-11 21:13:39 +0000885 AnalysisUsage *AnUsage = TPM->findAnalysisUsage(P);
886 const AnalysisUsage::VectorType &RequiredSet = AnUsage->getRequiredSet();
Chris Lattnercbd160f2008-08-08 05:33:04 +0000887 for (AnalysisUsage::VectorType::const_iterator
Chris Lattner60987362009-03-06 05:53:14 +0000888 I = RequiredSet.begin(), E = RequiredSet.end(); I != E; ++I) {
Devang Patele64d3052007-04-16 20:12:57 +0000889 if (Pass *AnalysisPass = findAnalysisPass(*I, true))
890 RP.push_back(AnalysisPass);
891 else
Chris Lattner60987362009-03-06 05:53:14 +0000892 RP_NotAvail.push_back(*I);
Devang Patel1d6267c2006-12-07 23:05:44 +0000893 }
Devang Patelf58183d2006-12-12 23:09:32 +0000894
Devang Patelec9e1a60a2008-08-11 21:13:39 +0000895 const AnalysisUsage::VectorType &IDs = AnUsage->getRequiredTransitiveSet();
Chris Lattnercbd160f2008-08-08 05:33:04 +0000896 for (AnalysisUsage::VectorType::const_iterator I = IDs.begin(),
Devang Patelf58183d2006-12-12 23:09:32 +0000897 E = IDs.end(); I != E; ++I) {
Devang Patele64d3052007-04-16 20:12:57 +0000898 if (Pass *AnalysisPass = findAnalysisPass(*I, true))
899 RP.push_back(AnalysisPass);
900 else
Chris Lattner60987362009-03-06 05:53:14 +0000901 RP_NotAvail.push_back(*I);
Devang Patelf58183d2006-12-12 23:09:32 +0000902 }
Devang Patel1d6267c2006-12-07 23:05:44 +0000903}
904
Devang Patel07f4f582006-11-14 21:49:36 +0000905// All Required analyses should be available to the pass as it runs! Here
906// we fill in the AnalysisImpls member of the pass so that it can
907// successfully use the getAnalysis() method to retrieve the
908// implementations it needs.
909//
Devang Pateldbe4a1e2006-12-07 18:36:24 +0000910void PMDataManager::initializeAnalysisImpl(Pass *P) {
Devang Patelec9e1a60a2008-08-11 21:13:39 +0000911 AnalysisUsage *AnUsage = TPM->findAnalysisUsage(P);
912
Chris Lattnercbd160f2008-08-08 05:33:04 +0000913 for (AnalysisUsage::VectorType::const_iterator
Devang Patelec9e1a60a2008-08-11 21:13:39 +0000914 I = AnUsage->getRequiredSet().begin(),
915 E = AnUsage->getRequiredSet().end(); I != E; ++I) {
Devang Patel640c5bb2006-12-08 22:30:11 +0000916 Pass *Impl = findAnalysisPass(*I, true);
Devang Patel07f4f582006-11-14 21:49:36 +0000917 if (Impl == 0)
Devang Patel56a5c622007-04-16 20:44:16 +0000918 // This may be analysis pass that is initialized on the fly.
919 // If that is not the case then it will raise an assert when it is used.
920 continue;
Devang Patelb66334b2007-01-05 22:47:07 +0000921 AnalysisResolver *AR = P->getResolver();
Chris Lattner60987362009-03-06 05:53:14 +0000922 assert(AR && "Analysis Resolver is not set");
Devang Patel984698a2006-12-09 01:11:34 +0000923 AR->addAnalysisImplsPair(*I, Impl);
Devang Patel07f4f582006-11-14 21:49:36 +0000924 }
925}
926
Devang Patel640c5bb2006-12-08 22:30:11 +0000927/// Find the pass that implements Analysis AID. If desired pass is not found
928/// then return NULL.
929Pass *PMDataManager::findAnalysisPass(AnalysisID AID, bool SearchParent) {
930
931 // Check if AvailableAnalysis map has one entry.
932 std::map<AnalysisID, Pass*>::const_iterator I = AvailableAnalysis.find(AID);
933
934 if (I != AvailableAnalysis.end())
935 return I->second;
936
937 // Search Parents through TopLevelManager
938 if (SearchParent)
939 return TPM->findAnalysisPass(AID);
940
Devang Patel9d759b82006-12-09 00:09:12 +0000941 return NULL;
Devang Patel640c5bb2006-12-08 22:30:11 +0000942}
943
Devang Patel991aeba2006-12-15 20:13:01 +0000944// Print list of passes that are last used by P.
945void PMDataManager::dumpLastUses(Pass *P, unsigned Offset) const{
946
Devang Patel8adae862007-07-20 18:04:54 +0000947 SmallVector<Pass *, 12> LUses;
Devang Patel2ff44922007-04-16 20:39:59 +0000948
949 // If this is a on the fly manager then it does not have TPM.
950 if (!TPM)
951 return;
952
Devang Patel991aeba2006-12-15 20:13:01 +0000953 TPM->collectLastUses(LUses, P);
954
Devang Patel8adae862007-07-20 18:04:54 +0000955 for (SmallVector<Pass *, 12>::iterator I = LUses.begin(),
Devang Patel991aeba2006-12-15 20:13:01 +0000956 E = LUses.end(); I != E; ++I) {
Daniel Dunbar9813b0b2009-07-26 07:49:05 +0000957 llvm::errs() << "--" << std::string(Offset*2, ' ');
Devang Patel991aeba2006-12-15 20:13:01 +0000958 (*I)->dumpPassStructure(0);
959 }
960}
961
962void PMDataManager::dumpPassArguments() const {
Chris Lattner60987362009-03-06 05:53:14 +0000963 for (SmallVector<Pass *, 8>::const_iterator I = PassVector.begin(),
Devang Patel991aeba2006-12-15 20:13:01 +0000964 E = PassVector.end(); I != E; ++I) {
965 if (PMDataManager *PMD = dynamic_cast<PMDataManager *>(*I))
966 PMD->dumpPassArguments();
967 else
968 if (const PassInfo *PI = (*I)->getPassInfo())
969 if (!PI->isAnalysisGroup())
Daniel Dunbar9813b0b2009-07-26 07:49:05 +0000970 errs() << " -" << PI->getPassArgument();
Devang Patel991aeba2006-12-15 20:13:01 +0000971 }
972}
973
Chris Lattnerdd6304f2007-08-10 06:17:04 +0000974void PMDataManager::dumpPassInfo(Pass *P, enum PassDebuggingString S1,
975 enum PassDebuggingString S2,
Daniel Dunbar9813b0b2009-07-26 07:49:05 +0000976 const StringRef &Msg) {
Devang Patelfd4184322007-01-17 20:33:36 +0000977 if (PassDebugging < Executions)
Devang Patel991aeba2006-12-15 20:13:01 +0000978 return;
Daniel Dunbar9813b0b2009-07-26 07:49:05 +0000979 errs() << (void*)this << std::string(getDepth()*2+1, ' ');
Devang Patel003a5592007-03-05 20:01:30 +0000980 switch (S1) {
981 case EXECUTION_MSG:
Daniel Dunbar9813b0b2009-07-26 07:49:05 +0000982 errs() << "Executing Pass '" << P->getPassName();
Devang Patel003a5592007-03-05 20:01:30 +0000983 break;
984 case MODIFICATION_MSG:
Daniel Dunbar9813b0b2009-07-26 07:49:05 +0000985 errs() << "Made Modification '" << P->getPassName();
Devang Patel003a5592007-03-05 20:01:30 +0000986 break;
987 case FREEING_MSG:
Daniel Dunbar9813b0b2009-07-26 07:49:05 +0000988 errs() << " Freeing Pass '" << P->getPassName();
Devang Patel003a5592007-03-05 20:01:30 +0000989 break;
990 default:
991 break;
992 }
993 switch (S2) {
994 case ON_BASICBLOCK_MSG:
Daniel Dunbar9813b0b2009-07-26 07:49:05 +0000995 errs() << "' on BasicBlock '" << Msg << "'...\n";
Devang Patel003a5592007-03-05 20:01:30 +0000996 break;
997 case ON_FUNCTION_MSG:
Daniel Dunbar9813b0b2009-07-26 07:49:05 +0000998 errs() << "' on Function '" << Msg << "'...\n";
Devang Patel003a5592007-03-05 20:01:30 +0000999 break;
1000 case ON_MODULE_MSG:
Daniel Dunbar9813b0b2009-07-26 07:49:05 +00001001 errs() << "' on Module '" << Msg << "'...\n";
Devang Patel003a5592007-03-05 20:01:30 +00001002 break;
1003 case ON_LOOP_MSG:
Chris Lattnerf82f27b2009-09-15 04:45:26 +00001004 errs() << "' on Loop '" << Msg << "'...\n";
Devang Patel003a5592007-03-05 20:01:30 +00001005 break;
1006 case ON_CG_MSG:
Chris Lattnerd4d966f2009-09-15 05:03:04 +00001007 errs() << "' on Call Graph Nodes '" << Msg << "'...\n";
Devang Patel003a5592007-03-05 20:01:30 +00001008 break;
1009 default:
1010 break;
1011 }
Devang Patel991aeba2006-12-15 20:13:01 +00001012}
1013
Chris Lattner4c1e9542009-03-06 06:45:05 +00001014void PMDataManager::dumpRequiredSet(const Pass *P) const {
Chris Lattner4c493d92008-08-08 15:14:09 +00001015 if (PassDebugging < Details)
1016 return;
1017
1018 AnalysisUsage analysisUsage;
1019 P->getAnalysisUsage(analysisUsage);
1020 dumpAnalysisUsage("Required", P, analysisUsage.getRequiredSet());
1021}
1022
Chris Lattner4c1e9542009-03-06 06:45:05 +00001023void PMDataManager::dumpPreservedSet(const Pass *P) const {
Chris Lattner4c493d92008-08-08 15:14:09 +00001024 if (PassDebugging < Details)
1025 return;
1026
1027 AnalysisUsage analysisUsage;
1028 P->getAnalysisUsage(analysisUsage);
1029 dumpAnalysisUsage("Preserved", P, analysisUsage.getPreservedSet());
1030}
1031
Daniel Dunbar9813b0b2009-07-26 07:49:05 +00001032void PMDataManager::dumpAnalysisUsage(const StringRef &Msg, const Pass *P,
Chris Lattner4c1e9542009-03-06 06:45:05 +00001033 const AnalysisUsage::VectorType &Set) const {
Chris Lattner4c493d92008-08-08 15:14:09 +00001034 assert(PassDebugging >= Details);
1035 if (Set.empty())
1036 return;
Daniel Dunbar9813b0b2009-07-26 07:49:05 +00001037 errs() << (void*)P << std::string(getDepth()*2+3, ' ') << Msg << " Analyses:";
Chris Lattner4c1e9542009-03-06 06:45:05 +00001038 for (unsigned i = 0; i != Set.size(); ++i) {
Chris Lattnerd4d966f2009-09-15 05:03:04 +00001039 if (i) errs() << ',';
1040 errs() << ' ' << Set[i]->getPassName();
Chris Lattner4c1e9542009-03-06 06:45:05 +00001041 }
Chris Lattnerd4d966f2009-09-15 05:03:04 +00001042 errs() << '\n';
Devang Patel991aeba2006-12-15 20:13:01 +00001043}
Devang Patel9bdf7d42006-12-08 23:28:54 +00001044
Devang Patel004937b2007-07-27 20:06:09 +00001045/// Add RequiredPass into list of lower level passes required by pass P.
1046/// RequiredPass is run on the fly by Pass Manager when P requests it
1047/// through getAnalysis interface.
1048/// This should be handled by specific pass manager.
1049void PMDataManager::addLowerLevelRequiredPass(Pass *P, Pass *RequiredPass) {
1050 if (TPM) {
1051 TPM->dumpArguments();
1052 TPM->dumpPasses();
1053 }
Devang Patel8df7cc12008-02-02 01:43:30 +00001054
1055 // Module Level pass may required Function Level analysis info
1056 // (e.g. dominator info). Pass manager uses on the fly function pass manager
1057 // to provide this on demand. In that case, in Pass manager terminology,
1058 // module level pass is requiring lower level analysis info managed by
1059 // lower level pass manager.
1060
1061 // When Pass manager is not able to order required analysis info, Pass manager
1062 // checks whether any lower level manager will be able to provide this
1063 // analysis info on demand or not.
Devang Patelab85d6b2008-06-03 01:20:02 +00001064#ifndef NDEBUG
Daniel Dunbar9813b0b2009-07-26 07:49:05 +00001065 errs() << "Unable to schedule '" << RequiredPass->getPassName();
1066 errs() << "' required by '" << P->getPassName() << "'\n";
Devang Patelab85d6b2008-06-03 01:20:02 +00001067#endif
Torok Edwinfbcc6632009-07-14 16:55:14 +00001068 llvm_unreachable("Unable to schedule pass");
Devang Patel004937b2007-07-27 20:06:09 +00001069}
1070
Devang Patele7599552007-01-12 18:52:44 +00001071// Destructor
1072PMDataManager::~PMDataManager() {
Devang Patel0d29ae02008-08-12 15:44:31 +00001073 for (SmallVector<Pass *, 8>::iterator I = PassVector.begin(),
Devang Patele7599552007-01-12 18:52:44 +00001074 E = PassVector.end(); I != E; ++I)
1075 delete *I;
Devang Patele7599552007-01-12 18:52:44 +00001076}
1077
Devang Patel9bdf7d42006-12-08 23:28:54 +00001078//===----------------------------------------------------------------------===//
1079// NOTE: Is this the right place to define this method ?
Duncan Sands5a913d62009-01-28 13:14:17 +00001080// getAnalysisIfAvailable - Return analysis result or null if it doesn't exist.
1081Pass *AnalysisResolver::getAnalysisIfAvailable(AnalysisID ID, bool dir) const {
Devang Patel9bdf7d42006-12-08 23:28:54 +00001082 return PM.findAnalysisPass(ID, dir);
1083}
1084
Devang Patel92942812007-04-16 20:56:24 +00001085Pass *AnalysisResolver::findImplPass(Pass *P, const PassInfo *AnalysisPI,
1086 Function &F) {
1087 return PM.getOnTheFlyPass(P, AnalysisPI, F);
1088}
1089
Devang Patela1514cb2006-12-07 19:39:39 +00001090//===----------------------------------------------------------------------===//
Devang Patel67d6a5e2006-12-19 19:46:59 +00001091// BBPassManager implementation
Devang Patel6e5a1132006-11-07 21:31:57 +00001092
Devang Patel6e5a1132006-11-07 21:31:57 +00001093/// Execute all of the passes scheduled for execution by invoking
1094/// runOnBasicBlock method. Keep track of whether any of the passes modifies
1095/// the function, and if so, return true.
Chris Lattner4c1e9542009-03-06 06:45:05 +00001096bool BBPassManager::runOnFunction(Function &F) {
Reid Spencer5301e7c2007-01-30 20:08:39 +00001097 if (F.isDeclaration())
Devang Patel745a6962006-12-12 23:15:28 +00001098 return false;
1099
Devang Patele9585592006-12-08 01:38:28 +00001100 bool Changed = doInitialization(F);
Devang Patel050ec722006-11-14 01:23:29 +00001101
Devang Patel6e5a1132006-11-07 21:31:57 +00001102 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
Devang Patelabfbe3b2006-12-16 00:56:26 +00001103 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1104 BasicBlockPass *BP = getContainedPass(Index);
Devang Patelf6d1d212006-12-14 00:25:06 +00001105
Daniel Dunbar9813b0b2009-07-26 07:49:05 +00001106 dumpPassInfo(BP, EXECUTION_MSG, ON_BASICBLOCK_MSG, I->getName());
Chris Lattner4c493d92008-08-08 15:14:09 +00001107 dumpRequiredSet(BP);
Devang Patelf6d1d212006-12-14 00:25:06 +00001108
Devang Patelabfbe3b2006-12-16 00:56:26 +00001109 initializeAnalysisImpl(BP);
Devang Patel93a197c2006-12-14 00:08:04 +00001110
Chris Lattner4c1e9542009-03-06 06:45:05 +00001111 {
1112 // If the pass crashes, remember this.
1113 PassManagerPrettyStackEntry X(BP, *I);
1114
Dan Gohman277e7672009-09-28 00:07:05 +00001115 Timer *T = StartPassTimer(BP);
Chris Lattner4c1e9542009-03-06 06:45:05 +00001116 Changed |= BP->runOnBasicBlock(*I);
Dan Gohman277e7672009-09-28 00:07:05 +00001117 StopPassTimer(BP, T);
Chris Lattner4c1e9542009-03-06 06:45:05 +00001118 }
Devang Patel93a197c2006-12-14 00:08:04 +00001119
Devang Patel003a5592007-03-05 20:01:30 +00001120 if (Changed)
Dan Gohman929391a2008-01-29 12:09:55 +00001121 dumpPassInfo(BP, MODIFICATION_MSG, ON_BASICBLOCK_MSG,
Daniel Dunbar9813b0b2009-07-26 07:49:05 +00001122 I->getName());
Chris Lattner4c493d92008-08-08 15:14:09 +00001123 dumpPreservedSet(BP);
Devang Patel93a197c2006-12-14 00:08:04 +00001124
Devang Patela273d1c2007-07-19 18:02:32 +00001125 verifyPreservedAnalysis(BP);
Devang Patelabfbe3b2006-12-16 00:56:26 +00001126 removeNotPreservedAnalysis(BP);
1127 recordAvailableAnalysis(BP);
Daniel Dunbar9813b0b2009-07-26 07:49:05 +00001128 removeDeadPasses(BP, I->getName(), ON_BASICBLOCK_MSG);
Devang Patel6e5a1132006-11-07 21:31:57 +00001129 }
Chris Lattnerde2aa652007-08-10 06:22:25 +00001130
Devang Patel56d48ec2006-12-15 22:57:49 +00001131 return Changed |= doFinalization(F);
Devang Patel6e5a1132006-11-07 21:31:57 +00001132}
1133
Devang Patel475c4532006-12-08 00:59:05 +00001134// Implement doInitialization and doFinalization
Duncan Sands51495602009-02-13 09:42:34 +00001135bool BBPassManager::doInitialization(Module &M) {
Devang Patel475c4532006-12-08 00:59:05 +00001136 bool Changed = false;
1137
Chris Lattner4c1e9542009-03-06 06:45:05 +00001138 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index)
1139 Changed |= getContainedPass(Index)->doInitialization(M);
Devang Patel475c4532006-12-08 00:59:05 +00001140
1141 return Changed;
1142}
1143
Duncan Sands51495602009-02-13 09:42:34 +00001144bool BBPassManager::doFinalization(Module &M) {
Devang Patel475c4532006-12-08 00:59:05 +00001145 bool Changed = false;
1146
Chris Lattner4c1e9542009-03-06 06:45:05 +00001147 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index)
1148 Changed |= getContainedPass(Index)->doFinalization(M);
Devang Patel475c4532006-12-08 00:59:05 +00001149
1150 return Changed;
1151}
1152
Duncan Sands51495602009-02-13 09:42:34 +00001153bool BBPassManager::doInitialization(Function &F) {
Devang Patel475c4532006-12-08 00:59:05 +00001154 bool Changed = false;
1155
Devang Patelabfbe3b2006-12-16 00:56:26 +00001156 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1157 BasicBlockPass *BP = getContainedPass(Index);
Devang Patel475c4532006-12-08 00:59:05 +00001158 Changed |= BP->doInitialization(F);
1159 }
1160
1161 return Changed;
1162}
1163
Duncan Sands51495602009-02-13 09:42:34 +00001164bool BBPassManager::doFinalization(Function &F) {
Devang Patel475c4532006-12-08 00:59:05 +00001165 bool Changed = false;
1166
Devang Patelabfbe3b2006-12-16 00:56:26 +00001167 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1168 BasicBlockPass *BP = getContainedPass(Index);
Devang Patel475c4532006-12-08 00:59:05 +00001169 Changed |= BP->doFinalization(F);
1170 }
1171
1172 return Changed;
1173}
1174
1175
Devang Patela1514cb2006-12-07 19:39:39 +00001176//===----------------------------------------------------------------------===//
Devang Patelb67904d2006-12-13 02:36:01 +00001177// FunctionPassManager implementation
Devang Patela1514cb2006-12-07 19:39:39 +00001178
Devang Patel4e12f862006-11-08 10:44:40 +00001179/// Create new Function pass manager
Devang Patelb67904d2006-12-13 02:36:01 +00001180FunctionPassManager::FunctionPassManager(ModuleProvider *P) {
Devang Patel67d6a5e2006-12-19 19:46:59 +00001181 FPM = new FunctionPassManagerImpl(0);
Devang Patel9c6290c2006-12-12 22:02:16 +00001182 // FPM is the top level manager.
1183 FPM->setTopLevelManager(FPM);
Devang Patel1036b652006-12-12 23:27:37 +00001184
Dan Gohman565df952008-03-13 02:08:36 +00001185 AnalysisResolver *AR = new AnalysisResolver(*FPM);
Devang Patel1036b652006-12-12 23:27:37 +00001186 FPM->setResolver(AR);
1187
Devang Patel1f653682006-12-08 18:57:16 +00001188 MP = P;
1189}
1190
Devang Patelb67904d2006-12-13 02:36:01 +00001191FunctionPassManager::~FunctionPassManager() {
Devang Patelab97cf42006-12-13 00:09:23 +00001192 delete FPM;
1193}
1194
Devang Patel4e12f862006-11-08 10:44:40 +00001195/// add - Add a pass to the queue of passes to run. This passes
1196/// ownership of the Pass to the PassManager. When the
1197/// PassManager_X is destroyed, the pass will be destroyed as well, so
1198/// there is no need to delete the pass. (TODO delete passes.)
1199/// This implies that all passes MUST be allocated with 'new'.
Devang Patelb67904d2006-12-13 02:36:01 +00001200void FunctionPassManager::add(Pass *P) {
Devang Patel4e12f862006-11-08 10:44:40 +00001201 FPM->add(P);
1202}
1203
Devang Patel9f3083e2006-11-15 19:39:54 +00001204/// run - Execute all of the passes scheduled for execution. Keep
1205/// track of whether any of the passes modifies the function, and if
1206/// so, return true.
1207///
Devang Patelb67904d2006-12-13 02:36:01 +00001208bool FunctionPassManager::run(Function &F) {
Devang Patel9f3083e2006-11-15 19:39:54 +00001209 std::string errstr;
1210 if (MP->materializeFunction(&F, &errstr)) {
Torok Edwin6dd27302009-07-08 18:01:40 +00001211 llvm_report_error("Error reading bitcode file: " + errstr);
Devang Patel9f3083e2006-11-15 19:39:54 +00001212 }
Devang Patel272908d2006-12-08 22:57:48 +00001213 return FPM->run(F);
Devang Patel9f3083e2006-11-15 19:39:54 +00001214}
1215
1216
Devang Patelff631ae2006-11-15 01:27:05 +00001217/// doInitialization - Run all of the initializers for the function passes.
1218///
Devang Patelb67904d2006-12-13 02:36:01 +00001219bool FunctionPassManager::doInitialization() {
Devang Patelff631ae2006-11-15 01:27:05 +00001220 return FPM->doInitialization(*MP->getModule());
1221}
1222
Dan Gohmane6656eb2007-07-30 14:51:13 +00001223/// doFinalization - Run all of the finalizers for the function passes.
Devang Patelff631ae2006-11-15 01:27:05 +00001224///
Devang Patelb67904d2006-12-13 02:36:01 +00001225bool FunctionPassManager::doFinalization() {
Devang Patelff631ae2006-11-15 01:27:05 +00001226 return FPM->doFinalization(*MP->getModule());
1227}
1228
Devang Patela1514cb2006-12-07 19:39:39 +00001229//===----------------------------------------------------------------------===//
Devang Patel67d6a5e2006-12-19 19:46:59 +00001230// FunctionPassManagerImpl implementation
1231//
Duncan Sands51495602009-02-13 09:42:34 +00001232bool FunctionPassManagerImpl::doInitialization(Module &M) {
Devang Patel67d6a5e2006-12-19 19:46:59 +00001233 bool Changed = false;
1234
Chris Lattner4c1e9542009-03-06 06:45:05 +00001235 for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index)
1236 Changed |= getContainedManager(Index)->doInitialization(M);
Devang Patel67d6a5e2006-12-19 19:46:59 +00001237
1238 return Changed;
1239}
1240
Duncan Sands51495602009-02-13 09:42:34 +00001241bool FunctionPassManagerImpl::doFinalization(Module &M) {
Devang Patel67d6a5e2006-12-19 19:46:59 +00001242 bool Changed = false;
1243
Chris Lattner4c1e9542009-03-06 06:45:05 +00001244 for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index)
1245 Changed |= getContainedManager(Index)->doFinalization(M);
Devang Patel67d6a5e2006-12-19 19:46:59 +00001246
1247 return Changed;
1248}
1249
Devang Patelec9c58f2009-04-01 22:34:41 +00001250/// cleanup - After running all passes, clean up pass manager cache.
1251void FPPassManager::cleanup() {
1252 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1253 FunctionPass *FP = getContainedPass(Index);
1254 AnalysisResolver *AR = FP->getResolver();
1255 assert(AR && "Analysis Resolver is not set");
1256 AR->clearAnalysisImpls();
1257 }
1258}
1259
Torok Edwin24c78352009-06-29 18:49:09 +00001260void FunctionPassManagerImpl::releaseMemoryOnTheFly() {
1261 if (!wasRun)
1262 return;
1263 for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index) {
1264 FPPassManager *FPPM = getContainedManager(Index);
1265 for (unsigned Index = 0; Index < FPPM->getNumContainedPasses(); ++Index) {
1266 FPPM->getContainedPass(Index)->releaseMemory();
1267 }
1268 }
Torok Edwin896556e2009-06-29 21:05:10 +00001269 wasRun = false;
Torok Edwin24c78352009-06-29 18:49:09 +00001270}
1271
Devang Patel67d6a5e2006-12-19 19:46:59 +00001272// Execute all the passes managed by this top level manager.
1273// Return true if any function is modified by a pass.
1274bool FunctionPassManagerImpl::run(Function &F) {
Devang Patel67d6a5e2006-12-19 19:46:59 +00001275 bool Changed = false;
Devang Patel67d6a5e2006-12-19 19:46:59 +00001276 TimingInfo::createTheTimeInfo();
1277
1278 dumpArguments();
1279 dumpPasses();
1280
Devang Patele3068402006-12-21 00:16:50 +00001281 initializeAllAnalysisInfo();
Chris Lattner4c1e9542009-03-06 06:45:05 +00001282 for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index)
1283 Changed |= getContainedManager(Index)->runOnFunction(F);
Devang Patelec9c58f2009-04-01 22:34:41 +00001284
1285 for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index)
1286 getContainedManager(Index)->cleanup();
1287
Torok Edwin24c78352009-06-29 18:49:09 +00001288 wasRun = true;
Devang Patel67d6a5e2006-12-19 19:46:59 +00001289 return Changed;
1290}
1291
1292//===----------------------------------------------------------------------===//
1293// FPPassManager implementation
Devang Patel0c2012f2006-11-07 21:49:50 +00001294
Devang Patel8c78a0b2007-05-03 01:11:54 +00001295char FPPassManager::ID = 0;
Devang Patele7599552007-01-12 18:52:44 +00001296/// Print passes managed by this manager
1297void FPPassManager::dumpPassStructure(unsigned Offset) {
Daniel Dunbar9813b0b2009-07-26 07:49:05 +00001298 llvm::errs() << std::string(Offset*2, ' ') << "FunctionPass Manager\n";
Devang Patele7599552007-01-12 18:52:44 +00001299 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1300 FunctionPass *FP = getContainedPass(Index);
1301 FP->dumpPassStructure(Offset + 1);
1302 dumpLastUses(FP, Offset+1);
1303 }
1304}
1305
1306
Devang Patel0c2012f2006-11-07 21:49:50 +00001307/// Execute all of the passes scheduled for execution by invoking
1308/// runOnFunction method. Keep track of whether any of the passes modifies
1309/// the function, and if so, return true.
Devang Patel67d6a5e2006-12-19 19:46:59 +00001310bool FPPassManager::runOnFunction(Function &F) {
Chris Lattner60987362009-03-06 05:53:14 +00001311 if (F.isDeclaration())
1312 return false;
Devang Patel9f3083e2006-11-15 19:39:54 +00001313
1314 bool Changed = false;
Devang Patel745a6962006-12-12 23:15:28 +00001315
Devang Patelcbbf2912008-03-20 01:09:53 +00001316 // Collect inherited analysis from Module level pass manager.
1317 populateInheritedAnalysis(TPM->activeStack);
Devang Patel745a6962006-12-12 23:15:28 +00001318
Devang Patelabfbe3b2006-12-16 00:56:26 +00001319 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1320 FunctionPass *FP = getContainedPass(Index);
1321
Daniel Dunbar9813b0b2009-07-26 07:49:05 +00001322 dumpPassInfo(FP, EXECUTION_MSG, ON_FUNCTION_MSG, F.getName());
Chris Lattner4c493d92008-08-08 15:14:09 +00001323 dumpRequiredSet(FP);
Devang Patel93a197c2006-12-14 00:08:04 +00001324
Devang Patelabfbe3b2006-12-16 00:56:26 +00001325 initializeAnalysisImpl(FP);
Devang Patelb8817b92006-12-14 00:59:42 +00001326
Chris Lattner4c1e9542009-03-06 06:45:05 +00001327 {
1328 PassManagerPrettyStackEntry X(FP, F);
1329
Dan Gohman277e7672009-09-28 00:07:05 +00001330 Timer *T = StartPassTimer(FP);
Chris Lattner4c1e9542009-03-06 06:45:05 +00001331 Changed |= FP->runOnFunction(F);
Dan Gohman277e7672009-09-28 00:07:05 +00001332 StopPassTimer(FP, T);
Chris Lattner4c1e9542009-03-06 06:45:05 +00001333 }
Devang Patel93a197c2006-12-14 00:08:04 +00001334
Devang Patel003a5592007-03-05 20:01:30 +00001335 if (Changed)
Daniel Dunbar9813b0b2009-07-26 07:49:05 +00001336 dumpPassInfo(FP, MODIFICATION_MSG, ON_FUNCTION_MSG, F.getName());
Chris Lattner4c493d92008-08-08 15:14:09 +00001337 dumpPreservedSet(FP);
Devang Patel93a197c2006-12-14 00:08:04 +00001338
Devang Patela273d1c2007-07-19 18:02:32 +00001339 verifyPreservedAnalysis(FP);
Devang Patelabfbe3b2006-12-16 00:56:26 +00001340 removeNotPreservedAnalysis(FP);
1341 recordAvailableAnalysis(FP);
Daniel Dunbar9813b0b2009-07-26 07:49:05 +00001342 removeDeadPasses(FP, F.getName(), ON_FUNCTION_MSG);
Devang Patel9f3083e2006-11-15 19:39:54 +00001343 }
1344 return Changed;
1345}
1346
Devang Patel67d6a5e2006-12-19 19:46:59 +00001347bool FPPassManager::runOnModule(Module &M) {
Devang Patel67d6a5e2006-12-19 19:46:59 +00001348 bool Changed = doInitialization(M);
Devang Patel67d6a5e2006-12-19 19:46:59 +00001349
Chris Lattner60987362009-03-06 05:53:14 +00001350 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
1351 runOnFunction(*I);
Devang Patel67d6a5e2006-12-19 19:46:59 +00001352
1353 return Changed |= doFinalization(M);
1354}
1355
Duncan Sands51495602009-02-13 09:42:34 +00001356bool FPPassManager::doInitialization(Module &M) {
Devang Patelff631ae2006-11-15 01:27:05 +00001357 bool Changed = false;
1358
Chris Lattner4c1e9542009-03-06 06:45:05 +00001359 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index)
1360 Changed |= getContainedPass(Index)->doInitialization(M);
Devang Patelff631ae2006-11-15 01:27:05 +00001361
1362 return Changed;
1363}
1364
Duncan Sands51495602009-02-13 09:42:34 +00001365bool FPPassManager::doFinalization(Module &M) {
Devang Patelff631ae2006-11-15 01:27:05 +00001366 bool Changed = false;
1367
Chris Lattner4c1e9542009-03-06 06:45:05 +00001368 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index)
1369 Changed |= getContainedPass(Index)->doFinalization(M);
Devang Patelff631ae2006-11-15 01:27:05 +00001370
Devang Patelff631ae2006-11-15 01:27:05 +00001371 return Changed;
1372}
1373
Devang Patela1514cb2006-12-07 19:39:39 +00001374//===----------------------------------------------------------------------===//
Devang Patel67d6a5e2006-12-19 19:46:59 +00001375// MPPassManager implementation
Devang Patel05e1a972006-11-07 22:03:15 +00001376
Devang Patel05e1a972006-11-07 22:03:15 +00001377/// Execute all of the passes scheduled for execution by invoking
1378/// runOnModule method. Keep track of whether any of the passes modifies
1379/// the module, and if so, return true.
1380bool
Devang Patel67d6a5e2006-12-19 19:46:59 +00001381MPPassManager::runOnModule(Module &M) {
Devang Patel05e1a972006-11-07 22:03:15 +00001382 bool Changed = false;
Devang Patel050ec722006-11-14 01:23:29 +00001383
Torok Edwin24c78352009-06-29 18:49:09 +00001384 // Initialize on-the-fly passes
1385 for (std::map<Pass *, FunctionPassManagerImpl *>::iterator
1386 I = OnTheFlyManagers.begin(), E = OnTheFlyManagers.end();
1387 I != E; ++I) {
1388 FunctionPassManagerImpl *FPP = I->second;
1389 Changed |= FPP->doInitialization(M);
1390 }
1391
Devang Patelabfbe3b2006-12-16 00:56:26 +00001392 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
1393 ModulePass *MP = getContainedPass(Index);
1394
Dan Gohman929391a2008-01-29 12:09:55 +00001395 dumpPassInfo(MP, EXECUTION_MSG, ON_MODULE_MSG,
1396 M.getModuleIdentifier().c_str());
Chris Lattner4c493d92008-08-08 15:14:09 +00001397 dumpRequiredSet(MP);
Devang Patel93a197c2006-12-14 00:08:04 +00001398
Devang Patelabfbe3b2006-12-16 00:56:26 +00001399 initializeAnalysisImpl(MP);
Devang Patelb8817b92006-12-14 00:59:42 +00001400
Chris Lattner4c1e9542009-03-06 06:45:05 +00001401 {
1402 PassManagerPrettyStackEntry X(MP, M);
Dan Gohman277e7672009-09-28 00:07:05 +00001403 Timer *T = StartPassTimer(MP);
Chris Lattner4c1e9542009-03-06 06:45:05 +00001404 Changed |= MP->runOnModule(M);
Dan Gohman277e7672009-09-28 00:07:05 +00001405 StopPassTimer(MP, T);
Chris Lattner4c1e9542009-03-06 06:45:05 +00001406 }
Devang Patel93a197c2006-12-14 00:08:04 +00001407
Devang Patel003a5592007-03-05 20:01:30 +00001408 if (Changed)
Dan Gohman929391a2008-01-29 12:09:55 +00001409 dumpPassInfo(MP, MODIFICATION_MSG, ON_MODULE_MSG,
1410 M.getModuleIdentifier().c_str());
Chris Lattner4c493d92008-08-08 15:14:09 +00001411 dumpPreservedSet(MP);
Chris Lattner02eb94c2008-08-07 07:34:50 +00001412
Devang Patela273d1c2007-07-19 18:02:32 +00001413 verifyPreservedAnalysis(MP);
Devang Patelabfbe3b2006-12-16 00:56:26 +00001414 removeNotPreservedAnalysis(MP);
1415 recordAvailableAnalysis(MP);
Devang Pateld305c402007-08-10 18:29:32 +00001416 removeDeadPasses(MP, M.getModuleIdentifier().c_str(), ON_MODULE_MSG);
Devang Patel05e1a972006-11-07 22:03:15 +00001417 }
Torok Edwin24c78352009-06-29 18:49:09 +00001418
1419 // Finalize on-the-fly passes
1420 for (std::map<Pass *, FunctionPassManagerImpl *>::iterator
1421 I = OnTheFlyManagers.begin(), E = OnTheFlyManagers.end();
1422 I != E; ++I) {
1423 FunctionPassManagerImpl *FPP = I->second;
1424 // We don't know when is the last time an on-the-fly pass is run,
1425 // so we need to releaseMemory / finalize here
1426 FPP->releaseMemoryOnTheFly();
1427 Changed |= FPP->doFinalization(M);
1428 }
Devang Patel05e1a972006-11-07 22:03:15 +00001429 return Changed;
1430}
1431
Devang Patele64d3052007-04-16 20:12:57 +00001432/// Add RequiredPass into list of lower level passes required by pass P.
1433/// RequiredPass is run on the fly by Pass Manager when P requests it
1434/// through getAnalysis interface.
1435void MPPassManager::addLowerLevelRequiredPass(Pass *P, Pass *RequiredPass) {
Chris Lattner60987362009-03-06 05:53:14 +00001436 assert(P->getPotentialPassManagerType() == PMT_ModulePassManager &&
1437 "Unable to handle Pass that requires lower level Analysis pass");
1438 assert((P->getPotentialPassManagerType() <
1439 RequiredPass->getPotentialPassManagerType()) &&
1440 "Unable to handle Pass that requires lower level Analysis pass");
Devang Patele64d3052007-04-16 20:12:57 +00001441
Devang Patel68f72b12007-04-26 17:50:19 +00001442 FunctionPassManagerImpl *FPP = OnTheFlyManagers[P];
Devang Patel69e9f6d2007-04-16 20:27:05 +00001443 if (!FPP) {
Devang Patel68f72b12007-04-26 17:50:19 +00001444 FPP = new FunctionPassManagerImpl(0);
1445 // FPP is the top level manager.
1446 FPP->setTopLevelManager(FPP);
1447
Devang Patel69e9f6d2007-04-16 20:27:05 +00001448 OnTheFlyManagers[P] = FPP;
1449 }
Devang Patel68f72b12007-04-26 17:50:19 +00001450 FPP->add(RequiredPass);
Devang Patel69e9f6d2007-04-16 20:27:05 +00001451
Devang Patel68f72b12007-04-26 17:50:19 +00001452 // Register P as the last user of RequiredPass.
Devang Patel8adae862007-07-20 18:04:54 +00001453 SmallVector<Pass *, 12> LU;
Devang Patel68f72b12007-04-26 17:50:19 +00001454 LU.push_back(RequiredPass);
1455 FPP->setLastUser(LU, P);
Devang Patele64d3052007-04-16 20:12:57 +00001456}
Devang Patel69e9f6d2007-04-16 20:27:05 +00001457
1458/// Return function pass corresponding to PassInfo PI, that is
1459/// required by module pass MP. Instantiate analysis pass, by using
1460/// its runOnFunction() for function F.
Chris Lattner60987362009-03-06 05:53:14 +00001461Pass* MPPassManager::getOnTheFlyPass(Pass *MP, const PassInfo *PI, Function &F){
Devang Patel68f72b12007-04-26 17:50:19 +00001462 FunctionPassManagerImpl *FPP = OnTheFlyManagers[MP];
Chris Lattner60987362009-03-06 05:53:14 +00001463 assert(FPP && "Unable to find on the fly pass");
Devang Patel69e9f6d2007-04-16 20:27:05 +00001464
Torok Edwin24c78352009-06-29 18:49:09 +00001465 FPP->releaseMemoryOnTheFly();
Devang Patel68f72b12007-04-26 17:50:19 +00001466 FPP->run(F);
Chris Lattner60987362009-03-06 05:53:14 +00001467 return (dynamic_cast<PMTopLevelManager *>(FPP))->findAnalysisPass(PI);
Devang Patel69e9f6d2007-04-16 20:27:05 +00001468}
1469
1470
Devang Patela1514cb2006-12-07 19:39:39 +00001471//===----------------------------------------------------------------------===//
1472// PassManagerImpl implementation
Devang Patelab97cf42006-12-13 00:09:23 +00001473//
Devang Patelc290c8a2006-11-07 22:23:34 +00001474/// run - Execute all of the passes scheduled for execution. Keep track of
1475/// whether any of the passes modifies the module, and if so, return true.
Devang Patel67d6a5e2006-12-19 19:46:59 +00001476bool PassManagerImpl::run(Module &M) {
Devang Patelc290c8a2006-11-07 22:23:34 +00001477 bool Changed = false;
Devang Patelb8817b92006-12-14 00:59:42 +00001478 TimingInfo::createTheTimeInfo();
1479
Devang Patelcfd70c42006-12-13 22:10:00 +00001480 dumpArguments();
Devang Patel67d6a5e2006-12-19 19:46:59 +00001481 dumpPasses();
Devang Patelf1567a52006-12-13 20:03:48 +00001482
Devang Patele3068402006-12-21 00:16:50 +00001483 initializeAllAnalysisInfo();
Chris Lattner4c1e9542009-03-06 06:45:05 +00001484 for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index)
1485 Changed |= getContainedManager(Index)->runOnModule(M);
Devang Patelc290c8a2006-11-07 22:23:34 +00001486 return Changed;
1487}
Devang Patel376fefa2006-11-08 10:29:57 +00001488
Devang Patela1514cb2006-12-07 19:39:39 +00001489//===----------------------------------------------------------------------===//
1490// PassManager implementation
1491
Devang Patel376fefa2006-11-08 10:29:57 +00001492/// Create new pass manager
Devang Patelb67904d2006-12-13 02:36:01 +00001493PassManager::PassManager() {
Devang Patel67d6a5e2006-12-19 19:46:59 +00001494 PM = new PassManagerImpl(0);
Devang Patel9c6290c2006-12-12 22:02:16 +00001495 // PM is the top level manager
1496 PM->setTopLevelManager(PM);
Devang Patel376fefa2006-11-08 10:29:57 +00001497}
1498
Devang Patelb67904d2006-12-13 02:36:01 +00001499PassManager::~PassManager() {
Devang Patelab97cf42006-12-13 00:09:23 +00001500 delete PM;
1501}
1502
Devang Patel376fefa2006-11-08 10:29:57 +00001503/// add - Add a pass to the queue of passes to run. This passes ownership of
1504/// the Pass to the PassManager. When the PassManager is destroyed, the pass
1505/// will be destroyed as well, so there is no need to delete the pass. This
1506/// implies that all passes MUST be allocated with 'new'.
Chris Lattner60987362009-03-06 05:53:14 +00001507void PassManager::add(Pass *P) {
Devang Patel376fefa2006-11-08 10:29:57 +00001508 PM->add(P);
1509}
1510
1511/// run - Execute all of the passes scheduled for execution. Keep track of
1512/// whether any of the passes modifies the module, and if so, return true.
Chris Lattner60987362009-03-06 05:53:14 +00001513bool PassManager::run(Module &M) {
Devang Patel376fefa2006-11-08 10:29:57 +00001514 return PM->run(M);
1515}
1516
Devang Patelb8817b92006-12-14 00:59:42 +00001517//===----------------------------------------------------------------------===//
1518// TimingInfo Class - This class is used to calculate information about the
1519// amount of time each pass takes to execute. This only happens with
1520// -time-passes is enabled on the command line.
1521//
1522bool llvm::TimePassesIsEnabled = false;
1523static cl::opt<bool,true>
1524EnableTiming("time-passes", cl::location(TimePassesIsEnabled),
1525 cl::desc("Time each pass, printing elapsed time for each on exit"));
1526
1527// createTheTimeInfo - This method either initializes the TheTimeInfo pointer to
1528// a non null value (if the -time-passes option is enabled) or it leaves it
1529// null. It may be called multiple times.
1530void TimingInfo::createTheTimeInfo() {
1531 if (!TimePassesIsEnabled || TheTimeInfo) return;
1532
1533 // Constructed the first time this is called, iff -time-passes is enabled.
1534 // This guarantees that the object will be constructed before static globals,
1535 // thus it will be destroyed before them.
1536 static ManagedStatic<TimingInfo> TTI;
1537 TheTimeInfo = &*TTI;
1538}
1539
Devang Patel1c3633e2007-01-29 23:10:37 +00001540/// If TimingInfo is enabled then start pass timer.
Dan Gohman277e7672009-09-28 00:07:05 +00001541Timer *llvm::StartPassTimer(Pass *P) {
Devang Patel1c3633e2007-01-29 23:10:37 +00001542 if (TheTimeInfo)
Dan Gohman277e7672009-09-28 00:07:05 +00001543 return TheTimeInfo->passStarted(P);
1544 return 0;
Devang Patel1c3633e2007-01-29 23:10:37 +00001545}
1546
1547/// If TimingInfo is enabled then stop pass timer.
Dan Gohman277e7672009-09-28 00:07:05 +00001548void llvm::StopPassTimer(Pass *P, Timer *T) {
1549 if (T) T->stopTimer();
Devang Patel1c3633e2007-01-29 23:10:37 +00001550}
1551
Devang Patel1c56a632007-01-08 19:29:38 +00001552//===----------------------------------------------------------------------===//
1553// PMStack implementation
1554//
Devang Patelad98d232007-01-11 22:15:30 +00001555
Devang Patel1c56a632007-01-08 19:29:38 +00001556// Pop Pass Manager from the stack and clear its analysis info.
1557void PMStack::pop() {
1558
1559 PMDataManager *Top = this->top();
1560 Top->initializeAnalysisInfo();
1561
1562 S.pop_back();
1563}
1564
1565// Push PM on the stack and set its top level manager.
Dan Gohman11eecd62008-03-13 01:21:31 +00001566void PMStack::push(PMDataManager *PM) {
Chris Lattner60987362009-03-06 05:53:14 +00001567 assert(PM && "Unable to push. Pass Manager expected");
Devang Patel1c56a632007-01-08 19:29:38 +00001568
Chris Lattner60987362009-03-06 05:53:14 +00001569 if (!this->empty()) {
1570 PMTopLevelManager *TPM = this->top()->getTopLevelManager();
Devang Patel1c56a632007-01-08 19:29:38 +00001571
Chris Lattner60987362009-03-06 05:53:14 +00001572 assert(TPM && "Unable to find top level manager");
Devang Patel15701b52007-01-11 00:19:00 +00001573 TPM->addIndirectPassManager(PM);
1574 PM->setTopLevelManager(TPM);
1575 }
1576
Devang Patel15701b52007-01-11 00:19:00 +00001577 S.push_back(PM);
1578}
1579
1580// Dump content of the pass manager stack.
1581void PMStack::dump() {
Chris Lattner60987362009-03-06 05:53:14 +00001582 for (std::deque<PMDataManager *>::iterator I = S.begin(),
1583 E = S.end(); I != E; ++I)
1584 printf("%s ", dynamic_cast<Pass *>(*I)->getPassName());
1585
Devang Patel15701b52007-01-11 00:19:00 +00001586 if (!S.empty())
Chris Lattnerde2aa652007-08-10 06:22:25 +00001587 printf("\n");
Devang Patel1c56a632007-01-08 19:29:38 +00001588}
1589
Devang Patel1c56a632007-01-08 19:29:38 +00001590/// Find appropriate Module Pass Manager in the PM Stack and
1591/// add self into that manager.
Devang Pateldffca632007-01-17 20:30:17 +00001592void ModulePass::assignPassManager(PMStack &PMS,
Anton Korobeynikovfb801512007-04-16 18:10:23 +00001593 PassManagerType PreferredType) {
Devang Patel1c56a632007-01-08 19:29:38 +00001594 // Find Module Pass Manager
1595 while(!PMS.empty()) {
Devang Patel23f8aa92007-01-17 21:19:23 +00001596 PassManagerType TopPMType = PMS.top()->getPassManagerType();
1597 if (TopPMType == PreferredType)
1598 break; // We found desired pass manager
1599 else if (TopPMType > PMT_ModulePassManager)
Devang Patel1c56a632007-01-08 19:29:38 +00001600 PMS.pop(); // Pop children pass managers
Devang Patelac99eca2007-01-11 19:59:06 +00001601 else
1602 break;
Devang Patel1c56a632007-01-08 19:29:38 +00001603 }
Devang Patel18ff6362008-09-09 21:38:40 +00001604 assert(!PMS.empty() && "Unable to find appropriate Pass Manager");
Devang Patel23f8aa92007-01-17 21:19:23 +00001605 PMS.top()->add(this);
Devang Patel1c56a632007-01-08 19:29:38 +00001606}
1607
Devang Patel3312f752007-01-16 21:43:18 +00001608/// Find appropriate Function Pass Manager or Call Graph Pass Manager
1609/// in the PM Stack and add self into that manager.
Devang Pateldffca632007-01-17 20:30:17 +00001610void FunctionPass::assignPassManager(PMStack &PMS,
Anton Korobeynikovfb801512007-04-16 18:10:23 +00001611 PassManagerType PreferredType) {
Devang Patel1c56a632007-01-08 19:29:38 +00001612
Devang Patela3286902008-09-09 17:56:50 +00001613 // Find Module Pass Manager
Devang Patel1c56a632007-01-08 19:29:38 +00001614 while(!PMS.empty()) {
Devang Patelac99eca2007-01-11 19:59:06 +00001615 if (PMS.top()->getPassManagerType() > PMT_FunctionPassManager)
1616 PMS.pop();
Devang Patel1c56a632007-01-08 19:29:38 +00001617 else
Devang Patel3312f752007-01-16 21:43:18 +00001618 break;
1619 }
1620 FPPassManager *FPP = dynamic_cast<FPPassManager *>(PMS.top());
1621
1622 // Create new Function Pass Manager
1623 if (!FPP) {
1624 assert(!PMS.empty() && "Unable to create Function Pass Manager");
1625 PMDataManager *PMD = PMS.top();
1626
1627 // [1] Create new Function Pass Manager
1628 FPP = new FPPassManager(PMD->getDepth() + 1);
Devang Patelcbbf2912008-03-20 01:09:53 +00001629 FPP->populateInheritedAnalysis(PMS);
Devang Patel3312f752007-01-16 21:43:18 +00001630
1631 // [2] Set up new manager's top level manager
1632 PMTopLevelManager *TPM = PMD->getTopLevelManager();
1633 TPM->addIndirectPassManager(FPP);
1634
1635 // [3] Assign manager to manage this new manager. This may create
1636 // and push new managers into PMS
Devang Patela3286902008-09-09 17:56:50 +00001637 FPP->assignPassManager(PMS, PMD->getPassManagerType());
Devang Patel3312f752007-01-16 21:43:18 +00001638
1639 // [4] Push new manager into PMS
1640 PMS.push(FPP);
Devang Patel1c56a632007-01-08 19:29:38 +00001641 }
1642
Devang Patel3312f752007-01-16 21:43:18 +00001643 // Assign FPP as the manager of this pass.
1644 FPP->add(this);
Devang Patel1c56a632007-01-08 19:29:38 +00001645}
1646
Devang Patel3312f752007-01-16 21:43:18 +00001647/// Find appropriate Basic Pass Manager or Call Graph Pass Manager
Devang Patel1c56a632007-01-08 19:29:38 +00001648/// in the PM Stack and add self into that manager.
Devang Pateldffca632007-01-17 20:30:17 +00001649void BasicBlockPass::assignPassManager(PMStack &PMS,
Anton Korobeynikovfb801512007-04-16 18:10:23 +00001650 PassManagerType PreferredType) {
Devang Patel1c56a632007-01-08 19:29:38 +00001651 BBPassManager *BBP = NULL;
1652
Devang Patel15701b52007-01-11 00:19:00 +00001653 // Basic Pass Manager is a leaf pass manager. It does not handle
1654 // any other pass manager.
Chris Lattnerde2aa652007-08-10 06:22:25 +00001655 if (!PMS.empty())
Devang Patel1c56a632007-01-08 19:29:38 +00001656 BBP = dynamic_cast<BBPassManager *>(PMS.top());
Devang Patel1c56a632007-01-08 19:29:38 +00001657
Devang Patel3312f752007-01-16 21:43:18 +00001658 // If leaf manager is not Basic Block Pass manager then create new
1659 // basic Block Pass manager.
Devang Patel15701b52007-01-11 00:19:00 +00001660
Devang Patel3312f752007-01-16 21:43:18 +00001661 if (!BBP) {
1662 assert(!PMS.empty() && "Unable to create BasicBlock Pass Manager");
1663 PMDataManager *PMD = PMS.top();
1664
1665 // [1] Create new Basic Block Manager
1666 BBP = new BBPassManager(PMD->getDepth() + 1);
1667
1668 // [2] Set up new manager's top level manager
1669 // Basic Block Pass Manager does not live by itself
1670 PMTopLevelManager *TPM = PMD->getTopLevelManager();
1671 TPM->addIndirectPassManager(BBP);
1672
Devang Patel15701b52007-01-11 00:19:00 +00001673 // [3] Assign manager to manage this new manager. This may create
1674 // and push new managers into PMS
Dan Gohman565df952008-03-13 02:08:36 +00001675 BBP->assignPassManager(PMS);
Devang Patel15701b52007-01-11 00:19:00 +00001676
Devang Patel3312f752007-01-16 21:43:18 +00001677 // [4] Push new manager into PMS
1678 PMS.push(BBP);
1679 }
Devang Patel1c56a632007-01-08 19:29:38 +00001680
Devang Patel3312f752007-01-16 21:43:18 +00001681 // Assign BBP as the manager of this pass.
1682 BBP->add(this);
Devang Patel1c56a632007-01-08 19:29:38 +00001683}
1684
Dan Gohmand3a20c92008-03-11 16:41:42 +00001685PassManagerBase::~PassManagerBase() {}
Gordon Henriksen878114b2008-03-16 04:20:44 +00001686
1687/*===-- C Bindings --------------------------------------------------------===*/
1688
1689LLVMPassManagerRef LLVMCreatePassManager() {
1690 return wrap(new PassManager());
1691}
1692
1693LLVMPassManagerRef LLVMCreateFunctionPassManager(LLVMModuleProviderRef P) {
1694 return wrap(new FunctionPassManager(unwrap(P)));
1695}
1696
1697int LLVMRunPassManager(LLVMPassManagerRef PM, LLVMModuleRef M) {
1698 return unwrap<PassManager>(PM)->run(*unwrap(M));
1699}
1700
1701int LLVMInitializeFunctionPassManager(LLVMPassManagerRef FPM) {
1702 return unwrap<FunctionPassManager>(FPM)->doInitialization();
1703}
1704
1705int LLVMRunFunctionPassManager(LLVMPassManagerRef FPM, LLVMValueRef F) {
1706 return unwrap<FunctionPassManager>(FPM)->run(*unwrap<Function>(F));
1707}
1708
1709int LLVMFinalizeFunctionPassManager(LLVMPassManagerRef FPM) {
1710 return unwrap<FunctionPassManager>(FPM)->doFinalization();
1711}
1712
1713void LLVMDisposePassManager(LLVMPassManagerRef PM) {
1714 delete unwrap(PM);
1715}