blob: b510262c05cad858ea5f83d8a0082191d376d180 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- LCSSA.cpp - Convert loops into loop-closed SSA form ---------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
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 Gohman03eb27e2008-06-03 00:57:21 +000020// ... = X3 + 4 X4 = phi(X3)
21// ... = X4 + 4
Dan Gohmanf17a25c2007-07-18 16:29:46 +000022//
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 Andersona09d2342009-07-05 22:41:43 +000036#include "llvm/LLVMContext.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000037#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 Andersonb09900b2009-04-22 08:09:13 +000044#include "llvm/Support/PredIteratorCache.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000045#include <algorithm>
46#include <map>
47using namespace llvm;
48
49STATISTIC(NumLCSSA, "Number of live out of a loop variables");
50
51namespace {
52 struct VISIBILITY_HIDDEN LCSSA : public LoopPass {
53 static char ID; // Pass identification, replacement for typeid
Dan Gohman26f8c272008-09-04 17:05:41 +000054 LCSSA() : LoopPass(&ID) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000055
56 // Cached analysis information for the current function.
57 LoopInfo *LI;
58 DominatorTree *DT;
59 std::vector<BasicBlock*> LoopBlocks;
Owen Andersonb09900b2009-04-22 08:09:13 +000060 PredIteratorCache PredCache;
Dan Gohman9cec4122009-09-08 15:45:00 +000061 Loop *L;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000062
63 virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
64
65 void ProcessInstruction(Instruction* Instr,
Devang Patel02451fa2007-08-21 00:31:24 +000066 const SmallVector<BasicBlock*, 8>& exitBlocks);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000067
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 Gohman9cec4122009-09-08 15:45:00 +000076 AU.addRequiredTransitive<LoopInfo>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000077 AU.addPreserved<LoopInfo>();
Dan Gohman9cec4122009-09-08 15:45:00 +000078 AU.addRequiredTransitive<DominatorTree>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000079 AU.addPreserved<ScalarEvolution>();
Devang Patel48d15802007-07-30 20:23:45 +000080 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 Gohmanf17a25c2007-07-18 16:29:46 +000088 }
89 private:
Dan Gohman9cec4122009-09-08 15:45:00 +000090
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
Dan Gohmanf17a25c2007-07-18 16:29:46 +000099 void getLoopValuesUsedOutsideLoop(Loop *L,
Owen Andersond8404262009-04-22 08:50:12 +0000100 SetVector<Instruction*> &AffectedValues,
101 const SmallVector<BasicBlock*, 8>& exitBlocks);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000102
103 Value *GetValueForBlock(DomTreeNode *BB, Instruction *OrigInst,
Owen Anderson7c322f42008-05-26 10:07:43 +0000104 DenseMap<DomTreeNode*, Value*> &Phis);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000105
106 /// inLoop - returns true if the given block is within the current loop
Anton Korobeynikov6a4a9332008-02-20 12:07:57 +0000107 bool inLoop(BasicBlock* B) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000108 return std::binary_search(LoopBlocks.begin(), LoopBlocks.end(), B);
109 }
110 };
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000111}
Dan Gohman089efff2008-05-13 00:00:25 +0000112
113char LCSSA::ID = 0;
114static RegisterPass<LCSSA> X("lcssa", "Loop-Closed SSA Form Pass");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000115
Daniel Dunbar163555a2008-10-22 23:32:42 +0000116Pass *llvm::createLCSSAPass() { return new LCSSA(); }
Dan Gohman66a636e2008-05-13 02:05:11 +0000117const PassInfo *const llvm::LCSSAID = &X;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000118
119/// runOnFunction - Process all loops in the function, inner-most out.
Dan Gohman9cec4122009-09-08 15:45:00 +0000120bool LCSSA::runOnLoop(Loop *l, LPPassManager &LPM) {
121 L = l;
Owen Andersonb09900b2009-04-22 08:09:13 +0000122 PredCache.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000123
124 LI = &LPM.getAnalysis<LoopInfo>();
125 DT = &getAnalysis<DominatorTree>();
Devang Patel9cee7a02007-08-17 21:59:16 +0000126
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000127 // Speed up queries by creating a sorted list of blocks
128 LoopBlocks.clear();
129 LoopBlocks.insert(LoopBlocks.end(), L->block_begin(), L->block_end());
130 std::sort(LoopBlocks.begin(), LoopBlocks.end());
131
Owen Andersond8404262009-04-22 08:50:12 +0000132 SmallVector<BasicBlock*, 8> exitBlocks;
133 L->getExitBlocks(exitBlocks);
134
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000135 SetVector<Instruction*> AffectedValues;
Owen Andersond8404262009-04-22 08:50:12 +0000136 getLoopValuesUsedOutsideLoop(L, AffectedValues, exitBlocks);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000137
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
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000143 // Iterate over all affected values for this loop and insert Phi nodes
144 // for them in the appropriate exit blocks
145
146 for (SetVector<Instruction*>::iterator I = AffectedValues.begin(),
147 E = AffectedValues.end(); I != E; ++I)
148 ProcessInstruction(*I, exitBlocks);
149
150 assert(L->isLCSSAForm());
151
152 return true;
153}
154
155/// processInstruction - Given a live-out instruction, insert LCSSA Phi nodes,
156/// eliminate all out-of-loop uses.
157void LCSSA::ProcessInstruction(Instruction *Instr,
Devang Patel02451fa2007-08-21 00:31:24 +0000158 const SmallVector<BasicBlock*, 8>& exitBlocks) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000159 ++NumLCSSA; // We are applying the transformation
160
161 // Keep track of the blocks that have the value available already.
Owen Anderson7c322f42008-05-26 10:07:43 +0000162 DenseMap<DomTreeNode*, Value*> Phis;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000163
Dan Gohman480cf742009-06-26 00:31:13 +0000164 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);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000174
175 // Insert the LCSSA phi's into the exit blocks (dominated by the value), and
176 // add them to the Phi's map.
Devang Patel02451fa2007-08-21 00:31:24 +0000177 for (SmallVector<BasicBlock*, 8>::const_iterator BBI = exitBlocks.begin(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000178 BBE = exitBlocks.end(); BBI != BBE; ++BBI) {
179 BasicBlock *BB = *BBI;
180 DomTreeNode *ExitBBNode = DT->getNode(BB);
181 Value *&Phi = Phis[ExitBBNode];
Dan Gohman480cf742009-06-26 00:31:13 +0000182 if (!Phi && DT->dominates(DomNode, ExitBBNode)) {
Gabor Greifd6da1d02008-04-06 20:25:17 +0000183 PHINode *PN = PHINode::Create(Instr->getType(), Instr->getName()+".lcssa",
184 BB->begin());
Owen Andersond8404262009-04-22 08:50:12 +0000185 PN->reserveOperandSpace(PredCache.GetNumPreds(BB));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000186
187 // Remember that this phi makes the value alive in this block.
188 Phi = PN;
189
190 // Add inputs from inside the loop for this PHI.
Owen Andersonb09900b2009-04-22 08:09:13 +0000191 for (BasicBlock** PI = PredCache.GetPreds(BB); *PI; ++PI)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000192 PN->addIncoming(Instr, *PI);
193 }
194 }
195
196
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 Greif261734d2009-01-23 19:40:15 +0000203 UserBB = P->getIncomingBlock(UI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000204 }
205
206 // If the user is in the loop, don't rewrite it!
207 if (UserBB == Instr->getParent() || inLoop(UserBB)) {
208 ++UI;
209 continue;
210 }
211
212 // Otherwise, patch up uses of the value with the appropriate LCSSA Phi,
213 // inserting PHI nodes into join points where needed.
214 Value *Val = GetValueForBlock(DT->getNode(UserBB), Instr, Phis);
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);
221 }
222}
223
224/// getLoopValuesUsedOutsideLoop - Return any values defined in the loop that
225/// are used by instructions outside of it.
226void LCSSA::getLoopValuesUsedOutsideLoop(Loop *L,
Owen Andersond8404262009-04-22 08:50:12 +0000227 SetVector<Instruction*> &AffectedValues,
228 const SmallVector<BasicBlock*, 8>& exitBlocks) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000229 // 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 Andersond8404262009-04-22 08:50:12 +0000233 for (Loop::block_iterator BB = L->block_begin(), BE = L->block_end();
234 BB != BE; ++BB) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000235 for (BasicBlock::iterator I = (*BB)->begin(), E = (*BB)->end(); I != E; ++I)
Owen Andersond8404262009-04-22 08:50:12 +0000236 for (Value::use_iterator UI = I->use_begin(), UE = I->use_end(); UI != UE;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000237 ++UI) {
238 BasicBlock *UserBB = cast<Instruction>(*UI)->getParent();
239 if (PHINode* p = dyn_cast<PHINode>(*UI)) {
Gabor Greif261734d2009-01-23 19:40:15 +0000240 UserBB = p->getIncomingBlock(UI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000241 }
242
243 if (*BB != UserBB && !inLoop(UserBB)) {
Dan Gohman29474e92008-07-23 00:34:11 +0000244 AffectedValues.insert(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000245 break;
246 }
247 }
248 }
249}
250
251/// GetValueForBlock - Get the value to use within the specified basic block.
252/// available values are in Phis.
253Value *LCSSA::GetValueForBlock(DomTreeNode *BB, Instruction *OrigInst,
Owen Anderson7c322f42008-05-26 10:07:43 +0000254 DenseMap<DomTreeNode*, Value*> &Phis) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000255 // If there is no dominator info for this BB, it is unreachable.
256 if (BB == 0)
Owen Andersonb99ecca2009-07-30 23:03:37 +0000257 return UndefValue::get(OrigInst->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000258
259 // If we have already computed this value, return the previously computed val.
Owen Anderson974a04a2008-05-30 17:31:01 +0000260 if (Phis.count(BB)) return Phis[BB];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000261
262 DomTreeNode *IDom = BB->getIDom();
263
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000264 // 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.
275 if (!inLoop(IDom->getBlock())) {
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 Anderson974a04a2008-05-30 17:31:01 +0000278 Value* val = GetValueForBlock(IDom, OrigInst, Phis);
279 Phis.insert(std::make_pair(BB, val));
280 return val;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000281 }
282
283 BasicBlock *BBN = BB->getBlock();
284
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 Greifb91ea9d2008-05-15 10:04:30 +0000287 PHINode *PN = PHINode::Create(OrigInst->getType(),
288 OrigInst->getName() + ".lcssa", BBN->begin());
Owen Andersond8404262009-04-22 08:50:12 +0000289 PN->reserveOperandSpace(PredCache.GetNumPreds(BBN));
Owen Anderson974a04a2008-05-30 17:31:01 +0000290 Phis.insert(std::make_pair(BB, PN));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000291
292 // Fill in the incoming values for the block.
Owen Andersonb09900b2009-04-22 08:09:13 +0000293 for (BasicBlock** PI = PredCache.GetPreds(BBN); *PI; ++PI)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000294 PN->addIncoming(GetValueForBlock(DT->getNode(*PI), OrigInst, Phis), *PI);
295 return PN;
296}
297