blob: 954e8038dfb7b77fb7b522a05aacbe141ed38d0a [file] [log] [blame]
Chris Lattner55d47882003-10-12 21:44:18 +00001//===- LoopSimplify.cpp - Loop Canonicalization Pass ----------------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +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
Misha Brukmanb1c93172005-04-21 23:48:37 +00006//
John Criswell482202a2003-10-20 19:43:21 +00007//===----------------------------------------------------------------------===//
Chris Lattner61992f62002-09-26 16:17:31 +00008//
Chris Lattner154e4d52003-10-12 21:43:28 +00009// This pass performs several transformations to transform natural loops into a
10// simpler form, which makes subsequent analyses and transformations simpler and
11// more effective.
Chris Lattner650096a2003-02-27 20:27:08 +000012//
13// Loop pre-header insertion guarantees that there is a single, non-critical
14// entry edge from outside of the loop to the loop header. This simplifies a
15// number of analyses and transformations, such as LICM.
16//
17// Loop exit-block insertion guarantees that all exit blocks from the loop
18// (blocks which are outside of the loop that have predecessors inside of the
Chris Lattner7710f2f2003-12-10 17:20:35 +000019// loop) only have predecessors from inside of the loop (and are thus dominated
20// by the loop header). This simplifies transformations such as store-sinking
21// that are built into LICM.
Chris Lattner650096a2003-02-27 20:27:08 +000022//
Chris Lattnerc4622a62003-10-13 00:37:13 +000023// This pass also guarantees that loops will have exactly one backedge.
24//
Dan Gohman1ef784d2009-11-05 21:14:46 +000025// Indirectbr instructions introduce several complications. If the loop
26// contains or is entered by an indirectbr instruction, it may not be possible
27// to transform the loop and make these guarantees. Client code should check
28// that these conditions are true before relying on them.
29//
Craig Topper784929d2019-02-08 20:48:56 +000030// Similar complications arise from callbr instructions, particularly in
31// asm-goto where blockaddress expressions are used.
32//
Chris Lattner650096a2003-02-27 20:27:08 +000033// Note that the simplifycfg pass will clean up blocks which are split out but
Chris Lattner154e4d52003-10-12 21:43:28 +000034// end up being unnecessary, so usage of this pass should not pessimize
35// generated code.
36//
37// This pass obviously modifies the CFG, but updates loop information and
38// dominator information.
Chris Lattner61992f62002-09-26 16:17:31 +000039//
40//===----------------------------------------------------------------------===//
41
Davide Italianocd96cfd2016-07-09 03:03:01 +000042#include "llvm/Transforms/Utils/LoopSimplify.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000043#include "llvm/ADT/DepthFirstIterator.h"
44#include "llvm/ADT/SetOperations.h"
45#include "llvm/ADT/SetVector.h"
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +000046#include "llvm/ADT/SmallVector.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000047#include "llvm/ADT/Statistic.h"
Chris Lattner514e8432005-03-25 06:37:22 +000048#include "llvm/Analysis/AliasAnalysis.h"
Daniel Jasperaec2fa32016-12-19 08:22:17 +000049#include "llvm/Analysis/AssumptionCache.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000050#include "llvm/Analysis/BasicAliasAnalysis.h"
Benjamin Kramer77360852012-10-26 17:40:50 +000051#include "llvm/Analysis/DependenceAnalysis.h"
Chandler Carruth7b560d42015-09-09 17:55:00 +000052#include "llvm/Analysis/GlobalsModRef.h"
Duncan Sands63704952010-11-16 17:41:24 +000053#include "llvm/Analysis/InstructionSimplify.h"
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +000054#include "llvm/Analysis/LoopInfo.h"
Duncan Sands63704952010-11-16 17:41:24 +000055#include "llvm/Analysis/ScalarEvolution.h"
Chandler Carruth7b560d42015-09-09 17:55:00 +000056#include "llvm/Analysis/ScalarEvolutionAliasAnalysis.h"
David Blaikie31b98d22018-06-04 21:23:21 +000057#include "llvm/Transforms/Utils/Local.h"
Chandler Carruth1305dc32014-03-04 11:45:46 +000058#include "llvm/IR/CFG.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000059#include "llvm/IR/Constants.h"
Hal Finkela995f922014-07-10 14:41:31 +000060#include "llvm/IR/DataLayout.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000061#include "llvm/IR/Dominators.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000062#include "llvm/IR/Function.h"
63#include "llvm/IR/Instructions.h"
64#include "llvm/IR/IntrinsicInst.h"
65#include "llvm/IR/LLVMContext.h"
Mehdi Amini46a43552015-03-04 18:43:29 +000066#include "llvm/IR/Module.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000067#include "llvm/IR/Type.h"
Dan Gohman39917c72010-03-01 17:55:27 +000068#include "llvm/Support/Debug.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000069#include "llvm/Support/raw_ostream.h"
David Blaikiea373d182018-03-28 17:44:36 +000070#include "llvm/Transforms/Utils.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000071#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Hal Finkela969df82013-05-20 20:46:30 +000072#include "llvm/Transforms/Utils/LoopUtils.h"
Chris Lattner7710f2f2003-12-10 17:20:35 +000073using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000074
Chandler Carruth964daaa2014-04-22 02:55:47 +000075#define DEBUG_TYPE "loop-simplify"
76
Chris Lattner45f966d2006-12-19 22:17:40 +000077STATISTIC(NumNested , "Number of nested loops split out");
Chris Lattner61992f62002-09-26 16:17:31 +000078
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +000079// If the block isn't already, move the new block to right after some 'outside
80// block' block. This prevents the preheader from being placed inside the loop
81// body, e.g. when the loop hasn't been rotated.
82static void placeSplitBlockCarefully(BasicBlock *NewBB,
83 SmallVectorImpl<BasicBlock *> &SplitPreds,
84 Loop *L) {
85 // Check to see if NewBB is already well placed.
Duncan P. N. Exon Smith5b4c8372015-10-13 02:39:05 +000086 Function::iterator BBI = --NewBB->getIterator();
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +000087 for (unsigned i = 0, e = SplitPreds.size(); i != e; ++i) {
88 if (&*BBI == SplitPreds[i])
89 return;
90 }
Devang Patel09f162c2007-05-01 21:15:47 +000091
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +000092 // If it isn't already after an outside block, move it after one. This is
93 // always good as it makes the uncond branch from the outside block into a
94 // fall-through.
Misha Brukmanb1c93172005-04-21 23:48:37 +000095
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +000096 // Figure out *which* outside block to put this after. Prefer an outside
97 // block that neighbors a BB actually in the loop.
Craig Topperf40110f2014-04-25 05:29:35 +000098 BasicBlock *FoundBB = nullptr;
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +000099 for (unsigned i = 0, e = SplitPreds.size(); i != e; ++i) {
Duncan P. N. Exon Smith5b4c8372015-10-13 02:39:05 +0000100 Function::iterator BBI = SplitPreds[i]->getIterator();
101 if (++BBI != NewBB->getParent()->end() && L->contains(&*BBI)) {
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000102 FoundBB = SplitPreds[i];
103 break;
Dan Gohman9a7320c2009-09-28 14:37:51 +0000104 }
105 }
Chris Lattnerd0788122004-03-14 03:59:22 +0000106
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000107 // If our heuristic for a *good* bb to place this after doesn't find
108 // anything, just pick something. It's likely better than leaving it within
109 // the loop.
110 if (!FoundBB)
111 FoundBB = SplitPreds[0];
112 NewBB->moveAfter(FoundBB);
Chris Lattner61992f62002-09-26 16:17:31 +0000113}
114
Chris Lattner61992f62002-09-26 16:17:31 +0000115/// InsertPreheaderForLoop - Once we discover that a loop doesn't have a
116/// preheader, this method is called to insert one. This method has two phases:
117/// preheader insertion and analysis updating.
118///
Justin Bogner843fb202015-12-15 19:40:57 +0000119BasicBlock *llvm::InsertPreheaderForLoop(Loop *L, DominatorTree *DT,
120 LoopInfo *LI, bool PreserveLCSSA) {
Chris Lattner61992f62002-09-26 16:17:31 +0000121 BasicBlock *Header = L->getHeader();
122
123 // Compute the set of predecessors of the loop that are not in the loop.
Chris Lattnera5b11702008-04-21 01:28:02 +0000124 SmallVector<BasicBlock*, 8> OutsideBlocks;
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000125 for (pred_iterator PI = pred_begin(Header), PE = pred_end(Header);
126 PI != PE; ++PI) {
127 BasicBlock *P = *PI;
Gabor Greiff0821f32010-07-09 14:02:13 +0000128 if (!L->contains(P)) { // Coming in from outside the loop?
Craig Topper784929d2019-02-08 20:48:56 +0000129 // If the loop is branched to from an indirect terminator, we won't
Dan Gohman1ef784d2009-11-05 21:14:46 +0000130 // be able to fully transform the loop, because it prohibits
131 // edge splitting.
Craig Topper784929d2019-02-08 20:48:56 +0000132 if (P->getTerminator()->isIndirectTerminator())
133 return nullptr;
Dan Gohman1ef784d2009-11-05 21:14:46 +0000134
135 // Keep track of it.
Gabor Greiff0821f32010-07-09 14:02:13 +0000136 OutsideBlocks.push_back(P);
Dan Gohman1ef784d2009-11-05 21:14:46 +0000137 }
Gabor Greiff0821f32010-07-09 14:02:13 +0000138 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000139
Chris Lattner608cd052006-09-23 07:40:52 +0000140 // Split out the loop pre-header.
Eli Friedman16ad2902011-12-15 00:50:34 +0000141 BasicBlock *PreheaderBB;
Chandler Carruth96ada252015-07-22 09:52:54 +0000142 PreheaderBB = SplitBlockPredecessors(Header, OutsideBlocks, ".preheader", DT,
Alina Sbirleaab6f84f72018-08-21 23:32:03 +0000143 LI, nullptr, PreserveLCSSA);
David Majnemer654e1302015-07-31 17:58:14 +0000144 if (!PreheaderBB)
145 return nullptr;
Chris Lattnerf2d9f942003-02-27 22:48:57 +0000146
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000147 LLVM_DEBUG(dbgs() << "LoopSimplify: Creating pre-header "
148 << PreheaderBB->getName() << "\n");
Dan Gohman39917c72010-03-01 17:55:27 +0000149
Chris Lattner6bd6da42006-09-23 08:19:21 +0000150 // Make sure that NewBB is put someplace intelligent, which doesn't mess up
151 // code layout too horribly.
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000152 placeSplitBlockCarefully(PreheaderBB, OutsideBlocks, L);
Dan Gohman4d6149f2009-07-14 01:37:59 +0000153
Eli Friedman16ad2902011-12-15 00:50:34 +0000154 return PreheaderBB;
Chris Lattner650096a2003-02-27 20:27:08 +0000155}
156
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000157/// Add the specified block, and all of its predecessors, to the specified set,
158/// if it's not already in there. Stop predecessor traversal when we reach
159/// StopBlock.
160static void addBlockAndPredsToSet(BasicBlock *InputBB, BasicBlock *StopBlock,
Chris Lattner84170522004-04-13 05:05:33 +0000161 std::set<BasicBlock*> &Blocks) {
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000162 SmallVector<BasicBlock *, 8> Worklist;
163 Worklist.push_back(InputBB);
Devang Patel83a3adc2007-04-20 20:04:37 +0000164 do {
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000165 BasicBlock *BB = Worklist.pop_back_val();
Devang Patel83a3adc2007-04-20 20:04:37 +0000166 if (Blocks.insert(BB).second && BB != StopBlock)
167 // If BB is not already processed and it is not a stop block then
168 // insert its predecessor in the work list
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000169 for (pred_iterator I = pred_begin(BB), E = pred_end(BB); I != E; ++I) {
170 BasicBlock *WBB = *I;
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000171 Worklist.push_back(WBB);
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000172 }
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000173 } while (!Worklist.empty());
Chris Lattner84170522004-04-13 05:05:33 +0000174}
175
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000176/// The first part of loop-nestification is to find a PHI node that tells
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000177/// us how to partition the loops.
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000178static PHINode *findPHIToPartitionLoops(Loop *L, DominatorTree *DT,
179 AssumptionCache *AC) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000180 const DataLayout &DL = L->getHeader()->getModule()->getDataLayout();
Alkis Evlogimenos3ce42ec2004-09-28 02:40:37 +0000181 for (BasicBlock::iterator I = L->getHeader()->begin(); isa<PHINode>(I); ) {
182 PHINode *PN = cast<PHINode>(I);
Chris Lattnera6e22812004-04-13 15:21:18 +0000183 ++I;
Daniel Berlin4d0fe642017-04-28 19:55:38 +0000184 if (Value *V = SimplifyInstruction(PN, {DL, nullptr, DT, AC})) {
Duncan Sands64f1c0d2011-01-02 13:38:21 +0000185 // This is a degenerate PHI already, don't modify it!
186 PN->replaceAllUsesWith(V);
Duncan Sands64f1c0d2011-01-02 13:38:21 +0000187 PN->eraseFromParent();
188 continue;
189 }
Chris Lattnere29d6342004-10-17 21:22:38 +0000190
191 // Scan this PHI node looking for a use of the PHI node by itself.
192 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
193 if (PN->getIncomingValue(i) == PN &&
194 L->contains(PN->getIncomingBlock(i)))
195 // We found something tasty to remove.
196 return PN;
Chris Lattnera6e22812004-04-13 15:21:18 +0000197 }
Craig Topperf40110f2014-04-25 05:29:35 +0000198 return nullptr;
Chris Lattnera6e22812004-04-13 15:21:18 +0000199}
200
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000201/// If this loop has multiple backedges, try to pull one of them out into
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000202/// a nested loop.
203///
204/// This is important for code that looks like
Chris Lattner84170522004-04-13 05:05:33 +0000205/// this:
206///
207/// Loop:
208/// ...
209/// br cond, Loop, Next
210/// ...
211/// br cond2, Loop, Out
212///
213/// To identify this common case, we look at the PHI nodes in the header of the
214/// loop. PHI nodes with unchanging values on one backedge correspond to values
215/// that change in the "outer" loop, but not in the "inner" loop.
216///
217/// If we are able to separate out a loop, return the new outer loop that was
218/// created.
219///
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000220static Loop *separateNestedLoop(Loop *L, BasicBlock *Preheader,
Chandler Carruth96ada252015-07-22 09:52:54 +0000221 DominatorTree *DT, LoopInfo *LI,
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000222 ScalarEvolution *SE, bool PreserveLCSSA,
223 AssumptionCache *AC) {
Andrew Trickf7711012012-03-20 21:24:52 +0000224 // Don't try to separate loops without a preheader.
Eli Friedman16ad2902011-12-15 00:50:34 +0000225 if (!Preheader)
Craig Topperf40110f2014-04-25 05:29:35 +0000226 return nullptr;
Eli Friedman16ad2902011-12-15 00:50:34 +0000227
228 // The header is not a landing pad; preheader insertion should ensure this.
David Majnemer654e1302015-07-31 17:58:14 +0000229 BasicBlock *Header = L->getHeader();
David Majnemereb518bd2015-08-04 08:21:40 +0000230 assert(!Header->isEHPad() && "Can't insert backedge to EH pad");
Eli Friedman16ad2902011-12-15 00:50:34 +0000231
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000232 PHINode *PN = findPHIToPartitionLoops(L, DT, AC);
Craig Topperf40110f2014-04-25 05:29:35 +0000233 if (!PN) return nullptr; // No known way to partition.
Chris Lattner84170522004-04-13 05:05:33 +0000234
Chris Lattnera6e22812004-04-13 15:21:18 +0000235 // Pull out all predecessors that have varying values in the loop. This
236 // handles the case when a PHI node has multiple instances of itself as
237 // arguments.
Chris Lattnera5b11702008-04-21 01:28:02 +0000238 SmallVector<BasicBlock*, 8> OuterLoopPreds;
Andrew Trickf7711012012-03-20 21:24:52 +0000239 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
Chris Lattnera6e22812004-04-13 15:21:18 +0000240 if (PN->getIncomingValue(i) != PN ||
Andrew Trickf7711012012-03-20 21:24:52 +0000241 !L->contains(PN->getIncomingBlock(i))) {
Craig Topper784929d2019-02-08 20:48:56 +0000242 // We can't split indirect control flow edges.
243 if (PN->getIncomingBlock(i)->getTerminator()->isIndirectTerminator())
Craig Topperf40110f2014-04-25 05:29:35 +0000244 return nullptr;
Chris Lattnera6e22812004-04-13 15:21:18 +0000245 OuterLoopPreds.push_back(PN->getIncomingBlock(i));
Andrew Trickf7711012012-03-20 21:24:52 +0000246 }
247 }
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000248 LLVM_DEBUG(dbgs() << "LoopSimplify: Splitting out a new outer loop\n");
Dan Gohman39917c72010-03-01 17:55:27 +0000249
Dan Gohman487e2502010-09-04 02:42:48 +0000250 // If ScalarEvolution is around and knows anything about values in
251 // this loop, tell it to forget them, because we're about to
252 // substantially change it.
253 if (SE)
254 SE->forgetLoop(L);
255
Chandler Carruthb5797b62015-01-18 09:21:15 +0000256 BasicBlock *NewBB = SplitBlockPredecessors(Header, OuterLoopPreds, ".outer",
Alina Sbirleaab6f84f72018-08-21 23:32:03 +0000257 DT, LI, nullptr, PreserveLCSSA);
Chris Lattner84170522004-04-13 05:05:33 +0000258
Chris Lattner6bd6da42006-09-23 08:19:21 +0000259 // Make sure that NewBB is put someplace intelligent, which doesn't mess up
260 // code layout too horribly.
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000261 placeSplitBlockCarefully(NewBB, OuterLoopPreds, L);
Andrew Trick9d8c2af2011-08-03 18:28:21 +0000262
Chris Lattner84170522004-04-13 05:05:33 +0000263 // Create the new outer loop.
Sanjoy Dasdef17292017-09-28 02:45:42 +0000264 Loop *NewOuter = LI->AllocateLoop();
Chris Lattner84170522004-04-13 05:05:33 +0000265
Chris Lattner84170522004-04-13 05:05:33 +0000266 // Change the parent loop to use the outer loop as its child now.
267 if (Loop *Parent = L->getParentLoop())
268 Parent->replaceChildLoopWith(L, NewOuter);
269 else
Chris Lattnercffbbee2006-02-14 22:34:08 +0000270 LI->changeTopLevelLoop(L, NewOuter);
Chris Lattner84170522004-04-13 05:05:33 +0000271
Chris Lattner84170522004-04-13 05:05:33 +0000272 // L is now a subloop of our outer loop.
273 NewOuter->addChildLoop(L);
274
Dan Gohman90071072008-06-22 20:18:58 +0000275 for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
276 I != E; ++I)
277 NewOuter->addBlockEntry(*I);
Chris Lattner84170522004-04-13 05:05:33 +0000278
Dan Gohman3ddbc242009-09-08 15:45:00 +0000279 // Now reset the header in L, which had been moved by
280 // SplitBlockPredecessors for the outer loop.
281 L->moveToHeader(Header);
282
Chris Lattner84170522004-04-13 05:05:33 +0000283 // Determine which blocks should stay in L and which should be moved out to
284 // the Outer loop now.
Chris Lattner84170522004-04-13 05:05:33 +0000285 std::set<BasicBlock*> BlocksInL;
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000286 for (pred_iterator PI=pred_begin(Header), E = pred_end(Header); PI!=E; ++PI) {
287 BasicBlock *P = *PI;
Gabor Greiff0821f32010-07-09 14:02:13 +0000288 if (DT->dominates(Header, P))
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000289 addBlockAndPredsToSet(P, Header, BlocksInL);
Gabor Greiff0821f32010-07-09 14:02:13 +0000290 }
Chris Lattner84170522004-04-13 05:05:33 +0000291
292 // Scan all of the loop children of L, moving them to OuterLoop if they are
293 // not part of the inner loop.
David Greene1e2a1202007-06-29 02:53:16 +0000294 const std::vector<Loop*> &SubLoops = L->getSubLoops();
295 for (size_t I = 0; I != SubLoops.size(); )
296 if (BlocksInL.count(SubLoops[I]->getHeader()))
Chris Lattner84170522004-04-13 05:05:33 +0000297 ++I; // Loop remains in L
298 else
David Greene1e2a1202007-06-29 02:53:16 +0000299 NewOuter->addChildLoop(L->removeChildLoop(SubLoops.begin() + I));
Chris Lattner84170522004-04-13 05:05:33 +0000300
Michael Zolotukhin6bc56d52016-07-20 01:55:27 +0000301 SmallVector<BasicBlock *, 8> OuterLoopBlocks;
302 OuterLoopBlocks.push_back(NewBB);
Chris Lattner84170522004-04-13 05:05:33 +0000303 // Now that we know which blocks are in L and which need to be moved to
304 // OuterLoop, move any blocks that need it.
305 for (unsigned i = 0; i != L->getBlocks().size(); ++i) {
306 BasicBlock *BB = L->getBlocks()[i];
307 if (!BlocksInL.count(BB)) {
308 // Move this block to the parent, updating the exit blocks sets
309 L->removeBlockFromLoop(BB);
Michael Zolotukhin6bc56d52016-07-20 01:55:27 +0000310 if ((*LI)[BB] == L) {
Chris Lattnercffbbee2006-02-14 22:34:08 +0000311 LI->changeLoopFor(BB, NewOuter);
Michael Zolotukhin6bc56d52016-07-20 01:55:27 +0000312 OuterLoopBlocks.push_back(BB);
313 }
Chris Lattner84170522004-04-13 05:05:33 +0000314 --i;
315 }
316 }
317
Michael Zolotukhin6bc56d52016-07-20 01:55:27 +0000318 // Split edges to exit blocks from the inner loop, if they emerged in the
319 // process of separating the outer one.
Chandler Carruth4a000882017-06-25 22:45:31 +0000320 formDedicatedExitBlocks(L, DT, LI, PreserveLCSSA);
Michael Zolotukhin6bc56d52016-07-20 01:55:27 +0000321
322 if (PreserveLCSSA) {
323 // Fix LCSSA form for L. Some values, which previously were only used inside
324 // L, can now be used in NewOuter loop. We need to insert phi-nodes for them
325 // in corresponding exit blocks.
Michael Zolotukhinaae168f2016-08-09 22:44:56 +0000326 // We don't need to form LCSSA recursively, because there cannot be uses
327 // inside a newly created loop of defs from inner loops as those would
328 // already be a use of an LCSSA phi node.
329 formLCSSA(*L, *DT, LI, SE);
Michael Zolotukhin6bc56d52016-07-20 01:55:27 +0000330
Igor Laevsky04423cf2016-10-11 13:37:22 +0000331 assert(NewOuter->isRecursivelyLCSSAForm(*DT, *LI) &&
Michael Zolotukhin6bc56d52016-07-20 01:55:27 +0000332 "LCSSA is broken after separating nested loops!");
333 }
334
Chris Lattner84170522004-04-13 05:05:33 +0000335 return NewOuter;
336}
337
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000338/// This method is called when the specified loop has more than one
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000339/// backedge in it.
Chris Lattnerc4622a62003-10-13 00:37:13 +0000340///
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000341/// If this occurs, revector all of these backedges to target a new basic block
342/// and have that block branch to the loop header. This ensures that loops
343/// have exactly one backedge.
344static BasicBlock *insertUniqueBackedgeBlock(Loop *L, BasicBlock *Preheader,
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000345 DominatorTree *DT, LoopInfo *LI) {
Chris Lattnerc4622a62003-10-13 00:37:13 +0000346 assert(L->getNumBackEdges() > 1 && "Must have > 1 backedge!");
347
348 // Get information about the loop
Chris Lattnerc4622a62003-10-13 00:37:13 +0000349 BasicBlock *Header = L->getHeader();
350 Function *F = Header->getParent();
351
Dan Gohman1ef784d2009-11-05 21:14:46 +0000352 // Unique backedge insertion currently depends on having a preheader.
353 if (!Preheader)
Craig Topperf40110f2014-04-25 05:29:35 +0000354 return nullptr;
Dan Gohman1ef784d2009-11-05 21:14:46 +0000355
David Majnemereb518bd2015-08-04 08:21:40 +0000356 // The header is not an EH pad; preheader insertion should ensure this.
357 assert(!Header->isEHPad() && "Can't insert backedge to EH pad");
Eli Friedman16ad2902011-12-15 00:50:34 +0000358
Chris Lattnerc4622a62003-10-13 00:37:13 +0000359 // Figure out which basic blocks contain back-edges to the loop header.
360 std::vector<BasicBlock*> BackedgeBlocks;
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000361 for (pred_iterator I = pred_begin(Header), E = pred_end(Header); I != E; ++I){
362 BasicBlock *P = *I;
363
Craig Topper784929d2019-02-08 20:48:56 +0000364 // Indirect edges cannot be split, so we must fail if we find one.
365 if (P->getTerminator()->isIndirectTerminator())
Craig Topperf40110f2014-04-25 05:29:35 +0000366 return nullptr;
Dan Gohmanaa445c02010-08-14 00:43:09 +0000367
Gabor Greife7650c72010-07-09 16:26:41 +0000368 if (P != Preheader) BackedgeBlocks.push_back(P);
369 }
Chris Lattnerc4622a62003-10-13 00:37:13 +0000370
371 // Create and insert the new backedge block...
Owen Anderson55f1c092009-08-13 21:58:54 +0000372 BasicBlock *BEBlock = BasicBlock::Create(Header->getContext(),
Alexey Samsonovb7724b92015-06-29 21:30:14 +0000373 Header->getName() + ".backedge", F);
Gabor Greife9ecc682008-04-06 20:25:17 +0000374 BranchInst *BETerminator = BranchInst::Create(Header, BEBlock);
Alexey Samsonovb7724b92015-06-29 21:30:14 +0000375 BETerminator->setDebugLoc(Header->getFirstNonPHI()->getDebugLoc());
Chris Lattnerc4622a62003-10-13 00:37:13 +0000376
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000377 LLVM_DEBUG(dbgs() << "LoopSimplify: Inserting unique backedge block "
378 << BEBlock->getName() << "\n");
Dan Gohman39917c72010-03-01 17:55:27 +0000379
Chris Lattnerc4622a62003-10-13 00:37:13 +0000380 // Move the new backedge block to right after the last backedge block.
Duncan P. N. Exon Smith5b4c8372015-10-13 02:39:05 +0000381 Function::iterator InsertPos = ++BackedgeBlocks.back()->getIterator();
Chris Lattnerc4622a62003-10-13 00:37:13 +0000382 F->getBasicBlockList().splice(InsertPos, F->getBasicBlockList(), BEBlock);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000383
Chris Lattnerc4622a62003-10-13 00:37:13 +0000384 // Now that the block has been inserted into the function, create PHI nodes in
385 // the backedge block which correspond to any PHI nodes in the header block.
Alkis Evlogimenos3ce42ec2004-09-28 02:40:37 +0000386 for (BasicBlock::iterator I = Header->begin(); isa<PHINode>(I); ++I) {
387 PHINode *PN = cast<PHINode>(I);
Jay Foad52131342011-03-30 11:28:46 +0000388 PHINode *NewPN = PHINode::Create(PN->getType(), BackedgeBlocks.size(),
389 PN->getName()+".be", BETerminator);
Chris Lattnerc4622a62003-10-13 00:37:13 +0000390
391 // Loop over the PHI node, moving all entries except the one for the
392 // preheader over to the new PHI node.
393 unsigned PreheaderIdx = ~0U;
394 bool HasUniqueIncomingValue = true;
Craig Topperf40110f2014-04-25 05:29:35 +0000395 Value *UniqueValue = nullptr;
Chris Lattnerc4622a62003-10-13 00:37:13 +0000396 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
397 BasicBlock *IBB = PN->getIncomingBlock(i);
398 Value *IV = PN->getIncomingValue(i);
399 if (IBB == Preheader) {
400 PreheaderIdx = i;
401 } else {
402 NewPN->addIncoming(IV, IBB);
403 if (HasUniqueIncomingValue) {
Craig Topperf40110f2014-04-25 05:29:35 +0000404 if (!UniqueValue)
Chris Lattnerc4622a62003-10-13 00:37:13 +0000405 UniqueValue = IV;
406 else if (UniqueValue != IV)
407 HasUniqueIncomingValue = false;
408 }
409 }
410 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000411
Chris Lattnerc4622a62003-10-13 00:37:13 +0000412 // Delete all of the incoming values from the old PN except the preheader's
413 assert(PreheaderIdx != ~0U && "PHI has no preheader entry??");
414 if (PreheaderIdx != 0) {
415 PN->setIncomingValue(0, PN->getIncomingValue(PreheaderIdx));
416 PN->setIncomingBlock(0, PN->getIncomingBlock(PreheaderIdx));
417 }
Chris Lattnerd8e20182005-01-29 00:39:08 +0000418 // Nuke all entries except the zero'th.
419 for (unsigned i = 0, e = PN->getNumIncomingValues()-1; i != e; ++i)
420 PN->removeIncomingValue(e-i, false);
Chris Lattnerc4622a62003-10-13 00:37:13 +0000421
422 // Finally, add the newly constructed PHI node as the entry for the BEBlock.
423 PN->addIncoming(NewPN, BEBlock);
424
425 // As an optimization, if all incoming values in the new PhiNode (which is a
426 // subset of the incoming values of the old PHI node) have the same value,
427 // eliminate the PHI Node.
428 if (HasUniqueIncomingValue) {
429 NewPN->replaceAllUsesWith(UniqueValue);
430 BEBlock->getInstList().erase(NewPN);
431 }
432 }
433
434 // Now that all of the PHI nodes have been inserted and adjusted, modify the
Florian Hahn77382be2016-11-18 13:12:07 +0000435 // backedge blocks to jump to the BEBlock instead of the header.
436 // If one of the backedges has llvm.loop metadata attached, we remove
437 // it from the backedge and add it to BEBlock.
438 unsigned LoopMDKind = BEBlock->getContext().getMDKindID("llvm.loop");
439 MDNode *LoopMD = nullptr;
Chris Lattnerc4622a62003-10-13 00:37:13 +0000440 for (unsigned i = 0, e = BackedgeBlocks.size(); i != e; ++i) {
Chandler Carruthedb12a82018-10-15 10:04:59 +0000441 Instruction *TI = BackedgeBlocks[i]->getTerminator();
Florian Hahn77382be2016-11-18 13:12:07 +0000442 if (!LoopMD)
443 LoopMD = TI->getMetadata(LoopMDKind);
444 TI->setMetadata(LoopMDKind, nullptr);
Chris Lattnerc4622a62003-10-13 00:37:13 +0000445 for (unsigned Op = 0, e = TI->getNumSuccessors(); Op != e; ++Op)
446 if (TI->getSuccessor(Op) == Header)
447 TI->setSuccessor(Op, BEBlock);
448 }
Florian Hahn77382be2016-11-18 13:12:07 +0000449 BEBlock->getTerminator()->setMetadata(LoopMDKind, LoopMD);
Chris Lattnerc4622a62003-10-13 00:37:13 +0000450
451 //===--- Update all analyses which we must preserve now -----------------===//
452
453 // Update Loop Information - we know that this block is now in the current
454 // loop and all parent loops.
Chandler Carruth691addc2015-01-18 01:25:51 +0000455 L->addBasicBlockToLoop(BEBlock, *LI);
Chris Lattnerc4622a62003-10-13 00:37:13 +0000456
Devang Pateld5258a232007-06-21 17:23:45 +0000457 // Update dominator information
458 DT->splitBlock(BEBlock);
Dan Gohman1ef784d2009-11-05 21:14:46 +0000459
460 return BEBlock;
461}
462
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000463/// Simplify one loop and queue further loops for simplification.
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000464static bool simplifyOneLoop(Loop *L, SmallVectorImpl<Loop *> &Worklist,
Chandler Carruth96ada252015-07-22 09:52:54 +0000465 DominatorTree *DT, LoopInfo *LI,
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000466 ScalarEvolution *SE, AssumptionCache *AC,
467 bool PreserveLCSSA) {
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000468 bool Changed = false;
469ReprocessLoop:
470
471 // Check to see that no blocks (other than the header) in this loop have
472 // predecessors that are not in the loop. This is not valid for natural
473 // loops, but can occur if the blocks are unreachable. Since they are
474 // unreachable we can just shamelessly delete those CFG edges!
475 for (Loop::block_iterator BB = L->block_begin(), E = L->block_end();
476 BB != E; ++BB) {
477 if (*BB == L->getHeader()) continue;
478
479 SmallPtrSet<BasicBlock*, 4> BadPreds;
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000480 for (pred_iterator PI = pred_begin(*BB),
481 PE = pred_end(*BB); PI != PE; ++PI) {
482 BasicBlock *P = *PI;
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000483 if (!L->contains(P))
484 BadPreds.insert(P);
485 }
486
487 // Delete each unique out-of-loop (and thus dead) predecessor.
Craig Topper46276792014-08-24 23:23:06 +0000488 for (BasicBlock *P : BadPreds) {
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000489
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000490 LLVM_DEBUG(dbgs() << "LoopSimplify: Deleting edge from dead predecessor "
491 << P->getName() << "\n");
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000492
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000493 // Zap the dead pred's terminator and replace it with unreachable.
Chandler Carruthedb12a82018-10-15 10:04:59 +0000494 Instruction *TI = P->getTerminator();
Michael Zolotukhin5020c992016-11-18 21:01:12 +0000495 changeToUnreachable(TI, /*UseLLVMTrap=*/false, PreserveLCSSA);
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000496 Changed = true;
497 }
498 }
499
500 // If there are exiting blocks with branches on undef, resolve the undef in
501 // the direction which will exit the loop. This will help simplify loop
502 // trip count computations.
503 SmallVector<BasicBlock*, 8> ExitingBlocks;
504 L->getExitingBlocks(ExitingBlocks);
Benjamin Kramer135f7352016-06-26 12:28:59 +0000505 for (BasicBlock *ExitingBlock : ExitingBlocks)
506 if (BranchInst *BI = dyn_cast<BranchInst>(ExitingBlock->getTerminator()))
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000507 if (BI->isConditional()) {
508 if (UndefValue *Cond = dyn_cast<UndefValue>(BI->getCondition())) {
509
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000510 LLVM_DEBUG(dbgs()
511 << "LoopSimplify: Resolving \"br i1 undef\" to exit in "
512 << ExitingBlock->getName() << "\n");
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000513
514 BI->setCondition(ConstantInt::get(Cond->getType(),
515 !L->contains(BI->getSuccessor(0))));
516
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000517 Changed = true;
518 }
519 }
520
521 // Does the loop already have a preheader? If so, don't insert one.
522 BasicBlock *Preheader = L->getLoopPreheader();
523 if (!Preheader) {
Justin Bogner843fb202015-12-15 19:40:57 +0000524 Preheader = InsertPreheaderForLoop(L, DT, LI, PreserveLCSSA);
Chandler Carruth4a000882017-06-25 22:45:31 +0000525 if (Preheader)
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000526 Changed = true;
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000527 }
528
529 // Next, check to make sure that all exit nodes of the loop only have
530 // predecessors that are inside of the loop. This check guarantees that the
531 // loop preheader/header will dominate the exit blocks. If the exit block has
532 // predecessors from outside of the loop, split the edge now.
Chandler Carruth4a000882017-06-25 22:45:31 +0000533 if (formDedicatedExitBlocks(L, DT, LI, PreserveLCSSA))
534 Changed = true;
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000535
536 // If the header has more than two predecessors at this point (from the
537 // preheader and from multiple backedges), we must adjust the loop.
538 BasicBlock *LoopLatch = L->getLoopLatch();
539 if (!LoopLatch) {
540 // If this is really a nested loop, rip it out into a child loop. Don't do
541 // this for loops with a giant number of backedges, just factor them into a
542 // common backedge instead.
543 if (L->getNumBackEdges() < 8) {
Justin Bogner843fb202015-12-15 19:40:57 +0000544 if (Loop *OuterL =
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000545 separateNestedLoop(L, Preheader, DT, LI, SE, PreserveLCSSA, AC)) {
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000546 ++NumNested;
547 // Enqueue the outer loop as it should be processed next in our
548 // depth-first nest walk.
549 Worklist.push_back(OuterL);
550
551 // This is a big restructuring change, reprocess the whole loop.
552 Changed = true;
553 // GCC doesn't tail recursion eliminate this.
554 // FIXME: It isn't clear we can't rely on LLVM to TRE this.
555 goto ReprocessLoop;
556 }
557 }
558
559 // If we either couldn't, or didn't want to, identify nesting of the loops,
560 // insert a new block that all backedges target, then make it jump to the
561 // loop header.
Chandler Carruth96ada252015-07-22 09:52:54 +0000562 LoopLatch = insertUniqueBackedgeBlock(L, Preheader, DT, LI);
Chandler Carruth4a000882017-06-25 22:45:31 +0000563 if (LoopLatch)
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000564 Changed = true;
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000565 }
566
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000567 const DataLayout &DL = L->getHeader()->getModule()->getDataLayout();
568
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000569 // Scan over the PHI nodes in the loop header. Since they now have only two
570 // incoming values (the loop is canonicalized), we may have simplified the PHI
571 // down to 'X = phi [X, Y]', which should be replaced with 'Y'.
572 PHINode *PN;
573 for (BasicBlock::iterator I = L->getHeader()->begin();
574 (PN = dyn_cast<PHINode>(I++)); )
Daniel Berlin4d0fe642017-04-28 19:55:38 +0000575 if (Value *V = SimplifyInstruction(PN, {DL, nullptr, DT, AC})) {
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000576 if (SE) SE->forgetValue(PN);
Michael Zolotukhin1a554be2016-09-27 21:03:45 +0000577 if (!PreserveLCSSA || LI->replacementPreservesLCSSAForm(PN, V)) {
578 PN->replaceAllUsesWith(V);
579 PN->eraseFromParent();
580 }
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000581 }
582
583 // If this loop has multiple exits and the exits all go to the same
584 // block, attempt to merge the exits. This helps several passes, such
585 // as LoopRotation, which do not support loops with multiple exits.
586 // SimplifyCFG also does this (and this code uses the same utility
587 // function), however this code is loop-aware, where SimplifyCFG is
588 // not. That gives it the advantage of being able to hoist
589 // loop-invariant instructions out of the way to open up more
590 // opportunities, and the disadvantage of having the responsibility
591 // to preserve dominator information.
Chandler Carruth4a000882017-06-25 22:45:31 +0000592 auto HasUniqueExitBlock = [&]() {
593 BasicBlock *UniqueExit = nullptr;
594 for (auto *ExitingBB : ExitingBlocks)
595 for (auto *SuccBB : successors(ExitingBB)) {
596 if (L->contains(SuccBB))
597 continue;
598
599 if (!UniqueExit)
600 UniqueExit = SuccBB;
601 else if (UniqueExit != SuccBB)
602 return false;
603 }
604
605 return true;
606 };
607 if (HasUniqueExitBlock()) {
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000608 for (unsigned i = 0, e = ExitingBlocks.size(); i != e; ++i) {
609 BasicBlock *ExitingBlock = ExitingBlocks[i];
610 if (!ExitingBlock->getSinglePredecessor()) continue;
611 BranchInst *BI = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
612 if (!BI || !BI->isConditional()) continue;
613 CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition());
614 if (!CI || CI->getParent() != ExitingBlock) continue;
615
616 // Attempt to hoist out all instructions except for the
617 // comparison and the branch.
618 bool AllInvariant = true;
619 bool AnyInvariant = false;
Florian Hahn8fe04ad2018-04-30 19:19:36 +0000620 for (auto I = ExitingBlock->instructionsWithoutDebug().begin(); &*I != BI; ) {
Duncan P. N. Exon Smith5b4c8372015-10-13 02:39:05 +0000621 Instruction *Inst = &*I++;
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000622 if (Inst == CI)
623 continue;
624 if (!L->makeLoopInvariant(Inst, AnyInvariant,
Craig Topperf40110f2014-04-25 05:29:35 +0000625 Preheader ? Preheader->getTerminator()
626 : nullptr)) {
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000627 AllInvariant = false;
628 break;
629 }
630 }
631 if (AnyInvariant) {
632 Changed = true;
633 // The loop disposition of all SCEV expressions that depend on any
634 // hoisted values have also changed.
635 if (SE)
636 SE->forgetLoopDispositions(L);
637 }
638 if (!AllInvariant) continue;
639
640 // The block has now been cleared of all instructions except for
641 // a comparison and a conditional branch. SimplifyCFG may be able
642 // to fold it now.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000643 if (!FoldBranchToCommonDest(BI))
644 continue;
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000645
646 // Success. The block is now dead, so remove it from the loop,
647 // update the dominator tree and delete it.
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000648 LLVM_DEBUG(dbgs() << "LoopSimplify: Eliminating exiting block "
649 << ExitingBlock->getName() << "\n");
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000650
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000651 assert(pred_begin(ExitingBlock) == pred_end(ExitingBlock));
652 Changed = true;
653 LI->removeBlock(ExitingBlock);
654
655 DomTreeNode *Node = DT->getNode(ExitingBlock);
656 const std::vector<DomTreeNodeBase<BasicBlock> *> &Children =
657 Node->getChildren();
658 while (!Children.empty()) {
659 DomTreeNode *Child = Children.front();
660 DT->changeImmediateDominator(Child, Node->getIDom());
661 }
662 DT->eraseNode(ExitingBlock);
663
Michael Zolotukhin8e7e7672016-06-08 23:13:21 +0000664 BI->getSuccessor(0)->removePredecessor(
665 ExitingBlock, /* DontDeleteUselessPHIs */ PreserveLCSSA);
666 BI->getSuccessor(1)->removePredecessor(
667 ExitingBlock, /* DontDeleteUselessPHIs */ PreserveLCSSA);
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000668 ExitingBlock->eraseFromParent();
669 }
670 }
671
Max Kazantsevb1137c42018-04-23 10:32:37 +0000672 // Changing exit conditions for blocks may affect exit counts of this loop and
673 // any of its paretns, so we must invalidate the entire subtree if we've made
674 // any changes.
675 if (Changed && SE)
676 SE->forgetTopmostLoop(L);
677
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000678 return Changed;
679}
680
Justin Bogner843fb202015-12-15 19:40:57 +0000681bool llvm::simplifyLoop(Loop *L, DominatorTree *DT, LoopInfo *LI,
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000682 ScalarEvolution *SE, AssumptionCache *AC,
683 bool PreserveLCSSA) {
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000684 bool Changed = false;
685
Chandler Carruth7fd29ce2017-01-21 04:16:53 +0000686#ifndef NDEBUG
687 // If we're asked to preserve LCSSA, the loop nest needs to start in LCSSA
688 // form.
689 if (PreserveLCSSA) {
690 assert(DT && "DT not available.");
691 assert(LI && "LI not available.");
692 assert(L->isRecursivelyLCSSAForm(*DT, *LI) &&
693 "Requested to preserve LCSSA, but it's already broken.");
694 }
695#endif
696
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000697 // Worklist maintains our depth-first queue of loops in this nest to process.
698 SmallVector<Loop *, 4> Worklist;
699 Worklist.push_back(L);
700
701 // Walk the worklist from front to back, pushing newly found sub loops onto
702 // the back. This will let us process loops from back to front in depth-first
703 // order. We can use this simple process because loops form a tree.
704 for (unsigned Idx = 0; Idx != Worklist.size(); ++Idx) {
705 Loop *L2 = Worklist[Idx];
Benjamin Kramer6cd780f2015-02-17 15:29:18 +0000706 Worklist.append(L2->begin(), L2->end());
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000707 }
708
709 while (!Worklist.empty())
Justin Bogner843fb202015-12-15 19:40:57 +0000710 Changed |= simplifyOneLoop(Worklist.pop_back_val(), Worklist, DT, LI, SE,
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000711 AC, PreserveLCSSA);
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000712
713 return Changed;
714}
715
716namespace {
717 struct LoopSimplify : public FunctionPass {
718 static char ID; // Pass identification, replacement for typeid
719 LoopSimplify() : FunctionPass(ID) {
720 initializeLoopSimplifyPass(*PassRegistry::getPassRegistry());
721 }
722
Craig Topper3e4c6972014-03-05 09:10:37 +0000723 bool runOnFunction(Function &F) override;
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000724
Craig Topper3e4c6972014-03-05 09:10:37 +0000725 void getAnalysisUsage(AnalysisUsage &AU) const override {
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000726 AU.addRequired<AssumptionCacheTracker>();
727
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000728 // We need loop information to identify the loops...
729 AU.addRequired<DominatorTreeWrapperPass>();
730 AU.addPreserved<DominatorTreeWrapperPass>();
731
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000732 AU.addRequired<LoopInfoWrapperPass>();
733 AU.addPreserved<LoopInfoWrapperPass>();
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000734
Chandler Carruth7b560d42015-09-09 17:55:00 +0000735 AU.addPreserved<BasicAAWrapperPass>();
736 AU.addPreserved<AAResultsWrapperPass>();
737 AU.addPreserved<GlobalsAAWrapperPass>();
Chandler Carruth2f1fd162015-08-17 02:08:17 +0000738 AU.addPreserved<ScalarEvolutionWrapperPass>();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000739 AU.addPreserved<SCEVAAWrapperPass>();
Michael Zolotukhin8e7e7672016-06-08 23:13:21 +0000740 AU.addPreservedID(LCSSAID);
Chandler Carruth49c22192016-05-12 22:19:39 +0000741 AU.addPreserved<DependenceAnalysisWrapperPass>();
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000742 AU.addPreservedID(BreakCriticalEdgesID); // No critical edges added.
743 }
744
745 /// verifyAnalysis() - Verify LoopSimplifyForm's guarantees.
Craig Topper3e4c6972014-03-05 09:10:37 +0000746 void verifyAnalysis() const override;
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000747 };
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000748}
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000749
750char LoopSimplify::ID = 0;
751INITIALIZE_PASS_BEGIN(LoopSimplify, "loop-simplify",
Mark Heffernan2d393ea2014-11-04 23:02:09 +0000752 "Canonicalize natural loops", false, false)
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000753INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000754INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000755INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000756INITIALIZE_PASS_END(LoopSimplify, "loop-simplify",
Mark Heffernan2d393ea2014-11-04 23:02:09 +0000757 "Canonicalize natural loops", false, false)
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000758
759// Publicly exposed interface to pass...
760char &llvm::LoopSimplifyID = LoopSimplify::ID;
761Pass *llvm::createLoopSimplifyPass() { return new LoopSimplify(); }
762
Michael Zolotukhina93fec02014-04-29 07:35:33 +0000763/// runOnFunction - Run down all loops in the CFG (recursively, but we could do
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000764/// it in any convenient order) inserting preheaders...
765///
766bool LoopSimplify::runOnFunction(Function &F) {
767 bool Changed = false;
Davide Italiano9d305d72016-06-15 18:51:25 +0000768 LoopInfo *LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
769 DominatorTree *DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
Chandler Carruth2f1fd162015-08-17 02:08:17 +0000770 auto *SEWP = getAnalysisIfAvailable<ScalarEvolutionWrapperPass>();
Davide Italiano9d305d72016-06-15 18:51:25 +0000771 ScalarEvolution *SE = SEWP ? &SEWP->getSE() : nullptr;
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000772 AssumptionCache *AC =
773 &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);
Davide Italiano9d305d72016-06-15 18:51:25 +0000774
Justin Bogner843fb202015-12-15 19:40:57 +0000775 bool PreserveLCSSA = mustPreserveAnalysisID(LCSSAID);
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000776
777 // Simplify each loop nest in the function.
778 for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I)
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000779 Changed |= simplifyLoop(*I, DT, LI, SE, AC, PreserveLCSSA);
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000780
Michael Zolotukhin8e7e7672016-06-08 23:13:21 +0000781#ifndef NDEBUG
782 if (PreserveLCSSA) {
Igor Laevsky04423cf2016-10-11 13:37:22 +0000783 bool InLCSSA = all_of(
784 *LI, [&](Loop *L) { return L->isRecursivelyLCSSAForm(*DT, *LI); });
Michael Zolotukhin8e7e7672016-06-08 23:13:21 +0000785 assert(InLCSSA && "LCSSA is broken after loop-simplify.");
786 }
787#endif
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000788 return Changed;
789}
790
Davide Italianocd96cfd2016-07-09 03:03:01 +0000791PreservedAnalyses LoopSimplifyPass::run(Function &F,
Sean Silva36e0d012016-08-09 00:28:15 +0000792 FunctionAnalysisManager &AM) {
Davide Italianocd96cfd2016-07-09 03:03:01 +0000793 bool Changed = false;
794 LoopInfo *LI = &AM.getResult<LoopAnalysis>(F);
795 DominatorTree *DT = &AM.getResult<DominatorTreeAnalysis>(F);
796 ScalarEvolution *SE = AM.getCachedResult<ScalarEvolutionAnalysis>(F);
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000797 AssumptionCache *AC = &AM.getResult<AssumptionAnalysis>(F);
Davide Italianocd96cfd2016-07-09 03:03:01 +0000798
Chandler Carruth7fd29ce2017-01-21 04:16:53 +0000799 // Note that we don't preserve LCSSA in the new PM, if you need it run LCSSA
800 // after simplifying the loops.
Davide Italianocd96cfd2016-07-09 03:03:01 +0000801 for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I)
Chandler Carruth7fd29ce2017-01-21 04:16:53 +0000802 Changed |= simplifyLoop(*I, DT, LI, SE, AC, /*PreserveLCSSA*/ false);
Davide Italianocd96cfd2016-07-09 03:03:01 +0000803
804 if (!Changed)
805 return PreservedAnalyses::all();
Chandler Carruth6acdca72017-01-24 12:55:57 +0000806
Davide Italianocd96cfd2016-07-09 03:03:01 +0000807 PreservedAnalyses PA;
Davide Italianocd96cfd2016-07-09 03:03:01 +0000808 PA.preserve<DominatorTreeAnalysis>();
809 PA.preserve<LoopAnalysis>();
810 PA.preserve<BasicAA>();
811 PA.preserve<GlobalsAA>();
812 PA.preserve<SCEVAA>();
813 PA.preserve<ScalarEvolutionAnalysis>();
814 PA.preserve<DependenceAnalysis>();
815 return PA;
816}
817
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000818// FIXME: Restore this code when we re-enable verification in verifyAnalysis
819// below.
820#if 0
821static void verifyLoop(Loop *L) {
822 // Verify subloops.
823 for (Loop::iterator I = L->begin(), E = L->end(); I != E; ++I)
824 verifyLoop(*I);
825
Dan Gohman1ef784d2009-11-05 21:14:46 +0000826 // It used to be possible to just assert L->isLoopSimplifyForm(), however
827 // with the introduction of indirectbr, there are now cases where it's
828 // not possible to transform a loop as necessary. We can at least check
829 // that there is an indirectbr near any time there's trouble.
830
831 // Indirectbr can interfere with preheader and unique backedge insertion.
832 if (!L->getLoopPreheader() || !L->getLoopLatch()) {
833 bool HasIndBrPred = false;
834 for (pred_iterator PI = pred_begin(L->getHeader()),
835 PE = pred_end(L->getHeader()); PI != PE; ++PI)
836 if (isa<IndirectBrInst>((*PI)->getTerminator())) {
837 HasIndBrPred = true;
838 break;
839 }
840 assert(HasIndBrPred &&
841 "LoopSimplify has no excuse for missing loop header info!");
Duncan Sandsa41634e2011-08-12 14:54:45 +0000842 (void)HasIndBrPred;
Dan Gohman1ef784d2009-11-05 21:14:46 +0000843 }
844
Bill Wendlingb15d6eb2011-08-18 21:10:01 +0000845 // Indirectbr can interfere with exit block canonicalization.
Dan Gohman1ef784d2009-11-05 21:14:46 +0000846 if (!L->hasDedicatedExits()) {
847 bool HasIndBrExiting = false;
848 SmallVector<BasicBlock*, 8> ExitingBlocks;
849 L->getExitingBlocks(ExitingBlocks);
Bill Wendling39257d62011-08-17 21:20:43 +0000850 for (unsigned i = 0, e = ExitingBlocks.size(); i != e; ++i) {
Dan Gohman1ef784d2009-11-05 21:14:46 +0000851 if (isa<IndirectBrInst>((ExitingBlocks[i])->getTerminator())) {
852 HasIndBrExiting = true;
853 break;
854 }
Bill Wendling39257d62011-08-17 21:20:43 +0000855 }
856
Bill Wendlingb15d6eb2011-08-18 21:10:01 +0000857 assert(HasIndBrExiting &&
Dan Gohman1ef784d2009-11-05 21:14:46 +0000858 "LoopSimplify has no excuse for missing exit block info!");
Bill Wendlingb15d6eb2011-08-18 21:10:01 +0000859 (void)HasIndBrExiting;
Dan Gohman1ef784d2009-11-05 21:14:46 +0000860 }
Chris Lattner61992f62002-09-26 16:17:31 +0000861}
Chandler Carruthaa7fa5e2014-01-23 11:23:19 +0000862#endif
863
864void LoopSimplify::verifyAnalysis() const {
865 // FIXME: This routine is being called mid-way through the loop pass manager
866 // as loop passes destroy this analysis. That's actually fine, but we have no
867 // way of expressing that here. Once all of the passes that destroy this are
868 // hoisted out of the loop pass manager we can add back verification here.
869#if 0
870 for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I)
871 verifyLoop(*I);
872#endif
873}