blob: 51a3d9c1fcedda5b664571e5f4e6d3469e85d79d [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
Owen Anderson24807372006-05-26 21:11:53 +000030#include "llvm/Transforms/Scalar.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000031#include "llvm/ADT/STLExtras.h"
32#include "llvm/ADT/Statistic.h"
Stephen Hines36b56882014-04-23 16:57:46 -070033#include "llvm/Analysis/AliasAnalysis.h"
Devang Patelb4559a22007-07-13 23:57:11 +000034#include "llvm/Analysis/LoopPass.h"
35#include "llvm/Analysis/ScalarEvolution.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000036#include "llvm/IR/Constants.h"
Stephen Hines36b56882014-04-23 16:57:46 -070037#include "llvm/IR/Dominators.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000038#include "llvm/IR/Function.h"
39#include "llvm/IR/Instructions.h"
Stephen Hines36b56882014-04-23 16:57:46 -070040#include "llvm/IR/PredIteratorCache.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000041#include "llvm/Pass.h"
Stephen Hines36b56882014-04-23 16:57:46 -070042#include "llvm/Transforms/Utils/LoopUtils.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000043#include "llvm/Transforms/Utils/SSAUpdater.h"
Owen Anderson11f510b2006-05-26 13:58:26 +000044using namespace llvm;
45
Stephen Hinesdce4a402014-05-29 02:49:00 -070046#define DEBUG_TYPE "lcssa"
47
Chris Lattnerd216e8b2006-12-19 22:17:40 +000048STATISTIC(NumLCSSA, "Number of live out of a loop variables");
49
Stephen Hines36b56882014-04-23 16:57:46 -070050/// Return true if the specified block is in the list.
Chris Lattner8c1db672009-10-11 02:53:37 +000051static bool isExitBlock(BasicBlock *BB,
Stephen Hines36b56882014-04-23 16:57:46 -070052 const SmallVectorImpl<BasicBlock *> &ExitBlocks) {
Chris Lattner8c1db672009-10-11 02:53:37 +000053 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
54 if (ExitBlocks[i] == BB)
55 return true;
56 return false;
57}
58
Stephen Hines36b56882014-04-23 16:57:46 -070059/// Given an instruction in the loop, check to see if it has any uses that are
60/// outside the current loop. If so, insert LCSSA PHI nodes and rewrite the
61/// uses.
62static bool processInstruction(Loop &L, Instruction &Inst, DominatorTree &DT,
63 const SmallVectorImpl<BasicBlock *> &ExitBlocks,
64 PredIteratorCache &PredCache) {
65 SmallVector<Use *, 16> UsesToRewrite;
66
67 BasicBlock *InstBB = Inst.getParent();
68
69 for (Use &U : Inst.uses()) {
70 Instruction *User = cast<Instruction>(U.getUser());
71 BasicBlock *UserBB = User->getParent();
72 if (PHINode *PN = dyn_cast<PHINode>(User))
73 UserBB = PN->getIncomingBlock(U);
74
75 if (InstBB != UserBB && !L.contains(UserBB))
76 UsesToRewrite.push_back(&U);
Chris Lattner8c1db672009-10-11 02:53:37 +000077 }
Gabor Greifa29742d2010-07-09 14:29:14 +000078
Chris Lattner8c1db672009-10-11 02:53:37 +000079 // If there are no uses outside the loop, exit with no change.
Stephen Hines36b56882014-04-23 16:57:46 -070080 if (UsesToRewrite.empty())
81 return false;
82
Owen Anderson408a4062006-05-31 20:55:06 +000083 ++NumLCSSA; // We are applying the transformation
Chris Lattnerd41ae8b2006-08-02 00:06:09 +000084
Dan Gohman6b9c9592009-06-26 00:31:13 +000085 // Invoke instructions are special in that their result value is not available
Stephen Hines36b56882014-04-23 16:57:46 -070086 // along their unwind edge. The code below tests to see whether DomBB
87 // dominates
Dan Gohman6b9c9592009-06-26 00:31:13 +000088 // the value, so adjust DomBB to the normal destination block, which is
89 // effectively where the value is first usable.
Stephen Hines36b56882014-04-23 16:57:46 -070090 BasicBlock *DomBB = Inst.getParent();
91 if (InvokeInst *Inv = dyn_cast<InvokeInst>(&Inst))
Dan Gohman6b9c9592009-06-26 00:31:13 +000092 DomBB = Inv->getNormalDest();
93
Stephen Hines36b56882014-04-23 16:57:46 -070094 DomTreeNode *DomNode = DT.getNode(DomBB);
Chris Lattnerd41ae8b2006-08-02 00:06:09 +000095
Stephen Hines36b56882014-04-23 16:57:46 -070096 SmallVector<PHINode *, 16> AddedPHIs;
Cameron Zwarich838b97e2011-03-15 07:41:25 +000097
Chris Lattner8c1db672009-10-11 02:53:37 +000098 SSAUpdater SSAUpdate;
Stephen Hines36b56882014-04-23 16:57:46 -070099 SSAUpdate.Initialize(Inst.getType(), Inst.getName());
100
Chris Lattner8c1db672009-10-11 02:53:37 +0000101 // Insert the LCSSA phi's into all of the exit blocks dominated by the
Dan Gohmanf6572d02009-11-09 18:28:24 +0000102 // value, and add them to the Phi's map.
Stephen Hines36b56882014-04-23 16:57:46 -0700103 for (SmallVectorImpl<BasicBlock *>::const_iterator BBI = ExitBlocks.begin(),
104 BBE = ExitBlocks.end();
105 BBI != BBE; ++BBI) {
Chris Lattner8c1db672009-10-11 02:53:37 +0000106 BasicBlock *ExitBB = *BBI;
Stephen Hines36b56882014-04-23 16:57:46 -0700107 if (!DT.dominates(DomNode, DT.getNode(ExitBB)))
108 continue;
109
Chris Lattner8c1db672009-10-11 02:53:37 +0000110 // If we already inserted something for this BB, don't reprocess it.
Stephen Hines36b56882014-04-23 16:57:46 -0700111 if (SSAUpdate.HasValueForBlock(ExitBB))
112 continue;
113
114 PHINode *PN = PHINode::Create(Inst.getType(), PredCache.GetNumPreds(ExitBB),
115 Inst.getName() + ".lcssa", ExitBB->begin());
Chris Lattnercbea67f2006-10-31 18:56:48 +0000116
Chris Lattner8c1db672009-10-11 02:53:37 +0000117 // Add inputs from inside the loop for this PHI.
Dan Gohmanf6572d02009-11-09 18:28:24 +0000118 for (BasicBlock **PI = PredCache.GetPreds(ExitBB); *PI; ++PI) {
Stephen Hines36b56882014-04-23 16:57:46 -0700119 PN->addIncoming(&Inst, *PI);
Dan Gohmanf6572d02009-11-09 18:28:24 +0000120
121 // If the exit block has a predecessor not within the loop, arrange for
Dan Gohmaneaa181c2009-11-09 18:59:22 +0000122 // the incoming value use corresponding to that predecessor to be
Dan Gohmanf6572d02009-11-09 18:28:24 +0000123 // rewritten in terms of a different LCSSA PHI.
Stephen Hines36b56882014-04-23 16:57:46 -0700124 if (!L.contains(*PI))
Dan Gohmanf6572d02009-11-09 18:28:24 +0000125 UsesToRewrite.push_back(
Stephen Hines36b56882014-04-23 16:57:46 -0700126 &PN->getOperandUse(PN->getOperandNumForIncomingValue(
127 PN->getNumIncomingValues() - 1)));
Dan Gohmanf6572d02009-11-09 18:28:24 +0000128 }
Cameron Zwarich838b97e2011-03-15 07:41:25 +0000129
130 AddedPHIs.push_back(PN);
Stephen Hines36b56882014-04-23 16:57:46 -0700131
Chris Lattner8c1db672009-10-11 02:53:37 +0000132 // Remember that this phi makes the value alive in this block.
133 SSAUpdate.AddAvailableValue(ExitBB, PN);
Owen Anderson3d2aa472006-06-12 07:10:16 +0000134 }
Benjamin Kramer4ad3d982012-10-31 10:01:29 +0000135
Chris Lattner8c1db672009-10-11 02:53:37 +0000136 // Rewrite all uses outside the loop in terms of the new PHIs we just
137 // inserted.
138 for (unsigned i = 0, e = UsesToRewrite.size(); i != e; ++i) {
139 // If this use is in an exit block, rewrite to use the newly inserted PHI.
140 // This is required for correctness because SSAUpdate doesn't handle uses in
141 // the same block. It assumes the PHI we inserted is at the end of the
142 // block.
143 Instruction *User = cast<Instruction>(UsesToRewrite[i]->getUser());
144 BasicBlock *UserBB = User->getParent();
145 if (PHINode *PN = dyn_cast<PHINode>(User))
146 UserBB = PN->getIncomingBlock(*UsesToRewrite[i]);
147
Stephen Hines36b56882014-04-23 16:57:46 -0700148 if (isa<PHINode>(UserBB->begin()) && isExitBlock(UserBB, ExitBlocks)) {
Benjamin Kramerccd492c2012-10-31 16:30:03 +0000149 // Tell the VHs that the uses changed. This updates SCEV's caches.
150 if (UsesToRewrite[i]->get()->hasValueHandle())
151 ValueHandleBase::ValueIsRAUWd(*UsesToRewrite[i], UserBB->begin());
Chris Lattner8c1db672009-10-11 02:53:37 +0000152 UsesToRewrite[i]->set(UserBB->begin());
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000153 continue;
Owen Anderson2824da42006-06-01 06:05:47 +0000154 }
Stephen Hines36b56882014-04-23 16:57:46 -0700155
Chris Lattner8c1db672009-10-11 02:53:37 +0000156 // Otherwise, do full PHI insertion.
157 SSAUpdate.RewriteUse(*UsesToRewrite[i]);
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000158 }
Cameron Zwarich838b97e2011-03-15 07:41:25 +0000159
160 // Remove PHI nodes that did not have any uses rewritten.
161 for (unsigned i = 0, e = AddedPHIs.size(); i != e; ++i) {
Cameron Zwarich6e51c6a2011-03-15 18:42:33 +0000162 if (AddedPHIs[i]->use_empty())
Cameron Zwarich838b97e2011-03-15 07:41:25 +0000163 AddedPHIs[i]->eraseFromParent();
164 }
Stephen Hines36b56882014-04-23 16:57:46 -0700165
Chris Lattner8c1db672009-10-11 02:53:37 +0000166 return true;
Owen Anderson408a4062006-05-31 20:55:06 +0000167}
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000168
Stephen Hines36b56882014-04-23 16:57:46 -0700169/// Return true if the specified block dominates at least
170/// one of the blocks in the specified list.
171static bool
172blockDominatesAnExit(BasicBlock *BB,
173 DominatorTree &DT,
174 const SmallVectorImpl<BasicBlock *> &ExitBlocks) {
175 DomTreeNode *DomNode = DT.getNode(BB);
176 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
177 if (DT.dominates(DomNode, DT.getNode(ExitBlocks[i])))
178 return true;
179
180 return false;
181}
182
183bool llvm::formLCSSA(Loop &L, DominatorTree &DT, ScalarEvolution *SE) {
184 bool Changed = false;
185
186 // Get the set of exiting blocks.
187 SmallVector<BasicBlock *, 8> ExitBlocks;
188 L.getExitBlocks(ExitBlocks);
189
190 if (ExitBlocks.empty())
191 return false;
192
193 PredIteratorCache PredCache;
194
195 // Look at all the instructions in the loop, checking to see if they have uses
196 // outside the loop. If so, rewrite those uses.
197 for (Loop::block_iterator BBI = L.block_begin(), BBE = L.block_end();
198 BBI != BBE; ++BBI) {
199 BasicBlock *BB = *BBI;
200
201 // For large loops, avoid use-scanning by using dominance information: In
202 // particular, if a block does not dominate any of the loop exits, then none
203 // of the values defined in the block could be used outside the loop.
204 if (!blockDominatesAnExit(BB, DT, ExitBlocks))
205 continue;
206
207 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
208 // Reject two common cases fast: instructions with no uses (like stores)
209 // and instructions with one use that is in the same block as this.
210 if (I->use_empty() ||
211 (I->hasOneUse() && I->user_back()->getParent() == BB &&
212 !isa<PHINode>(I->user_back())))
213 continue;
214
215 Changed |= processInstruction(L, *I, DT, ExitBlocks, PredCache);
216 }
217 }
218
219 // If we modified the code, remove any caches about the loop from SCEV to
220 // avoid dangling entries.
221 // FIXME: This is a big hammer, can we clear the cache more selectively?
222 if (SE && Changed)
223 SE->forgetLoop(&L);
224
225 assert(L.isLCSSAForm(DT));
226
227 return Changed;
228}
229
230/// Process a loop nest depth first.
231bool llvm::formLCSSARecursively(Loop &L, DominatorTree &DT,
232 ScalarEvolution *SE) {
233 bool Changed = false;
234
235 // Recurse depth-first through inner loops.
236 for (Loop::iterator LI = L.begin(), LE = L.end(); LI != LE; ++LI)
237 Changed |= formLCSSARecursively(**LI, DT, SE);
238
239 Changed |= formLCSSA(L, DT, SE);
240 return Changed;
241}
242
243namespace {
244struct LCSSA : public FunctionPass {
245 static char ID; // Pass identification, replacement for typeid
246 LCSSA() : FunctionPass(ID) {
247 initializeLCSSAPass(*PassRegistry::getPassRegistry());
248 }
249
250 // Cached analysis information for the current function.
251 DominatorTree *DT;
252 LoopInfo *LI;
253 ScalarEvolution *SE;
254
255 bool runOnFunction(Function &F) override;
256
257 /// This transformation requires natural loop information & requires that
258 /// loop preheaders be inserted into the CFG. It maintains both of these,
259 /// as well as the CFG. It also requires dominator information.
260 void getAnalysisUsage(AnalysisUsage &AU) const override {
261 AU.setPreservesCFG();
262
263 AU.addRequired<DominatorTreeWrapperPass>();
264 AU.addRequired<LoopInfo>();
265 AU.addPreservedID(LoopSimplifyID);
266 AU.addPreserved<AliasAnalysis>();
267 AU.addPreserved<ScalarEvolution>();
268 }
269
270private:
Stephen Hines36b56882014-04-23 16:57:46 -0700271 void verifyAnalysis() const override;
272};
273}
274
275char LCSSA::ID = 0;
276INITIALIZE_PASS_BEGIN(LCSSA, "lcssa", "Loop-Closed SSA Form Pass", false, false)
277INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
278INITIALIZE_PASS_DEPENDENCY(LoopInfo)
279INITIALIZE_PASS_END(LCSSA, "lcssa", "Loop-Closed SSA Form Pass", false, false)
280
281Pass *llvm::createLCSSAPass() { return new LCSSA(); }
282char &llvm::LCSSAID = LCSSA::ID;
283
284
285/// Process all loops in the function, inner-most out.
286bool LCSSA::runOnFunction(Function &F) {
287 bool Changed = false;
288 LI = &getAnalysis<LoopInfo>();
289 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
290 SE = getAnalysisIfAvailable<ScalarEvolution>();
291
292 // Simplify each loop nest in the function.
293 for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I)
294 Changed |= formLCSSARecursively(**I, *DT, SE);
295
296 return Changed;
297}
298
299static void verifyLoop(Loop &L, DominatorTree &DT) {
300 // Recurse depth-first through inner loops.
301 for (Loop::iterator LI = L.begin(), LE = L.end(); LI != LE; ++LI)
302 verifyLoop(**LI, DT);
303
304 // Check the special guarantees that LCSSA makes.
305 //assert(L.isLCSSAForm(DT) && "LCSSA form not preserved!");
306}
307
308void LCSSA::verifyAnalysis() const {
309 // Verify each loop nest in the function, assuming LI still points at that
310 // function's loop info.
311 for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I)
312 verifyLoop(**I, *DT);
313}