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 | // |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 5 | // This file was developed by Devang Patel and is distributed under |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the LLVM Pass Manager infrastructure. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | |
| 15 | #include "llvm/PassManager.h" |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 16 | #include "llvm/Module.h" |
Devang Patel | ff631ae | 2006-11-15 01:27:05 +0000 | [diff] [blame] | 17 | #include "llvm/ModuleProvider.h" |
Bill Wendling | dfc9189 | 2006-11-28 02:09:03 +0000 | [diff] [blame] | 18 | #include "llvm/Support/Streams.h" |
Devang Patel | a984459 | 2006-11-11 01:31:05 +0000 | [diff] [blame] | 19 | #include <vector> |
Devang Patel | f60b5d9 | 2006-11-14 01:59:59 +0000 | [diff] [blame] | 20 | #include <map> |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 21 | using namespace llvm; |
| 22 | |
Devang Patel | 6fea285 | 2006-12-07 18:23:30 +0000 | [diff] [blame] | 23 | //===----------------------------------------------------------------------===// |
| 24 | // Overview: |
| 25 | // The Pass Manager Infrastructure manages passes. It's responsibilities are: |
| 26 | // |
| 27 | // o Manage optimization pass execution order |
| 28 | // o Make required Analysis information available before pass P is run |
| 29 | // o Release memory occupied by dead passes |
| 30 | // o If Analysis information is dirtied by a pass then regenerate Analysis |
| 31 | // information before it is consumed by another pass. |
| 32 | // |
| 33 | // Pass Manager Infrastructure uses multipe pass managers. They are PassManager, |
| 34 | // FunctionPassManager, ModulePassManager, BasicBlockPassManager. This class |
| 35 | // hierarcy uses multiple inheritance but pass managers do not derive from |
| 36 | // another pass manager. |
| 37 | // |
| 38 | // PassManager and FunctionPassManager are two top level pass manager that |
| 39 | // represents the external interface of this entire pass manager infrastucture. |
| 40 | // |
| 41 | // Important classes : |
| 42 | // |
| 43 | // [o] class PMTopLevelManager; |
| 44 | // |
| 45 | // Two top level managers, PassManager and FunctionPassManager, derive from |
| 46 | // PMTopLevelManager. PMTopLevelManager manages information used by top level |
| 47 | // managers such as last user info. |
| 48 | // |
| 49 | // [o] class PMDataManager; |
| 50 | // |
| 51 | // PMDataManager manages information, e.g. list of available analysis info, |
| 52 | // used by a pass manager to manage execution order of passes. It also provides |
| 53 | // a place to implement common pass manager APIs. All pass managers derive from |
| 54 | // PMDataManager. |
| 55 | // |
| 56 | // [o] class BasicBlockPassManager : public FunctionPass, public PMDataManager; |
| 57 | // |
| 58 | // BasicBlockPassManager manages BasicBlockPasses. |
| 59 | // |
| 60 | // [o] class FunctionPassManager; |
| 61 | // |
| 62 | // This is a external interface used by JIT to manage FunctionPasses. This |
| 63 | // interface relies on FunctionPassManagerImpl to do all the tasks. |
| 64 | // |
| 65 | // [o] class FunctionPassManagerImpl : public ModulePass, PMDataManager, |
| 66 | // public PMTopLevelManager; |
| 67 | // |
| 68 | // FunctionPassManagerImpl is a top level manager. It manages FunctionPasses |
| 69 | // and BasicBlockPassManagers. |
| 70 | // |
| 71 | // [o] class ModulePassManager : public Pass, public PMDataManager; |
| 72 | // |
| 73 | // ModulePassManager manages ModulePasses and FunctionPassManagerImpls. |
| 74 | // |
| 75 | // [o] class PassManager; |
| 76 | // |
| 77 | // This is a external interface used by various tools to manages passes. It |
| 78 | // relies on PassManagerImpl to do all the tasks. |
| 79 | // |
| 80 | // [o] class PassManagerImpl : public Pass, public PMDataManager, |
| 81 | // public PMDTopLevelManager |
| 82 | // |
| 83 | // PassManagerImpl is a top level pass manager responsible for managing |
| 84 | // ModulePassManagers. |
| 85 | //===----------------------------------------------------------------------===// |
| 86 | |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 87 | namespace llvm { |
| 88 | |
Devang Patel | f33f3eb | 2006-12-07 19:21:29 +0000 | [diff] [blame] | 89 | //===----------------------------------------------------------------------===// |
| 90 | // PMTopLevelManager |
| 91 | // |
| 92 | /// PMTopLevelManager manages LastUser info and collects common APIs used by |
| 93 | /// top level pass managers. |
| 94 | class PMTopLevelManager { |
| 95 | |
| 96 | public: |
| 97 | |
| 98 | inline std::vector<Pass *>::iterator passManagersBegin() { |
| 99 | return PassManagers.begin(); |
| 100 | } |
| 101 | |
| 102 | inline std::vector<Pass *>::iterator passManagersEnd() { |
| 103 | return PassManagers.end(); |
| 104 | } |
| 105 | |
| 106 | /// Schedule pass P for execution. Make sure that passes required by |
| 107 | /// P are run before P is run. Update analysis info maintained by |
| 108 | /// the manager. Remove dead passes. This is a recursive function. |
| 109 | void schedulePass(Pass *P, Pass *PM); |
| 110 | |
| 111 | /// This is implemented by top level pass manager and used by |
| 112 | /// schedulePass() to add analysis info passes that are not available. |
| 113 | virtual void addTopLevelPass(Pass *P) = 0; |
| 114 | |
| 115 | /// Set pass P as the last user of the given analysis passes. |
| 116 | void setLastUser(std::vector<Pass *> &AnalysisPasses, Pass *P); |
| 117 | |
| 118 | /// Collect passes whose last user is P |
| 119 | void collectLastUses(std::vector<Pass *> &LastUses, Pass *P); |
| 120 | |
| 121 | virtual ~PMTopLevelManager() { |
| 122 | PassManagers.clear(); |
| 123 | } |
| 124 | |
Devang Patel | e0eb9d8 | 2006-12-07 20:51:18 +0000 | [diff] [blame] | 125 | /// Add immutable pass and initialize it. |
| 126 | inline void addImmutablePass(ImmutablePass *P) { |
| 127 | P->initializePass(); |
| 128 | ImmutablePasses.push_back(P); |
| 129 | } |
| 130 | |
| 131 | inline std::vector<ImmutablePass *>& getImmutablePasses() { |
| 132 | return ImmutablePasses; |
| 133 | } |
| 134 | |
Devang Patel | f33f3eb | 2006-12-07 19:21:29 +0000 | [diff] [blame] | 135 | private: |
| 136 | |
| 137 | /// Collection of pass managers |
| 138 | std::vector<Pass *> PassManagers; |
| 139 | |
| 140 | // Map to keep track of last user of the analysis pass. |
| 141 | // LastUser->second is the last user of Lastuser->first. |
| 142 | std::map<Pass *, Pass *> LastUser; |
Devang Patel | e0eb9d8 | 2006-12-07 20:51:18 +0000 | [diff] [blame] | 143 | |
| 144 | /// Immutable passes are managed by top level manager. |
| 145 | std::vector<ImmutablePass *> ImmutablePasses; |
Devang Patel | f33f3eb | 2006-12-07 19:21:29 +0000 | [diff] [blame] | 146 | }; |
| 147 | |
| 148 | /// Set pass P as the last user of the given analysis passes. |
| 149 | void PMTopLevelManager::setLastUser(std::vector<Pass *> &AnalysisPasses, |
| 150 | Pass *P) { |
| 151 | |
| 152 | for (std::vector<Pass *>::iterator I = AnalysisPasses.begin(), |
| 153 | E = AnalysisPasses.end(); I != E; ++I) { |
| 154 | Pass *AP = *I; |
| 155 | LastUser[AP] = P; |
| 156 | // If AP is the last user of other passes then make P last user of |
| 157 | // such passes. |
| 158 | for (std::map<Pass *, Pass *>::iterator LUI = LastUser.begin(), |
| 159 | LUE = LastUser.end(); LUI != LUE; ++LUI) { |
| 160 | if (LUI->second == AP) |
| 161 | LastUser[LUI->first] = P; |
| 162 | } |
| 163 | } |
| 164 | |
| 165 | } |
| 166 | |
| 167 | /// Collect passes whose last user is P |
| 168 | void PMTopLevelManager::collectLastUses(std::vector<Pass *> &LastUses, |
| 169 | Pass *P) { |
| 170 | for (std::map<Pass *, Pass *>::iterator LUI = LastUser.begin(), |
| 171 | LUE = LastUser.end(); LUI != LUE; ++LUI) |
| 172 | if (LUI->second == P) |
| 173 | LastUses.push_back(LUI->first); |
| 174 | } |
| 175 | |
Devang Patel | de12418 | 2006-12-07 21:10:57 +0000 | [diff] [blame^] | 176 | /// Schedule pass P for execution. Make sure that passes required by |
| 177 | /// P are run before P is run. Update analysis info maintained by |
| 178 | /// the manager. Remove dead passes. This is a recursive function. |
| 179 | void PMTopLevelManager::schedulePass(Pass *P, Pass *PM) { |
| 180 | |
| 181 | // TODO : Allocate function manager for this pass, other wise required set |
| 182 | // may be inserted into previous function manager |
| 183 | |
| 184 | AnalysisUsage AnUsage; |
| 185 | P->getAnalysisUsage(AnUsage); |
| 186 | const std::vector<AnalysisID> &RequiredSet = AnUsage.getRequiredSet(); |
| 187 | for (std::vector<AnalysisID>::const_iterator I = RequiredSet.begin(), |
| 188 | E = RequiredSet.end(); I != E; ++I) { |
| 189 | |
| 190 | Pass *AnalysisPass = NULL; // FIXME PM->getAnalysisPass(*I, true); |
| 191 | if (!AnalysisPass) { |
| 192 | // Schedule this analysis run first. |
| 193 | AnalysisPass = (*I)->createPass(); |
| 194 | schedulePass(AnalysisPass, PM); |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | // Now all required passes are available. |
| 199 | addTopLevelPass(P); |
| 200 | } |
| 201 | |
| 202 | |
Devang Patel | f3827bc | 2006-12-07 19:54:15 +0000 | [diff] [blame] | 203 | //===----------------------------------------------------------------------===// |
| 204 | // PMDataManager |
Devang Patel | f33f3eb | 2006-12-07 19:21:29 +0000 | [diff] [blame] | 205 | |
Devang Patel | dbe4a1e | 2006-12-07 18:36:24 +0000 | [diff] [blame] | 206 | /// PMDataManager provides the common place to manage the analysis data |
| 207 | /// used by pass managers. |
| 208 | class PMDataManager { |
Devang Patel | a984459 | 2006-11-11 01:31:05 +0000 | [diff] [blame] | 209 | |
| 210 | public: |
| 211 | |
Devang Patel | f3827bc | 2006-12-07 19:54:15 +0000 | [diff] [blame] | 212 | PMDataManager() : TPM(NULL) { |
| 213 | initializeAnalysisInfo(); |
| 214 | } |
| 215 | |
Devang Patel | a984459 | 2006-11-11 01:31:05 +0000 | [diff] [blame] | 216 | /// Return true IFF pass P's required analysis set does not required new |
| 217 | /// manager. |
| 218 | bool manageablePass(Pass *P); |
| 219 | |
Devang Patel | f60b5d9 | 2006-11-14 01:59:59 +0000 | [diff] [blame] | 220 | Pass *getAnalysisPass(AnalysisID AID) const { |
| 221 | |
| 222 | std::map<AnalysisID, Pass*>::const_iterator I = |
| 223 | AvailableAnalysis.find(AID); |
| 224 | |
| 225 | if (I != AvailableAnalysis.end()) |
| 226 | return NULL; |
| 227 | else |
| 228 | return I->second; |
Devang Patel | ebba970 | 2006-11-13 22:40:09 +0000 | [diff] [blame] | 229 | } |
Devang Patel | a984459 | 2006-11-11 01:31:05 +0000 | [diff] [blame] | 230 | |
Devang Patel | a984459 | 2006-11-11 01:31:05 +0000 | [diff] [blame] | 231 | /// Augment AvailableAnalysis by adding analysis made available by pass P. |
Devang Patel | e9976aa | 2006-12-07 19:33:53 +0000 | [diff] [blame] | 232 | void recordAvailableAnalysis(Pass *P); |
Devang Patel | a984459 | 2006-11-11 01:31:05 +0000 | [diff] [blame] | 233 | |
Devang Patel | a984459 | 2006-11-11 01:31:05 +0000 | [diff] [blame] | 234 | /// Remove Analysis that is not preserved by the pass |
| 235 | void removeNotPreservedAnalysis(Pass *P); |
| 236 | |
| 237 | /// Remove dead passes |
Devang Patel | ca18926 | 2006-11-14 03:05:08 +0000 | [diff] [blame] | 238 | void removeDeadPasses(Pass *P); |
Devang Patel | a984459 | 2006-11-11 01:31:05 +0000 | [diff] [blame] | 239 | |
Devang Patel | 8f677ce | 2006-12-07 18:47:25 +0000 | [diff] [blame] | 240 | /// Add pass P into the PassVector. Update |
Devang Patel | 90b05e0 | 2006-11-11 02:04:19 +0000 | [diff] [blame] | 241 | /// AvailableAnalysis appropriately if ProcessAnalysis is true. |
| 242 | void addPassToManager (Pass *P, bool ProcessAnalysis = true); |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 243 | |
Devang Patel | a6b6dcb | 2006-12-07 18:41:09 +0000 | [diff] [blame] | 244 | // Initialize available analysis information. |
| 245 | void initializeAnalysisInfo() { |
Devang Patel | 050ec72 | 2006-11-14 01:23:29 +0000 | [diff] [blame] | 246 | AvailableAnalysis.clear(); |
Devang Patel | 3f0832a | 2006-11-14 02:54:23 +0000 | [diff] [blame] | 247 | LastUser.clear(); |
Devang Patel | b390032 | 2006-12-07 21:02:08 +0000 | [diff] [blame] | 248 | |
| 249 | // Include immutable passes into AvailableAnalysis vector. |
| 250 | std::vector<ImmutablePass *> &ImmutablePasses = TPM->getImmutablePasses(); |
| 251 | for (std::vector<ImmutablePass *>::iterator I = ImmutablePasses.begin(), |
| 252 | E = ImmutablePasses.end(); I != E; ++I) |
| 253 | recordAvailableAnalysis(*I); |
Devang Patel | 050ec72 | 2006-11-14 01:23:29 +0000 | [diff] [blame] | 254 | } |
| 255 | |
Devang Patel | f60b5d9 | 2006-11-14 01:59:59 +0000 | [diff] [blame] | 256 | // All Required analyses should be available to the pass as it runs! Here |
| 257 | // we fill in the AnalysisImpls member of the pass so that it can |
| 258 | // successfully use the getAnalysis() method to retrieve the |
| 259 | // implementations it needs. |
| 260 | // |
Devang Patel | 07f4f58 | 2006-11-14 21:49:36 +0000 | [diff] [blame] | 261 | void initializeAnalysisImpl(Pass *P); |
Devang Patel | f60b5d9 | 2006-11-14 01:59:59 +0000 | [diff] [blame] | 262 | |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 263 | inline std::vector<Pass *>::iterator passVectorBegin() { |
| 264 | return PassVector.begin(); |
| 265 | } |
| 266 | |
| 267 | inline std::vector<Pass *>::iterator passVectorEnd() { |
| 268 | return PassVector.end(); |
| 269 | } |
| 270 | |
Devang Patel | 4a3fa4f | 2006-11-15 01:48:14 +0000 | [diff] [blame] | 271 | inline void setLastUser(Pass *P, Pass *LU) { |
Devang Patel | 07f4f58 | 2006-11-14 21:49:36 +0000 | [diff] [blame] | 272 | LastUser[P] = LU; |
| 273 | // TODO : Check if pass P is available. |
Devang Patel | 07f4f58 | 2006-11-14 21:49:36 +0000 | [diff] [blame] | 274 | } |
Devang Patel | 3f0832a | 2006-11-14 02:54:23 +0000 | [diff] [blame] | 275 | |
Devang Patel | f3827bc | 2006-12-07 19:54:15 +0000 | [diff] [blame] | 276 | // Access toplevel manager |
| 277 | PMTopLevelManager *getTopLevelManager() { return TPM; } |
| 278 | void setTopLevelManager(PMTopLevelManager *T) { TPM = T; } |
| 279 | |
Devang Patel | a984459 | 2006-11-11 01:31:05 +0000 | [diff] [blame] | 280 | private: |
Devang Patel | dafa4dd | 2006-11-14 00:03:04 +0000 | [diff] [blame] | 281 | // Set of available Analysis. This information is used while scheduling |
| 282 | // pass. If a pass requires an analysis which is not not available then |
| 283 | // equired analysis pass is scheduled to run before the pass itself is |
| 284 | // scheduled to run. |
Devang Patel | f60b5d9 | 2006-11-14 01:59:59 +0000 | [diff] [blame] | 285 | std::map<AnalysisID, Pass*> AvailableAnalysis; |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 286 | |
Devang Patel | 3f0832a | 2006-11-14 02:54:23 +0000 | [diff] [blame] | 287 | // Map to keep track of last user of the analysis pass. |
| 288 | // LastUser->second is the last user of Lastuser->first. |
| 289 | std::map<Pass *, Pass *> LastUser; |
| 290 | |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 291 | // Collection of pass that are managed by this manager |
| 292 | std::vector<Pass *> PassVector; |
Devang Patel | f3827bc | 2006-12-07 19:54:15 +0000 | [diff] [blame] | 293 | |
| 294 | // Top level manager. |
| 295 | // TODO : Make it a reference. |
| 296 | PMTopLevelManager *TPM; |
Devang Patel | a984459 | 2006-11-11 01:31:05 +0000 | [diff] [blame] | 297 | }; |
| 298 | |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 299 | /// BasicBlockPassManager_New manages BasicBlockPass. It batches all the |
| 300 | /// pass together and sequence them to process one basic block before |
| 301 | /// processing next basic block. |
Devang Patel | dbe4a1e | 2006-12-07 18:36:24 +0000 | [diff] [blame] | 302 | class BasicBlockPassManager_New : public PMDataManager, |
Devang Patel | 42add71 | 2006-11-15 01:11:27 +0000 | [diff] [blame] | 303 | public FunctionPass { |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 304 | |
| 305 | public: |
| 306 | BasicBlockPassManager_New() { } |
| 307 | |
| 308 | /// Add a pass into a passmanager queue. |
| 309 | bool addPass(Pass *p); |
| 310 | |
| 311 | /// Execute all of the passes scheduled for execution. Keep track of |
| 312 | /// whether any of the passes modifies the function, and if so, return true. |
| 313 | bool runOnFunction(Function &F); |
| 314 | |
Devang Patel | ebba970 | 2006-11-13 22:40:09 +0000 | [diff] [blame] | 315 | /// Return true IFF AnalysisID AID is currently available. |
Devang Patel | 3f0832a | 2006-11-14 02:54:23 +0000 | [diff] [blame] | 316 | Pass *getAnalysisPassFromManager(AnalysisID AID); |
Devang Patel | ebba970 | 2006-11-13 22:40:09 +0000 | [diff] [blame] | 317 | |
Devang Patel | f9d96b9 | 2006-12-07 19:57:52 +0000 | [diff] [blame] | 318 | /// Pass Manager itself does not invalidate any analysis info. |
| 319 | void getAnalysisUsage(AnalysisUsage &Info) const { |
| 320 | Info.setPreservesAll(); |
| 321 | } |
| 322 | |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 323 | private: |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 324 | }; |
| 325 | |
Devang Patel | 4e12f86 | 2006-11-08 10:44:40 +0000 | [diff] [blame] | 326 | /// FunctionPassManagerImpl_New manages FunctionPasses and BasicBlockPassManagers. |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 327 | /// It batches all function passes and basic block pass managers together and |
| 328 | /// sequence them to process one function at a time before processing next |
| 329 | /// function. |
Devang Patel | dbe4a1e | 2006-12-07 18:36:24 +0000 | [diff] [blame] | 330 | class FunctionPassManagerImpl_New : public PMDataManager, |
Devang Patel | 42add71 | 2006-11-15 01:11:27 +0000 | [diff] [blame] | 331 | public ModulePass { |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 332 | public: |
Devang Patel | 4e12f86 | 2006-11-08 10:44:40 +0000 | [diff] [blame] | 333 | FunctionPassManagerImpl_New(ModuleProvider *P) { /* TODO */ } |
| 334 | FunctionPassManagerImpl_New() { |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 335 | activeBBPassManager = NULL; |
| 336 | } |
Devang Patel | 4e12f86 | 2006-11-08 10:44:40 +0000 | [diff] [blame] | 337 | ~FunctionPassManagerImpl_New() { /* TODO */ }; |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 338 | |
| 339 | /// add - Add a pass to the queue of passes to run. This passes |
| 340 | /// ownership of the Pass to the PassManager. When the |
| 341 | /// PassManager_X is destroyed, the pass will be destroyed as well, so |
| 342 | /// there is no need to delete the pass. (TODO delete passes.) |
| 343 | /// This implies that all passes MUST be allocated with 'new'. |
| 344 | void add(Pass *P) { /* TODO*/ } |
| 345 | |
| 346 | /// Add pass into the pass manager queue. |
| 347 | bool addPass(Pass *P); |
| 348 | |
| 349 | /// Execute all of the passes scheduled for execution. Keep |
| 350 | /// track of whether any of the passes modifies the function, and if |
| 351 | /// so, return true. |
| 352 | bool runOnModule(Module &M); |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 353 | bool runOnFunction(Function &F); |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 354 | |
Devang Patel | ebba970 | 2006-11-13 22:40:09 +0000 | [diff] [blame] | 355 | /// Return true IFF AnalysisID AID is currently available. |
Devang Patel | 3f0832a | 2006-11-14 02:54:23 +0000 | [diff] [blame] | 356 | Pass *getAnalysisPassFromManager(AnalysisID AID); |
Devang Patel | ebba970 | 2006-11-13 22:40:09 +0000 | [diff] [blame] | 357 | |
Devang Patel | ff631ae | 2006-11-15 01:27:05 +0000 | [diff] [blame] | 358 | /// doInitialization - Run all of the initializers for the function passes. |
| 359 | /// |
| 360 | bool doInitialization(Module &M); |
| 361 | |
| 362 | /// doFinalization - Run all of the initializers for the function passes. |
| 363 | /// |
| 364 | bool doFinalization(Module &M); |
Devang Patel | f9d96b9 | 2006-12-07 19:57:52 +0000 | [diff] [blame] | 365 | |
| 366 | /// Pass Manager itself does not invalidate any analysis info. |
| 367 | void getAnalysisUsage(AnalysisUsage &Info) const { |
| 368 | Info.setPreservesAll(); |
| 369 | } |
| 370 | |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 371 | private: |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 372 | // Active Pass Managers |
| 373 | BasicBlockPassManager_New *activeBBPassManager; |
| 374 | }; |
| 375 | |
| 376 | /// ModulePassManager_New manages ModulePasses and function pass managers. |
| 377 | /// It batches all Module passes passes and function pass managers together and |
| 378 | /// sequence them to process one module. |
Devang Patel | dbe4a1e | 2006-12-07 18:36:24 +0000 | [diff] [blame] | 379 | class ModulePassManager_New : public PMDataManager { |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 380 | |
| 381 | public: |
| 382 | ModulePassManager_New() { activeFunctionPassManager = NULL; } |
| 383 | |
| 384 | /// Add a pass into a passmanager queue. |
| 385 | bool addPass(Pass *p); |
| 386 | |
| 387 | /// run - Execute all of the passes scheduled for execution. Keep track of |
| 388 | /// whether any of the passes modifies the module, and if so, return true. |
| 389 | bool runOnModule(Module &M); |
Devang Patel | ebba970 | 2006-11-13 22:40:09 +0000 | [diff] [blame] | 390 | |
| 391 | /// Return true IFF AnalysisID AID is currently available. |
Devang Patel | 3f0832a | 2006-11-14 02:54:23 +0000 | [diff] [blame] | 392 | Pass *getAnalysisPassFromManager(AnalysisID AID); |
Devang Patel | f9d96b9 | 2006-12-07 19:57:52 +0000 | [diff] [blame] | 393 | |
| 394 | /// Pass Manager itself does not invalidate any analysis info. |
| 395 | void getAnalysisUsage(AnalysisUsage &Info) const { |
| 396 | Info.setPreservesAll(); |
| 397 | } |
| 398 | |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 399 | private: |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 400 | // Active Pass Manager |
Devang Patel | 4e12f86 | 2006-11-08 10:44:40 +0000 | [diff] [blame] | 401 | FunctionPassManagerImpl_New *activeFunctionPassManager; |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 402 | }; |
| 403 | |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 404 | /// PassManager_New manages ModulePassManagers |
Devang Patel | dbe4a1e | 2006-12-07 18:36:24 +0000 | [diff] [blame] | 405 | class PassManagerImpl_New : public PMDataManager { |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 406 | |
| 407 | public: |
| 408 | |
| 409 | /// add - Add a pass to the queue of passes to run. This passes ownership of |
| 410 | /// the Pass to the PassManager. When the PassManager is destroyed, the pass |
| 411 | /// will be destroyed as well, so there is no need to delete the pass. This |
| 412 | /// implies that all passes MUST be allocated with 'new'. |
| 413 | void add(Pass *P); |
| 414 | |
| 415 | /// run - Execute all of the passes scheduled for execution. Keep track of |
| 416 | /// whether any of the passes modifies the module, and if so, return true. |
| 417 | bool run(Module &M); |
| 418 | |
Devang Patel | ebba970 | 2006-11-13 22:40:09 +0000 | [diff] [blame] | 419 | /// Return true IFF AnalysisID AID is currently available. |
Devang Patel | 3f0832a | 2006-11-14 02:54:23 +0000 | [diff] [blame] | 420 | Pass *getAnalysisPassFromManager(AnalysisID AID); |
Devang Patel | ebba970 | 2006-11-13 22:40:09 +0000 | [diff] [blame] | 421 | |
Devang Patel | f9d96b9 | 2006-12-07 19:57:52 +0000 | [diff] [blame] | 422 | /// Pass Manager itself does not invalidate any analysis info. |
| 423 | void getAnalysisUsage(AnalysisUsage &Info) const { |
| 424 | Info.setPreservesAll(); |
| 425 | } |
| 426 | |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 427 | private: |
| 428 | |
Devang Patel | de12418 | 2006-12-07 21:10:57 +0000 | [diff] [blame^] | 429 | /// Add a pass into a passmanager queue. |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 430 | bool addPass(Pass *p); |
| 431 | |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 432 | // Collection of pass managers |
| 433 | std::vector<ModulePassManager_New *> PassManagers; |
| 434 | |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 435 | // Active Pass Manager |
| 436 | ModulePassManager_New *activeManager; |
| 437 | }; |
| 438 | |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 439 | } // End of llvm namespace |
| 440 | |
Devang Patel | a1514cb | 2006-12-07 19:39:39 +0000 | [diff] [blame] | 441 | //===----------------------------------------------------------------------===// |
Devang Patel | dbe4a1e | 2006-12-07 18:36:24 +0000 | [diff] [blame] | 442 | // PMDataManager implementation |
Devang Patel | f68a349 | 2006-11-07 22:35:17 +0000 | [diff] [blame] | 443 | |
Devang Patel | d65e9e9 | 2006-11-08 01:31:28 +0000 | [diff] [blame] | 444 | /// Return true IFF pass P's required analysis set does not required new |
Devang Patel | f68a349 | 2006-11-07 22:35:17 +0000 | [diff] [blame] | 445 | /// manager. |
Devang Patel | dbe4a1e | 2006-12-07 18:36:24 +0000 | [diff] [blame] | 446 | bool PMDataManager::manageablePass(Pass *P) { |
Devang Patel | f68a349 | 2006-11-07 22:35:17 +0000 | [diff] [blame] | 447 | |
Devang Patel | 8f677ce | 2006-12-07 18:47:25 +0000 | [diff] [blame] | 448 | // TODO |
| 449 | // If this pass is not preserving information that is required by a |
| 450 | // pass maintained by higher level pass manager then do not insert |
| 451 | // this pass into current manager. Use new manager. For example, |
| 452 | // For example, If FunctionPass F is not preserving ModulePass Info M1 |
| 453 | // that is used by another ModulePass M2 then do not insert F in |
| 454 | // current function pass manager. |
Devang Patel | f68a349 | 2006-11-07 22:35:17 +0000 | [diff] [blame] | 455 | return true; |
| 456 | } |
| 457 | |
Devang Patel | 643676c | 2006-11-11 01:10:19 +0000 | [diff] [blame] | 458 | /// Augement AvailableAnalysis by adding analysis made available by pass P. |
Devang Patel | e9976aa | 2006-12-07 19:33:53 +0000 | [diff] [blame] | 459 | void PMDataManager::recordAvailableAnalysis(Pass *P) { |
Devang Patel | f60b5d9 | 2006-11-14 01:59:59 +0000 | [diff] [blame] | 460 | |
Devang Patel | 643676c | 2006-11-11 01:10:19 +0000 | [diff] [blame] | 461 | if (const PassInfo *PI = P->getPassInfo()) { |
Devang Patel | f60b5d9 | 2006-11-14 01:59:59 +0000 | [diff] [blame] | 462 | AvailableAnalysis[PI] = P; |
Devang Patel | 643676c | 2006-11-11 01:10:19 +0000 | [diff] [blame] | 463 | |
Devang Patel | e9976aa | 2006-12-07 19:33:53 +0000 | [diff] [blame] | 464 | //This pass is the current implementation of all of the interfaces it |
| 465 | //implements as well. |
| 466 | const std::vector<const PassInfo*> &II = PI->getInterfacesImplemented(); |
| 467 | for (unsigned i = 0, e = II.size(); i != e; ++i) |
| 468 | AvailableAnalysis[II[i]] = P; |
Devang Patel | 643676c | 2006-11-11 01:10:19 +0000 | [diff] [blame] | 469 | } |
| 470 | } |
| 471 | |
Devang Patel | f68a349 | 2006-11-07 22:35:17 +0000 | [diff] [blame] | 472 | /// Remove Analyss not preserved by Pass P |
Devang Patel | dbe4a1e | 2006-12-07 18:36:24 +0000 | [diff] [blame] | 473 | void PMDataManager::removeNotPreservedAnalysis(Pass *P) { |
Devang Patel | 349170f | 2006-11-11 01:24:55 +0000 | [diff] [blame] | 474 | AnalysisUsage AnUsage; |
| 475 | P->getAnalysisUsage(AnUsage); |
Devang Patel | f68a349 | 2006-11-07 22:35:17 +0000 | [diff] [blame] | 476 | |
Devang Patel | 2e169c3 | 2006-12-07 20:03:49 +0000 | [diff] [blame] | 477 | if (AnUsage.getPreservesAll()) |
| 478 | return; |
| 479 | |
| 480 | const std::vector<AnalysisID> &PreservedSet = AnUsage.getPreservedSet(); |
Devang Patel | f60b5d9 | 2006-11-14 01:59:59 +0000 | [diff] [blame] | 481 | for (std::map<AnalysisID, Pass*>::iterator I = AvailableAnalysis.begin(), |
Devang Patel | 349170f | 2006-11-11 01:24:55 +0000 | [diff] [blame] | 482 | E = AvailableAnalysis.end(); I != E; ++I ) { |
Devang Patel | f60b5d9 | 2006-11-14 01:59:59 +0000 | [diff] [blame] | 483 | if (std::find(PreservedSet.begin(), PreservedSet.end(), I->first) == |
Devang Patel | 349170f | 2006-11-11 01:24:55 +0000 | [diff] [blame] | 484 | PreservedSet.end()) { |
| 485 | // Remove this analysis |
Devang Patel | f60b5d9 | 2006-11-14 01:59:59 +0000 | [diff] [blame] | 486 | std::map<AnalysisID, Pass*>::iterator J = I++; |
Devang Patel | 349170f | 2006-11-11 01:24:55 +0000 | [diff] [blame] | 487 | AvailableAnalysis.erase(J); |
| 488 | } |
| 489 | } |
Devang Patel | f68a349 | 2006-11-07 22:35:17 +0000 | [diff] [blame] | 490 | } |
| 491 | |
Devang Patel | ca18926 | 2006-11-14 03:05:08 +0000 | [diff] [blame] | 492 | /// Remove analysis passes that are not used any longer |
Devang Patel | dbe4a1e | 2006-12-07 18:36:24 +0000 | [diff] [blame] | 493 | void PMDataManager::removeDeadPasses(Pass *P) { |
Devang Patel | ca18926 | 2006-11-14 03:05:08 +0000 | [diff] [blame] | 494 | |
| 495 | for (std::map<Pass *, Pass *>::iterator I = LastUser.begin(), |
| 496 | E = LastUser.end(); I !=E; ++I) { |
| 497 | if (I->second == P) { |
| 498 | Pass *deadPass = I->first; |
| 499 | deadPass->releaseMemory(); |
| 500 | |
| 501 | std::map<AnalysisID, Pass*>::iterator Pos = |
| 502 | AvailableAnalysis.find(deadPass->getPassInfo()); |
| 503 | |
| 504 | assert (Pos != AvailableAnalysis.end() && |
| 505 | "Pass is not available"); |
| 506 | AvailableAnalysis.erase(Pos); |
| 507 | } |
| 508 | } |
| 509 | } |
| 510 | |
Devang Patel | 8f677ce | 2006-12-07 18:47:25 +0000 | [diff] [blame] | 511 | /// Add pass P into the PassVector. Update |
Devang Patel | 90b05e0 | 2006-11-11 02:04:19 +0000 | [diff] [blame] | 512 | /// AvailableAnalysis appropriately if ProcessAnalysis is true. |
Devang Patel | 2e169c3 | 2006-12-07 20:03:49 +0000 | [diff] [blame] | 513 | void PMDataManager::addPassToManager(Pass *P, |
| 514 | bool ProcessAnalysis) { |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 515 | |
Devang Patel | 90b05e0 | 2006-11-11 02:04:19 +0000 | [diff] [blame] | 516 | if (ProcessAnalysis) { |
| 517 | // Take a note of analysis required and made available by this pass |
Devang Patel | 8f677ce | 2006-12-07 18:47:25 +0000 | [diff] [blame] | 518 | initializeAnalysisImpl(P); |
Devang Patel | e9976aa | 2006-12-07 19:33:53 +0000 | [diff] [blame] | 519 | recordAvailableAnalysis(P); |
Devang Patel | 90b05e0 | 2006-11-11 02:04:19 +0000 | [diff] [blame] | 520 | |
| 521 | // Remove the analysis not preserved by this pass |
| 522 | removeNotPreservedAnalysis(P); |
| 523 | } |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 524 | |
| 525 | // Add pass |
| 526 | PassVector.push_back(P); |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 527 | } |
| 528 | |
Devang Patel | 07f4f58 | 2006-11-14 21:49:36 +0000 | [diff] [blame] | 529 | // All Required analyses should be available to the pass as it runs! Here |
| 530 | // we fill in the AnalysisImpls member of the pass so that it can |
| 531 | // successfully use the getAnalysis() method to retrieve the |
| 532 | // implementations it needs. |
| 533 | // |
Devang Patel | dbe4a1e | 2006-12-07 18:36:24 +0000 | [diff] [blame] | 534 | void PMDataManager::initializeAnalysisImpl(Pass *P) { |
Devang Patel | ff631ae | 2006-11-15 01:27:05 +0000 | [diff] [blame] | 535 | AnalysisUsage AnUsage; |
| 536 | P->getAnalysisUsage(AnUsage); |
Devang Patel | 07f4f58 | 2006-11-14 21:49:36 +0000 | [diff] [blame] | 537 | |
| 538 | for (std::vector<const PassInfo *>::const_iterator |
| 539 | I = AnUsage.getRequiredSet().begin(), |
| 540 | E = AnUsage.getRequiredSet().end(); I != E; ++I) { |
| 541 | Pass *Impl = getAnalysisPass(*I); |
| 542 | if (Impl == 0) |
| 543 | assert(0 && "Analysis used but not available!"); |
| 544 | // TODO: P->AnalysisImpls.push_back(std::make_pair(*I, Impl)); |
| 545 | } |
| 546 | } |
| 547 | |
Devang Patel | a1514cb | 2006-12-07 19:39:39 +0000 | [diff] [blame] | 548 | //===----------------------------------------------------------------------===// |
| 549 | // BasicBlockPassManager_New implementation |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 550 | |
Devang Patel | d65e9e9 | 2006-11-08 01:31:28 +0000 | [diff] [blame] | 551 | /// Add pass P into PassVector and return true. If this pass is not |
| 552 | /// manageable by this manager then return false. |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 553 | bool |
Devang Patel | d65e9e9 | 2006-11-08 01:31:28 +0000 | [diff] [blame] | 554 | BasicBlockPassManager_New::addPass(Pass *P) { |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 555 | |
| 556 | BasicBlockPass *BP = dynamic_cast<BasicBlockPass*>(P); |
| 557 | if (!BP) |
| 558 | return false; |
| 559 | |
Devang Patel | 3c8eb62 | 2006-11-07 22:56:50 +0000 | [diff] [blame] | 560 | // If this pass does not preserve anlysis that is used by other passes |
| 561 | // managed by this manager than it is not a suiable pass for this manager. |
Devang Patel | d65e9e9 | 2006-11-08 01:31:28 +0000 | [diff] [blame] | 562 | if (!manageablePass(P)) |
Devang Patel | 3c8eb62 | 2006-11-07 22:56:50 +0000 | [diff] [blame] | 563 | return false; |
| 564 | |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 565 | addPassToManager (BP); |
Devang Patel | 349170f | 2006-11-11 01:24:55 +0000 | [diff] [blame] | 566 | |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 567 | return true; |
| 568 | } |
| 569 | |
| 570 | /// Execute all of the passes scheduled for execution by invoking |
| 571 | /// runOnBasicBlock method. Keep track of whether any of the passes modifies |
| 572 | /// the function, and if so, return true. |
| 573 | bool |
| 574 | BasicBlockPassManager_New::runOnFunction(Function &F) { |
| 575 | |
| 576 | bool Changed = false; |
Devang Patel | a6b6dcb | 2006-12-07 18:41:09 +0000 | [diff] [blame] | 577 | initializeAnalysisInfo(); |
Devang Patel | 050ec72 | 2006-11-14 01:23:29 +0000 | [diff] [blame] | 578 | |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 579 | for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 580 | for (std::vector<Pass *>::iterator itr = passVectorBegin(), |
| 581 | e = passVectorEnd(); itr != e; ++itr) { |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 582 | Pass *P = *itr; |
Devang Patel | 050ec72 | 2006-11-14 01:23:29 +0000 | [diff] [blame] | 583 | |
Devang Patel | e9976aa | 2006-12-07 19:33:53 +0000 | [diff] [blame] | 584 | recordAvailableAnalysis(P); |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 585 | BasicBlockPass *BP = dynamic_cast<BasicBlockPass*>(P); |
| 586 | Changed |= BP->runOnBasicBlock(*I); |
Devang Patel | 050ec72 | 2006-11-14 01:23:29 +0000 | [diff] [blame] | 587 | removeNotPreservedAnalysis(P); |
Devang Patel | ca18926 | 2006-11-14 03:05:08 +0000 | [diff] [blame] | 588 | removeDeadPasses(P); |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 589 | } |
| 590 | return Changed; |
| 591 | } |
| 592 | |
Devang Patel | ebba970 | 2006-11-13 22:40:09 +0000 | [diff] [blame] | 593 | /// Return true IFF AnalysisID AID is currently available. |
Devang Patel | 3f0832a | 2006-11-14 02:54:23 +0000 | [diff] [blame] | 594 | Pass * BasicBlockPassManager_New::getAnalysisPassFromManager(AnalysisID AID) { |
| 595 | return getAnalysisPass(AID); |
Devang Patel | ebba970 | 2006-11-13 22:40:09 +0000 | [diff] [blame] | 596 | } |
| 597 | |
Devang Patel | a1514cb | 2006-12-07 19:39:39 +0000 | [diff] [blame] | 598 | //===----------------------------------------------------------------------===// |
Devang Patel | 0c2012f | 2006-11-07 21:49:50 +0000 | [diff] [blame] | 599 | // FunctionPassManager_New implementation |
Devang Patel | a1514cb | 2006-12-07 19:39:39 +0000 | [diff] [blame] | 600 | |
Devang Patel | 4e12f86 | 2006-11-08 10:44:40 +0000 | [diff] [blame] | 601 | /// Create new Function pass manager |
| 602 | FunctionPassManager_New::FunctionPassManager_New() { |
| 603 | FPM = new FunctionPassManagerImpl_New(); |
| 604 | } |
| 605 | |
| 606 | /// add - Add a pass to the queue of passes to run. This passes |
| 607 | /// ownership of the Pass to the PassManager. When the |
| 608 | /// PassManager_X is destroyed, the pass will be destroyed as well, so |
| 609 | /// there is no need to delete the pass. (TODO delete passes.) |
| 610 | /// This implies that all passes MUST be allocated with 'new'. |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 611 | void FunctionPassManager_New::add(Pass *P) { |
Devang Patel | 4e12f86 | 2006-11-08 10:44:40 +0000 | [diff] [blame] | 612 | FPM->add(P); |
| 613 | } |
| 614 | |
| 615 | /// Execute all of the passes scheduled for execution. Keep |
| 616 | /// track of whether any of the passes modifies the function, and if |
| 617 | /// so, return true. |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 618 | bool FunctionPassManager_New::runOnModule(Module &M) { |
Devang Patel | 4e12f86 | 2006-11-08 10:44:40 +0000 | [diff] [blame] | 619 | return FPM->runOnModule(M); |
| 620 | } |
| 621 | |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 622 | /// run - Execute all of the passes scheduled for execution. Keep |
| 623 | /// track of whether any of the passes modifies the function, and if |
| 624 | /// so, return true. |
| 625 | /// |
| 626 | bool FunctionPassManager_New::run(Function &F) { |
| 627 | std::string errstr; |
| 628 | if (MP->materializeFunction(&F, &errstr)) { |
Bill Wendling | f3baad3 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 629 | cerr << "Error reading bytecode file: " << errstr << "\n"; |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 630 | abort(); |
| 631 | } |
| 632 | return FPM->runOnFunction(F); |
| 633 | } |
| 634 | |
| 635 | |
Devang Patel | ff631ae | 2006-11-15 01:27:05 +0000 | [diff] [blame] | 636 | /// doInitialization - Run all of the initializers for the function passes. |
| 637 | /// |
| 638 | bool FunctionPassManager_New::doInitialization() { |
| 639 | return FPM->doInitialization(*MP->getModule()); |
| 640 | } |
| 641 | |
| 642 | /// doFinalization - Run all of the initializers for the function passes. |
| 643 | /// |
| 644 | bool FunctionPassManager_New::doFinalization() { |
| 645 | return FPM->doFinalization(*MP->getModule()); |
| 646 | } |
| 647 | |
Devang Patel | a1514cb | 2006-12-07 19:39:39 +0000 | [diff] [blame] | 648 | //===----------------------------------------------------------------------===// |
Devang Patel | 4e12f86 | 2006-11-08 10:44:40 +0000 | [diff] [blame] | 649 | // FunctionPassManagerImpl_New implementation |
Devang Patel | 0c2012f | 2006-11-07 21:49:50 +0000 | [diff] [blame] | 650 | |
Devang Patel | 0c2012f | 2006-11-07 21:49:50 +0000 | [diff] [blame] | 651 | /// Add pass P into the pass manager queue. If P is a BasicBlockPass then |
| 652 | /// either use it into active basic block pass manager or create new basic |
| 653 | /// block pass manager to handle pass P. |
| 654 | bool |
Devang Patel | 4e12f86 | 2006-11-08 10:44:40 +0000 | [diff] [blame] | 655 | FunctionPassManagerImpl_New::addPass(Pass *P) { |
Devang Patel | 0c2012f | 2006-11-07 21:49:50 +0000 | [diff] [blame] | 656 | |
| 657 | // If P is a BasicBlockPass then use BasicBlockPassManager_New. |
| 658 | if (BasicBlockPass *BP = dynamic_cast<BasicBlockPass*>(P)) { |
| 659 | |
| 660 | if (!activeBBPassManager |
| 661 | || !activeBBPassManager->addPass(BP)) { |
| 662 | |
| 663 | activeBBPassManager = new BasicBlockPassManager_New(); |
Devang Patel | 90b05e0 | 2006-11-11 02:04:19 +0000 | [diff] [blame] | 664 | addPassToManager(activeBBPassManager, false); |
Devang Patel | d65e9e9 | 2006-11-08 01:31:28 +0000 | [diff] [blame] | 665 | if (!activeBBPassManager->addPass(BP)) |
| 666 | assert(0 && "Unable to add Pass"); |
Devang Patel | 0c2012f | 2006-11-07 21:49:50 +0000 | [diff] [blame] | 667 | } |
| 668 | return true; |
| 669 | } |
| 670 | |
| 671 | FunctionPass *FP = dynamic_cast<FunctionPass *>(P); |
| 672 | if (!FP) |
| 673 | return false; |
| 674 | |
Devang Patel | 3c8eb62 | 2006-11-07 22:56:50 +0000 | [diff] [blame] | 675 | // If this pass does not preserve anlysis that is used by other passes |
| 676 | // managed by this manager than it is not a suiable pass for this manager. |
Devang Patel | d65e9e9 | 2006-11-08 01:31:28 +0000 | [diff] [blame] | 677 | if (!manageablePass(P)) |
Devang Patel | 3c8eb62 | 2006-11-07 22:56:50 +0000 | [diff] [blame] | 678 | return false; |
| 679 | |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 680 | addPassToManager (FP); |
Devang Patel | 0c2012f | 2006-11-07 21:49:50 +0000 | [diff] [blame] | 681 | activeBBPassManager = NULL; |
| 682 | return true; |
| 683 | } |
| 684 | |
| 685 | /// Execute all of the passes scheduled for execution by invoking |
| 686 | /// runOnFunction method. Keep track of whether any of the passes modifies |
| 687 | /// the function, and if so, return true. |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 688 | bool FunctionPassManagerImpl_New::runOnModule(Module &M) { |
Devang Patel | 0c2012f | 2006-11-07 21:49:50 +0000 | [diff] [blame] | 689 | |
| 690 | bool Changed = false; |
Devang Patel | a6b6dcb | 2006-12-07 18:41:09 +0000 | [diff] [blame] | 691 | initializeAnalysisInfo(); |
Devang Patel | 050ec72 | 2006-11-14 01:23:29 +0000 | [diff] [blame] | 692 | |
Devang Patel | 0c2012f | 2006-11-07 21:49:50 +0000 | [diff] [blame] | 693 | for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 694 | for (std::vector<Pass *>::iterator itr = passVectorBegin(), |
| 695 | e = passVectorEnd(); itr != e; ++itr) { |
Devang Patel | 0c2012f | 2006-11-07 21:49:50 +0000 | [diff] [blame] | 696 | Pass *P = *itr; |
Devang Patel | 050ec72 | 2006-11-14 01:23:29 +0000 | [diff] [blame] | 697 | |
Devang Patel | e9976aa | 2006-12-07 19:33:53 +0000 | [diff] [blame] | 698 | recordAvailableAnalysis(P); |
Devang Patel | 0c2012f | 2006-11-07 21:49:50 +0000 | [diff] [blame] | 699 | FunctionPass *FP = dynamic_cast<FunctionPass*>(P); |
| 700 | Changed |= FP->runOnFunction(*I); |
Devang Patel | 050ec72 | 2006-11-14 01:23:29 +0000 | [diff] [blame] | 701 | removeNotPreservedAnalysis(P); |
Devang Patel | ca18926 | 2006-11-14 03:05:08 +0000 | [diff] [blame] | 702 | removeDeadPasses(P); |
Devang Patel | 0c2012f | 2006-11-07 21:49:50 +0000 | [diff] [blame] | 703 | } |
| 704 | return Changed; |
| 705 | } |
| 706 | |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 707 | /// Execute all of the passes scheduled for execution by invoking |
| 708 | /// runOnFunction method. Keep track of whether any of the passes modifies |
| 709 | /// the function, and if so, return true. |
| 710 | bool FunctionPassManagerImpl_New::runOnFunction(Function &F) { |
| 711 | |
| 712 | bool Changed = false; |
Devang Patel | a6b6dcb | 2006-12-07 18:41:09 +0000 | [diff] [blame] | 713 | initializeAnalysisInfo(); |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 714 | |
| 715 | for (std::vector<Pass *>::iterator itr = passVectorBegin(), |
| 716 | e = passVectorEnd(); itr != e; ++itr) { |
| 717 | Pass *P = *itr; |
| 718 | |
Devang Patel | e9976aa | 2006-12-07 19:33:53 +0000 | [diff] [blame] | 719 | recordAvailableAnalysis(P); |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 720 | FunctionPass *FP = dynamic_cast<FunctionPass*>(P); |
| 721 | Changed |= FP->runOnFunction(F); |
| 722 | removeNotPreservedAnalysis(P); |
| 723 | removeDeadPasses(P); |
| 724 | } |
| 725 | return Changed; |
| 726 | } |
| 727 | |
| 728 | |
Devang Patel | ebba970 | 2006-11-13 22:40:09 +0000 | [diff] [blame] | 729 | /// Return true IFF AnalysisID AID is currently available. |
Devang Patel | 3f0832a | 2006-11-14 02:54:23 +0000 | [diff] [blame] | 730 | Pass *FunctionPassManagerImpl_New::getAnalysisPassFromManager(AnalysisID AID) { |
Devang Patel | ebba970 | 2006-11-13 22:40:09 +0000 | [diff] [blame] | 731 | |
Devang Patel | 3f0832a | 2006-11-14 02:54:23 +0000 | [diff] [blame] | 732 | Pass *P = getAnalysisPass(AID); |
| 733 | if (P) |
| 734 | return P; |
Devang Patel | ebba970 | 2006-11-13 22:40:09 +0000 | [diff] [blame] | 735 | |
| 736 | if (activeBBPassManager && |
Devang Patel | f60b5d9 | 2006-11-14 01:59:59 +0000 | [diff] [blame] | 737 | activeBBPassManager->getAnalysisPass(AID) != 0) |
Devang Patel | 3f0832a | 2006-11-14 02:54:23 +0000 | [diff] [blame] | 738 | return activeBBPassManager->getAnalysisPass(AID); |
Devang Patel | ebba970 | 2006-11-13 22:40:09 +0000 | [diff] [blame] | 739 | |
| 740 | // TODO : Check inactive managers |
Devang Patel | 3f0832a | 2006-11-14 02:54:23 +0000 | [diff] [blame] | 741 | return NULL; |
Devang Patel | ebba970 | 2006-11-13 22:40:09 +0000 | [diff] [blame] | 742 | } |
Devang Patel | 0c2012f | 2006-11-07 21:49:50 +0000 | [diff] [blame] | 743 | |
Devang Patel | ff631ae | 2006-11-15 01:27:05 +0000 | [diff] [blame] | 744 | inline bool FunctionPassManagerImpl_New::doInitialization(Module &M) { |
| 745 | bool Changed = false; |
| 746 | |
| 747 | for (std::vector<Pass *>::iterator itr = passVectorBegin(), |
| 748 | e = passVectorEnd(); itr != e; ++itr) { |
| 749 | Pass *P = *itr; |
| 750 | |
| 751 | FunctionPass *FP = dynamic_cast<FunctionPass*>(P); |
| 752 | Changed |= FP->doInitialization(M); |
| 753 | } |
| 754 | |
| 755 | return Changed; |
| 756 | } |
| 757 | |
| 758 | inline bool FunctionPassManagerImpl_New::doFinalization(Module &M) { |
| 759 | bool Changed = false; |
| 760 | |
| 761 | for (std::vector<Pass *>::iterator itr = passVectorBegin(), |
| 762 | e = passVectorEnd(); itr != e; ++itr) { |
| 763 | Pass *P = *itr; |
| 764 | |
| 765 | FunctionPass *FP = dynamic_cast<FunctionPass*>(P); |
| 766 | Changed |= FP->doFinalization(M); |
| 767 | } |
| 768 | |
| 769 | |
| 770 | return Changed; |
| 771 | } |
| 772 | |
Devang Patel | a1514cb | 2006-12-07 19:39:39 +0000 | [diff] [blame] | 773 | //===----------------------------------------------------------------------===// |
Devang Patel | 05e1a97 | 2006-11-07 22:03:15 +0000 | [diff] [blame] | 774 | // ModulePassManager implementation |
| 775 | |
| 776 | /// Add P into pass vector if it is manageble. If P is a FunctionPass |
Devang Patel | 4e12f86 | 2006-11-08 10:44:40 +0000 | [diff] [blame] | 777 | /// then use FunctionPassManagerImpl_New to manage it. Return false if P |
Devang Patel | 05e1a97 | 2006-11-07 22:03:15 +0000 | [diff] [blame] | 778 | /// is not manageable by this manager. |
| 779 | bool |
Devang Patel | d65e9e9 | 2006-11-08 01:31:28 +0000 | [diff] [blame] | 780 | ModulePassManager_New::addPass(Pass *P) { |
Devang Patel | 05e1a97 | 2006-11-07 22:03:15 +0000 | [diff] [blame] | 781 | |
| 782 | // If P is FunctionPass then use function pass maanager. |
| 783 | if (FunctionPass *FP = dynamic_cast<FunctionPass*>(P)) { |
| 784 | |
| 785 | activeFunctionPassManager = NULL; |
| 786 | |
| 787 | if (!activeFunctionPassManager |
| 788 | || !activeFunctionPassManager->addPass(P)) { |
| 789 | |
Devang Patel | 4e12f86 | 2006-11-08 10:44:40 +0000 | [diff] [blame] | 790 | activeFunctionPassManager = new FunctionPassManagerImpl_New(); |
Devang Patel | 90b05e0 | 2006-11-11 02:04:19 +0000 | [diff] [blame] | 791 | addPassToManager(activeFunctionPassManager, false); |
Devang Patel | d65e9e9 | 2006-11-08 01:31:28 +0000 | [diff] [blame] | 792 | if (!activeFunctionPassManager->addPass(FP)) |
| 793 | assert(0 && "Unable to add pass"); |
Devang Patel | 05e1a97 | 2006-11-07 22:03:15 +0000 | [diff] [blame] | 794 | } |
| 795 | return true; |
| 796 | } |
| 797 | |
| 798 | ModulePass *MP = dynamic_cast<ModulePass *>(P); |
| 799 | if (!MP) |
| 800 | return false; |
| 801 | |
Devang Patel | 3c8eb62 | 2006-11-07 22:56:50 +0000 | [diff] [blame] | 802 | // If this pass does not preserve anlysis that is used by other passes |
| 803 | // managed by this manager than it is not a suiable pass for this manager. |
Devang Patel | d65e9e9 | 2006-11-08 01:31:28 +0000 | [diff] [blame] | 804 | if (!manageablePass(P)) |
Devang Patel | 3c8eb62 | 2006-11-07 22:56:50 +0000 | [diff] [blame] | 805 | return false; |
| 806 | |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 807 | addPassToManager(MP); |
Devang Patel | 05e1a97 | 2006-11-07 22:03:15 +0000 | [diff] [blame] | 808 | activeFunctionPassManager = NULL; |
| 809 | return true; |
| 810 | } |
| 811 | |
| 812 | |
| 813 | /// Execute all of the passes scheduled for execution by invoking |
| 814 | /// runOnModule method. Keep track of whether any of the passes modifies |
| 815 | /// the module, and if so, return true. |
| 816 | bool |
| 817 | ModulePassManager_New::runOnModule(Module &M) { |
| 818 | bool Changed = false; |
Devang Patel | a6b6dcb | 2006-12-07 18:41:09 +0000 | [diff] [blame] | 819 | initializeAnalysisInfo(); |
Devang Patel | 050ec72 | 2006-11-14 01:23:29 +0000 | [diff] [blame] | 820 | |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 821 | for (std::vector<Pass *>::iterator itr = passVectorBegin(), |
| 822 | e = passVectorEnd(); itr != e; ++itr) { |
Devang Patel | 05e1a97 | 2006-11-07 22:03:15 +0000 | [diff] [blame] | 823 | Pass *P = *itr; |
Devang Patel | 050ec72 | 2006-11-14 01:23:29 +0000 | [diff] [blame] | 824 | |
Devang Patel | e9976aa | 2006-12-07 19:33:53 +0000 | [diff] [blame] | 825 | recordAvailableAnalysis(P); |
Devang Patel | 05e1a97 | 2006-11-07 22:03:15 +0000 | [diff] [blame] | 826 | ModulePass *MP = dynamic_cast<ModulePass*>(P); |
| 827 | Changed |= MP->runOnModule(M); |
Devang Patel | 050ec72 | 2006-11-14 01:23:29 +0000 | [diff] [blame] | 828 | removeNotPreservedAnalysis(P); |
Devang Patel | ca18926 | 2006-11-14 03:05:08 +0000 | [diff] [blame] | 829 | removeDeadPasses(P); |
Devang Patel | 05e1a97 | 2006-11-07 22:03:15 +0000 | [diff] [blame] | 830 | } |
| 831 | return Changed; |
| 832 | } |
| 833 | |
Devang Patel | ebba970 | 2006-11-13 22:40:09 +0000 | [diff] [blame] | 834 | /// Return true IFF AnalysisID AID is currently available. |
Devang Patel | 3f0832a | 2006-11-14 02:54:23 +0000 | [diff] [blame] | 835 | Pass *ModulePassManager_New::getAnalysisPassFromManager(AnalysisID AID) { |
Devang Patel | ebba970 | 2006-11-13 22:40:09 +0000 | [diff] [blame] | 836 | |
Devang Patel | 3f0832a | 2006-11-14 02:54:23 +0000 | [diff] [blame] | 837 | |
| 838 | Pass *P = getAnalysisPass(AID); |
| 839 | if (P) |
| 840 | return P; |
Devang Patel | ebba970 | 2006-11-13 22:40:09 +0000 | [diff] [blame] | 841 | |
| 842 | if (activeFunctionPassManager && |
Devang Patel | f60b5d9 | 2006-11-14 01:59:59 +0000 | [diff] [blame] | 843 | activeFunctionPassManager->getAnalysisPass(AID) != 0) |
Devang Patel | 3f0832a | 2006-11-14 02:54:23 +0000 | [diff] [blame] | 844 | return activeFunctionPassManager->getAnalysisPass(AID); |
Devang Patel | ebba970 | 2006-11-13 22:40:09 +0000 | [diff] [blame] | 845 | |
| 846 | // TODO : Check inactive managers |
Devang Patel | 3f0832a | 2006-11-14 02:54:23 +0000 | [diff] [blame] | 847 | return NULL; |
Devang Patel | ebba970 | 2006-11-13 22:40:09 +0000 | [diff] [blame] | 848 | } |
| 849 | |
Devang Patel | a1514cb | 2006-12-07 19:39:39 +0000 | [diff] [blame] | 850 | //===----------------------------------------------------------------------===// |
| 851 | // PassManagerImpl implementation |
| 852 | |
Devang Patel | ebba970 | 2006-11-13 22:40:09 +0000 | [diff] [blame] | 853 | /// Return true IFF AnalysisID AID is currently available. |
Devang Patel | 3f0832a | 2006-11-14 02:54:23 +0000 | [diff] [blame] | 854 | Pass *PassManagerImpl_New::getAnalysisPassFromManager(AnalysisID AID) { |
Devang Patel | ebba970 | 2006-11-13 22:40:09 +0000 | [diff] [blame] | 855 | |
Devang Patel | 3f0832a | 2006-11-14 02:54:23 +0000 | [diff] [blame] | 856 | Pass *P = NULL; |
Devang Patel | 7086844 | 2006-11-13 22:53:19 +0000 | [diff] [blame] | 857 | for (std::vector<ModulePassManager_New *>::iterator itr = PassManagers.begin(), |
Devang Patel | 3f0832a | 2006-11-14 02:54:23 +0000 | [diff] [blame] | 858 | e = PassManagers.end(); !P && itr != e; ++itr) |
| 859 | P = (*itr)->getAnalysisPassFromManager(AID); |
| 860 | return P; |
Devang Patel | ebba970 | 2006-11-13 22:40:09 +0000 | [diff] [blame] | 861 | } |
| 862 | |
Devang Patel | c290c8a | 2006-11-07 22:23:34 +0000 | [diff] [blame] | 863 | /// Add pass P to the queue of passes to run. |
Devang Patel | 1a6eaa4 | 2006-11-11 02:22:31 +0000 | [diff] [blame] | 864 | void PassManagerImpl_New::add(Pass *P) { |
| 865 | // Do not process Analysis now. Analysis is process while scheduling |
| 866 | // the pass vector. |
Devang Patel | db789fb | 2006-11-11 02:06:21 +0000 | [diff] [blame] | 867 | addPassToManager(P, false); |
Devang Patel | c290c8a | 2006-11-07 22:23:34 +0000 | [diff] [blame] | 868 | } |
| 869 | |
| 870 | // PassManager_New implementation |
| 871 | /// Add P into active pass manager or use new module pass manager to |
| 872 | /// manage it. |
Devang Patel | 1a6eaa4 | 2006-11-11 02:22:31 +0000 | [diff] [blame] | 873 | bool PassManagerImpl_New::addPass(Pass *P) { |
Devang Patel | c290c8a | 2006-11-07 22:23:34 +0000 | [diff] [blame] | 874 | |
Devang Patel | 6c9f548 | 2006-11-11 00:42:16 +0000 | [diff] [blame] | 875 | if (!activeManager || !activeManager->addPass(P)) { |
Devang Patel | c290c8a | 2006-11-07 22:23:34 +0000 | [diff] [blame] | 876 | activeManager = new ModulePassManager_New(); |
| 877 | PassManagers.push_back(activeManager); |
| 878 | } |
| 879 | |
| 880 | return activeManager->addPass(P); |
| 881 | } |
| 882 | |
| 883 | /// run - Execute all of the passes scheduled for execution. Keep track of |
| 884 | /// whether any of the passes modifies the module, and if so, return true. |
Devang Patel | 1a6eaa4 | 2006-11-11 02:22:31 +0000 | [diff] [blame] | 885 | bool PassManagerImpl_New::run(Module &M) { |
Devang Patel | c290c8a | 2006-11-07 22:23:34 +0000 | [diff] [blame] | 886 | |
Devang Patel | c290c8a | 2006-11-07 22:23:34 +0000 | [diff] [blame] | 887 | bool Changed = false; |
| 888 | for (std::vector<ModulePassManager_New *>::iterator itr = PassManagers.begin(), |
| 889 | e = PassManagers.end(); itr != e; ++itr) { |
| 890 | ModulePassManager_New *pm = *itr; |
| 891 | Changed |= pm->runOnModule(M); |
| 892 | } |
| 893 | return Changed; |
| 894 | } |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 895 | |
Devang Patel | a1514cb | 2006-12-07 19:39:39 +0000 | [diff] [blame] | 896 | //===----------------------------------------------------------------------===// |
| 897 | // PassManager implementation |
| 898 | |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 899 | /// Create new pass manager |
| 900 | PassManager_New::PassManager_New() { |
| 901 | PM = new PassManagerImpl_New(); |
| 902 | } |
| 903 | |
| 904 | /// add - Add a pass to the queue of passes to run. This passes ownership of |
| 905 | /// the Pass to the PassManager. When the PassManager is destroyed, the pass |
| 906 | /// will be destroyed as well, so there is no need to delete the pass. This |
| 907 | /// implies that all passes MUST be allocated with 'new'. |
| 908 | void |
| 909 | PassManager_New::add(Pass *P) { |
| 910 | PM->add(P); |
| 911 | } |
| 912 | |
| 913 | /// run - Execute all of the passes scheduled for execution. Keep track of |
| 914 | /// whether any of the passes modifies the module, and if so, return true. |
| 915 | bool |
| 916 | PassManager_New::run(Module &M) { |
| 917 | return PM->run(M); |
| 918 | } |
| 919 | |