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 | // |
| 5 | // This file was developed by Owen Anderson and is distributed under the |
| 6 | // University of Illinois Open Source License. See LICENSE.TXT for details. |
| 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) |
| 20 | // ... = X3 + 4 X4 = phi(X3) |
| 21 | // ... = X4 + 4 |
| 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 | 9e1c1dd | 2006-06-04 00:02:23 +0000 | [diff] [blame] | 36 | #include "llvm/ADT/SetVector.h" |
Owen Anderson | a90b2c7 | 2006-05-27 00:31:37 +0000 | [diff] [blame] | 37 | #include "llvm/ADT/Statistic.h" |
Owen Anderson | 2480737 | 2006-05-26 21:11:53 +0000 | [diff] [blame] | 38 | #include "llvm/Analysis/Dominators.h" |
Owen Anderson | 11f510b | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 39 | #include "llvm/Analysis/LoopInfo.h" |
| 40 | #include "llvm/Support/CFG.h" |
Owen Anderson | 2480737 | 2006-05-26 21:11:53 +0000 | [diff] [blame] | 41 | #include <algorithm> |
Owen Anderson | 2f21e07 | 2006-05-27 18:47:11 +0000 | [diff] [blame] | 42 | #include <map> |
Owen Anderson | 11f510b | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 43 | using namespace llvm; |
| 44 | |
Chris Lattner | d216e8b | 2006-12-19 22:17:40 +0000 | [diff] [blame] | 45 | STATISTIC(NumLCSSA, "Number of live out of a loop variables"); |
| 46 | |
Owen Anderson | 11f510b | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 47 | namespace { |
Chris Lattner | d41ae8b | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 48 | struct LCSSA : public FunctionPass { |
| 49 | // Cached analysis information for the current function. |
| 50 | LoopInfo *LI; |
| 51 | DominatorTree *DT; |
Owen Anderson | 92deacf | 2006-06-06 04:28:30 +0000 | [diff] [blame] | 52 | std::vector<BasicBlock*> LoopBlocks; |
Owen Anderson | 11f510b | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 53 | |
| 54 | virtual bool runOnFunction(Function &F); |
Owen Anderson | fc3a3bc | 2006-05-26 21:19:17 +0000 | [diff] [blame] | 55 | bool visitSubloop(Loop* L); |
Chris Lattner | d41ae8b | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 56 | void ProcessInstruction(Instruction* Instr, |
Owen Anderson | 408a406 | 2006-05-31 20:55:06 +0000 | [diff] [blame] | 57 | const std::vector<BasicBlock*>& exitBlocks); |
Owen Anderson | 11f510b | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 58 | |
| 59 | /// This transformation requires natural loop information & requires that |
Owen Anderson | a90b2c7 | 2006-05-27 00:31:37 +0000 | [diff] [blame] | 60 | /// loop preheaders be inserted into the CFG. It maintains both of these, |
| 61 | /// as well as the CFG. It also requires dominator information. |
Owen Anderson | 11f510b | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 62 | /// |
| 63 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
Owen Anderson | 2480737 | 2006-05-26 21:11:53 +0000 | [diff] [blame] | 64 | AU.setPreservesCFG(); |
Owen Anderson | 11f510b | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 65 | AU.addRequiredID(LoopSimplifyID); |
| 66 | AU.addPreservedID(LoopSimplifyID); |
| 67 | AU.addRequired<LoopInfo>(); |
Owen Anderson | 2f21e07 | 2006-05-27 18:47:11 +0000 | [diff] [blame] | 68 | AU.addRequired<DominatorTree>(); |
Owen Anderson | 11f510b | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 69 | } |
| 70 | private: |
Owen Anderson | 9e1c1dd | 2006-06-04 00:02:23 +0000 | [diff] [blame] | 71 | SetVector<Instruction*> getLoopValuesUsedOutsideLoop(Loop *L); |
Chris Lattner | d41ae8b | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 72 | |
Chris Lattner | cbea67f | 2006-10-31 18:56:48 +0000 | [diff] [blame] | 73 | Value *GetValueForBlock(DominatorTree::Node *BB, Instruction *OrigInst, |
| 74 | std::map<DominatorTree::Node*, Value*> &Phis); |
Chris Lattner | d41ae8b | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 75 | |
Owen Anderson | 92deacf | 2006-06-06 04:28:30 +0000 | [diff] [blame] | 76 | /// inLoop - returns true if the given block is within the current loop |
| 77 | const bool inLoop(BasicBlock* B) { |
Owen Anderson | e9d93d5 | 2006-06-06 04:36:36 +0000 | [diff] [blame] | 78 | return std::binary_search(LoopBlocks.begin(), LoopBlocks.end(), B); |
| 79 | } |
Owen Anderson | 11f510b | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 80 | }; |
| 81 | |
Chris Lattner | 7f8897f | 2006-08-27 22:42:52 +0000 | [diff] [blame] | 82 | RegisterPass<LCSSA> X("lcssa", "Loop-Closed SSA Form Pass"); |
Owen Anderson | 11f510b | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | FunctionPass *llvm::createLCSSAPass() { return new LCSSA(); } |
Owen Anderson | a452932 | 2006-06-08 20:02:53 +0000 | [diff] [blame] | 86 | const PassInfo *llvm::LCSSAID = X.getPassInfo(); |
Owen Anderson | 11f510b | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 87 | |
Owen Anderson | a452932 | 2006-06-08 20:02:53 +0000 | [diff] [blame] | 88 | /// runOnFunction - Process all loops in the function, inner-most out. |
Owen Anderson | 11f510b | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 89 | bool LCSSA::runOnFunction(Function &F) { |
| 90 | bool changed = false; |
Owen Anderson | 7be3f1e | 2006-06-13 19:37:18 +0000 | [diff] [blame] | 91 | |
Owen Anderson | 11f510b | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 92 | LI = &getAnalysis<LoopInfo>(); |
Owen Anderson | 2480737 | 2006-05-26 21:11:53 +0000 | [diff] [blame] | 93 | DT = &getAnalysis<DominatorTree>(); |
Owen Anderson | 11f510b | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 94 | |
Chris Lattner | d41ae8b | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 95 | for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I) |
Owen Anderson | 2480737 | 2006-05-26 21:11:53 +0000 | [diff] [blame] | 96 | changed |= visitSubloop(*I); |
Evan Cheng | b9b2b30 | 2006-06-11 09:32:57 +0000 | [diff] [blame] | 97 | |
Owen Anderson | 11f510b | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 98 | return changed; |
| 99 | } |
| 100 | |
Owen Anderson | a452932 | 2006-06-08 20:02:53 +0000 | [diff] [blame] | 101 | /// visitSubloop - Recursively process all subloops, and then process the given |
| 102 | /// loop if it has live-out values. |
Owen Anderson | 2480737 | 2006-05-26 21:11:53 +0000 | [diff] [blame] | 103 | bool LCSSA::visitSubloop(Loop* L) { |
| 104 | for (Loop::iterator I = L->begin(), E = L->end(); I != E; ++I) |
| 105 | visitSubloop(*I); |
Owen Anderson | 7be3f1e | 2006-06-13 19:37:18 +0000 | [diff] [blame] | 106 | |
Owen Anderson | 2480737 | 2006-05-26 21:11:53 +0000 | [diff] [blame] | 107 | // Speed up queries by creating a sorted list of blocks |
Owen Anderson | 92deacf | 2006-06-06 04:28:30 +0000 | [diff] [blame] | 108 | LoopBlocks.clear(); |
| 109 | LoopBlocks.insert(LoopBlocks.end(), L->block_begin(), L->block_end()); |
| 110 | std::sort(LoopBlocks.begin(), LoopBlocks.end()); |
Owen Anderson | 2480737 | 2006-05-26 21:11:53 +0000 | [diff] [blame] | 111 | |
Owen Anderson | 9e1c1dd | 2006-06-04 00:02:23 +0000 | [diff] [blame] | 112 | SetVector<Instruction*> AffectedValues = getLoopValuesUsedOutsideLoop(L); |
Owen Anderson | 11f510b | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 113 | |
Owen Anderson | 408a406 | 2006-05-31 20:55:06 +0000 | [diff] [blame] | 114 | // If no values are affected, we can save a lot of work, since we know that |
| 115 | // nothing will be changed. |
| 116 | if (AffectedValues.empty()) |
| 117 | return false; |
| 118 | |
Owen Anderson | 11f510b | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 119 | std::vector<BasicBlock*> exitBlocks; |
| 120 | L->getExitBlocks(exitBlocks); |
| 121 | |
Owen Anderson | 2f21e07 | 2006-05-27 18:47:11 +0000 | [diff] [blame] | 122 | |
| 123 | // Iterate over all affected values for this loop and insert Phi nodes |
| 124 | // for them in the appropriate exit blocks |
Owen Anderson | 408a406 | 2006-05-31 20:55:06 +0000 | [diff] [blame] | 125 | |
Owen Anderson | 9e1c1dd | 2006-06-04 00:02:23 +0000 | [diff] [blame] | 126 | for (SetVector<Instruction*>::iterator I = AffectedValues.begin(), |
Chris Lattner | d41ae8b | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 127 | E = AffectedValues.end(); I != E; ++I) |
| 128 | ProcessInstruction(*I, exitBlocks); |
Owen Anderson | 00ea74c | 2006-05-29 01:00:00 +0000 | [diff] [blame] | 129 | |
Owen Anderson | c2cc15c | 2006-06-11 19:22:28 +0000 | [diff] [blame] | 130 | assert(L->isLCSSAForm()); |
| 131 | |
Owen Anderson | 92deacf | 2006-06-06 04:28:30 +0000 | [diff] [blame] | 132 | return true; |
Owen Anderson | 11f510b | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 133 | } |
| 134 | |
Owen Anderson | a452932 | 2006-06-08 20:02:53 +0000 | [diff] [blame] | 135 | /// processInstruction - Given a live-out instruction, insert LCSSA Phi nodes, |
| 136 | /// eliminate all out-of-loop uses. |
Chris Lattner | d41ae8b | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 137 | void LCSSA::ProcessInstruction(Instruction *Instr, |
| 138 | const std::vector<BasicBlock*>& exitBlocks) { |
Owen Anderson | 408a406 | 2006-05-31 20:55:06 +0000 | [diff] [blame] | 139 | ++NumLCSSA; // We are applying the transformation |
Chris Lattner | d41ae8b | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 140 | |
| 141 | // Keep track of the blocks that have the value available already. |
Chris Lattner | cbea67f | 2006-10-31 18:56:48 +0000 | [diff] [blame] | 142 | std::map<DominatorTree::Node*, Value*> Phis; |
Chris Lattner | d41ae8b | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 143 | |
| 144 | DominatorTree::Node *InstrNode = DT->getNode(Instr->getParent()); |
| 145 | |
| 146 | // Insert the LCSSA phi's into the exit blocks (dominated by the value), and |
| 147 | // add them to the Phi's map. |
Owen Anderson | 408a406 | 2006-05-31 20:55:06 +0000 | [diff] [blame] | 148 | for (std::vector<BasicBlock*>::const_iterator BBI = exitBlocks.begin(), |
Owen Anderson | 3d2aa47 | 2006-06-12 07:10:16 +0000 | [diff] [blame] | 149 | BBE = exitBlocks.end(); BBI != BBE; ++BBI) { |
Chris Lattner | d41ae8b | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 150 | BasicBlock *BB = *BBI; |
| 151 | DominatorTree::Node *ExitBBNode = DT->getNode(BB); |
Chris Lattner | cbea67f | 2006-10-31 18:56:48 +0000 | [diff] [blame] | 152 | Value *&Phi = Phis[ExitBBNode]; |
Chris Lattner | d41ae8b | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 153 | if (!Phi && InstrNode->dominates(ExitBBNode)) { |
Chris Lattner | cbea67f | 2006-10-31 18:56:48 +0000 | [diff] [blame] | 154 | PHINode *PN = new PHINode(Instr->getType(), Instr->getName()+".lcssa", |
| 155 | BB->begin()); |
| 156 | PN->reserveOperandSpace(std::distance(pred_begin(BB), pred_end(BB))); |
| 157 | |
| 158 | // Remember that this phi makes the value alive in this block. |
| 159 | Phi = PN; |
Chris Lattner | d41ae8b | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 160 | |
| 161 | // Add inputs from inside the loop for this PHI. |
| 162 | for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) |
Chris Lattner | cbea67f | 2006-10-31 18:56:48 +0000 | [diff] [blame] | 163 | PN->addIncoming(Instr, *PI); |
Owen Anderson | 2824da4 | 2006-06-01 06:05:47 +0000 | [diff] [blame] | 164 | } |
Owen Anderson | 3d2aa47 | 2006-06-12 07:10:16 +0000 | [diff] [blame] | 165 | } |
Owen Anderson | 408a406 | 2006-05-31 20:55:06 +0000 | [diff] [blame] | 166 | |
Owen Anderson | 30019c8 | 2006-06-03 23:22:50 +0000 | [diff] [blame] | 167 | |
Chris Lattner | d41ae8b | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 168 | // Record all uses of Instr outside the loop. We need to rewrite these. The |
| 169 | // LCSSA phis won't be included because they use the value in the loop. |
| 170 | for (Value::use_iterator UI = Instr->use_begin(), E = Instr->use_end(); |
| 171 | UI != E;) { |
| 172 | BasicBlock *UserBB = cast<Instruction>(*UI)->getParent(); |
| 173 | if (PHINode *P = dyn_cast<PHINode>(*UI)) { |
Owen Anderson | 8b92d0c | 2006-06-13 20:50:09 +0000 | [diff] [blame] | 174 | unsigned OperandNo = UI.getOperandNo(); |
Chris Lattner | d41ae8b | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 175 | UserBB = P->getIncomingBlock(OperandNo/2); |
Owen Anderson | 8b92d0c | 2006-06-13 20:50:09 +0000 | [diff] [blame] | 176 | } |
| 177 | |
Chris Lattner | d41ae8b | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 178 | // If the user is in the loop, don't rewrite it! |
Chris Lattner | f9ba401 | 2006-08-02 00:16:47 +0000 | [diff] [blame] | 179 | if (UserBB == Instr->getParent() || inLoop(UserBB)) { |
Chris Lattner | d41ae8b | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 180 | ++UI; |
| 181 | continue; |
Owen Anderson | 2824da4 | 2006-06-01 06:05:47 +0000 | [diff] [blame] | 182 | } |
Chris Lattner | d41ae8b | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 183 | |
| 184 | // Otherwise, patch up uses of the value with the appropriate LCSSA Phi, |
| 185 | // inserting PHI nodes into join points where needed. |
Chris Lattner | cbea67f | 2006-10-31 18:56:48 +0000 | [diff] [blame] | 186 | Value *Val = GetValueForBlock(DT->getNode(UserBB), Instr, Phis); |
Chris Lattner | d41ae8b | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 187 | |
| 188 | // Preincrement the iterator to avoid invalidating it when we change the |
| 189 | // value. |
| 190 | Use &U = UI.getUse(); |
| 191 | ++UI; |
| 192 | U.set(Val); |
Owen Anderson | 408a406 | 2006-05-31 20:55:06 +0000 | [diff] [blame] | 193 | } |
| 194 | } |
| 195 | |
Owen Anderson | 2480737 | 2006-05-26 21:11:53 +0000 | [diff] [blame] | 196 | /// getLoopValuesUsedOutsideLoop - Return any values defined in the loop that |
| 197 | /// are used by instructions outside of it. |
Owen Anderson | 9e1c1dd | 2006-06-04 00:02:23 +0000 | [diff] [blame] | 198 | SetVector<Instruction*> LCSSA::getLoopValuesUsedOutsideLoop(Loop *L) { |
Owen Anderson | 408a406 | 2006-05-31 20:55:06 +0000 | [diff] [blame] | 199 | |
| 200 | // FIXME: For large loops, we may be able to avoid a lot of use-scanning |
| 201 | // by using dominance information. In particular, if a block does not |
| 202 | // dominate any of the loop exits, then none of the values defined in the |
| 203 | // block could be used outside the loop. |
| 204 | |
Owen Anderson | 9e1c1dd | 2006-06-04 00:02:23 +0000 | [diff] [blame] | 205 | SetVector<Instruction*> AffectedValues; |
Owen Anderson | 11f510b | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 206 | for (Loop::block_iterator BB = L->block_begin(), E = L->block_end(); |
| 207 | BB != E; ++BB) { |
| 208 | for (BasicBlock::iterator I = (*BB)->begin(), E = (*BB)->end(); I != E; ++I) |
| 209 | for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; |
| 210 | ++UI) { |
| 211 | BasicBlock *UserBB = cast<Instruction>(*UI)->getParent(); |
Owen Anderson | 7be3f1e | 2006-06-13 19:37:18 +0000 | [diff] [blame] | 212 | if (PHINode* p = dyn_cast<PHINode>(*UI)) { |
| 213 | unsigned OperandNo = UI.getOperandNo(); |
| 214 | UserBB = p->getIncomingBlock(OperandNo/2); |
| 215 | } |
| 216 | |
Chris Lattner | f9ba401 | 2006-08-02 00:16:47 +0000 | [diff] [blame] | 217 | if (*BB != UserBB && !inLoop(UserBB)) { |
Owen Anderson | 11f510b | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 218 | AffectedValues.insert(I); |
Owen Anderson | 408a406 | 2006-05-31 20:55:06 +0000 | [diff] [blame] | 219 | break; |
| 220 | } |
Owen Anderson | 11f510b | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 221 | } |
| 222 | } |
| 223 | return AffectedValues; |
Owen Anderson | 2480737 | 2006-05-26 21:11:53 +0000 | [diff] [blame] | 224 | } |
Owen Anderson | 408a406 | 2006-05-31 20:55:06 +0000 | [diff] [blame] | 225 | |
Chris Lattner | d41ae8b | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 226 | /// GetValueForBlock - Get the value to use within the specified basic block. |
| 227 | /// available values are in Phis. |
Chris Lattner | cbea67f | 2006-10-31 18:56:48 +0000 | [diff] [blame] | 228 | Value *LCSSA::GetValueForBlock(DominatorTree::Node *BB, Instruction *OrigInst, |
| 229 | std::map<DominatorTree::Node*, Value*> &Phis) { |
| 230 | // If there is no dominator info for this BB, it is unreachable. |
| 231 | if (BB == 0) |
| 232 | return UndefValue::get(OrigInst->getType()); |
| 233 | |
Chris Lattner | d41ae8b | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 234 | // If we have already computed this value, return the previously computed val. |
Chris Lattner | cbea67f | 2006-10-31 18:56:48 +0000 | [diff] [blame] | 235 | Value *&V = Phis[BB]; |
Chris Lattner | d41ae8b | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 236 | if (V) return V; |
| 237 | |
| 238 | DominatorTree::Node *IDom = BB->getIDom(); |
| 239 | |
| 240 | // Otherwise, there are two cases: we either have to insert a PHI node or we |
| 241 | // don't. We need to insert a PHI node if this block is not dominated by one |
| 242 | // of the exit nodes from the loop (the loop could have multiple exits, and |
| 243 | // though the value defined *inside* the loop dominated all its uses, each |
| 244 | // exit by itself may not dominate all the uses). |
| 245 | // |
| 246 | // The simplest way to check for this condition is by checking to see if the |
| 247 | // idom is in the loop. If so, we *know* that none of the exit blocks |
| 248 | // dominate this block. Note that we *know* that the block defining the |
| 249 | // original instruction is in the idom chain, because if it weren't, then the |
| 250 | // original value didn't dominate this use. |
| 251 | if (!inLoop(IDom->getBlock())) { |
| 252 | // Idom is not in the loop, we must still be "below" the exit block and must |
| 253 | // be fully dominated by the value live in the idom. |
| 254 | return V = GetValueForBlock(IDom, OrigInst, Phis); |
| 255 | } |
Owen Anderson | e4e1ecd | 2006-07-09 08:14:06 +0000 | [diff] [blame] | 256 | |
Chris Lattner | d41ae8b | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 257 | BasicBlock *BBN = BB->getBlock(); |
Owen Anderson | 408a406 | 2006-05-31 20:55:06 +0000 | [diff] [blame] | 258 | |
Chris Lattner | d41ae8b | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 259 | // Otherwise, the idom is the loop, so we need to insert a PHI node. Do so |
| 260 | // now, then get values to fill in the incoming values for the PHI. |
Chris Lattner | cbea67f | 2006-10-31 18:56:48 +0000 | [diff] [blame] | 261 | PHINode *PN = new PHINode(OrigInst->getType(), OrigInst->getName()+".lcssa", |
| 262 | BBN->begin()); |
| 263 | PN->reserveOperandSpace(std::distance(pred_begin(BBN), pred_end(BBN))); |
| 264 | V = PN; |
| 265 | |
Chris Lattner | d41ae8b | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 266 | // Fill in the incoming values for the block. |
| 267 | for (pred_iterator PI = pred_begin(BBN), E = pred_end(BBN); PI != E; ++PI) |
Chris Lattner | cbea67f | 2006-10-31 18:56:48 +0000 | [diff] [blame] | 268 | PN->addIncoming(GetValueForBlock(DT->getNode(*PI), OrigInst, Phis), *PI); |
| 269 | return PN; |
Owen Anderson | 408a406 | 2006-05-31 20:55:06 +0000 | [diff] [blame] | 270 | } |
Chris Lattner | d41ae8b | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 271 | |