blob: b3d1c977cfae0a4c4f4a93d7f09daefc03c15cce [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/Statistic.h"
Chris Lattner7dd77a52009-10-11 01:07:15 +000038#include "llvm/ADT/STLExtras.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000039#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 <map>
46using namespace llvm;
47
48STATISTIC(NumLCSSA, "Number of live out of a loop variables");
49
50namespace {
51 struct VISIBILITY_HIDDEN LCSSA : public LoopPass {
52 static char ID; // Pass identification, replacement for typeid
Dan Gohman26f8c272008-09-04 17:05:41 +000053 LCSSA() : LoopPass(&ID) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000054
55 // Cached analysis information for the current function.
56 LoopInfo *LI;
57 DominatorTree *DT;
58 std::vector<BasicBlock*> LoopBlocks;
Owen Andersonb09900b2009-04-22 08:09:13 +000059 PredIteratorCache PredCache;
Dan Gohman9cec4122009-09-08 15:45:00 +000060 Loop *L;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000061
62 virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
63
Dan Gohmanf17a25c2007-07-18 16:29:46 +000064 /// This transformation requires natural loop information & requires that
65 /// loop preheaders be inserted into the CFG. It maintains both of these,
66 /// as well as the CFG. It also requires dominator information.
67 ///
68 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
69 AU.setPreservesCFG();
70 AU.addRequiredID(LoopSimplifyID);
71 AU.addPreservedID(LoopSimplifyID);
Dan Gohman9cec4122009-09-08 15:45:00 +000072 AU.addRequiredTransitive<LoopInfo>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000073 AU.addPreserved<LoopInfo>();
Dan Gohman9cec4122009-09-08 15:45:00 +000074 AU.addRequiredTransitive<DominatorTree>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000075 AU.addPreserved<ScalarEvolution>();
Devang Patel48d15802007-07-30 20:23:45 +000076 AU.addPreserved<DominatorTree>();
77
78 // Request DominanceFrontier now, even though LCSSA does
79 // not use it. This allows Pass Manager to schedule Dominance
80 // Frontier early enough such that one LPPassManager can handle
81 // multiple loop transformation passes.
82 AU.addRequired<DominanceFrontier>();
83 AU.addPreserved<DominanceFrontier>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000084 }
85 private:
Chris Lattner7dd77a52009-10-11 01:07:15 +000086 void ProcessInstruction(Instruction* Instr,
87 const SmallVector<BasicBlock*, 8>& exitBlocks);
88
Dan Gohman9cec4122009-09-08 15:45:00 +000089 /// verifyAnalysis() - Verify loop nest.
90 virtual void verifyAnalysis() const {
Dan Gohman9cec4122009-09-08 15:45:00 +000091 // Check the special guarantees that LCSSA makes.
Dan Gohman2dac9782009-09-28 14:38:19 +000092 assert(L->isLCSSAForm() && "LCSSA form not preserved!");
Dan Gohman9cec4122009-09-08 15:45:00 +000093 }
94
Dan Gohmanf17a25c2007-07-18 16:29:46 +000095 void getLoopValuesUsedOutsideLoop(Loop *L,
Chris Lattner7dd77a52009-10-11 01:07:15 +000096 SmallVectorImpl<Instruction*> &AffectedValues);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000097
98 Value *GetValueForBlock(DomTreeNode *BB, Instruction *OrigInst,
Owen Anderson7c322f42008-05-26 10:07:43 +000099 DenseMap<DomTreeNode*, Value*> &Phis);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000100
101 /// inLoop - returns true if the given block is within the current loop
Chris Lattner7dd77a52009-10-11 01:07:15 +0000102 bool inLoop(BasicBlock *B) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000103 return std::binary_search(LoopBlocks.begin(), LoopBlocks.end(), B);
104 }
105 };
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000106}
Dan Gohman089efff2008-05-13 00:00:25 +0000107
108char LCSSA::ID = 0;
109static RegisterPass<LCSSA> X("lcssa", "Loop-Closed SSA Form Pass");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000110
Daniel Dunbar163555a2008-10-22 23:32:42 +0000111Pass *llvm::createLCSSAPass() { return new LCSSA(); }
Dan Gohman66a636e2008-05-13 02:05:11 +0000112const PassInfo *const llvm::LCSSAID = &X;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000113
114/// runOnFunction - Process all loops in the function, inner-most out.
Dan Gohman9cec4122009-09-08 15:45:00 +0000115bool LCSSA::runOnLoop(Loop *l, LPPassManager &LPM) {
116 L = l;
Owen Andersonb09900b2009-04-22 08:09:13 +0000117 PredCache.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000118
119 LI = &LPM.getAnalysis<LoopInfo>();
120 DT = &getAnalysis<DominatorTree>();
Devang Patel9cee7a02007-08-17 21:59:16 +0000121
Chris Lattner7dd77a52009-10-11 01:07:15 +0000122 // Speed up queries by creating a sorted vector of blocks.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000123 LoopBlocks.clear();
124 LoopBlocks.insert(LoopBlocks.end(), L->block_begin(), L->block_end());
Chris Lattner7dd77a52009-10-11 01:07:15 +0000125 array_pod_sort(LoopBlocks.begin(), LoopBlocks.end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000126
Chris Lattner7dd77a52009-10-11 01:07:15 +0000127 SmallVector<Instruction*, 16> AffectedValues;
128 getLoopValuesUsedOutsideLoop(L, AffectedValues);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000129
130 // If no values are affected, we can save a lot of work, since we know that
131 // nothing will be changed.
132 if (AffectedValues.empty())
133 return false;
Chris Lattner7dd77a52009-10-11 01:07:15 +0000134
135 SmallVector<BasicBlock*, 8> ExitBlocks;
136 L->getExitBlocks(ExitBlocks);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000137
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000138 // Iterate over all affected values for this loop and insert Phi nodes
Chris Lattner7dd77a52009-10-11 01:07:15 +0000139 // for them in the appropriate exit blocks.
140 for (SmallVectorImpl<Instruction*>::iterator I = AffectedValues.begin(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000141 E = AffectedValues.end(); I != E; ++I)
Chris Lattner7dd77a52009-10-11 01:07:15 +0000142 ProcessInstruction(*I, ExitBlocks);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000143
144 assert(L->isLCSSAForm());
145
146 return true;
147}
148
149/// processInstruction - Given a live-out instruction, insert LCSSA Phi nodes,
150/// eliminate all out-of-loop uses.
151void LCSSA::ProcessInstruction(Instruction *Instr,
Chris Lattner7dd77a52009-10-11 01:07:15 +0000152 const SmallVector<BasicBlock*, 8> &ExitBlocks) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000153 ++NumLCSSA; // We are applying the transformation
154
155 // Keep track of the blocks that have the value available already.
Owen Anderson7c322f42008-05-26 10:07:43 +0000156 DenseMap<DomTreeNode*, Value*> Phis;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000157
Dan Gohman480cf742009-06-26 00:31:13 +0000158 BasicBlock *DomBB = Instr->getParent();
159
160 // Invoke instructions are special in that their result value is not available
161 // along their unwind edge. The code below tests to see whether DomBB dominates
162 // the value, so adjust DomBB to the normal destination block, which is
163 // effectively where the value is first usable.
164 if (InvokeInst *Inv = dyn_cast<InvokeInst>(Instr))
165 DomBB = Inv->getNormalDest();
166
167 DomTreeNode *DomNode = DT->getNode(DomBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000168
169 // Insert the LCSSA phi's into the exit blocks (dominated by the value), and
170 // add them to the Phi's map.
Chris Lattner7dd77a52009-10-11 01:07:15 +0000171 for (SmallVector<BasicBlock*, 8>::const_iterator BBI = ExitBlocks.begin(),
172 BBE = ExitBlocks.end(); BBI != BBE; ++BBI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000173 BasicBlock *BB = *BBI;
174 DomTreeNode *ExitBBNode = DT->getNode(BB);
175 Value *&Phi = Phis[ExitBBNode];
Dan Gohman480cf742009-06-26 00:31:13 +0000176 if (!Phi && DT->dominates(DomNode, ExitBBNode)) {
Gabor Greifd6da1d02008-04-06 20:25:17 +0000177 PHINode *PN = PHINode::Create(Instr->getType(), Instr->getName()+".lcssa",
178 BB->begin());
Owen Andersond8404262009-04-22 08:50:12 +0000179 PN->reserveOperandSpace(PredCache.GetNumPreds(BB));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000180
181 // Remember that this phi makes the value alive in this block.
182 Phi = PN;
183
184 // Add inputs from inside the loop for this PHI.
Owen Andersonb09900b2009-04-22 08:09:13 +0000185 for (BasicBlock** PI = PredCache.GetPreds(BB); *PI; ++PI)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000186 PN->addIncoming(Instr, *PI);
187 }
188 }
189
190
191 // Record all uses of Instr outside the loop. We need to rewrite these. The
192 // LCSSA phis won't be included because they use the value in the loop.
193 for (Value::use_iterator UI = Instr->use_begin(), E = Instr->use_end();
194 UI != E;) {
195 BasicBlock *UserBB = cast<Instruction>(*UI)->getParent();
Chris Lattner34635fd2009-10-10 06:22:45 +0000196 if (PHINode *P = dyn_cast<PHINode>(*UI))
Gabor Greif261734d2009-01-23 19:40:15 +0000197 UserBB = P->getIncomingBlock(UI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000198
199 // If the user is in the loop, don't rewrite it!
200 if (UserBB == Instr->getParent() || inLoop(UserBB)) {
201 ++UI;
202 continue;
203 }
204
205 // Otherwise, patch up uses of the value with the appropriate LCSSA Phi,
206 // inserting PHI nodes into join points where needed.
207 Value *Val = GetValueForBlock(DT->getNode(UserBB), Instr, Phis);
208
209 // Preincrement the iterator to avoid invalidating it when we change the
210 // value.
211 Use &U = UI.getUse();
212 ++UI;
213 U.set(Val);
214 }
215}
216
217/// getLoopValuesUsedOutsideLoop - Return any values defined in the loop that
218/// are used by instructions outside of it.
219void LCSSA::getLoopValuesUsedOutsideLoop(Loop *L,
Chris Lattner7dd77a52009-10-11 01:07:15 +0000220 SmallVectorImpl<Instruction*> &AffectedValues) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000221 // FIXME: For large loops, we may be able to avoid a lot of use-scanning
222 // by using dominance information. In particular, if a block does not
223 // dominate any of the loop exits, then none of the values defined in the
224 // block could be used outside the loop.
Owen Andersond8404262009-04-22 08:50:12 +0000225 for (Loop::block_iterator BB = L->block_begin(), BE = L->block_end();
226 BB != BE; ++BB) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000227 for (BasicBlock::iterator I = (*BB)->begin(), E = (*BB)->end(); I != E; ++I)
Chris Lattner34635fd2009-10-10 06:22:45 +0000228 for (Value::use_iterator UI = I->use_begin(), UE = I->use_end();
229 UI != UE; ++UI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000230 BasicBlock *UserBB = cast<Instruction>(*UI)->getParent();
Chris Lattner7dd77a52009-10-11 01:07:15 +0000231 if (PHINode *PN = dyn_cast<PHINode>(*UI))
232 UserBB = PN->getIncomingBlock(UI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000233
234 if (*BB != UserBB && !inLoop(UserBB)) {
Chris Lattner7dd77a52009-10-11 01:07:15 +0000235 AffectedValues.push_back(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000236 break;
237 }
238 }
239 }
240}
241
242/// GetValueForBlock - Get the value to use within the specified basic block.
243/// available values are in Phis.
244Value *LCSSA::GetValueForBlock(DomTreeNode *BB, Instruction *OrigInst,
Owen Anderson7c322f42008-05-26 10:07:43 +0000245 DenseMap<DomTreeNode*, Value*> &Phis) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000246 // If there is no dominator info for this BB, it is unreachable.
247 if (BB == 0)
Owen Andersonb99ecca2009-07-30 23:03:37 +0000248 return UndefValue::get(OrigInst->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000249
250 // If we have already computed this value, return the previously computed val.
Owen Anderson974a04a2008-05-30 17:31:01 +0000251 if (Phis.count(BB)) return Phis[BB];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000252
253 DomTreeNode *IDom = BB->getIDom();
254
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000255 // Otherwise, there are two cases: we either have to insert a PHI node or we
256 // don't. We need to insert a PHI node if this block is not dominated by one
257 // of the exit nodes from the loop (the loop could have multiple exits, and
258 // though the value defined *inside* the loop dominated all its uses, each
259 // exit by itself may not dominate all the uses).
260 //
261 // The simplest way to check for this condition is by checking to see if the
262 // idom is in the loop. If so, we *know* that none of the exit blocks
263 // dominate this block. Note that we *know* that the block defining the
264 // original instruction is in the idom chain, because if it weren't, then the
265 // original value didn't dominate this use.
266 if (!inLoop(IDom->getBlock())) {
267 // Idom is not in the loop, we must still be "below" the exit block and must
268 // be fully dominated by the value live in the idom.
Owen Anderson974a04a2008-05-30 17:31:01 +0000269 Value* val = GetValueForBlock(IDom, OrigInst, Phis);
270 Phis.insert(std::make_pair(BB, val));
271 return val;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000272 }
273
274 BasicBlock *BBN = BB->getBlock();
275
276 // Otherwise, the idom is the loop, so we need to insert a PHI node. Do so
277 // now, then get values to fill in the incoming values for the PHI.
Gabor Greifb91ea9d2008-05-15 10:04:30 +0000278 PHINode *PN = PHINode::Create(OrigInst->getType(),
279 OrigInst->getName() + ".lcssa", BBN->begin());
Owen Andersond8404262009-04-22 08:50:12 +0000280 PN->reserveOperandSpace(PredCache.GetNumPreds(BBN));
Owen Anderson974a04a2008-05-30 17:31:01 +0000281 Phis.insert(std::make_pair(BB, PN));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000282
283 // Fill in the incoming values for the block.
Chris Lattner34635fd2009-10-10 06:22:45 +0000284 for (BasicBlock **PI = PredCache.GetPreds(BBN); *PI; ++PI)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000285 PN->addIncoming(GetValueForBlock(DT->getNode(*PI), OrigInst, Phis), *PI);
286 return PN;
287}
288