blob: af54add385ee1664e97a8e04b75c77fee02e61be [file] [log] [blame]
Owen Anderson24807372006-05-26 21:11:53 +00001//===-- LCSSA.cpp - Convert loops into loop-closed SSA form ---------------===//
Owen Anderson11f510b2006-05-26 13:58:26 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Owen Anderson11f510b2006-05-26 13:58:26 +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 (...)
Dan Gohman23d9d272007-05-11 21:10:54 +000015// if (c) if (c)
Owen Anderson11f510b2006-05-26 13:58:26 +000016// X1 = ... X1 = ...
17// else else
18// X2 = ... X2 = ...
19// X3 = phi(X1, X2) X3 = phi(X1, X2)
Dan Gohmanc702a9e2008-06-03 00:57:21 +000020// ... = X3 + 4 X4 = phi(X3)
21// ... = X4 + 4
Owen Anderson11f510b2006-05-26 13:58:26 +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
Chris Lattnerd216e8b2006-12-19 22:17:40 +000030#define DEBUG_TYPE "lcssa"
Owen Anderson24807372006-05-26 21:11:53 +000031#include "llvm/Transforms/Scalar.h"
Owen Andersone4e1ecd2006-07-09 08:14:06 +000032#include "llvm/Constants.h"
Owen Anderson11f510b2006-05-26 13:58:26 +000033#include "llvm/Pass.h"
34#include "llvm/Function.h"
35#include "llvm/Instructions.h"
Owen Anderson0a205a42009-07-05 22:41:43 +000036#include "llvm/LLVMContext.h"
Owen Anderson9e1c1dd2006-06-04 00:02:23 +000037#include "llvm/ADT/SetVector.h"
Owen Andersona90b2c72006-05-27 00:31:37 +000038#include "llvm/ADT/Statistic.h"
Owen Anderson24807372006-05-26 21:11:53 +000039#include "llvm/Analysis/Dominators.h"
Devang Patelb4559a22007-07-13 23:57:11 +000040#include "llvm/Analysis/LoopPass.h"
41#include "llvm/Analysis/ScalarEvolution.h"
Owen Anderson11f510b2006-05-26 13:58:26 +000042#include "llvm/Support/CFG.h"
Reid Spencer9133fe22007-02-05 23:32:05 +000043#include "llvm/Support/Compiler.h"
Owen Anderson68fbd732009-04-22 08:09:13 +000044#include "llvm/Support/PredIteratorCache.h"
Owen Anderson24807372006-05-26 21:11:53 +000045#include <algorithm>
Reid Spencer0974ea02007-02-05 05:23:32 +000046#include <map>
Owen Anderson11f510b2006-05-26 13:58:26 +000047using namespace llvm;
48
Chris Lattnerd216e8b2006-12-19 22:17:40 +000049STATISTIC(NumLCSSA, "Number of live out of a loop variables");
50
Owen Anderson11f510b2006-05-26 13:58:26 +000051namespace {
Devang Patelb4559a22007-07-13 23:57:11 +000052 struct VISIBILITY_HIDDEN LCSSA : public LoopPass {
Nick Lewyckyecd94c82007-05-06 13:37:16 +000053 static char ID; // Pass identification, replacement for typeid
Dan Gohmanae73dc12008-09-04 17:05:41 +000054 LCSSA() : LoopPass(&ID) {}
Devang Patel794fd752007-05-01 21:15:47 +000055
Chris Lattnerd41ae8b2006-08-02 00:06:09 +000056 // Cached analysis information for the current function.
57 LoopInfo *LI;
Evan Chengcc045d52007-04-18 22:39:00 +000058 DominatorTree *DT;
Owen Anderson92deacf2006-06-06 04:28:30 +000059 std::vector<BasicBlock*> LoopBlocks;
Owen Anderson68fbd732009-04-22 08:09:13 +000060 PredIteratorCache PredCache;
Dan Gohman5c89b522009-09-08 15:45:00 +000061 Loop *L;
Owen Anderson11f510b2006-05-26 13:58:26 +000062
Devang Patelb4559a22007-07-13 23:57:11 +000063 virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
64
Chris Lattnerd41ae8b2006-08-02 00:06:09 +000065 void ProcessInstruction(Instruction* Instr,
Devang Patelb7211a22007-08-21 00:31:24 +000066 const SmallVector<BasicBlock*, 8>& exitBlocks);
Owen Anderson11f510b2006-05-26 13:58:26 +000067
68 /// This transformation requires natural loop information & requires that
Owen Andersona90b2c72006-05-27 00:31:37 +000069 /// loop preheaders be inserted into the CFG. It maintains both of these,
70 /// as well as the CFG. It also requires dominator information.
Owen Anderson11f510b2006-05-26 13:58:26 +000071 ///
72 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Owen Anderson24807372006-05-26 21:11:53 +000073 AU.setPreservesCFG();
Owen Anderson11f510b2006-05-26 13:58:26 +000074 AU.addRequiredID(LoopSimplifyID);
75 AU.addPreservedID(LoopSimplifyID);
Dan Gohman5c89b522009-09-08 15:45:00 +000076 AU.addRequiredTransitive<LoopInfo>();
Devang Patelb4559a22007-07-13 23:57:11 +000077 AU.addPreserved<LoopInfo>();
Dan Gohman5c89b522009-09-08 15:45:00 +000078 AU.addRequiredTransitive<DominatorTree>();
Devang Patelb4559a22007-07-13 23:57:11 +000079 AU.addPreserved<ScalarEvolution>();
Devang Patel81a129c2007-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>();
Owen Anderson11f510b2006-05-26 13:58:26 +000088 }
89 private:
Dan Gohman5c89b522009-09-08 15:45:00 +000090
91 /// verifyAnalysis() - Verify loop nest.
92 virtual void verifyAnalysis() const {
Dan Gohman5c89b522009-09-08 15:45:00 +000093 // Check the special guarantees that LCSSA makes.
Dan Gohman2d5dfd92009-09-28 14:38:19 +000094 assert(L->isLCSSAForm() && "LCSSA form not preserved!");
Dan Gohman5c89b522009-09-08 15:45:00 +000095 }
96
Chris Lattnerd6b7a162007-04-14 22:10:17 +000097 void getLoopValuesUsedOutsideLoop(Loop *L,
Owen Anderson7db27892009-04-22 08:50:12 +000098 SetVector<Instruction*> &AffectedValues,
99 const SmallVector<BasicBlock*, 8>& exitBlocks);
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000100
Devang Patel26042422007-06-04 00:32:22 +0000101 Value *GetValueForBlock(DomTreeNode *BB, Instruction *OrigInst,
Owen Anderson78ecf0d2008-05-26 10:07:43 +0000102 DenseMap<DomTreeNode*, Value*> &Phis);
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000103
Owen Anderson92deacf2006-06-06 04:28:30 +0000104 /// inLoop - returns true if the given block is within the current loop
Anton Korobeynikov4aefd6b2008-02-20 12:07:57 +0000105 bool inLoop(BasicBlock* B) {
Owen Andersone9d93d52006-06-06 04:36:36 +0000106 return std::binary_search(LoopBlocks.begin(), LoopBlocks.end(), B);
107 }
Owen Anderson11f510b2006-05-26 13:58:26 +0000108 };
Owen Anderson11f510b2006-05-26 13:58:26 +0000109}
Dan Gohman844731a2008-05-13 00:00:25 +0000110
111char LCSSA::ID = 0;
112static RegisterPass<LCSSA> X("lcssa", "Loop-Closed SSA Form Pass");
Owen Anderson11f510b2006-05-26 13:58:26 +0000113
Daniel Dunbar394f0442008-10-22 23:32:42 +0000114Pass *llvm::createLCSSAPass() { return new LCSSA(); }
Dan Gohman6ddba2b2008-05-13 02:05:11 +0000115const PassInfo *const llvm::LCSSAID = &X;
Owen Anderson11f510b2006-05-26 13:58:26 +0000116
Owen Andersona4529322006-06-08 20:02:53 +0000117/// runOnFunction - Process all loops in the function, inner-most out.
Dan Gohman5c89b522009-09-08 15:45:00 +0000118bool LCSSA::runOnLoop(Loop *l, LPPassManager &LPM) {
119 L = l;
Owen Anderson68fbd732009-04-22 08:09:13 +0000120 PredCache.clear();
Owen Anderson7be3f1e2006-06-13 19:37:18 +0000121
Devang Patelb4559a22007-07-13 23:57:11 +0000122 LI = &LPM.getAnalysis<LoopInfo>();
Evan Chengcc045d52007-04-18 22:39:00 +0000123 DT = &getAnalysis<DominatorTree>();
Devang Patel96bf5242007-08-17 21:59:16 +0000124
Owen Anderson24807372006-05-26 21:11:53 +0000125 // Speed up queries by creating a sorted list of blocks
Owen Anderson92deacf2006-06-06 04:28:30 +0000126 LoopBlocks.clear();
127 LoopBlocks.insert(LoopBlocks.end(), L->block_begin(), L->block_end());
128 std::sort(LoopBlocks.begin(), LoopBlocks.end());
Owen Anderson24807372006-05-26 21:11:53 +0000129
Owen Anderson7db27892009-04-22 08:50:12 +0000130 SmallVector<BasicBlock*, 8> exitBlocks;
131 L->getExitBlocks(exitBlocks);
132
Chris Lattnerd6b7a162007-04-14 22:10:17 +0000133 SetVector<Instruction*> AffectedValues;
Owen Anderson7db27892009-04-22 08:50:12 +0000134 getLoopValuesUsedOutsideLoop(L, AffectedValues, exitBlocks);
Owen Anderson11f510b2006-05-26 13:58:26 +0000135
Owen Anderson408a4062006-05-31 20:55:06 +0000136 // 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
Owen Anderson2f21e072006-05-27 18:47:11 +0000141 // Iterate over all affected values for this loop and insert Phi nodes
142 // for them in the appropriate exit blocks
Owen Anderson408a4062006-05-31 20:55:06 +0000143
Owen Anderson9e1c1dd2006-06-04 00:02:23 +0000144 for (SetVector<Instruction*>::iterator I = AffectedValues.begin(),
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000145 E = AffectedValues.end(); I != E; ++I)
146 ProcessInstruction(*I, exitBlocks);
Owen Anderson00ea74c2006-05-29 01:00:00 +0000147
Owen Andersonc2cc15c2006-06-11 19:22:28 +0000148 assert(L->isLCSSAForm());
149
Owen Anderson92deacf2006-06-06 04:28:30 +0000150 return true;
Owen Anderson11f510b2006-05-26 13:58:26 +0000151}
152
Owen Andersona4529322006-06-08 20:02:53 +0000153/// processInstruction - Given a live-out instruction, insert LCSSA Phi nodes,
154/// eliminate all out-of-loop uses.
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000155void LCSSA::ProcessInstruction(Instruction *Instr,
Devang Patelb7211a22007-08-21 00:31:24 +0000156 const SmallVector<BasicBlock*, 8>& exitBlocks) {
Owen Anderson408a4062006-05-31 20:55:06 +0000157 ++NumLCSSA; // We are applying the transformation
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000158
159 // Keep track of the blocks that have the value available already.
Owen Anderson78ecf0d2008-05-26 10:07:43 +0000160 DenseMap<DomTreeNode*, Value*> Phis;
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000161
Dan Gohman6b9c9592009-06-26 00:31:13 +0000162 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);
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000172
173 // Insert the LCSSA phi's into the exit blocks (dominated by the value), and
174 // add them to the Phi's map.
Devang Patelb7211a22007-08-21 00:31:24 +0000175 for (SmallVector<BasicBlock*, 8>::const_iterator BBI = exitBlocks.begin(),
Owen Anderson3d2aa472006-06-12 07:10:16 +0000176 BBE = exitBlocks.end(); BBI != BBE; ++BBI) {
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000177 BasicBlock *BB = *BBI;
Devang Patel26042422007-06-04 00:32:22 +0000178 DomTreeNode *ExitBBNode = DT->getNode(BB);
Evan Chengcc045d52007-04-18 22:39:00 +0000179 Value *&Phi = Phis[ExitBBNode];
Dan Gohman6b9c9592009-06-26 00:31:13 +0000180 if (!Phi && DT->dominates(DomNode, ExitBBNode)) {
Gabor Greif051a9502008-04-06 20:25:17 +0000181 PHINode *PN = PHINode::Create(Instr->getType(), Instr->getName()+".lcssa",
182 BB->begin());
Owen Anderson7db27892009-04-22 08:50:12 +0000183 PN->reserveOperandSpace(PredCache.GetNumPreds(BB));
Chris Lattnercbea67f2006-10-31 18:56:48 +0000184
185 // Remember that this phi makes the value alive in this block.
186 Phi = PN;
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000187
188 // Add inputs from inside the loop for this PHI.
Owen Anderson68fbd732009-04-22 08:09:13 +0000189 for (BasicBlock** PI = PredCache.GetPreds(BB); *PI; ++PI)
Chris Lattnercbea67f2006-10-31 18:56:48 +0000190 PN->addIncoming(Instr, *PI);
Owen Anderson2824da42006-06-01 06:05:47 +0000191 }
Owen Anderson3d2aa472006-06-12 07:10:16 +0000192 }
Owen Anderson408a4062006-05-31 20:55:06 +0000193
Owen Anderson30019c82006-06-03 23:22:50 +0000194
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000195 // 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();
Chris Lattner2d7f1d22009-10-10 06:22:45 +0000200 if (PHINode *P = dyn_cast<PHINode>(*UI))
Gabor Greifa36791d2009-01-23 19:40:15 +0000201 UserBB = P->getIncomingBlock(UI);
Owen Anderson8b92d0c2006-06-13 20:50:09 +0000202
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000203 // If the user is in the loop, don't rewrite it!
Chris Lattnerf9ba4012006-08-02 00:16:47 +0000204 if (UserBB == Instr->getParent() || inLoop(UserBB)) {
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000205 ++UI;
206 continue;
Owen Anderson2824da42006-06-01 06:05:47 +0000207 }
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000208
209 // Otherwise, patch up uses of the value with the appropriate LCSSA Phi,
210 // inserting PHI nodes into join points where needed.
Evan Chengcc045d52007-04-18 22:39:00 +0000211 Value *Val = GetValueForBlock(DT->getNode(UserBB), Instr, Phis);
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000212
213 // Preincrement the iterator to avoid invalidating it when we change the
214 // value.
215 Use &U = UI.getUse();
216 ++UI;
217 U.set(Val);
Owen Anderson408a4062006-05-31 20:55:06 +0000218 }
219}
220
Owen Anderson24807372006-05-26 21:11:53 +0000221/// getLoopValuesUsedOutsideLoop - Return any values defined in the loop that
222/// are used by instructions outside of it.
Chris Lattnerd6b7a162007-04-14 22:10:17 +0000223void LCSSA::getLoopValuesUsedOutsideLoop(Loop *L,
Owen Anderson7db27892009-04-22 08:50:12 +0000224 SetVector<Instruction*> &AffectedValues,
225 const SmallVector<BasicBlock*, 8>& exitBlocks) {
Owen Anderson408a4062006-05-31 20:55:06 +0000226 // FIXME: For large loops, we may be able to avoid a lot of use-scanning
227 // by using dominance information. In particular, if a block does not
228 // dominate any of the loop exits, then none of the values defined in the
229 // block could be used outside the loop.
Owen Anderson7db27892009-04-22 08:50:12 +0000230 for (Loop::block_iterator BB = L->block_begin(), BE = L->block_end();
231 BB != BE; ++BB) {
Owen Anderson11f510b2006-05-26 13:58:26 +0000232 for (BasicBlock::iterator I = (*BB)->begin(), E = (*BB)->end(); I != E; ++I)
Chris Lattner2d7f1d22009-10-10 06:22:45 +0000233 for (Value::use_iterator UI = I->use_begin(), UE = I->use_end();
234 UI != UE; ++UI) {
Owen Anderson11f510b2006-05-26 13:58:26 +0000235 BasicBlock *UserBB = cast<Instruction>(*UI)->getParent();
Chris Lattner2d7f1d22009-10-10 06:22:45 +0000236 if (PHINode *p = dyn_cast<PHINode>(*UI))
Gabor Greifa36791d2009-01-23 19:40:15 +0000237 UserBB = p->getIncomingBlock(UI);
Owen Anderson7be3f1e2006-06-13 19:37:18 +0000238
Chris Lattnerf9ba4012006-08-02 00:16:47 +0000239 if (*BB != UserBB && !inLoop(UserBB)) {
Dan Gohmanfc74abf2008-07-23 00:34:11 +0000240 AffectedValues.insert(I);
Owen Anderson408a4062006-05-31 20:55:06 +0000241 break;
242 }
Owen Anderson11f510b2006-05-26 13:58:26 +0000243 }
244 }
Owen Anderson24807372006-05-26 21:11:53 +0000245}
Owen Anderson408a4062006-05-31 20:55:06 +0000246
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000247/// GetValueForBlock - Get the value to use within the specified basic block.
248/// available values are in Phis.
Devang Patel26042422007-06-04 00:32:22 +0000249Value *LCSSA::GetValueForBlock(DomTreeNode *BB, Instruction *OrigInst,
Owen Anderson78ecf0d2008-05-26 10:07:43 +0000250 DenseMap<DomTreeNode*, Value*> &Phis) {
Chris Lattnercbea67f2006-10-31 18:56:48 +0000251 // If there is no dominator info for this BB, it is unreachable.
252 if (BB == 0)
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000253 return UndefValue::get(OrigInst->getType());
Chris Lattnercbea67f2006-10-31 18:56:48 +0000254
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000255 // If we have already computed this value, return the previously computed val.
Owen Anderson427de862008-05-30 17:31:01 +0000256 if (Phis.count(BB)) return Phis[BB];
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000257
Devang Patel26042422007-06-04 00:32:22 +0000258 DomTreeNode *IDom = BB->getIDom();
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000259
260 // Otherwise, there are two cases: we either have to insert a PHI node or we
261 // don't. We need to insert a PHI node if this block is not dominated by one
262 // of the exit nodes from the loop (the loop could have multiple exits, and
263 // though the value defined *inside* the loop dominated all its uses, each
264 // exit by itself may not dominate all the uses).
265 //
266 // The simplest way to check for this condition is by checking to see if the
267 // idom is in the loop. If so, we *know* that none of the exit blocks
268 // dominate this block. Note that we *know* that the block defining the
269 // original instruction is in the idom chain, because if it weren't, then the
270 // original value didn't dominate this use.
Evan Chengcc045d52007-04-18 22:39:00 +0000271 if (!inLoop(IDom->getBlock())) {
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000272 // Idom is not in the loop, we must still be "below" the exit block and must
273 // be fully dominated by the value live in the idom.
Owen Anderson427de862008-05-30 17:31:01 +0000274 Value* val = GetValueForBlock(IDom, OrigInst, Phis);
275 Phis.insert(std::make_pair(BB, val));
276 return val;
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000277 }
Owen Andersone4e1ecd2006-07-09 08:14:06 +0000278
Evan Chengcc045d52007-04-18 22:39:00 +0000279 BasicBlock *BBN = BB->getBlock();
280
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000281 // Otherwise, the idom is the loop, so we need to insert a PHI node. Do so
282 // now, then get values to fill in the incoming values for the PHI.
Gabor Greifb1dbcd82008-05-15 10:04:30 +0000283 PHINode *PN = PHINode::Create(OrigInst->getType(),
284 OrigInst->getName() + ".lcssa", BBN->begin());
Owen Anderson7db27892009-04-22 08:50:12 +0000285 PN->reserveOperandSpace(PredCache.GetNumPreds(BBN));
Owen Anderson427de862008-05-30 17:31:01 +0000286 Phis.insert(std::make_pair(BB, PN));
Chris Lattnercbea67f2006-10-31 18:56:48 +0000287
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000288 // Fill in the incoming values for the block.
Chris Lattner2d7f1d22009-10-10 06:22:45 +0000289 for (BasicBlock **PI = PredCache.GetPreds(BBN); *PI; ++PI)
Evan Chengcc045d52007-04-18 22:39:00 +0000290 PN->addIncoming(GetValueForBlock(DT->getNode(*PI), OrigInst, Phis), *PI);
Chris Lattnercbea67f2006-10-31 18:56:48 +0000291 return PN;
Owen Anderson408a4062006-05-31 20:55:06 +0000292}
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000293