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