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. |
Devang Patel | df6c9ae | 2006-12-08 22:34:02 +0000 | [diff] [blame] | 109 | void schedulePass(Pass *P); |
Devang Patel | f33f3eb | 2006-12-07 19:21:29 +0000 | [diff] [blame] | 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 | |
Devang Patel | 640c5bb | 2006-12-08 22:30:11 +0000 | [diff] [blame] | 121 | /// Find the pass that implements Analysis AID. Search immutable |
| 122 | /// passes and all pass managers. If desired pass is not found |
| 123 | /// then return NULL. |
| 124 | Pass *findAnalysisPass(AnalysisID AID); |
| 125 | |
Devang Patel | f33f3eb | 2006-12-07 19:21:29 +0000 | [diff] [blame] | 126 | virtual ~PMTopLevelManager() { |
| 127 | PassManagers.clear(); |
| 128 | } |
| 129 | |
Devang Patel | e0eb9d8 | 2006-12-07 20:51:18 +0000 | [diff] [blame] | 130 | /// Add immutable pass and initialize it. |
| 131 | inline void addImmutablePass(ImmutablePass *P) { |
| 132 | P->initializePass(); |
| 133 | ImmutablePasses.push_back(P); |
| 134 | } |
| 135 | |
| 136 | inline std::vector<ImmutablePass *>& getImmutablePasses() { |
| 137 | return ImmutablePasses; |
| 138 | } |
| 139 | |
Devang Patel | 5bbeb49 | 2006-12-08 22:47:25 +0000 | [diff] [blame] | 140 | void addPassManager(Pass *Manager) { |
| 141 | PassManagers.push_back(Manager); |
| 142 | } |
| 143 | |
Devang Patel | f33f3eb | 2006-12-07 19:21:29 +0000 | [diff] [blame] | 144 | private: |
| 145 | |
| 146 | /// Collection of pass managers |
| 147 | std::vector<Pass *> PassManagers; |
| 148 | |
| 149 | // Map to keep track of last user of the analysis pass. |
| 150 | // LastUser->second is the last user of Lastuser->first. |
| 151 | std::map<Pass *, Pass *> LastUser; |
Devang Patel | e0eb9d8 | 2006-12-07 20:51:18 +0000 | [diff] [blame] | 152 | |
| 153 | /// Immutable passes are managed by top level manager. |
| 154 | std::vector<ImmutablePass *> ImmutablePasses; |
Devang Patel | f33f3eb | 2006-12-07 19:21:29 +0000 | [diff] [blame] | 155 | }; |
| 156 | |
| 157 | /// Set pass P as the last user of the given analysis passes. |
| 158 | void PMTopLevelManager::setLastUser(std::vector<Pass *> &AnalysisPasses, |
| 159 | Pass *P) { |
| 160 | |
| 161 | for (std::vector<Pass *>::iterator I = AnalysisPasses.begin(), |
| 162 | E = AnalysisPasses.end(); I != E; ++I) { |
| 163 | Pass *AP = *I; |
| 164 | LastUser[AP] = P; |
| 165 | // If AP is the last user of other passes then make P last user of |
| 166 | // such passes. |
| 167 | for (std::map<Pass *, Pass *>::iterator LUI = LastUser.begin(), |
| 168 | LUE = LastUser.end(); LUI != LUE; ++LUI) { |
| 169 | if (LUI->second == AP) |
| 170 | LastUser[LUI->first] = P; |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | } |
| 175 | |
| 176 | /// Collect passes whose last user is P |
| 177 | void PMTopLevelManager::collectLastUses(std::vector<Pass *> &LastUses, |
| 178 | Pass *P) { |
| 179 | for (std::map<Pass *, Pass *>::iterator LUI = LastUser.begin(), |
| 180 | LUE = LastUser.end(); LUI != LUE; ++LUI) |
| 181 | if (LUI->second == P) |
| 182 | LastUses.push_back(LUI->first); |
| 183 | } |
| 184 | |
Devang Patel | de12418 | 2006-12-07 21:10:57 +0000 | [diff] [blame] | 185 | /// Schedule pass P for execution. Make sure that passes required by |
| 186 | /// P are run before P is run. Update analysis info maintained by |
| 187 | /// the manager. Remove dead passes. This is a recursive function. |
Devang Patel | df6c9ae | 2006-12-08 22:34:02 +0000 | [diff] [blame] | 188 | void PMTopLevelManager::schedulePass(Pass *P) { |
Devang Patel | de12418 | 2006-12-07 21:10:57 +0000 | [diff] [blame] | 189 | |
| 190 | // TODO : Allocate function manager for this pass, other wise required set |
| 191 | // may be inserted into previous function manager |
| 192 | |
| 193 | AnalysisUsage AnUsage; |
| 194 | P->getAnalysisUsage(AnUsage); |
| 195 | const std::vector<AnalysisID> &RequiredSet = AnUsage.getRequiredSet(); |
| 196 | for (std::vector<AnalysisID>::const_iterator I = RequiredSet.begin(), |
| 197 | E = RequiredSet.end(); I != E; ++I) { |
| 198 | |
Devang Patel | 640c5bb | 2006-12-08 22:30:11 +0000 | [diff] [blame] | 199 | Pass *AnalysisPass = findAnalysisPass(*I); |
Devang Patel | de12418 | 2006-12-07 21:10:57 +0000 | [diff] [blame] | 200 | if (!AnalysisPass) { |
| 201 | // Schedule this analysis run first. |
| 202 | AnalysisPass = (*I)->createPass(); |
Devang Patel | df6c9ae | 2006-12-08 22:34:02 +0000 | [diff] [blame] | 203 | schedulePass(AnalysisPass); |
Devang Patel | de12418 | 2006-12-07 21:10:57 +0000 | [diff] [blame] | 204 | } |
| 205 | } |
| 206 | |
| 207 | // Now all required passes are available. |
| 208 | addTopLevelPass(P); |
| 209 | } |
| 210 | |
Devang Patel | 640c5bb | 2006-12-08 22:30:11 +0000 | [diff] [blame] | 211 | /// Find the pass that implements Analysis AID. Search immutable |
| 212 | /// passes and all pass managers. If desired pass is not found |
| 213 | /// then return NULL. |
| 214 | Pass *PMTopLevelManager::findAnalysisPass(AnalysisID AID) { |
| 215 | |
| 216 | Pass *P = NULL; |
| 217 | for (std::vector<ImmutablePass *>::iterator I = ImmutablePasses.begin(), |
| 218 | E = ImmutablePasses.end(); P == NULL && I != E; ++I) { |
| 219 | const PassInfo *PI = (*I)->getPassInfo(); |
| 220 | if (PI == AID) |
| 221 | P = *I; |
| 222 | |
| 223 | // If Pass not found then check the interfaces implemented by Immutable Pass |
| 224 | if (!P) { |
| 225 | const std::vector<const PassInfo*> &ImmPI = |
| 226 | PI->getInterfacesImplemented(); |
| 227 | for (unsigned Index = 0, End = ImmPI.size(); |
| 228 | P == NULL && Index != End; ++Index) |
| 229 | if (ImmPI[Index] == AID) |
| 230 | P = *I; |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | if (P) |
| 235 | return P; |
| 236 | |
| 237 | // Check pass managers; |
| 238 | for (std::vector<Pass *>::iterator I = PassManagers.begin(), |
| 239 | E = PassManagers.end(); P == NULL && I != E; ++I) |
| 240 | P = NULL; // FIXME: (*I)->findAnalysisPass(AID, false /* Search downward */); |
| 241 | |
| 242 | return P; |
| 243 | } |
| 244 | |
Devang Patel | f3827bc | 2006-12-07 19:54:15 +0000 | [diff] [blame] | 245 | //===----------------------------------------------------------------------===// |
| 246 | // PMDataManager |
Devang Patel | f33f3eb | 2006-12-07 19:21:29 +0000 | [diff] [blame] | 247 | |
Devang Patel | dbe4a1e | 2006-12-07 18:36:24 +0000 | [diff] [blame] | 248 | /// PMDataManager provides the common place to manage the analysis data |
| 249 | /// used by pass managers. |
| 250 | class PMDataManager { |
Devang Patel | a984459 | 2006-11-11 01:31:05 +0000 | [diff] [blame] | 251 | |
| 252 | public: |
| 253 | |
Devang Patel | 4c36e6b | 2006-12-07 23:24:58 +0000 | [diff] [blame] | 254 | PMDataManager(int D) : TPM(NULL), Depth(D) { |
Devang Patel | f3827bc | 2006-12-07 19:54:15 +0000 | [diff] [blame] | 255 | initializeAnalysisInfo(); |
| 256 | } |
| 257 | |
Devang Patel | a984459 | 2006-11-11 01:31:05 +0000 | [diff] [blame] | 258 | /// Return true IFF pass P's required analysis set does not required new |
| 259 | /// manager. |
| 260 | bool manageablePass(Pass *P); |
| 261 | |
Devang Patel | a984459 | 2006-11-11 01:31:05 +0000 | [diff] [blame] | 262 | /// Augment AvailableAnalysis by adding analysis made available by pass P. |
Devang Patel | e9976aa | 2006-12-07 19:33:53 +0000 | [diff] [blame] | 263 | void recordAvailableAnalysis(Pass *P); |
Devang Patel | a984459 | 2006-11-11 01:31:05 +0000 | [diff] [blame] | 264 | |
Devang Patel | a984459 | 2006-11-11 01:31:05 +0000 | [diff] [blame] | 265 | /// Remove Analysis that is not preserved by the pass |
| 266 | void removeNotPreservedAnalysis(Pass *P); |
| 267 | |
| 268 | /// Remove dead passes |
Devang Patel | ca18926 | 2006-11-14 03:05:08 +0000 | [diff] [blame] | 269 | void removeDeadPasses(Pass *P); |
Devang Patel | a984459 | 2006-11-11 01:31:05 +0000 | [diff] [blame] | 270 | |
Devang Patel | 8f677ce | 2006-12-07 18:47:25 +0000 | [diff] [blame] | 271 | /// Add pass P into the PassVector. Update |
Devang Patel | 90b05e0 | 2006-11-11 02:04:19 +0000 | [diff] [blame] | 272 | /// AvailableAnalysis appropriately if ProcessAnalysis is true. |
| 273 | void addPassToManager (Pass *P, bool ProcessAnalysis = true); |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 274 | |
Devang Patel | 1d6267c | 2006-12-07 23:05:44 +0000 | [diff] [blame] | 275 | /// Initialize available analysis information. |
Devang Patel | a6b6dcb | 2006-12-07 18:41:09 +0000 | [diff] [blame] | 276 | void initializeAnalysisInfo() { |
Devang Patel | bc03f13 | 2006-12-07 23:55:10 +0000 | [diff] [blame] | 277 | ForcedLastUses.clear(); |
Devang Patel | 050ec72 | 2006-11-14 01:23:29 +0000 | [diff] [blame] | 278 | AvailableAnalysis.clear(); |
Devang Patel | b390032 | 2006-12-07 21:02:08 +0000 | [diff] [blame] | 279 | |
| 280 | // Include immutable passes into AvailableAnalysis vector. |
| 281 | std::vector<ImmutablePass *> &ImmutablePasses = TPM->getImmutablePasses(); |
| 282 | for (std::vector<ImmutablePass *>::iterator I = ImmutablePasses.begin(), |
| 283 | E = ImmutablePasses.end(); I != E; ++I) |
| 284 | recordAvailableAnalysis(*I); |
Devang Patel | 050ec72 | 2006-11-14 01:23:29 +0000 | [diff] [blame] | 285 | } |
| 286 | |
Devang Patel | 1d6267c | 2006-12-07 23:05:44 +0000 | [diff] [blame] | 287 | /// Populate RequiredPasses with the analysis pass that are required by |
| 288 | /// pass P. |
| 289 | void collectRequiredAnalysisPasses(std::vector<Pass *> &RequiredPasses, |
| 290 | Pass *P); |
| 291 | |
| 292 | /// All Required analyses should be available to the pass as it runs! Here |
| 293 | /// we fill in the AnalysisImpls member of the pass so that it can |
| 294 | /// successfully use the getAnalysis() method to retrieve the |
| 295 | /// implementations it needs. |
| 296 | void initializeAnalysisImpl(Pass *P); |
Devang Patel | f60b5d9 | 2006-11-14 01:59:59 +0000 | [diff] [blame] | 297 | |
Devang Patel | 640c5bb | 2006-12-08 22:30:11 +0000 | [diff] [blame] | 298 | /// Find the pass that implements Analysis AID. If desired pass is not found |
| 299 | /// then return NULL. |
| 300 | Pass *findAnalysisPass(AnalysisID AID, bool Direction); |
| 301 | |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 302 | inline std::vector<Pass *>::iterator passVectorBegin() { |
| 303 | return PassVector.begin(); |
| 304 | } |
| 305 | |
| 306 | inline std::vector<Pass *>::iterator passVectorEnd() { |
| 307 | return PassVector.end(); |
| 308 | } |
| 309 | |
Devang Patel | f3827bc | 2006-12-07 19:54:15 +0000 | [diff] [blame] | 310 | // Access toplevel manager |
| 311 | PMTopLevelManager *getTopLevelManager() { return TPM; } |
| 312 | void setTopLevelManager(PMTopLevelManager *T) { TPM = T; } |
| 313 | |
Devang Patel | 4c36e6b | 2006-12-07 23:24:58 +0000 | [diff] [blame] | 314 | unsigned getDepth() { return Depth; } |
| 315 | |
Devang Patel | bc03f13 | 2006-12-07 23:55:10 +0000 | [diff] [blame] | 316 | protected: |
| 317 | |
| 318 | // Collection of pass whose last user asked this manager to claim |
| 319 | // last use. If a FunctionPass F is the last user of ModulePass info M |
| 320 | // then the F's manager, not F, records itself as a last user of M. |
| 321 | std::vector<Pass *> ForcedLastUses; |
| 322 | |
| 323 | // Top level manager. |
| 324 | // TODO : Make it a reference. |
| 325 | PMTopLevelManager *TPM; |
| 326 | |
Devang Patel | a984459 | 2006-11-11 01:31:05 +0000 | [diff] [blame] | 327 | private: |
Devang Patel | dafa4dd | 2006-11-14 00:03:04 +0000 | [diff] [blame] | 328 | // Set of available Analysis. This information is used while scheduling |
| 329 | // pass. If a pass requires an analysis which is not not available then |
| 330 | // equired analysis pass is scheduled to run before the pass itself is |
| 331 | // scheduled to run. |
Devang Patel | f60b5d9 | 2006-11-14 01:59:59 +0000 | [diff] [blame] | 332 | std::map<AnalysisID, Pass*> AvailableAnalysis; |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 333 | |
| 334 | // Collection of pass that are managed by this manager |
| 335 | std::vector<Pass *> PassVector; |
Devang Patel | f3827bc | 2006-12-07 19:54:15 +0000 | [diff] [blame] | 336 | |
Devang Patel | 4c36e6b | 2006-12-07 23:24:58 +0000 | [diff] [blame] | 337 | unsigned Depth; |
Devang Patel | a984459 | 2006-11-11 01:31:05 +0000 | [diff] [blame] | 338 | }; |
| 339 | |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 340 | /// BasicBlockPassManager_New manages BasicBlockPass. It batches all the |
| 341 | /// pass together and sequence them to process one basic block before |
| 342 | /// processing next basic block. |
Devang Patel | dbe4a1e | 2006-12-07 18:36:24 +0000 | [diff] [blame] | 343 | class BasicBlockPassManager_New : public PMDataManager, |
Devang Patel | 42add71 | 2006-11-15 01:11:27 +0000 | [diff] [blame] | 344 | public FunctionPass { |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 345 | |
| 346 | public: |
Devang Patel | 4c36e6b | 2006-12-07 23:24:58 +0000 | [diff] [blame] | 347 | BasicBlockPassManager_New(int D) : PMDataManager(D) { } |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 348 | |
| 349 | /// Add a pass into a passmanager queue. |
| 350 | bool addPass(Pass *p); |
| 351 | |
| 352 | /// Execute all of the passes scheduled for execution. Keep track of |
| 353 | /// whether any of the passes modifies the function, and if so, return true. |
| 354 | bool runOnFunction(Function &F); |
| 355 | |
Devang Patel | f9d96b9 | 2006-12-07 19:57:52 +0000 | [diff] [blame] | 356 | /// Pass Manager itself does not invalidate any analysis info. |
| 357 | void getAnalysisUsage(AnalysisUsage &Info) const { |
| 358 | Info.setPreservesAll(); |
| 359 | } |
| 360 | |
Devang Patel | 475c453 | 2006-12-08 00:59:05 +0000 | [diff] [blame] | 361 | bool doInitialization(Module &M); |
| 362 | bool doInitialization(Function &F); |
| 363 | bool doFinalization(Module &M); |
| 364 | bool doFinalization(Function &F); |
| 365 | |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 366 | }; |
| 367 | |
Devang Patel | 4e12f86 | 2006-11-08 10:44:40 +0000 | [diff] [blame] | 368 | /// FunctionPassManagerImpl_New manages FunctionPasses and BasicBlockPassManagers. |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 369 | /// It batches all function passes and basic block pass managers together and |
| 370 | /// sequence them to process one function at a time before processing next |
| 371 | /// function. |
Devang Patel | abcd1d3 | 2006-12-07 21:27:23 +0000 | [diff] [blame] | 372 | class FunctionPassManagerImpl_New : public ModulePass, |
| 373 | public PMDataManager, |
| 374 | public PMTopLevelManager { |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 375 | public: |
Devang Patel | 4c36e6b | 2006-12-07 23:24:58 +0000 | [diff] [blame] | 376 | FunctionPassManagerImpl_New(ModuleProvider *P, int D) : |
| 377 | PMDataManager(D) { /* TODO */ } |
| 378 | FunctionPassManagerImpl_New(int D) : PMDataManager(D) { |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 379 | activeBBPassManager = NULL; |
| 380 | } |
Devang Patel | 4e12f86 | 2006-11-08 10:44:40 +0000 | [diff] [blame] | 381 | ~FunctionPassManagerImpl_New() { /* TODO */ }; |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 382 | |
Devang Patel | abcd1d3 | 2006-12-07 21:27:23 +0000 | [diff] [blame] | 383 | inline void addTopLevelPass(Pass *P) { |
| 384 | addPass(P); |
| 385 | } |
| 386 | |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 387 | /// add - Add a pass to the queue of passes to run. This passes |
| 388 | /// ownership of the Pass to the PassManager. When the |
| 389 | /// PassManager_X is destroyed, the pass will be destroyed as well, so |
| 390 | /// there is no need to delete the pass. (TODO delete passes.) |
| 391 | /// This implies that all passes MUST be allocated with 'new'. |
Devang Patel | 31217af | 2006-12-07 21:32:57 +0000 | [diff] [blame] | 392 | void add(Pass *P) { |
Devang Patel | df6c9ae | 2006-12-08 22:34:02 +0000 | [diff] [blame] | 393 | schedulePass(P); |
Devang Patel | 31217af | 2006-12-07 21:32:57 +0000 | [diff] [blame] | 394 | } |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 395 | |
| 396 | /// Add pass into the pass manager queue. |
| 397 | bool addPass(Pass *P); |
| 398 | |
| 399 | /// Execute all of the passes scheduled for execution. Keep |
| 400 | /// track of whether any of the passes modifies the function, and if |
| 401 | /// so, return true. |
| 402 | bool runOnModule(Module &M); |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 403 | bool runOnFunction(Function &F); |
Devang Patel | 272908d | 2006-12-08 22:57:48 +0000 | [diff] [blame^] | 404 | bool run(Function &F); |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 405 | |
Devang Patel | ff631ae | 2006-11-15 01:27:05 +0000 | [diff] [blame] | 406 | /// doInitialization - Run all of the initializers for the function passes. |
| 407 | /// |
| 408 | bool doInitialization(Module &M); |
| 409 | |
| 410 | /// doFinalization - Run all of the initializers for the function passes. |
| 411 | /// |
| 412 | bool doFinalization(Module &M); |
Devang Patel | f9d96b9 | 2006-12-07 19:57:52 +0000 | [diff] [blame] | 413 | |
| 414 | /// Pass Manager itself does not invalidate any analysis info. |
| 415 | void getAnalysisUsage(AnalysisUsage &Info) const { |
| 416 | Info.setPreservesAll(); |
| 417 | } |
| 418 | |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 419 | private: |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 420 | // Active Pass Managers |
| 421 | BasicBlockPassManager_New *activeBBPassManager; |
| 422 | }; |
| 423 | |
| 424 | /// ModulePassManager_New manages ModulePasses and function pass managers. |
| 425 | /// It batches all Module passes passes and function pass managers together and |
| 426 | /// sequence them to process one module. |
Devang Patel | bc03f13 | 2006-12-07 23:55:10 +0000 | [diff] [blame] | 427 | class ModulePassManager_New : public Pass, |
| 428 | public PMDataManager { |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 429 | |
| 430 | public: |
Devang Patel | 4c36e6b | 2006-12-07 23:24:58 +0000 | [diff] [blame] | 431 | ModulePassManager_New(int D) : PMDataManager(D) { |
| 432 | activeFunctionPassManager = NULL; |
| 433 | } |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 434 | |
| 435 | /// Add a pass into a passmanager queue. |
| 436 | bool addPass(Pass *p); |
| 437 | |
| 438 | /// run - Execute all of the passes scheduled for execution. Keep track of |
| 439 | /// whether any of the passes modifies the module, and if so, return true. |
| 440 | bool runOnModule(Module &M); |
Devang Patel | ebba970 | 2006-11-13 22:40:09 +0000 | [diff] [blame] | 441 | |
Devang Patel | f9d96b9 | 2006-12-07 19:57:52 +0000 | [diff] [blame] | 442 | /// Pass Manager itself does not invalidate any analysis info. |
| 443 | void getAnalysisUsage(AnalysisUsage &Info) const { |
| 444 | Info.setPreservesAll(); |
| 445 | } |
| 446 | |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 447 | private: |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 448 | // Active Pass Manager |
Devang Patel | 4e12f86 | 2006-11-08 10:44:40 +0000 | [diff] [blame] | 449 | FunctionPassManagerImpl_New *activeFunctionPassManager; |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 450 | }; |
| 451 | |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 452 | /// PassManager_New manages ModulePassManagers |
Devang Patel | 31217af | 2006-12-07 21:32:57 +0000 | [diff] [blame] | 453 | class PassManagerImpl_New : public Pass, |
| 454 | public PMDataManager, |
Devang Patel | abcd1d3 | 2006-12-07 21:27:23 +0000 | [diff] [blame] | 455 | public PMTopLevelManager { |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 456 | |
| 457 | public: |
| 458 | |
Devang Patel | 4c36e6b | 2006-12-07 23:24:58 +0000 | [diff] [blame] | 459 | PassManagerImpl_New(int D) : PMDataManager(D) {} |
| 460 | |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 461 | /// add - Add a pass to the queue of passes to run. This passes ownership of |
| 462 | /// the Pass to the PassManager. When the PassManager is destroyed, the pass |
| 463 | /// will be destroyed as well, so there is no need to delete the pass. This |
| 464 | /// implies that all passes MUST be allocated with 'new'. |
Devang Patel | 31217af | 2006-12-07 21:32:57 +0000 | [diff] [blame] | 465 | void add(Pass *P) { |
Devang Patel | df6c9ae | 2006-12-08 22:34:02 +0000 | [diff] [blame] | 466 | schedulePass(P); |
Devang Patel | 31217af | 2006-12-07 21:32:57 +0000 | [diff] [blame] | 467 | } |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 468 | |
| 469 | /// run - Execute all of the passes scheduled for execution. Keep track of |
| 470 | /// whether any of the passes modifies the module, and if so, return true. |
| 471 | bool run(Module &M); |
| 472 | |
Devang Patel | f9d96b9 | 2006-12-07 19:57:52 +0000 | [diff] [blame] | 473 | /// Pass Manager itself does not invalidate any analysis info. |
| 474 | void getAnalysisUsage(AnalysisUsage &Info) const { |
| 475 | Info.setPreservesAll(); |
| 476 | } |
| 477 | |
Devang Patel | abcd1d3 | 2006-12-07 21:27:23 +0000 | [diff] [blame] | 478 | inline void addTopLevelPass(Pass *P) { |
| 479 | addPass(P); |
| 480 | } |
| 481 | |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 482 | private: |
| 483 | |
Devang Patel | de12418 | 2006-12-07 21:10:57 +0000 | [diff] [blame] | 484 | /// Add a pass into a passmanager queue. |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 485 | bool addPass(Pass *p); |
| 486 | |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 487 | // Active Pass Manager |
| 488 | ModulePassManager_New *activeManager; |
| 489 | }; |
| 490 | |
Devang Patel | ca58e35 | 2006-11-08 10:05:38 +0000 | [diff] [blame] | 491 | } // End of llvm namespace |
| 492 | |
Devang Patel | a1514cb | 2006-12-07 19:39:39 +0000 | [diff] [blame] | 493 | //===----------------------------------------------------------------------===// |
Devang Patel | dbe4a1e | 2006-12-07 18:36:24 +0000 | [diff] [blame] | 494 | // PMDataManager implementation |
Devang Patel | f68a349 | 2006-11-07 22:35:17 +0000 | [diff] [blame] | 495 | |
Devang Patel | d65e9e9 | 2006-11-08 01:31:28 +0000 | [diff] [blame] | 496 | /// 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] | 497 | /// manager. |
Devang Patel | dbe4a1e | 2006-12-07 18:36:24 +0000 | [diff] [blame] | 498 | bool PMDataManager::manageablePass(Pass *P) { |
Devang Patel | f68a349 | 2006-11-07 22:35:17 +0000 | [diff] [blame] | 499 | |
Devang Patel | 8f677ce | 2006-12-07 18:47:25 +0000 | [diff] [blame] | 500 | // TODO |
| 501 | // If this pass is not preserving information that is required by a |
| 502 | // pass maintained by higher level pass manager then do not insert |
| 503 | // this pass into current manager. Use new manager. For example, |
| 504 | // For example, If FunctionPass F is not preserving ModulePass Info M1 |
| 505 | // that is used by another ModulePass M2 then do not insert F in |
| 506 | // current function pass manager. |
Devang Patel | f68a349 | 2006-11-07 22:35:17 +0000 | [diff] [blame] | 507 | return true; |
| 508 | } |
| 509 | |
Devang Patel | 643676c | 2006-11-11 01:10:19 +0000 | [diff] [blame] | 510 | /// Augement AvailableAnalysis by adding analysis made available by pass P. |
Devang Patel | e9976aa | 2006-12-07 19:33:53 +0000 | [diff] [blame] | 511 | void PMDataManager::recordAvailableAnalysis(Pass *P) { |
Devang Patel | f60b5d9 | 2006-11-14 01:59:59 +0000 | [diff] [blame] | 512 | |
Devang Patel | 643676c | 2006-11-11 01:10:19 +0000 | [diff] [blame] | 513 | if (const PassInfo *PI = P->getPassInfo()) { |
Devang Patel | f60b5d9 | 2006-11-14 01:59:59 +0000 | [diff] [blame] | 514 | AvailableAnalysis[PI] = P; |
Devang Patel | 643676c | 2006-11-11 01:10:19 +0000 | [diff] [blame] | 515 | |
Devang Patel | e9976aa | 2006-12-07 19:33:53 +0000 | [diff] [blame] | 516 | //This pass is the current implementation of all of the interfaces it |
| 517 | //implements as well. |
| 518 | const std::vector<const PassInfo*> &II = PI->getInterfacesImplemented(); |
| 519 | for (unsigned i = 0, e = II.size(); i != e; ++i) |
| 520 | AvailableAnalysis[II[i]] = P; |
Devang Patel | 643676c | 2006-11-11 01:10:19 +0000 | [diff] [blame] | 521 | } |
| 522 | } |
| 523 | |
Devang Patel | f68a349 | 2006-11-07 22:35:17 +0000 | [diff] [blame] | 524 | /// Remove Analyss not preserved by Pass P |
Devang Patel | dbe4a1e | 2006-12-07 18:36:24 +0000 | [diff] [blame] | 525 | void PMDataManager::removeNotPreservedAnalysis(Pass *P) { |
Devang Patel | 349170f | 2006-11-11 01:24:55 +0000 | [diff] [blame] | 526 | AnalysisUsage AnUsage; |
| 527 | P->getAnalysisUsage(AnUsage); |
Devang Patel | f68a349 | 2006-11-07 22:35:17 +0000 | [diff] [blame] | 528 | |
Devang Patel | 2e169c3 | 2006-12-07 20:03:49 +0000 | [diff] [blame] | 529 | if (AnUsage.getPreservesAll()) |
| 530 | return; |
| 531 | |
| 532 | const std::vector<AnalysisID> &PreservedSet = AnUsage.getPreservedSet(); |
Devang Patel | f60b5d9 | 2006-11-14 01:59:59 +0000 | [diff] [blame] | 533 | for (std::map<AnalysisID, Pass*>::iterator I = AvailableAnalysis.begin(), |
Devang Patel | 349170f | 2006-11-11 01:24:55 +0000 | [diff] [blame] | 534 | E = AvailableAnalysis.end(); I != E; ++I ) { |
Devang Patel | f60b5d9 | 2006-11-14 01:59:59 +0000 | [diff] [blame] | 535 | if (std::find(PreservedSet.begin(), PreservedSet.end(), I->first) == |
Devang Patel | 349170f | 2006-11-11 01:24:55 +0000 | [diff] [blame] | 536 | PreservedSet.end()) { |
| 537 | // Remove this analysis |
Devang Patel | f60b5d9 | 2006-11-14 01:59:59 +0000 | [diff] [blame] | 538 | std::map<AnalysisID, Pass*>::iterator J = I++; |
Devang Patel | 349170f | 2006-11-11 01:24:55 +0000 | [diff] [blame] | 539 | AvailableAnalysis.erase(J); |
| 540 | } |
| 541 | } |
Devang Patel | f68a349 | 2006-11-07 22:35:17 +0000 | [diff] [blame] | 542 | } |
| 543 | |
Devang Patel | ca18926 | 2006-11-14 03:05:08 +0000 | [diff] [blame] | 544 | /// Remove analysis passes that are not used any longer |
Devang Patel | dbe4a1e | 2006-12-07 18:36:24 +0000 | [diff] [blame] | 545 | void PMDataManager::removeDeadPasses(Pass *P) { |
Devang Patel | 17ad096 | 2006-12-08 00:37:52 +0000 | [diff] [blame] | 546 | |
| 547 | std::vector<Pass *> DeadPasses; |
| 548 | TPM->collectLastUses(DeadPasses, P); |
| 549 | |
| 550 | for (std::vector<Pass *>::iterator I = DeadPasses.begin(), |
| 551 | E = DeadPasses.end(); I != E; ++I) { |
| 552 | (*I)->releaseMemory(); |
| 553 | |
| 554 | std::map<AnalysisID, Pass*>::iterator Pos = |
| 555 | AvailableAnalysis.find((*I)->getPassInfo()); |
| 556 | |
Devang Patel | 475c453 | 2006-12-08 00:59:05 +0000 | [diff] [blame] | 557 | // It is possible that pass is already removed from the AvailableAnalysis |
Devang Patel | 17ad096 | 2006-12-08 00:37:52 +0000 | [diff] [blame] | 558 | if (Pos != AvailableAnalysis.end()) |
| 559 | AvailableAnalysis.erase(Pos); |
| 560 | } |
Devang Patel | ca18926 | 2006-11-14 03:05:08 +0000 | [diff] [blame] | 561 | } |
| 562 | |
Devang Patel | 8f677ce | 2006-12-07 18:47:25 +0000 | [diff] [blame] | 563 | /// Add pass P into the PassVector. Update |
Devang Patel | 90b05e0 | 2006-11-11 02:04:19 +0000 | [diff] [blame] | 564 | /// AvailableAnalysis appropriately if ProcessAnalysis is true. |
Devang Patel | 2e169c3 | 2006-12-07 20:03:49 +0000 | [diff] [blame] | 565 | void PMDataManager::addPassToManager(Pass *P, |
| 566 | bool ProcessAnalysis) { |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 567 | |
Devang Patel | 90b05e0 | 2006-11-11 02:04:19 +0000 | [diff] [blame] | 568 | if (ProcessAnalysis) { |
Devang Patel | bc03f13 | 2006-12-07 23:55:10 +0000 | [diff] [blame] | 569 | |
| 570 | // At the moment, this pass is the last user of all required passes. |
| 571 | std::vector<Pass *> LastUses; |
| 572 | std::vector<Pass *> RequiredPasses; |
| 573 | unsigned PDepth = this->getDepth(); |
| 574 | |
| 575 | collectRequiredAnalysisPasses(RequiredPasses, P); |
| 576 | for (std::vector<Pass *>::iterator I = RequiredPasses.begin(), |
| 577 | E = RequiredPasses.end(); I != E; ++I) { |
| 578 | Pass *PRequired = *I; |
| 579 | unsigned RDepth = 0; |
| 580 | //FIXME: RDepth = PRequired->getResolver()->getDepth(); |
| 581 | if (PDepth == RDepth) |
| 582 | LastUses.push_back(PRequired); |
| 583 | else if (PDepth > RDepth) { |
| 584 | // Let the parent claim responsibility of last use |
| 585 | ForcedLastUses.push_back(PRequired); |
| 586 | } else { |
| 587 | // Note : This feature is not yet implemented |
| 588 | assert (0 && |
| 589 | "Unable to handle Pass that requires lower level Analysis pass"); |
| 590 | } |
| 591 | } |
| 592 | |
| 593 | if (!LastUses.empty()) |
| 594 | TPM->setLastUser(LastUses, P); |
| 595 | |
Devang Patel | 17bff0d | 2006-12-07 22:09:36 +0000 | [diff] [blame] | 596 | // Take a note of analysis required and made available by this pass. |
Devang Patel | 90b05e0 | 2006-11-11 02:04:19 +0000 | [diff] [blame] | 597 | // Remove the analysis not preserved by this pass |
Devang Patel | 17bff0d | 2006-12-07 22:09:36 +0000 | [diff] [blame] | 598 | initializeAnalysisImpl(P); |
Devang Patel | 90b05e0 | 2006-11-11 02:04:19 +0000 | [diff] [blame] | 599 | removeNotPreservedAnalysis(P); |
Devang Patel | 17bff0d | 2006-12-07 22:09:36 +0000 | [diff] [blame] | 600 | recordAvailableAnalysis(P); |
Devang Patel | 90b05e0 | 2006-11-11 02:04:19 +0000 | [diff] [blame] | 601 | } |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 602 | |
| 603 | // Add pass |
| 604 | PassVector.push_back(P); |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 605 | } |
| 606 | |
Devang Patel | 1d6267c | 2006-12-07 23:05:44 +0000 | [diff] [blame] | 607 | /// Populate RequiredPasses with the analysis pass that are required by |
| 608 | /// pass P. |
| 609 | void PMDataManager::collectRequiredAnalysisPasses(std::vector<Pass *> &RP, |
| 610 | Pass *P) { |
| 611 | AnalysisUsage AnUsage; |
| 612 | P->getAnalysisUsage(AnUsage); |
| 613 | const std::vector<AnalysisID> &RequiredSet = AnUsage.getRequiredSet(); |
| 614 | for (std::vector<AnalysisID>::const_iterator |
| 615 | I = RequiredSet.begin(), E = RequiredSet.end(); |
| 616 | I != E; ++I) { |
Devang Patel | 640c5bb | 2006-12-08 22:30:11 +0000 | [diff] [blame] | 617 | Pass *AnalysisPass = findAnalysisPass(*I, true); |
Devang Patel | 1d6267c | 2006-12-07 23:05:44 +0000 | [diff] [blame] | 618 | assert (AnalysisPass && "Analysis pass is not available"); |
| 619 | RP.push_back(AnalysisPass); |
| 620 | } |
| 621 | } |
| 622 | |
Devang Patel | 07f4f58 | 2006-11-14 21:49:36 +0000 | [diff] [blame] | 623 | // All Required analyses should be available to the pass as it runs! Here |
| 624 | // we fill in the AnalysisImpls member of the pass so that it can |
| 625 | // successfully use the getAnalysis() method to retrieve the |
| 626 | // implementations it needs. |
| 627 | // |
Devang Patel | dbe4a1e | 2006-12-07 18:36:24 +0000 | [diff] [blame] | 628 | void PMDataManager::initializeAnalysisImpl(Pass *P) { |
Devang Patel | ff631ae | 2006-11-15 01:27:05 +0000 | [diff] [blame] | 629 | AnalysisUsage AnUsage; |
| 630 | P->getAnalysisUsage(AnUsage); |
Devang Patel | 07f4f58 | 2006-11-14 21:49:36 +0000 | [diff] [blame] | 631 | |
| 632 | for (std::vector<const PassInfo *>::const_iterator |
| 633 | I = AnUsage.getRequiredSet().begin(), |
| 634 | E = AnUsage.getRequiredSet().end(); I != E; ++I) { |
Devang Patel | 640c5bb | 2006-12-08 22:30:11 +0000 | [diff] [blame] | 635 | Pass *Impl = findAnalysisPass(*I, true); |
Devang Patel | 07f4f58 | 2006-11-14 21:49:36 +0000 | [diff] [blame] | 636 | if (Impl == 0) |
| 637 | assert(0 && "Analysis used but not available!"); |
| 638 | // TODO: P->AnalysisImpls.push_back(std::make_pair(*I, Impl)); |
| 639 | } |
| 640 | } |
| 641 | |
Devang Patel | 640c5bb | 2006-12-08 22:30:11 +0000 | [diff] [blame] | 642 | /// Find the pass that implements Analysis AID. If desired pass is not found |
| 643 | /// then return NULL. |
| 644 | Pass *PMDataManager::findAnalysisPass(AnalysisID AID, bool SearchParent) { |
| 645 | |
| 646 | // Check if AvailableAnalysis map has one entry. |
| 647 | std::map<AnalysisID, Pass*>::const_iterator I = AvailableAnalysis.find(AID); |
| 648 | |
| 649 | if (I != AvailableAnalysis.end()) |
| 650 | return I->second; |
| 651 | |
| 652 | // Search Parents through TopLevelManager |
| 653 | if (SearchParent) |
| 654 | return TPM->findAnalysisPass(AID); |
| 655 | |
| 656 | // FIXME : This is expensive and requires. Need to check only managers not all passes. |
| 657 | // One solution is to collect managers in advance at TPM level. |
| 658 | Pass *P = NULL; |
| 659 | for(std::vector<Pass *>::iterator I = passVectorBegin(), |
| 660 | E = passVectorEnd(); P == NULL && I!= E; ++I ) |
| 661 | P = NULL; // FIXME : P = (*I)->getResolver()->getAnalysisToUpdate(AID, false /* Do not search parents again */); |
| 662 | |
| 663 | return P; |
| 664 | } |
| 665 | |
Devang Patel | a1514cb | 2006-12-07 19:39:39 +0000 | [diff] [blame] | 666 | //===----------------------------------------------------------------------===// |
| 667 | // BasicBlockPassManager_New implementation |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 668 | |
Devang Patel | d65e9e9 | 2006-11-08 01:31:28 +0000 | [diff] [blame] | 669 | /// Add pass P into PassVector and return true. If this pass is not |
| 670 | /// manageable by this manager then return false. |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 671 | bool |
Devang Patel | d65e9e9 | 2006-11-08 01:31:28 +0000 | [diff] [blame] | 672 | BasicBlockPassManager_New::addPass(Pass *P) { |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 673 | |
| 674 | BasicBlockPass *BP = dynamic_cast<BasicBlockPass*>(P); |
| 675 | if (!BP) |
| 676 | return false; |
| 677 | |
Devang Patel | 3c8eb62 | 2006-11-07 22:56:50 +0000 | [diff] [blame] | 678 | // If this pass does not preserve anlysis that is used by other passes |
| 679 | // 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] | 680 | if (!manageablePass(P)) |
Devang Patel | 3c8eb62 | 2006-11-07 22:56:50 +0000 | [diff] [blame] | 681 | return false; |
| 682 | |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 683 | addPassToManager (BP); |
Devang Patel | 349170f | 2006-11-11 01:24:55 +0000 | [diff] [blame] | 684 | |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 685 | return true; |
| 686 | } |
| 687 | |
| 688 | /// Execute all of the passes scheduled for execution by invoking |
| 689 | /// runOnBasicBlock method. Keep track of whether any of the passes modifies |
| 690 | /// the function, and if so, return true. |
| 691 | bool |
| 692 | BasicBlockPassManager_New::runOnFunction(Function &F) { |
| 693 | |
Devang Patel | e958559 | 2006-12-08 01:38:28 +0000 | [diff] [blame] | 694 | bool Changed = doInitialization(F); |
Devang Patel | a6b6dcb | 2006-12-07 18:41:09 +0000 | [diff] [blame] | 695 | initializeAnalysisInfo(); |
Devang Patel | 050ec72 | 2006-11-14 01:23:29 +0000 | [diff] [blame] | 696 | |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 697 | for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 698 | for (std::vector<Pass *>::iterator itr = passVectorBegin(), |
| 699 | e = passVectorEnd(); itr != e; ++itr) { |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 700 | Pass *P = *itr; |
Devang Patel | 050ec72 | 2006-11-14 01:23:29 +0000 | [diff] [blame] | 701 | |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 702 | BasicBlockPass *BP = dynamic_cast<BasicBlockPass*>(P); |
| 703 | Changed |= BP->runOnBasicBlock(*I); |
Devang Patel | 050ec72 | 2006-11-14 01:23:29 +0000 | [diff] [blame] | 704 | removeNotPreservedAnalysis(P); |
Devang Patel | 17bff0d | 2006-12-07 22:09:36 +0000 | [diff] [blame] | 705 | recordAvailableAnalysis(P); |
Devang Patel | ca18926 | 2006-11-14 03:05:08 +0000 | [diff] [blame] | 706 | removeDeadPasses(P); |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 707 | } |
Devang Patel | e958559 | 2006-12-08 01:38:28 +0000 | [diff] [blame] | 708 | return Changed | doFinalization(F); |
Devang Patel | 6e5a113 | 2006-11-07 21:31:57 +0000 | [diff] [blame] | 709 | } |
| 710 | |
Devang Patel | 475c453 | 2006-12-08 00:59:05 +0000 | [diff] [blame] | 711 | // Implement doInitialization and doFinalization |
| 712 | inline bool BasicBlockPassManager_New::doInitialization(Module &M) { |
| 713 | bool Changed = false; |
| 714 | |
| 715 | for (std::vector<Pass *>::iterator itr = passVectorBegin(), |
| 716 | e = passVectorEnd(); itr != e; ++itr) { |
| 717 | Pass *P = *itr; |
| 718 | BasicBlockPass *BP = dynamic_cast<BasicBlockPass*>(P); |
| 719 | Changed |= BP->doInitialization(M); |
| 720 | } |
| 721 | |
| 722 | return Changed; |
| 723 | } |
| 724 | |
| 725 | inline bool BasicBlockPassManager_New::doFinalization(Module &M) { |
| 726 | bool Changed = false; |
| 727 | |
| 728 | for (std::vector<Pass *>::iterator itr = passVectorBegin(), |
| 729 | e = passVectorEnd(); itr != e; ++itr) { |
| 730 | Pass *P = *itr; |
| 731 | BasicBlockPass *BP = dynamic_cast<BasicBlockPass*>(P); |
| 732 | Changed |= BP->doFinalization(M); |
| 733 | } |
| 734 | |
| 735 | return Changed; |
| 736 | } |
| 737 | |
| 738 | inline bool BasicBlockPassManager_New::doInitialization(Function &F) { |
| 739 | bool Changed = false; |
| 740 | |
| 741 | for (std::vector<Pass *>::iterator itr = passVectorBegin(), |
| 742 | e = passVectorEnd(); itr != e; ++itr) { |
| 743 | Pass *P = *itr; |
| 744 | BasicBlockPass *BP = dynamic_cast<BasicBlockPass*>(P); |
| 745 | Changed |= BP->doInitialization(F); |
| 746 | } |
| 747 | |
| 748 | return Changed; |
| 749 | } |
| 750 | |
| 751 | inline bool BasicBlockPassManager_New::doFinalization(Function &F) { |
| 752 | bool Changed = false; |
| 753 | |
| 754 | for (std::vector<Pass *>::iterator itr = passVectorBegin(), |
| 755 | e = passVectorEnd(); itr != e; ++itr) { |
| 756 | Pass *P = *itr; |
| 757 | BasicBlockPass *BP = dynamic_cast<BasicBlockPass*>(P); |
| 758 | Changed |= BP->doFinalization(F); |
| 759 | } |
| 760 | |
| 761 | return Changed; |
| 762 | } |
| 763 | |
| 764 | |
Devang Patel | a1514cb | 2006-12-07 19:39:39 +0000 | [diff] [blame] | 765 | //===----------------------------------------------------------------------===// |
Devang Patel | 0c2012f | 2006-11-07 21:49:50 +0000 | [diff] [blame] | 766 | // FunctionPassManager_New implementation |
Devang Patel | a1514cb | 2006-12-07 19:39:39 +0000 | [diff] [blame] | 767 | |
Devang Patel | 4e12f86 | 2006-11-08 10:44:40 +0000 | [diff] [blame] | 768 | /// Create new Function pass manager |
| 769 | FunctionPassManager_New::FunctionPassManager_New() { |
Devang Patel | 4c36e6b | 2006-12-07 23:24:58 +0000 | [diff] [blame] | 770 | FPM = new FunctionPassManagerImpl_New(0); |
Devang Patel | 4e12f86 | 2006-11-08 10:44:40 +0000 | [diff] [blame] | 771 | } |
| 772 | |
Devang Patel | 1f65368 | 2006-12-08 18:57:16 +0000 | [diff] [blame] | 773 | FunctionPassManager_New::FunctionPassManager_New(ModuleProvider *P) { |
| 774 | FPM = new FunctionPassManagerImpl_New(0); |
| 775 | MP = P; |
| 776 | } |
| 777 | |
Devang Patel | 4e12f86 | 2006-11-08 10:44:40 +0000 | [diff] [blame] | 778 | /// add - Add a pass to the queue of passes to run. This passes |
| 779 | /// ownership of the Pass to the PassManager. When the |
| 780 | /// PassManager_X is destroyed, the pass will be destroyed as well, so |
| 781 | /// there is no need to delete the pass. (TODO delete passes.) |
| 782 | /// This implies that all passes MUST be allocated with 'new'. |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 783 | void FunctionPassManager_New::add(Pass *P) { |
Devang Patel | 4e12f86 | 2006-11-08 10:44:40 +0000 | [diff] [blame] | 784 | FPM->add(P); |
| 785 | } |
| 786 | |
| 787 | /// Execute all of the passes scheduled for execution. Keep |
| 788 | /// track of whether any of the passes modifies the function, and if |
| 789 | /// so, return true. |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 790 | bool FunctionPassManager_New::runOnModule(Module &M) { |
Devang Patel | 4e12f86 | 2006-11-08 10:44:40 +0000 | [diff] [blame] | 791 | return FPM->runOnModule(M); |
| 792 | } |
| 793 | |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 794 | /// run - Execute all of the passes scheduled for execution. Keep |
| 795 | /// track of whether any of the passes modifies the function, and if |
| 796 | /// so, return true. |
| 797 | /// |
| 798 | bool FunctionPassManager_New::run(Function &F) { |
| 799 | std::string errstr; |
| 800 | if (MP->materializeFunction(&F, &errstr)) { |
Bill Wendling | f3baad3 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 801 | cerr << "Error reading bytecode file: " << errstr << "\n"; |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 802 | abort(); |
| 803 | } |
Devang Patel | 272908d | 2006-12-08 22:57:48 +0000 | [diff] [blame^] | 804 | return FPM->run(F); |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 805 | } |
| 806 | |
| 807 | |
Devang Patel | ff631ae | 2006-11-15 01:27:05 +0000 | [diff] [blame] | 808 | /// doInitialization - Run all of the initializers for the function passes. |
| 809 | /// |
| 810 | bool FunctionPassManager_New::doInitialization() { |
| 811 | return FPM->doInitialization(*MP->getModule()); |
| 812 | } |
| 813 | |
| 814 | /// doFinalization - Run all of the initializers for the function passes. |
| 815 | /// |
| 816 | bool FunctionPassManager_New::doFinalization() { |
| 817 | return FPM->doFinalization(*MP->getModule()); |
| 818 | } |
| 819 | |
Devang Patel | a1514cb | 2006-12-07 19:39:39 +0000 | [diff] [blame] | 820 | //===----------------------------------------------------------------------===// |
Devang Patel | 4e12f86 | 2006-11-08 10:44:40 +0000 | [diff] [blame] | 821 | // FunctionPassManagerImpl_New implementation |
Devang Patel | 0c2012f | 2006-11-07 21:49:50 +0000 | [diff] [blame] | 822 | |
Devang Patel | 0c2012f | 2006-11-07 21:49:50 +0000 | [diff] [blame] | 823 | /// Add pass P into the pass manager queue. If P is a BasicBlockPass then |
| 824 | /// either use it into active basic block pass manager or create new basic |
| 825 | /// block pass manager to handle pass P. |
| 826 | bool |
Devang Patel | 4e12f86 | 2006-11-08 10:44:40 +0000 | [diff] [blame] | 827 | FunctionPassManagerImpl_New::addPass(Pass *P) { |
Devang Patel | 0c2012f | 2006-11-07 21:49:50 +0000 | [diff] [blame] | 828 | |
| 829 | // If P is a BasicBlockPass then use BasicBlockPassManager_New. |
| 830 | if (BasicBlockPass *BP = dynamic_cast<BasicBlockPass*>(P)) { |
| 831 | |
Devang Patel | 4949fe0 | 2006-12-07 22:34:21 +0000 | [diff] [blame] | 832 | if (!activeBBPassManager || !activeBBPassManager->addPass(BP)) { |
Devang Patel | 0c2012f | 2006-11-07 21:49:50 +0000 | [diff] [blame] | 833 | |
Devang Patel | 4949fe0 | 2006-12-07 22:34:21 +0000 | [diff] [blame] | 834 | // If active manager exists then clear its analysis info. |
| 835 | if (activeBBPassManager) |
| 836 | activeBBPassManager->initializeAnalysisInfo(); |
Devang Patel | 642c143 | 2006-12-07 21:58:50 +0000 | [diff] [blame] | 837 | |
Devang Patel | 4949fe0 | 2006-12-07 22:34:21 +0000 | [diff] [blame] | 838 | // Create and add new manager |
Devang Patel | 4c36e6b | 2006-12-07 23:24:58 +0000 | [diff] [blame] | 839 | activeBBPassManager = |
| 840 | new BasicBlockPassManager_New(getDepth() + 1); |
Devang Patel | 90b05e0 | 2006-11-11 02:04:19 +0000 | [diff] [blame] | 841 | addPassToManager(activeBBPassManager, false); |
Devang Patel | 4949fe0 | 2006-12-07 22:34:21 +0000 | [diff] [blame] | 842 | |
| 843 | // Add pass into new manager. This time it must succeed. |
Devang Patel | d65e9e9 | 2006-11-08 01:31:28 +0000 | [diff] [blame] | 844 | if (!activeBBPassManager->addPass(BP)) |
| 845 | assert(0 && "Unable to add Pass"); |
Devang Patel | 0c2012f | 2006-11-07 21:49:50 +0000 | [diff] [blame] | 846 | } |
Devang Patel | bc03f13 | 2006-12-07 23:55:10 +0000 | [diff] [blame] | 847 | |
| 848 | if (!ForcedLastUses.empty()) |
| 849 | TPM->setLastUser(ForcedLastUses, this); |
| 850 | |
Devang Patel | 0c2012f | 2006-11-07 21:49:50 +0000 | [diff] [blame] | 851 | return true; |
| 852 | } |
| 853 | |
| 854 | FunctionPass *FP = dynamic_cast<FunctionPass *>(P); |
| 855 | if (!FP) |
| 856 | return false; |
| 857 | |
Devang Patel | 3c8eb62 | 2006-11-07 22:56:50 +0000 | [diff] [blame] | 858 | // If this pass does not preserve anlysis that is used by other passes |
| 859 | // 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] | 860 | if (!manageablePass(P)) |
Devang Patel | 3c8eb62 | 2006-11-07 22:56:50 +0000 | [diff] [blame] | 861 | return false; |
| 862 | |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 863 | addPassToManager (FP); |
Devang Patel | 4949fe0 | 2006-12-07 22:34:21 +0000 | [diff] [blame] | 864 | |
| 865 | // If active manager exists then clear its analysis info. |
| 866 | if (activeBBPassManager) { |
| 867 | activeBBPassManager->initializeAnalysisInfo(); |
| 868 | activeBBPassManager = NULL; |
| 869 | } |
| 870 | |
Devang Patel | 0c2012f | 2006-11-07 21:49:50 +0000 | [diff] [blame] | 871 | return true; |
| 872 | } |
| 873 | |
| 874 | /// Execute all of the passes scheduled for execution by invoking |
| 875 | /// runOnFunction method. Keep track of whether any of the passes modifies |
| 876 | /// the function, and if so, return true. |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 877 | bool FunctionPassManagerImpl_New::runOnModule(Module &M) { |
Devang Patel | 0c2012f | 2006-11-07 21:49:50 +0000 | [diff] [blame] | 878 | |
Devang Patel | 0e29e29 | 2006-12-08 19:04:09 +0000 | [diff] [blame] | 879 | bool Changed = doInitialization(M); |
Devang Patel | a6b6dcb | 2006-12-07 18:41:09 +0000 | [diff] [blame] | 880 | initializeAnalysisInfo(); |
Devang Patel | 050ec72 | 2006-11-14 01:23:29 +0000 | [diff] [blame] | 881 | |
Devang Patel | 0c2012f | 2006-11-07 21:49:50 +0000 | [diff] [blame] | 882 | for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) |
Devang Patel | 1929089 | 2006-12-08 19:03:05 +0000 | [diff] [blame] | 883 | this->runOnFunction(*I); |
| 884 | |
Devang Patel | 0e29e29 | 2006-12-08 19:04:09 +0000 | [diff] [blame] | 885 | return Changed | doFinalization(M); |
Devang Patel | 0c2012f | 2006-11-07 21:49:50 +0000 | [diff] [blame] | 886 | } |
| 887 | |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 888 | /// Execute all of the passes scheduled for execution by invoking |
| 889 | /// runOnFunction method. Keep track of whether any of the passes modifies |
| 890 | /// the function, and if so, return true. |
| 891 | bool FunctionPassManagerImpl_New::runOnFunction(Function &F) { |
| 892 | |
| 893 | bool Changed = false; |
Devang Patel | a6b6dcb | 2006-12-07 18:41:09 +0000 | [diff] [blame] | 894 | initializeAnalysisInfo(); |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 895 | |
| 896 | for (std::vector<Pass *>::iterator itr = passVectorBegin(), |
| 897 | e = passVectorEnd(); itr != e; ++itr) { |
| 898 | Pass *P = *itr; |
| 899 | |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 900 | FunctionPass *FP = dynamic_cast<FunctionPass*>(P); |
| 901 | Changed |= FP->runOnFunction(F); |
| 902 | removeNotPreservedAnalysis(P); |
Devang Patel | 17bff0d | 2006-12-07 22:09:36 +0000 | [diff] [blame] | 903 | recordAvailableAnalysis(P); |
Devang Patel | 9f3083e | 2006-11-15 19:39:54 +0000 | [diff] [blame] | 904 | removeDeadPasses(P); |
| 905 | } |
| 906 | return Changed; |
| 907 | } |
| 908 | |
| 909 | |
Devang Patel | ff631ae | 2006-11-15 01:27:05 +0000 | [diff] [blame] | 910 | inline bool FunctionPassManagerImpl_New::doInitialization(Module &M) { |
| 911 | bool Changed = false; |
| 912 | |
| 913 | for (std::vector<Pass *>::iterator itr = passVectorBegin(), |
| 914 | e = passVectorEnd(); itr != e; ++itr) { |
| 915 | Pass *P = *itr; |
| 916 | |
| 917 | FunctionPass *FP = dynamic_cast<FunctionPass*>(P); |
| 918 | Changed |= FP->doInitialization(M); |
| 919 | } |
| 920 | |
| 921 | return Changed; |
| 922 | } |
| 923 | |
| 924 | inline bool FunctionPassManagerImpl_New::doFinalization(Module &M) { |
| 925 | bool Changed = false; |
| 926 | |
| 927 | for (std::vector<Pass *>::iterator itr = passVectorBegin(), |
| 928 | e = passVectorEnd(); itr != e; ++itr) { |
| 929 | Pass *P = *itr; |
| 930 | |
| 931 | FunctionPass *FP = dynamic_cast<FunctionPass*>(P); |
| 932 | Changed |= FP->doFinalization(M); |
| 933 | } |
| 934 | |
Devang Patel | ff631ae | 2006-11-15 01:27:05 +0000 | [diff] [blame] | 935 | return Changed; |
| 936 | } |
| 937 | |
Devang Patel | 272908d | 2006-12-08 22:57:48 +0000 | [diff] [blame^] | 938 | // Execute all the passes managed by this top level manager. |
| 939 | // Return true if any function is modified by a pass. |
| 940 | bool FunctionPassManagerImpl_New::run(Function &F) { |
| 941 | |
| 942 | bool Changed = false; |
| 943 | for (std::vector<Pass *>::iterator I = passManagersBegin(), |
| 944 | E = passManagersEnd(); I != E; ++I) { |
| 945 | FunctionPass *FP = dynamic_cast<FunctionPass *>(*I); |
| 946 | Changed |= FP->runOnFunction(F); |
| 947 | } |
| 948 | return Changed; |
| 949 | } |
| 950 | |
Devang Patel | a1514cb | 2006-12-07 19:39:39 +0000 | [diff] [blame] | 951 | //===----------------------------------------------------------------------===// |
Devang Patel | 05e1a97 | 2006-11-07 22:03:15 +0000 | [diff] [blame] | 952 | // ModulePassManager implementation |
| 953 | |
| 954 | /// 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] | 955 | /// then use FunctionPassManagerImpl_New to manage it. Return false if P |
Devang Patel | 05e1a97 | 2006-11-07 22:03:15 +0000 | [diff] [blame] | 956 | /// is not manageable by this manager. |
| 957 | bool |
Devang Patel | d65e9e9 | 2006-11-08 01:31:28 +0000 | [diff] [blame] | 958 | ModulePassManager_New::addPass(Pass *P) { |
Devang Patel | 05e1a97 | 2006-11-07 22:03:15 +0000 | [diff] [blame] | 959 | |
| 960 | // If P is FunctionPass then use function pass maanager. |
| 961 | if (FunctionPass *FP = dynamic_cast<FunctionPass*>(P)) { |
| 962 | |
Devang Patel | 640c5bb | 2006-12-08 22:30:11 +0000 | [diff] [blame] | 963 | if (!activeFunctionPassManager || !activeFunctionPassManager->addPass(P)) { |
Devang Patel | 05e1a97 | 2006-11-07 22:03:15 +0000 | [diff] [blame] | 964 | |
Devang Patel | 4949fe0 | 2006-12-07 22:34:21 +0000 | [diff] [blame] | 965 | // If active manager exists then clear its analysis info. |
| 966 | if (activeFunctionPassManager) |
| 967 | activeFunctionPassManager->initializeAnalysisInfo(); |
Devang Patel | 642c143 | 2006-12-07 21:58:50 +0000 | [diff] [blame] | 968 | |
Devang Patel | 4949fe0 | 2006-12-07 22:34:21 +0000 | [diff] [blame] | 969 | // Create and add new manager |
Devang Patel | 4c36e6b | 2006-12-07 23:24:58 +0000 | [diff] [blame] | 970 | activeFunctionPassManager = |
| 971 | new FunctionPassManagerImpl_New(getDepth() + 1); |
Devang Patel | 90b05e0 | 2006-11-11 02:04:19 +0000 | [diff] [blame] | 972 | addPassToManager(activeFunctionPassManager, false); |
Devang Patel | 4949fe0 | 2006-12-07 22:34:21 +0000 | [diff] [blame] | 973 | |
| 974 | // Add pass into new manager. This time it must succeed. |
Devang Patel | d65e9e9 | 2006-11-08 01:31:28 +0000 | [diff] [blame] | 975 | if (!activeFunctionPassManager->addPass(FP)) |
| 976 | assert(0 && "Unable to add pass"); |
Devang Patel | 05e1a97 | 2006-11-07 22:03:15 +0000 | [diff] [blame] | 977 | } |
Devang Patel | bc03f13 | 2006-12-07 23:55:10 +0000 | [diff] [blame] | 978 | |
| 979 | if (!ForcedLastUses.empty()) |
| 980 | TPM->setLastUser(ForcedLastUses, this); |
| 981 | |
Devang Patel | 05e1a97 | 2006-11-07 22:03:15 +0000 | [diff] [blame] | 982 | return true; |
| 983 | } |
| 984 | |
| 985 | ModulePass *MP = dynamic_cast<ModulePass *>(P); |
| 986 | if (!MP) |
| 987 | return false; |
| 988 | |
Devang Patel | 3c8eb62 | 2006-11-07 22:56:50 +0000 | [diff] [blame] | 989 | // If this pass does not preserve anlysis that is used by other passes |
| 990 | // 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] | 991 | if (!manageablePass(P)) |
Devang Patel | 3c8eb62 | 2006-11-07 22:56:50 +0000 | [diff] [blame] | 992 | return false; |
| 993 | |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 994 | addPassToManager(MP); |
Devang Patel | 4949fe0 | 2006-12-07 22:34:21 +0000 | [diff] [blame] | 995 | // If active manager exists then clear its analysis info. |
| 996 | if (activeFunctionPassManager) { |
| 997 | activeFunctionPassManager->initializeAnalysisInfo(); |
| 998 | activeFunctionPassManager = NULL; |
| 999 | } |
| 1000 | |
Devang Patel | 05e1a97 | 2006-11-07 22:03:15 +0000 | [diff] [blame] | 1001 | return true; |
| 1002 | } |
| 1003 | |
| 1004 | |
| 1005 | /// Execute all of the passes scheduled for execution by invoking |
| 1006 | /// runOnModule method. Keep track of whether any of the passes modifies |
| 1007 | /// the module, and if so, return true. |
| 1008 | bool |
| 1009 | ModulePassManager_New::runOnModule(Module &M) { |
| 1010 | bool Changed = false; |
Devang Patel | a6b6dcb | 2006-12-07 18:41:09 +0000 | [diff] [blame] | 1011 | initializeAnalysisInfo(); |
Devang Patel | 050ec72 | 2006-11-14 01:23:29 +0000 | [diff] [blame] | 1012 | |
Devang Patel | 8cad70d | 2006-11-11 01:51:02 +0000 | [diff] [blame] | 1013 | for (std::vector<Pass *>::iterator itr = passVectorBegin(), |
| 1014 | e = passVectorEnd(); itr != e; ++itr) { |
Devang Patel | 05e1a97 | 2006-11-07 22:03:15 +0000 | [diff] [blame] | 1015 | Pass *P = *itr; |
Devang Patel | 050ec72 | 2006-11-14 01:23:29 +0000 | [diff] [blame] | 1016 | |
Devang Patel | 05e1a97 | 2006-11-07 22:03:15 +0000 | [diff] [blame] | 1017 | ModulePass *MP = dynamic_cast<ModulePass*>(P); |
| 1018 | Changed |= MP->runOnModule(M); |
Devang Patel | 050ec72 | 2006-11-14 01:23:29 +0000 | [diff] [blame] | 1019 | removeNotPreservedAnalysis(P); |
Devang Patel | 17bff0d | 2006-12-07 22:09:36 +0000 | [diff] [blame] | 1020 | recordAvailableAnalysis(P); |
Devang Patel | ca18926 | 2006-11-14 03:05:08 +0000 | [diff] [blame] | 1021 | removeDeadPasses(P); |
Devang Patel | 05e1a97 | 2006-11-07 22:03:15 +0000 | [diff] [blame] | 1022 | } |
| 1023 | return Changed; |
| 1024 | } |
| 1025 | |
Devang Patel | a1514cb | 2006-12-07 19:39:39 +0000 | [diff] [blame] | 1026 | //===----------------------------------------------------------------------===// |
| 1027 | // PassManagerImpl implementation |
| 1028 | |
Devang Patel | c290c8a | 2006-11-07 22:23:34 +0000 | [diff] [blame] | 1029 | // PassManager_New implementation |
| 1030 | /// Add P into active pass manager or use new module pass manager to |
| 1031 | /// manage it. |
Devang Patel | 1a6eaa4 | 2006-11-11 02:22:31 +0000 | [diff] [blame] | 1032 | bool PassManagerImpl_New::addPass(Pass *P) { |
Devang Patel | c290c8a | 2006-11-07 22:23:34 +0000 | [diff] [blame] | 1033 | |
Devang Patel | 6c9f548 | 2006-11-11 00:42:16 +0000 | [diff] [blame] | 1034 | if (!activeManager || !activeManager->addPass(P)) { |
Devang Patel | 4c36e6b | 2006-12-07 23:24:58 +0000 | [diff] [blame] | 1035 | activeManager = new ModulePassManager_New(getDepth() + 1); |
Devang Patel | 5bbeb49 | 2006-12-08 22:47:25 +0000 | [diff] [blame] | 1036 | addPassManager(activeManager); |
Devang Patel | 28bbcbe | 2006-12-07 21:44:12 +0000 | [diff] [blame] | 1037 | return activeManager->addPass(P); |
Devang Patel | c290c8a | 2006-11-07 22:23:34 +0000 | [diff] [blame] | 1038 | } |
Devang Patel | 28bbcbe | 2006-12-07 21:44:12 +0000 | [diff] [blame] | 1039 | return true; |
Devang Patel | c290c8a | 2006-11-07 22:23:34 +0000 | [diff] [blame] | 1040 | } |
| 1041 | |
| 1042 | /// run - Execute all of the passes scheduled for execution. Keep track of |
| 1043 | /// 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] | 1044 | bool PassManagerImpl_New::run(Module &M) { |
Devang Patel | c290c8a | 2006-11-07 22:23:34 +0000 | [diff] [blame] | 1045 | |
Devang Patel | c290c8a | 2006-11-07 22:23:34 +0000 | [diff] [blame] | 1046 | bool Changed = false; |
Devang Patel | 5bbeb49 | 2006-12-08 22:47:25 +0000 | [diff] [blame] | 1047 | for (std::vector<Pass *>::iterator I = passManagersBegin(), |
| 1048 | E = passManagersEnd(); I != E; ++I) { |
| 1049 | ModulePassManager_New *MP = dynamic_cast<ModulePassManager_New *>(*I); |
| 1050 | Changed |= MP->runOnModule(M); |
Devang Patel | c290c8a | 2006-11-07 22:23:34 +0000 | [diff] [blame] | 1051 | } |
| 1052 | return Changed; |
| 1053 | } |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 1054 | |
Devang Patel | a1514cb | 2006-12-07 19:39:39 +0000 | [diff] [blame] | 1055 | //===----------------------------------------------------------------------===// |
| 1056 | // PassManager implementation |
| 1057 | |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 1058 | /// Create new pass manager |
| 1059 | PassManager_New::PassManager_New() { |
Devang Patel | 4c36e6b | 2006-12-07 23:24:58 +0000 | [diff] [blame] | 1060 | PM = new PassManagerImpl_New(0); |
Devang Patel | 376fefa | 2006-11-08 10:29:57 +0000 | [diff] [blame] | 1061 | } |
| 1062 | |
| 1063 | /// add - Add a pass to the queue of passes to run. This passes ownership of |
| 1064 | /// the Pass to the PassManager. When the PassManager is destroyed, the pass |
| 1065 | /// will be destroyed as well, so there is no need to delete the pass. This |
| 1066 | /// implies that all passes MUST be allocated with 'new'. |
| 1067 | void |
| 1068 | PassManager_New::add(Pass *P) { |
| 1069 | PM->add(P); |
| 1070 | } |
| 1071 | |
| 1072 | /// run - Execute all of the passes scheduled for execution. Keep track of |
| 1073 | /// whether any of the passes modifies the module, and if so, return true. |
| 1074 | bool |
| 1075 | PassManager_New::run(Module &M) { |
| 1076 | return PM->run(M); |
| 1077 | } |
| 1078 | |