Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 1 | //===- PassManager.cpp - LLVM Pass Infrastructure Implementation ----------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the LLVM Pass Manager infrastructure. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | |
Devang Patel | e759955 | 2007-01-12 18:52:44 +0000 | [diff] [blame] | 15 | #include "llvm/PassManagers.h" |
Dan Gohman | 4dbb301 | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 16 | #include "llvm/Assembly/Writer.h" |
Devang Patel | f1567a5 | 2006-12-13 20:03:48 +0000 | [diff] [blame] | 17 | #include "llvm/Support/CommandLine.h" |
David Greene | 994e1bb | 2010-01-05 01:30:02 +0000 | [diff] [blame^] | 18 | #include "llvm/Support/Debug.h" |
Devang Patel | 1c3633e | 2007-01-29 23:10:37 +0000 | [diff] [blame] | 19 | #include "llvm/Support/Timer.h" |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 20 | #include "llvm/Module.h" |
Devang Patel | ff631ae | 2006-11-15 01:27:05 +0000 | [diff] [blame] | 21 | #include "llvm/ModuleProvider.h" |
Torok Edwin | 6dd2730 | 2009-07-08 18:01:40 +0000 | [diff] [blame] | 22 | #include "llvm/Support/ErrorHandling.h" |
Devang Patel | b8817b9 | 2006-12-14 00:59:42 +0000 | [diff] [blame] | 23 | #include "llvm/Support/ManagedStatic.h" |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 24 | #include "llvm/Support/raw_ostream.h" |
Owen Anderson | 0dd39fd | 2009-06-17 21:28:54 +0000 | [diff] [blame] | 25 | #include "llvm/System/Mutex.h" |
Owen Anderson | 7d42b95 | 2009-06-18 16:54:52 +0000 | [diff] [blame] | 26 | #include "llvm/System/Threading.h" |
Gordon Henriksen | 878114b | 2008-03-16 04:20:44 +0000 | [diff] [blame] | 27 | #include "llvm-c/Core.h" |
Jeff Cohen | b622c11 | 2007-03-05 00:00:42 +0000 | [diff] [blame] | 28 | #include <algorithm> |
Duncan Sands | 26ff6f9 | 2008-10-08 07:23:46 +0000 | [diff] [blame] | 29 | #include <cstdio> |
Devang Patel | f60b5d9 | 2006-11-14 01:59:59 +0000 | [diff] [blame] | 30 | #include <map> |
Dan Gohman | 8c43e41 | 2007-10-03 19:04:09 +0000 | [diff] [blame] | 31 | using namespace llvm; |
Devang Patel | ffca910 | 2006-12-15 19:39:30 +0000 | [diff] [blame] | 32 | |
Devang Patel | e759955 | 2007-01-12 18:52:44 +0000 | [diff] [blame] | 33 | // See PassManagers.h for Pass Manager infrastructure overview. |
Devang Patel | 6fea285 | 2006-12-07 18:23:30 +0000 | [diff] [blame] | 34 | |
Devang Patel | f1567a5 | 2006-12-13 20:03:48 +0000 | [diff] [blame] | 35 | namespace llvm { |
| 36 | |
| 37 | //===----------------------------------------------------------------------===// |
| 38 | // Pass debugging information. Often it is useful to find out what pass is |
| 39 | // running when a crash occurs in a utility. When this library is compiled with |
| 40 | // debugging on, a command line option (--debug-pass) is enabled that causes the |
| 41 | // pass name to be printed before it executes. |
| 42 | // |
| 43 | |
Devang Patel | 03fb587 | 2006-12-13 21:13:31 +0000 | [diff] [blame] | 44 | // Different debug levels that can be enabled... |
| 45 | enum PassDebugLevel { |
| 46 | None, Arguments, Structure, Executions, Details |
| 47 | }; |
| 48 | |
Devang Patel | f1567a5 | 2006-12-13 20:03:48 +0000 | [diff] [blame] | 49 | static cl::opt<enum PassDebugLevel> |
Devang Patel | fd418432 | 2007-01-17 20:33:36 +0000 | [diff] [blame] | 50 | PassDebugging("debug-pass", cl::Hidden, |
Devang Patel | f1567a5 | 2006-12-13 20:03:48 +0000 | [diff] [blame] | 51 | cl::desc("Print PassManager debugging information"), |
| 52 | cl::values( |
Devang Patel | 03fb587 | 2006-12-13 21:13:31 +0000 | [diff] [blame] | 53 | clEnumVal(None , "disable debug output"), |
| 54 | clEnumVal(Arguments , "print pass arguments to pass to 'opt'"), |
| 55 | clEnumVal(Structure , "print pass structure before run()"), |
| 56 | clEnumVal(Executions, "print pass name before it is executed"), |
| 57 | clEnumVal(Details , "print pass details when it is executed"), |
Devang Patel | f1567a5 | 2006-12-13 20:03:48 +0000 | [diff] [blame] | 58 | clEnumValEnd)); |
| 59 | } // End of llvm namespace |
| 60 | |
Chris Lattner | d4d966f | 2009-09-15 05:03:04 +0000 | [diff] [blame] | 61 | /// isPassDebuggingExecutionsOrMore - Return true if -debug-pass=Executions |
| 62 | /// or higher is specified. |
| 63 | bool PMDataManager::isPassDebuggingExecutionsOrMore() const { |
| 64 | return PassDebugging >= Executions; |
| 65 | } |
| 66 | |
| 67 | |
| 68 | |
| 69 | |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 70 | void PassManagerPrettyStackEntry::print(raw_ostream &OS) const { |
| 71 | if (V == 0 && M == 0) |
| 72 | OS << "Releasing pass '"; |
| 73 | else |
| 74 | OS << "Running pass '"; |
| 75 | |
| 76 | OS << P->getPassName() << "'"; |
| 77 | |
| 78 | if (M) { |
| 79 | OS << " on module '" << M->getModuleIdentifier() << "'.\n"; |
| 80 | return; |
| 81 | } |
| 82 | if (V == 0) { |
| 83 | OS << '\n'; |
| 84 | return; |
| 85 | } |
| 86 | |
Dan Gohman | 79fc0e9 | 2009-03-10 18:47:59 +0000 | [diff] [blame] | 87 | OS << " on "; |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 88 | if (isa<Function>(V)) |
Dan Gohman | 79fc0e9 | 2009-03-10 18:47:59 +0000 | [diff] [blame] | 89 | OS << "function"; |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 90 | else if (isa<BasicBlock>(V)) |
Dan Gohman | 79fc0e9 | 2009-03-10 18:47:59 +0000 | [diff] [blame] | 91 | OS << "basic block"; |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 92 | else |
Dan Gohman | 79fc0e9 | 2009-03-10 18:47:59 +0000 | [diff] [blame] | 93 | OS << "value"; |
| 94 | |
| 95 | OS << " '"; |
| 96 | WriteAsOperand(OS, V, /*PrintTy=*/false, M); |
| 97 | OS << "'\n"; |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | |
Devang Patel | ffca910 | 2006-12-15 19:39:30 +0000 | [diff] [blame] | 101 | namespace { |
Devang Patel | afb1f362 | 2006-12-12 22:35:25 +0000 | [diff] [blame] | 102 | |
Devang Patel | f33f3eb | 2006-12-07 19:21:29 +0000 | [diff] [blame] | 103 | //===----------------------------------------------------------------------===// |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 104 | // BBPassManager |
Devang Patel | 10c2ca6 | 2006-12-12 22:47:13 +0000 | [diff] [blame] | 105 | // |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 106 | /// BBPassManager manages BasicBlockPass. It batches all the |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 107 | /// pass together and sequence them to process one basic block before |
| 108 | /// processing next basic block. |
Nick Lewycky | 02d5f77 | 2009-10-25 06:33:48 +0000 | [diff] [blame] | 109 | class BBPassManager : public PMDataManager, public FunctionPass { |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 110 | |
| 111 | public: |
Devang Patel | 8c78a0b | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 112 | static char ID; |
Dan Gohman | 13ab93e | 2007-10-08 15:08:41 +0000 | [diff] [blame] | 113 | explicit BBPassManager(int Depth) |
Dan Gohman | a79db30 | 2008-09-04 17:05:41 +0000 | [diff] [blame] | 114 | : PMDataManager(Depth), FunctionPass(&ID) {} |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 115 | |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 116 | /// 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 Patel | f9d96b9 | 2006-12-07 19:57:52 +0000 | [diff] [blame] | 120 | /// Pass Manager itself does not invalidate any analysis info. |
| 121 | void getAnalysisUsage(AnalysisUsage &Info) const { |
| 122 | Info.setPreservesAll(); |
| 123 | } |
| 124 | |
Devang Patel | 475c453 | 2006-12-08 00:59:05 +0000 | [diff] [blame] | 125 | bool doInitialization(Module &M); |
| 126 | bool doInitialization(Function &F); |
| 127 | bool doFinalization(Module &M); |
| 128 | bool doFinalization(Function &F); |
| 129 | |
Devang Patel | e3858e6 | 2007-02-01 22:08:25 +0000 | [diff] [blame] | 130 | virtual const char *getPassName() const { |
Dan Gohman | 1e9860a | 2008-03-13 01:58:48 +0000 | [diff] [blame] | 131 | return "BasicBlock Pass Manager"; |
Devang Patel | e3858e6 | 2007-02-01 22:08:25 +0000 | [diff] [blame] | 132 | } |
| 133 | |
Devang Patel | eda5617 | 2006-12-12 23:34:33 +0000 | [diff] [blame] | 134 | // Print passes managed by this manager |
| 135 | void dumpPassStructure(unsigned Offset) { |
David Greene | 994e1bb | 2010-01-05 01:30:02 +0000 | [diff] [blame^] | 136 | llvm::dbgs() << std::string(Offset*2, ' ') << "BasicBlockPass Manager\n"; |
Devang Patel | abfbe3b | 2006-12-16 00:56:26 +0000 | [diff] [blame] | 137 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
| 138 | BasicBlockPass *BP = getContainedPass(Index); |
| 139 | BP->dumpPassStructure(Offset + 1); |
| 140 | dumpLastUses(BP, Offset+1); |
Devang Patel | eda5617 | 2006-12-12 23:34:33 +0000 | [diff] [blame] | 141 | } |
| 142 | } |
Devang Patel | abfbe3b | 2006-12-16 00:56:26 +0000 | [diff] [blame] | 143 | |
| 144 | BasicBlockPass *getContainedPass(unsigned N) { |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 145 | assert(N < PassVector.size() && "Pass number out of range!"); |
Devang Patel | abfbe3b | 2006-12-16 00:56:26 +0000 | [diff] [blame] | 146 | BasicBlockPass *BP = static_cast<BasicBlockPass *>(PassVector[N]); |
| 147 | return BP; |
| 148 | } |
Devang Patel | 3b3f899 | 2007-01-11 01:10:25 +0000 | [diff] [blame] | 149 | |
Devang Patel | 28349ab | 2007-02-27 15:00:39 +0000 | [diff] [blame] | 150 | virtual PassManagerType getPassManagerType() const { |
Devang Patel | 3b3f899 | 2007-01-11 01:10:25 +0000 | [diff] [blame] | 151 | return PMT_BasicBlockPassManager; |
| 152 | } |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 153 | }; |
| 154 | |
Devang Patel | 8c78a0b | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 155 | char BBPassManager::ID = 0; |
Devang Patel | e759955 | 2007-01-12 18:52:44 +0000 | [diff] [blame] | 156 | } |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 157 | |
Devang Patel | e759955 | 2007-01-12 18:52:44 +0000 | [diff] [blame] | 158 | namespace llvm { |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 159 | |
Devang Patel | 10c2ca6 | 2006-12-12 22:47:13 +0000 | [diff] [blame] | 160 | //===----------------------------------------------------------------------===// |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 161 | // FunctionPassManagerImpl |
Devang Patel | 10c2ca6 | 2006-12-12 22:47:13 +0000 | [diff] [blame] | 162 | // |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 163 | /// FunctionPassManagerImpl manages FPPassManagers |
| 164 | class FunctionPassManagerImpl : public Pass, |
Devang Patel | ad98d23 | 2007-01-11 22:15:30 +0000 | [diff] [blame] | 165 | public PMDataManager, |
| 166 | public PMTopLevelManager { |
Torok Edwin | 24c7835 | 2009-06-29 18:49:09 +0000 | [diff] [blame] | 167 | private: |
| 168 | bool wasRun; |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 169 | public: |
Devang Patel | 8c78a0b | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 170 | static char ID; |
Dan Gohman | 13ab93e | 2007-10-08 15:08:41 +0000 | [diff] [blame] | 171 | explicit FunctionPassManagerImpl(int Depth) : |
Dan Gohman | a79db30 | 2008-09-04 17:05:41 +0000 | [diff] [blame] | 172 | Pass(&ID), PMDataManager(Depth), |
Torok Edwin | 24c7835 | 2009-06-29 18:49:09 +0000 | [diff] [blame] | 173 | PMTopLevelManager(TLM_Function), wasRun(false) { } |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 174 | |
| 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 Edwin | 24c7835 | 2009-06-29 18:49:09 +0000 | [diff] [blame] | 183 | // Prepare for running an on the fly pass, freeing memory if needed |
| 184 | // from a previous run. |
| 185 | void releaseMemoryOnTheFly(); |
| 186 | |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 187 | /// 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 Gohman | e6656eb | 2007-07-30 14:51:13 +0000 | [diff] [blame] | 195 | /// doFinalization - Run all of the finalizers for the function passes. |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 196 | /// |
| 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 Patel | b66334b | 2007-01-05 22:47:07 +0000 | [diff] [blame] | 210 | AnalysisResolver *AR = new AnalysisResolver(*this); |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 211 | P->setResolver(AR); |
| 212 | initializeAnalysisImpl(P); |
| 213 | addImmutablePass(IP); |
| 214 | recordAvailableAnalysis(IP); |
Devang Patel | 0f08004 | 2007-01-12 17:23:48 +0000 | [diff] [blame] | 215 | } else { |
Devang Patel | 0f08004 | 2007-01-12 17:23:48 +0000 | [diff] [blame] | 216 | P->assignPassManager(activeStack); |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 217 | } |
Devang Patel | 0f08004 | 2007-01-12 17:23:48 +0000 | [diff] [blame] | 218 | |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 219 | } |
| 220 | |
| 221 | FPPassManager *getContainedManager(unsigned N) { |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 222 | assert(N < PassManagers.size() && "Pass number out of range!"); |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 223 | FPPassManager *FP = static_cast<FPPassManager *>(PassManagers[N]); |
| 224 | return FP; |
| 225 | } |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 226 | }; |
| 227 | |
Devang Patel | 8c78a0b | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 228 | char FunctionPassManagerImpl::ID = 0; |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 229 | //===----------------------------------------------------------------------===// |
| 230 | // MPPassManager |
| 231 | // |
| 232 | /// MPPassManager manages ModulePasses and function pass managers. |
Dan Gohman | dfdf2c0 | 2008-03-11 16:18:48 +0000 | [diff] [blame] | 233 | /// It batches all Module passes and function pass managers together and |
| 234 | /// sequences them to process one module. |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 235 | class MPPassManager : public Pass, public PMDataManager { |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 236 | public: |
Devang Patel | 8c78a0b | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 237 | static char ID; |
Dan Gohman | 13ab93e | 2007-10-08 15:08:41 +0000 | [diff] [blame] | 238 | explicit MPPassManager(int Depth) : |
Dan Gohman | a79db30 | 2008-09-04 17:05:41 +0000 | [diff] [blame] | 239 | Pass(&ID), PMDataManager(Depth) { } |
Devang Patel | 2ff4492 | 2007-04-16 20:39:59 +0000 | [diff] [blame] | 240 | |
| 241 | // Delete on the fly managers. |
| 242 | virtual ~MPPassManager() { |
Devang Patel | 68f72b1 | 2007-04-26 17:50:19 +0000 | [diff] [blame] | 243 | for (std::map<Pass *, FunctionPassManagerImpl *>::iterator |
Devang Patel | 2ff4492 | 2007-04-16 20:39:59 +0000 | [diff] [blame] | 244 | I = OnTheFlyManagers.begin(), E = OnTheFlyManagers.end(); |
| 245 | I != E; ++I) { |
Devang Patel | 68f72b1 | 2007-04-26 17:50:19 +0000 | [diff] [blame] | 246 | FunctionPassManagerImpl *FPP = I->second; |
Devang Patel | 2ff4492 | 2007-04-16 20:39:59 +0000 | [diff] [blame] | 247 | delete FPP; |
| 248 | } |
| 249 | } |
| 250 | |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 251 | /// 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 Patel | ebba970 | 2006-11-13 22:40:09 +0000 | [diff] [blame] | 254 | |
Devang Patel | f9d96b9 | 2006-12-07 19:57:52 +0000 | [diff] [blame] | 255 | /// Pass Manager itself does not invalidate any analysis info. |
| 256 | void getAnalysisUsage(AnalysisUsage &Info) const { |
| 257 | Info.setPreservesAll(); |
| 258 | } |
| 259 | |
Devang Patel | e64d305 | 2007-04-16 20:12:57 +0000 | [diff] [blame] | 260 | /// 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 Patel | 69e9f6d | 2007-04-16 20:27:05 +0000 | [diff] [blame] | 265 | /// 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 Patel | e3858e6 | 2007-02-01 22:08:25 +0000 | [diff] [blame] | 270 | virtual const char *getPassName() const { |
| 271 | return "Module Pass Manager"; |
| 272 | } |
| 273 | |
Devang Patel | eda5617 | 2006-12-12 23:34:33 +0000 | [diff] [blame] | 274 | // Print passes managed by this manager |
| 275 | void dumpPassStructure(unsigned Offset) { |
David Greene | 994e1bb | 2010-01-05 01:30:02 +0000 | [diff] [blame^] | 276 | llvm::dbgs() << std::string(Offset*2, ' ') << "ModulePass Manager\n"; |
Devang Patel | abfbe3b | 2006-12-16 00:56:26 +0000 | [diff] [blame] | 277 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
| 278 | ModulePass *MP = getContainedPass(Index); |
| 279 | MP->dumpPassStructure(Offset + 1); |
Dan Gohman | 83ff184 | 2009-07-01 23:12:33 +0000 | [diff] [blame] | 280 | std::map<Pass *, FunctionPassManagerImpl *>::const_iterator I = |
| 281 | OnTheFlyManagers.find(MP); |
| 282 | if (I != OnTheFlyManagers.end()) |
| 283 | I->second->dumpPassStructure(Offset + 2); |
Devang Patel | abfbe3b | 2006-12-16 00:56:26 +0000 | [diff] [blame] | 284 | dumpLastUses(MP, Offset+1); |
Devang Patel | eda5617 | 2006-12-12 23:34:33 +0000 | [diff] [blame] | 285 | } |
| 286 | } |
| 287 | |
Devang Patel | abfbe3b | 2006-12-16 00:56:26 +0000 | [diff] [blame] | 288 | ModulePass *getContainedPass(unsigned N) { |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 289 | assert(N < PassVector.size() && "Pass number out of range!"); |
| 290 | return static_cast<ModulePass *>(PassVector[N]); |
Devang Patel | abfbe3b | 2006-12-16 00:56:26 +0000 | [diff] [blame] | 291 | } |
| 292 | |
Devang Patel | 28349ab | 2007-02-27 15:00:39 +0000 | [diff] [blame] | 293 | virtual PassManagerType getPassManagerType() const { |
| 294 | return PMT_ModulePassManager; |
| 295 | } |
Devang Patel | 69e9f6d | 2007-04-16 20:27:05 +0000 | [diff] [blame] | 296 | |
| 297 | private: |
| 298 | /// Collection of on the fly FPPassManagers. These managers manage |
| 299 | /// function passes that are required by module passes. |
Devang Patel | 68f72b1 | 2007-04-26 17:50:19 +0000 | [diff] [blame] | 300 | std::map<Pass *, FunctionPassManagerImpl *> OnTheFlyManagers; |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 301 | }; |
| 302 | |
Devang Patel | 8c78a0b | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 303 | char MPPassManager::ID = 0; |
Devang Patel | 10c2ca6 | 2006-12-12 22:47:13 +0000 | [diff] [blame] | 304 | //===----------------------------------------------------------------------===// |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 305 | // PassManagerImpl |
Devang Patel | 10c2ca6 | 2006-12-12 22:47:13 +0000 | [diff] [blame] | 306 | // |
Devang Patel | 09f162c | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 307 | |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 308 | /// PassManagerImpl manages MPPassManagers |
| 309 | class PassManagerImpl : public Pass, |
Devang Patel | ad98d23 | 2007-01-11 22:15:30 +0000 | [diff] [blame] | 310 | public PMDataManager, |
| 311 | public PMTopLevelManager { |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 312 | |
| 313 | public: |
Devang Patel | 8c78a0b | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 314 | static char ID; |
Dan Gohman | 13ab93e | 2007-10-08 15:08:41 +0000 | [diff] [blame] | 315 | explicit PassManagerImpl(int Depth) : |
Dan Gohman | a79db30 | 2008-09-04 17:05:41 +0000 | [diff] [blame] | 316 | Pass(&ID), PMDataManager(Depth), PMTopLevelManager(TLM_Pass) { } |
Devang Patel | 4c36e6b | 2006-12-07 23:24:58 +0000 | [diff] [blame] | 317 | |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 318 | /// 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 Patel | 31217af | 2006-12-07 21:32:57 +0000 | [diff] [blame] | 322 | void add(Pass *P) { |
Devang Patel | df6c9ae | 2006-12-08 22:34:02 +0000 | [diff] [blame] | 323 | schedulePass(P); |
Devang Patel | 31217af | 2006-12-07 21:32:57 +0000 | [diff] [blame] | 324 | } |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 325 | |
| 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 Patel | f9d96b9 | 2006-12-07 19:57:52 +0000 | [diff] [blame] | 330 | /// Pass Manager itself does not invalidate any analysis info. |
| 331 | void getAnalysisUsage(AnalysisUsage &Info) const { |
| 332 | Info.setPreservesAll(); |
| 333 | } |
| 334 | |
Devang Patel | abcd1d3 | 2006-12-07 21:27:23 +0000 | [diff] [blame] | 335 | inline void addTopLevelPass(Pass *P) { |
Devang Patel | fa971cd | 2006-12-08 23:57:43 +0000 | [diff] [blame] | 336 | if (ImmutablePass *IP = dynamic_cast<ImmutablePass *> (P)) { |
Devang Patel | d440cd9 | 2006-12-08 23:53:00 +0000 | [diff] [blame] | 337 | |
| 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 Patel | b66334b | 2007-01-05 22:47:07 +0000 | [diff] [blame] | 340 | AnalysisResolver *AR = new AnalysisResolver(*this); |
Devang Patel | d440cd9 | 2006-12-08 23:53:00 +0000 | [diff] [blame] | 341 | P->setResolver(AR); |
Devang Patel | 9525754 | 2006-12-12 22:21:37 +0000 | [diff] [blame] | 342 | initializeAnalysisImpl(P); |
Devang Patel | fa971cd | 2006-12-08 23:57:43 +0000 | [diff] [blame] | 343 | addImmutablePass(IP); |
Devang Patel | 9525754 | 2006-12-12 22:21:37 +0000 | [diff] [blame] | 344 | recordAvailableAnalysis(IP); |
Devang Patel | 0f08004 | 2007-01-12 17:23:48 +0000 | [diff] [blame] | 345 | } else { |
Devang Patel | 0f08004 | 2007-01-12 17:23:48 +0000 | [diff] [blame] | 346 | P->assignPassManager(activeStack); |
Devang Patel | d440cd9 | 2006-12-08 23:53:00 +0000 | [diff] [blame] | 347 | } |
Devang Patel | abcd1d3 | 2006-12-07 21:27:23 +0000 | [diff] [blame] | 348 | } |
| 349 | |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 350 | MPPassManager *getContainedManager(unsigned N) { |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 351 | assert(N < PassManagers.size() && "Pass number out of range!"); |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 352 | MPPassManager *MP = static_cast<MPPassManager *>(PassManagers[N]); |
| 353 | return MP; |
| 354 | } |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 355 | }; |
| 356 | |
Devang Patel | 8c78a0b | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 357 | char PassManagerImpl::ID = 0; |
Devang Patel | 1c3633e | 2007-01-29 23:10:37 +0000 | [diff] [blame] | 358 | } // End of llvm namespace |
| 359 | |
| 360 | namespace { |
| 361 | |
| 362 | //===----------------------------------------------------------------------===// |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 363 | /// 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 Anderson | 0dd39fd | 2009-06-17 21:28:54 +0000 | [diff] [blame] | 367 | |
Owen Anderson | 5a6960f | 2009-06-18 20:51:00 +0000 | [diff] [blame] | 368 | static ManagedStatic<sys::SmartMutex<true> > TimingInfoMutex; |
Owen Anderson | 0dd39fd | 2009-06-17 21:28:54 +0000 | [diff] [blame] | 369 | |
Nick Lewycky | 02d5f77 | 2009-10-25 06:33:48 +0000 | [diff] [blame] | 370 | class TimingInfo { |
Devang Patel | 1c3633e | 2007-01-29 23:10:37 +0000 | [diff] [blame] | 371 | std::map<Pass*, Timer> TimingData; |
| 372 | TimerGroup TG; |
| 373 | |
| 374 | public: |
| 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 Gohman | 277e767 | 2009-09-28 00:07:05 +0000 | [diff] [blame] | 390 | /// 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 Patel | 1c3633e | 2007-01-29 23:10:37 +0000 | [diff] [blame] | 393 | if (dynamic_cast<PMDataManager *>(P)) |
Dan Gohman | 277e767 | 2009-09-28 00:07:05 +0000 | [diff] [blame] | 394 | return 0; |
Devang Patel | 1c3633e | 2007-01-29 23:10:37 +0000 | [diff] [blame] | 395 | |
Owen Anderson | 5c96ef7 | 2009-07-07 18:33:04 +0000 | [diff] [blame] | 396 | sys::SmartScopedLock<true> Lock(*TimingInfoMutex); |
Devang Patel | 1c3633e | 2007-01-29 23:10:37 +0000 | [diff] [blame] | 397 | 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 Gohman | 277e767 | 2009-09-28 00:07:05 +0000 | [diff] [blame] | 400 | Timer *T = &I->second; |
| 401 | T->startTimer(); |
| 402 | return T; |
Devang Patel | 1c3633e | 2007-01-29 23:10:37 +0000 | [diff] [blame] | 403 | } |
| 404 | }; |
| 405 | |
Devang Patel | 1c3633e | 2007-01-29 23:10:37 +0000 | [diff] [blame] | 406 | } // End of anon namespace |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 407 | |
Dan Gohman | d78c400 | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 408 | static TimingInfo *TheTimeInfo; |
| 409 | |
Devang Patel | a1514cb | 2006-12-07 19:39:39 +0000 | [diff] [blame] | 410 | //===----------------------------------------------------------------------===// |
Devang Patel | afb1f362 | 2006-12-12 22:35:25 +0000 | [diff] [blame] | 411 | // PMTopLevelManager implementation |
| 412 | |
Devang Patel | 4268fc0 | 2007-01-16 02:00:38 +0000 | [diff] [blame] | 413 | /// Initialize top level manager. Create first pass manager. |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 414 | PMTopLevelManager::PMTopLevelManager(enum TopLevelManagerType t) { |
Devang Patel | 4268fc0 | 2007-01-16 02:00:38 +0000 | [diff] [blame] | 415 | if (t == TLM_Pass) { |
| 416 | MPPassManager *MPP = new MPPassManager(1); |
| 417 | MPP->setTopLevelManager(this); |
| 418 | addPassManager(MPP); |
| 419 | activeStack.push(MPP); |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 420 | } else if (t == TLM_Function) { |
Devang Patel | 4268fc0 | 2007-01-16 02:00:38 +0000 | [diff] [blame] | 421 | FPPassManager *FPP = new FPPassManager(1); |
| 422 | FPP->setTopLevelManager(this); |
| 423 | addPassManager(FPP); |
| 424 | activeStack.push(FPP); |
| 425 | } |
| 426 | } |
| 427 | |
Devang Patel | afb1f362 | 2006-12-12 22:35:25 +0000 | [diff] [blame] | 428 | /// Set pass P as the last user of the given analysis passes. |
Devang Patel | 8adae86 | 2007-07-20 18:04:54 +0000 | [diff] [blame] | 429 | void PMTopLevelManager::setLastUser(SmallVector<Pass *, 12> &AnalysisPasses, |
Devang Patel | afb1f362 | 2006-12-12 22:35:25 +0000 | [diff] [blame] | 430 | Pass *P) { |
Devang Patel | 8adae86 | 2007-07-20 18:04:54 +0000 | [diff] [blame] | 431 | for (SmallVector<Pass *, 12>::iterator I = AnalysisPasses.begin(), |
Devang Patel | afb1f362 | 2006-12-12 22:35:25 +0000 | [diff] [blame] | 432 | E = AnalysisPasses.end(); I != E; ++I) { |
| 433 | Pass *AP = *I; |
| 434 | LastUser[AP] = P; |
Devang Patel | 01919d2 | 2007-03-08 19:05:01 +0000 | [diff] [blame] | 435 | |
| 436 | if (P == AP) |
| 437 | continue; |
| 438 | |
Devang Patel | afb1f362 | 2006-12-12 22:35:25 +0000 | [diff] [blame] | 439 | // If AP is the last user of other passes then make P last user of |
| 440 | // such passes. |
Devang Patel | c68a0b6 | 2008-08-12 00:26:16 +0000 | [diff] [blame] | 441 | for (DenseMap<Pass *, Pass *>::iterator LUI = LastUser.begin(), |
Devang Patel | afb1f362 | 2006-12-12 22:35:25 +0000 | [diff] [blame] | 442 | LUE = LastUser.end(); LUI != LUE; ++LUI) { |
| 443 | if (LUI->second == AP) |
Devang Patel | c68a0b6 | 2008-08-12 00:26:16 +0000 | [diff] [blame] | 444 | // DenseMap iterator is not invalidated here because |
| 445 | // this is just updating exisitng entry. |
Devang Patel | afb1f362 | 2006-12-12 22:35:25 +0000 | [diff] [blame] | 446 | LastUser[LUI->first] = P; |
| 447 | } |
| 448 | } |
Devang Patel | afb1f362 | 2006-12-12 22:35:25 +0000 | [diff] [blame] | 449 | } |
| 450 | |
| 451 | /// Collect passes whose last user is P |
Devang Patel | 8adae86 | 2007-07-20 18:04:54 +0000 | [diff] [blame] | 452 | void PMTopLevelManager::collectLastUses(SmallVector<Pass *, 12> &LastUses, |
Devang Patel | c68a0b6 | 2008-08-12 00:26:16 +0000 | [diff] [blame] | 453 | 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 Patel | afb1f362 | 2006-12-12 22:35:25 +0000 | [diff] [blame] | 465 | } |
| 466 | |
Devang Patel | ec9e1a60a | 2008-08-11 21:13:39 +0000 | [diff] [blame] | 467 | AnalysisUsage *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 Patel | afb1f362 | 2006-12-12 22:35:25 +0000 | [diff] [blame] | 480 | /// 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. |
| 483 | void PMTopLevelManager::schedulePass(Pass *P) { |
| 484 | |
Devang Patel | 3312f75 | 2007-01-16 21:43:18 +0000 | [diff] [blame] | 485 | // TODO : Allocate function manager for this pass, other wise required set |
| 486 | // may be inserted into previous function manager |
Devang Patel | afb1f362 | 2006-12-12 22:35:25 +0000 | [diff] [blame] | 487 | |
Devang Patel | d74ede7 | 2007-03-06 01:06:16 +0000 | [diff] [blame] | 488 | // Give pass a chance to prepare the stage. |
| 489 | P->preparePassManager(activeStack); |
| 490 | |
Devang Patel | 864970e | 2008-03-18 00:39:19 +0000 | [diff] [blame] | 491 | // 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 Patel | 718da66 | 2008-03-19 21:56:59 +0000 | [diff] [blame] | 494 | if (P->getPassInfo() && |
Nuno Lopes | 0460bb2 | 2008-11-04 23:03:58 +0000 | [diff] [blame] | 495 | P->getPassInfo()->isAnalysis() && findAnalysisPass(P->getPassInfo())) { |
| 496 | delete P; |
Devang Patel | af75ab8 | 2008-03-19 00:48:41 +0000 | [diff] [blame] | 497 | return; |
Nuno Lopes | 0460bb2 | 2008-11-04 23:03:58 +0000 | [diff] [blame] | 498 | } |
Devang Patel | 864970e | 2008-03-18 00:39:19 +0000 | [diff] [blame] | 499 | |
Devang Patel | ec9e1a60a | 2008-08-11 21:13:39 +0000 | [diff] [blame] | 500 | AnalysisUsage *AnUsage = findAnalysisUsage(P); |
| 501 | |
Devang Patel | fdee703 | 2008-08-14 23:07:48 +0000 | [diff] [blame] | 502 | 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 Patel | afb1f362 | 2006-12-12 22:35:25 +0000 | [diff] [blame] | 530 | } |
| 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. |
| 540 | Pass *PMTopLevelManager::findAnalysisPass(AnalysisID AID) { |
| 541 | |
| 542 | Pass *P = NULL; |
Devang Patel | cd6ba15 | 2006-12-12 22:50:05 +0000 | [diff] [blame] | 543 | // Check pass managers |
Devang Patel | 0d29ae0 | 2008-08-12 15:44:31 +0000 | [diff] [blame] | 544 | for (SmallVector<PMDataManager *, 8>::iterator I = PassManagers.begin(), |
Devang Patel | cd6ba15 | 2006-12-12 22:50:05 +0000 | [diff] [blame] | 545 | E = PassManagers.end(); P == NULL && I != E; ++I) { |
Dan Gohman | 73caf5f | 2008-03-13 01:48:32 +0000 | [diff] [blame] | 546 | PMDataManager *PMD = *I; |
Devang Patel | cd6ba15 | 2006-12-12 22:50:05 +0000 | [diff] [blame] | 547 | P = PMD->findAnalysisPass(AID, false); |
| 548 | } |
| 549 | |
| 550 | // Check other pass managers |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 551 | for (SmallVector<PMDataManager *, 8>::iterator |
| 552 | I = IndirectPassManagers.begin(), |
Devang Patel | cd6ba15 | 2006-12-12 22:50:05 +0000 | [diff] [blame] | 553 | E = IndirectPassManagers.end(); P == NULL && I != E; ++I) |
| 554 | P = (*I)->findAnalysisPass(AID, false); |
| 555 | |
Devang Patel | 0d29ae0 | 2008-08-12 15:44:31 +0000 | [diff] [blame] | 556 | for (SmallVector<ImmutablePass *, 8>::iterator I = ImmutablePasses.begin(), |
Devang Patel | afb1f362 | 2006-12-12 22:35:25 +0000 | [diff] [blame] | 557 | 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 Gohman | 929391a | 2008-01-29 12:09:55 +0000 | [diff] [blame] | 564 | const std::vector<const PassInfo*> &ImmPI = |
| 565 | PI->getInterfacesImplemented(); |
Devang Patel | 56d48ec | 2006-12-15 22:57:49 +0000 | [diff] [blame] | 566 | if (std::find(ImmPI.begin(), ImmPI.end(), AID) != ImmPI.end()) |
| 567 | P = *I; |
Devang Patel | afb1f362 | 2006-12-12 22:35:25 +0000 | [diff] [blame] | 568 | } |
| 569 | } |
| 570 | |
Devang Patel | afb1f362 | 2006-12-12 22:35:25 +0000 | [diff] [blame] | 571 | return P; |
| 572 | } |
| 573 | |
Devang Patel | eda5617 | 2006-12-12 23:34:33 +0000 | [diff] [blame] | 574 | // Print passes managed by this top level manager. |
Devang Patel | 991aeba | 2006-12-15 20:13:01 +0000 | [diff] [blame] | 575 | void PMTopLevelManager::dumpPasses() const { |
Devang Patel | eda5617 | 2006-12-12 23:34:33 +0000 | [diff] [blame] | 576 | |
Devang Patel | fd418432 | 2007-01-17 20:33:36 +0000 | [diff] [blame] | 577 | if (PassDebugging < Structure) |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 578 | return; |
| 579 | |
Devang Patel | eda5617 | 2006-12-12 23:34:33 +0000 | [diff] [blame] | 580 | // Print out the immutable passes |
| 581 | for (unsigned i = 0, e = ImmutablePasses.size(); i != e; ++i) { |
| 582 | ImmutablePasses[i]->dumpPassStructure(0); |
| 583 | } |
| 584 | |
Dan Gohman | 73caf5f | 2008-03-13 01:48:32 +0000 | [diff] [blame] | 585 | // 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 Patel | 0d29ae0 | 2008-08-12 15:44:31 +0000 | [diff] [blame] | 589 | for (SmallVector<PMDataManager *, 8>::const_iterator I = PassManagers.begin(), |
Devang Patel | eda5617 | 2006-12-12 23:34:33 +0000 | [diff] [blame] | 590 | E = PassManagers.end(); I != E; ++I) |
Dan Gohman | 73caf5f | 2008-03-13 01:48:32 +0000 | [diff] [blame] | 591 | dynamic_cast<Pass *>(*I)->dumpPassStructure(1); |
Devang Patel | eda5617 | 2006-12-12 23:34:33 +0000 | [diff] [blame] | 592 | } |
| 593 | |
Devang Patel | 991aeba | 2006-12-15 20:13:01 +0000 | [diff] [blame] | 594 | void PMTopLevelManager::dumpArguments() const { |
Devang Patel | cfd70c4 | 2006-12-13 22:10:00 +0000 | [diff] [blame] | 595 | |
Devang Patel | fd418432 | 2007-01-17 20:33:36 +0000 | [diff] [blame] | 596 | if (PassDebugging < Arguments) |
Devang Patel | cfd70c4 | 2006-12-13 22:10:00 +0000 | [diff] [blame] | 597 | return; |
| 598 | |
David Greene | 994e1bb | 2010-01-05 01:30:02 +0000 | [diff] [blame^] | 599 | dbgs() << "Pass Arguments: "; |
Devang Patel | 0d29ae0 | 2008-08-12 15:44:31 +0000 | [diff] [blame] | 600 | for (SmallVector<PMDataManager *, 8>::const_iterator I = PassManagers.begin(), |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 601 | E = PassManagers.end(); I != E; ++I) |
| 602 | (*I)->dumpPassArguments(); |
David Greene | 994e1bb | 2010-01-05 01:30:02 +0000 | [diff] [blame^] | 603 | dbgs() << "\n"; |
Devang Patel | cfd70c4 | 2006-12-13 22:10:00 +0000 | [diff] [blame] | 604 | } |
| 605 | |
Devang Patel | e306840 | 2006-12-21 00:16:50 +0000 | [diff] [blame] | 606 | void PMTopLevelManager::initializeAllAnalysisInfo() { |
Devang Patel | 0d29ae0 | 2008-08-12 15:44:31 +0000 | [diff] [blame] | 607 | for (SmallVector<PMDataManager *, 8>::iterator I = PassManagers.begin(), |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 608 | E = PassManagers.end(); I != E; ++I) |
| 609 | (*I)->initializeAnalysisInfo(); |
Devang Patel | e306840 | 2006-12-21 00:16:50 +0000 | [diff] [blame] | 610 | |
| 611 | // Initailize other pass managers |
Devang Patel | 0d29ae0 | 2008-08-12 15:44:31 +0000 | [diff] [blame] | 612 | for (SmallVector<PMDataManager *, 8>::iterator I = IndirectPassManagers.begin(), |
Devang Patel | e306840 | 2006-12-21 00:16:50 +0000 | [diff] [blame] | 613 | E = IndirectPassManagers.end(); I != E; ++I) |
| 614 | (*I)->initializeAnalysisInfo(); |
Devang Patel | c68a0b6 | 2008-08-12 00:26:16 +0000 | [diff] [blame] | 615 | |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 616 | for (DenseMap<Pass *, Pass *>::iterator DMI = LastUser.begin(), |
Devang Patel | c68a0b6 | 2008-08-12 00:26:16 +0000 | [diff] [blame] | 617 | 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 Patel | e306840 | 2006-12-21 00:16:50 +0000 | [diff] [blame] | 628 | } |
| 629 | |
Devang Patel | e759955 | 2007-01-12 18:52:44 +0000 | [diff] [blame] | 630 | /// Destructor |
| 631 | PMTopLevelManager::~PMTopLevelManager() { |
Devang Patel | 0d29ae0 | 2008-08-12 15:44:31 +0000 | [diff] [blame] | 632 | for (SmallVector<PMDataManager *, 8>::iterator I = PassManagers.begin(), |
Devang Patel | e759955 | 2007-01-12 18:52:44 +0000 | [diff] [blame] | 633 | E = PassManagers.end(); I != E; ++I) |
| 634 | delete *I; |
| 635 | |
Devang Patel | 0d29ae0 | 2008-08-12 15:44:31 +0000 | [diff] [blame] | 636 | for (SmallVector<ImmutablePass *, 8>::iterator |
Devang Patel | e759955 | 2007-01-12 18:52:44 +0000 | [diff] [blame] | 637 | I = ImmutablePasses.begin(), E = ImmutablePasses.end(); I != E; ++I) |
| 638 | delete *I; |
Devang Patel | ec9e1a60a | 2008-08-11 21:13:39 +0000 | [diff] [blame] | 639 | |
| 640 | for (DenseMap<Pass *, AnalysisUsage *>::iterator DMI = AnUsageMap.begin(), |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 641 | DME = AnUsageMap.end(); DMI != DME; ++DMI) |
| 642 | delete DMI->second; |
Devang Patel | e759955 | 2007-01-12 18:52:44 +0000 | [diff] [blame] | 643 | } |
| 644 | |
Devang Patel | afb1f362 | 2006-12-12 22:35:25 +0000 | [diff] [blame] | 645 | //===----------------------------------------------------------------------===// |
Devang Patel | dbe4a1e | 2006-12-07 18:36:24 +0000 | [diff] [blame] | 646 | // PMDataManager implementation |
Devang Patel | f68a349 | 2006-11-07 22:35:17 +0000 | [diff] [blame] | 647 | |
Devang Patel | 643676c | 2006-11-11 01:10:19 +0000 | [diff] [blame] | 648 | /// Augement AvailableAnalysis by adding analysis made available by pass P. |
Devang Patel | e9976aa | 2006-12-07 19:33:53 +0000 | [diff] [blame] | 649 | void PMDataManager::recordAvailableAnalysis(Pass *P) { |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 650 | const PassInfo *PI = P->getPassInfo(); |
| 651 | if (PI == 0) return; |
| 652 | |
| 653 | AvailableAnalysis[PI] = P; |
Devang Patel | 643676c | 2006-11-11 01:10:19 +0000 | [diff] [blame] | 654 | |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 655 | //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 Patel | 643676c | 2006-11-11 01:10:19 +0000 | [diff] [blame] | 660 | } |
| 661 | |
Devang Patel | 9d9fc90 | 2007-03-06 17:52:53 +0000 | [diff] [blame] | 662 | // Return true if P preserves high level analysis used by other |
| 663 | // passes managed by this manager |
| 664 | bool PMDataManager::preserveHigherLevelAnalysis(Pass *P) { |
Devang Patel | ec9e1a60a | 2008-08-11 21:13:39 +0000 | [diff] [blame] | 665 | AnalysisUsage *AnUsage = TPM->findAnalysisUsage(P); |
Devang Patel | ec9e1a60a | 2008-08-11 21:13:39 +0000 | [diff] [blame] | 666 | if (AnUsage->getPreservesAll()) |
Devang Patel | 9d9fc90 | 2007-03-06 17:52:53 +0000 | [diff] [blame] | 667 | return true; |
| 668 | |
Devang Patel | ec9e1a60a | 2008-08-11 21:13:39 +0000 | [diff] [blame] | 669 | const AnalysisUsage::VectorType &PreservedSet = AnUsage->getPreservedSet(); |
Devang Patel | 0d29ae0 | 2008-08-12 15:44:31 +0000 | [diff] [blame] | 670 | for (SmallVector<Pass *, 8>::iterator I = HigherLevelAnalysis.begin(), |
Devang Patel | 9d9fc90 | 2007-03-06 17:52:53 +0000 | [diff] [blame] | 671 | E = HigherLevelAnalysis.end(); I != E; ++I) { |
| 672 | Pass *P1 = *I; |
Dan Gohman | 929391a | 2008-01-29 12:09:55 +0000 | [diff] [blame] | 673 | if (!dynamic_cast<ImmutablePass*>(P1) && |
| 674 | std::find(PreservedSet.begin(), PreservedSet.end(), |
| 675 | P1->getPassInfo()) == |
Devang Patel | 01919d2 | 2007-03-08 19:05:01 +0000 | [diff] [blame] | 676 | PreservedSet.end()) |
| 677 | return false; |
Devang Patel | 9d9fc90 | 2007-03-06 17:52:53 +0000 | [diff] [blame] | 678 | } |
| 679 | |
| 680 | return true; |
| 681 | } |
| 682 | |
Chris Lattner | 02eb94c | 2008-08-07 07:34:50 +0000 | [diff] [blame] | 683 | /// verifyPreservedAnalysis -- Verify analysis preserved by pass P. |
Devang Patel | a273d1c | 2007-07-19 18:02:32 +0000 | [diff] [blame] | 684 | void PMDataManager::verifyPreservedAnalysis(Pass *P) { |
Chris Lattner | 02eb94c | 2008-08-07 07:34:50 +0000 | [diff] [blame] | 685 | // Don't do this unless assertions are enabled. |
| 686 | #ifdef NDEBUG |
| 687 | return; |
| 688 | #endif |
Devang Patel | ec9e1a60a | 2008-08-11 21:13:39 +0000 | [diff] [blame] | 689 | AnalysisUsage *AnUsage = TPM->findAnalysisUsage(P); |
| 690 | const AnalysisUsage::VectorType &PreservedSet = AnUsage->getPreservedSet(); |
Devang Patel | f68a349 | 2006-11-07 22:35:17 +0000 | [diff] [blame] | 691 | |
Devang Patel | ef43253 | 2007-07-19 05:36:09 +0000 | [diff] [blame] | 692 | // Verify preserved analysis |
Chris Lattner | cbd160f | 2008-08-08 05:33:04 +0000 | [diff] [blame] | 693 | for (AnalysisUsage::VectorType::const_iterator I = PreservedSet.begin(), |
Devang Patel | a273d1c | 2007-07-19 18:02:32 +0000 | [diff] [blame] | 694 | E = PreservedSet.end(); I != E; ++I) { |
| 695 | AnalysisID AID = *I; |
Dan Gohman | 4dbb301 | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 696 | if (Pass *AP = findAnalysisPass(AID, true)) { |
| 697 | |
| 698 | Timer *T = 0; |
| 699 | if (TheTimeInfo) T = TheTimeInfo->passStarted(AP); |
Devang Patel | a273d1c | 2007-07-19 18:02:32 +0000 | [diff] [blame] | 700 | AP->verifyAnalysis(); |
Dan Gohman | 4dbb301 | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 701 | if (T) T->stopTimer(); |
| 702 | } |
Devang Patel | 9dbe4d1 | 2008-07-01 17:44:24 +0000 | [diff] [blame] | 703 | } |
| 704 | } |
| 705 | |
Devang Patel | 67c79a4 | 2008-07-01 19:50:56 +0000 | [diff] [blame] | 706 | /// Remove Analysis not preserved by Pass P |
Devang Patel | a273d1c | 2007-07-19 18:02:32 +0000 | [diff] [blame] | 707 | void PMDataManager::removeNotPreservedAnalysis(Pass *P) { |
Devang Patel | ec9e1a60a | 2008-08-11 21:13:39 +0000 | [diff] [blame] | 708 | AnalysisUsage *AnUsage = TPM->findAnalysisUsage(P); |
| 709 | if (AnUsage->getPreservesAll()) |
Devang Patel | 2e169c3 | 2006-12-07 20:03:49 +0000 | [diff] [blame] | 710 | return; |
| 711 | |
Devang Patel | ec9e1a60a | 2008-08-11 21:13:39 +0000 | [diff] [blame] | 712 | const AnalysisUsage::VectorType &PreservedSet = AnUsage->getPreservedSet(); |
Devang Patel | f60b5d9 | 2006-11-14 01:59:59 +0000 | [diff] [blame] | 713 | for (std::map<AnalysisID, Pass*>::iterator I = AvailableAnalysis.begin(), |
Devang Patel | be6bd55e | 2006-12-12 23:07:44 +0000 | [diff] [blame] | 714 | E = AvailableAnalysis.end(); I != E; ) { |
Devang Patel | 56d48ec | 2006-12-15 22:57:49 +0000 | [diff] [blame] | 715 | std::map<AnalysisID, Pass*>::iterator Info = I++; |
Devang Patel | 01919d2 | 2007-03-08 19:05:01 +0000 | [diff] [blame] | 716 | if (!dynamic_cast<ImmutablePass*>(Info->second) |
| 717 | && std::find(PreservedSet.begin(), PreservedSet.end(), Info->first) == |
Devang Patel | bb4720c | 2008-06-03 01:02:16 +0000 | [diff] [blame] | 718 | PreservedSet.end()) { |
Devang Patel | 349170f | 2006-11-11 01:24:55 +0000 | [diff] [blame] | 719 | // Remove this analysis |
Devang Patel | bb4720c | 2008-06-03 01:02:16 +0000 | [diff] [blame] | 720 | if (PassDebugging >= Details) { |
| 721 | Pass *S = Info->second; |
David Greene | 994e1bb | 2010-01-05 01:30:02 +0000 | [diff] [blame^] | 722 | dbgs() << " -- '" << P->getPassName() << "' is not preserving '"; |
| 723 | dbgs() << S->getPassName() << "'\n"; |
Devang Patel | bb4720c | 2008-06-03 01:02:16 +0000 | [diff] [blame] | 724 | } |
Dan Gohman | 193e4c0 | 2008-11-06 21:57:17 +0000 | [diff] [blame] | 725 | AvailableAnalysis.erase(Info); |
Devang Patel | bb4720c | 2008-06-03 01:02:16 +0000 | [diff] [blame] | 726 | } |
Devang Patel | 349170f | 2006-11-11 01:24:55 +0000 | [diff] [blame] | 727 | } |
Devang Patel | 42dd1e9 | 2007-03-06 01:55:46 +0000 | [diff] [blame] | 728 | |
| 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 Gohman | 929391a | 2008-01-29 12:09:55 +0000 | [diff] [blame] | 740 | if (!dynamic_cast<ImmutablePass*>(Info->second) && |
| 741 | std::find(PreservedSet.begin(), PreservedSet.end(), Info->first) == |
Andreas Neustifter | 4665141 | 2009-12-04 06:58:24 +0000 | [diff] [blame] | 742 | PreservedSet.end()) { |
Devang Patel | 42dd1e9 | 2007-03-06 01:55:46 +0000 | [diff] [blame] | 743 | // Remove this analysis |
Andreas Neustifter | 4665141 | 2009-12-04 06:58:24 +0000 | [diff] [blame] | 744 | if (PassDebugging >= Details) { |
| 745 | Pass *S = Info->second; |
David Greene | 994e1bb | 2010-01-05 01:30:02 +0000 | [diff] [blame^] | 746 | dbgs() << " -- '" << P->getPassName() << "' is not preserving '"; |
| 747 | dbgs() << S->getPassName() << "'\n"; |
Andreas Neustifter | 4665141 | 2009-12-04 06:58:24 +0000 | [diff] [blame] | 748 | } |
Devang Patel | 01919d2 | 2007-03-08 19:05:01 +0000 | [diff] [blame] | 749 | InheritedAnalysis[Index]->erase(Info); |
Andreas Neustifter | 4665141 | 2009-12-04 06:58:24 +0000 | [diff] [blame] | 750 | } |
Devang Patel | 42dd1e9 | 2007-03-06 01:55:46 +0000 | [diff] [blame] | 751 | } |
| 752 | } |
Devang Patel | f68a349 | 2006-11-07 22:35:17 +0000 | [diff] [blame] | 753 | } |
| 754 | |
Devang Patel | ca18926 | 2006-11-14 03:05:08 +0000 | [diff] [blame] | 755 | /// Remove analysis passes that are not used any longer |
Daniel Dunbar | ad36e8a | 2009-11-06 10:58:06 +0000 | [diff] [blame] | 756 | void PMDataManager::removeDeadPasses(Pass *P, StringRef Msg, |
Devang Patel | 003a559 | 2007-03-05 20:01:30 +0000 | [diff] [blame] | 757 | enum PassDebuggingString DBG_STR) { |
Devang Patel | 17ad096 | 2006-12-08 00:37:52 +0000 | [diff] [blame] | 758 | |
Devang Patel | 8adae86 | 2007-07-20 18:04:54 +0000 | [diff] [blame] | 759 | SmallVector<Pass *, 12> DeadPasses; |
Devang Patel | 69e9f6d | 2007-04-16 20:27:05 +0000 | [diff] [blame] | 760 | |
Devang Patel | 2ff4492 | 2007-04-16 20:39:59 +0000 | [diff] [blame] | 761 | // If this is a on the fly manager then it does not have TPM. |
Devang Patel | 69e9f6d | 2007-04-16 20:27:05 +0000 | [diff] [blame] | 762 | if (!TPM) |
| 763 | return; |
| 764 | |
Devang Patel | 17ad096 | 2006-12-08 00:37:52 +0000 | [diff] [blame] | 765 | TPM->collectLastUses(DeadPasses, P); |
| 766 | |
Devang Patel | 656a917 | 2008-06-06 17:50:36 +0000 | [diff] [blame] | 767 | if (PassDebugging >= Details && !DeadPasses.empty()) { |
David Greene | 994e1bb | 2010-01-05 01:30:02 +0000 | [diff] [blame^] | 768 | dbgs() << " -*- '" << P->getPassName(); |
| 769 | dbgs() << "' is the last user of following pass instances."; |
| 770 | dbgs() << " Free these instances\n"; |
Evan Cheng | 93af6ce | 2008-06-04 09:13:31 +0000 | [diff] [blame] | 771 | } |
| 772 | |
Devang Patel | 8adae86 | 2007-07-20 18:04:54 +0000 | [diff] [blame] | 773 | for (SmallVector<Pass *, 12>::iterator I = DeadPasses.begin(), |
Dan Gohman | 5e8ba5d | 2009-09-27 23:38:27 +0000 | [diff] [blame] | 774 | E = DeadPasses.end(); I != E; ++I) |
| 775 | freePass(*I, Msg, DBG_STR); |
| 776 | } |
Devang Patel | 200d305 | 2006-12-13 23:50:44 +0000 | [diff] [blame] | 777 | |
Daniel Dunbar | ad36e8a | 2009-11-06 10:58:06 +0000 | [diff] [blame] | 778 | void PMDataManager::freePass(Pass *P, StringRef Msg, |
Dan Gohman | 5e8ba5d | 2009-09-27 23:38:27 +0000 | [diff] [blame] | 779 | enum PassDebuggingString DBG_STR) { |
| 780 | dumpPassInfo(P, FREEING_MSG, DBG_STR, Msg); |
Devang Patel | 200d305 | 2006-12-13 23:50:44 +0000 | [diff] [blame] | 781 | |
Dan Gohman | 5e8ba5d | 2009-09-27 23:38:27 +0000 | [diff] [blame] | 782 | { |
| 783 | // If the pass crashes releasing memory, remember this. |
| 784 | PassManagerPrettyStackEntry X(P); |
| 785 | |
Dan Gohman | 277e767 | 2009-09-28 00:07:05 +0000 | [diff] [blame] | 786 | Timer *T = StartPassTimer(P); |
Dan Gohman | 5e8ba5d | 2009-09-27 23:38:27 +0000 | [diff] [blame] | 787 | P->releaseMemory(); |
Dan Gohman | 277e767 | 2009-09-28 00:07:05 +0000 | [diff] [blame] | 788 | StopPassTimer(P, T); |
Dan Gohman | 5e8ba5d | 2009-09-27 23:38:27 +0000 | [diff] [blame] | 789 | } |
| 790 | |
| 791 | if (const PassInfo *PI = P->getPassInfo()) { |
| 792 | // Remove the pass itself (if it is not already removed). |
| 793 | AvailableAnalysis.erase(PI); |
| 794 | |
| 795 | // Remove all interfaces this pass implements, for which it is also |
| 796 | // listed as the available implementation. |
| 797 | const std::vector<const PassInfo*> &II = PI->getInterfacesImplemented(); |
| 798 | for (unsigned i = 0, e = II.size(); i != e; ++i) { |
Devang Patel | c3e3ca9 | 2008-10-06 20:36:36 +0000 | [diff] [blame] | 799 | std::map<AnalysisID, Pass*>::iterator Pos = |
Dan Gohman | 5e8ba5d | 2009-09-27 23:38:27 +0000 | [diff] [blame] | 800 | AvailableAnalysis.find(II[i]); |
| 801 | if (Pos != AvailableAnalysis.end() && Pos->second == P) |
Devang Patel | c3e3ca9 | 2008-10-06 20:36:36 +0000 | [diff] [blame] | 802 | AvailableAnalysis.erase(Pos); |
Devang Patel | c3e3ca9 | 2008-10-06 20:36:36 +0000 | [diff] [blame] | 803 | } |
Devang Patel | 17ad096 | 2006-12-08 00:37:52 +0000 | [diff] [blame] | 804 | } |
Devang Patel | ca18926 | 2006-11-14 03:05:08 +0000 | [diff] [blame] | 805 | } |
| 806 | |
Devang Patel | 8f677ce | 2006-12-07 18:47:25 +0000 | [diff] [blame] | 807 | /// Add pass P into the PassVector. Update |
Devang Patel | 90b05e0 | 2006-11-11 02:04:19 +0000 | [diff] [blame] | 808 | /// AvailableAnalysis appropriately if ProcessAnalysis is true. |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 809 | void PMDataManager::add(Pass *P, bool ProcessAnalysis) { |
Devang Patel | d440cd9 | 2006-12-08 23:53:00 +0000 | [diff] [blame] | 810 | // This manager is going to manage pass P. Set up analysis resolver |
| 811 | // to connect them. |
Devang Patel | b66334b | 2007-01-05 22:47:07 +0000 | [diff] [blame] | 812 | AnalysisResolver *AR = new AnalysisResolver(*this); |
Devang Patel | d440cd9 | 2006-12-08 23:53:00 +0000 | [diff] [blame] | 813 | P->setResolver(AR); |
| 814 | |
Devang Patel | ec2b9a7 | 2007-03-05 22:57:49 +0000 | [diff] [blame] | 815 | // If a FunctionPass F is the last user of ModulePass info M |
| 816 | // then the F's manager, not F, records itself as a last user of M. |
Devang Patel | 8adae86 | 2007-07-20 18:04:54 +0000 | [diff] [blame] | 817 | SmallVector<Pass *, 12> TransferLastUses; |
Devang Patel | ec2b9a7 | 2007-03-05 22:57:49 +0000 | [diff] [blame] | 818 | |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 819 | if (!ProcessAnalysis) { |
| 820 | // Add pass |
| 821 | PassVector.push_back(P); |
| 822 | return; |
Devang Patel | 90b05e0 | 2006-11-11 02:04:19 +0000 | [diff] [blame] | 823 | } |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 824 | |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 825 | // At the moment, this pass is the last user of all required passes. |
| 826 | SmallVector<Pass *, 12> LastUses; |
| 827 | SmallVector<Pass *, 8> RequiredPasses; |
| 828 | SmallVector<AnalysisID, 8> ReqAnalysisNotAvailable; |
| 829 | |
| 830 | unsigned PDepth = this->getDepth(); |
| 831 | |
| 832 | collectRequiredAnalysis(RequiredPasses, |
| 833 | ReqAnalysisNotAvailable, P); |
| 834 | for (SmallVector<Pass *, 8>::iterator I = RequiredPasses.begin(), |
| 835 | E = RequiredPasses.end(); I != E; ++I) { |
| 836 | Pass *PRequired = *I; |
| 837 | unsigned RDepth = 0; |
| 838 | |
| 839 | assert(PRequired->getResolver() && "Analysis Resolver is not set"); |
| 840 | PMDataManager &DM = PRequired->getResolver()->getPMDataManager(); |
| 841 | RDepth = DM.getDepth(); |
| 842 | |
| 843 | if (PDepth == RDepth) |
| 844 | LastUses.push_back(PRequired); |
| 845 | else if (PDepth > RDepth) { |
| 846 | // Let the parent claim responsibility of last use |
| 847 | TransferLastUses.push_back(PRequired); |
| 848 | // Keep track of higher level analysis used by this manager. |
| 849 | HigherLevelAnalysis.push_back(PRequired); |
| 850 | } else |
Torok Edwin | fbcc663 | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 851 | llvm_unreachable("Unable to accomodate Required Pass"); |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 852 | } |
| 853 | |
| 854 | // Set P as P's last user until someone starts using P. |
| 855 | // However, if P is a Pass Manager then it does not need |
| 856 | // to record its last user. |
| 857 | if (!dynamic_cast<PMDataManager *>(P)) |
| 858 | LastUses.push_back(P); |
| 859 | TPM->setLastUser(LastUses, P); |
| 860 | |
| 861 | if (!TransferLastUses.empty()) { |
| 862 | Pass *My_PM = dynamic_cast<Pass *>(this); |
| 863 | TPM->setLastUser(TransferLastUses, My_PM); |
| 864 | TransferLastUses.clear(); |
| 865 | } |
| 866 | |
| 867 | // Now, take care of required analysises that are not available. |
| 868 | for (SmallVector<AnalysisID, 8>::iterator |
| 869 | I = ReqAnalysisNotAvailable.begin(), |
| 870 | E = ReqAnalysisNotAvailable.end() ;I != E; ++I) { |
| 871 | Pass *AnalysisPass = (*I)->createPass(); |
| 872 | this->addLowerLevelRequiredPass(P, AnalysisPass); |
| 873 | } |
| 874 | |
| 875 | // Take a note of analysis required and made available by this pass. |
| 876 | // Remove the analysis not preserved by this pass |
| 877 | removeNotPreservedAnalysis(P); |
| 878 | recordAvailableAnalysis(P); |
| 879 | |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 880 | // Add pass |
| 881 | PassVector.push_back(P); |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 882 | } |
| 883 | |
Devang Patel | e64d305 | 2007-04-16 20:12:57 +0000 | [diff] [blame] | 884 | |
| 885 | /// Populate RP with analysis pass that are required by |
| 886 | /// pass P and are available. Populate RP_NotAvail with analysis |
| 887 | /// pass that are required by pass P but are not available. |
| 888 | void PMDataManager::collectRequiredAnalysis(SmallVector<Pass *, 8>&RP, |
| 889 | SmallVector<AnalysisID, 8> &RP_NotAvail, |
| 890 | Pass *P) { |
Devang Patel | ec9e1a60a | 2008-08-11 21:13:39 +0000 | [diff] [blame] | 891 | AnalysisUsage *AnUsage = TPM->findAnalysisUsage(P); |
| 892 | const AnalysisUsage::VectorType &RequiredSet = AnUsage->getRequiredSet(); |
Chris Lattner | cbd160f | 2008-08-08 05:33:04 +0000 | [diff] [blame] | 893 | for (AnalysisUsage::VectorType::const_iterator |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 894 | I = RequiredSet.begin(), E = RequiredSet.end(); I != E; ++I) { |
Devang Patel | e64d305 | 2007-04-16 20:12:57 +0000 | [diff] [blame] | 895 | if (Pass *AnalysisPass = findAnalysisPass(*I, true)) |
| 896 | RP.push_back(AnalysisPass); |
| 897 | else |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 898 | RP_NotAvail.push_back(*I); |
Devang Patel | 1d6267c | 2006-12-07 23:05:44 +0000 | [diff] [blame] | 899 | } |
Devang Patel | f58183d | 2006-12-12 23:09:32 +0000 | [diff] [blame] | 900 | |
Devang Patel | ec9e1a60a | 2008-08-11 21:13:39 +0000 | [diff] [blame] | 901 | const AnalysisUsage::VectorType &IDs = AnUsage->getRequiredTransitiveSet(); |
Chris Lattner | cbd160f | 2008-08-08 05:33:04 +0000 | [diff] [blame] | 902 | for (AnalysisUsage::VectorType::const_iterator I = IDs.begin(), |
Devang Patel | f58183d | 2006-12-12 23:09:32 +0000 | [diff] [blame] | 903 | E = IDs.end(); I != E; ++I) { |
Devang Patel | e64d305 | 2007-04-16 20:12:57 +0000 | [diff] [blame] | 904 | if (Pass *AnalysisPass = findAnalysisPass(*I, true)) |
| 905 | RP.push_back(AnalysisPass); |
| 906 | else |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 907 | RP_NotAvail.push_back(*I); |
Devang Patel | f58183d | 2006-12-12 23:09:32 +0000 | [diff] [blame] | 908 | } |
Devang Patel | 1d6267c | 2006-12-07 23:05:44 +0000 | [diff] [blame] | 909 | } |
| 910 | |
Devang Patel | 07f4f58 | 2006-11-14 21:49:36 +0000 | [diff] [blame] | 911 | // All Required analyses should be available to the pass as it runs! Here |
| 912 | // we fill in the AnalysisImpls member of the pass so that it can |
| 913 | // successfully use the getAnalysis() method to retrieve the |
| 914 | // implementations it needs. |
| 915 | // |
Devang Patel | dbe4a1e | 2006-12-07 18:36:24 +0000 | [diff] [blame] | 916 | void PMDataManager::initializeAnalysisImpl(Pass *P) { |
Devang Patel | ec9e1a60a | 2008-08-11 21:13:39 +0000 | [diff] [blame] | 917 | AnalysisUsage *AnUsage = TPM->findAnalysisUsage(P); |
| 918 | |
Chris Lattner | cbd160f | 2008-08-08 05:33:04 +0000 | [diff] [blame] | 919 | for (AnalysisUsage::VectorType::const_iterator |
Devang Patel | ec9e1a60a | 2008-08-11 21:13:39 +0000 | [diff] [blame] | 920 | I = AnUsage->getRequiredSet().begin(), |
| 921 | E = AnUsage->getRequiredSet().end(); I != E; ++I) { |
Devang Patel | 640c5bb | 2006-12-08 22:30:11 +0000 | [diff] [blame] | 922 | Pass *Impl = findAnalysisPass(*I, true); |
Devang Patel | 07f4f58 | 2006-11-14 21:49:36 +0000 | [diff] [blame] | 923 | if (Impl == 0) |
Devang Patel | 56a5c62 | 2007-04-16 20:44:16 +0000 | [diff] [blame] | 924 | // This may be analysis pass that is initialized on the fly. |
| 925 | // If that is not the case then it will raise an assert when it is used. |
| 926 | continue; |
Devang Patel | b66334b | 2007-01-05 22:47:07 +0000 | [diff] [blame] | 927 | AnalysisResolver *AR = P->getResolver(); |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 928 | assert(AR && "Analysis Resolver is not set"); |
Devang Patel | 984698a | 2006-12-09 01:11:34 +0000 | [diff] [blame] | 929 | AR->addAnalysisImplsPair(*I, Impl); |
Devang Patel | 07f4f58 | 2006-11-14 21:49:36 +0000 | [diff] [blame] | 930 | } |
| 931 | } |
| 932 | |
Devang Patel | 640c5bb | 2006-12-08 22:30:11 +0000 | [diff] [blame] | 933 | /// Find the pass that implements Analysis AID. If desired pass is not found |
| 934 | /// then return NULL. |
| 935 | Pass *PMDataManager::findAnalysisPass(AnalysisID AID, bool SearchParent) { |
| 936 | |
| 937 | // Check if AvailableAnalysis map has one entry. |
| 938 | std::map<AnalysisID, Pass*>::const_iterator I = AvailableAnalysis.find(AID); |
| 939 | |
| 940 | if (I != AvailableAnalysis.end()) |
| 941 | return I->second; |
| 942 | |
| 943 | // Search Parents through TopLevelManager |
| 944 | if (SearchParent) |
| 945 | return TPM->findAnalysisPass(AID); |
| 946 | |
Devang Patel | 9d759b8 | 2006-12-09 00:09:12 +0000 | [diff] [blame] | 947 | return NULL; |
Devang Patel | 640c5bb | 2006-12-08 22:30:11 +0000 | [diff] [blame] | 948 | } |
| 949 | |
Devang Patel | 991aeba | 2006-12-15 20:13:01 +0000 | [diff] [blame] | 950 | // Print list of passes that are last used by P. |
| 951 | void PMDataManager::dumpLastUses(Pass *P, unsigned Offset) const{ |
| 952 | |
Devang Patel | 8adae86 | 2007-07-20 18:04:54 +0000 | [diff] [blame] | 953 | SmallVector<Pass *, 12> LUses; |
Devang Patel | 2ff4492 | 2007-04-16 20:39:59 +0000 | [diff] [blame] | 954 | |
| 955 | // If this is a on the fly manager then it does not have TPM. |
| 956 | if (!TPM) |
| 957 | return; |
| 958 | |
Devang Patel | 991aeba | 2006-12-15 20:13:01 +0000 | [diff] [blame] | 959 | TPM->collectLastUses(LUses, P); |
| 960 | |
Devang Patel | 8adae86 | 2007-07-20 18:04:54 +0000 | [diff] [blame] | 961 | for (SmallVector<Pass *, 12>::iterator I = LUses.begin(), |
Devang Patel | 991aeba | 2006-12-15 20:13:01 +0000 | [diff] [blame] | 962 | E = LUses.end(); I != E; ++I) { |
David Greene | 994e1bb | 2010-01-05 01:30:02 +0000 | [diff] [blame^] | 963 | llvm::dbgs() << "--" << std::string(Offset*2, ' '); |
Devang Patel | 991aeba | 2006-12-15 20:13:01 +0000 | [diff] [blame] | 964 | (*I)->dumpPassStructure(0); |
| 965 | } |
| 966 | } |
| 967 | |
| 968 | void PMDataManager::dumpPassArguments() const { |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 969 | for (SmallVector<Pass *, 8>::const_iterator I = PassVector.begin(), |
Devang Patel | 991aeba | 2006-12-15 20:13:01 +0000 | [diff] [blame] | 970 | E = PassVector.end(); I != E; ++I) { |
| 971 | if (PMDataManager *PMD = dynamic_cast<PMDataManager *>(*I)) |
| 972 | PMD->dumpPassArguments(); |
| 973 | else |
| 974 | if (const PassInfo *PI = (*I)->getPassInfo()) |
| 975 | if (!PI->isAnalysisGroup()) |
David Greene | 994e1bb | 2010-01-05 01:30:02 +0000 | [diff] [blame^] | 976 | dbgs() << " -" << PI->getPassArgument(); |
Devang Patel | 991aeba | 2006-12-15 20:13:01 +0000 | [diff] [blame] | 977 | } |
| 978 | } |
| 979 | |
Chris Lattner | dd6304f | 2007-08-10 06:17:04 +0000 | [diff] [blame] | 980 | void PMDataManager::dumpPassInfo(Pass *P, enum PassDebuggingString S1, |
| 981 | enum PassDebuggingString S2, |
Daniel Dunbar | ad36e8a | 2009-11-06 10:58:06 +0000 | [diff] [blame] | 982 | StringRef Msg) { |
Devang Patel | fd418432 | 2007-01-17 20:33:36 +0000 | [diff] [blame] | 983 | if (PassDebugging < Executions) |
Devang Patel | 991aeba | 2006-12-15 20:13:01 +0000 | [diff] [blame] | 984 | return; |
David Greene | 994e1bb | 2010-01-05 01:30:02 +0000 | [diff] [blame^] | 985 | dbgs() << (void*)this << std::string(getDepth()*2+1, ' '); |
Devang Patel | 003a559 | 2007-03-05 20:01:30 +0000 | [diff] [blame] | 986 | switch (S1) { |
| 987 | case EXECUTION_MSG: |
David Greene | 994e1bb | 2010-01-05 01:30:02 +0000 | [diff] [blame^] | 988 | dbgs() << "Executing Pass '" << P->getPassName(); |
Devang Patel | 003a559 | 2007-03-05 20:01:30 +0000 | [diff] [blame] | 989 | break; |
| 990 | case MODIFICATION_MSG: |
David Greene | 994e1bb | 2010-01-05 01:30:02 +0000 | [diff] [blame^] | 991 | dbgs() << "Made Modification '" << P->getPassName(); |
Devang Patel | 003a559 | 2007-03-05 20:01:30 +0000 | [diff] [blame] | 992 | break; |
| 993 | case FREEING_MSG: |
David Greene | 994e1bb | 2010-01-05 01:30:02 +0000 | [diff] [blame^] | 994 | dbgs() << " Freeing Pass '" << P->getPassName(); |
Devang Patel | 003a559 | 2007-03-05 20:01:30 +0000 | [diff] [blame] | 995 | break; |
| 996 | default: |
| 997 | break; |
| 998 | } |
| 999 | switch (S2) { |
| 1000 | case ON_BASICBLOCK_MSG: |
David Greene | 994e1bb | 2010-01-05 01:30:02 +0000 | [diff] [blame^] | 1001 | dbgs() << "' on BasicBlock '" << Msg << "'...\n"; |
Devang Patel | 003a559 | 2007-03-05 20:01:30 +0000 | [diff] [blame] | 1002 | break; |
| 1003 | case ON_FUNCTION_MSG: |
David Greene | 994e1bb | 2010-01-05 01:30:02 +0000 | [diff] [blame^] | 1004 | dbgs() << "' on Function '" << Msg << "'...\n"; |
Devang Patel | 003a559 | 2007-03-05 20:01:30 +0000 | [diff] [blame] | 1005 | break; |
| 1006 | case ON_MODULE_MSG: |
David Greene | 994e1bb | 2010-01-05 01:30:02 +0000 | [diff] [blame^] | 1007 | dbgs() << "' on Module '" << Msg << "'...\n"; |
Devang Patel | 003a559 | 2007-03-05 20:01:30 +0000 | [diff] [blame] | 1008 | break; |
| 1009 | case ON_LOOP_MSG: |
David Greene | 994e1bb | 2010-01-05 01:30:02 +0000 | [diff] [blame^] | 1010 | dbgs() << "' on Loop '" << Msg << "'...\n"; |
Devang Patel | 003a559 | 2007-03-05 20:01:30 +0000 | [diff] [blame] | 1011 | break; |
| 1012 | case ON_CG_MSG: |
David Greene | 994e1bb | 2010-01-05 01:30:02 +0000 | [diff] [blame^] | 1013 | dbgs() << "' on Call Graph Nodes '" << Msg << "'...\n"; |
Devang Patel | 003a559 | 2007-03-05 20:01:30 +0000 | [diff] [blame] | 1014 | break; |
| 1015 | default: |
| 1016 | break; |
| 1017 | } |
Devang Patel | 991aeba | 2006-12-15 20:13:01 +0000 | [diff] [blame] | 1018 | } |
| 1019 | |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 1020 | void PMDataManager::dumpRequiredSet(const Pass *P) const { |
Chris Lattner | 4c493d9 | 2008-08-08 15:14:09 +0000 | [diff] [blame] | 1021 | if (PassDebugging < Details) |
| 1022 | return; |
| 1023 | |
| 1024 | AnalysisUsage analysisUsage; |
| 1025 | P->getAnalysisUsage(analysisUsage); |
| 1026 | dumpAnalysisUsage("Required", P, analysisUsage.getRequiredSet()); |
| 1027 | } |
| 1028 | |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 1029 | void PMDataManager::dumpPreservedSet(const Pass *P) const { |
Chris Lattner | 4c493d9 | 2008-08-08 15:14:09 +0000 | [diff] [blame] | 1030 | if (PassDebugging < Details) |
| 1031 | return; |
| 1032 | |
| 1033 | AnalysisUsage analysisUsage; |
| 1034 | P->getAnalysisUsage(analysisUsage); |
| 1035 | dumpAnalysisUsage("Preserved", P, analysisUsage.getPreservedSet()); |
| 1036 | } |
| 1037 | |
Daniel Dunbar | ad36e8a | 2009-11-06 10:58:06 +0000 | [diff] [blame] | 1038 | void PMDataManager::dumpAnalysisUsage(StringRef Msg, const Pass *P, |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 1039 | const AnalysisUsage::VectorType &Set) const { |
Chris Lattner | 4c493d9 | 2008-08-08 15:14:09 +0000 | [diff] [blame] | 1040 | assert(PassDebugging >= Details); |
| 1041 | if (Set.empty()) |
| 1042 | return; |
David Greene | 994e1bb | 2010-01-05 01:30:02 +0000 | [diff] [blame^] | 1043 | dbgs() << (void*)P << std::string(getDepth()*2+3, ' ') << Msg << " Analyses:"; |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 1044 | for (unsigned i = 0; i != Set.size(); ++i) { |
David Greene | 994e1bb | 2010-01-05 01:30:02 +0000 | [diff] [blame^] | 1045 | if (i) dbgs() << ','; |
| 1046 | dbgs() << ' ' << Set[i]->getPassName(); |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 1047 | } |
David Greene | 994e1bb | 2010-01-05 01:30:02 +0000 | [diff] [blame^] | 1048 | dbgs() << '\n'; |
Devang Patel | 991aeba | 2006-12-15 20:13:01 +0000 | [diff] [blame] | 1049 | } |
Devang Patel | 9bdf7d4 | 2006-12-08 23:28:54 +0000 | [diff] [blame] | 1050 | |
Devang Patel | 004937b | 2007-07-27 20:06:09 +0000 | [diff] [blame] | 1051 | /// Add RequiredPass into list of lower level passes required by pass P. |
| 1052 | /// RequiredPass is run on the fly by Pass Manager when P requests it |
| 1053 | /// through getAnalysis interface. |
| 1054 | /// This should be handled by specific pass manager. |
| 1055 | void PMDataManager::addLowerLevelRequiredPass(Pass *P, Pass *RequiredPass) { |
| 1056 | if (TPM) { |
| 1057 | TPM->dumpArguments(); |
| 1058 | TPM->dumpPasses(); |
| 1059 | } |
Devang Patel | 8df7cc1 | 2008-02-02 01:43:30 +0000 | [diff] [blame] | 1060 | |
| 1061 | // Module Level pass may required Function Level analysis info |
| 1062 | // (e.g. dominator info). Pass manager uses on the fly function pass manager |
| 1063 | // to provide this on demand. In that case, in Pass manager terminology, |
| 1064 | // module level pass is requiring lower level analysis info managed by |
| 1065 | // lower level pass manager. |
| 1066 | |
| 1067 | // When Pass manager is not able to order required analysis info, Pass manager |
| 1068 | // checks whether any lower level manager will be able to provide this |
| 1069 | // analysis info on demand or not. |
Devang Patel | ab85d6b | 2008-06-03 01:20:02 +0000 | [diff] [blame] | 1070 | #ifndef NDEBUG |
David Greene | 994e1bb | 2010-01-05 01:30:02 +0000 | [diff] [blame^] | 1071 | dbgs() << "Unable to schedule '" << RequiredPass->getPassName(); |
| 1072 | dbgs() << "' required by '" << P->getPassName() << "'\n"; |
Devang Patel | ab85d6b | 2008-06-03 01:20:02 +0000 | [diff] [blame] | 1073 | #endif |
Torok Edwin | fbcc663 | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1074 | llvm_unreachable("Unable to schedule pass"); |
Devang Patel | 004937b | 2007-07-27 20:06:09 +0000 | [diff] [blame] | 1075 | } |
| 1076 | |
Devang Patel | e759955 | 2007-01-12 18:52:44 +0000 | [diff] [blame] | 1077 | // Destructor |
| 1078 | PMDataManager::~PMDataManager() { |
Devang Patel | 0d29ae0 | 2008-08-12 15:44:31 +0000 | [diff] [blame] | 1079 | for (SmallVector<Pass *, 8>::iterator I = PassVector.begin(), |
Devang Patel | e759955 | 2007-01-12 18:52:44 +0000 | [diff] [blame] | 1080 | E = PassVector.end(); I != E; ++I) |
| 1081 | delete *I; |
Devang Patel | e759955 | 2007-01-12 18:52:44 +0000 | [diff] [blame] | 1082 | } |
| 1083 | |
Devang Patel | 9bdf7d4 | 2006-12-08 23:28:54 +0000 | [diff] [blame] | 1084 | //===----------------------------------------------------------------------===// |
| 1085 | // NOTE: Is this the right place to define this method ? |
Duncan Sands | 5a913d6 | 2009-01-28 13:14:17 +0000 | [diff] [blame] | 1086 | // getAnalysisIfAvailable - Return analysis result or null if it doesn't exist. |
| 1087 | Pass *AnalysisResolver::getAnalysisIfAvailable(AnalysisID ID, bool dir) const { |
Devang Patel | 9bdf7d4 | 2006-12-08 23:28:54 +0000 | [diff] [blame] | 1088 | return PM.findAnalysisPass(ID, dir); |
| 1089 | } |
| 1090 | |
Devang Patel | 9294281 | 2007-04-16 20:56:24 +0000 | [diff] [blame] | 1091 | Pass *AnalysisResolver::findImplPass(Pass *P, const PassInfo *AnalysisPI, |
| 1092 | Function &F) { |
| 1093 | return PM.getOnTheFlyPass(P, AnalysisPI, F); |
| 1094 | } |
| 1095 | |
Devang Patel | a1514cb | 2006-12-07 19:39:39 +0000 | [diff] [blame] | 1096 | //===----------------------------------------------------------------------===// |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 1097 | // BBPassManager implementation |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 1098 | |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 1099 | /// Execute all of the passes scheduled for execution by invoking |
| 1100 | /// runOnBasicBlock method. Keep track of whether any of the passes modifies |
| 1101 | /// the function, and if so, return true. |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 1102 | bool BBPassManager::runOnFunction(Function &F) { |
Reid Spencer | 5301e7c | 2007-01-30 20:08:39 +0000 | [diff] [blame] | 1103 | if (F.isDeclaration()) |
Devang Patel | 745a696 | 2006-12-12 23:15:28 +0000 | [diff] [blame] | 1104 | return false; |
| 1105 | |
Devang Patel | e958559 | 2006-12-08 01:38:28 +0000 | [diff] [blame] | 1106 | bool Changed = doInitialization(F); |
Devang Patel | 050ec72 | 2006-11-14 01:23:29 +0000 | [diff] [blame] | 1107 | |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 1108 | for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) |
Devang Patel | abfbe3b | 2006-12-16 00:56:26 +0000 | [diff] [blame] | 1109 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
| 1110 | BasicBlockPass *BP = getContainedPass(Index); |
Devang Patel | f6d1d21 | 2006-12-14 00:25:06 +0000 | [diff] [blame] | 1111 | |
Daniel Dunbar | 9813b0b | 2009-07-26 07:49:05 +0000 | [diff] [blame] | 1112 | dumpPassInfo(BP, EXECUTION_MSG, ON_BASICBLOCK_MSG, I->getName()); |
Chris Lattner | 4c493d9 | 2008-08-08 15:14:09 +0000 | [diff] [blame] | 1113 | dumpRequiredSet(BP); |
Devang Patel | f6d1d21 | 2006-12-14 00:25:06 +0000 | [diff] [blame] | 1114 | |
Devang Patel | abfbe3b | 2006-12-16 00:56:26 +0000 | [diff] [blame] | 1115 | initializeAnalysisImpl(BP); |
Devang Patel | 93a197c | 2006-12-14 00:08:04 +0000 | [diff] [blame] | 1116 | |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 1117 | { |
| 1118 | // If the pass crashes, remember this. |
| 1119 | PassManagerPrettyStackEntry X(BP, *I); |
| 1120 | |
Dan Gohman | 277e767 | 2009-09-28 00:07:05 +0000 | [diff] [blame] | 1121 | Timer *T = StartPassTimer(BP); |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 1122 | Changed |= BP->runOnBasicBlock(*I); |
Dan Gohman | 277e767 | 2009-09-28 00:07:05 +0000 | [diff] [blame] | 1123 | StopPassTimer(BP, T); |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 1124 | } |
Devang Patel | 93a197c | 2006-12-14 00:08:04 +0000 | [diff] [blame] | 1125 | |
Devang Patel | 003a559 | 2007-03-05 20:01:30 +0000 | [diff] [blame] | 1126 | if (Changed) |
Dan Gohman | 929391a | 2008-01-29 12:09:55 +0000 | [diff] [blame] | 1127 | dumpPassInfo(BP, MODIFICATION_MSG, ON_BASICBLOCK_MSG, |
Daniel Dunbar | 9813b0b | 2009-07-26 07:49:05 +0000 | [diff] [blame] | 1128 | I->getName()); |
Chris Lattner | 4c493d9 | 2008-08-08 15:14:09 +0000 | [diff] [blame] | 1129 | dumpPreservedSet(BP); |
Devang Patel | 93a197c | 2006-12-14 00:08:04 +0000 | [diff] [blame] | 1130 | |
Devang Patel | a273d1c | 2007-07-19 18:02:32 +0000 | [diff] [blame] | 1131 | verifyPreservedAnalysis(BP); |
Devang Patel | abfbe3b | 2006-12-16 00:56:26 +0000 | [diff] [blame] | 1132 | removeNotPreservedAnalysis(BP); |
| 1133 | recordAvailableAnalysis(BP); |
Daniel Dunbar | 9813b0b | 2009-07-26 07:49:05 +0000 | [diff] [blame] | 1134 | removeDeadPasses(BP, I->getName(), ON_BASICBLOCK_MSG); |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 1135 | } |
Chris Lattner | de2aa65 | 2007-08-10 06:22:25 +0000 | [diff] [blame] | 1136 | |
Bill Wendling | 6ce6d26 | 2009-12-25 13:50:18 +0000 | [diff] [blame] | 1137 | return doFinalization(F) || Changed; |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 1138 | } |
| 1139 | |
Devang Patel | 475c453 | 2006-12-08 00:59:05 +0000 | [diff] [blame] | 1140 | // Implement doInitialization and doFinalization |
Duncan Sands | 5149560 | 2009-02-13 09:42:34 +0000 | [diff] [blame] | 1141 | bool BBPassManager::doInitialization(Module &M) { |
Devang Patel | 475c453 | 2006-12-08 00:59:05 +0000 | [diff] [blame] | 1142 | bool Changed = false; |
| 1143 | |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 1144 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) |
| 1145 | Changed |= getContainedPass(Index)->doInitialization(M); |
Devang Patel | 475c453 | 2006-12-08 00:59:05 +0000 | [diff] [blame] | 1146 | |
| 1147 | return Changed; |
| 1148 | } |
| 1149 | |
Duncan Sands | 5149560 | 2009-02-13 09:42:34 +0000 | [diff] [blame] | 1150 | bool BBPassManager::doFinalization(Module &M) { |
Devang Patel | 475c453 | 2006-12-08 00:59:05 +0000 | [diff] [blame] | 1151 | bool Changed = false; |
| 1152 | |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 1153 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) |
| 1154 | Changed |= getContainedPass(Index)->doFinalization(M); |
Devang Patel | 475c453 | 2006-12-08 00:59:05 +0000 | [diff] [blame] | 1155 | |
| 1156 | return Changed; |
| 1157 | } |
| 1158 | |
Duncan Sands | 5149560 | 2009-02-13 09:42:34 +0000 | [diff] [blame] | 1159 | bool BBPassManager::doInitialization(Function &F) { |
Devang Patel | 475c453 | 2006-12-08 00:59:05 +0000 | [diff] [blame] | 1160 | bool Changed = false; |
| 1161 | |
Devang Patel | abfbe3b | 2006-12-16 00:56:26 +0000 | [diff] [blame] | 1162 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
| 1163 | BasicBlockPass *BP = getContainedPass(Index); |
Devang Patel | 475c453 | 2006-12-08 00:59:05 +0000 | [diff] [blame] | 1164 | Changed |= BP->doInitialization(F); |
| 1165 | } |
| 1166 | |
| 1167 | return Changed; |
| 1168 | } |
| 1169 | |
Duncan Sands | 5149560 | 2009-02-13 09:42:34 +0000 | [diff] [blame] | 1170 | bool BBPassManager::doFinalization(Function &F) { |
Devang Patel | 475c453 | 2006-12-08 00:59:05 +0000 | [diff] [blame] | 1171 | bool Changed = false; |
| 1172 | |
Devang Patel | abfbe3b | 2006-12-16 00:56:26 +0000 | [diff] [blame] | 1173 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
| 1174 | BasicBlockPass *BP = getContainedPass(Index); |
Devang Patel | 475c453 | 2006-12-08 00:59:05 +0000 | [diff] [blame] | 1175 | Changed |= BP->doFinalization(F); |
| 1176 | } |
| 1177 | |
| 1178 | return Changed; |
| 1179 | } |
| 1180 | |
| 1181 | |
Devang Patel | a1514cb | 2006-12-07 19:39:39 +0000 | [diff] [blame] | 1182 | //===----------------------------------------------------------------------===// |
Devang Patel | b67904d | 2006-12-13 02:36:01 +0000 | [diff] [blame] | 1183 | // FunctionPassManager implementation |
Devang Patel | a1514cb | 2006-12-07 19:39:39 +0000 | [diff] [blame] | 1184 | |
Devang Patel | 4e12f86 | 2006-11-08 10:44:40 +0000 | [diff] [blame] | 1185 | /// Create new Function pass manager |
Devang Patel | b67904d | 2006-12-13 02:36:01 +0000 | [diff] [blame] | 1186 | FunctionPassManager::FunctionPassManager(ModuleProvider *P) { |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 1187 | FPM = new FunctionPassManagerImpl(0); |
Devang Patel | 9c6290c | 2006-12-12 22:02:16 +0000 | [diff] [blame] | 1188 | // FPM is the top level manager. |
| 1189 | FPM->setTopLevelManager(FPM); |
Devang Patel | 1036b65 | 2006-12-12 23:27:37 +0000 | [diff] [blame] | 1190 | |
Dan Gohman | 565df95 | 2008-03-13 02:08:36 +0000 | [diff] [blame] | 1191 | AnalysisResolver *AR = new AnalysisResolver(*FPM); |
Devang Patel | 1036b65 | 2006-12-12 23:27:37 +0000 | [diff] [blame] | 1192 | FPM->setResolver(AR); |
| 1193 | |
Devang Patel | 1f65368 | 2006-12-08 18:57:16 +0000 | [diff] [blame] | 1194 | MP = P; |
| 1195 | } |
| 1196 | |
Devang Patel | b67904d | 2006-12-13 02:36:01 +0000 | [diff] [blame] | 1197 | FunctionPassManager::~FunctionPassManager() { |
Devang Patel | ab97cf4 | 2006-12-13 00:09:23 +0000 | [diff] [blame] | 1198 | delete FPM; |
| 1199 | } |
| 1200 | |
Devang Patel | 4e12f86 | 2006-11-08 10:44:40 +0000 | [diff] [blame] | 1201 | /// add - Add a pass to the queue of passes to run. This passes |
| 1202 | /// ownership of the Pass to the PassManager. When the |
| 1203 | /// PassManager_X is destroyed, the pass will be destroyed as well, so |
| 1204 | /// there is no need to delete the pass. (TODO delete passes.) |
| 1205 | /// This implies that all passes MUST be allocated with 'new'. |
Devang Patel | b67904d | 2006-12-13 02:36:01 +0000 | [diff] [blame] | 1206 | void FunctionPassManager::add(Pass *P) { |
Devang Patel | 4e12f86 | 2006-11-08 10:44:40 +0000 | [diff] [blame] | 1207 | FPM->add(P); |
| 1208 | } |
| 1209 | |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 1210 | /// run - Execute all of the passes scheduled for execution. Keep |
| 1211 | /// track of whether any of the passes modifies the function, and if |
| 1212 | /// so, return true. |
| 1213 | /// |
Devang Patel | b67904d | 2006-12-13 02:36:01 +0000 | [diff] [blame] | 1214 | bool FunctionPassManager::run(Function &F) { |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 1215 | std::string errstr; |
| 1216 | if (MP->materializeFunction(&F, &errstr)) { |
Torok Edwin | 6dd2730 | 2009-07-08 18:01:40 +0000 | [diff] [blame] | 1217 | llvm_report_error("Error reading bitcode file: " + errstr); |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 1218 | } |
Devang Patel | 272908d | 2006-12-08 22:57:48 +0000 | [diff] [blame] | 1219 | return FPM->run(F); |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 1220 | } |
| 1221 | |
| 1222 | |
Devang Patel | ff631ae | 2006-11-15 01:27:05 +0000 | [diff] [blame] | 1223 | /// doInitialization - Run all of the initializers for the function passes. |
| 1224 | /// |
Devang Patel | b67904d | 2006-12-13 02:36:01 +0000 | [diff] [blame] | 1225 | bool FunctionPassManager::doInitialization() { |
Devang Patel | ff631ae | 2006-11-15 01:27:05 +0000 | [diff] [blame] | 1226 | return FPM->doInitialization(*MP->getModule()); |
| 1227 | } |
| 1228 | |
Dan Gohman | e6656eb | 2007-07-30 14:51:13 +0000 | [diff] [blame] | 1229 | /// doFinalization - Run all of the finalizers for the function passes. |
Devang Patel | ff631ae | 2006-11-15 01:27:05 +0000 | [diff] [blame] | 1230 | /// |
Devang Patel | b67904d | 2006-12-13 02:36:01 +0000 | [diff] [blame] | 1231 | bool FunctionPassManager::doFinalization() { |
Devang Patel | ff631ae | 2006-11-15 01:27:05 +0000 | [diff] [blame] | 1232 | return FPM->doFinalization(*MP->getModule()); |
| 1233 | } |
| 1234 | |
Devang Patel | a1514cb | 2006-12-07 19:39:39 +0000 | [diff] [blame] | 1235 | //===----------------------------------------------------------------------===// |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 1236 | // FunctionPassManagerImpl implementation |
| 1237 | // |
Duncan Sands | 5149560 | 2009-02-13 09:42:34 +0000 | [diff] [blame] | 1238 | bool FunctionPassManagerImpl::doInitialization(Module &M) { |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 1239 | bool Changed = false; |
| 1240 | |
Dan Gohman | 05ebc8f | 2009-11-23 16:24:18 +0000 | [diff] [blame] | 1241 | dumpArguments(); |
| 1242 | dumpPasses(); |
| 1243 | |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 1244 | for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index) |
| 1245 | Changed |= getContainedManager(Index)->doInitialization(M); |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 1246 | |
| 1247 | return Changed; |
| 1248 | } |
| 1249 | |
Duncan Sands | 5149560 | 2009-02-13 09:42:34 +0000 | [diff] [blame] | 1250 | bool FunctionPassManagerImpl::doFinalization(Module &M) { |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 1251 | bool Changed = false; |
| 1252 | |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 1253 | for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index) |
| 1254 | Changed |= getContainedManager(Index)->doFinalization(M); |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 1255 | |
| 1256 | return Changed; |
| 1257 | } |
| 1258 | |
Devang Patel | ec9c58f | 2009-04-01 22:34:41 +0000 | [diff] [blame] | 1259 | /// cleanup - After running all passes, clean up pass manager cache. |
| 1260 | void FPPassManager::cleanup() { |
| 1261 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
| 1262 | FunctionPass *FP = getContainedPass(Index); |
| 1263 | AnalysisResolver *AR = FP->getResolver(); |
| 1264 | assert(AR && "Analysis Resolver is not set"); |
| 1265 | AR->clearAnalysisImpls(); |
| 1266 | } |
| 1267 | } |
| 1268 | |
Torok Edwin | 24c7835 | 2009-06-29 18:49:09 +0000 | [diff] [blame] | 1269 | void FunctionPassManagerImpl::releaseMemoryOnTheFly() { |
| 1270 | if (!wasRun) |
| 1271 | return; |
| 1272 | for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index) { |
| 1273 | FPPassManager *FPPM = getContainedManager(Index); |
| 1274 | for (unsigned Index = 0; Index < FPPM->getNumContainedPasses(); ++Index) { |
| 1275 | FPPM->getContainedPass(Index)->releaseMemory(); |
| 1276 | } |
| 1277 | } |
Torok Edwin | 896556e | 2009-06-29 21:05:10 +0000 | [diff] [blame] | 1278 | wasRun = false; |
Torok Edwin | 24c7835 | 2009-06-29 18:49:09 +0000 | [diff] [blame] | 1279 | } |
| 1280 | |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 1281 | // Execute all the passes managed by this top level manager. |
| 1282 | // Return true if any function is modified by a pass. |
| 1283 | bool FunctionPassManagerImpl::run(Function &F) { |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 1284 | bool Changed = false; |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 1285 | TimingInfo::createTheTimeInfo(); |
| 1286 | |
Devang Patel | e306840 | 2006-12-21 00:16:50 +0000 | [diff] [blame] | 1287 | initializeAllAnalysisInfo(); |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 1288 | for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index) |
| 1289 | Changed |= getContainedManager(Index)->runOnFunction(F); |
Devang Patel | ec9c58f | 2009-04-01 22:34:41 +0000 | [diff] [blame] | 1290 | |
| 1291 | for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index) |
| 1292 | getContainedManager(Index)->cleanup(); |
| 1293 | |
Torok Edwin | 24c7835 | 2009-06-29 18:49:09 +0000 | [diff] [blame] | 1294 | wasRun = true; |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 1295 | return Changed; |
| 1296 | } |
| 1297 | |
| 1298 | //===----------------------------------------------------------------------===// |
| 1299 | // FPPassManager implementation |
Devang Patel | 0c2012f | 2006-11-07 21:49:50 +0000 | [diff] [blame] | 1300 | |
Devang Patel | 8c78a0b | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 1301 | char FPPassManager::ID = 0; |
Devang Patel | e759955 | 2007-01-12 18:52:44 +0000 | [diff] [blame] | 1302 | /// Print passes managed by this manager |
| 1303 | void FPPassManager::dumpPassStructure(unsigned Offset) { |
David Greene | 994e1bb | 2010-01-05 01:30:02 +0000 | [diff] [blame^] | 1304 | llvm::dbgs() << std::string(Offset*2, ' ') << "FunctionPass Manager\n"; |
Devang Patel | e759955 | 2007-01-12 18:52:44 +0000 | [diff] [blame] | 1305 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
| 1306 | FunctionPass *FP = getContainedPass(Index); |
| 1307 | FP->dumpPassStructure(Offset + 1); |
| 1308 | dumpLastUses(FP, Offset+1); |
| 1309 | } |
| 1310 | } |
| 1311 | |
| 1312 | |
Devang Patel | 0c2012f | 2006-11-07 21:49:50 +0000 | [diff] [blame] | 1313 | /// Execute all of the passes scheduled for execution by invoking |
| 1314 | /// runOnFunction method. Keep track of whether any of the passes modifies |
| 1315 | /// the function, and if so, return true. |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 1316 | bool FPPassManager::runOnFunction(Function &F) { |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 1317 | if (F.isDeclaration()) |
| 1318 | return false; |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 1319 | |
| 1320 | bool Changed = false; |
Devang Patel | 745a696 | 2006-12-12 23:15:28 +0000 | [diff] [blame] | 1321 | |
Devang Patel | cbbf291 | 2008-03-20 01:09:53 +0000 | [diff] [blame] | 1322 | // Collect inherited analysis from Module level pass manager. |
| 1323 | populateInheritedAnalysis(TPM->activeStack); |
Devang Patel | 745a696 | 2006-12-12 23:15:28 +0000 | [diff] [blame] | 1324 | |
Devang Patel | abfbe3b | 2006-12-16 00:56:26 +0000 | [diff] [blame] | 1325 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
| 1326 | FunctionPass *FP = getContainedPass(Index); |
| 1327 | |
Daniel Dunbar | 9813b0b | 2009-07-26 07:49:05 +0000 | [diff] [blame] | 1328 | dumpPassInfo(FP, EXECUTION_MSG, ON_FUNCTION_MSG, F.getName()); |
Chris Lattner | 4c493d9 | 2008-08-08 15:14:09 +0000 | [diff] [blame] | 1329 | dumpRequiredSet(FP); |
Devang Patel | 93a197c | 2006-12-14 00:08:04 +0000 | [diff] [blame] | 1330 | |
Devang Patel | abfbe3b | 2006-12-16 00:56:26 +0000 | [diff] [blame] | 1331 | initializeAnalysisImpl(FP); |
Devang Patel | b8817b9 | 2006-12-14 00:59:42 +0000 | [diff] [blame] | 1332 | |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 1333 | { |
| 1334 | PassManagerPrettyStackEntry X(FP, F); |
| 1335 | |
Dan Gohman | 277e767 | 2009-09-28 00:07:05 +0000 | [diff] [blame] | 1336 | Timer *T = StartPassTimer(FP); |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 1337 | Changed |= FP->runOnFunction(F); |
Dan Gohman | 277e767 | 2009-09-28 00:07:05 +0000 | [diff] [blame] | 1338 | StopPassTimer(FP, T); |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 1339 | } |
Devang Patel | 93a197c | 2006-12-14 00:08:04 +0000 | [diff] [blame] | 1340 | |
Devang Patel | 003a559 | 2007-03-05 20:01:30 +0000 | [diff] [blame] | 1341 | if (Changed) |
Daniel Dunbar | 9813b0b | 2009-07-26 07:49:05 +0000 | [diff] [blame] | 1342 | dumpPassInfo(FP, MODIFICATION_MSG, ON_FUNCTION_MSG, F.getName()); |
Chris Lattner | 4c493d9 | 2008-08-08 15:14:09 +0000 | [diff] [blame] | 1343 | dumpPreservedSet(FP); |
Devang Patel | 93a197c | 2006-12-14 00:08:04 +0000 | [diff] [blame] | 1344 | |
Devang Patel | a273d1c | 2007-07-19 18:02:32 +0000 | [diff] [blame] | 1345 | verifyPreservedAnalysis(FP); |
Devang Patel | abfbe3b | 2006-12-16 00:56:26 +0000 | [diff] [blame] | 1346 | removeNotPreservedAnalysis(FP); |
| 1347 | recordAvailableAnalysis(FP); |
Daniel Dunbar | 9813b0b | 2009-07-26 07:49:05 +0000 | [diff] [blame] | 1348 | removeDeadPasses(FP, F.getName(), ON_FUNCTION_MSG); |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 1349 | } |
| 1350 | return Changed; |
| 1351 | } |
| 1352 | |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 1353 | bool FPPassManager::runOnModule(Module &M) { |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 1354 | bool Changed = doInitialization(M); |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 1355 | |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 1356 | for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) |
| 1357 | runOnFunction(*I); |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 1358 | |
Bill Wendling | 6ce6d26 | 2009-12-25 13:50:18 +0000 | [diff] [blame] | 1359 | return doFinalization(M) || Changed; |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 1360 | } |
| 1361 | |
Duncan Sands | 5149560 | 2009-02-13 09:42:34 +0000 | [diff] [blame] | 1362 | bool FPPassManager::doInitialization(Module &M) { |
Devang Patel | ff631ae | 2006-11-15 01:27:05 +0000 | [diff] [blame] | 1363 | bool Changed = false; |
| 1364 | |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 1365 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) |
| 1366 | Changed |= getContainedPass(Index)->doInitialization(M); |
Devang Patel | ff631ae | 2006-11-15 01:27:05 +0000 | [diff] [blame] | 1367 | |
| 1368 | return Changed; |
| 1369 | } |
| 1370 | |
Duncan Sands | 5149560 | 2009-02-13 09:42:34 +0000 | [diff] [blame] | 1371 | bool FPPassManager::doFinalization(Module &M) { |
Devang Patel | ff631ae | 2006-11-15 01:27:05 +0000 | [diff] [blame] | 1372 | bool Changed = false; |
| 1373 | |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 1374 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) |
| 1375 | Changed |= getContainedPass(Index)->doFinalization(M); |
Devang Patel | ff631ae | 2006-11-15 01:27:05 +0000 | [diff] [blame] | 1376 | |
Devang Patel | ff631ae | 2006-11-15 01:27:05 +0000 | [diff] [blame] | 1377 | return Changed; |
| 1378 | } |
| 1379 | |
Devang Patel | a1514cb | 2006-12-07 19:39:39 +0000 | [diff] [blame] | 1380 | //===----------------------------------------------------------------------===// |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 1381 | // MPPassManager implementation |
Devang Patel | 05e1a97 | 2006-11-07 22:03:15 +0000 | [diff] [blame] | 1382 | |
Devang Patel | 05e1a97 | 2006-11-07 22:03:15 +0000 | [diff] [blame] | 1383 | /// Execute all of the passes scheduled for execution by invoking |
| 1384 | /// runOnModule method. Keep track of whether any of the passes modifies |
| 1385 | /// the module, and if so, return true. |
| 1386 | bool |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 1387 | MPPassManager::runOnModule(Module &M) { |
Devang Patel | 05e1a97 | 2006-11-07 22:03:15 +0000 | [diff] [blame] | 1388 | bool Changed = false; |
Devang Patel | 050ec72 | 2006-11-14 01:23:29 +0000 | [diff] [blame] | 1389 | |
Torok Edwin | 24c7835 | 2009-06-29 18:49:09 +0000 | [diff] [blame] | 1390 | // Initialize on-the-fly passes |
| 1391 | for (std::map<Pass *, FunctionPassManagerImpl *>::iterator |
| 1392 | I = OnTheFlyManagers.begin(), E = OnTheFlyManagers.end(); |
| 1393 | I != E; ++I) { |
| 1394 | FunctionPassManagerImpl *FPP = I->second; |
| 1395 | Changed |= FPP->doInitialization(M); |
| 1396 | } |
| 1397 | |
Devang Patel | abfbe3b | 2006-12-16 00:56:26 +0000 | [diff] [blame] | 1398 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
| 1399 | ModulePass *MP = getContainedPass(Index); |
| 1400 | |
Benjamin Kramer | dfcc285 | 2009-12-08 13:07:38 +0000 | [diff] [blame] | 1401 | dumpPassInfo(MP, EXECUTION_MSG, ON_MODULE_MSG, M.getModuleIdentifier()); |
Chris Lattner | 4c493d9 | 2008-08-08 15:14:09 +0000 | [diff] [blame] | 1402 | dumpRequiredSet(MP); |
Devang Patel | 93a197c | 2006-12-14 00:08:04 +0000 | [diff] [blame] | 1403 | |
Devang Patel | abfbe3b | 2006-12-16 00:56:26 +0000 | [diff] [blame] | 1404 | initializeAnalysisImpl(MP); |
Devang Patel | b8817b9 | 2006-12-14 00:59:42 +0000 | [diff] [blame] | 1405 | |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 1406 | { |
| 1407 | PassManagerPrettyStackEntry X(MP, M); |
Dan Gohman | 277e767 | 2009-09-28 00:07:05 +0000 | [diff] [blame] | 1408 | Timer *T = StartPassTimer(MP); |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 1409 | Changed |= MP->runOnModule(M); |
Dan Gohman | 277e767 | 2009-09-28 00:07:05 +0000 | [diff] [blame] | 1410 | StopPassTimer(MP, T); |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 1411 | } |
Devang Patel | 93a197c | 2006-12-14 00:08:04 +0000 | [diff] [blame] | 1412 | |
Devang Patel | 003a559 | 2007-03-05 20:01:30 +0000 | [diff] [blame] | 1413 | if (Changed) |
Dan Gohman | 929391a | 2008-01-29 12:09:55 +0000 | [diff] [blame] | 1414 | dumpPassInfo(MP, MODIFICATION_MSG, ON_MODULE_MSG, |
Benjamin Kramer | dfcc285 | 2009-12-08 13:07:38 +0000 | [diff] [blame] | 1415 | M.getModuleIdentifier()); |
Chris Lattner | 4c493d9 | 2008-08-08 15:14:09 +0000 | [diff] [blame] | 1416 | dumpPreservedSet(MP); |
Chris Lattner | 02eb94c | 2008-08-07 07:34:50 +0000 | [diff] [blame] | 1417 | |
Devang Patel | a273d1c | 2007-07-19 18:02:32 +0000 | [diff] [blame] | 1418 | verifyPreservedAnalysis(MP); |
Devang Patel | abfbe3b | 2006-12-16 00:56:26 +0000 | [diff] [blame] | 1419 | removeNotPreservedAnalysis(MP); |
| 1420 | recordAvailableAnalysis(MP); |
Benjamin Kramer | dfcc285 | 2009-12-08 13:07:38 +0000 | [diff] [blame] | 1421 | removeDeadPasses(MP, M.getModuleIdentifier(), ON_MODULE_MSG); |
Devang Patel | 05e1a97 | 2006-11-07 22:03:15 +0000 | [diff] [blame] | 1422 | } |
Torok Edwin | 24c7835 | 2009-06-29 18:49:09 +0000 | [diff] [blame] | 1423 | |
| 1424 | // Finalize on-the-fly passes |
| 1425 | for (std::map<Pass *, FunctionPassManagerImpl *>::iterator |
| 1426 | I = OnTheFlyManagers.begin(), E = OnTheFlyManagers.end(); |
| 1427 | I != E; ++I) { |
| 1428 | FunctionPassManagerImpl *FPP = I->second; |
| 1429 | // We don't know when is the last time an on-the-fly pass is run, |
| 1430 | // so we need to releaseMemory / finalize here |
| 1431 | FPP->releaseMemoryOnTheFly(); |
| 1432 | Changed |= FPP->doFinalization(M); |
| 1433 | } |
Devang Patel | 05e1a97 | 2006-11-07 22:03:15 +0000 | [diff] [blame] | 1434 | return Changed; |
| 1435 | } |
| 1436 | |
Devang Patel | e64d305 | 2007-04-16 20:12:57 +0000 | [diff] [blame] | 1437 | /// Add RequiredPass into list of lower level passes required by pass P. |
| 1438 | /// RequiredPass is run on the fly by Pass Manager when P requests it |
| 1439 | /// through getAnalysis interface. |
| 1440 | void MPPassManager::addLowerLevelRequiredPass(Pass *P, Pass *RequiredPass) { |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 1441 | assert(P->getPotentialPassManagerType() == PMT_ModulePassManager && |
| 1442 | "Unable to handle Pass that requires lower level Analysis pass"); |
| 1443 | assert((P->getPotentialPassManagerType() < |
| 1444 | RequiredPass->getPotentialPassManagerType()) && |
| 1445 | "Unable to handle Pass that requires lower level Analysis pass"); |
Devang Patel | e64d305 | 2007-04-16 20:12:57 +0000 | [diff] [blame] | 1446 | |
Devang Patel | 68f72b1 | 2007-04-26 17:50:19 +0000 | [diff] [blame] | 1447 | FunctionPassManagerImpl *FPP = OnTheFlyManagers[P]; |
Devang Patel | 69e9f6d | 2007-04-16 20:27:05 +0000 | [diff] [blame] | 1448 | if (!FPP) { |
Devang Patel | 68f72b1 | 2007-04-26 17:50:19 +0000 | [diff] [blame] | 1449 | FPP = new FunctionPassManagerImpl(0); |
| 1450 | // FPP is the top level manager. |
| 1451 | FPP->setTopLevelManager(FPP); |
| 1452 | |
Devang Patel | 69e9f6d | 2007-04-16 20:27:05 +0000 | [diff] [blame] | 1453 | OnTheFlyManagers[P] = FPP; |
| 1454 | } |
Devang Patel | 68f72b1 | 2007-04-26 17:50:19 +0000 | [diff] [blame] | 1455 | FPP->add(RequiredPass); |
Devang Patel | 69e9f6d | 2007-04-16 20:27:05 +0000 | [diff] [blame] | 1456 | |
Devang Patel | 68f72b1 | 2007-04-26 17:50:19 +0000 | [diff] [blame] | 1457 | // Register P as the last user of RequiredPass. |
Devang Patel | 8adae86 | 2007-07-20 18:04:54 +0000 | [diff] [blame] | 1458 | SmallVector<Pass *, 12> LU; |
Devang Patel | 68f72b1 | 2007-04-26 17:50:19 +0000 | [diff] [blame] | 1459 | LU.push_back(RequiredPass); |
| 1460 | FPP->setLastUser(LU, P); |
Devang Patel | e64d305 | 2007-04-16 20:12:57 +0000 | [diff] [blame] | 1461 | } |
Devang Patel | 69e9f6d | 2007-04-16 20:27:05 +0000 | [diff] [blame] | 1462 | |
| 1463 | /// Return function pass corresponding to PassInfo PI, that is |
| 1464 | /// required by module pass MP. Instantiate analysis pass, by using |
| 1465 | /// its runOnFunction() for function F. |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 1466 | Pass* MPPassManager::getOnTheFlyPass(Pass *MP, const PassInfo *PI, Function &F){ |
Devang Patel | 68f72b1 | 2007-04-26 17:50:19 +0000 | [diff] [blame] | 1467 | FunctionPassManagerImpl *FPP = OnTheFlyManagers[MP]; |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 1468 | assert(FPP && "Unable to find on the fly pass"); |
Devang Patel | 69e9f6d | 2007-04-16 20:27:05 +0000 | [diff] [blame] | 1469 | |
Torok Edwin | 24c7835 | 2009-06-29 18:49:09 +0000 | [diff] [blame] | 1470 | FPP->releaseMemoryOnTheFly(); |
Devang Patel | 68f72b1 | 2007-04-26 17:50:19 +0000 | [diff] [blame] | 1471 | FPP->run(F); |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 1472 | return (dynamic_cast<PMTopLevelManager *>(FPP))->findAnalysisPass(PI); |
Devang Patel | 69e9f6d | 2007-04-16 20:27:05 +0000 | [diff] [blame] | 1473 | } |
| 1474 | |
| 1475 | |
Devang Patel | a1514cb | 2006-12-07 19:39:39 +0000 | [diff] [blame] | 1476 | //===----------------------------------------------------------------------===// |
| 1477 | // PassManagerImpl implementation |
Devang Patel | ab97cf4 | 2006-12-13 00:09:23 +0000 | [diff] [blame] | 1478 | // |
Devang Patel | c290c8a | 2006-11-07 22:23:34 +0000 | [diff] [blame] | 1479 | /// run - Execute all of the passes scheduled for execution. Keep track of |
| 1480 | /// whether any of the passes modifies the module, and if so, return true. |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 1481 | bool PassManagerImpl::run(Module &M) { |
Devang Patel | c290c8a | 2006-11-07 22:23:34 +0000 | [diff] [blame] | 1482 | bool Changed = false; |
Devang Patel | b8817b9 | 2006-12-14 00:59:42 +0000 | [diff] [blame] | 1483 | TimingInfo::createTheTimeInfo(); |
| 1484 | |
Devang Patel | cfd70c4 | 2006-12-13 22:10:00 +0000 | [diff] [blame] | 1485 | dumpArguments(); |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 1486 | dumpPasses(); |
Devang Patel | f1567a5 | 2006-12-13 20:03:48 +0000 | [diff] [blame] | 1487 | |
Devang Patel | e306840 | 2006-12-21 00:16:50 +0000 | [diff] [blame] | 1488 | initializeAllAnalysisInfo(); |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 1489 | for (unsigned Index = 0; Index < getNumContainedManagers(); ++Index) |
| 1490 | Changed |= getContainedManager(Index)->runOnModule(M); |
Devang Patel | c290c8a | 2006-11-07 22:23:34 +0000 | [diff] [blame] | 1491 | return Changed; |
| 1492 | } |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 1493 | |
Devang Patel | a1514cb | 2006-12-07 19:39:39 +0000 | [diff] [blame] | 1494 | //===----------------------------------------------------------------------===// |
| 1495 | // PassManager implementation |
| 1496 | |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 1497 | /// Create new pass manager |
Devang Patel | b67904d | 2006-12-13 02:36:01 +0000 | [diff] [blame] | 1498 | PassManager::PassManager() { |
Devang Patel | 67d6a5e | 2006-12-19 19:46:59 +0000 | [diff] [blame] | 1499 | PM = new PassManagerImpl(0); |
Devang Patel | 9c6290c | 2006-12-12 22:02:16 +0000 | [diff] [blame] | 1500 | // PM is the top level manager |
| 1501 | PM->setTopLevelManager(PM); |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 1502 | } |
| 1503 | |
Devang Patel | b67904d | 2006-12-13 02:36:01 +0000 | [diff] [blame] | 1504 | PassManager::~PassManager() { |
Devang Patel | ab97cf4 | 2006-12-13 00:09:23 +0000 | [diff] [blame] | 1505 | delete PM; |
| 1506 | } |
| 1507 | |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 1508 | /// add - Add a pass to the queue of passes to run. This passes ownership of |
| 1509 | /// the Pass to the PassManager. When the PassManager is destroyed, the pass |
| 1510 | /// will be destroyed as well, so there is no need to delete the pass. This |
| 1511 | /// implies that all passes MUST be allocated with 'new'. |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 1512 | void PassManager::add(Pass *P) { |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 1513 | PM->add(P); |
| 1514 | } |
| 1515 | |
| 1516 | /// run - Execute all of the passes scheduled for execution. Keep track of |
| 1517 | /// whether any of the passes modifies the module, and if so, return true. |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 1518 | bool PassManager::run(Module &M) { |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 1519 | return PM->run(M); |
| 1520 | } |
| 1521 | |
Devang Patel | b8817b9 | 2006-12-14 00:59:42 +0000 | [diff] [blame] | 1522 | //===----------------------------------------------------------------------===// |
| 1523 | // TimingInfo Class - This class is used to calculate information about the |
| 1524 | // amount of time each pass takes to execute. This only happens with |
| 1525 | // -time-passes is enabled on the command line. |
| 1526 | // |
| 1527 | bool llvm::TimePassesIsEnabled = false; |
| 1528 | static cl::opt<bool,true> |
| 1529 | EnableTiming("time-passes", cl::location(TimePassesIsEnabled), |
| 1530 | cl::desc("Time each pass, printing elapsed time for each on exit")); |
| 1531 | |
| 1532 | // createTheTimeInfo - This method either initializes the TheTimeInfo pointer to |
| 1533 | // a non null value (if the -time-passes option is enabled) or it leaves it |
| 1534 | // null. It may be called multiple times. |
| 1535 | void TimingInfo::createTheTimeInfo() { |
| 1536 | if (!TimePassesIsEnabled || TheTimeInfo) return; |
| 1537 | |
| 1538 | // Constructed the first time this is called, iff -time-passes is enabled. |
| 1539 | // This guarantees that the object will be constructed before static globals, |
| 1540 | // thus it will be destroyed before them. |
| 1541 | static ManagedStatic<TimingInfo> TTI; |
| 1542 | TheTimeInfo = &*TTI; |
| 1543 | } |
| 1544 | |
Devang Patel | 1c3633e | 2007-01-29 23:10:37 +0000 | [diff] [blame] | 1545 | /// If TimingInfo is enabled then start pass timer. |
Dan Gohman | 277e767 | 2009-09-28 00:07:05 +0000 | [diff] [blame] | 1546 | Timer *llvm::StartPassTimer(Pass *P) { |
Devang Patel | 1c3633e | 2007-01-29 23:10:37 +0000 | [diff] [blame] | 1547 | if (TheTimeInfo) |
Dan Gohman | 277e767 | 2009-09-28 00:07:05 +0000 | [diff] [blame] | 1548 | return TheTimeInfo->passStarted(P); |
| 1549 | return 0; |
Devang Patel | 1c3633e | 2007-01-29 23:10:37 +0000 | [diff] [blame] | 1550 | } |
| 1551 | |
| 1552 | /// If TimingInfo is enabled then stop pass timer. |
Dan Gohman | 277e767 | 2009-09-28 00:07:05 +0000 | [diff] [blame] | 1553 | void llvm::StopPassTimer(Pass *P, Timer *T) { |
| 1554 | if (T) T->stopTimer(); |
Devang Patel | 1c3633e | 2007-01-29 23:10:37 +0000 | [diff] [blame] | 1555 | } |
| 1556 | |
Devang Patel | 1c56a63 | 2007-01-08 19:29:38 +0000 | [diff] [blame] | 1557 | //===----------------------------------------------------------------------===// |
| 1558 | // PMStack implementation |
| 1559 | // |
Devang Patel | ad98d23 | 2007-01-11 22:15:30 +0000 | [diff] [blame] | 1560 | |
Devang Patel | 1c56a63 | 2007-01-08 19:29:38 +0000 | [diff] [blame] | 1561 | // Pop Pass Manager from the stack and clear its analysis info. |
| 1562 | void PMStack::pop() { |
| 1563 | |
| 1564 | PMDataManager *Top = this->top(); |
| 1565 | Top->initializeAnalysisInfo(); |
| 1566 | |
| 1567 | S.pop_back(); |
| 1568 | } |
| 1569 | |
| 1570 | // Push PM on the stack and set its top level manager. |
Dan Gohman | 11eecd6 | 2008-03-13 01:21:31 +0000 | [diff] [blame] | 1571 | void PMStack::push(PMDataManager *PM) { |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 1572 | assert(PM && "Unable to push. Pass Manager expected"); |
Devang Patel | 1c56a63 | 2007-01-08 19:29:38 +0000 | [diff] [blame] | 1573 | |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 1574 | if (!this->empty()) { |
| 1575 | PMTopLevelManager *TPM = this->top()->getTopLevelManager(); |
Devang Patel | 1c56a63 | 2007-01-08 19:29:38 +0000 | [diff] [blame] | 1576 | |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 1577 | assert(TPM && "Unable to find top level manager"); |
Devang Patel | 15701b5 | 2007-01-11 00:19:00 +0000 | [diff] [blame] | 1578 | TPM->addIndirectPassManager(PM); |
| 1579 | PM->setTopLevelManager(TPM); |
| 1580 | } |
| 1581 | |
Devang Patel | 15701b5 | 2007-01-11 00:19:00 +0000 | [diff] [blame] | 1582 | S.push_back(PM); |
| 1583 | } |
| 1584 | |
| 1585 | // Dump content of the pass manager stack. |
| 1586 | void PMStack::dump() { |
Chris Lattner | 6098736 | 2009-03-06 05:53:14 +0000 | [diff] [blame] | 1587 | for (std::deque<PMDataManager *>::iterator I = S.begin(), |
| 1588 | E = S.end(); I != E; ++I) |
| 1589 | printf("%s ", dynamic_cast<Pass *>(*I)->getPassName()); |
| 1590 | |
Devang Patel | 15701b5 | 2007-01-11 00:19:00 +0000 | [diff] [blame] | 1591 | if (!S.empty()) |
Chris Lattner | de2aa65 | 2007-08-10 06:22:25 +0000 | [diff] [blame] | 1592 | printf("\n"); |
Devang Patel | 1c56a63 | 2007-01-08 19:29:38 +0000 | [diff] [blame] | 1593 | } |
| 1594 | |
Devang Patel | 1c56a63 | 2007-01-08 19:29:38 +0000 | [diff] [blame] | 1595 | /// Find appropriate Module Pass Manager in the PM Stack and |
| 1596 | /// add self into that manager. |
Devang Patel | dffca63 | 2007-01-17 20:30:17 +0000 | [diff] [blame] | 1597 | void ModulePass::assignPassManager(PMStack &PMS, |
Anton Korobeynikov | fb80151 | 2007-04-16 18:10:23 +0000 | [diff] [blame] | 1598 | PassManagerType PreferredType) { |
Devang Patel | 1c56a63 | 2007-01-08 19:29:38 +0000 | [diff] [blame] | 1599 | // Find Module Pass Manager |
| 1600 | while(!PMS.empty()) { |
Devang Patel | 23f8aa9 | 2007-01-17 21:19:23 +0000 | [diff] [blame] | 1601 | PassManagerType TopPMType = PMS.top()->getPassManagerType(); |
| 1602 | if (TopPMType == PreferredType) |
| 1603 | break; // We found desired pass manager |
| 1604 | else if (TopPMType > PMT_ModulePassManager) |
Devang Patel | 1c56a63 | 2007-01-08 19:29:38 +0000 | [diff] [blame] | 1605 | PMS.pop(); // Pop children pass managers |
Devang Patel | ac99eca | 2007-01-11 19:59:06 +0000 | [diff] [blame] | 1606 | else |
| 1607 | break; |
Devang Patel | 1c56a63 | 2007-01-08 19:29:38 +0000 | [diff] [blame] | 1608 | } |
Devang Patel | 18ff636 | 2008-09-09 21:38:40 +0000 | [diff] [blame] | 1609 | assert(!PMS.empty() && "Unable to find appropriate Pass Manager"); |
Devang Patel | 23f8aa9 | 2007-01-17 21:19:23 +0000 | [diff] [blame] | 1610 | PMS.top()->add(this); |
Devang Patel | 1c56a63 | 2007-01-08 19:29:38 +0000 | [diff] [blame] | 1611 | } |
| 1612 | |
Devang Patel | 3312f75 | 2007-01-16 21:43:18 +0000 | [diff] [blame] | 1613 | /// Find appropriate Function Pass Manager or Call Graph Pass Manager |
| 1614 | /// in the PM Stack and add self into that manager. |
Devang Patel | dffca63 | 2007-01-17 20:30:17 +0000 | [diff] [blame] | 1615 | void FunctionPass::assignPassManager(PMStack &PMS, |
Anton Korobeynikov | fb80151 | 2007-04-16 18:10:23 +0000 | [diff] [blame] | 1616 | PassManagerType PreferredType) { |
Devang Patel | 1c56a63 | 2007-01-08 19:29:38 +0000 | [diff] [blame] | 1617 | |
Devang Patel | a328690 | 2008-09-09 17:56:50 +0000 | [diff] [blame] | 1618 | // Find Module Pass Manager |
Devang Patel | 1c56a63 | 2007-01-08 19:29:38 +0000 | [diff] [blame] | 1619 | while(!PMS.empty()) { |
Devang Patel | ac99eca | 2007-01-11 19:59:06 +0000 | [diff] [blame] | 1620 | if (PMS.top()->getPassManagerType() > PMT_FunctionPassManager) |
| 1621 | PMS.pop(); |
Devang Patel | 1c56a63 | 2007-01-08 19:29:38 +0000 | [diff] [blame] | 1622 | else |
Devang Patel | 3312f75 | 2007-01-16 21:43:18 +0000 | [diff] [blame] | 1623 | break; |
| 1624 | } |
| 1625 | FPPassManager *FPP = dynamic_cast<FPPassManager *>(PMS.top()); |
| 1626 | |
| 1627 | // Create new Function Pass Manager |
| 1628 | if (!FPP) { |
| 1629 | assert(!PMS.empty() && "Unable to create Function Pass Manager"); |
| 1630 | PMDataManager *PMD = PMS.top(); |
| 1631 | |
| 1632 | // [1] Create new Function Pass Manager |
| 1633 | FPP = new FPPassManager(PMD->getDepth() + 1); |
Devang Patel | cbbf291 | 2008-03-20 01:09:53 +0000 | [diff] [blame] | 1634 | FPP->populateInheritedAnalysis(PMS); |
Devang Patel | 3312f75 | 2007-01-16 21:43:18 +0000 | [diff] [blame] | 1635 | |
| 1636 | // [2] Set up new manager's top level manager |
| 1637 | PMTopLevelManager *TPM = PMD->getTopLevelManager(); |
| 1638 | TPM->addIndirectPassManager(FPP); |
| 1639 | |
| 1640 | // [3] Assign manager to manage this new manager. This may create |
| 1641 | // and push new managers into PMS |
Devang Patel | a328690 | 2008-09-09 17:56:50 +0000 | [diff] [blame] | 1642 | FPP->assignPassManager(PMS, PMD->getPassManagerType()); |
Devang Patel | 3312f75 | 2007-01-16 21:43:18 +0000 | [diff] [blame] | 1643 | |
| 1644 | // [4] Push new manager into PMS |
| 1645 | PMS.push(FPP); |
Devang Patel | 1c56a63 | 2007-01-08 19:29:38 +0000 | [diff] [blame] | 1646 | } |
| 1647 | |
Devang Patel | 3312f75 | 2007-01-16 21:43:18 +0000 | [diff] [blame] | 1648 | // Assign FPP as the manager of this pass. |
| 1649 | FPP->add(this); |
Devang Patel | 1c56a63 | 2007-01-08 19:29:38 +0000 | [diff] [blame] | 1650 | } |
| 1651 | |
Devang Patel | 3312f75 | 2007-01-16 21:43:18 +0000 | [diff] [blame] | 1652 | /// Find appropriate Basic Pass Manager or Call Graph Pass Manager |
Devang Patel | 1c56a63 | 2007-01-08 19:29:38 +0000 | [diff] [blame] | 1653 | /// in the PM Stack and add self into that manager. |
Devang Patel | dffca63 | 2007-01-17 20:30:17 +0000 | [diff] [blame] | 1654 | void BasicBlockPass::assignPassManager(PMStack &PMS, |
Anton Korobeynikov | fb80151 | 2007-04-16 18:10:23 +0000 | [diff] [blame] | 1655 | PassManagerType PreferredType) { |
Devang Patel | 1c56a63 | 2007-01-08 19:29:38 +0000 | [diff] [blame] | 1656 | BBPassManager *BBP = NULL; |
| 1657 | |
Devang Patel | 15701b5 | 2007-01-11 00:19:00 +0000 | [diff] [blame] | 1658 | // Basic Pass Manager is a leaf pass manager. It does not handle |
| 1659 | // any other pass manager. |
Chris Lattner | de2aa65 | 2007-08-10 06:22:25 +0000 | [diff] [blame] | 1660 | if (!PMS.empty()) |
Devang Patel | 1c56a63 | 2007-01-08 19:29:38 +0000 | [diff] [blame] | 1661 | BBP = dynamic_cast<BBPassManager *>(PMS.top()); |
Devang Patel | 1c56a63 | 2007-01-08 19:29:38 +0000 | [diff] [blame] | 1662 | |
Devang Patel | 3312f75 | 2007-01-16 21:43:18 +0000 | [diff] [blame] | 1663 | // If leaf manager is not Basic Block Pass manager then create new |
| 1664 | // basic Block Pass manager. |
Devang Patel | 15701b5 | 2007-01-11 00:19:00 +0000 | [diff] [blame] | 1665 | |
Devang Patel | 3312f75 | 2007-01-16 21:43:18 +0000 | [diff] [blame] | 1666 | if (!BBP) { |
| 1667 | assert(!PMS.empty() && "Unable to create BasicBlock Pass Manager"); |
| 1668 | PMDataManager *PMD = PMS.top(); |
| 1669 | |
| 1670 | // [1] Create new Basic Block Manager |
| 1671 | BBP = new BBPassManager(PMD->getDepth() + 1); |
| 1672 | |
| 1673 | // [2] Set up new manager's top level manager |
| 1674 | // Basic Block Pass Manager does not live by itself |
| 1675 | PMTopLevelManager *TPM = PMD->getTopLevelManager(); |
| 1676 | TPM->addIndirectPassManager(BBP); |
| 1677 | |
Devang Patel | 15701b5 | 2007-01-11 00:19:00 +0000 | [diff] [blame] | 1678 | // [3] Assign manager to manage this new manager. This may create |
| 1679 | // and push new managers into PMS |
Dan Gohman | 565df95 | 2008-03-13 02:08:36 +0000 | [diff] [blame] | 1680 | BBP->assignPassManager(PMS); |
Devang Patel | 15701b5 | 2007-01-11 00:19:00 +0000 | [diff] [blame] | 1681 | |
Devang Patel | 3312f75 | 2007-01-16 21:43:18 +0000 | [diff] [blame] | 1682 | // [4] Push new manager into PMS |
| 1683 | PMS.push(BBP); |
| 1684 | } |
Devang Patel | 1c56a63 | 2007-01-08 19:29:38 +0000 | [diff] [blame] | 1685 | |
Devang Patel | 3312f75 | 2007-01-16 21:43:18 +0000 | [diff] [blame] | 1686 | // Assign BBP as the manager of this pass. |
| 1687 | BBP->add(this); |
Devang Patel | 1c56a63 | 2007-01-08 19:29:38 +0000 | [diff] [blame] | 1688 | } |
| 1689 | |
Dan Gohman | d3a20c9 | 2008-03-11 16:41:42 +0000 | [diff] [blame] | 1690 | PassManagerBase::~PassManagerBase() {} |
Gordon Henriksen | 878114b | 2008-03-16 04:20:44 +0000 | [diff] [blame] | 1691 | |
| 1692 | /*===-- C Bindings --------------------------------------------------------===*/ |
| 1693 | |
| 1694 | LLVMPassManagerRef LLVMCreatePassManager() { |
| 1695 | return wrap(new PassManager()); |
| 1696 | } |
| 1697 | |
| 1698 | LLVMPassManagerRef LLVMCreateFunctionPassManager(LLVMModuleProviderRef P) { |
| 1699 | return wrap(new FunctionPassManager(unwrap(P))); |
| 1700 | } |
| 1701 | |
| 1702 | int LLVMRunPassManager(LLVMPassManagerRef PM, LLVMModuleRef M) { |
| 1703 | return unwrap<PassManager>(PM)->run(*unwrap(M)); |
| 1704 | } |
| 1705 | |
| 1706 | int LLVMInitializeFunctionPassManager(LLVMPassManagerRef FPM) { |
| 1707 | return unwrap<FunctionPassManager>(FPM)->doInitialization(); |
| 1708 | } |
| 1709 | |
| 1710 | int LLVMRunFunctionPassManager(LLVMPassManagerRef FPM, LLVMValueRef F) { |
| 1711 | return unwrap<FunctionPassManager>(FPM)->run(*unwrap<Function>(F)); |
| 1712 | } |
| 1713 | |
| 1714 | int LLVMFinalizeFunctionPassManager(LLVMPassManagerRef FPM) { |
| 1715 | return unwrap<FunctionPassManager>(FPM)->doFinalization(); |
| 1716 | } |
| 1717 | |
| 1718 | void LLVMDisposePassManager(LLVMPassManagerRef PM) { |
| 1719 | delete unwrap(PM); |
| 1720 | } |