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