blob: 73b2e4326c481743b2f27077101c556ad9cb126a [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//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Owen Anderson8eca8912006-05-26 13:58:26 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This pass transforms loops by placing phi nodes at the end of the loops for
10// all values that are live across the loop boundary. For example, it turns
11// the left into the right code:
Fangrui Songf78650a2018-07-30 19:41:25 +000012//
Owen Anderson8eca8912006-05-26 13:58:26 +000013// for (...) for (...)
Dan Gohmanb5650eb2007-05-11 21:10:54 +000014// if (c) if (c)
Owen Anderson8eca8912006-05-26 13:58:26 +000015// X1 = ... X1 = ...
16// else else
17// X2 = ... X2 = ...
18// X3 = phi(X1, X2) X3 = phi(X1, X2)
Dan Gohman2ad7e732008-06-03 00:57:21 +000019// ... = X3 + 4 X4 = phi(X3)
20// ... = X4 + 4
Owen Anderson8eca8912006-05-26 13:58:26 +000021//
22// This is still valid LLVM; the extra phi nodes are purely redundant, and will
Fangrui Songf78650a2018-07-30 19:41:25 +000023// be trivially eliminated by InstCombine. The major benefit of this
24// transformation is that it makes many other loop optimizations, such as
Owen Anderson8eca8912006-05-26 13:58:26 +000025// LoopUnswitching, simpler.
26//
27//===----------------------------------------------------------------------===//
28
Easwaran Ramane12c4872016-06-09 19:44:46 +000029#include "llvm/Transforms/Utils/LCSSA.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000030#include "llvm/ADT/STLExtras.h"
31#include "llvm/ADT/Statistic.h"
Chandler Carruth756c22c2014-02-10 19:39:35 +000032#include "llvm/Analysis/AliasAnalysis.h"
Chandler Carruthac072702016-02-19 03:12:14 +000033#include "llvm/Analysis/BasicAliasAnalysis.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"
David Blaikie31b98d22018-06-04 21:23:21 +000038#include "llvm/Transforms/Utils/Local.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"
David Stenbergc9163852018-10-16 08:06:48 +000043#include "llvm/IR/IntrinsicInst.h"
Chandler Carruthaa0ab632014-03-04 12:09:19 +000044#include "llvm/IR/PredIteratorCache.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000045#include "llvm/Pass.h"
David Blaikiea373d182018-03-28 17:44:36 +000046#include "llvm/Transforms/Utils.h"
Chandler Carruth8765cf72014-01-25 04:07:24 +000047#include "llvm/Transforms/Utils/LoopUtils.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000048#include "llvm/Transforms/Utils/SSAUpdater.h"
Owen Anderson8eca8912006-05-26 13:58:26 +000049using namespace llvm;
50
Chandler Carruth964daaa2014-04-22 02:55:47 +000051#define DEBUG_TYPE "lcssa"
52
Chris Lattner45f966d2006-12-19 22:17:40 +000053STATISTIC(NumLCSSA, "Number of live out of a loop variables");
54
Igor Laevskyc3ccf5d2016-10-28 12:57:20 +000055#ifdef EXPENSIVE_CHECKS
56static bool VerifyLoopLCSSA = true;
57#else
58static bool VerifyLoopLCSSA = false;
59#endif
Zachary Turner8065f0b2017-12-01 00:53:10 +000060static cl::opt<bool, true>
61 VerifyLoopLCSSAFlag("verify-loop-lcssa", cl::location(VerifyLoopLCSSA),
62 cl::Hidden,
63 cl::desc("Verify loop lcssa form (time consuming)"));
Igor Laevskyc3ccf5d2016-10-28 12:57:20 +000064
Chandler Carruth8765cf72014-01-25 04:07:24 +000065/// Return true if the specified block is in the list.
Chris Lattner71d353d2009-10-11 02:53:37 +000066static bool isExitBlock(BasicBlock *BB,
Chandler Carruth8765cf72014-01-25 04:07:24 +000067 const SmallVectorImpl<BasicBlock *> &ExitBlocks) {
David Majnemer0d955d02016-08-11 22:21:41 +000068 return is_contained(ExitBlocks, BB);
Chris Lattner71d353d2009-10-11 02:53:37 +000069}
70
Michael Zolotukhina78937a2016-07-15 21:08:41 +000071/// For every instruction from the worklist, check to see if it has any uses
72/// that are outside the current loop. If so, insert LCSSA PHI nodes and
73/// rewrite the uses.
74bool llvm::formLCSSAForInstructions(SmallVectorImpl<Instruction *> &Worklist,
75 DominatorTree &DT, LoopInfo &LI) {
Chandler Carruth8765cf72014-01-25 04:07:24 +000076 SmallVector<Use *, 16> UsesToRewrite;
Michael Zolotukhin6bc56d52016-07-20 01:55:27 +000077 SmallSetVector<PHINode *, 16> PHIsToRemove;
Michael Zolotukhina78937a2016-07-15 21:08:41 +000078 PredIteratorCache PredCache;
79 bool Changed = false;
Chandler Carruth8765cf72014-01-25 04:07:24 +000080
Philip Reamesb1472ff2016-09-19 23:30:23 +000081 // Cache the Loop ExitBlocks across this loop. We expect to get a lot of
82 // instructions within the same loops, computing the exit blocks is
83 // expensive, and we're not mutating the loop structure.
84 SmallDenseMap<Loop*, SmallVector<BasicBlock *,1>> LoopExitBlocks;
85
Michael Zolotukhina78937a2016-07-15 21:08:41 +000086 while (!Worklist.empty()) {
87 UsesToRewrite.clear();
Andrew Kaylor123048d2015-12-18 18:12:35 +000088
Michael Zolotukhina78937a2016-07-15 21:08:41 +000089 Instruction *I = Worklist.pop_back_val();
Davide Italianoce161a72017-04-17 14:32:05 +000090 assert(!I->getType()->isTokenTy() && "Tokens shouldn't be in the worklist");
Michael Zolotukhina78937a2016-07-15 21:08:41 +000091 BasicBlock *InstBB = I->getParent();
92 Loop *L = LI.getLoopFor(InstBB);
Davide Italiano0b302272017-04-13 20:05:37 +000093 assert(L && "Instruction belongs to a BB that's not part of a loop");
Davide Italiano549078d2017-04-13 20:02:27 +000094 if (!LoopExitBlocks.count(L))
Philip Reamesb1472ff2016-09-19 23:30:23 +000095 L->getExitBlocks(LoopExitBlocks[L]);
96 assert(LoopExitBlocks.count(L));
97 const SmallVectorImpl<BasicBlock *> &ExitBlocks = LoopExitBlocks[L];
Chandler Carruth8765cf72014-01-25 04:07:24 +000098
Michael Zolotukhina78937a2016-07-15 21:08:41 +000099 if (ExitBlocks.empty())
Chandler Carruth8765cf72014-01-25 04:07:24 +0000100 continue;
101
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000102 for (Use &U : I->uses()) {
103 Instruction *User = cast<Instruction>(U.getUser());
104 BasicBlock *UserBB = User->getParent();
Davide Italiano51299512017-04-13 20:01:30 +0000105 if (auto *PN = dyn_cast<PHINode>(User))
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000106 UserBB = PN->getIncomingBlock(U);
Chris Lattner984d6e12006-10-31 18:56:48 +0000107
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000108 if (InstBB != UserBB && !L->contains(UserBB))
109 UsesToRewrite.push_back(&U);
Dan Gohmanc146c7802009-11-09 18:28:24 +0000110 }
Cameron Zwarich0b8cdfb2011-03-15 07:41:25 +0000111
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000112 // If there are no uses outside the loop, exit with no change.
113 if (UsesToRewrite.empty())
Chris Lattner5a2bc782006-08-02 00:06:09 +0000114 continue;
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000115
116 ++NumLCSSA; // We are applying the transformation
117
118 // Invoke instructions are special in that their result value is not
119 // available along their unwind edge. The code below tests to see whether
120 // DomBB dominates the value, so adjust DomBB to the normal destination
121 // block, which is effectively where the value is first usable.
122 BasicBlock *DomBB = InstBB;
Davide Italiano51299512017-04-13 20:01:30 +0000123 if (auto *Inv = dyn_cast<InvokeInst>(I))
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000124 DomBB = Inv->getNormalDest();
125
126 DomTreeNode *DomNode = DT.getNode(DomBB);
127
128 SmallVector<PHINode *, 16> AddedPHIs;
129 SmallVector<PHINode *, 8> PostProcessPHIs;
130
Michael Zolotukhin6bc56d52016-07-20 01:55:27 +0000131 SmallVector<PHINode *, 4> InsertedPHIs;
132 SSAUpdater SSAUpdate(&InsertedPHIs);
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000133 SSAUpdate.Initialize(I->getType(), I->getName());
134
135 // Insert the LCSSA phi's into all of the exit blocks dominated by the
136 // value, and add them to the Phi's map.
137 for (BasicBlock *ExitBB : ExitBlocks) {
138 if (!DT.dominates(DomNode, DT.getNode(ExitBB)))
139 continue;
140
141 // If we already inserted something for this BB, don't reprocess it.
142 if (SSAUpdate.HasValueForBlock(ExitBB))
143 continue;
144
145 PHINode *PN = PHINode::Create(I->getType(), PredCache.size(ExitBB),
146 I->getName() + ".lcssa", &ExitBB->front());
Anastasis Grammenosac3f8022018-07-31 14:54:52 +0000147 // Get the debug location from the original instruction.
148 PN->setDebugLoc(I->getDebugLoc());
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000149 // Add inputs from inside the loop for this PHI.
150 for (BasicBlock *Pred : PredCache.get(ExitBB)) {
151 PN->addIncoming(I, Pred);
152
153 // If the exit block has a predecessor not within the loop, arrange for
154 // the incoming value use corresponding to that predecessor to be
155 // rewritten in terms of a different LCSSA PHI.
156 if (!L->contains(Pred))
157 UsesToRewrite.push_back(
158 &PN->getOperandUse(PN->getOperandNumForIncomingValue(
159 PN->getNumIncomingValues() - 1)));
160 }
161
162 AddedPHIs.push_back(PN);
163
164 // Remember that this phi makes the value alive in this block.
165 SSAUpdate.AddAvailableValue(ExitBB, PN);
166
167 // LoopSimplify might fail to simplify some loops (e.g. when indirect
168 // branches are involved). In such situations, it might happen that an
169 // exit for Loop L1 is the header of a disjoint Loop L2. Thus, when we
170 // create PHIs in such an exit block, we are also inserting PHIs into L2's
171 // header. This could break LCSSA form for L2 because these inserted PHIs
172 // can also have uses outside of L2. Remember all PHIs in such situation
173 // as to revisit than later on. FIXME: Remove this if indirectbr support
174 // into LoopSimplify gets improved.
175 if (auto *OtherLoop = LI.getLoopFor(ExitBB))
176 if (!L->contains(OtherLoop))
177 PostProcessPHIs.push_back(PN);
Owen Andersoncd76fa02006-06-01 06:05:47 +0000178 }
Chandler Carruth8765cf72014-01-25 04:07:24 +0000179
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000180 // Rewrite all uses outside the loop in terms of the new PHIs we just
181 // inserted.
182 for (Use *UseToRewrite : UsesToRewrite) {
183 // If this use is in an exit block, rewrite to use the newly inserted PHI.
184 // This is required for correctness because SSAUpdate doesn't handle uses
185 // in the same block. It assumes the PHI we inserted is at the end of the
186 // block.
187 Instruction *User = cast<Instruction>(UseToRewrite->getUser());
188 BasicBlock *UserBB = User->getParent();
Davide Italiano51299512017-04-13 20:01:30 +0000189 if (auto *PN = dyn_cast<PHINode>(User))
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000190 UserBB = PN->getIncomingBlock(*UseToRewrite);
191
192 if (isa<PHINode>(UserBB->begin()) && isExitBlock(UserBB, ExitBlocks)) {
193 // Tell the VHs that the uses changed. This updates SCEV's caches.
194 if (UseToRewrite->get()->hasValueHandle())
195 ValueHandleBase::ValueIsRAUWd(*UseToRewrite, &UserBB->front());
196 UseToRewrite->set(&UserBB->front());
197 continue;
198 }
199
Florian Hahndd2ef0a2019-02-02 15:26:05 +0000200 // If we added a single PHI, it must dominate all uses and we can directly
201 // rename it.
202 if (AddedPHIs.size() == 1) {
203 // Tell the VHs that the uses changed. This updates SCEV's caches.
204 // We might call ValueIsRAUWd multiple times for the same value.
205 if (UseToRewrite->get()->hasValueHandle())
206 ValueHandleBase::ValueIsRAUWd(*UseToRewrite, AddedPHIs[0]);
207 UseToRewrite->set(AddedPHIs[0]);
208 continue;
209 }
210
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000211 // Otherwise, do full PHI insertion.
212 SSAUpdate.RewriteUse(*UseToRewrite);
Rong Xu63f970e2016-08-10 17:49:11 +0000213 }
Michael Zolotukhin6bc56d52016-07-20 01:55:27 +0000214
David Stenbergc9163852018-10-16 08:06:48 +0000215 SmallVector<DbgValueInst *, 4> DbgValues;
216 llvm::findDbgValues(DbgValues, I);
217
218 // Update pre-existing debug value uses that reside outside the loop.
219 auto &Ctx = I->getContext();
220 for (auto DVI : DbgValues) {
221 BasicBlock *UserBB = DVI->getParent();
222 if (InstBB == UserBB || L->contains(UserBB))
223 continue;
Florian Hahndd2ef0a2019-02-02 15:26:05 +0000224 // We currently only handle debug values residing in blocks that were
225 // traversed while rewriting the uses. If we inserted just a single PHI,
226 // we will handle all relevant debug values.
227 Value *V = AddedPHIs.size() == 1 ? AddedPHIs[0]
228 : SSAUpdate.FindValueForBlock(UserBB);
229 if (V)
David Stenbergc9163852018-10-16 08:06:48 +0000230 DVI->setOperand(0, MetadataAsValue::get(Ctx, ValueAsMetadata::get(V)));
231 }
232
Rong Xu63f970e2016-08-10 17:49:11 +0000233 // SSAUpdater might have inserted phi-nodes inside other loops. We'll need
234 // to post-process them to keep LCSSA form.
235 for (PHINode *InsertedPN : InsertedPHIs) {
236 if (auto *OtherLoop = LI.getLoopFor(InsertedPN->getParent()))
237 if (!L->contains(OtherLoop))
238 PostProcessPHIs.push_back(InsertedPN);
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000239 }
240
241 // Post process PHI instructions that were inserted into another disjoint
242 // loop and update their exits properly.
Davide Italianoee654bf2017-04-17 00:02:45 +0000243 for (auto *PostProcessPN : PostProcessPHIs)
244 if (!PostProcessPN->use_empty())
245 Worklist.push_back(PostProcessPN);
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000246
Michael Zolotukhin6bc56d52016-07-20 01:55:27 +0000247 // Keep track of PHI nodes that we want to remove because they did not have
Matt Davis523c6562018-02-23 17:38:27 +0000248 // any uses rewritten. If the new PHI is used, store it so that we can
249 // try to propagate dbg.value intrinsics to it.
250 SmallVector<PHINode *, 2> NeedDbgValues;
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000251 for (PHINode *PN : AddedPHIs)
252 if (PN->use_empty())
Michael Zolotukhin6bc56d52016-07-20 01:55:27 +0000253 PHIsToRemove.insert(PN);
Matt Davis523c6562018-02-23 17:38:27 +0000254 else
255 NeedDbgValues.push_back(PN);
256 insertDebugValuesForPHIs(InstBB, NeedDbgValues);
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000257 Changed = true;
Chris Lattner5a2bc782006-08-02 00:06:09 +0000258 }
Bjorn Pettersson51cebc92018-05-08 06:59:47 +0000259 // Remove PHI nodes that did not have any uses rewritten. We need to redo the
260 // use_empty() check here, because even if the PHI node wasn't used when added
261 // to PHIsToRemove, later added PHI nodes can be using it. This cleanup is
262 // not guaranteed to handle trees/cycles of PHI nodes that only are used by
263 // each other. Such situations has only been noticed when the input IR
264 // contains unreachable code, and leaving some extra redundant PHI nodes in
265 // such situations is considered a minor problem.
266 for (PHINode *PN : PHIsToRemove)
267 if (PN->use_empty())
268 PN->eraseFromParent();
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000269 return Changed;
Owen Andersondad8c572006-05-31 20:55:06 +0000270}
Chris Lattner5a2bc782006-08-02 00:06:09 +0000271
Davide Italianoaf36d022017-04-13 20:36:59 +0000272// Compute the set of BasicBlocks in the loop `L` dominating at least one exit.
273static void computeBlocksDominatingExits(
274 Loop &L, DominatorTree &DT, SmallVector<BasicBlock *, 8> &ExitBlocks,
Davide Italianodd37c672017-04-16 21:07:04 +0000275 SmallSetVector<BasicBlock *, 8> &BlocksDominatingExits) {
Davide Italianoaf36d022017-04-13 20:36:59 +0000276 SmallVector<BasicBlock *, 8> BBWorklist;
277
278 // We start from the exit blocks, as every block trivially dominates itself
279 // (not strictly).
280 for (BasicBlock *BB : ExitBlocks)
281 BBWorklist.push_back(BB);
282
283 while (!BBWorklist.empty()) {
284 BasicBlock *BB = BBWorklist.pop_back_val();
285
286 // Check if this is a loop header. If this is the case, we're done.
287 if (L.getHeader() == BB)
288 continue;
289
290 // Otherwise, add its immediate predecessor in the dominator tree to the
291 // worklist, unless we visited it already.
292 BasicBlock *IDomBB = DT.getNode(BB)->getIDom()->getBlock();
293
294 // Exit blocks can have an immediate dominator not beloinging to the
295 // loop. For an exit block to be immediately dominated by another block
296 // outside the loop, it implies not all paths from that dominator, to the
297 // exit block, go through the loop.
298 // Example:
299 //
300 // |---- A
301 // | |
302 // | B<--
303 // | | |
304 // |---> C --
305 // |
306 // D
307 //
308 // C is the exit block of the loop and it's immediately dominated by A,
309 // which doesn't belong to the loop.
310 if (!L.contains(IDomBB))
311 continue;
312
Davide Italianodd37c672017-04-16 21:07:04 +0000313 if (BlocksDominatingExits.insert(IDomBB))
Davide Italianoaf36d022017-04-13 20:36:59 +0000314 BBWorklist.push_back(IDomBB);
315 }
Chandler Carruth8765cf72014-01-25 04:07:24 +0000316}
317
Bruno Cardoso Lopesbad65c32014-12-22 22:35:46 +0000318bool llvm::formLCSSA(Loop &L, DominatorTree &DT, LoopInfo *LI,
319 ScalarEvolution *SE) {
Chandler Carruth8765cf72014-01-25 04:07:24 +0000320 bool Changed = false;
321
Florian Hahn509b48a2019-02-02 14:42:27 +0000322#ifdef EXPENSIVE_CHECKS
323 // Verify all sub-loops are in LCSSA form already.
324 for (Loop *SubLoop: L)
325 assert(SubLoop->isRecursivelyLCSSAForm(DT, *LI) && "Subloop not in LCSSA!");
326#endif
327
Chandler Carruth8765cf72014-01-25 04:07:24 +0000328 SmallVector<BasicBlock *, 8> ExitBlocks;
329 L.getExitBlocks(ExitBlocks);
Chandler Carruth8765cf72014-01-25 04:07:24 +0000330 if (ExitBlocks.empty())
331 return false;
332
Davide Italianodd37c672017-04-16 21:07:04 +0000333 SmallSetVector<BasicBlock *, 8> BlocksDominatingExits;
Davide Italianoaf36d022017-04-13 20:36:59 +0000334
335 // We want to avoid use-scanning leveraging dominance informations.
336 // If a block doesn't dominate any of the loop exits, the none of the values
337 // defined in the loop can be used outside.
338 // We compute the set of blocks fullfilling the conditions in advance
339 // walking the dominator tree upwards until we hit a loop header.
340 computeBlocksDominatingExits(L, DT, ExitBlocks, BlocksDominatingExits);
341
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000342 SmallVector<Instruction *, 8> Worklist;
Chandler Carruth8765cf72014-01-25 04:07:24 +0000343
344 // Look at all the instructions in the loop, checking to see if they have uses
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000345 // outside the loop. If so, put them into the worklist to rewrite those uses.
Davide Italianoaf36d022017-04-13 20:36:59 +0000346 for (BasicBlock *BB : BlocksDominatingExits) {
Florian Hahnbe7cbe32019-01-18 17:36:22 +0000347 // Skip blocks that are part of any sub-loops, they must be in LCSSA
348 // already.
349 if (LI->getLoopFor(BB) != &L)
350 continue;
Sanjoy Das331521c2015-10-25 19:08:32 +0000351 for (Instruction &I : *BB) {
Chandler Carruth8765cf72014-01-25 04:07:24 +0000352 // Reject two common cases fast: instructions with no uses (like stores)
353 // and instructions with one use that is in the same block as this.
Sanjoy Das331521c2015-10-25 19:08:32 +0000354 if (I.use_empty() ||
355 (I.hasOneUse() && I.user_back()->getParent() == BB &&
356 !isa<PHINode>(I.user_back())))
Chandler Carruth8765cf72014-01-25 04:07:24 +0000357 continue;
358
Davide Italianoce161a72017-04-17 14:32:05 +0000359 // Tokens cannot be used in PHI nodes, so we skip over them.
360 // We can run into tokens which are live out of a loop with catchswitch
361 // instructions in Windows EH if the catchswitch has one catchpad which
362 // is inside the loop and another which is not.
363 if (I.getType()->isTokenTy())
364 continue;
365
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000366 Worklist.push_back(&I);
Chandler Carruth8765cf72014-01-25 04:07:24 +0000367 }
368 }
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000369 Changed = formLCSSAForInstructions(Worklist, DT, *LI);
Chandler Carruth8765cf72014-01-25 04:07:24 +0000370
371 // If we modified the code, remove any caches about the loop from SCEV to
372 // avoid dangling entries.
373 // FIXME: This is a big hammer, can we clear the cache more selectively?
374 if (SE && Changed)
375 SE->forgetLoop(&L);
376
377 assert(L.isLCSSAForm(DT));
378
379 return Changed;
380}
381
Chandler Carruthd84f7762014-01-28 01:25:38 +0000382/// Process a loop nest depth first.
Bruno Cardoso Lopesbad65c32014-12-22 22:35:46 +0000383bool llvm::formLCSSARecursively(Loop &L, DominatorTree &DT, LoopInfo *LI,
Chandler Carruthd84f7762014-01-28 01:25:38 +0000384 ScalarEvolution *SE) {
385 bool Changed = false;
386
387 // Recurse depth-first through inner loops.
Sanjoy Das15c4c462015-10-25 19:27:17 +0000388 for (Loop *SubLoop : L.getSubLoops())
389 Changed |= formLCSSARecursively(*SubLoop, DT, LI, SE);
Chandler Carruthd84f7762014-01-28 01:25:38 +0000390
Bruno Cardoso Lopesbad65c32014-12-22 22:35:46 +0000391 Changed |= formLCSSA(L, DT, LI, SE);
Chandler Carruthd84f7762014-01-28 01:25:38 +0000392 return Changed;
393}
394
Easwaran Ramane12c4872016-06-09 19:44:46 +0000395/// Process all loops in the function, inner-most out.
396static bool formLCSSAOnAllLoops(LoopInfo *LI, DominatorTree &DT,
397 ScalarEvolution *SE) {
398 bool Changed = false;
399 for (auto &L : *LI)
400 Changed |= formLCSSARecursively(*L, DT, LI, SE);
401 return Changed;
402}
403
Chandler Carruth8765cf72014-01-25 04:07:24 +0000404namespace {
Easwaran Ramane12c4872016-06-09 19:44:46 +0000405struct LCSSAWrapperPass : public FunctionPass {
Chandler Carruth8765cf72014-01-25 04:07:24 +0000406 static char ID; // Pass identification, replacement for typeid
Easwaran Ramane12c4872016-06-09 19:44:46 +0000407 LCSSAWrapperPass() : FunctionPass(ID) {
408 initializeLCSSAWrapperPassPass(*PassRegistry::getPassRegistry());
Chandler Carruth8765cf72014-01-25 04:07:24 +0000409 }
410
411 // Cached analysis information for the current function.
412 DominatorTree *DT;
413 LoopInfo *LI;
414 ScalarEvolution *SE;
415
Craig Topper3e4c6972014-03-05 09:10:37 +0000416 bool runOnFunction(Function &F) override;
Michael Zolotukhinff5ce632016-07-27 23:35:53 +0000417 void verifyAnalysis() const override {
Igor Laevskyc3ccf5d2016-10-28 12:57:20 +0000418 // This check is very expensive. On the loop intensive compiles it may cause
419 // up to 10x slowdown. Currently it's disabled by default. LPPassManager
420 // always does limited form of the LCSSA verification. Similar reasoning
421 // was used for the LoopInfo verifier.
422 if (VerifyLoopLCSSA) {
423 assert(all_of(*LI,
424 [&](Loop *L) {
425 return L->isRecursivelyLCSSAForm(*DT, *LI);
426 }) &&
427 "LCSSA form is broken!");
428 }
Michael Zolotukhinff5ce632016-07-27 23:35:53 +0000429 };
Chandler Carruth8765cf72014-01-25 04:07:24 +0000430
431 /// This transformation requires natural loop information & requires that
432 /// loop preheaders be inserted into the CFG. It maintains both of these,
433 /// as well as the CFG. It also requires dominator information.
Craig Topper3e4c6972014-03-05 09:10:37 +0000434 void getAnalysisUsage(AnalysisUsage &AU) const override {
Chandler Carruth8765cf72014-01-25 04:07:24 +0000435 AU.setPreservesCFG();
436
437 AU.addRequired<DominatorTreeWrapperPass>();
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000438 AU.addRequired<LoopInfoWrapperPass>();
Chandler Carruth8765cf72014-01-25 04:07:24 +0000439 AU.addPreservedID(LoopSimplifyID);
Chandler Carruth7b560d42015-09-09 17:55:00 +0000440 AU.addPreserved<AAResultsWrapperPass>();
Chandler Carruthac072702016-02-19 03:12:14 +0000441 AU.addPreserved<BasicAAWrapperPass>();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000442 AU.addPreserved<GlobalsAAWrapperPass>();
Chandler Carruth2f1fd162015-08-17 02:08:17 +0000443 AU.addPreserved<ScalarEvolutionWrapperPass>();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000444 AU.addPreserved<SCEVAAWrapperPass>();
Igor Laevskyc3ccf5d2016-10-28 12:57:20 +0000445
446 // This is needed to perform LCSSA verification inside LPPassManager
447 AU.addRequired<LCSSAVerificationPass>();
448 AU.addPreserved<LCSSAVerificationPass>();
Chandler Carruth8765cf72014-01-25 04:07:24 +0000449 }
Chandler Carruth8765cf72014-01-25 04:07:24 +0000450};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000451}
Chandler Carruth8765cf72014-01-25 04:07:24 +0000452
Easwaran Ramane12c4872016-06-09 19:44:46 +0000453char LCSSAWrapperPass::ID = 0;
454INITIALIZE_PASS_BEGIN(LCSSAWrapperPass, "lcssa", "Loop-Closed SSA Form Pass",
455 false, false)
Chandler Carruth8765cf72014-01-25 04:07:24 +0000456INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000457INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
Igor Laevskyc3ccf5d2016-10-28 12:57:20 +0000458INITIALIZE_PASS_DEPENDENCY(LCSSAVerificationPass)
Easwaran Ramane12c4872016-06-09 19:44:46 +0000459INITIALIZE_PASS_END(LCSSAWrapperPass, "lcssa", "Loop-Closed SSA Form Pass",
460 false, false)
Chandler Carruth8765cf72014-01-25 04:07:24 +0000461
Easwaran Ramane12c4872016-06-09 19:44:46 +0000462Pass *llvm::createLCSSAPass() { return new LCSSAWrapperPass(); }
463char &llvm::LCSSAID = LCSSAWrapperPass::ID;
Chandler Carruth8765cf72014-01-25 04:07:24 +0000464
Easwaran Ramane12c4872016-06-09 19:44:46 +0000465/// Transform \p F into loop-closed SSA form.
466bool LCSSAWrapperPass::runOnFunction(Function &F) {
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000467 LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
Chandler Carruth8765cf72014-01-25 04:07:24 +0000468 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
Chandler Carruth2f1fd162015-08-17 02:08:17 +0000469 auto *SEWP = getAnalysisIfAvailable<ScalarEvolutionWrapperPass>();
470 SE = SEWP ? &SEWP->getSE() : nullptr;
Chandler Carruth8765cf72014-01-25 04:07:24 +0000471
Easwaran Ramane12c4872016-06-09 19:44:46 +0000472 return formLCSSAOnAllLoops(LI, *DT, SE);
Chandler Carruth8765cf72014-01-25 04:07:24 +0000473}
474
Sean Silva36e0d012016-08-09 00:28:15 +0000475PreservedAnalyses LCSSAPass::run(Function &F, FunctionAnalysisManager &AM) {
Easwaran Ramane12c4872016-06-09 19:44:46 +0000476 auto &LI = AM.getResult<LoopAnalysis>(F);
477 auto &DT = AM.getResult<DominatorTreeAnalysis>(F);
478 auto *SE = AM.getCachedResult<ScalarEvolutionAnalysis>(F);
479 if (!formLCSSAOnAllLoops(&LI, DT, SE))
480 return PreservedAnalyses::all();
481
Easwaran Ramane12c4872016-06-09 19:44:46 +0000482 PreservedAnalyses PA;
Chandler Carruthca68a3e2017-01-15 06:32:49 +0000483 PA.preserveSet<CFGAnalyses>();
Easwaran Ramane12c4872016-06-09 19:44:46 +0000484 PA.preserve<BasicAA>();
485 PA.preserve<GlobalsAA>();
486 PA.preserve<SCEVAA>();
487 PA.preserve<ScalarEvolutionAnalysis>();
488 return PA;
489}