blob: ef2f50421691b9c1eecc69381372139e395ebecf [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
Owen Andersonf3dd3e22006-05-26 21:11:53 +000030#include "llvm/Transforms/Scalar.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000031#include "llvm/ADT/STLExtras.h"
32#include "llvm/ADT/Statistic.h"
Chandler Carruth756c22c2014-02-10 19:39:35 +000033#include "llvm/Analysis/AliasAnalysis.h"
Chandler Carruth7b560d42015-09-09 17:55:00 +000034#include "llvm/Analysis/GlobalsModRef.h"
Devang Patel4cd14132007-07-13 23:57:11 +000035#include "llvm/Analysis/LoopPass.h"
36#include "llvm/Analysis/ScalarEvolution.h"
Chandler Carruth7b560d42015-09-09 17:55:00 +000037#include "llvm/Analysis/ScalarEvolutionAliasAnalysis.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000038#include "llvm/IR/Constants.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000039#include "llvm/IR/Dominators.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000040#include "llvm/IR/Function.h"
41#include "llvm/IR/Instructions.h"
Chandler Carruthaa0ab632014-03-04 12:09:19 +000042#include "llvm/IR/PredIteratorCache.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000043#include "llvm/Pass.h"
Chandler Carruth8765cf72014-01-25 04:07:24 +000044#include "llvm/Transforms/Utils/LoopUtils.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000045#include "llvm/Transforms/Utils/SSAUpdater.h"
Owen Anderson8eca8912006-05-26 13:58:26 +000046using namespace llvm;
47
Chandler Carruth964daaa2014-04-22 02:55:47 +000048#define DEBUG_TYPE "lcssa"
49
Chris Lattner45f966d2006-12-19 22:17:40 +000050STATISTIC(NumLCSSA, "Number of live out of a loop variables");
51
Chandler Carruth8765cf72014-01-25 04:07:24 +000052/// Return true if the specified block is in the list.
Chris Lattner71d353d2009-10-11 02:53:37 +000053static bool isExitBlock(BasicBlock *BB,
Chandler Carruth8765cf72014-01-25 04:07:24 +000054 const SmallVectorImpl<BasicBlock *> &ExitBlocks) {
Chris Lattner71d353d2009-10-11 02:53:37 +000055 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
56 if (ExitBlocks[i] == BB)
57 return true;
58 return false;
59}
60
Chandler Carruth8765cf72014-01-25 04:07:24 +000061/// Given an instruction in the loop, check to see if it has any uses that are
62/// outside the current loop. If so, insert LCSSA PHI nodes and rewrite the
63/// uses.
64static bool processInstruction(Loop &L, Instruction &Inst, DominatorTree &DT,
65 const SmallVectorImpl<BasicBlock *> &ExitBlocks,
Bruno Cardoso Lopesbad65c32014-12-22 22:35:46 +000066 PredIteratorCache &PredCache, LoopInfo *LI) {
Chandler Carruth8765cf72014-01-25 04:07:24 +000067 SmallVector<Use *, 16> UsesToRewrite;
68
69 BasicBlock *InstBB = Inst.getParent();
70
Chandler Carruthcdf47882014-03-09 03:16:01 +000071 for (Use &U : Inst.uses()) {
72 Instruction *User = cast<Instruction>(U.getUser());
73 BasicBlock *UserBB = User->getParent();
74 if (PHINode *PN = dyn_cast<PHINode>(User))
75 UserBB = PN->getIncomingBlock(U);
Chandler Carruth8765cf72014-01-25 04:07:24 +000076
77 if (InstBB != UserBB && !L.contains(UserBB))
Chandler Carruthcdf47882014-03-09 03:16:01 +000078 UsesToRewrite.push_back(&U);
Chris Lattner71d353d2009-10-11 02:53:37 +000079 }
Gabor Greif42479492010-07-09 14:29:14 +000080
Chris Lattner71d353d2009-10-11 02:53:37 +000081 // If there are no uses outside the loop, exit with no change.
Chandler Carruth8765cf72014-01-25 04:07:24 +000082 if (UsesToRewrite.empty())
83 return false;
84
Owen Andersondad8c572006-05-31 20:55:06 +000085 ++NumLCSSA; // We are applying the transformation
Chris Lattner5a2bc782006-08-02 00:06:09 +000086
David Majnemer8a1c45d2015-12-12 05:38:55 +000087 // Invoke instructions are special in that their result value is not available
88 // along their unwind edge. The code below tests to see whether DomBB
89 // dominates the value, so adjust DomBB to the normal destination block,
David Majnemer0bc0eef2015-08-15 02:46:08 +000090 // which is effectively where the value is first usable.
Chandler Carruth8765cf72014-01-25 04:07:24 +000091 BasicBlock *DomBB = Inst.getParent();
92 if (InvokeInst *Inv = dyn_cast<InvokeInst>(&Inst))
Dan Gohman7eaf50e2009-06-26 00:31:13 +000093 DomBB = Inv->getNormalDest();
94
Chandler Carruth8765cf72014-01-25 04:07:24 +000095 DomTreeNode *DomNode = DT.getNode(DomBB);
Chris Lattner5a2bc782006-08-02 00:06:09 +000096
Chandler Carruth8765cf72014-01-25 04:07:24 +000097 SmallVector<PHINode *, 16> AddedPHIs;
Bruno Cardoso Lopesbad65c32014-12-22 22:35:46 +000098 SmallVector<PHINode *, 8> PostProcessPHIs;
Cameron Zwarich0b8cdfb2011-03-15 07:41:25 +000099
Chris Lattner71d353d2009-10-11 02:53:37 +0000100 SSAUpdater SSAUpdate;
Chandler Carruth8765cf72014-01-25 04:07:24 +0000101 SSAUpdate.Initialize(Inst.getType(), Inst.getName());
102
Chris Lattner71d353d2009-10-11 02:53:37 +0000103 // Insert the LCSSA phi's into all of the exit blocks dominated by the
Dan Gohmanc146c7802009-11-09 18:28:24 +0000104 // value, and add them to the Phi's map.
Sanjoy Das331521c2015-10-25 19:08:32 +0000105 for (BasicBlock *ExitBB : ExitBlocks) {
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
Daniel Berlinb4e7a4a2015-04-21 21:11:50 +0000113 PHINode *PN = PHINode::Create(Inst.getType(), PredCache.size(ExitBB),
Duncan P. N. Exon Smith5b4c8372015-10-13 02:39:05 +0000114 Inst.getName() + ".lcssa", &ExitBB->front());
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.
Daniel Berlinb4e7a4a2015-04-21 21:11:50 +0000117 for (BasicBlock *Pred : PredCache.get(ExitBB)) {
118 PN->addIncoming(&Inst, Pred);
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.
Daniel Berlinb4e7a4a2015-04-21 21:11:50 +0000123 if (!L.contains(Pred))
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);
Bruno Cardoso Lopesbad65c32014-12-22 22:35:46 +0000133
134 // LoopSimplify might fail to simplify some loops (e.g. when indirect
135 // branches are involved). In such situations, it might happen that an exit
136 // for Loop L1 is the header of a disjoint Loop L2. Thus, when we create
137 // PHIs in such an exit block, we are also inserting PHIs into L2's header.
138 // This could break LCSSA form for L2 because these inserted PHIs can also
139 // have uses outside of L2. Remember all PHIs in such situation as to
140 // revisit than later on. FIXME: Remove this if indirectbr support into
141 // LoopSimplify gets improved.
142 if (auto *OtherLoop = LI->getLoopFor(ExitBB))
143 if (!L.contains(OtherLoop))
144 PostProcessPHIs.push_back(PN);
Owen Anderson0ac33692006-06-12 07:10:16 +0000145 }
Benjamin Kramer8682ac12012-10-31 10:01:29 +0000146
Chris Lattner71d353d2009-10-11 02:53:37 +0000147 // Rewrite all uses outside the loop in terms of the new PHIs we just
148 // inserted.
Sanjoy Das331521c2015-10-25 19:08:32 +0000149 for (Use *UseToRewrite : UsesToRewrite) {
Chris Lattner71d353d2009-10-11 02:53:37 +0000150 // If this use is in an exit block, rewrite to use the newly inserted PHI.
151 // This is required for correctness because SSAUpdate doesn't handle uses in
152 // the same block. It assumes the PHI we inserted is at the end of the
153 // block.
Sanjoy Das331521c2015-10-25 19:08:32 +0000154 Instruction *User = cast<Instruction>(UseToRewrite->getUser());
Chris Lattner71d353d2009-10-11 02:53:37 +0000155 BasicBlock *UserBB = User->getParent();
156 if (PHINode *PN = dyn_cast<PHINode>(User))
Sanjoy Das331521c2015-10-25 19:08:32 +0000157 UserBB = PN->getIncomingBlock(*UseToRewrite);
Chris Lattner71d353d2009-10-11 02:53:37 +0000158
Chandler Carruth8765cf72014-01-25 04:07:24 +0000159 if (isa<PHINode>(UserBB->begin()) && isExitBlock(UserBB, ExitBlocks)) {
Benjamin Kramerede2fe3bfd2012-10-31 16:30:03 +0000160 // Tell the VHs that the uses changed. This updates SCEV's caches.
Sanjoy Das331521c2015-10-25 19:08:32 +0000161 if (UseToRewrite->get()->hasValueHandle())
162 ValueHandleBase::ValueIsRAUWd(*UseToRewrite, &UserBB->front());
163 UseToRewrite->set(&UserBB->front());
Chris Lattner5a2bc782006-08-02 00:06:09 +0000164 continue;
Owen Andersoncd76fa02006-06-01 06:05:47 +0000165 }
Chandler Carruth8765cf72014-01-25 04:07:24 +0000166
Chris Lattner71d353d2009-10-11 02:53:37 +0000167 // Otherwise, do full PHI insertion.
Sanjoy Das331521c2015-10-25 19:08:32 +0000168 SSAUpdate.RewriteUse(*UseToRewrite);
Chris Lattner5a2bc782006-08-02 00:06:09 +0000169 }
Cameron Zwarich0b8cdfb2011-03-15 07:41:25 +0000170
Bruno Cardoso Lopesbad65c32014-12-22 22:35:46 +0000171 // Post process PHI instructions that were inserted into another disjoint loop
172 // and update their exits properly.
173 for (auto *I : PostProcessPHIs) {
174 if (I->use_empty())
175 continue;
176
177 BasicBlock *PHIBB = I->getParent();
178 Loop *OtherLoop = LI->getLoopFor(PHIBB);
179 SmallVector<BasicBlock *, 8> EBs;
180 OtherLoop->getExitBlocks(EBs);
181 if (EBs.empty())
182 continue;
183
184 // Recurse and re-process each PHI instruction. FIXME: we should really
185 // convert this entire thing to a worklist approach where we process a
186 // vector of instructions...
187 processInstruction(*OtherLoop, *I, DT, EBs, PredCache, LI);
188 }
189
Cameron Zwarich0b8cdfb2011-03-15 07:41:25 +0000190 // Remove PHI nodes that did not have any uses rewritten.
Sanjoy Das331521c2015-10-25 19:08:32 +0000191 for (PHINode *PN : AddedPHIs)
192 if (PN->use_empty())
193 PN->eraseFromParent();
Chandler Carruth8765cf72014-01-25 04:07:24 +0000194
Chris Lattner71d353d2009-10-11 02:53:37 +0000195 return true;
Owen Andersondad8c572006-05-31 20:55:06 +0000196}
Chris Lattner5a2bc782006-08-02 00:06:09 +0000197
Chandler Carruth8765cf72014-01-25 04:07:24 +0000198/// Return true if the specified block dominates at least
199/// one of the blocks in the specified list.
200static bool
201blockDominatesAnExit(BasicBlock *BB,
202 DominatorTree &DT,
203 const SmallVectorImpl<BasicBlock *> &ExitBlocks) {
204 DomTreeNode *DomNode = DT.getNode(BB);
Sanjoy Das331521c2015-10-25 19:08:32 +0000205 for (BasicBlock *ExitBB : ExitBlocks)
206 if (DT.dominates(DomNode, DT.getNode(ExitBB)))
Chandler Carruth8765cf72014-01-25 04:07:24 +0000207 return true;
208
209 return false;
210}
211
Bruno Cardoso Lopesbad65c32014-12-22 22:35:46 +0000212bool llvm::formLCSSA(Loop &L, DominatorTree &DT, LoopInfo *LI,
213 ScalarEvolution *SE) {
Chandler Carruth8765cf72014-01-25 04:07:24 +0000214 bool Changed = false;
215
216 // Get the set of exiting blocks.
217 SmallVector<BasicBlock *, 8> ExitBlocks;
218 L.getExitBlocks(ExitBlocks);
219
220 if (ExitBlocks.empty())
221 return false;
222
223 PredIteratorCache PredCache;
224
225 // Look at all the instructions in the loop, checking to see if they have uses
226 // outside the loop. If so, rewrite those uses.
Sanjoy Das331521c2015-10-25 19:08:32 +0000227 for (BasicBlock *BB : L.blocks()) {
Chandler Carruth8765cf72014-01-25 04:07:24 +0000228 // For large loops, avoid use-scanning by using dominance information: In
229 // particular, if a block does not dominate any of the loop exits, then none
230 // of the values defined in the block could be used outside the loop.
231 if (!blockDominatesAnExit(BB, DT, ExitBlocks))
232 continue;
233
Sanjoy Das331521c2015-10-25 19:08:32 +0000234 for (Instruction &I : *BB) {
Chandler Carruth8765cf72014-01-25 04:07:24 +0000235 // Reject two common cases fast: instructions with no uses (like stores)
236 // and instructions with one use that is in the same block as this.
Sanjoy Das331521c2015-10-25 19:08:32 +0000237 if (I.use_empty() ||
238 (I.hasOneUse() && I.user_back()->getParent() == BB &&
239 !isa<PHINode>(I.user_back())))
Chandler Carruth8765cf72014-01-25 04:07:24 +0000240 continue;
241
Sanjoy Das331521c2015-10-25 19:08:32 +0000242 Changed |= processInstruction(L, I, DT, ExitBlocks, PredCache, LI);
Chandler Carruth8765cf72014-01-25 04:07:24 +0000243 }
244 }
245
246 // If we modified the code, remove any caches about the loop from SCEV to
247 // avoid dangling entries.
248 // FIXME: This is a big hammer, can we clear the cache more selectively?
249 if (SE && Changed)
250 SE->forgetLoop(&L);
251
252 assert(L.isLCSSAForm(DT));
253
254 return Changed;
255}
256
Chandler Carruthd84f7762014-01-28 01:25:38 +0000257/// Process a loop nest depth first.
Bruno Cardoso Lopesbad65c32014-12-22 22:35:46 +0000258bool llvm::formLCSSARecursively(Loop &L, DominatorTree &DT, LoopInfo *LI,
Chandler Carruthd84f7762014-01-28 01:25:38 +0000259 ScalarEvolution *SE) {
260 bool Changed = false;
261
262 // Recurse depth-first through inner loops.
Sanjoy Das15c4c462015-10-25 19:27:17 +0000263 for (Loop *SubLoop : L.getSubLoops())
264 Changed |= formLCSSARecursively(*SubLoop, DT, LI, SE);
Chandler Carruthd84f7762014-01-28 01:25:38 +0000265
Bruno Cardoso Lopesbad65c32014-12-22 22:35:46 +0000266 Changed |= formLCSSA(L, DT, LI, SE);
Chandler Carruthd84f7762014-01-28 01:25:38 +0000267 return Changed;
268}
269
Chandler Carruth8765cf72014-01-25 04:07:24 +0000270namespace {
271struct LCSSA : public FunctionPass {
272 static char ID; // Pass identification, replacement for typeid
273 LCSSA() : FunctionPass(ID) {
274 initializeLCSSAPass(*PassRegistry::getPassRegistry());
275 }
276
277 // Cached analysis information for the current function.
278 DominatorTree *DT;
279 LoopInfo *LI;
280 ScalarEvolution *SE;
281
Craig Topper3e4c6972014-03-05 09:10:37 +0000282 bool runOnFunction(Function &F) override;
Chandler Carruth8765cf72014-01-25 04:07:24 +0000283
284 /// This transformation requires natural loop information & requires that
285 /// loop preheaders be inserted into the CFG. It maintains both of these,
286 /// as well as the CFG. It also requires dominator information.
Craig Topper3e4c6972014-03-05 09:10:37 +0000287 void getAnalysisUsage(AnalysisUsage &AU) const override {
Chandler Carruth8765cf72014-01-25 04:07:24 +0000288 AU.setPreservesCFG();
289
290 AU.addRequired<DominatorTreeWrapperPass>();
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000291 AU.addRequired<LoopInfoWrapperPass>();
Chandler Carruth8765cf72014-01-25 04:07:24 +0000292 AU.addPreservedID(LoopSimplifyID);
Chandler Carruth7b560d42015-09-09 17:55:00 +0000293 AU.addPreserved<AAResultsWrapperPass>();
294 AU.addPreserved<GlobalsAAWrapperPass>();
Chandler Carruth2f1fd162015-08-17 02:08:17 +0000295 AU.addPreserved<ScalarEvolutionWrapperPass>();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000296 AU.addPreserved<SCEVAAWrapperPass>();
Chandler Carruth8765cf72014-01-25 04:07:24 +0000297 }
Chandler Carruth8765cf72014-01-25 04:07:24 +0000298};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000299}
Chandler Carruth8765cf72014-01-25 04:07:24 +0000300
301char LCSSA::ID = 0;
302INITIALIZE_PASS_BEGIN(LCSSA, "lcssa", "Loop-Closed SSA Form Pass", false, false)
303INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000304INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
Chandler Carruth7b560d42015-09-09 17:55:00 +0000305INITIALIZE_PASS_DEPENDENCY(GlobalsAAWrapperPass)
306INITIALIZE_PASS_DEPENDENCY(SCEVAAWrapperPass)
Chandler Carruth8765cf72014-01-25 04:07:24 +0000307INITIALIZE_PASS_END(LCSSA, "lcssa", "Loop-Closed SSA Form Pass", false, false)
308
309Pass *llvm::createLCSSAPass() { return new LCSSA(); }
310char &llvm::LCSSAID = LCSSA::ID;
311
312
313/// Process all loops in the function, inner-most out.
314bool LCSSA::runOnFunction(Function &F) {
315 bool Changed = false;
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000316 LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
Chandler Carruth8765cf72014-01-25 04:07:24 +0000317 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
Chandler Carruth2f1fd162015-08-17 02:08:17 +0000318 auto *SEWP = getAnalysisIfAvailable<ScalarEvolutionWrapperPass>();
319 SE = SEWP ? &SEWP->getSE() : nullptr;
Chandler Carruth8765cf72014-01-25 04:07:24 +0000320
321 // Simplify each loop nest in the function.
322 for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I)
Bruno Cardoso Lopesbad65c32014-12-22 22:35:46 +0000323 Changed |= formLCSSARecursively(**I, *DT, LI, SE);
Chandler Carruth8765cf72014-01-25 04:07:24 +0000324
325 return Changed;
326}
327