Devang Patel | 20525d2 | 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 | f3ebc3f | 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 | 20525d2 | 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" |
Chandler Carruth | b8ddc70 | 2014-01-12 11:10:32 +0000 | [diff] [blame] | 17 | #include "llvm/IR/IRPrintingPasses.h" |
Juergen Ributzka | 34390c7 | 2014-05-16 02:33:15 +0000 | [diff] [blame] | 18 | #include "llvm/IR/LLVMContext.h" |
Andrew Kaylor | aa641a5 | 2016-04-22 22:06:11 +0000 | [diff] [blame] | 19 | #include "llvm/IR/OptBisect.h" |
Justin Bogner | c2b98f0 | 2015-11-04 22:24:08 +0000 | [diff] [blame] | 20 | #include "llvm/IR/PassManager.h" |
David Greene | 9b063df | 2010-04-02 23:17:14 +0000 | [diff] [blame] | 21 | #include "llvm/Support/Debug.h" |
Chris Lattner | 707431c | 2010-03-30 04:03:22 +0000 | [diff] [blame] | 22 | #include "llvm/Support/Timer.h" |
Benjamin Kramer | 16132e6 | 2015-03-23 18:07:13 +0000 | [diff] [blame] | 23 | #include "llvm/Support/raw_ostream.h" |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 24 | using namespace llvm; |
| 25 | |
Chandler Carruth | e96dd89 | 2014-04-21 22:55:11 +0000 | [diff] [blame] | 26 | #define DEBUG_TYPE "loop-pass-manager" |
| 27 | |
David Greene | 9b063df | 2010-04-02 23:17:14 +0000 | [diff] [blame] | 28 | namespace { |
| 29 | |
| 30 | /// PrintLoopPass - Print a Function corresponding to a Loop. |
| 31 | /// |
Justin Bogner | c2b98f0 | 2015-11-04 22:24:08 +0000 | [diff] [blame] | 32 | class PrintLoopPassWrapper : public LoopPass { |
| 33 | PrintLoopPass P; |
David Greene | 9b063df | 2010-04-02 23:17:14 +0000 | [diff] [blame] | 34 | |
| 35 | public: |
| 36 | static char ID; |
Justin Bogner | c2b98f0 | 2015-11-04 22:24:08 +0000 | [diff] [blame] | 37 | PrintLoopPassWrapper() : LoopPass(ID) {} |
| 38 | PrintLoopPassWrapper(raw_ostream &OS, const std::string &Banner) |
| 39 | : LoopPass(ID), P(OS, Banner) {} |
David Greene | 9b063df | 2010-04-02 23:17:14 +0000 | [diff] [blame] | 40 | |
Craig Topper | e9ba759 | 2014-03-05 07:30:04 +0000 | [diff] [blame] | 41 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
David Greene | 9b063df | 2010-04-02 23:17:14 +0000 | [diff] [blame] | 42 | AU.setPreservesAll(); |
| 43 | } |
| 44 | |
Craig Topper | e9ba759 | 2014-03-05 07:30:04 +0000 | [diff] [blame] | 45 | bool runOnLoop(Loop *L, LPPassManager &) override { |
Weiming Zhao | 0f1762c | 2016-01-06 22:55:03 +0000 | [diff] [blame] | 46 | auto BBI = find_if(L->blocks().begin(), L->blocks().end(), |
| 47 | [](BasicBlock *BB) { return BB; }); |
| 48 | if (BBI != L->blocks().end() && |
Chandler Carruth | 164a2aa6 | 2016-06-17 00:11:01 +0000 | [diff] [blame^] | 49 | isFunctionInPrintList((*BBI)->getParent()->getName())) { |
| 50 | AnalysisManager<Loop> DummyLAM; |
| 51 | P.run(*L, DummyLAM); |
| 52 | } |
David Greene | 9b063df | 2010-04-02 23:17:14 +0000 | [diff] [blame] | 53 | return false; |
| 54 | } |
| 55 | }; |
| 56 | |
Justin Bogner | c2b98f0 | 2015-11-04 22:24:08 +0000 | [diff] [blame] | 57 | char PrintLoopPassWrapper::ID = 0; |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 58 | } |
David Greene | 9b063df | 2010-04-02 23:17:14 +0000 | [diff] [blame] | 59 | |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 60 | //===----------------------------------------------------------------------===// |
| 61 | // LPPassManager |
| 62 | // |
Devang Patel | 09f162c | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 63 | |
Devang Patel | 8c78a0b | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 64 | char LPPassManager::ID = 0; |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 65 | |
Andrew Trick | 0896621 | 2011-08-29 17:07:00 +0000 | [diff] [blame] | 66 | LPPassManager::LPPassManager() |
| 67 | : FunctionPass(ID), PMDataManager() { |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 68 | LI = nullptr; |
| 69 | CurrentLoop = nullptr; |
Devang Patel | de7d490 | 2007-02-22 23:30:07 +0000 | [diff] [blame] | 70 | } |
| 71 | |
Devang Patel | ef7ac13 | 2007-03-06 19:00:02 +0000 | [diff] [blame] | 72 | // Inset loop into loop nest (LoopInfo) and loop queue (LQ). |
Justin Bogner | 35e46cd | 2015-10-22 21:21:32 +0000 | [diff] [blame] | 73 | Loop &LPPassManager::addLoop(Loop *ParentLoop) { |
| 74 | // Create a new loop. LI will take ownership. |
| 75 | Loop *L = new Loop(); |
Devang Patel | ef7ac13 | 2007-03-06 19:00:02 +0000 | [diff] [blame] | 76 | |
Justin Bogner | 35e46cd | 2015-10-22 21:21:32 +0000 | [diff] [blame] | 77 | // Insert into the loop nest and the loop queue. |
| 78 | if (!ParentLoop) { |
| 79 | // This is the top level loop. |
Devang Patel | ef7ac13 | 2007-03-06 19:00:02 +0000 | [diff] [blame] | 80 | LI->addTopLevelLoop(L); |
Devang Patel | ef7ac13 | 2007-03-06 19:00:02 +0000 | [diff] [blame] | 81 | LQ.push_front(L); |
Justin Bogner | 35e46cd | 2015-10-22 21:21:32 +0000 | [diff] [blame] | 82 | return *L; |
| 83 | } |
| 84 | |
| 85 | ParentLoop->addChildLoop(L); |
| 86 | // Insert L into the loop queue after the parent loop. |
| 87 | for (auto I = LQ.begin(), E = LQ.end(); I != E; ++I) { |
| 88 | if (*I == L->getParentLoop()) { |
| 89 | // deque does not support insert after. |
| 90 | ++I; |
| 91 | LQ.insert(I, 1, L); |
| 92 | break; |
Devang Patel | ef7ac13 | 2007-03-06 19:00:02 +0000 | [diff] [blame] | 93 | } |
| 94 | } |
Justin Bogner | 35e46cd | 2015-10-22 21:21:32 +0000 | [diff] [blame] | 95 | return *L; |
Devang Patel | ef7ac13 | 2007-03-06 19:00:02 +0000 | [diff] [blame] | 96 | } |
| 97 | |
Devang Patel | cc2b233 | 2007-07-31 08:00:57 +0000 | [diff] [blame] | 98 | /// cloneBasicBlockSimpleAnalysis - Invoke cloneBasicBlockAnalysis hook for |
| 99 | /// all loop passes. |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 100 | void LPPassManager::cloneBasicBlockSimpleAnalysis(BasicBlock *From, |
Devang Patel | cc2b233 | 2007-07-31 08:00:57 +0000 | [diff] [blame] | 101 | BasicBlock *To, Loop *L) { |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 102 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
Dan Gohman | a97e78b | 2010-08-11 20:34:43 +0000 | [diff] [blame] | 103 | LoopPass *LP = getContainedPass(Index); |
Devang Patel | cc2b233 | 2007-07-31 08:00:57 +0000 | [diff] [blame] | 104 | LP->cloneBasicBlockAnalysis(From, To, L); |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | /// deleteSimpleAnalysisValue - Invoke deleteAnalysisValue hook for all passes. |
| 109 | void LPPassManager::deleteSimpleAnalysisValue(Value *V, Loop *L) { |
Devang Patel | 4555618 | 2009-03-25 23:57:48 +0000 | [diff] [blame] | 110 | if (BasicBlock *BB = dyn_cast<BasicBlock>(V)) { |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 111 | for (BasicBlock::iterator BI = BB->begin(), BE = BB->end(); BI != BE; |
Devang Patel | 4555618 | 2009-03-25 23:57:48 +0000 | [diff] [blame] | 112 | ++BI) { |
| 113 | Instruction &I = *BI; |
| 114 | deleteSimpleAnalysisValue(&I, L); |
| 115 | } |
| 116 | } |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 117 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
Dan Gohman | a97e78b | 2010-08-11 20:34:43 +0000 | [diff] [blame] | 118 | LoopPass *LP = getContainedPass(Index); |
Devang Patel | cc2b233 | 2007-07-31 08:00:57 +0000 | [diff] [blame] | 119 | LP->deleteAnalysisValue(V, L); |
| 120 | } |
| 121 | } |
| 122 | |
David Peixotto | 0d4d5e6 | 2014-09-24 16:48:31 +0000 | [diff] [blame] | 123 | /// Invoke deleteAnalysisLoop hook for all passes. |
| 124 | void LPPassManager::deleteSimpleAnalysisLoop(Loop *L) { |
| 125 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
| 126 | LoopPass *LP = getContainedPass(Index); |
| 127 | LP->deleteAnalysisLoop(L); |
| 128 | } |
| 129 | } |
| 130 | |
Devang Patel | cc2b233 | 2007-07-31 08:00:57 +0000 | [diff] [blame] | 131 | |
Devang Patel | 5170571 | 2007-02-22 23:45:15 +0000 | [diff] [blame] | 132 | // Recurse through all subloops and all loops into LQ. |
Devang Patel | a8c81c52 | 2007-03-06 02:30:46 +0000 | [diff] [blame] | 133 | static void addLoopIntoQueue(Loop *L, std::deque<Loop *> &LQ) { |
Devang Patel | db0db97 | 2007-03-06 19:50:49 +0000 | [diff] [blame] | 134 | LQ.push_back(L); |
Andrew Trick | fb2ba3e | 2012-06-26 04:11:38 +0000 | [diff] [blame] | 135 | for (Loop::reverse_iterator I = L->rbegin(), E = L->rend(); I != E; ++I) |
Devang Patel | 5170571 | 2007-02-22 23:45:15 +0000 | [diff] [blame] | 136 | addLoopIntoQueue(*I, LQ); |
Devang Patel | 5170571 | 2007-02-22 23:45:15 +0000 | [diff] [blame] | 137 | } |
| 138 | |
Devang Patel | 4a8725c | 2007-03-06 19:11:25 +0000 | [diff] [blame] | 139 | /// Pass Manager itself does not invalidate any analysis info. |
| 140 | void LPPassManager::getAnalysisUsage(AnalysisUsage &Info) const { |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 141 | // LPPassManager needs LoopInfo. In the long term LoopInfo class will |
Devang Patel | 4a8725c | 2007-03-06 19:11:25 +0000 | [diff] [blame] | 142 | // become part of LPPassManager. |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 143 | Info.addRequired<LoopInfoWrapperPass>(); |
Devang Patel | 4a8725c | 2007-03-06 19:11:25 +0000 | [diff] [blame] | 144 | Info.setPreservesAll(); |
| 145 | } |
| 146 | |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 147 | /// run - Execute all of the passes scheduled for execution. Keep track of |
| 148 | /// whether any of the passes modifies the function, and if so, return true. |
| 149 | bool LPPassManager::runOnFunction(Function &F) { |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 150 | auto &LIWP = getAnalysis<LoopInfoWrapperPass>(); |
| 151 | LI = &LIWP.getLoopInfo(); |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 152 | bool Changed = false; |
| 153 | |
Devang Patel | 874a3a0 | 2008-07-03 07:02:30 +0000 | [diff] [blame] | 154 | // Collect inherited analysis from Module level pass manager. |
| 155 | populateInheritedAnalysis(TPM->activeStack); |
| 156 | |
Andrew Trick | fb2ba3e | 2012-06-26 04:11:38 +0000 | [diff] [blame] | 157 | // Populate the loop queue in reverse program order. There is no clear need to |
| 158 | // process sibling loops in either forward or reverse order. There may be some |
| 159 | // advantage in deleting uses in a later loop before optimizing the |
| 160 | // definitions in an earlier loop. If we find a clear reason to process in |
| 161 | // forward order, then a forward variant of LoopPassManager should be created. |
Andrew Trick | b5f3c44 | 2013-07-20 23:10:31 +0000 | [diff] [blame] | 162 | // |
| 163 | // Note that LoopInfo::iterator visits loops in reverse program |
| 164 | // order. Here, reverse_iterator gives us a forward order, and the LoopQueue |
| 165 | // reverses the order a third time by popping from the back. |
Andrew Trick | fb2ba3e | 2012-06-26 04:11:38 +0000 | [diff] [blame] | 166 | for (LoopInfo::reverse_iterator I = LI->rbegin(), E = LI->rend(); I != E; ++I) |
Devang Patel | 5170571 | 2007-02-22 23:45:15 +0000 | [diff] [blame] | 167 | addLoopIntoQueue(*I, LQ); |
| 168 | |
Torok Edwin | 24c7835 | 2009-06-29 18:49:09 +0000 | [diff] [blame] | 169 | if (LQ.empty()) // No loops, skip calling finalizers |
| 170 | return false; |
| 171 | |
Devang Patel | 84ffc22 | 2007-03-06 16:59:03 +0000 | [diff] [blame] | 172 | // Initialization |
| 173 | for (std::deque<Loop *>::const_iterator I = LQ.begin(), E = LQ.end(); |
| 174 | I != E; ++I) { |
| 175 | Loop *L = *I; |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 176 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
Dan Gohman | a97e78b | 2010-08-11 20:34:43 +0000 | [diff] [blame] | 177 | LoopPass *P = getContainedPass(Index); |
Chris Lattner | 9efd4fc | 2010-01-22 05:37:10 +0000 | [diff] [blame] | 178 | Changed |= P->doInitialization(L, *this); |
Devang Patel | 84ffc22 | 2007-03-06 16:59:03 +0000 | [diff] [blame] | 179 | } |
| 180 | } |
| 181 | |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 182 | // Walk Loops |
Devang Patel | a8c81c52 | 2007-03-06 02:30:46 +0000 | [diff] [blame] | 183 | while (!LQ.empty()) { |
Justin Bogner | e9fb228d | 2016-01-08 19:08:53 +0000 | [diff] [blame] | 184 | bool LoopWasDeleted = false; |
Justin Bogner | 6e9810c | 2015-12-16 00:01:02 +0000 | [diff] [blame] | 185 | CurrentLoop = LQ.back(); |
Justin Bogner | e9fb228d | 2016-01-08 19:08:53 +0000 | [diff] [blame] | 186 | |
Dan Gohman | b0934cd | 2009-09-27 23:52:07 +0000 | [diff] [blame] | 187 | // Run all passes on the current Loop. |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 188 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
Dan Gohman | a97e78b | 2010-08-11 20:34:43 +0000 | [diff] [blame] | 189 | LoopPass *P = getContainedPass(Index); |
Eric Christopher | 3c0d516 | 2012-03-23 03:54:05 +0000 | [diff] [blame] | 190 | |
Dan Gohman | 0bd312a | 2009-09-28 15:07:18 +0000 | [diff] [blame] | 191 | dumpPassInfo(P, EXECUTION_MSG, ON_LOOP_MSG, |
Benjamin Kramer | f4512a3 | 2010-03-31 16:06:22 +0000 | [diff] [blame] | 192 | CurrentLoop->getHeader()->getName()); |
Chris Lattner | 4c493d9 | 2008-08-08 15:14:09 +0000 | [diff] [blame] | 193 | dumpRequiredSet(P); |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 194 | |
| 195 | initializeAnalysisImpl(P); |
Eric Christopher | 3c0d516 | 2012-03-23 03:54:05 +0000 | [diff] [blame] | 196 | |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 197 | { |
Chris Lattner | 9efd4fc | 2010-01-22 05:37:10 +0000 | [diff] [blame] | 198 | PassManagerPrettyStackEntry X(P, *CurrentLoop->getHeader()); |
Chris Lattner | 707431c | 2010-03-30 04:03:22 +0000 | [diff] [blame] | 199 | TimeRegion PassTimer(getPassTimer(P)); |
| 200 | |
Chris Lattner | 9efd4fc | 2010-01-22 05:37:10 +0000 | [diff] [blame] | 201 | Changed |= P->runOnLoop(CurrentLoop, *this); |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 202 | } |
Justin Bogner | e9fb228d | 2016-01-08 19:08:53 +0000 | [diff] [blame] | 203 | LoopWasDeleted = CurrentLoop->isInvalid(); |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 204 | |
| 205 | if (Changed) |
Dan Gohman | 0bd312a | 2009-09-28 15:07:18 +0000 | [diff] [blame] | 206 | dumpPassInfo(P, MODIFICATION_MSG, ON_LOOP_MSG, |
Justin Bogner | e9fb228d | 2016-01-08 19:08:53 +0000 | [diff] [blame] | 207 | LoopWasDeleted ? "<deleted>" |
| 208 | : CurrentLoop->getHeader()->getName()); |
Chris Lattner | 4c493d9 | 2008-08-08 15:14:09 +0000 | [diff] [blame] | 209 | dumpPreservedSet(P); |
Devang Patel | a273d1c | 2007-07-19 18:02:32 +0000 | [diff] [blame] | 210 | |
Justin Bogner | e9fb228d | 2016-01-08 19:08:53 +0000 | [diff] [blame] | 211 | if (LoopWasDeleted) { |
Justin Bogner | 6e9810c | 2015-12-16 00:01:02 +0000 | [diff] [blame] | 212 | // Notify passes that the loop is being deleted. |
| 213 | deleteSimpleAnalysisLoop(CurrentLoop); |
| 214 | } else { |
Dan Gohman | 4dbb301 | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 215 | // Manually check that this loop is still healthy. This is done |
| 216 | // instead of relying on LoopInfo::verifyLoop since LoopInfo |
| 217 | // is a function pass and it's really expensive to verify every |
| 218 | // loop in the function every time. That level of checking can be |
| 219 | // enabled with the -verify-loop-info option. |
Chris Lattner | 707431c | 2010-03-30 04:03:22 +0000 | [diff] [blame] | 220 | { |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 221 | TimeRegion PassTimer(getPassTimer(&LIWP)); |
Chris Lattner | 707431c | 2010-03-30 04:03:22 +0000 | [diff] [blame] | 222 | CurrentLoop->verifyLoop(); |
| 223 | } |
Dan Gohman | 4dbb301 | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 224 | |
| 225 | // Then call the regular verifyAnalysis functions. |
Chris Lattner | 9efd4fc | 2010-01-22 05:37:10 +0000 | [diff] [blame] | 226 | verifyPreservedAnalysis(P); |
Juergen Ributzka | 34390c7 | 2014-05-16 02:33:15 +0000 | [diff] [blame] | 227 | |
| 228 | F.getContext().yield(); |
Dan Gohman | 4dbb301 | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 229 | } |
Dan Gohman | 96a26bd | 2009-09-03 15:09:24 +0000 | [diff] [blame] | 230 | |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 231 | removeNotPreservedAnalysis(P); |
| 232 | recordAvailableAnalysis(P); |
Justin Bogner | e9fb228d | 2016-01-08 19:08:53 +0000 | [diff] [blame] | 233 | removeDeadPasses(P, LoopWasDeleted ? "<deleted>" |
| 234 | : CurrentLoop->getHeader()->getName(), |
Dan Gohman | 0bd312a | 2009-09-28 15:07:18 +0000 | [diff] [blame] | 235 | ON_LOOP_MSG); |
Devang Patel | 4e335c6 | 2007-02-23 00:10:16 +0000 | [diff] [blame] | 236 | |
Justin Bogner | e9fb228d | 2016-01-08 19:08:53 +0000 | [diff] [blame] | 237 | if (LoopWasDeleted) |
Devang Patel | 4e335c6 | 2007-02-23 00:10:16 +0000 | [diff] [blame] | 238 | // Do not run other passes on this loop. |
| 239 | break; |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 240 | } |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 241 | |
Dan Gohman | 37a99664 | 2009-09-27 23:43:07 +0000 | [diff] [blame] | 242 | // If the loop was deleted, release all the loop passes. This frees up |
| 243 | // some memory, and avoids trouble with the pass manager trying to call |
| 244 | // verifyAnalysis on them. |
Justin Bogner | e9fb228d | 2016-01-08 19:08:53 +0000 | [diff] [blame] | 245 | if (LoopWasDeleted) { |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 246 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
Dan Gohman | 37a99664 | 2009-09-27 23:43:07 +0000 | [diff] [blame] | 247 | Pass *P = getContainedPass(Index); |
Dan Gohman | 0bd312a | 2009-09-28 15:07:18 +0000 | [diff] [blame] | 248 | freePass(P, "<deleted>", ON_LOOP_MSG); |
Dan Gohman | 37a99664 | 2009-09-27 23:43:07 +0000 | [diff] [blame] | 249 | } |
Justin Bogner | 6e9810c | 2015-12-16 00:01:02 +0000 | [diff] [blame] | 250 | } |
Dan Gohman | 37a99664 | 2009-09-27 23:43:07 +0000 | [diff] [blame] | 251 | |
Devang Patel | 5170571 | 2007-02-22 23:45:15 +0000 | [diff] [blame] | 252 | // Pop the loop from queue after running all passes. |
Devang Patel | a8c81c52 | 2007-03-06 02:30:46 +0000 | [diff] [blame] | 253 | LQ.pop_back(); |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 254 | } |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 255 | |
Devang Patel | 84ffc22 | 2007-03-06 16:59:03 +0000 | [diff] [blame] | 256 | // Finalization |
| 257 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
Dan Gohman | a97e78b | 2010-08-11 20:34:43 +0000 | [diff] [blame] | 258 | LoopPass *P = getContainedPass(Index); |
Chris Lattner | 9efd4fc | 2010-01-22 05:37:10 +0000 | [diff] [blame] | 259 | Changed |= P->doFinalization(); |
Devang Patel | 84ffc22 | 2007-03-06 16:59:03 +0000 | [diff] [blame] | 260 | } |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 261 | |
| 262 | return Changed; |
| 263 | } |
| 264 | |
Dan Gohman | 143206d | 2009-02-17 19:41:26 +0000 | [diff] [blame] | 265 | /// Print passes managed by this manager |
| 266 | void LPPassManager::dumpPassStructure(unsigned Offset) { |
Chris Lattner | 4883d90 | 2009-08-23 07:19:13 +0000 | [diff] [blame] | 267 | errs().indent(Offset*2) << "Loop Pass Manager\n"; |
Dan Gohman | 143206d | 2009-02-17 19:41:26 +0000 | [diff] [blame] | 268 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
| 269 | Pass *P = getContainedPass(Index); |
Dan Gohman | f71c521 | 2010-08-19 01:29:07 +0000 | [diff] [blame] | 270 | P->dumpPassStructure(Offset + 1); |
Dan Gohman | 143206d | 2009-02-17 19:41:26 +0000 | [diff] [blame] | 271 | dumpLastUses(P, Offset+1); |
| 272 | } |
| 273 | } |
| 274 | |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 275 | |
Devang Patel | 55c3827 | 2007-02-23 00:36:57 +0000 | [diff] [blame] | 276 | //===----------------------------------------------------------------------===// |
| 277 | // LoopPass |
| 278 | |
David Greene | 9b063df | 2010-04-02 23:17:14 +0000 | [diff] [blame] | 279 | Pass *LoopPass::createPrinterPass(raw_ostream &O, |
| 280 | const std::string &Banner) const { |
Justin Bogner | c2b98f0 | 2015-11-04 22:24:08 +0000 | [diff] [blame] | 281 | return new PrintLoopPassWrapper(O, Banner); |
David Greene | 9b063df | 2010-04-02 23:17:14 +0000 | [diff] [blame] | 282 | } |
| 283 | |
Devang Patel | 1699384 | 2007-03-06 17:59:37 +0000 | [diff] [blame] | 284 | // Check if this pass is suitable for the current LPPassManager, if |
| 285 | // available. This pass P is not suitable for a LPPassManager if P |
| 286 | // is not preserving higher level analysis info used by other |
| 287 | // LPPassManager passes. In such case, pop LPPassManager from the |
| 288 | // stack. This will force assignPassManager() to create new |
| 289 | // LPPassManger as expected. |
| 290 | void LoopPass::preparePassManager(PMStack &PMS) { |
| 291 | |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 292 | // Find LPPassManager |
Duncan Sands | 60f28bf | 2007-07-19 09:42:01 +0000 | [diff] [blame] | 293 | while (!PMS.empty() && |
| 294 | PMS.top()->getPassManagerType() > PMT_LoopPassManager) |
| 295 | PMS.pop(); |
Devang Patel | 1699384 | 2007-03-06 17:59:37 +0000 | [diff] [blame] | 296 | |
Devang Patel | 1699384 | 2007-03-06 17:59:37 +0000 | [diff] [blame] | 297 | // If this pass is destroying high level information that is used |
| 298 | // by other passes that are managed by LPM then do not insert |
| 299 | // this pass in current LPM. Use new LPPassManager. |
Chris Lattner | 9efd4fc | 2010-01-22 05:37:10 +0000 | [diff] [blame] | 300 | if (PMS.top()->getPassManagerType() == PMT_LoopPassManager && |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 301 | !PMS.top()->preserveHigherLevelAnalysis(this)) |
Devang Patel | 1699384 | 2007-03-06 17:59:37 +0000 | [diff] [blame] | 302 | PMS.pop(); |
| 303 | } |
| 304 | |
Devang Patel | 55c3827 | 2007-02-23 00:36:57 +0000 | [diff] [blame] | 305 | /// Assign pass manager to manage this pass. |
| 306 | void LoopPass::assignPassManager(PMStack &PMS, |
| 307 | PassManagerType PreferredType) { |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 308 | // Find LPPassManager |
Duncan Sands | 60f28bf | 2007-07-19 09:42:01 +0000 | [diff] [blame] | 309 | while (!PMS.empty() && |
| 310 | PMS.top()->getPassManagerType() > PMT_LoopPassManager) |
| 311 | PMS.pop(); |
Devang Patel | 55c3827 | 2007-02-23 00:36:57 +0000 | [diff] [blame] | 312 | |
Chris Lattner | 9efd4fc | 2010-01-22 05:37:10 +0000 | [diff] [blame] | 313 | LPPassManager *LPPM; |
| 314 | if (PMS.top()->getPassManagerType() == PMT_LoopPassManager) |
| 315 | LPPM = (LPPassManager*)PMS.top(); |
| 316 | else { |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 317 | // Create new Loop Pass Manager if it does not exist. |
Devang Patel | 55c3827 | 2007-02-23 00:36:57 +0000 | [diff] [blame] | 318 | assert (!PMS.empty() && "Unable to create Loop Pass Manager"); |
| 319 | PMDataManager *PMD = PMS.top(); |
| 320 | |
Andrew Trick | 0896621 | 2011-08-29 17:07:00 +0000 | [diff] [blame] | 321 | // [1] Create new Loop Pass Manager |
| 322 | LPPM = new LPPassManager(); |
Devang Patel | 901a27d | 2007-03-07 00:26:10 +0000 | [diff] [blame] | 323 | LPPM->populateInheritedAnalysis(PMS); |
Devang Patel | 55c3827 | 2007-02-23 00:36:57 +0000 | [diff] [blame] | 324 | |
| 325 | // [2] Set up new manager's top level manager |
| 326 | PMTopLevelManager *TPM = PMD->getTopLevelManager(); |
| 327 | TPM->addIndirectPassManager(LPPM); |
| 328 | |
| 329 | // [3] Assign manager to manage this new manager. This may create |
| 330 | // and push new managers into PMS |
Chris Lattner | 9efd4fc | 2010-01-22 05:37:10 +0000 | [diff] [blame] | 331 | Pass *P = LPPM->getAsPass(); |
Devang Patel | 4a8725c | 2007-03-06 19:11:25 +0000 | [diff] [blame] | 332 | TPM->schedulePass(P); |
Devang Patel | 55c3827 | 2007-02-23 00:36:57 +0000 | [diff] [blame] | 333 | |
| 334 | // [4] Push new manager into PMS |
| 335 | PMS.push(LPPM); |
| 336 | } |
| 337 | |
| 338 | LPPM->add(this); |
| 339 | } |
Paul Robinson | af4e64d | 2014-02-06 00:07:05 +0000 | [diff] [blame] | 340 | |
Andrew Kaylor | aa641a5 | 2016-04-22 22:06:11 +0000 | [diff] [blame] | 341 | bool LoopPass::skipLoop(const Loop *L) const { |
Paul Robinson | 0c12b1d2 | 2014-02-26 01:23:26 +0000 | [diff] [blame] | 342 | const Function *F = L->getHeader()->getParent(); |
Andrew Kaylor | aa641a5 | 2016-04-22 22:06:11 +0000 | [diff] [blame] | 343 | if (!F) |
| 344 | return false; |
| 345 | // Check the opt bisect limit. |
| 346 | LLVMContext &Context = F->getContext(); |
| 347 | if (!Context.getOptBisect().shouldRunPass(this, *L)) |
| 348 | return true; |
| 349 | // Check for the OptimizeNone attribute. |
| 350 | if (F->hasFnAttribute(Attribute::OptimizeNone)) { |
Paul Robinson | af4e64d | 2014-02-06 00:07:05 +0000 | [diff] [blame] | 351 | // FIXME: Report this to dbgs() only once per function. |
| 352 | DEBUG(dbgs() << "Skipping pass '" << getPassName() |
| 353 | << "' in function " << F->getName() << "\n"); |
| 354 | // FIXME: Delete loop from pass manager's queue? |
| 355 | return true; |
| 356 | } |
| 357 | return false; |
| 358 | } |