Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | //===-- LCSSA.cpp - Convert loops into loop-closed SSA form ---------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 081ce94 | 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. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This pass transforms loops by placing phi nodes at the end of the loops for |
| 11 | // all values that are live across the loop boundary. For example, it turns |
| 12 | // the left into the right code: |
| 13 | // |
| 14 | // for (...) for (...) |
| 15 | // if (c) if (c) |
| 16 | // X1 = ... X1 = ... |
| 17 | // else else |
| 18 | // X2 = ... X2 = ... |
| 19 | // X3 = phi(X1, X2) X3 = phi(X1, X2) |
Dan Gohman | 03eb27e | 2008-06-03 00:57:21 +0000 | [diff] [blame] | 20 | // ... = X3 + 4 X4 = phi(X3) |
| 21 | // ... = X4 + 4 |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 22 | // |
| 23 | // This is still valid LLVM; the extra phi nodes are purely redundant, and will |
| 24 | // be trivially eliminated by InstCombine. The major benefit of this |
| 25 | // transformation is that it makes many other loop optimizations, such as |
| 26 | // LoopUnswitching, simpler. |
| 27 | // |
| 28 | //===----------------------------------------------------------------------===// |
| 29 | |
| 30 | #define DEBUG_TYPE "lcssa" |
| 31 | #include "llvm/Transforms/Scalar.h" |
| 32 | #include "llvm/Constants.h" |
| 33 | #include "llvm/Pass.h" |
| 34 | #include "llvm/Function.h" |
| 35 | #include "llvm/Instructions.h" |
Owen Anderson | a09d234 | 2009-07-05 22:41:43 +0000 | [diff] [blame] | 36 | #include "llvm/LLVMContext.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 37 | #include "llvm/ADT/SetVector.h" |
| 38 | #include "llvm/ADT/Statistic.h" |
| 39 | #include "llvm/Analysis/Dominators.h" |
| 40 | #include "llvm/Analysis/LoopPass.h" |
| 41 | #include "llvm/Analysis/ScalarEvolution.h" |
| 42 | #include "llvm/Support/CFG.h" |
| 43 | #include "llvm/Support/Compiler.h" |
Owen Anderson | b09900b | 2009-04-22 08:09:13 +0000 | [diff] [blame] | 44 | #include "llvm/Support/PredIteratorCache.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 45 | #include <algorithm> |
| 46 | #include <map> |
| 47 | using namespace llvm; |
| 48 | |
| 49 | STATISTIC(NumLCSSA, "Number of live out of a loop variables"); |
| 50 | |
| 51 | namespace { |
| 52 | struct VISIBILITY_HIDDEN LCSSA : public LoopPass { |
| 53 | static char ID; // Pass identification, replacement for typeid |
Dan Gohman | 26f8c27 | 2008-09-04 17:05:41 +0000 | [diff] [blame] | 54 | LCSSA() : LoopPass(&ID) {} |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 55 | |
| 56 | // Cached analysis information for the current function. |
| 57 | LoopInfo *LI; |
| 58 | DominatorTree *DT; |
| 59 | std::vector<BasicBlock*> LoopBlocks; |
Owen Anderson | b09900b | 2009-04-22 08:09:13 +0000 | [diff] [blame] | 60 | PredIteratorCache PredCache; |
Dan Gohman | 9cec412 | 2009-09-08 15:45:00 +0000 | [diff] [blame] | 61 | Loop *L; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 62 | |
| 63 | virtual bool runOnLoop(Loop *L, LPPassManager &LPM); |
| 64 | |
| 65 | void ProcessInstruction(Instruction* Instr, |
Devang Patel | 02451fa | 2007-08-21 00:31:24 +0000 | [diff] [blame] | 66 | const SmallVector<BasicBlock*, 8>& exitBlocks); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 67 | |
| 68 | /// This transformation requires natural loop information & requires that |
| 69 | /// loop preheaders be inserted into the CFG. It maintains both of these, |
| 70 | /// as well as the CFG. It also requires dominator information. |
| 71 | /// |
| 72 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 73 | AU.setPreservesCFG(); |
| 74 | AU.addRequiredID(LoopSimplifyID); |
| 75 | AU.addPreservedID(LoopSimplifyID); |
Dan Gohman | 9cec412 | 2009-09-08 15:45:00 +0000 | [diff] [blame] | 76 | AU.addRequiredTransitive<LoopInfo>(); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 77 | AU.addPreserved<LoopInfo>(); |
Dan Gohman | 9cec412 | 2009-09-08 15:45:00 +0000 | [diff] [blame] | 78 | AU.addRequiredTransitive<DominatorTree>(); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 79 | AU.addPreserved<ScalarEvolution>(); |
Devang Patel | 48d1580 | 2007-07-30 20:23:45 +0000 | [diff] [blame] | 80 | AU.addPreserved<DominatorTree>(); |
| 81 | |
| 82 | // Request DominanceFrontier now, even though LCSSA does |
| 83 | // not use it. This allows Pass Manager to schedule Dominance |
| 84 | // Frontier early enough such that one LPPassManager can handle |
| 85 | // multiple loop transformation passes. |
| 86 | AU.addRequired<DominanceFrontier>(); |
| 87 | AU.addPreserved<DominanceFrontier>(); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 88 | } |
| 89 | private: |
Dan Gohman | 9cec412 | 2009-09-08 15:45:00 +0000 | [diff] [blame] | 90 | |
| 91 | /// verifyAnalysis() - Verify loop nest. |
| 92 | virtual void verifyAnalysis() const { |
Dan Gohman | 9cec412 | 2009-09-08 15:45:00 +0000 | [diff] [blame] | 93 | // Check the special guarantees that LCSSA makes. |
Dan Gohman | 2dac978 | 2009-09-28 14:38:19 +0000 | [diff] [blame^] | 94 | assert(L->isLCSSAForm() && "LCSSA form not preserved!"); |
Dan Gohman | 9cec412 | 2009-09-08 15:45:00 +0000 | [diff] [blame] | 95 | } |
| 96 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 97 | void getLoopValuesUsedOutsideLoop(Loop *L, |
Owen Anderson | d840426 | 2009-04-22 08:50:12 +0000 | [diff] [blame] | 98 | SetVector<Instruction*> &AffectedValues, |
| 99 | const SmallVector<BasicBlock*, 8>& exitBlocks); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 100 | |
| 101 | Value *GetValueForBlock(DomTreeNode *BB, Instruction *OrigInst, |
Owen Anderson | 7c322f4 | 2008-05-26 10:07:43 +0000 | [diff] [blame] | 102 | DenseMap<DomTreeNode*, Value*> &Phis); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 103 | |
| 104 | /// inLoop - returns true if the given block is within the current loop |
Anton Korobeynikov | 6a4a933 | 2008-02-20 12:07:57 +0000 | [diff] [blame] | 105 | bool inLoop(BasicBlock* B) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 106 | return std::binary_search(LoopBlocks.begin(), LoopBlocks.end(), B); |
| 107 | } |
| 108 | }; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 109 | } |
Dan Gohman | 089efff | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 110 | |
| 111 | char LCSSA::ID = 0; |
| 112 | static RegisterPass<LCSSA> X("lcssa", "Loop-Closed SSA Form Pass"); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 113 | |
Daniel Dunbar | 163555a | 2008-10-22 23:32:42 +0000 | [diff] [blame] | 114 | Pass *llvm::createLCSSAPass() { return new LCSSA(); } |
Dan Gohman | 66a636e | 2008-05-13 02:05:11 +0000 | [diff] [blame] | 115 | const PassInfo *const llvm::LCSSAID = &X; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 116 | |
| 117 | /// runOnFunction - Process all loops in the function, inner-most out. |
Dan Gohman | 9cec412 | 2009-09-08 15:45:00 +0000 | [diff] [blame] | 118 | bool LCSSA::runOnLoop(Loop *l, LPPassManager &LPM) { |
| 119 | L = l; |
Owen Anderson | b09900b | 2009-04-22 08:09:13 +0000 | [diff] [blame] | 120 | PredCache.clear(); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 121 | |
| 122 | LI = &LPM.getAnalysis<LoopInfo>(); |
| 123 | DT = &getAnalysis<DominatorTree>(); |
Devang Patel | 9cee7a0 | 2007-08-17 21:59:16 +0000 | [diff] [blame] | 124 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 125 | // Speed up queries by creating a sorted list of blocks |
| 126 | LoopBlocks.clear(); |
| 127 | LoopBlocks.insert(LoopBlocks.end(), L->block_begin(), L->block_end()); |
| 128 | std::sort(LoopBlocks.begin(), LoopBlocks.end()); |
| 129 | |
Owen Anderson | d840426 | 2009-04-22 08:50:12 +0000 | [diff] [blame] | 130 | SmallVector<BasicBlock*, 8> exitBlocks; |
| 131 | L->getExitBlocks(exitBlocks); |
| 132 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 133 | SetVector<Instruction*> AffectedValues; |
Owen Anderson | d840426 | 2009-04-22 08:50:12 +0000 | [diff] [blame] | 134 | getLoopValuesUsedOutsideLoop(L, AffectedValues, exitBlocks); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 135 | |
| 136 | // If no values are affected, we can save a lot of work, since we know that |
| 137 | // nothing will be changed. |
| 138 | if (AffectedValues.empty()) |
| 139 | return false; |
| 140 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 141 | // Iterate over all affected values for this loop and insert Phi nodes |
| 142 | // for them in the appropriate exit blocks |
| 143 | |
| 144 | for (SetVector<Instruction*>::iterator I = AffectedValues.begin(), |
| 145 | E = AffectedValues.end(); I != E; ++I) |
| 146 | ProcessInstruction(*I, exitBlocks); |
| 147 | |
| 148 | assert(L->isLCSSAForm()); |
| 149 | |
| 150 | return true; |
| 151 | } |
| 152 | |
| 153 | /// processInstruction - Given a live-out instruction, insert LCSSA Phi nodes, |
| 154 | /// eliminate all out-of-loop uses. |
| 155 | void LCSSA::ProcessInstruction(Instruction *Instr, |
Devang Patel | 02451fa | 2007-08-21 00:31:24 +0000 | [diff] [blame] | 156 | const SmallVector<BasicBlock*, 8>& exitBlocks) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 157 | ++NumLCSSA; // We are applying the transformation |
| 158 | |
| 159 | // Keep track of the blocks that have the value available already. |
Owen Anderson | 7c322f4 | 2008-05-26 10:07:43 +0000 | [diff] [blame] | 160 | DenseMap<DomTreeNode*, Value*> Phis; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 161 | |
Dan Gohman | 480cf74 | 2009-06-26 00:31:13 +0000 | [diff] [blame] | 162 | BasicBlock *DomBB = Instr->getParent(); |
| 163 | |
| 164 | // Invoke instructions are special in that their result value is not available |
| 165 | // along their unwind edge. The code below tests to see whether DomBB dominates |
| 166 | // the value, so adjust DomBB to the normal destination block, which is |
| 167 | // effectively where the value is first usable. |
| 168 | if (InvokeInst *Inv = dyn_cast<InvokeInst>(Instr)) |
| 169 | DomBB = Inv->getNormalDest(); |
| 170 | |
| 171 | DomTreeNode *DomNode = DT->getNode(DomBB); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 172 | |
| 173 | // Insert the LCSSA phi's into the exit blocks (dominated by the value), and |
| 174 | // add them to the Phi's map. |
Devang Patel | 02451fa | 2007-08-21 00:31:24 +0000 | [diff] [blame] | 175 | for (SmallVector<BasicBlock*, 8>::const_iterator BBI = exitBlocks.begin(), |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 176 | BBE = exitBlocks.end(); BBI != BBE; ++BBI) { |
| 177 | BasicBlock *BB = *BBI; |
| 178 | DomTreeNode *ExitBBNode = DT->getNode(BB); |
| 179 | Value *&Phi = Phis[ExitBBNode]; |
Dan Gohman | 480cf74 | 2009-06-26 00:31:13 +0000 | [diff] [blame] | 180 | if (!Phi && DT->dominates(DomNode, ExitBBNode)) { |
Gabor Greif | d6da1d0 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 181 | PHINode *PN = PHINode::Create(Instr->getType(), Instr->getName()+".lcssa", |
| 182 | BB->begin()); |
Owen Anderson | d840426 | 2009-04-22 08:50:12 +0000 | [diff] [blame] | 183 | PN->reserveOperandSpace(PredCache.GetNumPreds(BB)); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 184 | |
| 185 | // Remember that this phi makes the value alive in this block. |
| 186 | Phi = PN; |
| 187 | |
| 188 | // Add inputs from inside the loop for this PHI. |
Owen Anderson | b09900b | 2009-04-22 08:09:13 +0000 | [diff] [blame] | 189 | for (BasicBlock** PI = PredCache.GetPreds(BB); *PI; ++PI) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 190 | PN->addIncoming(Instr, *PI); |
| 191 | } |
| 192 | } |
| 193 | |
| 194 | |
| 195 | // Record all uses of Instr outside the loop. We need to rewrite these. The |
| 196 | // LCSSA phis won't be included because they use the value in the loop. |
| 197 | for (Value::use_iterator UI = Instr->use_begin(), E = Instr->use_end(); |
| 198 | UI != E;) { |
| 199 | BasicBlock *UserBB = cast<Instruction>(*UI)->getParent(); |
| 200 | if (PHINode *P = dyn_cast<PHINode>(*UI)) { |
Gabor Greif | 261734d | 2009-01-23 19:40:15 +0000 | [diff] [blame] | 201 | UserBB = P->getIncomingBlock(UI); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 202 | } |
| 203 | |
| 204 | // If the user is in the loop, don't rewrite it! |
| 205 | if (UserBB == Instr->getParent() || inLoop(UserBB)) { |
| 206 | ++UI; |
| 207 | continue; |
| 208 | } |
| 209 | |
| 210 | // Otherwise, patch up uses of the value with the appropriate LCSSA Phi, |
| 211 | // inserting PHI nodes into join points where needed. |
| 212 | Value *Val = GetValueForBlock(DT->getNode(UserBB), Instr, Phis); |
| 213 | |
| 214 | // Preincrement the iterator to avoid invalidating it when we change the |
| 215 | // value. |
| 216 | Use &U = UI.getUse(); |
| 217 | ++UI; |
| 218 | U.set(Val); |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | /// getLoopValuesUsedOutsideLoop - Return any values defined in the loop that |
| 223 | /// are used by instructions outside of it. |
| 224 | void LCSSA::getLoopValuesUsedOutsideLoop(Loop *L, |
Owen Anderson | d840426 | 2009-04-22 08:50:12 +0000 | [diff] [blame] | 225 | SetVector<Instruction*> &AffectedValues, |
| 226 | const SmallVector<BasicBlock*, 8>& exitBlocks) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 227 | // FIXME: For large loops, we may be able to avoid a lot of use-scanning |
| 228 | // by using dominance information. In particular, if a block does not |
| 229 | // dominate any of the loop exits, then none of the values defined in the |
| 230 | // block could be used outside the loop. |
Owen Anderson | d840426 | 2009-04-22 08:50:12 +0000 | [diff] [blame] | 231 | for (Loop::block_iterator BB = L->block_begin(), BE = L->block_end(); |
| 232 | BB != BE; ++BB) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 233 | for (BasicBlock::iterator I = (*BB)->begin(), E = (*BB)->end(); I != E; ++I) |
Owen Anderson | d840426 | 2009-04-22 08:50:12 +0000 | [diff] [blame] | 234 | for (Value::use_iterator UI = I->use_begin(), UE = I->use_end(); UI != UE; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 235 | ++UI) { |
| 236 | BasicBlock *UserBB = cast<Instruction>(*UI)->getParent(); |
| 237 | if (PHINode* p = dyn_cast<PHINode>(*UI)) { |
Gabor Greif | 261734d | 2009-01-23 19:40:15 +0000 | [diff] [blame] | 238 | UserBB = p->getIncomingBlock(UI); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | if (*BB != UserBB && !inLoop(UserBB)) { |
Dan Gohman | 29474e9 | 2008-07-23 00:34:11 +0000 | [diff] [blame] | 242 | AffectedValues.insert(I); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 243 | break; |
| 244 | } |
| 245 | } |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | /// GetValueForBlock - Get the value to use within the specified basic block. |
| 250 | /// available values are in Phis. |
| 251 | Value *LCSSA::GetValueForBlock(DomTreeNode *BB, Instruction *OrigInst, |
Owen Anderson | 7c322f4 | 2008-05-26 10:07:43 +0000 | [diff] [blame] | 252 | DenseMap<DomTreeNode*, Value*> &Phis) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 253 | // If there is no dominator info for this BB, it is unreachable. |
| 254 | if (BB == 0) |
Owen Anderson | b99ecca | 2009-07-30 23:03:37 +0000 | [diff] [blame] | 255 | return UndefValue::get(OrigInst->getType()); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 256 | |
| 257 | // If we have already computed this value, return the previously computed val. |
Owen Anderson | 974a04a | 2008-05-30 17:31:01 +0000 | [diff] [blame] | 258 | if (Phis.count(BB)) return Phis[BB]; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 259 | |
| 260 | DomTreeNode *IDom = BB->getIDom(); |
| 261 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 262 | // Otherwise, there are two cases: we either have to insert a PHI node or we |
| 263 | // don't. We need to insert a PHI node if this block is not dominated by one |
| 264 | // of the exit nodes from the loop (the loop could have multiple exits, and |
| 265 | // though the value defined *inside* the loop dominated all its uses, each |
| 266 | // exit by itself may not dominate all the uses). |
| 267 | // |
| 268 | // The simplest way to check for this condition is by checking to see if the |
| 269 | // idom is in the loop. If so, we *know* that none of the exit blocks |
| 270 | // dominate this block. Note that we *know* that the block defining the |
| 271 | // original instruction is in the idom chain, because if it weren't, then the |
| 272 | // original value didn't dominate this use. |
| 273 | if (!inLoop(IDom->getBlock())) { |
| 274 | // Idom is not in the loop, we must still be "below" the exit block and must |
| 275 | // be fully dominated by the value live in the idom. |
Owen Anderson | 974a04a | 2008-05-30 17:31:01 +0000 | [diff] [blame] | 276 | Value* val = GetValueForBlock(IDom, OrigInst, Phis); |
| 277 | Phis.insert(std::make_pair(BB, val)); |
| 278 | return val; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | BasicBlock *BBN = BB->getBlock(); |
| 282 | |
| 283 | // Otherwise, the idom is the loop, so we need to insert a PHI node. Do so |
| 284 | // now, then get values to fill in the incoming values for the PHI. |
Gabor Greif | b91ea9d | 2008-05-15 10:04:30 +0000 | [diff] [blame] | 285 | PHINode *PN = PHINode::Create(OrigInst->getType(), |
| 286 | OrigInst->getName() + ".lcssa", BBN->begin()); |
Owen Anderson | d840426 | 2009-04-22 08:50:12 +0000 | [diff] [blame] | 287 | PN->reserveOperandSpace(PredCache.GetNumPreds(BBN)); |
Owen Anderson | 974a04a | 2008-05-30 17:31:01 +0000 | [diff] [blame] | 288 | Phis.insert(std::make_pair(BB, PN)); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 289 | |
| 290 | // Fill in the incoming values for the block. |
Owen Anderson | b09900b | 2009-04-22 08:09:13 +0000 | [diff] [blame] | 291 | for (BasicBlock** PI = PredCache.GetPreds(BBN); *PI; ++PI) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 292 | PN->addIncoming(GetValueForBlock(DT->getNode(*PI), OrigInst, Phis), *PI); |
| 293 | return PN; |
| 294 | } |
| 295 | |