Devang Patel | 16a31c4 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 1 | //===- LoopPass.cpp - Loop Pass and Loop Pass Manager ---------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Devang Patel | 16a31c4 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements LoopPass and LPPassManager. All loop optimization |
| 11 | // and transformation passes are derived from LoopPass. LPPassManager is |
| 12 | // responsible for managing LoopPasses. |
| 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
| 16 | #include "llvm/Analysis/LoopPass.h" |
| 17 | using namespace llvm; |
| 18 | |
| 19 | //===----------------------------------------------------------------------===// |
| 20 | // LPPassManager |
| 21 | // |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 22 | |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 23 | char LPPassManager::ID = 0; |
Devang Patel | 16a31c4 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 24 | |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 25 | LPPassManager::LPPassManager(int Depth) |
Dan Gohman | ae73dc1 | 2008-09-04 17:05:41 +0000 | [diff] [blame] | 26 | : FunctionPass(&ID), PMDataManager(Depth) { |
Devang Patel | 8ded585 | 2007-02-23 00:16:44 +0000 | [diff] [blame] | 27 | skipThisLoop = false; |
| 28 | redoThisLoop = false; |
Devang Patel | 7a9a069 | 2007-03-06 18:38:33 +0000 | [diff] [blame] | 29 | LI = NULL; |
| 30 | CurrentLoop = NULL; |
Devang Patel | d0e6e33 | 2007-02-22 23:30:07 +0000 | [diff] [blame] | 31 | } |
| 32 | |
Dan Gohman | e6acf36 | 2008-07-11 22:51:32 +0000 | [diff] [blame] | 33 | /// Delete loop from the loop queue and loop hierarchy (LoopInfo). |
Devang Patel | 5afdc7d | 2007-02-23 00:10:16 +0000 | [diff] [blame] | 34 | void LPPassManager::deleteLoopFromQueue(Loop *L) { |
Devang Patel | 7a9a069 | 2007-03-06 18:38:33 +0000 | [diff] [blame] | 35 | |
| 36 | if (Loop *ParentLoop = L->getParentLoop()) { // Not a top-level loop. |
| 37 | // Reparent all of the blocks in this loop. Since BBLoop had a parent, |
| 38 | // they are now all in it. |
| 39 | for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); |
| 40 | I != E; ++I) |
| 41 | if (LI->getLoopFor(*I) == L) // Don't change blocks in subloops. |
| 42 | LI->changeLoopFor(*I, ParentLoop); |
| 43 | |
| 44 | // Remove the loop from its parent loop. |
| 45 | for (Loop::iterator I = ParentLoop->begin(), E = ParentLoop->end();; |
| 46 | ++I) { |
| 47 | assert(I != E && "Couldn't find loop"); |
| 48 | if (*I == L) { |
| 49 | ParentLoop->removeChildLoop(I); |
| 50 | break; |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | // Move all subloops into the parent loop. |
Dan Gohman | cb406c2 | 2007-10-03 19:26:29 +0000 | [diff] [blame] | 55 | while (!L->empty()) |
Devang Patel | 7a9a069 | 2007-03-06 18:38:33 +0000 | [diff] [blame] | 56 | ParentLoop->addChildLoop(L->removeChildLoop(L->end()-1)); |
| 57 | } else { |
| 58 | // Reparent all of the blocks in this loop. Since BBLoop had no parent, |
| 59 | // they no longer in a loop at all. |
| 60 | |
| 61 | for (unsigned i = 0; i != L->getBlocks().size(); ++i) { |
| 62 | // Don't change blocks in subloops. |
| 63 | if (LI->getLoopFor(L->getBlocks()[i]) == L) { |
| 64 | LI->removeBlock(L->getBlocks()[i]); |
| 65 | --i; |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | // Remove the loop from the top-level LoopInfo object. |
| 70 | for (LoopInfo::iterator I = LI->begin(), E = LI->end();; ++I) { |
| 71 | assert(I != E && "Couldn't find loop"); |
| 72 | if (*I == L) { |
| 73 | LI->removeLoop(I); |
| 74 | break; |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | // Move all of the subloops to the top-level. |
Dan Gohman | cb406c2 | 2007-10-03 19:26:29 +0000 | [diff] [blame] | 79 | while (!L->empty()) |
Devang Patel | 7a9a069 | 2007-03-06 18:38:33 +0000 | [diff] [blame] | 80 | LI->addTopLevelLoop(L->removeChildLoop(L->end()-1)); |
| 81 | } |
| 82 | |
| 83 | delete L; |
| 84 | |
| 85 | // If L is current loop then skip rest of the passes and let |
| 86 | // runOnFunction remove L from LQ. Otherwise, remove L from LQ now |
| 87 | // and continue applying other passes on CurrentLoop. |
| 88 | if (CurrentLoop == L) { |
| 89 | skipThisLoop = true; |
| 90 | return; |
| 91 | } |
| 92 | |
| 93 | for (std::deque<Loop *>::iterator I = LQ.begin(), |
| 94 | E = LQ.end(); I != E; ++I) { |
| 95 | if (*I == L) { |
| 96 | LQ.erase(I); |
| 97 | break; |
| 98 | } |
| 99 | } |
Devang Patel | 5afdc7d | 2007-02-23 00:10:16 +0000 | [diff] [blame] | 100 | } |
| 101 | |
Devang Patel | a885c06 | 2007-03-06 19:00:02 +0000 | [diff] [blame] | 102 | // Inset loop into loop nest (LoopInfo) and loop queue (LQ). |
| 103 | void LPPassManager::insertLoop(Loop *L, Loop *ParentLoop) { |
| 104 | |
| 105 | assert (CurrentLoop != L && "Cannot insert CurrentLoop"); |
| 106 | |
| 107 | // Insert into loop nest |
| 108 | if (ParentLoop) |
| 109 | ParentLoop->addChildLoop(L); |
| 110 | else |
| 111 | LI->addTopLevelLoop(L); |
| 112 | |
Dan Gohman | 3069b31 | 2009-09-27 23:49:43 +0000 | [diff] [blame] | 113 | insertLoopIntoQueue(L); |
| 114 | } |
| 115 | |
| 116 | void LPPassManager::insertLoopIntoQueue(Loop *L) { |
Devang Patel | a885c06 | 2007-03-06 19:00:02 +0000 | [diff] [blame] | 117 | // Insert L into loop queue |
| 118 | if (L == CurrentLoop) |
| 119 | redoLoop(L); |
Dan Gohman | 3069b31 | 2009-09-27 23:49:43 +0000 | [diff] [blame] | 120 | else if (!L->getParentLoop()) |
Devang Patel | a885c06 | 2007-03-06 19:00:02 +0000 | [diff] [blame] | 121 | // This is top level loop. |
| 122 | LQ.push_front(L); |
| 123 | else { |
Dan Gohman | 3069b31 | 2009-09-27 23:49:43 +0000 | [diff] [blame] | 124 | // Insert L after the parent loop. |
Devang Patel | a885c06 | 2007-03-06 19:00:02 +0000 | [diff] [blame] | 125 | for (std::deque<Loop *>::iterator I = LQ.begin(), |
| 126 | E = LQ.end(); I != E; ++I) { |
Dan Gohman | 3069b31 | 2009-09-27 23:49:43 +0000 | [diff] [blame] | 127 | if (*I == L->getParentLoop()) { |
Devang Patel | a885c06 | 2007-03-06 19:00:02 +0000 | [diff] [blame] | 128 | // deque does not support insert after. |
| 129 | ++I; |
| 130 | LQ.insert(I, 1, L); |
| 131 | break; |
| 132 | } |
| 133 | } |
| 134 | } |
| 135 | } |
| 136 | |
Devang Patel | 8ded585 | 2007-02-23 00:16:44 +0000 | [diff] [blame] | 137 | // Reoptimize this loop. LPPassManager will re-insert this loop into the |
| 138 | // queue. This allows LoopPass to change loop nest for the loop. This |
| 139 | // utility may send LPPassManager into infinite loops so use caution. |
| 140 | void LPPassManager::redoLoop(Loop *L) { |
Devang Patel | 1bc8936 | 2007-03-07 00:26:10 +0000 | [diff] [blame] | 141 | assert (CurrentLoop == L && "Can redo only CurrentLoop"); |
Devang Patel | 8ded585 | 2007-02-23 00:16:44 +0000 | [diff] [blame] | 142 | redoThisLoop = true; |
| 143 | } |
| 144 | |
Devang Patel | c7e49c0 | 2007-07-31 08:00:57 +0000 | [diff] [blame] | 145 | /// cloneBasicBlockSimpleAnalysis - Invoke cloneBasicBlockAnalysis hook for |
| 146 | /// all loop passes. |
| 147 | void LPPassManager::cloneBasicBlockSimpleAnalysis(BasicBlock *From, |
| 148 | BasicBlock *To, Loop *L) { |
| 149 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
| 150 | Pass *P = getContainedPass(Index); |
| 151 | LoopPass *LP = dynamic_cast<LoopPass *>(P); |
| 152 | LP->cloneBasicBlockAnalysis(From, To, L); |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | /// deleteSimpleAnalysisValue - Invoke deleteAnalysisValue hook for all passes. |
| 157 | void LPPassManager::deleteSimpleAnalysisValue(Value *V, Loop *L) { |
Devang Patel | 575ec80 | 2009-03-25 23:57:48 +0000 | [diff] [blame] | 158 | if (BasicBlock *BB = dyn_cast<BasicBlock>(V)) { |
| 159 | for (BasicBlock::iterator BI = BB->begin(), BE = BB->end(); BI != BE; |
| 160 | ++BI) { |
| 161 | Instruction &I = *BI; |
| 162 | deleteSimpleAnalysisValue(&I, L); |
| 163 | } |
| 164 | } |
Devang Patel | c7e49c0 | 2007-07-31 08:00:57 +0000 | [diff] [blame] | 165 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
| 166 | Pass *P = getContainedPass(Index); |
| 167 | LoopPass *LP = dynamic_cast<LoopPass *>(P); |
| 168 | LP->deleteAnalysisValue(V, L); |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | |
Devang Patel | 643a79b | 2007-02-22 23:45:15 +0000 | [diff] [blame] | 173 | // Recurse through all subloops and all loops into LQ. |
Devang Patel | 3015972 | 2007-03-06 02:30:46 +0000 | [diff] [blame] | 174 | static void addLoopIntoQueue(Loop *L, std::deque<Loop *> &LQ) { |
Devang Patel | 622adea | 2007-03-06 19:50:49 +0000 | [diff] [blame] | 175 | LQ.push_back(L); |
Devang Patel | 643a79b | 2007-02-22 23:45:15 +0000 | [diff] [blame] | 176 | for (Loop::iterator I = L->begin(), E = L->end(); I != E; ++I) |
| 177 | addLoopIntoQueue(*I, LQ); |
Devang Patel | 643a79b | 2007-02-22 23:45:15 +0000 | [diff] [blame] | 178 | } |
| 179 | |
Devang Patel | c37177e | 2007-03-06 19:11:25 +0000 | [diff] [blame] | 180 | /// Pass Manager itself does not invalidate any analysis info. |
| 181 | void LPPassManager::getAnalysisUsage(AnalysisUsage &Info) const { |
| 182 | // LPPassManager needs LoopInfo. In the long term LoopInfo class will |
| 183 | // become part of LPPassManager. |
| 184 | Info.addRequired<LoopInfo>(); |
| 185 | Info.setPreservesAll(); |
| 186 | } |
| 187 | |
Devang Patel | 16a31c4 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 188 | /// run - Execute all of the passes scheduled for execution. Keep track of |
| 189 | /// whether any of the passes modifies the function, and if so, return true. |
| 190 | bool LPPassManager::runOnFunction(Function &F) { |
Devang Patel | c37177e | 2007-03-06 19:11:25 +0000 | [diff] [blame] | 191 | LI = &getAnalysis<LoopInfo>(); |
Devang Patel | 16a31c4 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 192 | bool Changed = false; |
| 193 | |
Devang Patel | 70c09c5 | 2008-07-03 07:02:30 +0000 | [diff] [blame] | 194 | // Collect inherited analysis from Module level pass manager. |
| 195 | populateInheritedAnalysis(TPM->activeStack); |
| 196 | |
Devang Patel | 643a79b | 2007-02-22 23:45:15 +0000 | [diff] [blame] | 197 | // Populate Loop Queue |
Devang Patel | c37177e | 2007-03-06 19:11:25 +0000 | [diff] [blame] | 198 | for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I) |
Devang Patel | 643a79b | 2007-02-22 23:45:15 +0000 | [diff] [blame] | 199 | addLoopIntoQueue(*I, LQ); |
| 200 | |
Torok Edwin | 1970a89 | 2009-06-29 18:49:09 +0000 | [diff] [blame] | 201 | if (LQ.empty()) // No loops, skip calling finalizers |
| 202 | return false; |
| 203 | |
Devang Patel | a5057d0 | 2007-03-06 16:59:03 +0000 | [diff] [blame] | 204 | // Initialization |
| 205 | for (std::deque<Loop *>::const_iterator I = LQ.begin(), E = LQ.end(); |
| 206 | I != E; ++I) { |
| 207 | Loop *L = *I; |
| 208 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
| 209 | Pass *P = getContainedPass(Index); |
| 210 | LoopPass *LP = dynamic_cast<LoopPass *>(P); |
| 211 | if (LP) |
| 212 | Changed |= LP->doInitialization(L, *this); |
| 213 | } |
| 214 | } |
| 215 | |
Devang Patel | 16a31c4 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 216 | // Walk Loops |
Devang Patel | 3015972 | 2007-03-06 02:30:46 +0000 | [diff] [blame] | 217 | while (!LQ.empty()) { |
Devang Patel | 643a79b | 2007-02-22 23:45:15 +0000 | [diff] [blame] | 218 | |
Devang Patel | 7a9a069 | 2007-03-06 18:38:33 +0000 | [diff] [blame] | 219 | CurrentLoop = LQ.back(); |
Devang Patel | 5afdc7d | 2007-02-23 00:10:16 +0000 | [diff] [blame] | 220 | skipThisLoop = false; |
Devang Patel | 8ded585 | 2007-02-23 00:16:44 +0000 | [diff] [blame] | 221 | redoThisLoop = false; |
Devang Patel | 5afdc7d | 2007-02-23 00:10:16 +0000 | [diff] [blame] | 222 | |
Dan Gohman | 1edaef6 | 2009-09-27 23:52:07 +0000 | [diff] [blame] | 223 | // Run all passes on the current Loop. |
Devang Patel | 16a31c4 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 224 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
Devang Patel | 16a31c4 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 225 | Pass *P = getContainedPass(Index); |
Devang Patel | 16a31c4 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 226 | |
Devang Patel | 7f99761 | 2007-03-05 20:01:30 +0000 | [diff] [blame] | 227 | dumpPassInfo(P, EXECUTION_MSG, ON_LOOP_MSG, ""); |
Chris Lattner | 0dabb7e | 2008-08-08 15:14:09 +0000 | [diff] [blame] | 228 | dumpRequiredSet(P); |
Devang Patel | 16a31c4 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 229 | |
| 230 | initializeAnalysisImpl(P); |
| 231 | |
Devang Patel | 16a31c4 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 232 | LoopPass *LP = dynamic_cast<LoopPass *>(P); |
Dan Gohman | f3f0c89 | 2009-09-28 00:10:28 +0000 | [diff] [blame] | 233 | assert(LP && "Invalid LPPassManager member"); |
Chris Lattner | d6f1658 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 234 | { |
| 235 | PassManagerPrettyStackEntry X(LP, *CurrentLoop->getHeader()); |
Dan Gohman | 5c12ada | 2009-09-28 00:07:05 +0000 | [diff] [blame] | 236 | Timer *T = StartPassTimer(P); |
Chris Lattner | d6f1658 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 237 | Changed |= LP->runOnLoop(CurrentLoop, *this); |
Dan Gohman | 5c12ada | 2009-09-28 00:07:05 +0000 | [diff] [blame] | 238 | StopPassTimer(P, T); |
Chris Lattner | d6f1658 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 239 | } |
Devang Patel | 16a31c4 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 240 | |
| 241 | if (Changed) |
Devang Patel | 7f99761 | 2007-03-05 20:01:30 +0000 | [diff] [blame] | 242 | dumpPassInfo(P, MODIFICATION_MSG, ON_LOOP_MSG, ""); |
Chris Lattner | 0dabb7e | 2008-08-08 15:14:09 +0000 | [diff] [blame] | 243 | dumpPreservedSet(P); |
Devang Patel | 58e0ef1 | 2007-07-19 18:02:32 +0000 | [diff] [blame] | 244 | |
Dan Gohman | 9450b0e | 2009-09-28 00:27:48 +0000 | [diff] [blame^] | 245 | if (!skipThisLoop) { |
| 246 | // Manually check that this loop is still healthy. This is done |
| 247 | // instead of relying on LoopInfo::verifyLoop since LoopInfo |
| 248 | // is a function pass and it's really expensive to verify every |
| 249 | // loop in the function every time. That level of checking can be |
| 250 | // enabled with the -verify-loop-info option. |
| 251 | Timer *T = StartPassTimer(LI); |
| 252 | CurrentLoop->verifyLoop(); |
| 253 | StopPassTimer(LI, T); |
| 254 | |
| 255 | // Then call the regular verifyAnalysis functions. |
Dan Gohman | dd12de6 | 2009-09-03 15:09:24 +0000 | [diff] [blame] | 256 | verifyPreservedAnalysis(LP); |
Dan Gohman | 9450b0e | 2009-09-28 00:27:48 +0000 | [diff] [blame^] | 257 | } |
Dan Gohman | dd12de6 | 2009-09-03 15:09:24 +0000 | [diff] [blame] | 258 | |
Devang Patel | 16a31c4 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 259 | removeNotPreservedAnalysis(P); |
| 260 | recordAvailableAnalysis(P); |
Devang Patel | 7f99761 | 2007-03-05 20:01:30 +0000 | [diff] [blame] | 261 | removeDeadPasses(P, "", ON_LOOP_MSG); |
Devang Patel | 5afdc7d | 2007-02-23 00:10:16 +0000 | [diff] [blame] | 262 | |
| 263 | if (skipThisLoop) |
| 264 | // Do not run other passes on this loop. |
| 265 | break; |
Devang Patel | 16a31c4 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 266 | } |
Devang Patel | 643a79b | 2007-02-22 23:45:15 +0000 | [diff] [blame] | 267 | |
Dan Gohman | 9702901 | 2009-09-27 23:43:07 +0000 | [diff] [blame] | 268 | // If the loop was deleted, release all the loop passes. This frees up |
| 269 | // some memory, and avoids trouble with the pass manager trying to call |
| 270 | // verifyAnalysis on them. |
| 271 | if (skipThisLoop) |
| 272 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
| 273 | Pass *P = getContainedPass(Index); |
| 274 | freePass(P, "", ON_LOOP_MSG); |
| 275 | } |
| 276 | |
Devang Patel | 643a79b | 2007-02-22 23:45:15 +0000 | [diff] [blame] | 277 | // Pop the loop from queue after running all passes. |
Devang Patel | 3015972 | 2007-03-06 02:30:46 +0000 | [diff] [blame] | 278 | LQ.pop_back(); |
Devang Patel | 8ded585 | 2007-02-23 00:16:44 +0000 | [diff] [blame] | 279 | |
| 280 | if (redoThisLoop) |
Devang Patel | 7a9a069 | 2007-03-06 18:38:33 +0000 | [diff] [blame] | 281 | LQ.push_back(CurrentLoop); |
Devang Patel | 16a31c4 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 282 | } |
Devang Patel | a5057d0 | 2007-03-06 16:59:03 +0000 | [diff] [blame] | 283 | |
| 284 | // Finalization |
| 285 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
| 286 | Pass *P = getContainedPass(Index); |
| 287 | LoopPass *LP = dynamic_cast <LoopPass *>(P); |
| 288 | if (LP) |
| 289 | Changed |= LP->doFinalization(); |
| 290 | } |
Devang Patel | 16a31c4 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 291 | |
| 292 | return Changed; |
| 293 | } |
| 294 | |
Dan Gohman | 189c635 | 2009-02-17 19:41:26 +0000 | [diff] [blame] | 295 | /// Print passes managed by this manager |
| 296 | void LPPassManager::dumpPassStructure(unsigned Offset) { |
Chris Lattner | 103289e | 2009-08-23 07:19:13 +0000 | [diff] [blame] | 297 | errs().indent(Offset*2) << "Loop Pass Manager\n"; |
Dan Gohman | 189c635 | 2009-02-17 19:41:26 +0000 | [diff] [blame] | 298 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
| 299 | Pass *P = getContainedPass(Index); |
| 300 | P->dumpPassStructure(Offset + 1); |
| 301 | dumpLastUses(P, Offset+1); |
| 302 | } |
| 303 | } |
| 304 | |
Devang Patel | 16a31c4 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 305 | |
Devang Patel | bfd5905 | 2007-02-23 00:36:57 +0000 | [diff] [blame] | 306 | //===----------------------------------------------------------------------===// |
| 307 | // LoopPass |
| 308 | |
Devang Patel | 22033be | 2007-03-06 17:59:37 +0000 | [diff] [blame] | 309 | // Check if this pass is suitable for the current LPPassManager, if |
| 310 | // available. This pass P is not suitable for a LPPassManager if P |
| 311 | // is not preserving higher level analysis info used by other |
| 312 | // LPPassManager passes. In such case, pop LPPassManager from the |
| 313 | // stack. This will force assignPassManager() to create new |
| 314 | // LPPassManger as expected. |
| 315 | void LoopPass::preparePassManager(PMStack &PMS) { |
| 316 | |
| 317 | // Find LPPassManager |
Duncan Sands | 20d824b | 2007-07-19 09:42:01 +0000 | [diff] [blame] | 318 | while (!PMS.empty() && |
| 319 | PMS.top()->getPassManagerType() > PMT_LoopPassManager) |
| 320 | PMS.pop(); |
Devang Patel | 22033be | 2007-03-06 17:59:37 +0000 | [diff] [blame] | 321 | |
| 322 | LPPassManager *LPPM = dynamic_cast<LPPassManager *>(PMS.top()); |
| 323 | |
| 324 | // If this pass is destroying high level information that is used |
| 325 | // by other passes that are managed by LPM then do not insert |
| 326 | // this pass in current LPM. Use new LPPassManager. |
| 327 | if (LPPM && !LPPM->preserveHigherLevelAnalysis(this)) |
| 328 | PMS.pop(); |
| 329 | } |
| 330 | |
Devang Patel | bfd5905 | 2007-02-23 00:36:57 +0000 | [diff] [blame] | 331 | /// Assign pass manager to manage this pass. |
| 332 | void LoopPass::assignPassManager(PMStack &PMS, |
| 333 | PassManagerType PreferredType) { |
| 334 | // Find LPPassManager |
Duncan Sands | 20d824b | 2007-07-19 09:42:01 +0000 | [diff] [blame] | 335 | while (!PMS.empty() && |
| 336 | PMS.top()->getPassManagerType() > PMT_LoopPassManager) |
| 337 | PMS.pop(); |
Devang Patel | bfd5905 | 2007-02-23 00:36:57 +0000 | [diff] [blame] | 338 | |
| 339 | LPPassManager *LPPM = dynamic_cast<LPPassManager *>(PMS.top()); |
| 340 | |
| 341 | // Create new Loop Pass Manager if it does not exist. |
| 342 | if (!LPPM) { |
| 343 | |
| 344 | assert (!PMS.empty() && "Unable to create Loop Pass Manager"); |
| 345 | PMDataManager *PMD = PMS.top(); |
| 346 | |
| 347 | // [1] Create new Call Graph Pass Manager |
| 348 | LPPM = new LPPassManager(PMD->getDepth() + 1); |
Devang Patel | 1bc8936 | 2007-03-07 00:26:10 +0000 | [diff] [blame] | 349 | LPPM->populateInheritedAnalysis(PMS); |
Devang Patel | bfd5905 | 2007-02-23 00:36:57 +0000 | [diff] [blame] | 350 | |
| 351 | // [2] Set up new manager's top level manager |
| 352 | PMTopLevelManager *TPM = PMD->getTopLevelManager(); |
| 353 | TPM->addIndirectPassManager(LPPM); |
| 354 | |
| 355 | // [3] Assign manager to manage this new manager. This may create |
| 356 | // and push new managers into PMS |
| 357 | Pass *P = dynamic_cast<Pass *>(LPPM); |
Devang Patel | c37177e | 2007-03-06 19:11:25 +0000 | [diff] [blame] | 358 | TPM->schedulePass(P); |
Devang Patel | bfd5905 | 2007-02-23 00:36:57 +0000 | [diff] [blame] | 359 | |
| 360 | // [4] Push new manager into PMS |
| 361 | PMS.push(LPPM); |
| 362 | } |
| 363 | |
| 364 | LPPM->add(this); |
| 365 | } |