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