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