blob: 68c6b74d5e5b7d76fa2897416240d75b2bed5f00 [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
Igor Laevskyc3ccf5d2016-10-28 12:57:20 +000054#ifdef EXPENSIVE_CHECKS
55static bool VerifyLoopLCSSA = true;
56#else
57static bool VerifyLoopLCSSA = false;
58#endif
59static cl::opt<bool,true>
60VerifyLoopLCSSAFlag("verify-loop-lcssa", cl::location(VerifyLoopLCSSA),
61 cl::desc("Verify loop lcssa form (time consuming)"));
62
Chandler Carruth8765cf72014-01-25 04:07:24 +000063/// Return true if the specified block is in the list.
Chris Lattner71d353d2009-10-11 02:53:37 +000064static bool isExitBlock(BasicBlock *BB,
Chandler Carruth8765cf72014-01-25 04:07:24 +000065 const SmallVectorImpl<BasicBlock *> &ExitBlocks) {
David Majnemer0d955d02016-08-11 22:21:41 +000066 return is_contained(ExitBlocks, BB);
Chris Lattner71d353d2009-10-11 02:53:37 +000067}
68
Michael Zolotukhina78937a2016-07-15 21:08:41 +000069/// For every instruction from the worklist, check to see if it has any uses
70/// that are outside the current loop. If so, insert LCSSA PHI nodes and
71/// rewrite the uses.
72bool llvm::formLCSSAForInstructions(SmallVectorImpl<Instruction *> &Worklist,
73 DominatorTree &DT, LoopInfo &LI) {
Chandler Carruth8765cf72014-01-25 04:07:24 +000074 SmallVector<Use *, 16> UsesToRewrite;
Michael Zolotukhin6bc56d52016-07-20 01:55:27 +000075 SmallSetVector<PHINode *, 16> PHIsToRemove;
Michael Zolotukhina78937a2016-07-15 21:08:41 +000076 PredIteratorCache PredCache;
77 bool Changed = false;
Chandler Carruth8765cf72014-01-25 04:07:24 +000078
Philip Reamesb1472ff2016-09-19 23:30:23 +000079 // Cache the Loop ExitBlocks across this loop. We expect to get a lot of
80 // instructions within the same loops, computing the exit blocks is
81 // expensive, and we're not mutating the loop structure.
82 SmallDenseMap<Loop*, SmallVector<BasicBlock *,1>> LoopExitBlocks;
83
Michael Zolotukhina78937a2016-07-15 21:08:41 +000084 while (!Worklist.empty()) {
85 UsesToRewrite.clear();
Andrew Kaylor123048d2015-12-18 18:12:35 +000086
Michael Zolotukhina78937a2016-07-15 21:08:41 +000087 Instruction *I = Worklist.pop_back_val();
88 BasicBlock *InstBB = I->getParent();
89 Loop *L = LI.getLoopFor(InstBB);
Philip Reamesb1472ff2016-09-19 23:30:23 +000090 if (!LoopExitBlocks.count(L))
91 L->getExitBlocks(LoopExitBlocks[L]);
92 assert(LoopExitBlocks.count(L));
93 const SmallVectorImpl<BasicBlock *> &ExitBlocks = LoopExitBlocks[L];
Chandler Carruth8765cf72014-01-25 04:07:24 +000094
Michael Zolotukhina78937a2016-07-15 21:08:41 +000095 if (ExitBlocks.empty())
Chandler Carruth8765cf72014-01-25 04:07:24 +000096 continue;
97
Michael Zolotukhina78937a2016-07-15 21:08:41 +000098 // Tokens cannot be used in PHI nodes, so we skip over them.
99 // We can run into tokens which are live out of a loop with catchswitch
100 // instructions in Windows EH if the catchswitch has one catchpad which
101 // is inside the loop and another which is not.
102 if (I->getType()->isTokenTy())
Chandler Carruth8765cf72014-01-25 04:07:24 +0000103 continue;
104
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000105 for (Use &U : I->uses()) {
106 Instruction *User = cast<Instruction>(U.getUser());
107 BasicBlock *UserBB = User->getParent();
108 if (PHINode *PN = dyn_cast<PHINode>(User))
109 UserBB = PN->getIncomingBlock(U);
Chris Lattner984d6e12006-10-31 18:56:48 +0000110
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000111 if (InstBB != UserBB && !L->contains(UserBB))
112 UsesToRewrite.push_back(&U);
Dan Gohmanc146c7802009-11-09 18:28:24 +0000113 }
Cameron Zwarich0b8cdfb2011-03-15 07:41:25 +0000114
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000115 // If there are no uses outside the loop, exit with no change.
116 if (UsesToRewrite.empty())
Chris Lattner5a2bc782006-08-02 00:06:09 +0000117 continue;
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000118
119 ++NumLCSSA; // We are applying the transformation
120
121 // Invoke instructions are special in that their result value is not
122 // available along their unwind edge. The code below tests to see whether
123 // DomBB dominates the value, so adjust DomBB to the normal destination
124 // block, which is effectively where the value is first usable.
125 BasicBlock *DomBB = InstBB;
126 if (InvokeInst *Inv = dyn_cast<InvokeInst>(I))
127 DomBB = Inv->getNormalDest();
128
129 DomTreeNode *DomNode = DT.getNode(DomBB);
130
131 SmallVector<PHINode *, 16> AddedPHIs;
132 SmallVector<PHINode *, 8> PostProcessPHIs;
133
Michael Zolotukhin6bc56d52016-07-20 01:55:27 +0000134 SmallVector<PHINode *, 4> InsertedPHIs;
135 SSAUpdater SSAUpdate(&InsertedPHIs);
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000136 SSAUpdate.Initialize(I->getType(), I->getName());
137
138 // Insert the LCSSA phi's into all of the exit blocks dominated by the
139 // value, and add them to the Phi's map.
140 for (BasicBlock *ExitBB : ExitBlocks) {
141 if (!DT.dominates(DomNode, DT.getNode(ExitBB)))
142 continue;
143
144 // If we already inserted something for this BB, don't reprocess it.
145 if (SSAUpdate.HasValueForBlock(ExitBB))
146 continue;
147
148 PHINode *PN = PHINode::Create(I->getType(), PredCache.size(ExitBB),
149 I->getName() + ".lcssa", &ExitBB->front());
150
151 // Add inputs from inside the loop for this PHI.
152 for (BasicBlock *Pred : PredCache.get(ExitBB)) {
153 PN->addIncoming(I, Pred);
154
155 // If the exit block has a predecessor not within the loop, arrange for
156 // the incoming value use corresponding to that predecessor to be
157 // rewritten in terms of a different LCSSA PHI.
158 if (!L->contains(Pred))
159 UsesToRewrite.push_back(
160 &PN->getOperandUse(PN->getOperandNumForIncomingValue(
161 PN->getNumIncomingValues() - 1)));
162 }
163
164 AddedPHIs.push_back(PN);
165
166 // Remember that this phi makes the value alive in this block.
167 SSAUpdate.AddAvailableValue(ExitBB, PN);
168
169 // LoopSimplify might fail to simplify some loops (e.g. when indirect
170 // branches are involved). In such situations, it might happen that an
171 // exit for Loop L1 is the header of a disjoint Loop L2. Thus, when we
172 // create PHIs in such an exit block, we are also inserting PHIs into L2's
173 // header. This could break LCSSA form for L2 because these inserted PHIs
174 // can also have uses outside of L2. Remember all PHIs in such situation
175 // as to revisit than later on. FIXME: Remove this if indirectbr support
176 // into LoopSimplify gets improved.
177 if (auto *OtherLoop = LI.getLoopFor(ExitBB))
178 if (!L->contains(OtherLoop))
179 PostProcessPHIs.push_back(PN);
Owen Andersoncd76fa02006-06-01 06:05:47 +0000180 }
Chandler Carruth8765cf72014-01-25 04:07:24 +0000181
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000182 // Rewrite all uses outside the loop in terms of the new PHIs we just
183 // inserted.
184 for (Use *UseToRewrite : UsesToRewrite) {
185 // If this use is in an exit block, rewrite to use the newly inserted PHI.
186 // This is required for correctness because SSAUpdate doesn't handle uses
187 // in the same block. It assumes the PHI we inserted is at the end of the
188 // block.
189 Instruction *User = cast<Instruction>(UseToRewrite->getUser());
190 BasicBlock *UserBB = User->getParent();
191 if (PHINode *PN = dyn_cast<PHINode>(User))
192 UserBB = PN->getIncomingBlock(*UseToRewrite);
193
194 if (isa<PHINode>(UserBB->begin()) && isExitBlock(UserBB, ExitBlocks)) {
195 // Tell the VHs that the uses changed. This updates SCEV's caches.
196 if (UseToRewrite->get()->hasValueHandle())
197 ValueHandleBase::ValueIsRAUWd(*UseToRewrite, &UserBB->front());
198 UseToRewrite->set(&UserBB->front());
199 continue;
200 }
201
202 // Otherwise, do full PHI insertion.
203 SSAUpdate.RewriteUse(*UseToRewrite);
Rong Xu63f970e2016-08-10 17:49:11 +0000204 }
Michael Zolotukhin6bc56d52016-07-20 01:55:27 +0000205
Rong Xu63f970e2016-08-10 17:49:11 +0000206 // SSAUpdater might have inserted phi-nodes inside other loops. We'll need
207 // to post-process them to keep LCSSA form.
208 for (PHINode *InsertedPN : InsertedPHIs) {
209 if (auto *OtherLoop = LI.getLoopFor(InsertedPN->getParent()))
210 if (!L->contains(OtherLoop))
211 PostProcessPHIs.push_back(InsertedPN);
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000212 }
213
214 // Post process PHI instructions that were inserted into another disjoint
215 // loop and update their exits properly.
216 for (auto *PostProcessPN : PostProcessPHIs) {
217 if (PostProcessPN->use_empty())
218 continue;
219
220 // Reprocess each PHI instruction.
221 Worklist.push_back(PostProcessPN);
222 }
223
Michael Zolotukhin6bc56d52016-07-20 01:55:27 +0000224 // Keep track of PHI nodes that we want to remove because they did not have
225 // any uses rewritten.
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000226 for (PHINode *PN : AddedPHIs)
227 if (PN->use_empty())
Michael Zolotukhin6bc56d52016-07-20 01:55:27 +0000228 PHIsToRemove.insert(PN);
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000229
230 Changed = true;
Chris Lattner5a2bc782006-08-02 00:06:09 +0000231 }
Michael Zolotukhin6bc56d52016-07-20 01:55:27 +0000232 // Remove PHI nodes that did not have any uses rewritten.
233 for (PHINode *PN : PHIsToRemove) {
234 assert (PN->use_empty() && "Trying to remove a phi with uses.");
235 PN->eraseFromParent();
236 }
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000237 return Changed;
Owen Andersondad8c572006-05-31 20:55:06 +0000238}
Chris Lattner5a2bc782006-08-02 00:06:09 +0000239
Chandler Carruth8765cf72014-01-25 04:07:24 +0000240/// Return true if the specified block dominates at least
241/// one of the blocks in the specified list.
242static bool
243blockDominatesAnExit(BasicBlock *BB,
244 DominatorTree &DT,
245 const SmallVectorImpl<BasicBlock *> &ExitBlocks) {
246 DomTreeNode *DomNode = DT.getNode(BB);
David Majnemer0a16c222016-08-11 21:15:00 +0000247 return any_of(ExitBlocks, [&](BasicBlock *EB) {
Davide Italianob75b16e22016-05-17 14:24:41 +0000248 return DT.dominates(DomNode, DT.getNode(EB));
249 });
Chandler Carruth8765cf72014-01-25 04:07:24 +0000250}
251
Bruno Cardoso Lopesbad65c32014-12-22 22:35:46 +0000252bool llvm::formLCSSA(Loop &L, DominatorTree &DT, LoopInfo *LI,
253 ScalarEvolution *SE) {
Chandler Carruth8765cf72014-01-25 04:07:24 +0000254 bool Changed = false;
255
256 // Get the set of exiting blocks.
257 SmallVector<BasicBlock *, 8> ExitBlocks;
258 L.getExitBlocks(ExitBlocks);
259
260 if (ExitBlocks.empty())
261 return false;
262
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000263 SmallVector<Instruction *, 8> Worklist;
Chandler Carruth8765cf72014-01-25 04:07:24 +0000264
265 // Look at all the instructions in the loop, checking to see if they have uses
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000266 // outside the loop. If so, put them into the worklist to rewrite those uses.
Sanjoy Das331521c2015-10-25 19:08:32 +0000267 for (BasicBlock *BB : L.blocks()) {
Chandler Carruth8765cf72014-01-25 04:07:24 +0000268 // For large loops, avoid use-scanning by using dominance information: In
269 // particular, if a block does not dominate any of the loop exits, then none
270 // of the values defined in the block could be used outside the loop.
271 if (!blockDominatesAnExit(BB, DT, ExitBlocks))
272 continue;
273
Sanjoy Das331521c2015-10-25 19:08:32 +0000274 for (Instruction &I : *BB) {
Chandler Carruth8765cf72014-01-25 04:07:24 +0000275 // Reject two common cases fast: instructions with no uses (like stores)
276 // and instructions with one use that is in the same block as this.
Sanjoy Das331521c2015-10-25 19:08:32 +0000277 if (I.use_empty() ||
278 (I.hasOneUse() && I.user_back()->getParent() == BB &&
279 !isa<PHINode>(I.user_back())))
Chandler Carruth8765cf72014-01-25 04:07:24 +0000280 continue;
281
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000282 Worklist.push_back(&I);
Chandler Carruth8765cf72014-01-25 04:07:24 +0000283 }
284 }
Michael Zolotukhina78937a2016-07-15 21:08:41 +0000285 Changed = formLCSSAForInstructions(Worklist, DT, *LI);
Chandler Carruth8765cf72014-01-25 04:07:24 +0000286
287 // If we modified the code, remove any caches about the loop from SCEV to
288 // avoid dangling entries.
289 // FIXME: This is a big hammer, can we clear the cache more selectively?
290 if (SE && Changed)
291 SE->forgetLoop(&L);
292
293 assert(L.isLCSSAForm(DT));
294
295 return Changed;
296}
297
Chandler Carruthd84f7762014-01-28 01:25:38 +0000298/// Process a loop nest depth first.
Bruno Cardoso Lopesbad65c32014-12-22 22:35:46 +0000299bool llvm::formLCSSARecursively(Loop &L, DominatorTree &DT, LoopInfo *LI,
Chandler Carruthd84f7762014-01-28 01:25:38 +0000300 ScalarEvolution *SE) {
301 bool Changed = false;
302
303 // Recurse depth-first through inner loops.
Sanjoy Das15c4c462015-10-25 19:27:17 +0000304 for (Loop *SubLoop : L.getSubLoops())
305 Changed |= formLCSSARecursively(*SubLoop, DT, LI, SE);
Chandler Carruthd84f7762014-01-28 01:25:38 +0000306
Bruno Cardoso Lopesbad65c32014-12-22 22:35:46 +0000307 Changed |= formLCSSA(L, DT, LI, SE);
Chandler Carruthd84f7762014-01-28 01:25:38 +0000308 return Changed;
309}
310
Easwaran Ramane12c4872016-06-09 19:44:46 +0000311/// Process all loops in the function, inner-most out.
312static bool formLCSSAOnAllLoops(LoopInfo *LI, DominatorTree &DT,
313 ScalarEvolution *SE) {
314 bool Changed = false;
315 for (auto &L : *LI)
316 Changed |= formLCSSARecursively(*L, DT, LI, SE);
317 return Changed;
318}
319
Chandler Carruth8765cf72014-01-25 04:07:24 +0000320namespace {
Easwaran Ramane12c4872016-06-09 19:44:46 +0000321struct LCSSAWrapperPass : public FunctionPass {
Chandler Carruth8765cf72014-01-25 04:07:24 +0000322 static char ID; // Pass identification, replacement for typeid
Easwaran Ramane12c4872016-06-09 19:44:46 +0000323 LCSSAWrapperPass() : FunctionPass(ID) {
324 initializeLCSSAWrapperPassPass(*PassRegistry::getPassRegistry());
Chandler Carruth8765cf72014-01-25 04:07:24 +0000325 }
326
327 // Cached analysis information for the current function.
328 DominatorTree *DT;
329 LoopInfo *LI;
330 ScalarEvolution *SE;
331
Craig Topper3e4c6972014-03-05 09:10:37 +0000332 bool runOnFunction(Function &F) override;
Michael Zolotukhinff5ce632016-07-27 23:35:53 +0000333 void verifyAnalysis() const override {
Igor Laevskyc3ccf5d2016-10-28 12:57:20 +0000334 // This check is very expensive. On the loop intensive compiles it may cause
335 // up to 10x slowdown. Currently it's disabled by default. LPPassManager
336 // always does limited form of the LCSSA verification. Similar reasoning
337 // was used for the LoopInfo verifier.
338 if (VerifyLoopLCSSA) {
339 assert(all_of(*LI,
340 [&](Loop *L) {
341 return L->isRecursivelyLCSSAForm(*DT, *LI);
342 }) &&
343 "LCSSA form is broken!");
344 }
Michael Zolotukhinff5ce632016-07-27 23:35:53 +0000345 };
Chandler Carruth8765cf72014-01-25 04:07:24 +0000346
347 /// This transformation requires natural loop information & requires that
348 /// loop preheaders be inserted into the CFG. It maintains both of these,
349 /// as well as the CFG. It also requires dominator information.
Craig Topper3e4c6972014-03-05 09:10:37 +0000350 void getAnalysisUsage(AnalysisUsage &AU) const override {
Chandler Carruth8765cf72014-01-25 04:07:24 +0000351 AU.setPreservesCFG();
352
353 AU.addRequired<DominatorTreeWrapperPass>();
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000354 AU.addRequired<LoopInfoWrapperPass>();
Chandler Carruth8765cf72014-01-25 04:07:24 +0000355 AU.addPreservedID(LoopSimplifyID);
Chandler Carruth7b560d42015-09-09 17:55:00 +0000356 AU.addPreserved<AAResultsWrapperPass>();
Chandler Carruthac072702016-02-19 03:12:14 +0000357 AU.addPreserved<BasicAAWrapperPass>();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000358 AU.addPreserved<GlobalsAAWrapperPass>();
Chandler Carruth2f1fd162015-08-17 02:08:17 +0000359 AU.addPreserved<ScalarEvolutionWrapperPass>();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000360 AU.addPreserved<SCEVAAWrapperPass>();
Igor Laevskyc3ccf5d2016-10-28 12:57:20 +0000361
362 // This is needed to perform LCSSA verification inside LPPassManager
363 AU.addRequired<LCSSAVerificationPass>();
364 AU.addPreserved<LCSSAVerificationPass>();
Chandler Carruth8765cf72014-01-25 04:07:24 +0000365 }
Chandler Carruth8765cf72014-01-25 04:07:24 +0000366};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000367}
Chandler Carruth8765cf72014-01-25 04:07:24 +0000368
Easwaran Ramane12c4872016-06-09 19:44:46 +0000369char LCSSAWrapperPass::ID = 0;
370INITIALIZE_PASS_BEGIN(LCSSAWrapperPass, "lcssa", "Loop-Closed SSA Form Pass",
371 false, false)
Chandler Carruth8765cf72014-01-25 04:07:24 +0000372INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000373INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
Igor Laevskyc3ccf5d2016-10-28 12:57:20 +0000374INITIALIZE_PASS_DEPENDENCY(LCSSAVerificationPass)
Easwaran Ramane12c4872016-06-09 19:44:46 +0000375INITIALIZE_PASS_END(LCSSAWrapperPass, "lcssa", "Loop-Closed SSA Form Pass",
376 false, false)
Chandler Carruth8765cf72014-01-25 04:07:24 +0000377
Easwaran Ramane12c4872016-06-09 19:44:46 +0000378Pass *llvm::createLCSSAPass() { return new LCSSAWrapperPass(); }
379char &llvm::LCSSAID = LCSSAWrapperPass::ID;
Chandler Carruth8765cf72014-01-25 04:07:24 +0000380
Easwaran Ramane12c4872016-06-09 19:44:46 +0000381/// Transform \p F into loop-closed SSA form.
382bool LCSSAWrapperPass::runOnFunction(Function &F) {
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000383 LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
Chandler Carruth8765cf72014-01-25 04:07:24 +0000384 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
Chandler Carruth2f1fd162015-08-17 02:08:17 +0000385 auto *SEWP = getAnalysisIfAvailable<ScalarEvolutionWrapperPass>();
386 SE = SEWP ? &SEWP->getSE() : nullptr;
Chandler Carruth8765cf72014-01-25 04:07:24 +0000387
Easwaran Ramane12c4872016-06-09 19:44:46 +0000388 return formLCSSAOnAllLoops(LI, *DT, SE);
Chandler Carruth8765cf72014-01-25 04:07:24 +0000389}
390
Sean Silva36e0d012016-08-09 00:28:15 +0000391PreservedAnalyses LCSSAPass::run(Function &F, FunctionAnalysisManager &AM) {
Easwaran Ramane12c4872016-06-09 19:44:46 +0000392 auto &LI = AM.getResult<LoopAnalysis>(F);
393 auto &DT = AM.getResult<DominatorTreeAnalysis>(F);
394 auto *SE = AM.getCachedResult<ScalarEvolutionAnalysis>(F);
395 if (!formLCSSAOnAllLoops(&LI, DT, SE))
396 return PreservedAnalyses::all();
397
Michael Kuperstein835facd2016-06-28 00:54:12 +0000398 // FIXME: This should also 'preserve the CFG'.
Easwaran Ramane12c4872016-06-09 19:44:46 +0000399 PreservedAnalyses PA;
400 PA.preserve<BasicAA>();
401 PA.preserve<GlobalsAA>();
402 PA.preserve<SCEVAA>();
403 PA.preserve<ScalarEvolutionAnalysis>();
404 return PA;
405}