blob: 56e662e9dac1922293a0fa3a0a3c8c6a34bd04da [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"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036#include "llvm/Analysis/Dominators.h"
37#include "llvm/Analysis/LoopPass.h"
38#include "llvm/Analysis/ScalarEvolution.h"
Chris Lattnere98866c2009-10-11 02:53:37 +000039#include "llvm/Transforms/Utils/SSAUpdater.h"
40#include "llvm/ADT/Statistic.h"
41#include "llvm/ADT/STLExtras.h"
Owen Andersonb09900b2009-04-22 08:09:13 +000042#include "llvm/Support/PredIteratorCache.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000043using namespace llvm;
44
45STATISTIC(NumLCSSA, "Number of live out of a loop variables");
46
47namespace {
Chris Lattnere98866c2009-10-11 02:53:37 +000048 struct LCSSA : public LoopPass {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000049 static char ID; // Pass identification, replacement for typeid
Dan Gohman26f8c272008-09-04 17:05:41 +000050 LCSSA() : LoopPass(&ID) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000051
52 // Cached analysis information for the current function.
53 LoopInfo *LI;
54 DominatorTree *DT;
55 std::vector<BasicBlock*> LoopBlocks;
Owen Andersonb09900b2009-04-22 08:09:13 +000056 PredIteratorCache PredCache;
Dan Gohman9cec4122009-09-08 15:45:00 +000057 Loop *L;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000058
59 virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
60
Dan Gohmanf17a25c2007-07-18 16:29:46 +000061 /// This transformation requires natural loop information & requires that
62 /// loop preheaders be inserted into the CFG. It maintains both of these,
63 /// as well as the CFG. It also requires dominator information.
64 ///
65 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
66 AU.setPreservesCFG();
67 AU.addRequiredID(LoopSimplifyID);
68 AU.addPreservedID(LoopSimplifyID);
Dan Gohman9cec4122009-09-08 15:45:00 +000069 AU.addRequiredTransitive<LoopInfo>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000070 AU.addPreserved<LoopInfo>();
Dan Gohman9cec4122009-09-08 15:45:00 +000071 AU.addRequiredTransitive<DominatorTree>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000072 AU.addPreserved<ScalarEvolution>();
Devang Patel48d15802007-07-30 20:23:45 +000073 AU.addPreserved<DominatorTree>();
74
75 // Request DominanceFrontier now, even though LCSSA does
76 // not use it. This allows Pass Manager to schedule Dominance
77 // Frontier early enough such that one LPPassManager can handle
78 // multiple loop transformation passes.
79 AU.addRequired<DominanceFrontier>();
80 AU.addPreserved<DominanceFrontier>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000081 }
82 private:
Chris Lattnere98866c2009-10-11 02:53:37 +000083 bool ProcessInstruction(Instruction *Inst,
84 const SmallVectorImpl<BasicBlock*> &ExitBlocks);
Chris Lattner7dd77a52009-10-11 01:07:15 +000085
Dan Gohman9cec4122009-09-08 15:45:00 +000086 /// verifyAnalysis() - Verify loop nest.
87 virtual void verifyAnalysis() const {
Dan Gohman9cec4122009-09-08 15:45:00 +000088 // Check the special guarantees that LCSSA makes.
Dan Gohman2dac9782009-09-28 14:38:19 +000089 assert(L->isLCSSAForm() && "LCSSA form not preserved!");
Dan Gohman9cec4122009-09-08 15:45:00 +000090 }
91
Dan Gohmanf17a25c2007-07-18 16:29:46 +000092 /// inLoop - returns true if the given block is within the current loop
Chris Lattner7dd77a52009-10-11 01:07:15 +000093 bool inLoop(BasicBlock *B) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000094 return std::binary_search(LoopBlocks.begin(), LoopBlocks.end(), B);
95 }
96 };
Dan Gohmanf17a25c2007-07-18 16:29:46 +000097}
Dan Gohman089efff2008-05-13 00:00:25 +000098
99char LCSSA::ID = 0;
100static RegisterPass<LCSSA> X("lcssa", "Loop-Closed SSA Form Pass");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000101
Daniel Dunbar163555a2008-10-22 23:32:42 +0000102Pass *llvm::createLCSSAPass() { return new LCSSA(); }
Dan Gohman66a636e2008-05-13 02:05:11 +0000103const PassInfo *const llvm::LCSSAID = &X;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000104
Chris Lattnere98866c2009-10-11 02:53:37 +0000105
106/// BlockDominatesAnExit - Return true if the specified block dominates at least
107/// one of the blocks in the specified list.
108static bool BlockDominatesAnExit(BasicBlock *BB,
109 const SmallVectorImpl<BasicBlock*> &ExitBlocks,
110 DominatorTree *DT) {
111 DomTreeNode *DomNode = DT->getNode(BB);
112 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
113 if (DT->dominates(DomNode, DT->getNode(ExitBlocks[i])))
114 return true;
115
116 return false;
117}
118
119
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000120/// runOnFunction - Process all loops in the function, inner-most out.
Chris Lattnere98866c2009-10-11 02:53:37 +0000121bool LCSSA::runOnLoop(Loop *TheLoop, LPPassManager &LPM) {
122 L = TheLoop;
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
Chris Lattnere98866c2009-10-11 02:53:37 +0000127 // Get the set of exiting blocks.
128 SmallVector<BasicBlock*, 8> ExitBlocks;
129 L->getExitBlocks(ExitBlocks);
130
131 if (ExitBlocks.empty())
132 return false;
133
Chris Lattner7dd77a52009-10-11 01:07:15 +0000134 // Speed up queries by creating a sorted vector of blocks.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000135 LoopBlocks.clear();
136 LoopBlocks.insert(LoopBlocks.end(), L->block_begin(), L->block_end());
Chris Lattner7dd77a52009-10-11 01:07:15 +0000137 array_pod_sort(LoopBlocks.begin(), LoopBlocks.end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000138
Chris Lattnere98866c2009-10-11 02:53:37 +0000139 // Look at all the instructions in the loop, checking to see if they have uses
140 // outside the loop. If so, rewrite those uses.
141 bool MadeChange = false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000142
Chris Lattnere98866c2009-10-11 02:53:37 +0000143 for (Loop::block_iterator BBI = L->block_begin(), E = L->block_end();
144 BBI != E; ++BBI) {
145 BasicBlock *BB = *BBI;
146
147 // For large loops, avoid use-scanning by using dominance information: In
148 // particular, if a block does not dominate any of the loop exits, then none
149 // of the values defined in the block could be used outside the loop.
150 if (!BlockDominatesAnExit(BB, ExitBlocks, DT))
151 continue;
152
153 for (BasicBlock::iterator I = BB->begin(), E = BB->end();
154 I != E; ++I) {
155 // Reject two common cases fast: instructions with no uses (like stores)
156 // and instructions with one use that is in the same block as this.
157 if (I->use_empty() ||
158 (I->hasOneUse() && I->use_back()->getParent() == BB &&
159 !isa<PHINode>(I->use_back())))
160 continue;
161
162 MadeChange |= ProcessInstruction(I, ExitBlocks);
163 }
164 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000165
166 assert(L->isLCSSAForm());
Chris Lattnere98866c2009-10-11 02:53:37 +0000167 PredCache.clear();
168
169 return MadeChange;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000170}
171
Chris Lattnere98866c2009-10-11 02:53:37 +0000172/// isExitBlock - Return true if the specified block is in the list.
173static bool isExitBlock(BasicBlock *BB,
174 const SmallVectorImpl<BasicBlock*> &ExitBlocks) {
175 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
176 if (ExitBlocks[i] == BB)
177 return true;
178 return false;
179}
180
181/// ProcessInstruction - Given an instruction in the loop, check to see if it
182/// has any uses that are outside the current loop. If so, insert LCSSA PHI
183/// nodes and rewrite the uses.
184bool LCSSA::ProcessInstruction(Instruction *Inst,
185 const SmallVectorImpl<BasicBlock*> &ExitBlocks) {
186 SmallVector<Use*, 16> UsesToRewrite;
187
188 BasicBlock *InstBB = Inst->getParent();
189
190 for (Value::use_iterator UI = Inst->use_begin(), E = Inst->use_end();
191 UI != E; ++UI) {
192 BasicBlock *UserBB = cast<Instruction>(*UI)->getParent();
193 if (PHINode *PN = dyn_cast<PHINode>(*UI))
194 UserBB = PN->getIncomingBlock(UI);
195
196 if (InstBB != UserBB && !inLoop(UserBB))
197 UsesToRewrite.push_back(&UI.getUse());
198 }
199
200 // If there are no uses outside the loop, exit with no change.
201 if (UsesToRewrite.empty()) return false;
202
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000203 ++NumLCSSA; // We are applying the transformation
204
Dan Gohman480cf742009-06-26 00:31:13 +0000205 // Invoke instructions are special in that their result value is not available
206 // along their unwind edge. The code below tests to see whether DomBB dominates
207 // the value, so adjust DomBB to the normal destination block, which is
208 // effectively where the value is first usable.
Chris Lattnere98866c2009-10-11 02:53:37 +0000209 BasicBlock *DomBB = Inst->getParent();
210 if (InvokeInst *Inv = dyn_cast<InvokeInst>(Inst))
Dan Gohman480cf742009-06-26 00:31:13 +0000211 DomBB = Inv->getNormalDest();
212
213 DomTreeNode *DomNode = DT->getNode(DomBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000214
Chris Lattnere98866c2009-10-11 02:53:37 +0000215 SSAUpdater SSAUpdate;
216 SSAUpdate.Initialize(Inst);
217
218 // Insert the LCSSA phi's into all of the exit blocks dominated by the
219 // value., and add them to the Phi's map.
220 for (SmallVectorImpl<BasicBlock*>::const_iterator BBI = ExitBlocks.begin(),
Chris Lattner7dd77a52009-10-11 01:07:15 +0000221 BBE = ExitBlocks.end(); BBI != BBE; ++BBI) {
Chris Lattnere98866c2009-10-11 02:53:37 +0000222 BasicBlock *ExitBB = *BBI;
223 if (!DT->dominates(DomNode, DT->getNode(ExitBB))) continue;
224
225 // If we already inserted something for this BB, don't reprocess it.
226 if (SSAUpdate.HasValueForBlock(ExitBB)) continue;
227
228 PHINode *PN = PHINode::Create(Inst->getType(), Inst->getName()+".lcssa",
229 ExitBB->begin());
230 PN->reserveOperandSpace(PredCache.GetNumPreds(ExitBB));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000231
Chris Lattnere98866c2009-10-11 02:53:37 +0000232 // Add inputs from inside the loop for this PHI.
233 for (BasicBlock **PI = PredCache.GetPreds(ExitBB); *PI; ++PI)
234 PN->addIncoming(Inst, *PI);
235
236 // Remember that this phi makes the value alive in this block.
237 SSAUpdate.AddAvailableValue(ExitBB, PN);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000238 }
239
Chris Lattnere98866c2009-10-11 02:53:37 +0000240 // Rewrite all uses outside the loop in terms of the new PHIs we just
241 // inserted.
242 for (unsigned i = 0, e = UsesToRewrite.size(); i != e; ++i) {
243 // If this use is in an exit block, rewrite to use the newly inserted PHI.
244 // This is required for correctness because SSAUpdate doesn't handle uses in
245 // the same block. It assumes the PHI we inserted is at the end of the
246 // block.
247 Instruction *User = cast<Instruction>(UsesToRewrite[i]->getUser());
248 BasicBlock *UserBB = User->getParent();
249 if (PHINode *PN = dyn_cast<PHINode>(User))
250 UserBB = PN->getIncomingBlock(*UsesToRewrite[i]);
251
252 if (isa<PHINode>(UserBB->begin()) &&
253 isExitBlock(UserBB, ExitBlocks)) {
254 UsesToRewrite[i]->set(UserBB->begin());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000255 continue;
256 }
257
Chris Lattnere98866c2009-10-11 02:53:37 +0000258 // Otherwise, do full PHI insertion.
259 SSAUpdate.RewriteUse(*UsesToRewrite[i]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000260 }
261
Chris Lattnere98866c2009-10-11 02:53:37 +0000262 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000263}
264