Chris Lattner | 44d2c35 | 2003-10-13 03:32:08 +0000 | [diff] [blame] | 1 | //===- LoopInfo.cpp - Natural Loop Calculator -----------------------------===// |
Misha Brukman | 01808ca | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 2 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 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. |
Misha Brukman | 01808ca | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 7 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 6de9942 | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 9 | // |
| 10 | // This file defines the LoopInfo class that is used to identify natural loops |
| 11 | // and determine the loop depth of various nodes of the CFG. Note that the |
| 12 | // loops identified may actually be several natural loops that share the same |
| 13 | // header node... not just a single natural loop. |
| 14 | // |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | |
Misha Brukman | 81804b4 | 2004-01-30 17:26:24 +0000 | [diff] [blame] | 17 | #include "llvm/Analysis/LoopInfo.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/DepthFirstIterator.h" |
Sanjoy Das | 09613b1 | 2017-09-20 02:31:57 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/ScopeExit.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/SmallPtrSet.h" |
Andrew Trick | cda51d4 | 2012-06-20 03:42:09 +0000 | [diff] [blame] | 21 | #include "llvm/Analysis/LoopInfoImpl.h" |
Andrew Trick | 78b40c3 | 2011-08-10 01:59:05 +0000 | [diff] [blame] | 22 | #include "llvm/Analysis/LoopIterator.h" |
Dan Gohman | 75d7d5e | 2011-12-14 23:49:11 +0000 | [diff] [blame] | 23 | #include "llvm/Analysis/ValueTracking.h" |
Chandler Carruth | 1305dc3 | 2014-03-04 11:45:46 +0000 | [diff] [blame] | 24 | #include "llvm/IR/CFG.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 25 | #include "llvm/IR/Constants.h" |
Hal Finkel | 2f68868 | 2016-05-25 21:42:37 +0000 | [diff] [blame] | 26 | #include "llvm/IR/DebugLoc.h" |
Chandler Carruth | 5ad5f15 | 2014-01-13 09:26:24 +0000 | [diff] [blame] | 27 | #include "llvm/IR/Dominators.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 28 | #include "llvm/IR/Instructions.h" |
Philip Reames | 5a3f5f7 | 2014-10-21 00:13:20 +0000 | [diff] [blame] | 29 | #include "llvm/IR/LLVMContext.h" |
Pekka Jaaskelainen | 0d23725 | 2013-02-13 18:08:57 +0000 | [diff] [blame] | 30 | #include "llvm/IR/Metadata.h" |
Chandler Carruth | aaf0b4c | 2015-01-20 10:58:50 +0000 | [diff] [blame] | 31 | #include "llvm/IR/PassManager.h" |
Dan Gohman | 4dbb301 | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 32 | #include "llvm/Support/CommandLine.h" |
Dan Gohman | c3f2137 | 2010-01-05 21:08:02 +0000 | [diff] [blame] | 33 | #include "llvm/Support/Debug.h" |
Benjamin Kramer | 799003b | 2015-03-23 19:32:43 +0000 | [diff] [blame] | 34 | #include "llvm/Support/raw_ostream.h" |
Chris Lattner | 6de9942 | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 35 | #include <algorithm> |
Chris Lattner | 55b7ef5 | 2004-04-12 20:26:17 +0000 | [diff] [blame] | 36 | using namespace llvm; |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 37 | |
Andrew Trick | cda51d4 | 2012-06-20 03:42:09 +0000 | [diff] [blame] | 38 | // Explicitly instantiate methods in LoopInfoImpl.h for IR-level Loops. |
| 39 | template class llvm::LoopBase<BasicBlock, Loop>; |
| 40 | template class llvm::LoopInfoBase<BasicBlock, Loop>; |
| 41 | |
Dan Gohman | 4dbb301 | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 42 | // Always verify loopinfo if expensive checking is enabled. |
Filipe Cabecinhas | 0da9937 | 2016-04-29 15:22:48 +0000 | [diff] [blame] | 43 | #ifdef EXPENSIVE_CHECKS |
Serge Pavlov | 69b3ff9 | 2017-01-24 05:52:07 +0000 | [diff] [blame] | 44 | bool llvm::VerifyLoopInfo = true; |
Dan Gohman | 4dbb301 | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 45 | #else |
Serge Pavlov | 69b3ff9 | 2017-01-24 05:52:07 +0000 | [diff] [blame] | 46 | bool llvm::VerifyLoopInfo = false; |
Dan Gohman | 4dbb301 | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 47 | #endif |
Sanjoy Das | 66a004a | 2017-09-20 01:12:09 +0000 | [diff] [blame] | 48 | static cl::opt<bool, true> |
| 49 | VerifyLoopInfoX("verify-loop-info", cl::location(VerifyLoopInfo), |
Zachary Turner | 8065f0b | 2017-12-01 00:53:10 +0000 | [diff] [blame] | 50 | cl::Hidden, cl::desc("Verify loop info (time consuming)")); |
Dan Gohman | 4dbb301 | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 51 | |
Chris Lattner | ccf571a | 2002-01-31 00:42:27 +0000 | [diff] [blame] | 52 | //===----------------------------------------------------------------------===// |
Chris Lattner | 78dd56f | 2002-04-28 16:21:30 +0000 | [diff] [blame] | 53 | // Loop implementation |
Chris Lattner | ccf571a | 2002-01-31 00:42:27 +0000 | [diff] [blame] | 54 | // |
Misha Brukman | 3845be2 | 2002-10-11 05:31:10 +0000 | [diff] [blame] | 55 | |
Pete Cooper | 016daa6 | 2015-05-13 01:12:06 +0000 | [diff] [blame] | 56 | bool Loop::isLoopInvariant(const Value *V) const { |
| 57 | if (const Instruction *I = dyn_cast<Instruction>(V)) |
Chris Lattner | da24b9a | 2010-09-06 01:05:37 +0000 | [diff] [blame] | 58 | return !contains(I); |
Sanjoy Das | 66a004a | 2017-09-20 01:12:09 +0000 | [diff] [blame] | 59 | return true; // All non-instructions are loop invariant |
Dan Gohman | 80a9942 | 2009-07-13 22:02:44 +0000 | [diff] [blame] | 60 | } |
| 61 | |
Pete Cooper | 016daa6 | 2015-05-13 01:12:06 +0000 | [diff] [blame] | 62 | bool Loop::hasLoopInvariantOperands(const Instruction *I) const { |
Pete Cooper | a264dc0 | 2015-05-13 22:19:13 +0000 | [diff] [blame] | 63 | return all_of(I->operands(), [this](Value *V) { return isLoopInvariant(V); }); |
Dan Gohman | 6f6d864 | 2009-07-14 01:06:29 +0000 | [diff] [blame] | 64 | } |
| 65 | |
Dan Gohman | c43e479 | 2009-07-15 01:25:43 +0000 | [diff] [blame] | 66 | bool Loop::makeLoopInvariant(Value *V, bool &Changed, |
| 67 | Instruction *InsertPt) const { |
Dan Gohman | 6f6d864 | 2009-07-14 01:06:29 +0000 | [diff] [blame] | 68 | if (Instruction *I = dyn_cast<Instruction>(V)) |
Dan Gohman | c43e479 | 2009-07-15 01:25:43 +0000 | [diff] [blame] | 69 | return makeLoopInvariant(I, Changed, InsertPt); |
Sanjoy Das | 66a004a | 2017-09-20 01:12:09 +0000 | [diff] [blame] | 70 | return true; // All non-instructions are loop-invariant. |
Dan Gohman | 6f6d864 | 2009-07-14 01:06:29 +0000 | [diff] [blame] | 71 | } |
| 72 | |
Dan Gohman | c43e479 | 2009-07-15 01:25:43 +0000 | [diff] [blame] | 73 | bool Loop::makeLoopInvariant(Instruction *I, bool &Changed, |
| 74 | Instruction *InsertPt) const { |
Dan Gohman | 6f6d864 | 2009-07-14 01:06:29 +0000 | [diff] [blame] | 75 | // Test if the value is already loop-invariant. |
| 76 | if (isLoopInvariant(I)) |
| 77 | return true; |
Dan Gohman | 75d7d5e | 2011-12-14 23:49:11 +0000 | [diff] [blame] | 78 | if (!isSafeToSpeculativelyExecute(I)) |
Dan Gohman | 6f6d864 | 2009-07-14 01:06:29 +0000 | [diff] [blame] | 79 | return false; |
Eli Friedman | b8f6a4f | 2009-07-17 04:28:42 +0000 | [diff] [blame] | 80 | if (I->mayReadFromMemory()) |
Dan Gohman | 6f6d864 | 2009-07-14 01:06:29 +0000 | [diff] [blame] | 81 | return false; |
David Majnemer | 654e130 | 2015-07-31 17:58:14 +0000 | [diff] [blame] | 82 | // EH block instructions are immobile. |
| 83 | if (I->isEHPad()) |
Bill Wendling | a9ee09f | 2011-08-17 20:36:44 +0000 | [diff] [blame] | 84 | return false; |
Dan Gohman | 6f6d864 | 2009-07-14 01:06:29 +0000 | [diff] [blame] | 85 | // Determine the insertion point, unless one was given. |
| 86 | if (!InsertPt) { |
| 87 | BasicBlock *Preheader = getLoopPreheader(); |
| 88 | // Without a preheader, hoisting is not feasible. |
| 89 | if (!Preheader) |
| 90 | return false; |
| 91 | InsertPt = Preheader->getTerminator(); |
| 92 | } |
| 93 | // Don't hoist instructions with loop-variant operands. |
Sanjay Patel | 960e534 | 2016-01-15 00:08:10 +0000 | [diff] [blame] | 94 | for (Value *Operand : I->operands()) |
| 95 | if (!makeLoopInvariant(Operand, Changed, InsertPt)) |
Dan Gohman | 6f6d864 | 2009-07-14 01:06:29 +0000 | [diff] [blame] | 96 | return false; |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 97 | |
Dan Gohman | 6f6d864 | 2009-07-14 01:06:29 +0000 | [diff] [blame] | 98 | // Hoist. |
| 99 | I->moveBefore(InsertPt); |
Igor Laevsky | 7310c68 | 2015-11-18 14:50:18 +0000 | [diff] [blame] | 100 | |
| 101 | // There is possibility of hoisting this instruction above some arbitrary |
| 102 | // condition. Any metadata defined on it can be control dependent on this |
| 103 | // condition. Conservatively strip it here so that we don't give any wrong |
| 104 | // information to the optimizer. |
| 105 | I->dropUnknownNonDebugMetadata(); |
| 106 | |
Dan Gohman | c43e479 | 2009-07-15 01:25:43 +0000 | [diff] [blame] | 107 | Changed = true; |
Dan Gohman | 6f6d864 | 2009-07-14 01:06:29 +0000 | [diff] [blame] | 108 | return true; |
| 109 | } |
| 110 | |
Dan Gohman | 80a9942 | 2009-07-13 22:02:44 +0000 | [diff] [blame] | 111 | PHINode *Loop::getCanonicalInductionVariable() const { |
| 112 | BasicBlock *H = getHeader(); |
| 113 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 114 | BasicBlock *Incoming = nullptr, *Backedge = nullptr; |
Dan Gohman | acafc61 | 2010-07-23 21:25:16 +0000 | [diff] [blame] | 115 | pred_iterator PI = pred_begin(H); |
Sanjoy Das | 66a004a | 2017-09-20 01:12:09 +0000 | [diff] [blame] | 116 | assert(PI != pred_end(H) && "Loop must have at least one backedge!"); |
Dan Gohman | 80a9942 | 2009-07-13 22:02:44 +0000 | [diff] [blame] | 117 | Backedge = *PI++; |
Sanjoy Das | 66a004a | 2017-09-20 01:12:09 +0000 | [diff] [blame] | 118 | if (PI == pred_end(H)) |
| 119 | return nullptr; // dead loop |
Dan Gohman | 80a9942 | 2009-07-13 22:02:44 +0000 | [diff] [blame] | 120 | Incoming = *PI++; |
Sanjoy Das | 66a004a | 2017-09-20 01:12:09 +0000 | [diff] [blame] | 121 | if (PI != pred_end(H)) |
| 122 | return nullptr; // multiple backedges? |
Dan Gohman | 80a9942 | 2009-07-13 22:02:44 +0000 | [diff] [blame] | 123 | |
| 124 | if (contains(Incoming)) { |
| 125 | if (contains(Backedge)) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 126 | return nullptr; |
Dan Gohman | 80a9942 | 2009-07-13 22:02:44 +0000 | [diff] [blame] | 127 | std::swap(Incoming, Backedge); |
| 128 | } else if (!contains(Backedge)) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 129 | return nullptr; |
Dan Gohman | 80a9942 | 2009-07-13 22:02:44 +0000 | [diff] [blame] | 130 | |
| 131 | // Loop over all of the PHI nodes, looking for a canonical indvar. |
| 132 | for (BasicBlock::iterator I = H->begin(); isa<PHINode>(I); ++I) { |
| 133 | PHINode *PN = cast<PHINode>(I); |
| 134 | if (ConstantInt *CI = |
Sanjoy Das | 66a004a | 2017-09-20 01:12:09 +0000 | [diff] [blame] | 135 | dyn_cast<ConstantInt>(PN->getIncomingValueForBlock(Incoming))) |
Craig Topper | 79ab643 | 2017-07-06 18:39:47 +0000 | [diff] [blame] | 136 | if (CI->isZero()) |
Dan Gohman | 80a9942 | 2009-07-13 22:02:44 +0000 | [diff] [blame] | 137 | if (Instruction *Inc = |
Sanjoy Das | 66a004a | 2017-09-20 01:12:09 +0000 | [diff] [blame] | 138 | dyn_cast<Instruction>(PN->getIncomingValueForBlock(Backedge))) |
| 139 | if (Inc->getOpcode() == Instruction::Add && Inc->getOperand(0) == PN) |
Dan Gohman | 80a9942 | 2009-07-13 22:02:44 +0000 | [diff] [blame] | 140 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Inc->getOperand(1))) |
Craig Topper | ca2c876 | 2017-07-06 18:39:49 +0000 | [diff] [blame] | 141 | if (CI->isOne()) |
Dan Gohman | 80a9942 | 2009-07-13 22:02:44 +0000 | [diff] [blame] | 142 | return PN; |
| 143 | } |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 144 | return nullptr; |
Dan Gohman | 80a9942 | 2009-07-13 22:02:44 +0000 | [diff] [blame] | 145 | } |
| 146 | |
Igor Laevsky | 04423cf | 2016-10-11 13:37:22 +0000 | [diff] [blame] | 147 | // Check that 'BB' doesn't have any uses outside of the 'L' |
| 148 | static bool isBlockInLCSSAForm(const Loop &L, const BasicBlock &BB, |
| 149 | DominatorTree &DT) { |
| 150 | for (const Instruction &I : BB) { |
| 151 | // Tokens can't be used in PHI nodes and live-out tokens prevent loop |
| 152 | // optimizations, so for the purposes of considered LCSSA form, we |
| 153 | // can ignore them. |
| 154 | if (I.getType()->isTokenTy()) |
| 155 | continue; |
Andrew Kaylor | 123048d | 2015-12-18 18:12:35 +0000 | [diff] [blame] | 156 | |
Igor Laevsky | 04423cf | 2016-10-11 13:37:22 +0000 | [diff] [blame] | 157 | for (const Use &U : I.uses()) { |
| 158 | const Instruction *UI = cast<Instruction>(U.getUser()); |
| 159 | const BasicBlock *UserBB = UI->getParent(); |
| 160 | if (const PHINode *P = dyn_cast<PHINode>(UI)) |
| 161 | UserBB = P->getIncomingBlock(U); |
Dan Gohman | 80a9942 | 2009-07-13 22:02:44 +0000 | [diff] [blame] | 162 | |
Igor Laevsky | 04423cf | 2016-10-11 13:37:22 +0000 | [diff] [blame] | 163 | // Check the current block, as a fast-path, before checking whether |
| 164 | // the use is anywhere in the loop. Most values are used in the same |
| 165 | // block they are defined in. Also, blocks not reachable from the |
| 166 | // entry are special; uses in them don't need to go through PHIs. |
| 167 | if (UserBB != &BB && !L.contains(UserBB) && |
| 168 | DT.isReachableFromEntry(UserBB)) |
| 169 | return false; |
Andrew Kaylor | 123048d | 2015-12-18 18:12:35 +0000 | [diff] [blame] | 170 | } |
Dan Gohman | 80a9942 | 2009-07-13 22:02:44 +0000 | [diff] [blame] | 171 | } |
Dan Gohman | 80a9942 | 2009-07-13 22:02:44 +0000 | [diff] [blame] | 172 | return true; |
| 173 | } |
Dan Gohman | 1511f70 | 2009-07-16 16:16:23 +0000 | [diff] [blame] | 174 | |
Igor Laevsky | 04423cf | 2016-10-11 13:37:22 +0000 | [diff] [blame] | 175 | bool Loop::isLCSSAForm(DominatorTree &DT) const { |
| 176 | // For each block we check that it doesn't have any uses outside of this loop. |
| 177 | return all_of(this->blocks(), [&](const BasicBlock *BB) { |
| 178 | return isBlockInLCSSAForm(*this, *BB, DT); |
| 179 | }); |
| 180 | } |
Sanjoy Das | 683bf07 | 2015-12-08 00:13:21 +0000 | [diff] [blame] | 181 | |
Igor Laevsky | 04423cf | 2016-10-11 13:37:22 +0000 | [diff] [blame] | 182 | bool Loop::isRecursivelyLCSSAForm(DominatorTree &DT, const LoopInfo &LI) const { |
Davide Italiano | 362cc7b | 2017-01-08 22:22:09 +0000 | [diff] [blame] | 183 | // For each block we check that it doesn't have any uses outside of its |
| 184 | // innermost loop. This process will transitively guarantee that the current |
| 185 | // loop and all of the nested loops are in LCSSA form. |
Igor Laevsky | 04423cf | 2016-10-11 13:37:22 +0000 | [diff] [blame] | 186 | return all_of(this->blocks(), [&](const BasicBlock *BB) { |
| 187 | return isBlockInLCSSAForm(*LI.getLoopFor(BB), *BB, DT); |
| 188 | }); |
Sanjoy Das | 683bf07 | 2015-12-08 00:13:21 +0000 | [diff] [blame] | 189 | } |
| 190 | |
Dan Gohman | 1511f70 | 2009-07-16 16:16:23 +0000 | [diff] [blame] | 191 | bool Loop::isLoopSimplifyForm() const { |
Dan Gohman | e3a1706 | 2009-11-05 19:21:41 +0000 | [diff] [blame] | 192 | // Normal-form loops have a preheader, a single backedge, and all of their |
| 193 | // exits have all their predecessors inside the loop. |
| 194 | return getLoopPreheader() && getLoopLatch() && hasDedicatedExits(); |
| 195 | } |
| 196 | |
Sanjay Patel | 784b5e3 | 2016-01-14 23:23:04 +0000 | [diff] [blame] | 197 | // Routines that reform the loop CFG and split edges often fail on indirectbr. |
Andrew Trick | 4442bfe | 2012-04-10 05:14:42 +0000 | [diff] [blame] | 198 | bool Loop::isSafeToClone() const { |
James Molloy | 4f6fb95 | 2012-12-20 16:04:27 +0000 | [diff] [blame] | 199 | // Return false if any loop blocks contain indirectbrs, or there are any calls |
| 200 | // to noduplicate functions. |
Sanjay Patel | 960e534 | 2016-01-15 00:08:10 +0000 | [diff] [blame] | 201 | for (BasicBlock *BB : this->blocks()) { |
| 202 | if (isa<IndirectBrInst>(BB->getTerminator())) |
Andrew Trick | 4442bfe | 2012-04-10 05:14:42 +0000 | [diff] [blame] | 203 | return false; |
Jakub Staszak | 9dca4b3 | 2013-11-13 20:18:38 +0000 | [diff] [blame] | 204 | |
David Majnemer | 3d90bb7 | 2016-05-03 03:57:40 +0000 | [diff] [blame] | 205 | for (Instruction &I : *BB) |
| 206 | if (auto CS = CallSite(&I)) |
| 207 | if (CS.cannotDuplicate()) |
James Molloy | 4f6fb95 | 2012-12-20 16:04:27 +0000 | [diff] [blame] | 208 | return false; |
Andrew Trick | 4442bfe | 2012-04-10 05:14:42 +0000 | [diff] [blame] | 209 | } |
| 210 | return true; |
| 211 | } |
| 212 | |
Paul Redmond | 5fdf836 | 2013-05-28 20:00:34 +0000 | [diff] [blame] | 213 | MDNode *Loop::getLoopID() const { |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 214 | MDNode *LoopID = nullptr; |
Xin Tong | ca02360 | 2017-01-15 21:17:52 +0000 | [diff] [blame] | 215 | if (BasicBlock *Latch = getLoopLatch()) { |
| 216 | LoopID = Latch->getTerminator()->getMetadata(LLVMContext::MD_loop); |
Paul Redmond | 5fdf836 | 2013-05-28 20:00:34 +0000 | [diff] [blame] | 217 | } else { |
Xin Tong | ca02360 | 2017-01-15 21:17:52 +0000 | [diff] [blame] | 218 | assert(!getLoopLatch() && |
| 219 | "The loop should have no single latch at this point"); |
Paul Redmond | 5fdf836 | 2013-05-28 20:00:34 +0000 | [diff] [blame] | 220 | // Go through each predecessor of the loop header and check the |
| 221 | // terminator for the metadata. |
| 222 | BasicBlock *H = getHeader(); |
Sanjay Patel | 960e534 | 2016-01-15 00:08:10 +0000 | [diff] [blame] | 223 | for (BasicBlock *BB : this->blocks()) { |
| 224 | TerminatorInst *TI = BB->getTerminator(); |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 225 | MDNode *MD = nullptr; |
Paul Redmond | 5fdf836 | 2013-05-28 20:00:34 +0000 | [diff] [blame] | 226 | |
| 227 | // Check if this terminator branches to the loop header. |
Sanjay Patel | 960e534 | 2016-01-15 00:08:10 +0000 | [diff] [blame] | 228 | for (BasicBlock *Successor : TI->successors()) { |
| 229 | if (Successor == H) { |
Duncan P. N. Exon Smith | 1d15a9f | 2016-03-25 00:35:38 +0000 | [diff] [blame] | 230 | MD = TI->getMetadata(LLVMContext::MD_loop); |
Paul Redmond | 5fdf836 | 2013-05-28 20:00:34 +0000 | [diff] [blame] | 231 | break; |
| 232 | } |
| 233 | } |
| 234 | if (!MD) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 235 | return nullptr; |
Paul Redmond | 5fdf836 | 2013-05-28 20:00:34 +0000 | [diff] [blame] | 236 | |
| 237 | if (!LoopID) |
| 238 | LoopID = MD; |
| 239 | else if (MD != LoopID) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 240 | return nullptr; |
Paul Redmond | 5fdf836 | 2013-05-28 20:00:34 +0000 | [diff] [blame] | 241 | } |
| 242 | } |
| 243 | if (!LoopID || LoopID->getNumOperands() == 0 || |
| 244 | LoopID->getOperand(0) != LoopID) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 245 | return nullptr; |
Paul Redmond | 5fdf836 | 2013-05-28 20:00:34 +0000 | [diff] [blame] | 246 | return LoopID; |
| 247 | } |
| 248 | |
| 249 | void Loop::setLoopID(MDNode *LoopID) const { |
| 250 | assert(LoopID && "Loop ID should not be null"); |
| 251 | assert(LoopID->getNumOperands() > 0 && "Loop ID needs at least one operand"); |
| 252 | assert(LoopID->getOperand(0) == LoopID && "Loop ID should refer to itself"); |
| 253 | |
Xin Tong | ca02360 | 2017-01-15 21:17:52 +0000 | [diff] [blame] | 254 | if (BasicBlock *Latch = getLoopLatch()) { |
| 255 | Latch->getTerminator()->setMetadata(LLVMContext::MD_loop, LoopID); |
Paul Redmond | 5fdf836 | 2013-05-28 20:00:34 +0000 | [diff] [blame] | 256 | return; |
| 257 | } |
| 258 | |
Sanjoy Das | 66a004a | 2017-09-20 01:12:09 +0000 | [diff] [blame] | 259 | assert(!getLoopLatch() && |
| 260 | "The loop should have no single latch at this point"); |
Paul Redmond | 5fdf836 | 2013-05-28 20:00:34 +0000 | [diff] [blame] | 261 | BasicBlock *H = getHeader(); |
Sanjay Patel | 960e534 | 2016-01-15 00:08:10 +0000 | [diff] [blame] | 262 | for (BasicBlock *BB : this->blocks()) { |
| 263 | TerminatorInst *TI = BB->getTerminator(); |
| 264 | for (BasicBlock *Successor : TI->successors()) { |
| 265 | if (Successor == H) |
Duncan P. N. Exon Smith | 1d15a9f | 2016-03-25 00:35:38 +0000 | [diff] [blame] | 266 | TI->setMetadata(LLVMContext::MD_loop, LoopID); |
Paul Redmond | 5fdf836 | 2013-05-28 20:00:34 +0000 | [diff] [blame] | 267 | } |
| 268 | } |
| 269 | } |
| 270 | |
Hongbin Zheng | 73f6504 | 2017-10-15 07:31:02 +0000 | [diff] [blame] | 271 | void Loop::setLoopAlreadyUnrolled() { |
| 272 | MDNode *LoopID = getLoopID(); |
| 273 | // First remove any existing loop unrolling metadata. |
| 274 | SmallVector<Metadata *, 4> MDs; |
| 275 | // Reserve first location for self reference to the LoopID metadata node. |
| 276 | MDs.push_back(nullptr); |
| 277 | |
| 278 | if (LoopID) { |
| 279 | for (unsigned i = 1, ie = LoopID->getNumOperands(); i < ie; ++i) { |
| 280 | bool IsUnrollMetadata = false; |
| 281 | MDNode *MD = dyn_cast<MDNode>(LoopID->getOperand(i)); |
| 282 | if (MD) { |
| 283 | const MDString *S = dyn_cast<MDString>(MD->getOperand(0)); |
| 284 | IsUnrollMetadata = S && S->getString().startswith("llvm.loop.unroll."); |
| 285 | } |
| 286 | if (!IsUnrollMetadata) |
| 287 | MDs.push_back(LoopID->getOperand(i)); |
| 288 | } |
| 289 | } |
| 290 | |
| 291 | // Add unroll(disable) metadata to disable future unrolling. |
| 292 | LLVMContext &Context = getHeader()->getContext(); |
| 293 | SmallVector<Metadata *, 1> DisableOperands; |
| 294 | DisableOperands.push_back(MDString::get(Context, "llvm.loop.unroll.disable")); |
| 295 | MDNode *DisableNode = MDNode::get(Context, DisableOperands); |
| 296 | MDs.push_back(DisableNode); |
| 297 | |
| 298 | MDNode *NewLoopID = MDNode::get(Context, MDs); |
| 299 | // Set operand 0 to refer to the loop id itself. |
| 300 | NewLoopID->replaceOperandWith(0, NewLoopID); |
| 301 | setLoopID(NewLoopID); |
| 302 | } |
| 303 | |
Pekka Jaaskelainen | 0d23725 | 2013-02-13 18:08:57 +0000 | [diff] [blame] | 304 | bool Loop::isAnnotatedParallel() const { |
Sanjay Patel | 6435c6e | 2016-01-17 23:18:05 +0000 | [diff] [blame] | 305 | MDNode *DesiredLoopIdMetadata = getLoopID(); |
Pekka Jaaskelainen | 0d23725 | 2013-02-13 18:08:57 +0000 | [diff] [blame] | 306 | |
Sanjay Patel | 6435c6e | 2016-01-17 23:18:05 +0000 | [diff] [blame] | 307 | if (!DesiredLoopIdMetadata) |
Sanjoy Das | 66a004a | 2017-09-20 01:12:09 +0000 | [diff] [blame] | 308 | return false; |
Pekka Jaaskelainen | 0d23725 | 2013-02-13 18:08:57 +0000 | [diff] [blame] | 309 | |
| 310 | // The loop branch contains the parallel loop metadata. In order to ensure |
| 311 | // that any parallel-loop-unaware optimization pass hasn't added loop-carried |
| 312 | // dependencies (thus converted the loop back to a sequential loop), check |
| 313 | // that all the memory instructions in the loop contain parallelism metadata |
| 314 | // that point to the same unique "loop id metadata" the loop branch does. |
Sanjay Patel | 960e534 | 2016-01-15 00:08:10 +0000 | [diff] [blame] | 315 | for (BasicBlock *BB : this->blocks()) { |
| 316 | for (Instruction &I : *BB) { |
| 317 | if (!I.mayReadOrWriteMemory()) |
Pekka Jaaskelainen | 0d23725 | 2013-02-13 18:08:57 +0000 | [diff] [blame] | 318 | continue; |
| 319 | |
Pekka Jaaskelainen | 0d23725 | 2013-02-13 18:08:57 +0000 | [diff] [blame] | 320 | // The memory instruction can refer to the loop identifier metadata |
| 321 | // directly or indirectly through another list metadata (in case of |
| 322 | // nested parallel loops). The loop identifier metadata refers to |
| 323 | // itself so we can check both cases with the same routine. |
Sanjay Patel | 6435c6e | 2016-01-17 23:18:05 +0000 | [diff] [blame] | 324 | MDNode *LoopIdMD = |
Sanjay Patel | 960e534 | 2016-01-15 00:08:10 +0000 | [diff] [blame] | 325 | I.getMetadata(LLVMContext::MD_mem_parallel_loop_access); |
Jakub Staszak | 9dca4b3 | 2013-11-13 20:18:38 +0000 | [diff] [blame] | 326 | |
Sanjay Patel | 6435c6e | 2016-01-17 23:18:05 +0000 | [diff] [blame] | 327 | if (!LoopIdMD) |
Jakub Staszak | 9dca4b3 | 2013-11-13 20:18:38 +0000 | [diff] [blame] | 328 | return false; |
| 329 | |
Sanjay Patel | 6435c6e | 2016-01-17 23:18:05 +0000 | [diff] [blame] | 330 | bool LoopIdMDFound = false; |
| 331 | for (const MDOperand &MDOp : LoopIdMD->operands()) { |
| 332 | if (MDOp == DesiredLoopIdMetadata) { |
| 333 | LoopIdMDFound = true; |
Pekka Jaaskelainen | 0d23725 | 2013-02-13 18:08:57 +0000 | [diff] [blame] | 334 | break; |
| 335 | } |
| 336 | } |
| 337 | |
Sanjay Patel | 6435c6e | 2016-01-17 23:18:05 +0000 | [diff] [blame] | 338 | if (!LoopIdMDFound) |
Pekka Jaaskelainen | 0d23725 | 2013-02-13 18:08:57 +0000 | [diff] [blame] | 339 | return false; |
| 340 | } |
| 341 | } |
| 342 | return true; |
| 343 | } |
| 344 | |
Sanjoy Das | 66a004a | 2017-09-20 01:12:09 +0000 | [diff] [blame] | 345 | DebugLoc Loop::getStartLoc() const { return getLocRange().getStart(); } |
Amara Emerson | 0b40201 | 2016-11-08 11:18:59 +0000 | [diff] [blame] | 346 | |
| 347 | Loop::LocRange Loop::getLocRange() const { |
Hal Finkel | 2f68868 | 2016-05-25 21:42:37 +0000 | [diff] [blame] | 348 | // If we have a debug location in the loop ID, then use it. |
Amara Emerson | 0b40201 | 2016-11-08 11:18:59 +0000 | [diff] [blame] | 349 | if (MDNode *LoopID = getLoopID()) { |
| 350 | DebugLoc Start; |
| 351 | // We use the first DebugLoc in the header as the start location of the loop |
| 352 | // and if there is a second DebugLoc in the header we use it as end location |
| 353 | // of the loop. |
| 354 | for (unsigned i = 1, ie = LoopID->getNumOperands(); i < ie; ++i) { |
| 355 | if (DILocation *L = dyn_cast<DILocation>(LoopID->getOperand(i))) { |
| 356 | if (!Start) |
| 357 | Start = DebugLoc(L); |
| 358 | else |
| 359 | return LocRange(Start, DebugLoc(L)); |
| 360 | } |
| 361 | } |
| 362 | |
| 363 | if (Start) |
| 364 | return LocRange(Start); |
| 365 | } |
Hal Finkel | 2f68868 | 2016-05-25 21:42:37 +0000 | [diff] [blame] | 366 | |
| 367 | // Try the pre-header first. |
| 368 | if (BasicBlock *PHeadBB = getLoopPreheader()) |
| 369 | if (DebugLoc DL = PHeadBB->getTerminator()->getDebugLoc()) |
Amara Emerson | 0b40201 | 2016-11-08 11:18:59 +0000 | [diff] [blame] | 370 | return LocRange(DL); |
Hal Finkel | 2f68868 | 2016-05-25 21:42:37 +0000 | [diff] [blame] | 371 | |
| 372 | // If we have no pre-header or there are no instructions with debug |
| 373 | // info in it, try the header. |
| 374 | if (BasicBlock *HeadBB = getHeader()) |
Amara Emerson | 0b40201 | 2016-11-08 11:18:59 +0000 | [diff] [blame] | 375 | return LocRange(HeadBB->getTerminator()->getDebugLoc()); |
Hal Finkel | 2f68868 | 2016-05-25 21:42:37 +0000 | [diff] [blame] | 376 | |
Amara Emerson | 0b40201 | 2016-11-08 11:18:59 +0000 | [diff] [blame] | 377 | return LocRange(); |
Hal Finkel | 2f68868 | 2016-05-25 21:42:37 +0000 | [diff] [blame] | 378 | } |
| 379 | |
Dan Gohman | e3a1706 | 2009-11-05 19:21:41 +0000 | [diff] [blame] | 380 | bool Loop::hasDedicatedExits() const { |
Dan Gohman | 1511f70 | 2009-07-16 16:16:23 +0000 | [diff] [blame] | 381 | // Each predecessor of each exit block of a normal loop is contained |
| 382 | // within the loop. |
| 383 | SmallVector<BasicBlock *, 4> ExitBlocks; |
| 384 | getExitBlocks(ExitBlocks); |
Sanjay Patel | 960e534 | 2016-01-15 00:08:10 +0000 | [diff] [blame] | 385 | for (BasicBlock *BB : ExitBlocks) |
| 386 | for (BasicBlock *Predecessor : predecessors(BB)) |
| 387 | if (!contains(Predecessor)) |
Dan Gohman | 1511f70 | 2009-07-16 16:16:23 +0000 | [diff] [blame] | 388 | return false; |
| 389 | // All the requirements are met. |
| 390 | return true; |
| 391 | } |
| 392 | |
Sanjoy Das | 66a004a | 2017-09-20 01:12:09 +0000 | [diff] [blame] | 393 | void Loop::getUniqueExitBlocks( |
| 394 | SmallVectorImpl<BasicBlock *> &ExitBlocks) const { |
Dan Gohman | 84ba039 | 2009-12-11 20:05:23 +0000 | [diff] [blame] | 395 | assert(hasDedicatedExits() && |
| 396 | "getUniqueExitBlocks assumes the loop has canonical form exits!"); |
Dan Gohman | 3ddbc24 | 2009-09-08 15:45:00 +0000 | [diff] [blame] | 397 | |
Sanjay Patel | 6435c6e | 2016-01-17 23:18:05 +0000 | [diff] [blame] | 398 | SmallVector<BasicBlock *, 32> SwitchExitBlocks; |
Sanjay Patel | 960e534 | 2016-01-15 00:08:10 +0000 | [diff] [blame] | 399 | for (BasicBlock *BB : this->blocks()) { |
Sanjay Patel | 6435c6e | 2016-01-17 23:18:05 +0000 | [diff] [blame] | 400 | SwitchExitBlocks.clear(); |
Sanjay Patel | 960e534 | 2016-01-15 00:08:10 +0000 | [diff] [blame] | 401 | for (BasicBlock *Successor : successors(BB)) { |
| 402 | // If block is inside the loop then it is not an exit block. |
| 403 | if (contains(Successor)) |
Dan Gohman | 3a0ce3e | 2009-09-03 16:10:48 +0000 | [diff] [blame] | 404 | continue; |
| 405 | |
Sanjay Patel | 960e534 | 2016-01-15 00:08:10 +0000 | [diff] [blame] | 406 | pred_iterator PI = pred_begin(Successor); |
Sanjay Patel | 6435c6e | 2016-01-17 23:18:05 +0000 | [diff] [blame] | 407 | BasicBlock *FirstPred = *PI; |
Dan Gohman | 3a0ce3e | 2009-09-03 16:10:48 +0000 | [diff] [blame] | 408 | |
| 409 | // If current basic block is this exit block's first predecessor |
| 410 | // then only insert exit block in to the output ExitBlocks vector. |
| 411 | // This ensures that same exit block is not inserted twice into |
| 412 | // ExitBlocks vector. |
Sanjay Patel | 6435c6e | 2016-01-17 23:18:05 +0000 | [diff] [blame] | 413 | if (BB != FirstPred) |
Dan Gohman | 3a0ce3e | 2009-09-03 16:10:48 +0000 | [diff] [blame] | 414 | continue; |
| 415 | |
| 416 | // If a terminator has more then two successors, for example SwitchInst, |
| 417 | // then it is possible that there are multiple edges from current block |
| 418 | // to one exit block. |
Sanjay Patel | 960e534 | 2016-01-15 00:08:10 +0000 | [diff] [blame] | 419 | if (std::distance(succ_begin(BB), succ_end(BB)) <= 2) { |
| 420 | ExitBlocks.push_back(Successor); |
Dan Gohman | 3a0ce3e | 2009-09-03 16:10:48 +0000 | [diff] [blame] | 421 | continue; |
| 422 | } |
| 423 | |
| 424 | // In case of multiple edges from current block to exit block, collect |
| 425 | // only one edge in ExitBlocks. Use switchExitBlocks to keep track of |
| 426 | // duplicate edges. |
David Majnemer | 0a16c22 | 2016-08-11 21:15:00 +0000 | [diff] [blame] | 427 | if (!is_contained(SwitchExitBlocks, Successor)) { |
Sanjay Patel | 6435c6e | 2016-01-17 23:18:05 +0000 | [diff] [blame] | 428 | SwitchExitBlocks.push_back(Successor); |
Sanjay Patel | 960e534 | 2016-01-15 00:08:10 +0000 | [diff] [blame] | 429 | ExitBlocks.push_back(Successor); |
Dan Gohman | 3a0ce3e | 2009-09-03 16:10:48 +0000 | [diff] [blame] | 430 | } |
| 431 | } |
| 432 | } |
| 433 | } |
| 434 | |
Dan Gohman | 3a0ce3e | 2009-09-03 16:10:48 +0000 | [diff] [blame] | 435 | BasicBlock *Loop::getUniqueExitBlock() const { |
| 436 | SmallVector<BasicBlock *, 8> UniqueExitBlocks; |
| 437 | getUniqueExitBlocks(UniqueExitBlocks); |
| 438 | if (UniqueExitBlocks.size() == 1) |
| 439 | return UniqueExitBlocks[0]; |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 440 | return nullptr; |
Dan Gohman | 3a0ce3e | 2009-09-03 16:10:48 +0000 | [diff] [blame] | 441 | } |
| 442 | |
Aaron Ballman | 615eb47 | 2017-10-15 14:32:27 +0000 | [diff] [blame] | 443 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Sanjoy Das | 66a004a | 2017-09-20 01:12:09 +0000 | [diff] [blame] | 444 | LLVM_DUMP_METHOD void Loop::dump() const { print(dbgs()); } |
Sebastian Pop | 18c964d | 2016-07-27 05:02:17 +0000 | [diff] [blame] | 445 | |
| 446 | LLVM_DUMP_METHOD void Loop::dumpVerbose() const { |
Sanjoy Das | 66a004a | 2017-09-20 01:12:09 +0000 | [diff] [blame] | 447 | print(dbgs(), /*Depth=*/0, /*Verbose=*/true); |
Sebastian Pop | 18c964d | 2016-07-27 05:02:17 +0000 | [diff] [blame] | 448 | } |
Manman Ren | c3366cc | 2012-09-06 19:55:56 +0000 | [diff] [blame] | 449 | #endif |
Dan Gohman | c3f2137 | 2010-01-05 21:08:02 +0000 | [diff] [blame] | 450 | |
Chris Lattner | 2675007 | 2002-07-27 01:12:17 +0000 | [diff] [blame] | 451 | //===----------------------------------------------------------------------===// |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 452 | // UnloopUpdater implementation |
| 453 | // |
| 454 | |
Benjamin Kramer | 4938edb | 2011-08-19 01:42:18 +0000 | [diff] [blame] | 455 | namespace { |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 456 | /// Find the new parent loop for all blocks within the "unloop" whose last |
| 457 | /// backedges has just been removed. |
| 458 | class UnloopUpdater { |
Silviu Baranga | 24dbd2e | 2016-05-13 14:54:50 +0000 | [diff] [blame] | 459 | Loop &Unloop; |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 460 | LoopInfo *LI; |
| 461 | |
| 462 | LoopBlocksDFS DFS; |
| 463 | |
| 464 | // Map unloop's immediate subloops to their nearest reachable parents. Nested |
| 465 | // loops within these subloops will not change parents. However, an immediate |
| 466 | // subloop's new parent will be the nearest loop reachable from either its own |
| 467 | // exits *or* any of its nested loop's exits. |
Sanjoy Das | 66a004a | 2017-09-20 01:12:09 +0000 | [diff] [blame] | 468 | DenseMap<Loop *, Loop *> SubloopParents; |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 469 | |
| 470 | // Flag the presence of an irreducible backedge whose destination is a block |
| 471 | // directly contained by the original unloop. |
| 472 | bool FoundIB; |
| 473 | |
| 474 | public: |
Sanjoy Das | 66a004a | 2017-09-20 01:12:09 +0000 | [diff] [blame] | 475 | UnloopUpdater(Loop *UL, LoopInfo *LInfo) |
| 476 | : Unloop(*UL), LI(LInfo), DFS(UL), FoundIB(false) {} |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 477 | |
| 478 | void updateBlockParents(); |
| 479 | |
Andrew Trick | c12c30a | 2011-08-11 20:27:32 +0000 | [diff] [blame] | 480 | void removeBlocksFromAncestors(); |
| 481 | |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 482 | void updateSubloopParents(); |
| 483 | |
| 484 | protected: |
| 485 | Loop *getNearestLoop(BasicBlock *BB, Loop *BBLoop); |
| 486 | }; |
Benjamin Kramer | 4938edb | 2011-08-19 01:42:18 +0000 | [diff] [blame] | 487 | } // end anonymous namespace |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 488 | |
Sanjay Patel | 784b5e3 | 2016-01-14 23:23:04 +0000 | [diff] [blame] | 489 | /// Update the parent loop for all blocks that are directly contained within the |
| 490 | /// original "unloop". |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 491 | void UnloopUpdater::updateBlockParents() { |
Silviu Baranga | 24dbd2e | 2016-05-13 14:54:50 +0000 | [diff] [blame] | 492 | if (Unloop.getNumBlocks()) { |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 493 | // Perform a post order CFG traversal of all blocks within this loop, |
Hiroshi Inoue | 713b5ba | 2017-07-09 05:54:44 +0000 | [diff] [blame] | 494 | // propagating the nearest loop from successors to predecessors. |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 495 | LoopBlocksTraversal Traversal(DFS, LI); |
Benjamin Kramer | aa20915 | 2016-06-26 17:27:42 +0000 | [diff] [blame] | 496 | for (BasicBlock *POI : Traversal) { |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 497 | |
Benjamin Kramer | aa20915 | 2016-06-26 17:27:42 +0000 | [diff] [blame] | 498 | Loop *L = LI->getLoopFor(POI); |
| 499 | Loop *NL = getNearestLoop(POI, L); |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 500 | |
| 501 | if (NL != L) { |
| 502 | // For reducible loops, NL is now an ancestor of Unloop. |
Silviu Baranga | 24dbd2e | 2016-05-13 14:54:50 +0000 | [diff] [blame] | 503 | assert((NL != &Unloop && (!NL || NL->contains(&Unloop))) && |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 504 | "uninitialized successor"); |
Benjamin Kramer | aa20915 | 2016-06-26 17:27:42 +0000 | [diff] [blame] | 505 | LI->changeLoopFor(POI, NL); |
Sanjoy Das | 66a004a | 2017-09-20 01:12:09 +0000 | [diff] [blame] | 506 | } else { |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 507 | // Or the current block is part of a subloop, in which case its parent |
| 508 | // is unchanged. |
Silviu Baranga | 24dbd2e | 2016-05-13 14:54:50 +0000 | [diff] [blame] | 509 | assert((FoundIB || Unloop.contains(L)) && "uninitialized successor"); |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 510 | } |
| 511 | } |
| 512 | } |
| 513 | // Each irreducible loop within the unloop induces a round of iteration using |
| 514 | // the DFS result cached by Traversal. |
| 515 | bool Changed = FoundIB; |
| 516 | for (unsigned NIters = 0; Changed; ++NIters) { |
Silviu Baranga | 24dbd2e | 2016-05-13 14:54:50 +0000 | [diff] [blame] | 517 | assert(NIters < Unloop.getNumBlocks() && "runaway iterative algorithm"); |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 518 | |
| 519 | // Iterate over the postorder list of blocks, propagating the nearest loop |
| 520 | // from successors to predecessors as before. |
| 521 | Changed = false; |
| 522 | for (LoopBlocksDFS::POIterator POI = DFS.beginPostorder(), |
Sanjoy Das | 66a004a | 2017-09-20 01:12:09 +0000 | [diff] [blame] | 523 | POE = DFS.endPostorder(); |
| 524 | POI != POE; ++POI) { |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 525 | |
| 526 | Loop *L = LI->getLoopFor(*POI); |
| 527 | Loop *NL = getNearestLoop(*POI, L); |
| 528 | if (NL != L) { |
Silviu Baranga | 24dbd2e | 2016-05-13 14:54:50 +0000 | [diff] [blame] | 529 | assert(NL != &Unloop && (!NL || NL->contains(&Unloop)) && |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 530 | "uninitialized successor"); |
| 531 | LI->changeLoopFor(*POI, NL); |
| 532 | Changed = true; |
| 533 | } |
| 534 | } |
| 535 | } |
| 536 | } |
| 537 | |
Sanjay Patel | 784b5e3 | 2016-01-14 23:23:04 +0000 | [diff] [blame] | 538 | /// Remove unloop's blocks from all ancestors below their new parents. |
Andrew Trick | c12c30a | 2011-08-11 20:27:32 +0000 | [diff] [blame] | 539 | void UnloopUpdater::removeBlocksFromAncestors() { |
Andrew Trick | 6b4d578 | 2011-11-18 03:42:41 +0000 | [diff] [blame] | 540 | // Remove all unloop's blocks (including those in nested subloops) from |
| 541 | // ancestors below the new parent loop. |
Sanjoy Das | 66a004a | 2017-09-20 01:12:09 +0000 | [diff] [blame] | 542 | for (Loop::block_iterator BI = Unloop.block_begin(), BE = Unloop.block_end(); |
| 543 | BI != BE; ++BI) { |
Andrew Trick | 6b4d578 | 2011-11-18 03:42:41 +0000 | [diff] [blame] | 544 | Loop *OuterParent = LI->getLoopFor(*BI); |
Silviu Baranga | 24dbd2e | 2016-05-13 14:54:50 +0000 | [diff] [blame] | 545 | if (Unloop.contains(OuterParent)) { |
| 546 | while (OuterParent->getParentLoop() != &Unloop) |
Andrew Trick | 6b4d578 | 2011-11-18 03:42:41 +0000 | [diff] [blame] | 547 | OuterParent = OuterParent->getParentLoop(); |
| 548 | OuterParent = SubloopParents[OuterParent]; |
| 549 | } |
Andrew Trick | c12c30a | 2011-08-11 20:27:32 +0000 | [diff] [blame] | 550 | // Remove blocks from former Ancestors except Unloop itself which will be |
| 551 | // deleted. |
Silviu Baranga | 24dbd2e | 2016-05-13 14:54:50 +0000 | [diff] [blame] | 552 | for (Loop *OldParent = Unloop.getParentLoop(); OldParent != OuterParent; |
Andrew Trick | c12c30a | 2011-08-11 20:27:32 +0000 | [diff] [blame] | 553 | OldParent = OldParent->getParentLoop()) { |
| 554 | assert(OldParent && "new loop is not an ancestor of the original"); |
| 555 | OldParent->removeBlockFromLoop(*BI); |
| 556 | } |
| 557 | } |
| 558 | } |
| 559 | |
Sanjay Patel | 784b5e3 | 2016-01-14 23:23:04 +0000 | [diff] [blame] | 560 | /// Update the parent loop for all subloops directly nested within unloop. |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 561 | void UnloopUpdater::updateSubloopParents() { |
Silviu Baranga | 24dbd2e | 2016-05-13 14:54:50 +0000 | [diff] [blame] | 562 | while (!Unloop.empty()) { |
| 563 | Loop *Subloop = *std::prev(Unloop.end()); |
| 564 | Unloop.removeChildLoop(std::prev(Unloop.end())); |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 565 | |
| 566 | assert(SubloopParents.count(Subloop) && "DFS failed to visit subloop"); |
Benjamin Kramer | f29db27 | 2012-08-22 15:37:57 +0000 | [diff] [blame] | 567 | if (Loop *Parent = SubloopParents[Subloop]) |
| 568 | Parent->addChildLoop(Subloop); |
Andrew Trick | 147d9cd | 2011-08-26 03:06:34 +0000 | [diff] [blame] | 569 | else |
| 570 | LI->addTopLevelLoop(Subloop); |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 571 | } |
| 572 | } |
| 573 | |
Sanjay Patel | 784b5e3 | 2016-01-14 23:23:04 +0000 | [diff] [blame] | 574 | /// Return the nearest parent loop among this block's successors. If a successor |
| 575 | /// is a subloop header, consider its parent to be the nearest parent of the |
| 576 | /// subloop's exits. |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 577 | /// |
| 578 | /// For subloop blocks, simply update SubloopParents and return NULL. |
| 579 | Loop *UnloopUpdater::getNearestLoop(BasicBlock *BB, Loop *BBLoop) { |
| 580 | |
Andrew Trick | 266ab10 | 2011-08-11 17:54:58 +0000 | [diff] [blame] | 581 | // Initially for blocks directly contained by Unloop, NearLoop == Unloop and |
| 582 | // is considered uninitialized. |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 583 | Loop *NearLoop = BBLoop; |
| 584 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 585 | Loop *Subloop = nullptr; |
Silviu Baranga | 24dbd2e | 2016-05-13 14:54:50 +0000 | [diff] [blame] | 586 | if (NearLoop != &Unloop && Unloop.contains(NearLoop)) { |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 587 | Subloop = NearLoop; |
| 588 | // Find the subloop ancestor that is directly contained within Unloop. |
Silviu Baranga | 24dbd2e | 2016-05-13 14:54:50 +0000 | [diff] [blame] | 589 | while (Subloop->getParentLoop() != &Unloop) { |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 590 | Subloop = Subloop->getParentLoop(); |
| 591 | assert(Subloop && "subloop is not an ancestor of the original loop"); |
| 592 | } |
| 593 | // Get the current nearest parent of the Subloop exits, initially Unloop. |
David Majnemer | 0a16c22 | 2016-08-11 21:15:00 +0000 | [diff] [blame] | 594 | NearLoop = SubloopParents.insert({Subloop, &Unloop}).first->second; |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 595 | } |
| 596 | |
| 597 | succ_iterator I = succ_begin(BB), E = succ_end(BB); |
| 598 | if (I == E) { |
| 599 | assert(!Subloop && "subloop blocks must have a successor"); |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 600 | NearLoop = nullptr; // unloop blocks may now exit the function. |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 601 | } |
| 602 | for (; I != E; ++I) { |
| 603 | if (*I == BB) |
| 604 | continue; // self loops are uninteresting |
| 605 | |
| 606 | Loop *L = LI->getLoopFor(*I); |
Silviu Baranga | 24dbd2e | 2016-05-13 14:54:50 +0000 | [diff] [blame] | 607 | if (L == &Unloop) { |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 608 | // This successor has not been processed. This path must lead to an |
| 609 | // irreducible backedge. |
| 610 | assert((FoundIB || !DFS.hasPostorder(*I)) && "should have seen IB"); |
| 611 | FoundIB = true; |
| 612 | } |
Silviu Baranga | 24dbd2e | 2016-05-13 14:54:50 +0000 | [diff] [blame] | 613 | if (L != &Unloop && Unloop.contains(L)) { |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 614 | // Successor is in a subloop. |
| 615 | if (Subloop) |
| 616 | continue; // Branching within subloops. Ignore it. |
| 617 | |
| 618 | // BB branches from the original into a subloop header. |
Silviu Baranga | 24dbd2e | 2016-05-13 14:54:50 +0000 | [diff] [blame] | 619 | assert(L->getParentLoop() == &Unloop && "cannot skip into nested loops"); |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 620 | |
| 621 | // Get the current nearest parent of the Subloop's exits. |
| 622 | L = SubloopParents[L]; |
| 623 | // L could be Unloop if the only exit was an irreducible backedge. |
| 624 | } |
Silviu Baranga | 24dbd2e | 2016-05-13 14:54:50 +0000 | [diff] [blame] | 625 | if (L == &Unloop) { |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 626 | continue; |
| 627 | } |
| 628 | // Handle critical edges from Unloop into a sibling loop. |
Silviu Baranga | 24dbd2e | 2016-05-13 14:54:50 +0000 | [diff] [blame] | 629 | if (L && !L->contains(&Unloop)) { |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 630 | L = L->getParentLoop(); |
| 631 | } |
| 632 | // Remember the nearest parent loop among successors or subloop exits. |
Silviu Baranga | 24dbd2e | 2016-05-13 14:54:50 +0000 | [diff] [blame] | 633 | if (NearLoop == &Unloop || !NearLoop || NearLoop->contains(L)) |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 634 | NearLoop = L; |
| 635 | } |
| 636 | if (Subloop) { |
| 637 | SubloopParents[Subloop] = NearLoop; |
| 638 | return BBLoop; |
| 639 | } |
| 640 | return NearLoop; |
| 641 | } |
| 642 | |
Sanjoy Das | 66a004a | 2017-09-20 01:12:09 +0000 | [diff] [blame] | 643 | LoopInfo::LoopInfo(const DomTreeBase<BasicBlock> &DomTree) { analyze(DomTree); } |
Cong Hou | 9b4f6b2 | 2015-07-16 23:23:35 +0000 | [diff] [blame] | 644 | |
Chandler Carruth | ca68a3e | 2017-01-15 06:32:49 +0000 | [diff] [blame] | 645 | bool LoopInfo::invalidate(Function &F, const PreservedAnalyses &PA, |
| 646 | FunctionAnalysisManager::Invalidator &) { |
| 647 | // Check whether the analysis, all analyses on functions, or the function's |
| 648 | // CFG have been preserved. |
| 649 | auto PAC = PA.getChecker<LoopAnalysis>(); |
| 650 | return !(PAC.preserved() || PAC.preservedSet<AllAnalysesOn<Function>>() || |
| 651 | PAC.preservedSet<CFGAnalyses>()); |
| 652 | } |
| 653 | |
Sanjoy Das | 388b012 | 2017-09-22 01:47:41 +0000 | [diff] [blame] | 654 | void LoopInfo::erase(Loop *Unloop) { |
Sanjoy Das | 76ab232 | 2017-09-19 23:19:00 +0000 | [diff] [blame] | 655 | assert(!Unloop->isInvalid() && "Loop has already been erased!"); |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 656 | |
Sanjoy Das | def1729 | 2017-09-28 02:45:42 +0000 | [diff] [blame] | 657 | auto InvalidateOnExit = make_scope_exit([&]() { destroy(Unloop); }); |
Sanjoy Das | 09613b1 | 2017-09-20 02:31:57 +0000 | [diff] [blame] | 658 | |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 659 | // First handle the special case of no parent loop to simplify the algorithm. |
| 660 | if (!Unloop->getParentLoop()) { |
| 661 | // Since BBLoop had no parent, Unloop blocks are no longer in a loop. |
| 662 | for (Loop::block_iterator I = Unloop->block_begin(), |
Chandler Carruth | 691addc | 2015-01-18 01:25:51 +0000 | [diff] [blame] | 663 | E = Unloop->block_end(); |
| 664 | I != E; ++I) { |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 665 | |
| 666 | // Don't reparent blocks in subloops. |
| 667 | if (getLoopFor(*I) != Unloop) |
| 668 | continue; |
| 669 | |
| 670 | // Blocks no longer have a parent but are still referenced by Unloop until |
| 671 | // the Unloop object is deleted. |
Chandler Carruth | 691addc | 2015-01-18 01:25:51 +0000 | [diff] [blame] | 672 | changeLoopFor(*I, nullptr); |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 673 | } |
| 674 | |
| 675 | // Remove the loop from the top-level LoopInfo object. |
Chandler Carruth | 691addc | 2015-01-18 01:25:51 +0000 | [diff] [blame] | 676 | for (iterator I = begin();; ++I) { |
| 677 | assert(I != end() && "Couldn't find loop"); |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 678 | if (*I == Unloop) { |
Chandler Carruth | 691addc | 2015-01-18 01:25:51 +0000 | [diff] [blame] | 679 | removeLoop(I); |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 680 | break; |
| 681 | } |
| 682 | } |
| 683 | |
| 684 | // Move all of the subloops to the top-level. |
| 685 | while (!Unloop->empty()) |
Chandler Carruth | 691addc | 2015-01-18 01:25:51 +0000 | [diff] [blame] | 686 | addTopLevelLoop(Unloop->removeChildLoop(std::prev(Unloop->end()))); |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 687 | |
| 688 | return; |
| 689 | } |
| 690 | |
| 691 | // Update the parent loop for all blocks within the loop. Blocks within |
| 692 | // subloops will not change parents. |
| 693 | UnloopUpdater Updater(Unloop, this); |
| 694 | Updater.updateBlockParents(); |
| 695 | |
Andrew Trick | c12c30a | 2011-08-11 20:27:32 +0000 | [diff] [blame] | 696 | // Remove blocks from former ancestor loops. |
| 697 | Updater.removeBlocksFromAncestors(); |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 698 | |
| 699 | // Add direct subloops as children in their new parent loop. |
| 700 | Updater.updateSubloopParents(); |
| 701 | |
| 702 | // Remove unloop from its parent loop. |
| 703 | Loop *ParentLoop = Unloop->getParentLoop(); |
Duncan Sands | a41634e | 2011-08-12 14:54:45 +0000 | [diff] [blame] | 704 | for (Loop::iterator I = ParentLoop->begin();; ++I) { |
| 705 | assert(I != ParentLoop->end() && "Couldn't find loop"); |
Andrew Trick | d3530b9 | 2011-08-10 23:22:57 +0000 | [diff] [blame] | 706 | if (*I == Unloop) { |
| 707 | ParentLoop->removeChildLoop(I); |
| 708 | break; |
| 709 | } |
| 710 | } |
| 711 | } |
| 712 | |
Chandler Carruth | dab4eae | 2016-11-23 17:53:26 +0000 | [diff] [blame] | 713 | AnalysisKey LoopAnalysis::Key; |
NAKAMURA Takumi | df0cd72 | 2016-02-28 17:17:00 +0000 | [diff] [blame] | 714 | |
Sean Silva | 36e0d01 | 2016-08-09 00:28:15 +0000 | [diff] [blame] | 715 | LoopInfo LoopAnalysis::run(Function &F, FunctionAnalysisManager &AM) { |
Chandler Carruth | aaf0b4c | 2015-01-20 10:58:50 +0000 | [diff] [blame] | 716 | // FIXME: Currently we create a LoopInfo from scratch for every function. |
| 717 | // This may prove to be too wasteful due to deallocating and re-allocating |
| 718 | // memory each time for the underlying map and vector datastructures. At some |
| 719 | // point it may prove worthwhile to use a freelist and recycle LoopInfo |
| 720 | // objects. I don't want to add that kind of complexity until the scope of |
| 721 | // the problem is better understood. |
| 722 | LoopInfo LI; |
Chandler Carruth | b47f801 | 2016-03-11 11:05:24 +0000 | [diff] [blame] | 723 | LI.analyze(AM.getResult<DominatorTreeAnalysis>(F)); |
Richard Trieu | 6ae3796 | 2015-04-30 23:07:00 +0000 | [diff] [blame] | 724 | return LI; |
Chandler Carruth | aaf0b4c | 2015-01-20 10:58:50 +0000 | [diff] [blame] | 725 | } |
| 726 | |
| 727 | PreservedAnalyses LoopPrinterPass::run(Function &F, |
Sean Silva | 36e0d01 | 2016-08-09 00:28:15 +0000 | [diff] [blame] | 728 | FunctionAnalysisManager &AM) { |
Chandler Carruth | b47f801 | 2016-03-11 11:05:24 +0000 | [diff] [blame] | 729 | AM.getResult<LoopAnalysis>(F).print(OS); |
Chandler Carruth | aaf0b4c | 2015-01-20 10:58:50 +0000 | [diff] [blame] | 730 | return PreservedAnalyses::all(); |
| 731 | } |
| 732 | |
Chandler Carruth | 410eaeb | 2017-01-11 06:23:21 +0000 | [diff] [blame] | 733 | void llvm::printLoop(Loop &L, raw_ostream &OS, const std::string &Banner) { |
Fedor Sergeev | 3b459c3 | 2017-12-01 18:33:58 +0000 | [diff] [blame] | 734 | |
| 735 | if (forcePrintModuleIR()) { |
| 736 | // handling -print-module-scope |
| 737 | OS << Banner << " (loop: "; |
| 738 | L.getHeader()->printAsOperand(OS, false); |
| 739 | OS << ")\n"; |
| 740 | |
| 741 | // printing whole module |
| 742 | OS << *L.getHeader()->getModule(); |
| 743 | return; |
| 744 | } |
| 745 | |
Justin Bogner | c2b98f0 | 2015-11-04 22:24:08 +0000 | [diff] [blame] | 746 | OS << Banner; |
Fedor Sergeev | 61975b4 | 2017-11-22 20:59:53 +0000 | [diff] [blame] | 747 | |
| 748 | auto *PreHeader = L.getLoopPreheader(); |
| 749 | if (PreHeader) { |
| 750 | OS << "\n; Preheader:"; |
| 751 | PreHeader->print(OS); |
| 752 | OS << "\n; Loop:"; |
| 753 | } |
| 754 | |
Justin Bogner | c2b98f0 | 2015-11-04 22:24:08 +0000 | [diff] [blame] | 755 | for (auto *Block : L.blocks()) |
| 756 | if (Block) |
| 757 | Block->print(OS); |
| 758 | else |
| 759 | OS << "Printing <null> block"; |
Fedor Sergeev | 61975b4 | 2017-11-22 20:59:53 +0000 | [diff] [blame] | 760 | |
| 761 | SmallVector<BasicBlock *, 8> ExitBlocks; |
| 762 | L.getExitBlocks(ExitBlocks); |
| 763 | if (!ExitBlocks.empty()) { |
| 764 | OS << "\n; Exit blocks"; |
| 765 | for (auto *Block : ExitBlocks) |
| 766 | if (Block) |
| 767 | Block->print(OS); |
| 768 | else |
| 769 | OS << "Printing <null> block"; |
| 770 | } |
Justin Bogner | c2b98f0 | 2015-11-04 22:24:08 +0000 | [diff] [blame] | 771 | } |
| 772 | |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 773 | //===----------------------------------------------------------------------===// |
| 774 | // LoopInfo implementation |
| 775 | // |
| 776 | |
| 777 | char LoopInfoWrapperPass::ID = 0; |
| 778 | INITIALIZE_PASS_BEGIN(LoopInfoWrapperPass, "loops", "Natural Loop Information", |
| 779 | true, true) |
| 780 | INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) |
| 781 | INITIALIZE_PASS_END(LoopInfoWrapperPass, "loops", "Natural Loop Information", |
| 782 | true, true) |
| 783 | |
| 784 | bool LoopInfoWrapperPass::runOnFunction(Function &) { |
| 785 | releaseMemory(); |
Cong Hou | d2c1d91 | 2015-07-16 18:23:57 +0000 | [diff] [blame] | 786 | LI.analyze(getAnalysis<DominatorTreeWrapperPass>().getDomTree()); |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 787 | return false; |
| 788 | } |
| 789 | |
| 790 | void LoopInfoWrapperPass::verifyAnalysis() const { |
| 791 | // LoopInfoWrapperPass is a FunctionPass, but verifying every loop in the |
| 792 | // function each time verifyAnalysis is called is very expensive. The |
Dan Gohman | 4dbb301 | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 793 | // -verify-loop-info option can enable this. In order to perform some |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 794 | // checking by default, LoopPass has been taught to call verifyLoop manually |
| 795 | // during loop pass sequences. |
Michael Zolotukhin | e0b2d97 | 2016-08-31 19:26:19 +0000 | [diff] [blame] | 796 | if (VerifyLoopInfo) { |
Serge Pavlov | ed5eb93 | 2017-01-15 10:23:18 +0000 | [diff] [blame] | 797 | auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree(); |
| 798 | LI.verify(DT); |
Michael Zolotukhin | e0b2d97 | 2016-08-31 19:26:19 +0000 | [diff] [blame] | 799 | } |
Dan Gohman | 3ddbc24 | 2009-09-08 15:45:00 +0000 | [diff] [blame] | 800 | } |
| 801 | |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 802 | void LoopInfoWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const { |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 803 | AU.setPreservesAll(); |
Chandler Carruth | 7352302 | 2014-01-13 13:07:17 +0000 | [diff] [blame] | 804 | AU.addRequired<DominatorTreeWrapperPass>(); |
Chris Lattner | ccf571a | 2002-01-31 00:42:27 +0000 | [diff] [blame] | 805 | } |
Chris Lattner | b1d782b | 2009-08-23 05:17:37 +0000 | [diff] [blame] | 806 | |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 807 | void LoopInfoWrapperPass::print(raw_ostream &OS, const Module *) const { |
Chandler Carruth | 691addc | 2015-01-18 01:25:51 +0000 | [diff] [blame] | 808 | LI.print(OS); |
Chris Lattner | b1d782b | 2009-08-23 05:17:37 +0000 | [diff] [blame] | 809 | } |
| 810 | |
Sean Silva | e3c18a5 | 2016-07-19 23:54:23 +0000 | [diff] [blame] | 811 | PreservedAnalyses LoopVerifierPass::run(Function &F, |
Sean Silva | 36e0d01 | 2016-08-09 00:28:15 +0000 | [diff] [blame] | 812 | FunctionAnalysisManager &AM) { |
Sean Silva | e3c18a5 | 2016-07-19 23:54:23 +0000 | [diff] [blame] | 813 | LoopInfo &LI = AM.getResult<LoopAnalysis>(F); |
Michael Zolotukhin | e0b2d97 | 2016-08-31 19:26:19 +0000 | [diff] [blame] | 814 | auto &DT = AM.getResult<DominatorTreeAnalysis>(F); |
| 815 | LI.verify(DT); |
Sean Silva | e3c18a5 | 2016-07-19 23:54:23 +0000 | [diff] [blame] | 816 | return PreservedAnalyses::all(); |
| 817 | } |
| 818 | |
Andrew Trick | 78b40c3 | 2011-08-10 01:59:05 +0000 | [diff] [blame] | 819 | //===----------------------------------------------------------------------===// |
| 820 | // LoopBlocksDFS implementation |
| 821 | // |
| 822 | |
| 823 | /// Traverse the loop blocks and store the DFS result. |
| 824 | /// Useful for clients that just want the final DFS result and don't need to |
| 825 | /// visit blocks during the initial traversal. |
| 826 | void LoopBlocksDFS::perform(LoopInfo *LI) { |
| 827 | LoopBlocksTraversal Traversal(*this, LI); |
| 828 | for (LoopBlocksTraversal::POTIterator POI = Traversal.begin(), |
Sanjoy Das | 66a004a | 2017-09-20 01:12:09 +0000 | [diff] [blame] | 829 | POE = Traversal.end(); |
| 830 | POI != POE; ++POI) |
| 831 | ; |
Andrew Trick | 78b40c3 | 2011-08-10 01:59:05 +0000 | [diff] [blame] | 832 | } |