blob: 5959324da6c574aea950dca1d6be99a810d65711 [file] [log] [blame]
Owen Andersonf3dd3e22006-05-26 21:11:53 +00001//===-- LCSSA.cpp - Convert loops into loop-closed SSA form ---------------===//
Owen Anderson8eca8912006-05-26 13:58:26 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Anderson8eca8912006-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 Gohmanb5650eb2007-05-11 21:10:54 +000015// if (c) if (c)
Owen Anderson8eca8912006-05-26 13:58:26 +000016// X1 = ... X1 = ...
17// else else
18// X2 = ... X2 = ...
19// X3 = phi(X1, X2) X3 = phi(X1, X2)
Dan Gohman2ad7e732008-06-03 00:57:21 +000020// ... = X3 + 4 X4 = phi(X3)
21// ... = X4 + 4
Owen Anderson8eca8912006-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 Lattner45f966d2006-12-19 22:17:40 +000030#define DEBUG_TYPE "lcssa"
Owen Andersonf3dd3e22006-05-26 21:11:53 +000031#include "llvm/Transforms/Scalar.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000032#include "llvm/ADT/STLExtras.h"
33#include "llvm/ADT/Statistic.h"
Devang Patel4cd14132007-07-13 23:57:11 +000034#include "llvm/Analysis/LoopPass.h"
35#include "llvm/Analysis/ScalarEvolution.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000036#include "llvm/IR/Constants.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000037#include "llvm/IR/Dominators.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000038#include "llvm/IR/Function.h"
39#include "llvm/IR/Instructions.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000040#include "llvm/Pass.h"
Owen Andersonbb754822009-04-22 08:09:13 +000041#include "llvm/Support/PredIteratorCache.h"
Chandler Carruth8765cf72014-01-25 04:07:24 +000042#include "llvm/Transforms/Utils/LoopUtils.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000043#include "llvm/Transforms/Utils/SSAUpdater.h"
Owen Anderson8eca8912006-05-26 13:58:26 +000044using namespace llvm;
45
Chris Lattner45f966d2006-12-19 22:17:40 +000046STATISTIC(NumLCSSA, "Number of live out of a loop variables");
47
Chandler Carruth8765cf72014-01-25 04:07:24 +000048/// Return true if the specified block is in the list.
Chris Lattner71d353d2009-10-11 02:53:37 +000049static bool isExitBlock(BasicBlock *BB,
Chandler Carruth8765cf72014-01-25 04:07:24 +000050 const SmallVectorImpl<BasicBlock *> &ExitBlocks) {
Chris Lattner71d353d2009-10-11 02:53:37 +000051 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
52 if (ExitBlocks[i] == BB)
53 return true;
54 return false;
55}
56
Chandler Carruth8765cf72014-01-25 04:07:24 +000057/// Given an instruction in the loop, check to see if it has any uses that are
58/// outside the current loop. If so, insert LCSSA PHI nodes and rewrite the
59/// uses.
60static bool processInstruction(Loop &L, Instruction &Inst, DominatorTree &DT,
61 const SmallVectorImpl<BasicBlock *> &ExitBlocks,
62 PredIteratorCache &PredCache) {
63 SmallVector<Use *, 16> UsesToRewrite;
64
65 BasicBlock *InstBB = Inst.getParent();
66
67 for (Value::use_iterator UI = Inst.use_begin(), E = Inst.use_end(); UI != E;
68 ++UI) {
Gabor Greif42479492010-07-09 14:29:14 +000069 User *U = *UI;
70 BasicBlock *UserBB = cast<Instruction>(U)->getParent();
71 if (PHINode *PN = dyn_cast<PHINode>(U))
Chris Lattner71d353d2009-10-11 02:53:37 +000072 UserBB = PN->getIncomingBlock(UI);
Chandler Carruth8765cf72014-01-25 04:07:24 +000073
74 if (InstBB != UserBB && !L.contains(UserBB))
Chris Lattner71d353d2009-10-11 02:53:37 +000075 UsesToRewrite.push_back(&UI.getUse());
76 }
Gabor Greif42479492010-07-09 14:29:14 +000077
Chris Lattner71d353d2009-10-11 02:53:37 +000078 // If there are no uses outside the loop, exit with no change.
Chandler Carruth8765cf72014-01-25 04:07:24 +000079 if (UsesToRewrite.empty())
80 return false;
81
Owen Andersondad8c572006-05-31 20:55:06 +000082 ++NumLCSSA; // We are applying the transformation
Chris Lattner5a2bc782006-08-02 00:06:09 +000083
Dan Gohman7eaf50e2009-06-26 00:31:13 +000084 // Invoke instructions are special in that their result value is not available
Chandler Carruth8765cf72014-01-25 04:07:24 +000085 // along their unwind edge. The code below tests to see whether DomBB
86 // dominates
Dan Gohman7eaf50e2009-06-26 00:31:13 +000087 // the value, so adjust DomBB to the normal destination block, which is
88 // effectively where the value is first usable.
Chandler Carruth8765cf72014-01-25 04:07:24 +000089 BasicBlock *DomBB = Inst.getParent();
90 if (InvokeInst *Inv = dyn_cast<InvokeInst>(&Inst))
Dan Gohman7eaf50e2009-06-26 00:31:13 +000091 DomBB = Inv->getNormalDest();
92
Chandler Carruth8765cf72014-01-25 04:07:24 +000093 DomTreeNode *DomNode = DT.getNode(DomBB);
Chris Lattner5a2bc782006-08-02 00:06:09 +000094
Chandler Carruth8765cf72014-01-25 04:07:24 +000095 SmallVector<PHINode *, 16> AddedPHIs;
Cameron Zwarich0b8cdfb2011-03-15 07:41:25 +000096
Chris Lattner71d353d2009-10-11 02:53:37 +000097 SSAUpdater SSAUpdate;
Chandler Carruth8765cf72014-01-25 04:07:24 +000098 SSAUpdate.Initialize(Inst.getType(), Inst.getName());
99
Chris Lattner71d353d2009-10-11 02:53:37 +0000100 // Insert the LCSSA phi's into all of the exit blocks dominated by the
Dan Gohmanc146c7802009-11-09 18:28:24 +0000101 // value, and add them to the Phi's map.
Chandler Carruth8765cf72014-01-25 04:07:24 +0000102 for (SmallVectorImpl<BasicBlock *>::const_iterator BBI = ExitBlocks.begin(),
103 BBE = ExitBlocks.end();
104 BBI != BBE; ++BBI) {
Chris Lattner71d353d2009-10-11 02:53:37 +0000105 BasicBlock *ExitBB = *BBI;
Chandler Carruth8765cf72014-01-25 04:07:24 +0000106 if (!DT.dominates(DomNode, DT.getNode(ExitBB)))
107 continue;
108
Chris Lattner71d353d2009-10-11 02:53:37 +0000109 // If we already inserted something for this BB, don't reprocess it.
Chandler Carruth8765cf72014-01-25 04:07:24 +0000110 if (SSAUpdate.HasValueForBlock(ExitBB))
111 continue;
112
113 PHINode *PN = PHINode::Create(Inst.getType(), PredCache.GetNumPreds(ExitBB),
114 Inst.getName() + ".lcssa", ExitBB->begin());
Chris Lattner984d6e12006-10-31 18:56:48 +0000115
Chris Lattner71d353d2009-10-11 02:53:37 +0000116 // Add inputs from inside the loop for this PHI.
Dan Gohmanc146c7802009-11-09 18:28:24 +0000117 for (BasicBlock **PI = PredCache.GetPreds(ExitBB); *PI; ++PI) {
Chandler Carruth8765cf72014-01-25 04:07:24 +0000118 PN->addIncoming(&Inst, *PI);
Dan Gohmanc146c7802009-11-09 18:28:24 +0000119
120 // If the exit block has a predecessor not within the loop, arrange for
Dan Gohmanf324dd62009-11-09 18:59:22 +0000121 // the incoming value use corresponding to that predecessor to be
Dan Gohmanc146c7802009-11-09 18:28:24 +0000122 // rewritten in terms of a different LCSSA PHI.
Chandler Carruth8765cf72014-01-25 04:07:24 +0000123 if (!L.contains(*PI))
Dan Gohmanc146c7802009-11-09 18:28:24 +0000124 UsesToRewrite.push_back(
Chandler Carruth8765cf72014-01-25 04:07:24 +0000125 &PN->getOperandUse(PN->getOperandNumForIncomingValue(
126 PN->getNumIncomingValues() - 1)));
Dan Gohmanc146c7802009-11-09 18:28:24 +0000127 }
Cameron Zwarich0b8cdfb2011-03-15 07:41:25 +0000128
129 AddedPHIs.push_back(PN);
Chandler Carruth8765cf72014-01-25 04:07:24 +0000130
Chris Lattner71d353d2009-10-11 02:53:37 +0000131 // Remember that this phi makes the value alive in this block.
132 SSAUpdate.AddAvailableValue(ExitBB, PN);
Owen Anderson0ac33692006-06-12 07:10:16 +0000133 }
Benjamin Kramer8682ac12012-10-31 10:01:29 +0000134
Chris Lattner71d353d2009-10-11 02:53:37 +0000135 // Rewrite all uses outside the loop in terms of the new PHIs we just
136 // inserted.
137 for (unsigned i = 0, e = UsesToRewrite.size(); i != e; ++i) {
138 // If this use is in an exit block, rewrite to use the newly inserted PHI.
139 // This is required for correctness because SSAUpdate doesn't handle uses in
140 // the same block. It assumes the PHI we inserted is at the end of the
141 // block.
142 Instruction *User = cast<Instruction>(UsesToRewrite[i]->getUser());
143 BasicBlock *UserBB = User->getParent();
144 if (PHINode *PN = dyn_cast<PHINode>(User))
145 UserBB = PN->getIncomingBlock(*UsesToRewrite[i]);
146
Chandler Carruth8765cf72014-01-25 04:07:24 +0000147 if (isa<PHINode>(UserBB->begin()) && isExitBlock(UserBB, ExitBlocks)) {
Benjamin Kramerede2fe3bfd2012-10-31 16:30:03 +0000148 // Tell the VHs that the uses changed. This updates SCEV's caches.
149 if (UsesToRewrite[i]->get()->hasValueHandle())
150 ValueHandleBase::ValueIsRAUWd(*UsesToRewrite[i], UserBB->begin());
Chris Lattner71d353d2009-10-11 02:53:37 +0000151 UsesToRewrite[i]->set(UserBB->begin());
Chris Lattner5a2bc782006-08-02 00:06:09 +0000152 continue;
Owen Andersoncd76fa02006-06-01 06:05:47 +0000153 }
Chandler Carruth8765cf72014-01-25 04:07:24 +0000154
Chris Lattner71d353d2009-10-11 02:53:37 +0000155 // Otherwise, do full PHI insertion.
156 SSAUpdate.RewriteUse(*UsesToRewrite[i]);
Chris Lattner5a2bc782006-08-02 00:06:09 +0000157 }
Cameron Zwarich0b8cdfb2011-03-15 07:41:25 +0000158
159 // Remove PHI nodes that did not have any uses rewritten.
160 for (unsigned i = 0, e = AddedPHIs.size(); i != e; ++i) {
Cameron Zwarichdbb27392011-03-15 18:42:33 +0000161 if (AddedPHIs[i]->use_empty())
Cameron Zwarich0b8cdfb2011-03-15 07:41:25 +0000162 AddedPHIs[i]->eraseFromParent();
163 }
Chandler Carruth8765cf72014-01-25 04:07:24 +0000164
Chris Lattner71d353d2009-10-11 02:53:37 +0000165 return true;
Owen Andersondad8c572006-05-31 20:55:06 +0000166}
Chris Lattner5a2bc782006-08-02 00:06:09 +0000167
Chandler Carruth8765cf72014-01-25 04:07:24 +0000168/// Return true if the specified block dominates at least
169/// one of the blocks in the specified list.
170static bool
171blockDominatesAnExit(BasicBlock *BB,
172 DominatorTree &DT,
173 const SmallVectorImpl<BasicBlock *> &ExitBlocks) {
174 DomTreeNode *DomNode = DT.getNode(BB);
175 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
176 if (DT.dominates(DomNode, DT.getNode(ExitBlocks[i])))
177 return true;
178
179 return false;
180}
181
182bool llvm::formLCSSA(Loop &L, DominatorTree &DT, ScalarEvolution *SE) {
183 bool Changed = false;
184
185 // Get the set of exiting blocks.
186 SmallVector<BasicBlock *, 8> ExitBlocks;
187 L.getExitBlocks(ExitBlocks);
188
189 if (ExitBlocks.empty())
190 return false;
191
192 PredIteratorCache PredCache;
193
194 // Look at all the instructions in the loop, checking to see if they have uses
195 // outside the loop. If so, rewrite those uses.
196 for (Loop::block_iterator BBI = L.block_begin(), BBE = L.block_end();
197 BBI != BBE; ++BBI) {
198 BasicBlock *BB = *BBI;
199
200 // For large loops, avoid use-scanning by using dominance information: In
201 // particular, if a block does not dominate any of the loop exits, then none
202 // of the values defined in the block could be used outside the loop.
203 if (!blockDominatesAnExit(BB, DT, ExitBlocks))
204 continue;
205
206 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
207 // Reject two common cases fast: instructions with no uses (like stores)
208 // and instructions with one use that is in the same block as this.
209 if (I->use_empty() ||
210 (I->hasOneUse() && I->use_back()->getParent() == BB &&
211 !isa<PHINode>(I->use_back())))
212 continue;
213
214 Changed |= processInstruction(L, *I, DT, ExitBlocks, PredCache);
215 }
216 }
217
218 // If we modified the code, remove any caches about the loop from SCEV to
219 // avoid dangling entries.
220 // FIXME: This is a big hammer, can we clear the cache more selectively?
221 if (SE && Changed)
222 SE->forgetLoop(&L);
223
224 assert(L.isLCSSAForm(DT));
225
226 return Changed;
227}
228
Chandler Carruthd84f7762014-01-28 01:25:38 +0000229/// Process a loop nest depth first.
230bool llvm::formLCSSARecursively(Loop &L, DominatorTree &DT,
231 ScalarEvolution *SE) {
232 bool Changed = false;
233
234 // Recurse depth-first through inner loops.
235 for (Loop::iterator LI = L.begin(), LE = L.end(); LI != LE; ++LI)
236 Changed |= formLCSSARecursively(**LI, DT, SE);
237
238 Changed |= formLCSSA(L, DT, SE);
239 return Changed;
240}
241
Chandler Carruth8765cf72014-01-25 04:07:24 +0000242namespace {
243struct LCSSA : public FunctionPass {
244 static char ID; // Pass identification, replacement for typeid
245 LCSSA() : FunctionPass(ID) {
246 initializeLCSSAPass(*PassRegistry::getPassRegistry());
247 }
248
249 // Cached analysis information for the current function.
250 DominatorTree *DT;
251 LoopInfo *LI;
252 ScalarEvolution *SE;
253
254 virtual bool runOnFunction(Function &F);
255
256 /// This transformation requires natural loop information & requires that
257 /// loop preheaders be inserted into the CFG. It maintains both of these,
258 /// as well as the CFG. It also requires dominator information.
259 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
260 AU.setPreservesCFG();
261
262 AU.addRequired<DominatorTreeWrapperPass>();
263 AU.addRequired<LoopInfo>();
264 AU.addPreservedID(LoopSimplifyID);
265 AU.addPreserved<ScalarEvolution>();
266 }
267
268private:
269 bool processLoop(Loop &L);
270
271 virtual void verifyAnalysis() const;
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)
Chandler Carruthd84f7762014-01-28 01:25:38 +0000294 Changed |= formLCSSARecursively(**I, *DT, SE);
Chandler Carruth8765cf72014-01-25 04:07:24 +0000295
296 return Changed;
297}
298
Chandler Carruth8765cf72014-01-25 04:07:24 +0000299static 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}