blob: 9658966779b9abd692f0fc47a21cb21f545a15db [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
Easwaran Ramane12c4872016-06-09 19:44:46 +000030#include "llvm/Transforms/Utils/LCSSA.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 Carruthac072702016-02-19 03:12:14 +000034#include "llvm/Analysis/BasicAliasAnalysis.h"
Chandler Carruth7b560d42015-09-09 17:55:00 +000035#include "llvm/Analysis/GlobalsModRef.h"
Devang Patel4cd14132007-07-13 23:57:11 +000036#include "llvm/Analysis/LoopPass.h"
37#include "llvm/Analysis/ScalarEvolution.h"
Chandler Carruth7b560d42015-09-09 17:55:00 +000038#include "llvm/Analysis/ScalarEvolutionAliasAnalysis.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000039#include "llvm/IR/Constants.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000040#include "llvm/IR/Dominators.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000041#include "llvm/IR/Function.h"
42#include "llvm/IR/Instructions.h"
Chandler Carruthaa0ab632014-03-04 12:09:19 +000043#include "llvm/IR/PredIteratorCache.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000044#include "llvm/Pass.h"
Easwaran Ramane12c4872016-06-09 19:44:46 +000045#include "llvm/Transforms/Scalar.h"
Chandler Carruth8765cf72014-01-25 04:07:24 +000046#include "llvm/Transforms/Utils/LoopUtils.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000047#include "llvm/Transforms/Utils/SSAUpdater.h"
Owen Anderson8eca8912006-05-26 13:58:26 +000048using namespace llvm;
49
Chandler Carruth964daaa2014-04-22 02:55:47 +000050#define DEBUG_TYPE "lcssa"
51
Chris Lattner45f966d2006-12-19 22:17:40 +000052STATISTIC(NumLCSSA, "Number of live out of a loop variables");
53
Chandler Carruth8765cf72014-01-25 04:07:24 +000054/// Return true if the specified block is in the list.
Chris Lattner71d353d2009-10-11 02:53:37 +000055static bool isExitBlock(BasicBlock *BB,
Chandler Carruth8765cf72014-01-25 04:07:24 +000056 const SmallVectorImpl<BasicBlock *> &ExitBlocks) {
Davide Italiano88a78922016-05-27 20:25:31 +000057 return find(ExitBlocks, BB) != ExitBlocks.end();
Chris Lattner71d353d2009-10-11 02:53:37 +000058}
59
Michael Zolotukhina78937a2016-07-15 21:08:41 +000060/// For every instruction from the worklist, check to see if it has any uses
61/// that are outside the current loop. If so, insert LCSSA PHI nodes and
62/// rewrite the uses.
63bool llvm::formLCSSAForInstructions(SmallVectorImpl<Instruction *> &Worklist,
64 DominatorTree &DT, LoopInfo &LI) {
Chandler Carruth8765cf72014-01-25 04:07:24 +000065 SmallVector<Use *, 16> UsesToRewrite;
Michael Zolotukhina78937a2016-07-15 21:08:41 +000066 SmallVector<BasicBlock *, 8> ExitBlocks;
67 PredIteratorCache PredCache;
68 bool Changed = false;
Chandler Carruth8765cf72014-01-25 04:07:24 +000069
Michael Zolotukhina78937a2016-07-15 21:08:41 +000070 while (!Worklist.empty()) {
71 UsesToRewrite.clear();
72 ExitBlocks.clear();
Andrew Kaylor123048d2015-12-18 18:12:35 +000073
Michael Zolotukhina78937a2016-07-15 21:08:41 +000074 Instruction *I = Worklist.pop_back_val();
75 BasicBlock *InstBB = I->getParent();
76 Loop *L = LI.getLoopFor(InstBB);
77 L->getExitBlocks(ExitBlocks);
Chandler Carruth8765cf72014-01-25 04:07:24 +000078
Michael Zolotukhina78937a2016-07-15 21:08:41 +000079 if (ExitBlocks.empty())
Chandler Carruth8765cf72014-01-25 04:07:24 +000080 continue;
81
Michael Zolotukhina78937a2016-07-15 21:08:41 +000082 // Tokens cannot be used in PHI nodes, so we skip over them.
83 // We can run into tokens which are live out of a loop with catchswitch
84 // instructions in Windows EH if the catchswitch has one catchpad which
85 // is inside the loop and another which is not.
86 if (I->getType()->isTokenTy())
Chandler Carruth8765cf72014-01-25 04:07:24 +000087 continue;
88
Michael Zolotukhina78937a2016-07-15 21:08:41 +000089 for (Use &U : I->uses()) {
90 Instruction *User = cast<Instruction>(U.getUser());
91 BasicBlock *UserBB = User->getParent();
92 if (PHINode *PN = dyn_cast<PHINode>(User))
93 UserBB = PN->getIncomingBlock(U);
Chris Lattner984d6e12006-10-31 18:56:48 +000094
Michael Zolotukhina78937a2016-07-15 21:08:41 +000095 if (InstBB != UserBB && !L->contains(UserBB))
96 UsesToRewrite.push_back(&U);
Dan Gohmanc146c7802009-11-09 18:28:24 +000097 }
Cameron Zwarich0b8cdfb2011-03-15 07:41:25 +000098
Michael Zolotukhina78937a2016-07-15 21:08:41 +000099 // If there are no uses outside the loop, exit with no change.
100 if (UsesToRewrite.empty())
Chris Lattner5a2bc782006-08-02 00:06:09 +0000101 continue;
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000102
103 ++NumLCSSA; // We are applying the transformation
104
105 // Invoke instructions are special in that their result value is not
106 // available along their unwind edge. The code below tests to see whether
107 // DomBB dominates the value, so adjust DomBB to the normal destination
108 // block, which is effectively where the value is first usable.
109 BasicBlock *DomBB = InstBB;
110 if (InvokeInst *Inv = dyn_cast<InvokeInst>(I))
111 DomBB = Inv->getNormalDest();
112
113 DomTreeNode *DomNode = DT.getNode(DomBB);
114
115 SmallVector<PHINode *, 16> AddedPHIs;
116 SmallVector<PHINode *, 8> PostProcessPHIs;
117
118 SSAUpdater SSAUpdate;
119 SSAUpdate.Initialize(I->getType(), I->getName());
120
121 // Insert the LCSSA phi's into all of the exit blocks dominated by the
122 // value, and add them to the Phi's map.
123 for (BasicBlock *ExitBB : ExitBlocks) {
124 if (!DT.dominates(DomNode, DT.getNode(ExitBB)))
125 continue;
126
127 // If we already inserted something for this BB, don't reprocess it.
128 if (SSAUpdate.HasValueForBlock(ExitBB))
129 continue;
130
131 PHINode *PN = PHINode::Create(I->getType(), PredCache.size(ExitBB),
132 I->getName() + ".lcssa", &ExitBB->front());
133
134 // Add inputs from inside the loop for this PHI.
135 for (BasicBlock *Pred : PredCache.get(ExitBB)) {
136 PN->addIncoming(I, Pred);
137
138 // If the exit block has a predecessor not within the loop, arrange for
139 // the incoming value use corresponding to that predecessor to be
140 // rewritten in terms of a different LCSSA PHI.
141 if (!L->contains(Pred))
142 UsesToRewrite.push_back(
143 &PN->getOperandUse(PN->getOperandNumForIncomingValue(
144 PN->getNumIncomingValues() - 1)));
145 }
146
147 AddedPHIs.push_back(PN);
148
149 // Remember that this phi makes the value alive in this block.
150 SSAUpdate.AddAvailableValue(ExitBB, PN);
151
152 // LoopSimplify might fail to simplify some loops (e.g. when indirect
153 // branches are involved). In such situations, it might happen that an
154 // exit for Loop L1 is the header of a disjoint Loop L2. Thus, when we
155 // create PHIs in such an exit block, we are also inserting PHIs into L2's
156 // header. This could break LCSSA form for L2 because these inserted PHIs
157 // can also have uses outside of L2. Remember all PHIs in such situation
158 // as to revisit than later on. FIXME: Remove this if indirectbr support
159 // into LoopSimplify gets improved.
160 if (auto *OtherLoop = LI.getLoopFor(ExitBB))
161 if (!L->contains(OtherLoop))
162 PostProcessPHIs.push_back(PN);
Owen Andersoncd76fa02006-06-01 06:05:47 +0000163 }
Chandler Carruth8765cf72014-01-25 04:07:24 +0000164
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000165 // Rewrite all uses outside the loop in terms of the new PHIs we just
166 // inserted.
167 for (Use *UseToRewrite : UsesToRewrite) {
168 // If this use is in an exit block, rewrite to use the newly inserted PHI.
169 // This is required for correctness because SSAUpdate doesn't handle uses
170 // in the same block. It assumes the PHI we inserted is at the end of the
171 // block.
172 Instruction *User = cast<Instruction>(UseToRewrite->getUser());
173 BasicBlock *UserBB = User->getParent();
174 if (PHINode *PN = dyn_cast<PHINode>(User))
175 UserBB = PN->getIncomingBlock(*UseToRewrite);
176
177 if (isa<PHINode>(UserBB->begin()) && isExitBlock(UserBB, ExitBlocks)) {
178 // Tell the VHs that the uses changed. This updates SCEV's caches.
179 if (UseToRewrite->get()->hasValueHandle())
180 ValueHandleBase::ValueIsRAUWd(*UseToRewrite, &UserBB->front());
181 UseToRewrite->set(&UserBB->front());
182 continue;
183 }
184
185 // Otherwise, do full PHI insertion.
186 SSAUpdate.RewriteUse(*UseToRewrite);
187 }
188
189 // Post process PHI instructions that were inserted into another disjoint
190 // loop and update their exits properly.
191 for (auto *PostProcessPN : PostProcessPHIs) {
192 if (PostProcessPN->use_empty())
193 continue;
194
195 // Reprocess each PHI instruction.
196 Worklist.push_back(PostProcessPN);
197 }
198
199 // Remove PHI nodes that did not have any uses rewritten.
200 for (PHINode *PN : AddedPHIs)
201 if (PN->use_empty())
202 PN->eraseFromParent();
203
204 Changed = true;
Chris Lattner5a2bc782006-08-02 00:06:09 +0000205 }
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000206 return Changed;
Owen Andersondad8c572006-05-31 20:55:06 +0000207}
Chris Lattner5a2bc782006-08-02 00:06:09 +0000208
Chandler Carruth8765cf72014-01-25 04:07:24 +0000209/// Return true if the specified block dominates at least
210/// one of the blocks in the specified list.
211static bool
212blockDominatesAnExit(BasicBlock *BB,
213 DominatorTree &DT,
214 const SmallVectorImpl<BasicBlock *> &ExitBlocks) {
215 DomTreeNode *DomNode = DT.getNode(BB);
Davide Italianobfe38012016-05-17 19:01:02 +0000216 return llvm::any_of(ExitBlocks, [&](BasicBlock * EB) {
Davide Italianob75b16e22016-05-17 14:24:41 +0000217 return DT.dominates(DomNode, DT.getNode(EB));
218 });
Chandler Carruth8765cf72014-01-25 04:07:24 +0000219}
220
Bruno Cardoso Lopesbad65c32014-12-22 22:35:46 +0000221bool llvm::formLCSSA(Loop &L, DominatorTree &DT, LoopInfo *LI,
222 ScalarEvolution *SE) {
Chandler Carruth8765cf72014-01-25 04:07:24 +0000223 bool Changed = false;
224
225 // Get the set of exiting blocks.
226 SmallVector<BasicBlock *, 8> ExitBlocks;
227 L.getExitBlocks(ExitBlocks);
228
229 if (ExitBlocks.empty())
230 return false;
231
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000232 SmallVector<Instruction *, 8> Worklist;
Chandler Carruth8765cf72014-01-25 04:07:24 +0000233
234 // Look at all the instructions in the loop, checking to see if they have uses
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000235 // outside the loop. If so, put them into the worklist to rewrite those uses.
Sanjoy Das331521c2015-10-25 19:08:32 +0000236 for (BasicBlock *BB : L.blocks()) {
Chandler Carruth8765cf72014-01-25 04:07:24 +0000237 // For large loops, avoid use-scanning by using dominance information: In
238 // particular, if a block does not dominate any of the loop exits, then none
239 // of the values defined in the block could be used outside the loop.
240 if (!blockDominatesAnExit(BB, DT, ExitBlocks))
241 continue;
242
Sanjoy Das331521c2015-10-25 19:08:32 +0000243 for (Instruction &I : *BB) {
Chandler Carruth8765cf72014-01-25 04:07:24 +0000244 // Reject two common cases fast: instructions with no uses (like stores)
245 // and instructions with one use that is in the same block as this.
Sanjoy Das331521c2015-10-25 19:08:32 +0000246 if (I.use_empty() ||
247 (I.hasOneUse() && I.user_back()->getParent() == BB &&
248 !isa<PHINode>(I.user_back())))
Chandler Carruth8765cf72014-01-25 04:07:24 +0000249 continue;
250
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000251 Worklist.push_back(&I);
Chandler Carruth8765cf72014-01-25 04:07:24 +0000252 }
253 }
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000254 Changed = formLCSSAForInstructions(Worklist, DT, *LI);
Chandler Carruth8765cf72014-01-25 04:07:24 +0000255
256 // If we modified the code, remove any caches about the loop from SCEV to
257 // avoid dangling entries.
258 // FIXME: This is a big hammer, can we clear the cache more selectively?
259 if (SE && Changed)
260 SE->forgetLoop(&L);
261
262 assert(L.isLCSSAForm(DT));
263
264 return Changed;
265}
266
Chandler Carruthd84f7762014-01-28 01:25:38 +0000267/// Process a loop nest depth first.
Bruno Cardoso Lopesbad65c32014-12-22 22:35:46 +0000268bool llvm::formLCSSARecursively(Loop &L, DominatorTree &DT, LoopInfo *LI,
Chandler Carruthd84f7762014-01-28 01:25:38 +0000269 ScalarEvolution *SE) {
270 bool Changed = false;
271
272 // Recurse depth-first through inner loops.
Sanjoy Das15c4c462015-10-25 19:27:17 +0000273 for (Loop *SubLoop : L.getSubLoops())
274 Changed |= formLCSSARecursively(*SubLoop, DT, LI, SE);
Chandler Carruthd84f7762014-01-28 01:25:38 +0000275
Bruno Cardoso Lopesbad65c32014-12-22 22:35:46 +0000276 Changed |= formLCSSA(L, DT, LI, SE);
Chandler Carruthd84f7762014-01-28 01:25:38 +0000277 return Changed;
278}
279
Easwaran Ramane12c4872016-06-09 19:44:46 +0000280/// Process all loops in the function, inner-most out.
281static bool formLCSSAOnAllLoops(LoopInfo *LI, DominatorTree &DT,
282 ScalarEvolution *SE) {
283 bool Changed = false;
284 for (auto &L : *LI)
285 Changed |= formLCSSARecursively(*L, DT, LI, SE);
286 return Changed;
287}
288
Chandler Carruth8765cf72014-01-25 04:07:24 +0000289namespace {
Easwaran Ramane12c4872016-06-09 19:44:46 +0000290struct LCSSAWrapperPass : public FunctionPass {
Chandler Carruth8765cf72014-01-25 04:07:24 +0000291 static char ID; // Pass identification, replacement for typeid
Easwaran Ramane12c4872016-06-09 19:44:46 +0000292 LCSSAWrapperPass() : FunctionPass(ID) {
293 initializeLCSSAWrapperPassPass(*PassRegistry::getPassRegistry());
Chandler Carruth8765cf72014-01-25 04:07:24 +0000294 }
295
296 // Cached analysis information for the current function.
297 DominatorTree *DT;
298 LoopInfo *LI;
299 ScalarEvolution *SE;
300
Craig Topper3e4c6972014-03-05 09:10:37 +0000301 bool runOnFunction(Function &F) override;
Chandler Carruth8765cf72014-01-25 04:07:24 +0000302
303 /// This transformation requires natural loop information & requires that
304 /// loop preheaders be inserted into the CFG. It maintains both of these,
305 /// as well as the CFG. It also requires dominator information.
Craig Topper3e4c6972014-03-05 09:10:37 +0000306 void getAnalysisUsage(AnalysisUsage &AU) const override {
Chandler Carruth8765cf72014-01-25 04:07:24 +0000307 AU.setPreservesCFG();
308
309 AU.addRequired<DominatorTreeWrapperPass>();
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000310 AU.addRequired<LoopInfoWrapperPass>();
Chandler Carruth8765cf72014-01-25 04:07:24 +0000311 AU.addPreservedID(LoopSimplifyID);
Chandler Carruth7b560d42015-09-09 17:55:00 +0000312 AU.addPreserved<AAResultsWrapperPass>();
Chandler Carruthac072702016-02-19 03:12:14 +0000313 AU.addPreserved<BasicAAWrapperPass>();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000314 AU.addPreserved<GlobalsAAWrapperPass>();
Chandler Carruth2f1fd162015-08-17 02:08:17 +0000315 AU.addPreserved<ScalarEvolutionWrapperPass>();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000316 AU.addPreserved<SCEVAAWrapperPass>();
Chandler Carruth8765cf72014-01-25 04:07:24 +0000317 }
Chandler Carruth8765cf72014-01-25 04:07:24 +0000318};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000319}
Chandler Carruth8765cf72014-01-25 04:07:24 +0000320
Easwaran Ramane12c4872016-06-09 19:44:46 +0000321char LCSSAWrapperPass::ID = 0;
322INITIALIZE_PASS_BEGIN(LCSSAWrapperPass, "lcssa", "Loop-Closed SSA Form Pass",
323 false, false)
Chandler Carruth8765cf72014-01-25 04:07:24 +0000324INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000325INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
Easwaran Ramane12c4872016-06-09 19:44:46 +0000326INITIALIZE_PASS_END(LCSSAWrapperPass, "lcssa", "Loop-Closed SSA Form Pass",
327 false, false)
Chandler Carruth8765cf72014-01-25 04:07:24 +0000328
Easwaran Ramane12c4872016-06-09 19:44:46 +0000329Pass *llvm::createLCSSAPass() { return new LCSSAWrapperPass(); }
330char &llvm::LCSSAID = LCSSAWrapperPass::ID;
Chandler Carruth8765cf72014-01-25 04:07:24 +0000331
Easwaran Ramane12c4872016-06-09 19:44:46 +0000332/// Transform \p F into loop-closed SSA form.
333bool LCSSAWrapperPass::runOnFunction(Function &F) {
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000334 LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
Chandler Carruth8765cf72014-01-25 04:07:24 +0000335 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
Chandler Carruth2f1fd162015-08-17 02:08:17 +0000336 auto *SEWP = getAnalysisIfAvailable<ScalarEvolutionWrapperPass>();
337 SE = SEWP ? &SEWP->getSE() : nullptr;
Chandler Carruth8765cf72014-01-25 04:07:24 +0000338
Easwaran Ramane12c4872016-06-09 19:44:46 +0000339 return formLCSSAOnAllLoops(LI, *DT, SE);
Chandler Carruth8765cf72014-01-25 04:07:24 +0000340}
341
Easwaran Ramane12c4872016-06-09 19:44:46 +0000342PreservedAnalyses LCSSAPass::run(Function &F, AnalysisManager<Function> &AM) {
343 auto &LI = AM.getResult<LoopAnalysis>(F);
344 auto &DT = AM.getResult<DominatorTreeAnalysis>(F);
345 auto *SE = AM.getCachedResult<ScalarEvolutionAnalysis>(F);
346 if (!formLCSSAOnAllLoops(&LI, DT, SE))
347 return PreservedAnalyses::all();
348
Michael Kuperstein835facd2016-06-28 00:54:12 +0000349 // FIXME: This should also 'preserve the CFG'.
Easwaran Ramane12c4872016-06-09 19:44:46 +0000350 PreservedAnalyses PA;
351 PA.preserve<BasicAA>();
352 PA.preserve<GlobalsAA>();
353 PA.preserve<SCEVAA>();
354 PA.preserve<ScalarEvolutionAnalysis>();
355 return PA;
356}