blob: dbab5db7dbc2db4cc1765def263f5ccbf81bd5fa [file] [log] [blame]
Chris Lattner44d2c352003-10-13 03:32:08 +00001//===- LoopInfo.cpp - Natural Loop Calculator -----------------------------===//
Misha Brukman01808ca2005-04-21 21:13:18 +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 Brukman01808ca2005-04-21 21:13:18 +00006//
John Criswell482202a2003-10-20 19:43:21 +00007//===----------------------------------------------------------------------===//
Chris Lattner6de99422001-11-26 18:41:20 +00008//
9// This file defines the LoopInfo class that is used to identify natural loops
10// and determine the loop depth of various nodes of the CFG. Note that the
11// loops identified may actually be several natural loops that share the same
12// header node... not just a single natural loop.
13//
14//===----------------------------------------------------------------------===//
15
Misha Brukman81804b42004-01-30 17:26:24 +000016#include "llvm/Analysis/LoopInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000017#include "llvm/ADT/DepthFirstIterator.h"
Sanjoy Das09613b12017-09-20 02:31:57 +000018#include "llvm/ADT/ScopeExit.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000019#include "llvm/ADT/SmallPtrSet.h"
Whitney Tsang2d0896c2019-06-05 20:42:47 +000020#include "llvm/Analysis/IVDescriptors.h"
Andrew Trickcda51d42012-06-20 03:42:09 +000021#include "llvm/Analysis/LoopInfoImpl.h"
Andrew Trick78b40c32011-08-10 01:59:05 +000022#include "llvm/Analysis/LoopIterator.h"
Alina Sbirleaf31eba62019-05-08 17:05:36 +000023#include "llvm/Analysis/MemorySSA.h"
24#include "llvm/Analysis/MemorySSAUpdater.h"
Whitney Tsang2d0896c2019-06-05 20:42:47 +000025#include "llvm/Analysis/ScalarEvolutionExpressions.h"
Dan Gohman75d7d5e2011-12-14 23:49:11 +000026#include "llvm/Analysis/ValueTracking.h"
Nico Weber432a3882018-04-30 14:59:11 +000027#include "llvm/Config/llvm-config.h"
Chandler Carruth1305dc32014-03-04 11:45:46 +000028#include "llvm/IR/CFG.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000029#include "llvm/IR/Constants.h"
Hal Finkel2f688682016-05-25 21:42:37 +000030#include "llvm/IR/DebugLoc.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000031#include "llvm/IR/Dominators.h"
Fedor Sergeev662e5682018-09-24 16:08:15 +000032#include "llvm/IR/IRPrintingPasses.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000033#include "llvm/IR/Instructions.h"
Philip Reames5a3f5f72014-10-21 00:13:20 +000034#include "llvm/IR/LLVMContext.h"
Pekka Jaaskelainen0d237252013-02-13 18:08:57 +000035#include "llvm/IR/Metadata.h"
Chandler Carruthaaf0b4c2015-01-20 10:58:50 +000036#include "llvm/IR/PassManager.h"
Dan Gohman4dbb3012009-09-28 00:27:48 +000037#include "llvm/Support/CommandLine.h"
Dan Gohmanc3f21372010-01-05 21:08:02 +000038#include "llvm/Support/Debug.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000039#include "llvm/Support/raw_ostream.h"
Chris Lattner6de99422001-11-26 18:41:20 +000040#include <algorithm>
Chris Lattner55b7ef52004-04-12 20:26:17 +000041using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000042
Andrew Trickcda51d42012-06-20 03:42:09 +000043// Explicitly instantiate methods in LoopInfoImpl.h for IR-level Loops.
44template class llvm::LoopBase<BasicBlock, Loop>;
45template class llvm::LoopInfoBase<BasicBlock, Loop>;
46
Dan Gohman4dbb3012009-09-28 00:27:48 +000047// Always verify loopinfo if expensive checking is enabled.
Filipe Cabecinhas0da99372016-04-29 15:22:48 +000048#ifdef EXPENSIVE_CHECKS
Serge Pavlov69b3ff92017-01-24 05:52:07 +000049bool llvm::VerifyLoopInfo = true;
Dan Gohman4dbb3012009-09-28 00:27:48 +000050#else
Serge Pavlov69b3ff92017-01-24 05:52:07 +000051bool llvm::VerifyLoopInfo = false;
Dan Gohman4dbb3012009-09-28 00:27:48 +000052#endif
Sanjoy Das66a004a2017-09-20 01:12:09 +000053static cl::opt<bool, true>
54 VerifyLoopInfoX("verify-loop-info", cl::location(VerifyLoopInfo),
Zachary Turner8065f0b2017-12-01 00:53:10 +000055 cl::Hidden, cl::desc("Verify loop info (time consuming)"));
Dan Gohman4dbb3012009-09-28 00:27:48 +000056
Chris Lattnerccf571a2002-01-31 00:42:27 +000057//===----------------------------------------------------------------------===//
Chris Lattner78dd56f2002-04-28 16:21:30 +000058// Loop implementation
Chris Lattnerccf571a2002-01-31 00:42:27 +000059//
Misha Brukman3845be22002-10-11 05:31:10 +000060
Pete Cooper016daa62015-05-13 01:12:06 +000061bool Loop::isLoopInvariant(const Value *V) const {
62 if (const Instruction *I = dyn_cast<Instruction>(V))
Chris Lattnerda24b9a2010-09-06 01:05:37 +000063 return !contains(I);
Sanjoy Das66a004a2017-09-20 01:12:09 +000064 return true; // All non-instructions are loop invariant
Dan Gohman80a99422009-07-13 22:02:44 +000065}
66
Pete Cooper016daa62015-05-13 01:12:06 +000067bool Loop::hasLoopInvariantOperands(const Instruction *I) const {
Pete Coopera264dc02015-05-13 22:19:13 +000068 return all_of(I->operands(), [this](Value *V) { return isLoopInvariant(V); });
Dan Gohman6f6d8642009-07-14 01:06:29 +000069}
70
Alina Sbirleaf31eba62019-05-08 17:05:36 +000071bool Loop::makeLoopInvariant(Value *V, bool &Changed, Instruction *InsertPt,
72 MemorySSAUpdater *MSSAU) const {
Dan Gohman6f6d8642009-07-14 01:06:29 +000073 if (Instruction *I = dyn_cast<Instruction>(V))
Alina Sbirleaf31eba62019-05-08 17:05:36 +000074 return makeLoopInvariant(I, Changed, InsertPt, MSSAU);
Sanjoy Das66a004a2017-09-20 01:12:09 +000075 return true; // All non-instructions are loop-invariant.
Dan Gohman6f6d8642009-07-14 01:06:29 +000076}
77
Dan Gohmanc43e4792009-07-15 01:25:43 +000078bool Loop::makeLoopInvariant(Instruction *I, bool &Changed,
Alina Sbirleaf31eba62019-05-08 17:05:36 +000079 Instruction *InsertPt,
80 MemorySSAUpdater *MSSAU) const {
Dan Gohman6f6d8642009-07-14 01:06:29 +000081 // Test if the value is already loop-invariant.
82 if (isLoopInvariant(I))
83 return true;
Dan Gohman75d7d5e2011-12-14 23:49:11 +000084 if (!isSafeToSpeculativelyExecute(I))
Dan Gohman6f6d8642009-07-14 01:06:29 +000085 return false;
Eli Friedmanb8f6a4f2009-07-17 04:28:42 +000086 if (I->mayReadFromMemory())
Dan Gohman6f6d8642009-07-14 01:06:29 +000087 return false;
David Majnemer654e1302015-07-31 17:58:14 +000088 // EH block instructions are immobile.
89 if (I->isEHPad())
Bill Wendlinga9ee09f2011-08-17 20:36:44 +000090 return false;
Dan Gohman6f6d8642009-07-14 01:06:29 +000091 // Determine the insertion point, unless one was given.
92 if (!InsertPt) {
93 BasicBlock *Preheader = getLoopPreheader();
94 // Without a preheader, hoisting is not feasible.
95 if (!Preheader)
96 return false;
97 InsertPt = Preheader->getTerminator();
98 }
99 // Don't hoist instructions with loop-variant operands.
Sanjay Patel960e5342016-01-15 00:08:10 +0000100 for (Value *Operand : I->operands())
Alina Sbirleaf31eba62019-05-08 17:05:36 +0000101 if (!makeLoopInvariant(Operand, Changed, InsertPt, MSSAU))
Dan Gohman6f6d8642009-07-14 01:06:29 +0000102 return false;
Andrew Trickf898cbd2011-08-03 23:45:50 +0000103
Dan Gohman6f6d8642009-07-14 01:06:29 +0000104 // Hoist.
105 I->moveBefore(InsertPt);
Alina Sbirleaf31eba62019-05-08 17:05:36 +0000106 if (MSSAU)
107 if (auto *MUD = MSSAU->getMemorySSA()->getMemoryAccess(I))
108 MSSAU->moveToPlace(MUD, InsertPt->getParent(), MemorySSA::End);
Igor Laevsky7310c682015-11-18 14:50:18 +0000109
110 // There is possibility of hoisting this instruction above some arbitrary
111 // condition. Any metadata defined on it can be control dependent on this
112 // condition. Conservatively strip it here so that we don't give any wrong
113 // information to the optimizer.
114 I->dropUnknownNonDebugMetadata();
115
Dan Gohmanc43e4792009-07-15 01:25:43 +0000116 Changed = true;
Dan Gohman6f6d8642009-07-14 01:06:29 +0000117 return true;
118}
119
Mircea Trofinb27d0fd2019-03-29 17:39:17 +0000120bool Loop::getIncomingAndBackEdge(BasicBlock *&Incoming,
121 BasicBlock *&Backedge) const {
Dan Gohman80a99422009-07-13 22:02:44 +0000122 BasicBlock *H = getHeader();
123
Mircea Trofinb27d0fd2019-03-29 17:39:17 +0000124 Incoming = nullptr;
125 Backedge = nullptr;
Dan Gohmanacafc612010-07-23 21:25:16 +0000126 pred_iterator PI = pred_begin(H);
Sanjoy Das66a004a2017-09-20 01:12:09 +0000127 assert(PI != pred_end(H) && "Loop must have at least one backedge!");
Dan Gohman80a99422009-07-13 22:02:44 +0000128 Backedge = *PI++;
Sanjoy Das66a004a2017-09-20 01:12:09 +0000129 if (PI == pred_end(H))
Mircea Trofinb27d0fd2019-03-29 17:39:17 +0000130 return false; // dead loop
Dan Gohman80a99422009-07-13 22:02:44 +0000131 Incoming = *PI++;
Sanjoy Das66a004a2017-09-20 01:12:09 +0000132 if (PI != pred_end(H))
Mircea Trofinb27d0fd2019-03-29 17:39:17 +0000133 return false; // multiple backedges?
Dan Gohman80a99422009-07-13 22:02:44 +0000134
135 if (contains(Incoming)) {
136 if (contains(Backedge))
Mircea Trofinb27d0fd2019-03-29 17:39:17 +0000137 return false;
Dan Gohman80a99422009-07-13 22:02:44 +0000138 std::swap(Incoming, Backedge);
139 } else if (!contains(Backedge))
Mircea Trofinb27d0fd2019-03-29 17:39:17 +0000140 return false;
141
142 assert(Incoming && Backedge && "expected non-null incoming and backedges");
143 return true;
144}
145
146PHINode *Loop::getCanonicalInductionVariable() const {
147 BasicBlock *H = getHeader();
148
149 BasicBlock *Incoming = nullptr, *Backedge = nullptr;
150 if (!getIncomingAndBackEdge(Incoming, Backedge))
Craig Topper9f008862014-04-15 04:59:12 +0000151 return nullptr;
Dan Gohman80a99422009-07-13 22:02:44 +0000152
153 // Loop over all of the PHI nodes, looking for a canonical indvar.
154 for (BasicBlock::iterator I = H->begin(); isa<PHINode>(I); ++I) {
155 PHINode *PN = cast<PHINode>(I);
156 if (ConstantInt *CI =
Sanjoy Das66a004a2017-09-20 01:12:09 +0000157 dyn_cast<ConstantInt>(PN->getIncomingValueForBlock(Incoming)))
Craig Topper79ab6432017-07-06 18:39:47 +0000158 if (CI->isZero())
Dan Gohman80a99422009-07-13 22:02:44 +0000159 if (Instruction *Inc =
Sanjoy Das66a004a2017-09-20 01:12:09 +0000160 dyn_cast<Instruction>(PN->getIncomingValueForBlock(Backedge)))
161 if (Inc->getOpcode() == Instruction::Add && Inc->getOperand(0) == PN)
Dan Gohman80a99422009-07-13 22:02:44 +0000162 if (ConstantInt *CI = dyn_cast<ConstantInt>(Inc->getOperand(1)))
Craig Topperca2c8762017-07-06 18:39:49 +0000163 if (CI->isOne())
Dan Gohman80a99422009-07-13 22:02:44 +0000164 return PN;
165 }
Craig Topper9f008862014-04-15 04:59:12 +0000166 return nullptr;
Dan Gohman80a99422009-07-13 22:02:44 +0000167}
168
Whitney Tsang2d0896c2019-06-05 20:42:47 +0000169/// Get the latch condition instruction.
170static ICmpInst *getLatchCmpInst(const Loop &L) {
171 if (BasicBlock *Latch = L.getLoopLatch())
172 if (BranchInst *BI = dyn_cast_or_null<BranchInst>(Latch->getTerminator()))
173 if (BI->isConditional())
174 return dyn_cast<ICmpInst>(BI->getCondition());
175
176 return nullptr;
177}
178
179/// Return the final value of the loop induction variable if found.
180static Value *findFinalIVValue(const Loop &L, const PHINode &IndVar,
181 const Instruction &StepInst) {
182 ICmpInst *LatchCmpInst = getLatchCmpInst(L);
183 if (!LatchCmpInst)
184 return nullptr;
185
186 Value *Op0 = LatchCmpInst->getOperand(0);
187 Value *Op1 = LatchCmpInst->getOperand(1);
188 if (Op0 == &IndVar || Op0 == &StepInst)
189 return Op1;
190
191 if (Op1 == &IndVar || Op1 == &StepInst)
192 return Op0;
193
194 return nullptr;
195}
196
197Optional<Loop::LoopBounds> Loop::LoopBounds::getBounds(const Loop &L,
198 PHINode &IndVar,
199 ScalarEvolution &SE) {
200 InductionDescriptor IndDesc;
201 if (!InductionDescriptor::isInductionPHI(&IndVar, &L, &SE, IndDesc))
202 return None;
203
204 Value *InitialIVValue = IndDesc.getStartValue();
205 Instruction *StepInst = IndDesc.getInductionBinOp();
206 if (!InitialIVValue || !StepInst)
207 return None;
208
209 const SCEV *Step = IndDesc.getStep();
210 Value *StepInstOp1 = StepInst->getOperand(1);
211 Value *StepInstOp0 = StepInst->getOperand(0);
212 Value *StepValue = nullptr;
213 if (SE.getSCEV(StepInstOp1) == Step)
214 StepValue = StepInstOp1;
215 else if (SE.getSCEV(StepInstOp0) == Step)
216 StepValue = StepInstOp0;
217
218 Value *FinalIVValue = findFinalIVValue(L, IndVar, *StepInst);
219 if (!FinalIVValue)
220 return None;
221
222 return LoopBounds(L, *InitialIVValue, *StepInst, StepValue, *FinalIVValue,
223 SE);
224}
225
226using Direction = Loop::LoopBounds::Direction;
227
228ICmpInst::Predicate Loop::LoopBounds::getCanonicalPredicate() const {
229 BasicBlock *Latch = L.getLoopLatch();
230 assert(Latch && "Expecting valid latch");
231
232 BranchInst *BI = dyn_cast_or_null<BranchInst>(Latch->getTerminator());
233 assert(BI && BI->isConditional() && "Expecting conditional latch branch");
234
235 ICmpInst *LatchCmpInst = dyn_cast<ICmpInst>(BI->getCondition());
236 assert(LatchCmpInst &&
237 "Expecting the latch compare instruction to be a CmpInst");
238
239 // Need to inverse the predicate when first successor is not the loop
240 // header
241 ICmpInst::Predicate Pred = (BI->getSuccessor(0) == L.getHeader())
242 ? LatchCmpInst->getPredicate()
243 : LatchCmpInst->getInversePredicate();
244
245 if (LatchCmpInst->getOperand(0) == &getFinalIVValue())
246 Pred = ICmpInst::getSwappedPredicate(Pred);
247
248 // Need to flip strictness of the predicate when the latch compare instruction
249 // is not using StepInst
250 if (LatchCmpInst->getOperand(0) == &getStepInst() ||
251 LatchCmpInst->getOperand(1) == &getStepInst())
252 return Pred;
253
254 // Cannot flip strictness of NE and EQ
255 if (Pred != ICmpInst::ICMP_NE && Pred != ICmpInst::ICMP_EQ)
256 return ICmpInst::getFlippedStrictnessPredicate(Pred);
257
258 Direction D = getDirection();
259 if (D == Direction::Increasing)
260 return ICmpInst::ICMP_SLT;
261
262 if (D == Direction::Decreasing)
263 return ICmpInst::ICMP_SGT;
264
265 // If cannot determine the direction, then unable to find the canonical
266 // predicate
267 return ICmpInst::BAD_ICMP_PREDICATE;
268}
269
270Direction Loop::LoopBounds::getDirection() const {
271 if (const SCEVAddRecExpr *StepAddRecExpr =
272 dyn_cast<SCEVAddRecExpr>(SE.getSCEV(&getStepInst())))
273 if (const SCEV *StepRecur = StepAddRecExpr->getStepRecurrence(SE)) {
274 if (SE.isKnownPositive(StepRecur))
275 return Direction::Increasing;
276 if (SE.isKnownNegative(StepRecur))
277 return Direction::Decreasing;
278 }
279
280 return Direction::Unknown;
281}
282
283Optional<Loop::LoopBounds> Loop::getBounds(ScalarEvolution &SE) const {
284 if (PHINode *IndVar = getInductionVariable(SE))
285 return LoopBounds::getBounds(*this, *IndVar, SE);
286
287 return None;
288}
289
290PHINode *Loop::getInductionVariable(ScalarEvolution &SE) const {
291 if (!isLoopSimplifyForm())
292 return nullptr;
293
294 BasicBlock *Header = getHeader();
295 assert(Header && "Expected a valid loop header");
296 ICmpInst *CmpInst = getLatchCmpInst(*this);
297 if (!CmpInst)
298 return nullptr;
299
300 Instruction *LatchCmpOp0 = dyn_cast<Instruction>(CmpInst->getOperand(0));
301 Instruction *LatchCmpOp1 = dyn_cast<Instruction>(CmpInst->getOperand(1));
302
303 for (PHINode &IndVar : Header->phis()) {
304 InductionDescriptor IndDesc;
305 if (!InductionDescriptor::isInductionPHI(&IndVar, this, &SE, IndDesc))
306 continue;
307
308 Instruction *StepInst = IndDesc.getInductionBinOp();
309
310 // case 1:
311 // IndVar = phi[{InitialValue, preheader}, {StepInst, latch}]
312 // StepInst = IndVar + step
313 // cmp = StepInst < FinalValue
314 if (StepInst == LatchCmpOp0 || StepInst == LatchCmpOp1)
315 return &IndVar;
316
317 // case 2:
318 // IndVar = phi[{InitialValue, preheader}, {StepInst, latch}]
319 // StepInst = IndVar + step
320 // cmp = IndVar < FinalValue
321 if (&IndVar == LatchCmpOp0 || &IndVar == LatchCmpOp1)
322 return &IndVar;
323 }
324
325 return nullptr;
326}
327
328bool Loop::getInductionDescriptor(ScalarEvolution &SE,
329 InductionDescriptor &IndDesc) const {
330 if (PHINode *IndVar = getInductionVariable(SE))
331 return InductionDescriptor::isInductionPHI(IndVar, this, &SE, IndDesc);
332
333 return false;
334}
335
336bool Loop::isAuxiliaryInductionVariable(PHINode &AuxIndVar,
337 ScalarEvolution &SE) const {
338 // Located in the loop header
339 BasicBlock *Header = getHeader();
340 if (AuxIndVar.getParent() != Header)
341 return false;
342
343 // No uses outside of the loop
344 for (User *U : AuxIndVar.users())
345 if (const Instruction *I = dyn_cast<Instruction>(U))
346 if (!contains(I))
347 return false;
348
349 InductionDescriptor IndDesc;
350 if (!InductionDescriptor::isInductionPHI(&AuxIndVar, this, &SE, IndDesc))
351 return false;
352
353 // The step instruction opcode should be add or sub.
354 if (IndDesc.getInductionOpcode() != Instruction::Add &&
355 IndDesc.getInductionOpcode() != Instruction::Sub)
356 return false;
357
358 // Incremented by a loop invariant step for each loop iteration
359 return SE.isLoopInvariant(IndDesc.getStep(), this);
360}
361
Whitney Tsang8ee361e2019-07-25 16:13:18 +0000362BranchInst *Loop::getLoopGuardBranch() const {
Whitney Tsangdcb75bf2019-10-06 16:39:43 +0000363 if (!isLoopSimplifyForm())
364 return nullptr;
365
Whitney Tsang8ee361e2019-07-25 16:13:18 +0000366 BasicBlock *Preheader = getLoopPreheader();
Whitney Tsangdcb75bf2019-10-06 16:39:43 +0000367 BasicBlock *Latch = getLoopLatch();
368 assert(Preheader && Latch &&
Whitney Tsang8ee361e2019-07-25 16:13:18 +0000369 "Expecting a loop with valid preheader and latch");
Whitney Tsangdcb75bf2019-10-06 16:39:43 +0000370
371 // Loop should be in rotate form.
372 if (!isLoopExiting(Latch))
373 return nullptr;
Whitney Tsang8ee361e2019-07-25 16:13:18 +0000374
Whitney Tsang9c5fbcf2019-09-26 20:20:42 +0000375 // Disallow loops with more than one unique exit block, as we do not verify
376 // that GuardOtherSucc post dominates all exit blocks.
377 BasicBlock *ExitFromLatch = getUniqueExitBlock();
378 if (!ExitFromLatch)
Whitney Tsang8ee361e2019-07-25 16:13:18 +0000379 return nullptr;
380
Whitney Tsang8ee361e2019-07-25 16:13:18 +0000381 BasicBlock *ExitFromLatchSucc = ExitFromLatch->getUniqueSuccessor();
382 if (!ExitFromLatchSucc)
383 return nullptr;
384
385 BasicBlock *GuardBB = Preheader->getUniquePredecessor();
386 if (!GuardBB)
387 return nullptr;
388
389 assert(GuardBB->getTerminator() && "Expecting valid guard terminator");
390
391 BranchInst *GuardBI = dyn_cast<BranchInst>(GuardBB->getTerminator());
392 if (!GuardBI || GuardBI->isUnconditional())
393 return nullptr;
394
395 BasicBlock *GuardOtherSucc = (GuardBI->getSuccessor(0) == Preheader)
396 ? GuardBI->getSuccessor(1)
397 : GuardBI->getSuccessor(0);
398 return (GuardOtherSucc == ExitFromLatchSucc) ? GuardBI : nullptr;
399}
400
Whitney Tsang2d0896c2019-06-05 20:42:47 +0000401bool Loop::isCanonical(ScalarEvolution &SE) const {
402 InductionDescriptor IndDesc;
403 if (!getInductionDescriptor(SE, IndDesc))
404 return false;
405
406 ConstantInt *Init = dyn_cast_or_null<ConstantInt>(IndDesc.getStartValue());
407 if (!Init || !Init->isZero())
408 return false;
409
410 if (IndDesc.getInductionOpcode() != Instruction::Add)
411 return false;
412
413 ConstantInt *Step = IndDesc.getConstIntStepValue();
414 if (!Step || !Step->isOne())
415 return false;
416
417 return true;
418}
419
Igor Laevsky04423cf2016-10-11 13:37:22 +0000420// Check that 'BB' doesn't have any uses outside of the 'L'
421static bool isBlockInLCSSAForm(const Loop &L, const BasicBlock &BB,
422 DominatorTree &DT) {
423 for (const Instruction &I : BB) {
424 // Tokens can't be used in PHI nodes and live-out tokens prevent loop
425 // optimizations, so for the purposes of considered LCSSA form, we
426 // can ignore them.
427 if (I.getType()->isTokenTy())
428 continue;
Andrew Kaylor123048d2015-12-18 18:12:35 +0000429
Igor Laevsky04423cf2016-10-11 13:37:22 +0000430 for (const Use &U : I.uses()) {
431 const Instruction *UI = cast<Instruction>(U.getUser());
432 const BasicBlock *UserBB = UI->getParent();
433 if (const PHINode *P = dyn_cast<PHINode>(UI))
434 UserBB = P->getIncomingBlock(U);
Dan Gohman80a99422009-07-13 22:02:44 +0000435
Igor Laevsky04423cf2016-10-11 13:37:22 +0000436 // Check the current block, as a fast-path, before checking whether
437 // the use is anywhere in the loop. Most values are used in the same
438 // block they are defined in. Also, blocks not reachable from the
439 // entry are special; uses in them don't need to go through PHIs.
440 if (UserBB != &BB && !L.contains(UserBB) &&
441 DT.isReachableFromEntry(UserBB))
442 return false;
Andrew Kaylor123048d2015-12-18 18:12:35 +0000443 }
Dan Gohman80a99422009-07-13 22:02:44 +0000444 }
Dan Gohman80a99422009-07-13 22:02:44 +0000445 return true;
446}
Dan Gohman1511f702009-07-16 16:16:23 +0000447
Igor Laevsky04423cf2016-10-11 13:37:22 +0000448bool Loop::isLCSSAForm(DominatorTree &DT) const {
449 // For each block we check that it doesn't have any uses outside of this loop.
450 return all_of(this->blocks(), [&](const BasicBlock *BB) {
451 return isBlockInLCSSAForm(*this, *BB, DT);
452 });
453}
Sanjoy Das683bf072015-12-08 00:13:21 +0000454
Igor Laevsky04423cf2016-10-11 13:37:22 +0000455bool Loop::isRecursivelyLCSSAForm(DominatorTree &DT, const LoopInfo &LI) const {
Davide Italiano362cc7b2017-01-08 22:22:09 +0000456 // For each block we check that it doesn't have any uses outside of its
457 // innermost loop. This process will transitively guarantee that the current
458 // loop and all of the nested loops are in LCSSA form.
Igor Laevsky04423cf2016-10-11 13:37:22 +0000459 return all_of(this->blocks(), [&](const BasicBlock *BB) {
460 return isBlockInLCSSAForm(*LI.getLoopFor(BB), *BB, DT);
461 });
Sanjoy Das683bf072015-12-08 00:13:21 +0000462}
463
Dan Gohman1511f702009-07-16 16:16:23 +0000464bool Loop::isLoopSimplifyForm() const {
Dan Gohmane3a17062009-11-05 19:21:41 +0000465 // Normal-form loops have a preheader, a single backedge, and all of their
466 // exits have all their predecessors inside the loop.
467 return getLoopPreheader() && getLoopLatch() && hasDedicatedExits();
468}
469
Sanjay Patel784b5e32016-01-14 23:23:04 +0000470// Routines that reform the loop CFG and split edges often fail on indirectbr.
Andrew Trick4442bfe2012-04-10 05:14:42 +0000471bool Loop::isSafeToClone() const {
James Molloy4f6fb952012-12-20 16:04:27 +0000472 // Return false if any loop blocks contain indirectbrs, or there are any calls
473 // to noduplicate functions.
Nick Desaulniersc4f245b2019-07-15 21:16:29 +0000474 // FIXME: it should be ok to clone CallBrInst's if we correctly update the
475 // operand list to reflect the newly cloned labels.
Sanjay Patel960e5342016-01-15 00:08:10 +0000476 for (BasicBlock *BB : this->blocks()) {
Nick Desaulniersc4f245b2019-07-15 21:16:29 +0000477 if (isa<IndirectBrInst>(BB->getTerminator()) ||
478 isa<CallBrInst>(BB->getTerminator()))
Andrew Trick4442bfe2012-04-10 05:14:42 +0000479 return false;
Jakub Staszak9dca4b32013-11-13 20:18:38 +0000480
David Majnemer3d90bb72016-05-03 03:57:40 +0000481 for (Instruction &I : *BB)
482 if (auto CS = CallSite(&I))
483 if (CS.cannotDuplicate())
James Molloy4f6fb952012-12-20 16:04:27 +0000484 return false;
Andrew Trick4442bfe2012-04-10 05:14:42 +0000485 }
486 return true;
487}
488
Paul Redmond5fdf8362013-05-28 20:00:34 +0000489MDNode *Loop::getLoopID() const {
Craig Topper9f008862014-04-15 04:59:12 +0000490 MDNode *LoopID = nullptr;
Paul Redmond5fdf8362013-05-28 20:00:34 +0000491
Michael Kruse534c87d2018-09-17 18:40:29 +0000492 // Go through the latch blocks and check the terminator for the metadata.
493 SmallVector<BasicBlock *, 4> LatchesBlocks;
494 getLoopLatches(LatchesBlocks);
495 for (BasicBlock *BB : LatchesBlocks) {
Chandler Carruthedb12a82018-10-15 10:04:59 +0000496 Instruction *TI = BB->getTerminator();
Michael Kruse534c87d2018-09-17 18:40:29 +0000497 MDNode *MD = TI->getMetadata(LLVMContext::MD_loop);
Paul Redmond5fdf8362013-05-28 20:00:34 +0000498
Michael Kruse534c87d2018-09-17 18:40:29 +0000499 if (!MD)
500 return nullptr;
501
502 if (!LoopID)
503 LoopID = MD;
504 else if (MD != LoopID)
505 return nullptr;
Paul Redmond5fdf8362013-05-28 20:00:34 +0000506 }
507 if (!LoopID || LoopID->getNumOperands() == 0 ||
508 LoopID->getOperand(0) != LoopID)
Craig Topper9f008862014-04-15 04:59:12 +0000509 return nullptr;
Paul Redmond5fdf8362013-05-28 20:00:34 +0000510 return LoopID;
511}
512
513void Loop::setLoopID(MDNode *LoopID) const {
Michael Kruse72448522018-12-12 17:32:52 +0000514 assert((!LoopID || LoopID->getNumOperands() > 0) &&
515 "Loop ID needs at least one operand");
516 assert((!LoopID || LoopID->getOperand(0) == LoopID) &&
517 "Loop ID should refer to itself");
Paul Redmond5fdf8362013-05-28 20:00:34 +0000518
Keno Fischerd8f856d2019-05-01 14:39:11 +0000519 SmallVector<BasicBlock *, 4> LoopLatches;
520 getLoopLatches(LoopLatches);
521 for (BasicBlock *BB : LoopLatches)
522 BB->getTerminator()->setMetadata(LLVMContext::MD_loop, LoopID);
Paul Redmond5fdf8362013-05-28 20:00:34 +0000523}
524
Hongbin Zheng73f65042017-10-15 07:31:02 +0000525void Loop::setLoopAlreadyUnrolled() {
Hongbin Zheng73f65042017-10-15 07:31:02 +0000526 LLVMContext &Context = getHeader()->getContext();
Hongbin Zheng73f65042017-10-15 07:31:02 +0000527
Michael Kruse77a614a2019-02-11 19:45:44 +0000528 MDNode *DisableUnrollMD =
529 MDNode::get(Context, MDString::get(Context, "llvm.loop.unroll.disable"));
530 MDNode *LoopID = getLoopID();
531 MDNode *NewLoopID = makePostTransformationMetadata(
532 Context, LoopID, {"llvm.loop.unroll."}, {DisableUnrollMD});
Hongbin Zheng73f65042017-10-15 07:31:02 +0000533 setLoopID(NewLoopID);
534}
535
Pekka Jaaskelainen0d237252013-02-13 18:08:57 +0000536bool Loop::isAnnotatedParallel() const {
Sanjay Patel6435c6e2016-01-17 23:18:05 +0000537 MDNode *DesiredLoopIdMetadata = getLoopID();
Pekka Jaaskelainen0d237252013-02-13 18:08:57 +0000538
Sanjay Patel6435c6e2016-01-17 23:18:05 +0000539 if (!DesiredLoopIdMetadata)
Sanjoy Das66a004a2017-09-20 01:12:09 +0000540 return false;
Pekka Jaaskelainen0d237252013-02-13 18:08:57 +0000541
Michael Kruse978ba612018-12-20 04:58:07 +0000542 MDNode *ParallelAccesses =
543 findOptionMDForLoop(this, "llvm.loop.parallel_accesses");
544 SmallPtrSet<MDNode *, 4>
545 ParallelAccessGroups; // For scalable 'contains' check.
546 if (ParallelAccesses) {
547 for (const MDOperand &MD : drop_begin(ParallelAccesses->operands(), 1)) {
548 MDNode *AccGroup = cast<MDNode>(MD.get());
549 assert(isValidAsAccessGroup(AccGroup) &&
550 "List item must be an access group");
551 ParallelAccessGroups.insert(AccGroup);
552 }
553 }
554
Pekka Jaaskelainen0d237252013-02-13 18:08:57 +0000555 // The loop branch contains the parallel loop metadata. In order to ensure
556 // that any parallel-loop-unaware optimization pass hasn't added loop-carried
557 // dependencies (thus converted the loop back to a sequential loop), check
Michael Kruse978ba612018-12-20 04:58:07 +0000558 // that all the memory instructions in the loop belong to an access group that
559 // is parallel to this loop.
Sanjay Patel960e5342016-01-15 00:08:10 +0000560 for (BasicBlock *BB : this->blocks()) {
561 for (Instruction &I : *BB) {
562 if (!I.mayReadOrWriteMemory())
Pekka Jaaskelainen0d237252013-02-13 18:08:57 +0000563 continue;
564
Michael Kruse978ba612018-12-20 04:58:07 +0000565 if (MDNode *AccessGroup = I.getMetadata(LLVMContext::MD_access_group)) {
566 auto ContainsAccessGroup = [&ParallelAccessGroups](MDNode *AG) -> bool {
567 if (AG->getNumOperands() == 0) {
568 assert(isValidAsAccessGroup(AG) && "Item must be an access group");
569 return ParallelAccessGroups.count(AG);
570 }
571
572 for (const MDOperand &AccessListItem : AG->operands()) {
573 MDNode *AccGroup = cast<MDNode>(AccessListItem.get());
574 assert(isValidAsAccessGroup(AccGroup) &&
575 "List item must be an access group");
576 if (ParallelAccessGroups.count(AccGroup))
577 return true;
578 }
579 return false;
580 };
581
582 if (ContainsAccessGroup(AccessGroup))
583 continue;
584 }
585
Pekka Jaaskelainen0d237252013-02-13 18:08:57 +0000586 // The memory instruction can refer to the loop identifier metadata
587 // directly or indirectly through another list metadata (in case of
588 // nested parallel loops). The loop identifier metadata refers to
589 // itself so we can check both cases with the same routine.
Sanjay Patel6435c6e2016-01-17 23:18:05 +0000590 MDNode *LoopIdMD =
Sanjay Patel960e5342016-01-15 00:08:10 +0000591 I.getMetadata(LLVMContext::MD_mem_parallel_loop_access);
Jakub Staszak9dca4b32013-11-13 20:18:38 +0000592
Sanjay Patel6435c6e2016-01-17 23:18:05 +0000593 if (!LoopIdMD)
Jakub Staszak9dca4b32013-11-13 20:18:38 +0000594 return false;
595
Sanjay Patel6435c6e2016-01-17 23:18:05 +0000596 bool LoopIdMDFound = false;
597 for (const MDOperand &MDOp : LoopIdMD->operands()) {
598 if (MDOp == DesiredLoopIdMetadata) {
599 LoopIdMDFound = true;
Pekka Jaaskelainen0d237252013-02-13 18:08:57 +0000600 break;
601 }
602 }
603
Sanjay Patel6435c6e2016-01-17 23:18:05 +0000604 if (!LoopIdMDFound)
Pekka Jaaskelainen0d237252013-02-13 18:08:57 +0000605 return false;
606 }
607 }
608 return true;
609}
610
Sanjoy Das66a004a2017-09-20 01:12:09 +0000611DebugLoc Loop::getStartLoc() const { return getLocRange().getStart(); }
Amara Emerson0b402012016-11-08 11:18:59 +0000612
613Loop::LocRange Loop::getLocRange() const {
Hal Finkel2f688682016-05-25 21:42:37 +0000614 // If we have a debug location in the loop ID, then use it.
Amara Emerson0b402012016-11-08 11:18:59 +0000615 if (MDNode *LoopID = getLoopID()) {
616 DebugLoc Start;
617 // We use the first DebugLoc in the header as the start location of the loop
618 // and if there is a second DebugLoc in the header we use it as end location
619 // of the loop.
620 for (unsigned i = 1, ie = LoopID->getNumOperands(); i < ie; ++i) {
621 if (DILocation *L = dyn_cast<DILocation>(LoopID->getOperand(i))) {
622 if (!Start)
623 Start = DebugLoc(L);
624 else
625 return LocRange(Start, DebugLoc(L));
626 }
627 }
628
629 if (Start)
630 return LocRange(Start);
631 }
Hal Finkel2f688682016-05-25 21:42:37 +0000632
633 // Try the pre-header first.
634 if (BasicBlock *PHeadBB = getLoopPreheader())
635 if (DebugLoc DL = PHeadBB->getTerminator()->getDebugLoc())
Amara Emerson0b402012016-11-08 11:18:59 +0000636 return LocRange(DL);
Hal Finkel2f688682016-05-25 21:42:37 +0000637
638 // If we have no pre-header or there are no instructions with debug
639 // info in it, try the header.
640 if (BasicBlock *HeadBB = getHeader())
Amara Emerson0b402012016-11-08 11:18:59 +0000641 return LocRange(HeadBB->getTerminator()->getDebugLoc());
Hal Finkel2f688682016-05-25 21:42:37 +0000642
Amara Emerson0b402012016-11-08 11:18:59 +0000643 return LocRange();
Hal Finkel2f688682016-05-25 21:42:37 +0000644}
645
Aaron Ballman615eb472017-10-15 14:32:27 +0000646#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Sanjoy Das66a004a2017-09-20 01:12:09 +0000647LLVM_DUMP_METHOD void Loop::dump() const { print(dbgs()); }
Sebastian Pop18c964d2016-07-27 05:02:17 +0000648
649LLVM_DUMP_METHOD void Loop::dumpVerbose() const {
Sanjoy Das66a004a2017-09-20 01:12:09 +0000650 print(dbgs(), /*Depth=*/0, /*Verbose=*/true);
Sebastian Pop18c964d2016-07-27 05:02:17 +0000651}
Manman Renc3366cc2012-09-06 19:55:56 +0000652#endif
Dan Gohmanc3f21372010-01-05 21:08:02 +0000653
Chris Lattner26750072002-07-27 01:12:17 +0000654//===----------------------------------------------------------------------===//
Andrew Trickd3530b92011-08-10 23:22:57 +0000655// UnloopUpdater implementation
656//
657
Benjamin Kramer4938edb2011-08-19 01:42:18 +0000658namespace {
Andrew Trickd3530b92011-08-10 23:22:57 +0000659/// Find the new parent loop for all blocks within the "unloop" whose last
660/// backedges has just been removed.
661class UnloopUpdater {
Silviu Baranga24dbd2e2016-05-13 14:54:50 +0000662 Loop &Unloop;
Andrew Trickd3530b92011-08-10 23:22:57 +0000663 LoopInfo *LI;
664
665 LoopBlocksDFS DFS;
666
667 // Map unloop's immediate subloops to their nearest reachable parents. Nested
668 // loops within these subloops will not change parents. However, an immediate
669 // subloop's new parent will be the nearest loop reachable from either its own
670 // exits *or* any of its nested loop's exits.
Sanjoy Das66a004a2017-09-20 01:12:09 +0000671 DenseMap<Loop *, Loop *> SubloopParents;
Andrew Trickd3530b92011-08-10 23:22:57 +0000672
673 // Flag the presence of an irreducible backedge whose destination is a block
674 // directly contained by the original unloop.
675 bool FoundIB;
676
677public:
Sanjoy Das66a004a2017-09-20 01:12:09 +0000678 UnloopUpdater(Loop *UL, LoopInfo *LInfo)
679 : Unloop(*UL), LI(LInfo), DFS(UL), FoundIB(false) {}
Andrew Trickd3530b92011-08-10 23:22:57 +0000680
681 void updateBlockParents();
682
Andrew Trickc12c30a2011-08-11 20:27:32 +0000683 void removeBlocksFromAncestors();
684
Andrew Trickd3530b92011-08-10 23:22:57 +0000685 void updateSubloopParents();
686
687protected:
688 Loop *getNearestLoop(BasicBlock *BB, Loop *BBLoop);
689};
Benjamin Kramer4938edb2011-08-19 01:42:18 +0000690} // end anonymous namespace
Andrew Trickd3530b92011-08-10 23:22:57 +0000691
Sanjay Patel784b5e32016-01-14 23:23:04 +0000692/// Update the parent loop for all blocks that are directly contained within the
693/// original "unloop".
Andrew Trickd3530b92011-08-10 23:22:57 +0000694void UnloopUpdater::updateBlockParents() {
Silviu Baranga24dbd2e2016-05-13 14:54:50 +0000695 if (Unloop.getNumBlocks()) {
Andrew Trickd3530b92011-08-10 23:22:57 +0000696 // Perform a post order CFG traversal of all blocks within this loop,
Hiroshi Inoue713b5ba2017-07-09 05:54:44 +0000697 // propagating the nearest loop from successors to predecessors.
Andrew Trickd3530b92011-08-10 23:22:57 +0000698 LoopBlocksTraversal Traversal(DFS, LI);
Benjamin Krameraa209152016-06-26 17:27:42 +0000699 for (BasicBlock *POI : Traversal) {
Andrew Trickd3530b92011-08-10 23:22:57 +0000700
Benjamin Krameraa209152016-06-26 17:27:42 +0000701 Loop *L = LI->getLoopFor(POI);
702 Loop *NL = getNearestLoop(POI, L);
Andrew Trickd3530b92011-08-10 23:22:57 +0000703
704 if (NL != L) {
705 // For reducible loops, NL is now an ancestor of Unloop.
Silviu Baranga24dbd2e2016-05-13 14:54:50 +0000706 assert((NL != &Unloop && (!NL || NL->contains(&Unloop))) &&
Andrew Trickd3530b92011-08-10 23:22:57 +0000707 "uninitialized successor");
Benjamin Krameraa209152016-06-26 17:27:42 +0000708 LI->changeLoopFor(POI, NL);
Sanjoy Das66a004a2017-09-20 01:12:09 +0000709 } else {
Andrew Trickd3530b92011-08-10 23:22:57 +0000710 // Or the current block is part of a subloop, in which case its parent
711 // is unchanged.
Silviu Baranga24dbd2e2016-05-13 14:54:50 +0000712 assert((FoundIB || Unloop.contains(L)) && "uninitialized successor");
Andrew Trickd3530b92011-08-10 23:22:57 +0000713 }
714 }
715 }
716 // Each irreducible loop within the unloop induces a round of iteration using
717 // the DFS result cached by Traversal.
718 bool Changed = FoundIB;
719 for (unsigned NIters = 0; Changed; ++NIters) {
Silviu Baranga24dbd2e2016-05-13 14:54:50 +0000720 assert(NIters < Unloop.getNumBlocks() && "runaway iterative algorithm");
Andrew Trickd3530b92011-08-10 23:22:57 +0000721
722 // Iterate over the postorder list of blocks, propagating the nearest loop
723 // from successors to predecessors as before.
724 Changed = false;
725 for (LoopBlocksDFS::POIterator POI = DFS.beginPostorder(),
Sanjoy Das66a004a2017-09-20 01:12:09 +0000726 POE = DFS.endPostorder();
727 POI != POE; ++POI) {
Andrew Trickd3530b92011-08-10 23:22:57 +0000728
729 Loop *L = LI->getLoopFor(*POI);
730 Loop *NL = getNearestLoop(*POI, L);
731 if (NL != L) {
Silviu Baranga24dbd2e2016-05-13 14:54:50 +0000732 assert(NL != &Unloop && (!NL || NL->contains(&Unloop)) &&
Andrew Trickd3530b92011-08-10 23:22:57 +0000733 "uninitialized successor");
734 LI->changeLoopFor(*POI, NL);
735 Changed = true;
736 }
737 }
738 }
739}
740
Sanjay Patel784b5e32016-01-14 23:23:04 +0000741/// Remove unloop's blocks from all ancestors below their new parents.
Andrew Trickc12c30a2011-08-11 20:27:32 +0000742void UnloopUpdater::removeBlocksFromAncestors() {
Andrew Trick6b4d5782011-11-18 03:42:41 +0000743 // Remove all unloop's blocks (including those in nested subloops) from
744 // ancestors below the new parent loop.
Sanjoy Das66a004a2017-09-20 01:12:09 +0000745 for (Loop::block_iterator BI = Unloop.block_begin(), BE = Unloop.block_end();
746 BI != BE; ++BI) {
Andrew Trick6b4d5782011-11-18 03:42:41 +0000747 Loop *OuterParent = LI->getLoopFor(*BI);
Silviu Baranga24dbd2e2016-05-13 14:54:50 +0000748 if (Unloop.contains(OuterParent)) {
749 while (OuterParent->getParentLoop() != &Unloop)
Andrew Trick6b4d5782011-11-18 03:42:41 +0000750 OuterParent = OuterParent->getParentLoop();
751 OuterParent = SubloopParents[OuterParent];
752 }
Andrew Trickc12c30a2011-08-11 20:27:32 +0000753 // Remove blocks from former Ancestors except Unloop itself which will be
754 // deleted.
Silviu Baranga24dbd2e2016-05-13 14:54:50 +0000755 for (Loop *OldParent = Unloop.getParentLoop(); OldParent != OuterParent;
Andrew Trickc12c30a2011-08-11 20:27:32 +0000756 OldParent = OldParent->getParentLoop()) {
757 assert(OldParent && "new loop is not an ancestor of the original");
758 OldParent->removeBlockFromLoop(*BI);
759 }
760 }
761}
762
Sanjay Patel784b5e32016-01-14 23:23:04 +0000763/// Update the parent loop for all subloops directly nested within unloop.
Andrew Trickd3530b92011-08-10 23:22:57 +0000764void UnloopUpdater::updateSubloopParents() {
Silviu Baranga24dbd2e2016-05-13 14:54:50 +0000765 while (!Unloop.empty()) {
766 Loop *Subloop = *std::prev(Unloop.end());
767 Unloop.removeChildLoop(std::prev(Unloop.end()));
Andrew Trickd3530b92011-08-10 23:22:57 +0000768
769 assert(SubloopParents.count(Subloop) && "DFS failed to visit subloop");
Benjamin Kramerf29db272012-08-22 15:37:57 +0000770 if (Loop *Parent = SubloopParents[Subloop])
771 Parent->addChildLoop(Subloop);
Andrew Trick147d9cd2011-08-26 03:06:34 +0000772 else
773 LI->addTopLevelLoop(Subloop);
Andrew Trickd3530b92011-08-10 23:22:57 +0000774 }
775}
776
Sanjay Patel784b5e32016-01-14 23:23:04 +0000777/// Return the nearest parent loop among this block's successors. If a successor
778/// is a subloop header, consider its parent to be the nearest parent of the
779/// subloop's exits.
Andrew Trickd3530b92011-08-10 23:22:57 +0000780///
781/// For subloop blocks, simply update SubloopParents and return NULL.
782Loop *UnloopUpdater::getNearestLoop(BasicBlock *BB, Loop *BBLoop) {
783
Andrew Trick266ab102011-08-11 17:54:58 +0000784 // Initially for blocks directly contained by Unloop, NearLoop == Unloop and
785 // is considered uninitialized.
Andrew Trickd3530b92011-08-10 23:22:57 +0000786 Loop *NearLoop = BBLoop;
787
Craig Topper9f008862014-04-15 04:59:12 +0000788 Loop *Subloop = nullptr;
Silviu Baranga24dbd2e2016-05-13 14:54:50 +0000789 if (NearLoop != &Unloop && Unloop.contains(NearLoop)) {
Andrew Trickd3530b92011-08-10 23:22:57 +0000790 Subloop = NearLoop;
791 // Find the subloop ancestor that is directly contained within Unloop.
Silviu Baranga24dbd2e2016-05-13 14:54:50 +0000792 while (Subloop->getParentLoop() != &Unloop) {
Andrew Trickd3530b92011-08-10 23:22:57 +0000793 Subloop = Subloop->getParentLoop();
794 assert(Subloop && "subloop is not an ancestor of the original loop");
795 }
796 // Get the current nearest parent of the Subloop exits, initially Unloop.
David Majnemer0a16c222016-08-11 21:15:00 +0000797 NearLoop = SubloopParents.insert({Subloop, &Unloop}).first->second;
Andrew Trickd3530b92011-08-10 23:22:57 +0000798 }
799
800 succ_iterator I = succ_begin(BB), E = succ_end(BB);
801 if (I == E) {
802 assert(!Subloop && "subloop blocks must have a successor");
Craig Topper9f008862014-04-15 04:59:12 +0000803 NearLoop = nullptr; // unloop blocks may now exit the function.
Andrew Trickd3530b92011-08-10 23:22:57 +0000804 }
805 for (; I != E; ++I) {
806 if (*I == BB)
807 continue; // self loops are uninteresting
808
809 Loop *L = LI->getLoopFor(*I);
Silviu Baranga24dbd2e2016-05-13 14:54:50 +0000810 if (L == &Unloop) {
Andrew Trickd3530b92011-08-10 23:22:57 +0000811 // This successor has not been processed. This path must lead to an
812 // irreducible backedge.
813 assert((FoundIB || !DFS.hasPostorder(*I)) && "should have seen IB");
814 FoundIB = true;
815 }
Silviu Baranga24dbd2e2016-05-13 14:54:50 +0000816 if (L != &Unloop && Unloop.contains(L)) {
Andrew Trickd3530b92011-08-10 23:22:57 +0000817 // Successor is in a subloop.
818 if (Subloop)
819 continue; // Branching within subloops. Ignore it.
820
821 // BB branches from the original into a subloop header.
Silviu Baranga24dbd2e2016-05-13 14:54:50 +0000822 assert(L->getParentLoop() == &Unloop && "cannot skip into nested loops");
Andrew Trickd3530b92011-08-10 23:22:57 +0000823
824 // Get the current nearest parent of the Subloop's exits.
825 L = SubloopParents[L];
826 // L could be Unloop if the only exit was an irreducible backedge.
827 }
Silviu Baranga24dbd2e2016-05-13 14:54:50 +0000828 if (L == &Unloop) {
Andrew Trickd3530b92011-08-10 23:22:57 +0000829 continue;
830 }
831 // Handle critical edges from Unloop into a sibling loop.
Silviu Baranga24dbd2e2016-05-13 14:54:50 +0000832 if (L && !L->contains(&Unloop)) {
Andrew Trickd3530b92011-08-10 23:22:57 +0000833 L = L->getParentLoop();
834 }
835 // Remember the nearest parent loop among successors or subloop exits.
Silviu Baranga24dbd2e2016-05-13 14:54:50 +0000836 if (NearLoop == &Unloop || !NearLoop || NearLoop->contains(L))
Andrew Trickd3530b92011-08-10 23:22:57 +0000837 NearLoop = L;
838 }
839 if (Subloop) {
840 SubloopParents[Subloop] = NearLoop;
841 return BBLoop;
842 }
843 return NearLoop;
844}
845
Sanjoy Das66a004a2017-09-20 01:12:09 +0000846LoopInfo::LoopInfo(const DomTreeBase<BasicBlock> &DomTree) { analyze(DomTree); }
Cong Hou9b4f6b22015-07-16 23:23:35 +0000847
Chandler Carruthca68a3e2017-01-15 06:32:49 +0000848bool LoopInfo::invalidate(Function &F, const PreservedAnalyses &PA,
849 FunctionAnalysisManager::Invalidator &) {
850 // Check whether the analysis, all analyses on functions, or the function's
851 // CFG have been preserved.
852 auto PAC = PA.getChecker<LoopAnalysis>();
853 return !(PAC.preserved() || PAC.preservedSet<AllAnalysesOn<Function>>() ||
854 PAC.preservedSet<CFGAnalyses>());
855}
856
Sanjoy Das388b0122017-09-22 01:47:41 +0000857void LoopInfo::erase(Loop *Unloop) {
Sanjoy Das76ab2322017-09-19 23:19:00 +0000858 assert(!Unloop->isInvalid() && "Loop has already been erased!");
Andrew Trickd3530b92011-08-10 23:22:57 +0000859
Sanjoy Dasdef17292017-09-28 02:45:42 +0000860 auto InvalidateOnExit = make_scope_exit([&]() { destroy(Unloop); });
Sanjoy Das09613b12017-09-20 02:31:57 +0000861
Andrew Trickd3530b92011-08-10 23:22:57 +0000862 // First handle the special case of no parent loop to simplify the algorithm.
863 if (!Unloop->getParentLoop()) {
864 // Since BBLoop had no parent, Unloop blocks are no longer in a loop.
865 for (Loop::block_iterator I = Unloop->block_begin(),
Chandler Carruth691addc2015-01-18 01:25:51 +0000866 E = Unloop->block_end();
867 I != E; ++I) {
Andrew Trickd3530b92011-08-10 23:22:57 +0000868
869 // Don't reparent blocks in subloops.
870 if (getLoopFor(*I) != Unloop)
871 continue;
872
873 // Blocks no longer have a parent but are still referenced by Unloop until
874 // the Unloop object is deleted.
Chandler Carruth691addc2015-01-18 01:25:51 +0000875 changeLoopFor(*I, nullptr);
Andrew Trickd3530b92011-08-10 23:22:57 +0000876 }
877
878 // Remove the loop from the top-level LoopInfo object.
Chandler Carruth691addc2015-01-18 01:25:51 +0000879 for (iterator I = begin();; ++I) {
880 assert(I != end() && "Couldn't find loop");
Andrew Trickd3530b92011-08-10 23:22:57 +0000881 if (*I == Unloop) {
Chandler Carruth691addc2015-01-18 01:25:51 +0000882 removeLoop(I);
Andrew Trickd3530b92011-08-10 23:22:57 +0000883 break;
884 }
885 }
886
887 // Move all of the subloops to the top-level.
888 while (!Unloop->empty())
Chandler Carruth691addc2015-01-18 01:25:51 +0000889 addTopLevelLoop(Unloop->removeChildLoop(std::prev(Unloop->end())));
Andrew Trickd3530b92011-08-10 23:22:57 +0000890
891 return;
892 }
893
894 // Update the parent loop for all blocks within the loop. Blocks within
895 // subloops will not change parents.
896 UnloopUpdater Updater(Unloop, this);
897 Updater.updateBlockParents();
898
Andrew Trickc12c30a2011-08-11 20:27:32 +0000899 // Remove blocks from former ancestor loops.
900 Updater.removeBlocksFromAncestors();
Andrew Trickd3530b92011-08-10 23:22:57 +0000901
902 // Add direct subloops as children in their new parent loop.
903 Updater.updateSubloopParents();
904
905 // Remove unloop from its parent loop.
906 Loop *ParentLoop = Unloop->getParentLoop();
Duncan Sandsa41634e2011-08-12 14:54:45 +0000907 for (Loop::iterator I = ParentLoop->begin();; ++I) {
908 assert(I != ParentLoop->end() && "Couldn't find loop");
Andrew Trickd3530b92011-08-10 23:22:57 +0000909 if (*I == Unloop) {
910 ParentLoop->removeChildLoop(I);
911 break;
912 }
913 }
914}
915
Chandler Carruthdab4eae2016-11-23 17:53:26 +0000916AnalysisKey LoopAnalysis::Key;
NAKAMURA Takumidf0cd722016-02-28 17:17:00 +0000917
Sean Silva36e0d012016-08-09 00:28:15 +0000918LoopInfo LoopAnalysis::run(Function &F, FunctionAnalysisManager &AM) {
Chandler Carruthaaf0b4c2015-01-20 10:58:50 +0000919 // FIXME: Currently we create a LoopInfo from scratch for every function.
920 // This may prove to be too wasteful due to deallocating and re-allocating
921 // memory each time for the underlying map and vector datastructures. At some
922 // point it may prove worthwhile to use a freelist and recycle LoopInfo
923 // objects. I don't want to add that kind of complexity until the scope of
924 // the problem is better understood.
925 LoopInfo LI;
Chandler Carruthb47f8012016-03-11 11:05:24 +0000926 LI.analyze(AM.getResult<DominatorTreeAnalysis>(F));
Richard Trieu6ae37962015-04-30 23:07:00 +0000927 return LI;
Chandler Carruthaaf0b4c2015-01-20 10:58:50 +0000928}
929
930PreservedAnalyses LoopPrinterPass::run(Function &F,
Sean Silva36e0d012016-08-09 00:28:15 +0000931 FunctionAnalysisManager &AM) {
Chandler Carruthb47f8012016-03-11 11:05:24 +0000932 AM.getResult<LoopAnalysis>(F).print(OS);
Chandler Carruthaaf0b4c2015-01-20 10:58:50 +0000933 return PreservedAnalyses::all();
934}
935
Chandler Carruth410eaeb2017-01-11 06:23:21 +0000936void llvm::printLoop(Loop &L, raw_ostream &OS, const std::string &Banner) {
Fedor Sergeev3b459c32017-12-01 18:33:58 +0000937
938 if (forcePrintModuleIR()) {
939 // handling -print-module-scope
940 OS << Banner << " (loop: ";
941 L.getHeader()->printAsOperand(OS, false);
942 OS << ")\n";
943
944 // printing whole module
945 OS << *L.getHeader()->getModule();
946 return;
947 }
948
Justin Bognerc2b98f02015-11-04 22:24:08 +0000949 OS << Banner;
Fedor Sergeev61975b42017-11-22 20:59:53 +0000950
951 auto *PreHeader = L.getLoopPreheader();
952 if (PreHeader) {
953 OS << "\n; Preheader:";
954 PreHeader->print(OS);
955 OS << "\n; Loop:";
956 }
957
Justin Bognerc2b98f02015-11-04 22:24:08 +0000958 for (auto *Block : L.blocks())
959 if (Block)
960 Block->print(OS);
961 else
962 OS << "Printing <null> block";
Fedor Sergeev61975b42017-11-22 20:59:53 +0000963
964 SmallVector<BasicBlock *, 8> ExitBlocks;
965 L.getExitBlocks(ExitBlocks);
966 if (!ExitBlocks.empty()) {
967 OS << "\n; Exit blocks";
968 for (auto *Block : ExitBlocks)
969 if (Block)
970 Block->print(OS);
971 else
972 OS << "Printing <null> block";
973 }
Justin Bognerc2b98f02015-11-04 22:24:08 +0000974}
975
Michael Kruse978ba612018-12-20 04:58:07 +0000976MDNode *llvm::findOptionMDForLoopID(MDNode *LoopID, StringRef Name) {
977 // No loop metadata node, no loop properties.
978 if (!LoopID)
979 return nullptr;
980
981 // First operand should refer to the metadata node itself, for legacy reasons.
982 assert(LoopID->getNumOperands() > 0 && "requires at least one operand");
983 assert(LoopID->getOperand(0) == LoopID && "invalid loop id");
984
985 // Iterate over the metdata node operands and look for MDString metadata.
986 for (unsigned i = 1, e = LoopID->getNumOperands(); i < e; ++i) {
987 MDNode *MD = dyn_cast<MDNode>(LoopID->getOperand(i));
988 if (!MD || MD->getNumOperands() < 1)
989 continue;
990 MDString *S = dyn_cast<MDString>(MD->getOperand(0));
991 if (!S)
992 continue;
993 // Return the operand node if MDString holds expected metadata.
994 if (Name.equals(S->getString()))
995 return MD;
996 }
997
998 // Loop property not found.
999 return nullptr;
1000}
1001
1002MDNode *llvm::findOptionMDForLoop(const Loop *TheLoop, StringRef Name) {
1003 return findOptionMDForLoopID(TheLoop->getLoopID(), Name);
1004}
1005
1006bool llvm::isValidAsAccessGroup(MDNode *Node) {
1007 return Node->getNumOperands() == 0 && Node->isDistinct();
1008}
1009
Michael Kruse77a614a2019-02-11 19:45:44 +00001010MDNode *llvm::makePostTransformationMetadata(LLVMContext &Context,
1011 MDNode *OrigLoopID,
1012 ArrayRef<StringRef> RemovePrefixes,
1013 ArrayRef<MDNode *> AddAttrs) {
1014 // First remove any existing loop metadata related to this transformation.
1015 SmallVector<Metadata *, 4> MDs;
1016
1017 // Reserve first location for self reference to the LoopID metadata node.
1018 TempMDTuple TempNode = MDNode::getTemporary(Context, None);
1019 MDs.push_back(TempNode.get());
1020
1021 // Remove metadata for the transformation that has been applied or that became
1022 // outdated.
1023 if (OrigLoopID) {
1024 for (unsigned i = 1, ie = OrigLoopID->getNumOperands(); i < ie; ++i) {
1025 bool IsVectorMetadata = false;
1026 Metadata *Op = OrigLoopID->getOperand(i);
1027 if (MDNode *MD = dyn_cast<MDNode>(Op)) {
1028 const MDString *S = dyn_cast<MDString>(MD->getOperand(0));
1029 if (S)
1030 IsVectorMetadata =
1031 llvm::any_of(RemovePrefixes, [S](StringRef Prefix) -> bool {
1032 return S->getString().startswith(Prefix);
1033 });
1034 }
1035 if (!IsVectorMetadata)
1036 MDs.push_back(Op);
1037 }
1038 }
1039
1040 // Add metadata to avoid reapplying a transformation, such as
1041 // llvm.loop.unroll.disable and llvm.loop.isvectorized.
1042 MDs.append(AddAttrs.begin(), AddAttrs.end());
1043
1044 MDNode *NewLoopID = MDNode::getDistinct(Context, MDs);
1045 // Replace the temporary node with a self-reference.
1046 NewLoopID->replaceOperandWith(0, NewLoopID);
1047 return NewLoopID;
1048}
1049
Chandler Carruth4f8f3072015-01-17 14:16:18 +00001050//===----------------------------------------------------------------------===//
1051// LoopInfo implementation
1052//
1053
1054char LoopInfoWrapperPass::ID = 0;
1055INITIALIZE_PASS_BEGIN(LoopInfoWrapperPass, "loops", "Natural Loop Information",
1056 true, true)
1057INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
1058INITIALIZE_PASS_END(LoopInfoWrapperPass, "loops", "Natural Loop Information",
1059 true, true)
1060
1061bool LoopInfoWrapperPass::runOnFunction(Function &) {
1062 releaseMemory();
Cong Houd2c1d912015-07-16 18:23:57 +00001063 LI.analyze(getAnalysis<DominatorTreeWrapperPass>().getDomTree());
Chandler Carruth4f8f3072015-01-17 14:16:18 +00001064 return false;
1065}
1066
1067void LoopInfoWrapperPass::verifyAnalysis() const {
1068 // LoopInfoWrapperPass is a FunctionPass, but verifying every loop in the
1069 // function each time verifyAnalysis is called is very expensive. The
Dan Gohman4dbb3012009-09-28 00:27:48 +00001070 // -verify-loop-info option can enable this. In order to perform some
Chandler Carruth4f8f3072015-01-17 14:16:18 +00001071 // checking by default, LoopPass has been taught to call verifyLoop manually
1072 // during loop pass sequences.
Michael Zolotukhine0b2d972016-08-31 19:26:19 +00001073 if (VerifyLoopInfo) {
Serge Pavloved5eb932017-01-15 10:23:18 +00001074 auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
1075 LI.verify(DT);
Michael Zolotukhine0b2d972016-08-31 19:26:19 +00001076 }
Dan Gohman3ddbc242009-09-08 15:45:00 +00001077}
1078
Chandler Carruth4f8f3072015-01-17 14:16:18 +00001079void LoopInfoWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnerc8e66542002-04-27 06:56:12 +00001080 AU.setPreservesAll();
Evgeniy Stepanov6abd78c2019-07-17 23:31:59 +00001081 AU.addRequiredTransitive<DominatorTreeWrapperPass>();
Chris Lattnerccf571a2002-01-31 00:42:27 +00001082}
Chris Lattnerb1d782b2009-08-23 05:17:37 +00001083
Chandler Carruth4f8f3072015-01-17 14:16:18 +00001084void LoopInfoWrapperPass::print(raw_ostream &OS, const Module *) const {
Chandler Carruth691addc2015-01-18 01:25:51 +00001085 LI.print(OS);
Chris Lattnerb1d782b2009-08-23 05:17:37 +00001086}
1087
Sean Silvae3c18a52016-07-19 23:54:23 +00001088PreservedAnalyses LoopVerifierPass::run(Function &F,
Sean Silva36e0d012016-08-09 00:28:15 +00001089 FunctionAnalysisManager &AM) {
Sean Silvae3c18a52016-07-19 23:54:23 +00001090 LoopInfo &LI = AM.getResult<LoopAnalysis>(F);
Michael Zolotukhine0b2d972016-08-31 19:26:19 +00001091 auto &DT = AM.getResult<DominatorTreeAnalysis>(F);
1092 LI.verify(DT);
Sean Silvae3c18a52016-07-19 23:54:23 +00001093 return PreservedAnalyses::all();
1094}
1095
Andrew Trick78b40c32011-08-10 01:59:05 +00001096//===----------------------------------------------------------------------===//
1097// LoopBlocksDFS implementation
1098//
1099
1100/// Traverse the loop blocks and store the DFS result.
1101/// Useful for clients that just want the final DFS result and don't need to
1102/// visit blocks during the initial traversal.
1103void LoopBlocksDFS::perform(LoopInfo *LI) {
1104 LoopBlocksTraversal Traversal(*this, LI);
1105 for (LoopBlocksTraversal::POTIterator POI = Traversal.begin(),
Sanjoy Das66a004a2017-09-20 01:12:09 +00001106 POE = Traversal.end();
1107 POI != POE; ++POI)
1108 ;
Andrew Trick78b40c32011-08-10 01:59:05 +00001109}