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