1 //===- LoopInfo.cpp - Natural Loop Calculator -----------------------------===//
2 //
3 // 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
6 //
7 //===----------------------------------------------------------------------===//
8 //
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 
16 #include "llvm/Analysis/LoopInfo.h"
17 #include "llvm/ADT/DepthFirstIterator.h"
18 #include "llvm/ADT/ScopeExit.h"
19 #include "llvm/ADT/SmallPtrSet.h"
20 #include "llvm/Analysis/IVDescriptors.h"
21 #include "llvm/Analysis/LoopInfoImpl.h"
22 #include "llvm/Analysis/LoopIterator.h"
23 #include "llvm/Analysis/LoopNestAnalysis.h"
24 #include "llvm/Analysis/MemorySSA.h"
25 #include "llvm/Analysis/MemorySSAUpdater.h"
26 #include "llvm/Analysis/ScalarEvolutionExpressions.h"
27 #include "llvm/Analysis/ValueTracking.h"
28 #include "llvm/Config/llvm-config.h"
29 #include "llvm/IR/CFG.h"
30 #include "llvm/IR/Constants.h"
31 #include "llvm/IR/DebugLoc.h"
32 #include "llvm/IR/Dominators.h"
33 #include "llvm/IR/IRPrintingPasses.h"
34 #include "llvm/IR/Instructions.h"
35 #include "llvm/IR/LLVMContext.h"
36 #include "llvm/IR/Metadata.h"
37 #include "llvm/IR/PassManager.h"
38 #include "llvm/IR/PrintPasses.h"
39 #include "llvm/InitializePasses.h"
40 #include "llvm/Support/CommandLine.h"
41 #include "llvm/Support/Debug.h"
42 #include "llvm/Support/raw_ostream.h"
43 #include <algorithm>
44 using namespace llvm;
45 
46 // Explicitly instantiate methods in LoopInfoImpl.h for IR-level Loops.
47 template class llvm::LoopBase<BasicBlock, Loop>;
48 template class llvm::LoopInfoBase<BasicBlock, Loop>;
49 
50 // Always verify loopinfo if expensive checking is enabled.
51 #ifdef EXPENSIVE_CHECKS
52 bool llvm::VerifyLoopInfo = true;
53 #else
54 bool llvm::VerifyLoopInfo = false;
55 #endif
56 static cl::opt<bool, true>
57     VerifyLoopInfoX("verify-loop-info", cl::location(VerifyLoopInfo),
58                     cl::Hidden, cl::desc("Verify loop info (time consuming)"));
59 
60 //===----------------------------------------------------------------------===//
61 // Loop implementation
62 //
63 
64 bool Loop::isLoopInvariant(const Value *V) const {
65   if (const Instruction *I = dyn_cast<Instruction>(V))
66     return !contains(I);
67   return true; // All non-instructions are loop invariant
68 }
69 
70 bool Loop::hasLoopInvariantOperands(const Instruction *I) const {
71   return all_of(I->operands(), [this](Value *V) { return isLoopInvariant(V); });
72 }
73 
74 bool Loop::makeLoopInvariant(Value *V, bool &Changed, Instruction *InsertPt,
75                              MemorySSAUpdater *MSSAU) const {
76   if (Instruction *I = dyn_cast<Instruction>(V))
77     return makeLoopInvariant(I, Changed, InsertPt, MSSAU);
78   return true; // All non-instructions are loop-invariant.
79 }
80 
81 bool Loop::makeLoopInvariant(Instruction *I, bool &Changed,
82                              Instruction *InsertPt,
83                              MemorySSAUpdater *MSSAU) const {
84   // Test if the value is already loop-invariant.
85   if (isLoopInvariant(I))
86     return true;
87   if (!isSafeToSpeculativelyExecute(I))
88     return false;
89   if (I->mayReadFromMemory())
90     return false;
91   // EH block instructions are immobile.
92   if (I->isEHPad())
93     return false;
94   // Determine the insertion point, unless one was given.
95   if (!InsertPt) {
96     BasicBlock *Preheader = getLoopPreheader();
97     // Without a preheader, hoisting is not feasible.
98     if (!Preheader)
99       return false;
100     InsertPt = Preheader->getTerminator();
101   }
102   // Don't hoist instructions with loop-variant operands.
103   for (Value *Operand : I->operands())
104     if (!makeLoopInvariant(Operand, Changed, InsertPt, MSSAU))
105       return false;
106 
107   // Hoist.
108   I->moveBefore(InsertPt);
109   if (MSSAU)
110     if (auto *MUD = MSSAU->getMemorySSA()->getMemoryAccess(I))
111       MSSAU->moveToPlace(MUD, InsertPt->getParent(),
112                          MemorySSA::BeforeTerminator);
113 
114   // There is possibility of hoisting this instruction above some arbitrary
115   // condition. Any metadata defined on it can be control dependent on this
116   // condition. Conservatively strip it here so that we don't give any wrong
117   // information to the optimizer.
118   I->dropUnknownNonDebugMetadata();
119 
120   Changed = true;
121   return true;
122 }
123 
124 bool Loop::getIncomingAndBackEdge(BasicBlock *&Incoming,
125                                   BasicBlock *&Backedge) const {
126   BasicBlock *H = getHeader();
127 
128   Incoming = nullptr;
129   Backedge = nullptr;
130   pred_iterator PI = pred_begin(H);
131   assert(PI != pred_end(H) && "Loop must have at least one backedge!");
132   Backedge = *PI++;
133   if (PI == pred_end(H))
134     return false; // dead loop
135   Incoming = *PI++;
136   if (PI != pred_end(H))
137     return false; // multiple backedges?
138 
139   if (contains(Incoming)) {
140     if (contains(Backedge))
141       return false;
142     std::swap(Incoming, Backedge);
143   } else if (!contains(Backedge))
144     return false;
145 
146   assert(Incoming && Backedge && "expected non-null incoming and backedges");
147   return true;
148 }
149 
150 PHINode *Loop::getCanonicalInductionVariable() const {
151   BasicBlock *H = getHeader();
152 
153   BasicBlock *Incoming = nullptr, *Backedge = nullptr;
154   if (!getIncomingAndBackEdge(Incoming, Backedge))
155     return nullptr;
156 
157   // Loop over all of the PHI nodes, looking for a canonical indvar.
158   for (BasicBlock::iterator I = H->begin(); isa<PHINode>(I); ++I) {
159     PHINode *PN = cast<PHINode>(I);
160     if (ConstantInt *CI =
161             dyn_cast<ConstantInt>(PN->getIncomingValueForBlock(Incoming)))
162       if (CI->isZero())
163         if (Instruction *Inc =
164                 dyn_cast<Instruction>(PN->getIncomingValueForBlock(Backedge)))
165           if (Inc->getOpcode() == Instruction::Add && Inc->getOperand(0) == PN)
166             if (ConstantInt *CI = dyn_cast<ConstantInt>(Inc->getOperand(1)))
167               if (CI->isOne())
168                 return PN;
169   }
170   return nullptr;
171 }
172 
173 /// Get the latch condition instruction.
174 ICmpInst *Loop::getLatchCmpInst() const {
175   if (BasicBlock *Latch = getLoopLatch())
176     if (BranchInst *BI = dyn_cast_or_null<BranchInst>(Latch->getTerminator()))
177       if (BI->isConditional())
178         return dyn_cast<ICmpInst>(BI->getCondition());
179 
180   return nullptr;
181 }
182 
183 /// Return the final value of the loop induction variable if found.
184 static Value *findFinalIVValue(const Loop &L, const PHINode &IndVar,
185                                const Instruction &StepInst) {
186   ICmpInst *LatchCmpInst = L.getLatchCmpInst();
187   if (!LatchCmpInst)
188     return nullptr;
189 
190   Value *Op0 = LatchCmpInst->getOperand(0);
191   Value *Op1 = LatchCmpInst->getOperand(1);
192   if (Op0 == &IndVar || Op0 == &StepInst)
193     return Op1;
194 
195   if (Op1 == &IndVar || Op1 == &StepInst)
196     return Op0;
197 
198   return nullptr;
199 }
200 
201 Optional<Loop::LoopBounds> Loop::LoopBounds::getBounds(const Loop &L,
202                                                        PHINode &IndVar,
203                                                        ScalarEvolution &SE) {
204   InductionDescriptor IndDesc;
205   if (!InductionDescriptor::isInductionPHI(&IndVar, &L, &SE, IndDesc))
206     return None;
207 
208   Value *InitialIVValue = IndDesc.getStartValue();
209   Instruction *StepInst = IndDesc.getInductionBinOp();
210   if (!InitialIVValue || !StepInst)
211     return None;
212 
213   const SCEV *Step = IndDesc.getStep();
214   Value *StepInstOp1 = StepInst->getOperand(1);
215   Value *StepInstOp0 = StepInst->getOperand(0);
216   Value *StepValue = nullptr;
217   if (SE.getSCEV(StepInstOp1) == Step)
218     StepValue = StepInstOp1;
219   else if (SE.getSCEV(StepInstOp0) == Step)
220     StepValue = StepInstOp0;
221 
222   Value *FinalIVValue = findFinalIVValue(L, IndVar, *StepInst);
223   if (!FinalIVValue)
224     return None;
225 
226   return LoopBounds(L, *InitialIVValue, *StepInst, StepValue, *FinalIVValue,
227                     SE);
228 }
229 
230 using Direction = Loop::LoopBounds::Direction;
231 
232 ICmpInst::Predicate Loop::LoopBounds::getCanonicalPredicate() const {
233   BasicBlock *Latch = L.getLoopLatch();
234   assert(Latch && "Expecting valid latch");
235 
236   BranchInst *BI = dyn_cast_or_null<BranchInst>(Latch->getTerminator());
237   assert(BI && BI->isConditional() && "Expecting conditional latch branch");
238 
239   ICmpInst *LatchCmpInst = dyn_cast<ICmpInst>(BI->getCondition());
240   assert(LatchCmpInst &&
241          "Expecting the latch compare instruction to be a CmpInst");
242 
243   // Need to inverse the predicate when first successor is not the loop
244   // header
245   ICmpInst::Predicate Pred = (BI->getSuccessor(0) == L.getHeader())
246                                  ? LatchCmpInst->getPredicate()
247                                  : LatchCmpInst->getInversePredicate();
248 
249   if (LatchCmpInst->getOperand(0) == &getFinalIVValue())
250     Pred = ICmpInst::getSwappedPredicate(Pred);
251 
252   // Need to flip strictness of the predicate when the latch compare instruction
253   // is not using StepInst
254   if (LatchCmpInst->getOperand(0) == &getStepInst() ||
255       LatchCmpInst->getOperand(1) == &getStepInst())
256     return Pred;
257 
258   // Cannot flip strictness of NE and EQ
259   if (Pred != ICmpInst::ICMP_NE && Pred != ICmpInst::ICMP_EQ)
260     return ICmpInst::getFlippedStrictnessPredicate(Pred);
261 
262   Direction D = getDirection();
263   if (D == Direction::Increasing)
264     return ICmpInst::ICMP_SLT;
265 
266   if (D == Direction::Decreasing)
267     return ICmpInst::ICMP_SGT;
268 
269   // If cannot determine the direction, then unable to find the canonical
270   // predicate
271   return ICmpInst::BAD_ICMP_PREDICATE;
272 }
273 
274 Direction Loop::LoopBounds::getDirection() const {
275   if (const SCEVAddRecExpr *StepAddRecExpr =
276           dyn_cast<SCEVAddRecExpr>(SE.getSCEV(&getStepInst())))
277     if (const SCEV *StepRecur = StepAddRecExpr->getStepRecurrence(SE)) {
278       if (SE.isKnownPositive(StepRecur))
279         return Direction::Increasing;
280       if (SE.isKnownNegative(StepRecur))
281         return Direction::Decreasing;
282     }
283 
284   return Direction::Unknown;
285 }
286 
287 Optional<Loop::LoopBounds> Loop::getBounds(ScalarEvolution &SE) const {
288   if (PHINode *IndVar = getInductionVariable(SE))
289     return LoopBounds::getBounds(*this, *IndVar, SE);
290 
291   return None;
292 }
293 
294 PHINode *Loop::getInductionVariable(ScalarEvolution &SE) const {
295   if (!isLoopSimplifyForm())
296     return nullptr;
297 
298   BasicBlock *Header = getHeader();
299   assert(Header && "Expected a valid loop header");
300   ICmpInst *CmpInst = getLatchCmpInst();
301   if (!CmpInst)
302     return nullptr;
303 
304   Value *LatchCmpOp0 = CmpInst->getOperand(0);
305   Value *LatchCmpOp1 = CmpInst->getOperand(1);
306 
307   for (PHINode &IndVar : Header->phis()) {
308     InductionDescriptor IndDesc;
309     if (!InductionDescriptor::isInductionPHI(&IndVar, this, &SE, IndDesc))
310       continue;
311 
312     BasicBlock *Latch = getLoopLatch();
313     Value *StepInst = IndVar.getIncomingValueForBlock(Latch);
314 
315     // case 1:
316     // IndVar = phi[{InitialValue, preheader}, {StepInst, latch}]
317     // StepInst = IndVar + step
318     // cmp = StepInst < FinalValue
319     if (StepInst == LatchCmpOp0 || StepInst == LatchCmpOp1)
320       return &IndVar;
321 
322     // case 2:
323     // IndVar = phi[{InitialValue, preheader}, {StepInst, latch}]
324     // StepInst = IndVar + step
325     // cmp = IndVar < FinalValue
326     if (&IndVar == LatchCmpOp0 || &IndVar == LatchCmpOp1)
327       return &IndVar;
328   }
329 
330   return nullptr;
331 }
332 
333 bool Loop::getInductionDescriptor(ScalarEvolution &SE,
334                                   InductionDescriptor &IndDesc) const {
335   if (PHINode *IndVar = getInductionVariable(SE))
336     return InductionDescriptor::isInductionPHI(IndVar, this, &SE, IndDesc);
337 
338   return false;
339 }
340 
341 bool Loop::isAuxiliaryInductionVariable(PHINode &AuxIndVar,
342                                         ScalarEvolution &SE) const {
343   // Located in the loop header
344   BasicBlock *Header = getHeader();
345   if (AuxIndVar.getParent() != Header)
346     return false;
347 
348   // No uses outside of the loop
349   for (User *U : AuxIndVar.users())
350     if (const Instruction *I = dyn_cast<Instruction>(U))
351       if (!contains(I))
352         return false;
353 
354   InductionDescriptor IndDesc;
355   if (!InductionDescriptor::isInductionPHI(&AuxIndVar, this, &SE, IndDesc))
356     return false;
357 
358   // The step instruction opcode should be add or sub.
359   if (IndDesc.getInductionOpcode() != Instruction::Add &&
360       IndDesc.getInductionOpcode() != Instruction::Sub)
361     return false;
362 
363   // Incremented by a loop invariant step for each loop iteration
364   return SE.isLoopInvariant(IndDesc.getStep(), this);
365 }
366 
367 BranchInst *Loop::getLoopGuardBranch() const {
368   if (!isLoopSimplifyForm())
369     return nullptr;
370 
371   BasicBlock *Preheader = getLoopPreheader();
372   assert(Preheader && getLoopLatch() &&
373          "Expecting a loop with valid preheader and latch");
374 
375   // Loop should be in rotate form.
376   if (!isRotatedForm())
377     return nullptr;
378 
379   // Disallow loops with more than one unique exit block, as we do not verify
380   // that GuardOtherSucc post dominates all exit blocks.
381   BasicBlock *ExitFromLatch = getUniqueExitBlock();
382   if (!ExitFromLatch)
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 
399   // Check if ExitFromLatch (or any BasicBlock which is an empty unique
400   // successor of ExitFromLatch) is equal to GuardOtherSucc. If
401   // skipEmptyBlockUntil returns GuardOtherSucc, then the guard branch for the
402   // loop is GuardBI (return GuardBI), otherwise return nullptr.
403   if (&LoopNest::skipEmptyBlockUntil(ExitFromLatch, GuardOtherSucc,
404                                      /*CheckUniquePred=*/true) ==
405       GuardOtherSucc)
406     return GuardBI;
407   else
408     return nullptr;
409 }
410 
411 bool Loop::isCanonical(ScalarEvolution &SE) const {
412   InductionDescriptor IndDesc;
413   if (!getInductionDescriptor(SE, IndDesc))
414     return false;
415 
416   ConstantInt *Init = dyn_cast_or_null<ConstantInt>(IndDesc.getStartValue());
417   if (!Init || !Init->isZero())
418     return false;
419 
420   if (IndDesc.getInductionOpcode() != Instruction::Add)
421     return false;
422 
423   ConstantInt *Step = IndDesc.getConstIntStepValue();
424   if (!Step || !Step->isOne())
425     return false;
426 
427   return true;
428 }
429 
430 // Check that 'BB' doesn't have any uses outside of the 'L'
431 static bool isBlockInLCSSAForm(const Loop &L, const BasicBlock &BB,
432                                const DominatorTree &DT) {
433   for (const Instruction &I : BB) {
434     // Tokens can't be used in PHI nodes and live-out tokens prevent loop
435     // optimizations, so for the purposes of considered LCSSA form, we
436     // can ignore them.
437     if (I.getType()->isTokenTy())
438       continue;
439 
440     for (const Use &U : I.uses()) {
441       const Instruction *UI = cast<Instruction>(U.getUser());
442       const BasicBlock *UserBB = UI->getParent();
443 
444       // For practical purposes, we consider that the use in a PHI
445       // occurs in the respective predecessor block. For more info,
446       // see the `phi` doc in LangRef and the LCSSA doc.
447       if (const PHINode *P = dyn_cast<PHINode>(UI))
448         UserBB = P->getIncomingBlock(U);
449 
450       // Check the current block, as a fast-path, before checking whether
451       // the use is anywhere in the loop.  Most values are used in the same
452       // block they are defined in.  Also, blocks not reachable from the
453       // entry are special; uses in them don't need to go through PHIs.
454       if (UserBB != &BB && !L.contains(UserBB) &&
455           DT.isReachableFromEntry(UserBB))
456         return false;
457     }
458   }
459   return true;
460 }
461 
462 bool Loop::isLCSSAForm(const DominatorTree &DT) const {
463   // For each block we check that it doesn't have any uses outside of this loop.
464   return all_of(this->blocks(), [&](const BasicBlock *BB) {
465     return isBlockInLCSSAForm(*this, *BB, DT);
466   });
467 }
468 
469 bool Loop::isRecursivelyLCSSAForm(const DominatorTree &DT,
470                                   const LoopInfo &LI) const {
471   // For each block we check that it doesn't have any uses outside of its
472   // innermost loop. This process will transitively guarantee that the current
473   // loop and all of the nested loops are in LCSSA form.
474   return all_of(this->blocks(), [&](const BasicBlock *BB) {
475     return isBlockInLCSSAForm(*LI.getLoopFor(BB), *BB, DT);
476   });
477 }
478 
479 bool Loop::isLoopSimplifyForm() const {
480   // Normal-form loops have a preheader, a single backedge, and all of their
481   // exits have all their predecessors inside the loop.
482   return getLoopPreheader() && getLoopLatch() && hasDedicatedExits();
483 }
484 
485 // Routines that reform the loop CFG and split edges often fail on indirectbr.
486 bool Loop::isSafeToClone() const {
487   // Return false if any loop blocks contain indirectbrs, or there are any calls
488   // to noduplicate functions.
489   // FIXME: it should be ok to clone CallBrInst's if we correctly update the
490   // operand list to reflect the newly cloned labels.
491   for (BasicBlock *BB : this->blocks()) {
492     if (isa<IndirectBrInst>(BB->getTerminator()) ||
493         isa<CallBrInst>(BB->getTerminator()))
494       return false;
495 
496     for (Instruction &I : *BB)
497       if (auto *CB = dyn_cast<CallBase>(&I))
498         if (CB->cannotDuplicate())
499           return false;
500   }
501   return true;
502 }
503 
504 MDNode *Loop::getLoopID() const {
505   MDNode *LoopID = nullptr;
506 
507   // Go through the latch blocks and check the terminator for the metadata.
508   SmallVector<BasicBlock *, 4> LatchesBlocks;
509   getLoopLatches(LatchesBlocks);
510   for (BasicBlock *BB : LatchesBlocks) {
511     Instruction *TI = BB->getTerminator();
512     MDNode *MD = TI->getMetadata(LLVMContext::MD_loop);
513 
514     if (!MD)
515       return nullptr;
516 
517     if (!LoopID)
518       LoopID = MD;
519     else if (MD != LoopID)
520       return nullptr;
521   }
522   if (!LoopID || LoopID->getNumOperands() == 0 ||
523       LoopID->getOperand(0) != LoopID)
524     return nullptr;
525   return LoopID;
526 }
527 
528 void Loop::setLoopID(MDNode *LoopID) const {
529   assert((!LoopID || LoopID->getNumOperands() > 0) &&
530          "Loop ID needs at least one operand");
531   assert((!LoopID || LoopID->getOperand(0) == LoopID) &&
532          "Loop ID should refer to itself");
533 
534   SmallVector<BasicBlock *, 4> LoopLatches;
535   getLoopLatches(LoopLatches);
536   for (BasicBlock *BB : LoopLatches)
537     BB->getTerminator()->setMetadata(LLVMContext::MD_loop, LoopID);
538 }
539 
540 void Loop::setLoopAlreadyUnrolled() {
541   LLVMContext &Context = getHeader()->getContext();
542 
543   MDNode *DisableUnrollMD =
544       MDNode::get(Context, MDString::get(Context, "llvm.loop.unroll.disable"));
545   MDNode *LoopID = getLoopID();
546   MDNode *NewLoopID = makePostTransformationMetadata(
547       Context, LoopID, {"llvm.loop.unroll."}, {DisableUnrollMD});
548   setLoopID(NewLoopID);
549 }
550 
551 void Loop::setLoopMustProgress() {
552   LLVMContext &Context = getHeader()->getContext();
553 
554   MDNode *MustProgress = findOptionMDForLoop(this, "llvm.loop.mustprogress");
555 
556   if (MustProgress)
557     return;
558 
559   MDNode *MustProgressMD =
560       MDNode::get(Context, MDString::get(Context, "llvm.loop.mustprogress"));
561   MDNode *LoopID = getLoopID();
562   MDNode *NewLoopID =
563       makePostTransformationMetadata(Context, LoopID, {}, {MustProgressMD});
564   setLoopID(NewLoopID);
565 }
566 
567 bool Loop::isAnnotatedParallel() const {
568   MDNode *DesiredLoopIdMetadata = getLoopID();
569 
570   if (!DesiredLoopIdMetadata)
571     return false;
572 
573   MDNode *ParallelAccesses =
574       findOptionMDForLoop(this, "llvm.loop.parallel_accesses");
575   SmallPtrSet<MDNode *, 4>
576       ParallelAccessGroups; // For scalable 'contains' check.
577   if (ParallelAccesses) {
578     for (const MDOperand &MD : drop_begin(ParallelAccesses->operands())) {
579       MDNode *AccGroup = cast<MDNode>(MD.get());
580       assert(isValidAsAccessGroup(AccGroup) &&
581              "List item must be an access group");
582       ParallelAccessGroups.insert(AccGroup);
583     }
584   }
585 
586   // The loop branch contains the parallel loop metadata. In order to ensure
587   // that any parallel-loop-unaware optimization pass hasn't added loop-carried
588   // dependencies (thus converted the loop back to a sequential loop), check
589   // that all the memory instructions in the loop belong to an access group that
590   // is parallel to this loop.
591   for (BasicBlock *BB : this->blocks()) {
592     for (Instruction &I : *BB) {
593       if (!I.mayReadOrWriteMemory())
594         continue;
595 
596       if (MDNode *AccessGroup = I.getMetadata(LLVMContext::MD_access_group)) {
597         auto ContainsAccessGroup = [&ParallelAccessGroups](MDNode *AG) -> bool {
598           if (AG->getNumOperands() == 0) {
599             assert(isValidAsAccessGroup(AG) && "Item must be an access group");
600             return ParallelAccessGroups.count(AG);
601           }
602 
603           for (const MDOperand &AccessListItem : AG->operands()) {
604             MDNode *AccGroup = cast<MDNode>(AccessListItem.get());
605             assert(isValidAsAccessGroup(AccGroup) &&
606                    "List item must be an access group");
607             if (ParallelAccessGroups.count(AccGroup))
608               return true;
609           }
610           return false;
611         };
612 
613         if (ContainsAccessGroup(AccessGroup))
614           continue;
615       }
616 
617       // The memory instruction can refer to the loop identifier metadata
618       // directly or indirectly through another list metadata (in case of
619       // nested parallel loops). The loop identifier metadata refers to
620       // itself so we can check both cases with the same routine.
621       MDNode *LoopIdMD =
622           I.getMetadata(LLVMContext::MD_mem_parallel_loop_access);
623 
624       if (!LoopIdMD)
625         return false;
626 
627       if (!llvm::is_contained(LoopIdMD->operands(), DesiredLoopIdMetadata))
628         return false;
629     }
630   }
631   return true;
632 }
633 
634 DebugLoc Loop::getStartLoc() const { return getLocRange().getStart(); }
635 
636 Loop::LocRange Loop::getLocRange() const {
637   // If we have a debug location in the loop ID, then use it.
638   if (MDNode *LoopID = getLoopID()) {
639     DebugLoc Start;
640     // We use the first DebugLoc in the header as the start location of the loop
641     // and if there is a second DebugLoc in the header we use it as end location
642     // of the loop.
643     for (unsigned i = 1, ie = LoopID->getNumOperands(); i < ie; ++i) {
644       if (DILocation *L = dyn_cast<DILocation>(LoopID->getOperand(i))) {
645         if (!Start)
646           Start = DebugLoc(L);
647         else
648           return LocRange(Start, DebugLoc(L));
649       }
650     }
651 
652     if (Start)
653       return LocRange(Start);
654   }
655 
656   // Try the pre-header first.
657   if (BasicBlock *PHeadBB = getLoopPreheader())
658     if (DebugLoc DL = PHeadBB->getTerminator()->getDebugLoc())
659       return LocRange(DL);
660 
661   // If we have no pre-header or there are no instructions with debug
662   // info in it, try the header.
663   if (BasicBlock *HeadBB = getHeader())
664     return LocRange(HeadBB->getTerminator()->getDebugLoc());
665 
666   return LocRange();
667 }
668 
669 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
670 LLVM_DUMP_METHOD void Loop::dump() const { print(dbgs()); }
671 
672 LLVM_DUMP_METHOD void Loop::dumpVerbose() const {
673   print(dbgs(), /*Verbose=*/true);
674 }
675 #endif
676 
677 //===----------------------------------------------------------------------===//
678 // UnloopUpdater implementation
679 //
680 
681 namespace {
682 /// Find the new parent loop for all blocks within the "unloop" whose last
683 /// backedges has just been removed.
684 class UnloopUpdater {
685   Loop &Unloop;
686   LoopInfo *LI;
687 
688   LoopBlocksDFS DFS;
689 
690   // Map unloop's immediate subloops to their nearest reachable parents. Nested
691   // loops within these subloops will not change parents. However, an immediate
692   // subloop's new parent will be the nearest loop reachable from either its own
693   // exits *or* any of its nested loop's exits.
694   DenseMap<Loop *, Loop *> SubloopParents;
695 
696   // Flag the presence of an irreducible backedge whose destination is a block
697   // directly contained by the original unloop.
698   bool FoundIB = false;
699 
700 public:
701   UnloopUpdater(Loop *UL, LoopInfo *LInfo) : Unloop(*UL), LI(LInfo), DFS(UL) {}
702 
703   void updateBlockParents();
704 
705   void removeBlocksFromAncestors();
706 
707   void updateSubloopParents();
708 
709 protected:
710   Loop *getNearestLoop(BasicBlock *BB, Loop *BBLoop);
711 };
712 } // end anonymous namespace
713 
714 /// Update the parent loop for all blocks that are directly contained within the
715 /// original "unloop".
716 void UnloopUpdater::updateBlockParents() {
717   if (Unloop.getNumBlocks()) {
718     // Perform a post order CFG traversal of all blocks within this loop,
719     // propagating the nearest loop from successors to predecessors.
720     LoopBlocksTraversal Traversal(DFS, LI);
721     for (BasicBlock *POI : Traversal) {
722 
723       Loop *L = LI->getLoopFor(POI);
724       Loop *NL = getNearestLoop(POI, L);
725 
726       if (NL != L) {
727         // For reducible loops, NL is now an ancestor of Unloop.
728         assert((NL != &Unloop && (!NL || NL->contains(&Unloop))) &&
729                "uninitialized successor");
730         LI->changeLoopFor(POI, NL);
731       } else {
732         // Or the current block is part of a subloop, in which case its parent
733         // is unchanged.
734         assert((FoundIB || Unloop.contains(L)) && "uninitialized successor");
735       }
736     }
737   }
738   // Each irreducible loop within the unloop induces a round of iteration using
739   // the DFS result cached by Traversal.
740   bool Changed = FoundIB;
741   for (unsigned NIters = 0; Changed; ++NIters) {
742     assert(NIters < Unloop.getNumBlocks() && "runaway iterative algorithm");
743 
744     // Iterate over the postorder list of blocks, propagating the nearest loop
745     // from successors to predecessors as before.
746     Changed = false;
747     for (LoopBlocksDFS::POIterator POI = DFS.beginPostorder(),
748                                    POE = DFS.endPostorder();
749          POI != POE; ++POI) {
750 
751       Loop *L = LI->getLoopFor(*POI);
752       Loop *NL = getNearestLoop(*POI, L);
753       if (NL != L) {
754         assert(NL != &Unloop && (!NL || NL->contains(&Unloop)) &&
755                "uninitialized successor");
756         LI->changeLoopFor(*POI, NL);
757         Changed = true;
758       }
759     }
760   }
761 }
762 
763 /// Remove unloop's blocks from all ancestors below their new parents.
764 void UnloopUpdater::removeBlocksFromAncestors() {
765   // Remove all unloop's blocks (including those in nested subloops) from
766   // ancestors below the new parent loop.
767   for (BasicBlock *BB : Unloop.blocks()) {
768     Loop *OuterParent = LI->getLoopFor(BB);
769     if (Unloop.contains(OuterParent)) {
770       while (OuterParent->getParentLoop() != &Unloop)
771         OuterParent = OuterParent->getParentLoop();
772       OuterParent = SubloopParents[OuterParent];
773     }
774     // Remove blocks from former Ancestors except Unloop itself which will be
775     // deleted.
776     for (Loop *OldParent = Unloop.getParentLoop(); OldParent != OuterParent;
777          OldParent = OldParent->getParentLoop()) {
778       assert(OldParent && "new loop is not an ancestor of the original");
779       OldParent->removeBlockFromLoop(BB);
780     }
781   }
782 }
783 
784 /// Update the parent loop for all subloops directly nested within unloop.
785 void UnloopUpdater::updateSubloopParents() {
786   while (!Unloop.isInnermost()) {
787     Loop *Subloop = *std::prev(Unloop.end());
788     Unloop.removeChildLoop(std::prev(Unloop.end()));
789 
790     assert(SubloopParents.count(Subloop) && "DFS failed to visit subloop");
791     if (Loop *Parent = SubloopParents[Subloop])
792       Parent->addChildLoop(Subloop);
793     else
794       LI->addTopLevelLoop(Subloop);
795   }
796 }
797 
798 /// Return the nearest parent loop among this block's successors. If a successor
799 /// is a subloop header, consider its parent to be the nearest parent of the
800 /// subloop's exits.
801 ///
802 /// For subloop blocks, simply update SubloopParents and return NULL.
803 Loop *UnloopUpdater::getNearestLoop(BasicBlock *BB, Loop *BBLoop) {
804 
805   // Initially for blocks directly contained by Unloop, NearLoop == Unloop and
806   // is considered uninitialized.
807   Loop *NearLoop = BBLoop;
808 
809   Loop *Subloop = nullptr;
810   if (NearLoop != &Unloop && Unloop.contains(NearLoop)) {
811     Subloop = NearLoop;
812     // Find the subloop ancestor that is directly contained within Unloop.
813     while (Subloop->getParentLoop() != &Unloop) {
814       Subloop = Subloop->getParentLoop();
815       assert(Subloop && "subloop is not an ancestor of the original loop");
816     }
817     // Get the current nearest parent of the Subloop exits, initially Unloop.
818     NearLoop = SubloopParents.insert({Subloop, &Unloop}).first->second;
819   }
820 
821   succ_iterator I = succ_begin(BB), E = succ_end(BB);
822   if (I == E) {
823     assert(!Subloop && "subloop blocks must have a successor");
824     NearLoop = nullptr; // unloop blocks may now exit the function.
825   }
826   for (; I != E; ++I) {
827     if (*I == BB)
828       continue; // self loops are uninteresting
829 
830     Loop *L = LI->getLoopFor(*I);
831     if (L == &Unloop) {
832       // This successor has not been processed. This path must lead to an
833       // irreducible backedge.
834       assert((FoundIB || !DFS.hasPostorder(*I)) && "should have seen IB");
835       FoundIB = true;
836     }
837     if (L != &Unloop && Unloop.contains(L)) {
838       // Successor is in a subloop.
839       if (Subloop)
840         continue; // Branching within subloops. Ignore it.
841 
842       // BB branches from the original into a subloop header.
843       assert(L->getParentLoop() == &Unloop && "cannot skip into nested loops");
844 
845       // Get the current nearest parent of the Subloop's exits.
846       L = SubloopParents[L];
847       // L could be Unloop if the only exit was an irreducible backedge.
848     }
849     if (L == &Unloop) {
850       continue;
851     }
852     // Handle critical edges from Unloop into a sibling loop.
853     if (L && !L->contains(&Unloop)) {
854       L = L->getParentLoop();
855     }
856     // Remember the nearest parent loop among successors or subloop exits.
857     if (NearLoop == &Unloop || !NearLoop || NearLoop->contains(L))
858       NearLoop = L;
859   }
860   if (Subloop) {
861     SubloopParents[Subloop] = NearLoop;
862     return BBLoop;
863   }
864   return NearLoop;
865 }
866 
867 LoopInfo::LoopInfo(const DomTreeBase<BasicBlock> &DomTree) { analyze(DomTree); }
868 
869 bool LoopInfo::invalidate(Function &F, const PreservedAnalyses &PA,
870                           FunctionAnalysisManager::Invalidator &) {
871   // Check whether the analysis, all analyses on functions, or the function's
872   // CFG have been preserved.
873   auto PAC = PA.getChecker<LoopAnalysis>();
874   return !(PAC.preserved() || PAC.preservedSet<AllAnalysesOn<Function>>() ||
875            PAC.preservedSet<CFGAnalyses>());
876 }
877 
878 void LoopInfo::erase(Loop *Unloop) {
879   assert(!Unloop->isInvalid() && "Loop has already been erased!");
880 
881   auto InvalidateOnExit = make_scope_exit([&]() { destroy(Unloop); });
882 
883   // First handle the special case of no parent loop to simplify the algorithm.
884   if (Unloop->isOutermost()) {
885     // Since BBLoop had no parent, Unloop blocks are no longer in a loop.
886     for (BasicBlock *BB : Unloop->blocks()) {
887       // Don't reparent blocks in subloops.
888       if (getLoopFor(BB) != Unloop)
889         continue;
890 
891       // Blocks no longer have a parent but are still referenced by Unloop until
892       // the Unloop object is deleted.
893       changeLoopFor(BB, nullptr);
894     }
895 
896     // Remove the loop from the top-level LoopInfo object.
897     for (iterator I = begin();; ++I) {
898       assert(I != end() && "Couldn't find loop");
899       if (*I == Unloop) {
900         removeLoop(I);
901         break;
902       }
903     }
904 
905     // Move all of the subloops to the top-level.
906     while (!Unloop->isInnermost())
907       addTopLevelLoop(Unloop->removeChildLoop(std::prev(Unloop->end())));
908 
909     return;
910   }
911 
912   // Update the parent loop for all blocks within the loop. Blocks within
913   // subloops will not change parents.
914   UnloopUpdater Updater(Unloop, this);
915   Updater.updateBlockParents();
916 
917   // Remove blocks from former ancestor loops.
918   Updater.removeBlocksFromAncestors();
919 
920   // Add direct subloops as children in their new parent loop.
921   Updater.updateSubloopParents();
922 
923   // Remove unloop from its parent loop.
924   Loop *ParentLoop = Unloop->getParentLoop();
925   for (Loop::iterator I = ParentLoop->begin();; ++I) {
926     assert(I != ParentLoop->end() && "Couldn't find loop");
927     if (*I == Unloop) {
928       ParentLoop->removeChildLoop(I);
929       break;
930     }
931   }
932 }
933 
934 bool
935 LoopInfo::wouldBeOutOfLoopUseRequiringLCSSA(const Value *V,
936                                             const BasicBlock *ExitBB) const {
937   if (V->getType()->isTokenTy())
938     // We can't form PHIs of token type, so the definition of LCSSA excludes
939     // values of that type.
940     return false;
941 
942   const Instruction *I = dyn_cast<Instruction>(V);
943   if (!I)
944     return false;
945   const Loop *L = getLoopFor(I->getParent());
946   if (!L)
947     return false;
948   if (L->contains(ExitBB))
949     // Could be an exit bb of a subloop and contained in defining loop
950     return false;
951 
952   // We found a (new) out-of-loop use location, for a value defined in-loop.
953   // (Note that because of LCSSA, we don't have to account for values defined
954   // in sibling loops.  Such values will have LCSSA phis of their own in the
955   // common parent loop.)
956   return true;
957 }
958 
959 AnalysisKey LoopAnalysis::Key;
960 
961 LoopInfo LoopAnalysis::run(Function &F, FunctionAnalysisManager &AM) {
962   // FIXME: Currently we create a LoopInfo from scratch for every function.
963   // This may prove to be too wasteful due to deallocating and re-allocating
964   // memory each time for the underlying map and vector datastructures. At some
965   // point it may prove worthwhile to use a freelist and recycle LoopInfo
966   // objects. I don't want to add that kind of complexity until the scope of
967   // the problem is better understood.
968   LoopInfo LI;
969   LI.analyze(AM.getResult<DominatorTreeAnalysis>(F));
970   return LI;
971 }
972 
973 PreservedAnalyses LoopPrinterPass::run(Function &F,
974                                        FunctionAnalysisManager &AM) {
975   AM.getResult<LoopAnalysis>(F).print(OS);
976   return PreservedAnalyses::all();
977 }
978 
979 void llvm::printLoop(Loop &L, raw_ostream &OS, const std::string &Banner) {
980 
981   if (forcePrintModuleIR()) {
982     // handling -print-module-scope
983     OS << Banner << " (loop: ";
984     L.getHeader()->printAsOperand(OS, false);
985     OS << ")\n";
986 
987     // printing whole module
988     OS << *L.getHeader()->getModule();
989     return;
990   }
991 
992   OS << Banner;
993 
994   auto *PreHeader = L.getLoopPreheader();
995   if (PreHeader) {
996     OS << "\n; Preheader:";
997     PreHeader->print(OS);
998     OS << "\n; Loop:";
999   }
1000 
1001   for (auto *Block : L.blocks())
1002     if (Block)
1003       Block->print(OS);
1004     else
1005       OS << "Printing <null> block";
1006 
1007   SmallVector<BasicBlock *, 8> ExitBlocks;
1008   L.getExitBlocks(ExitBlocks);
1009   if (!ExitBlocks.empty()) {
1010     OS << "\n; Exit blocks";
1011     for (auto *Block : ExitBlocks)
1012       if (Block)
1013         Block->print(OS);
1014       else
1015         OS << "Printing <null> block";
1016   }
1017 }
1018 
1019 MDNode *llvm::findOptionMDForLoopID(MDNode *LoopID, StringRef Name) {
1020   // No loop metadata node, no loop properties.
1021   if (!LoopID)
1022     return nullptr;
1023 
1024   // First operand should refer to the metadata node itself, for legacy reasons.
1025   assert(LoopID->getNumOperands() > 0 && "requires at least one operand");
1026   assert(LoopID->getOperand(0) == LoopID && "invalid loop id");
1027 
1028   // Iterate over the metdata node operands and look for MDString metadata.
1029   for (unsigned i = 1, e = LoopID->getNumOperands(); i < e; ++i) {
1030     MDNode *MD = dyn_cast<MDNode>(LoopID->getOperand(i));
1031     if (!MD || MD->getNumOperands() < 1)
1032       continue;
1033     MDString *S = dyn_cast<MDString>(MD->getOperand(0));
1034     if (!S)
1035       continue;
1036     // Return the operand node if MDString holds expected metadata.
1037     if (Name.equals(S->getString()))
1038       return MD;
1039   }
1040 
1041   // Loop property not found.
1042   return nullptr;
1043 }
1044 
1045 MDNode *llvm::findOptionMDForLoop(const Loop *TheLoop, StringRef Name) {
1046   return findOptionMDForLoopID(TheLoop->getLoopID(), Name);
1047 }
1048 
1049 /// Find string metadata for loop
1050 ///
1051 /// If it has a value (e.g. {"llvm.distribute", 1} return the value as an
1052 /// operand or null otherwise.  If the string metadata is not found return
1053 /// Optional's not-a-value.
1054 Optional<const MDOperand *> llvm::findStringMetadataForLoop(const Loop *TheLoop,
1055                                                             StringRef Name) {
1056   MDNode *MD = findOptionMDForLoop(TheLoop, Name);
1057   if (!MD)
1058     return None;
1059   switch (MD->getNumOperands()) {
1060   case 1:
1061     return nullptr;
1062   case 2:
1063     return &MD->getOperand(1);
1064   default:
1065     llvm_unreachable("loop metadata has 0 or 1 operand");
1066   }
1067 }
1068 
1069 Optional<bool> llvm::getOptionalBoolLoopAttribute(const Loop *TheLoop,
1070                                                   StringRef Name) {
1071   MDNode *MD = findOptionMDForLoop(TheLoop, Name);
1072   if (!MD)
1073     return None;
1074   switch (MD->getNumOperands()) {
1075   case 1:
1076     // When the value is absent it is interpreted as 'attribute set'.
1077     return true;
1078   case 2:
1079     if (ConstantInt *IntMD =
1080             mdconst::extract_or_null<ConstantInt>(MD->getOperand(1).get()))
1081       return IntMD->getZExtValue();
1082     return true;
1083   }
1084   llvm_unreachable("unexpected number of options");
1085 }
1086 
1087 bool llvm::getBooleanLoopAttribute(const Loop *TheLoop, StringRef Name) {
1088   return getOptionalBoolLoopAttribute(TheLoop, Name).getValueOr(false);
1089 }
1090 
1091 llvm::Optional<int> llvm::getOptionalIntLoopAttribute(const Loop *TheLoop,
1092                                                       StringRef Name) {
1093   const MDOperand *AttrMD =
1094       findStringMetadataForLoop(TheLoop, Name).getValueOr(nullptr);
1095   if (!AttrMD)
1096     return None;
1097 
1098   ConstantInt *IntMD = mdconst::extract_or_null<ConstantInt>(AttrMD->get());
1099   if (!IntMD)
1100     return None;
1101 
1102   return IntMD->getSExtValue();
1103 }
1104 
1105 int llvm::getIntLoopAttribute(const Loop *TheLoop, StringRef Name,
1106                               int Default) {
1107   return getOptionalIntLoopAttribute(TheLoop, Name).getValueOr(Default);
1108 }
1109 
1110 bool llvm::isFinite(const Loop *L) {
1111   return L->getHeader()->getParent()->willReturn();
1112 }
1113 
1114 static const char *LLVMLoopMustProgress = "llvm.loop.mustprogress";
1115 
1116 bool llvm::hasMustProgress(const Loop *L) {
1117   return getBooleanLoopAttribute(L, LLVMLoopMustProgress);
1118 }
1119 
1120 bool llvm::isMustProgress(const Loop *L) {
1121   return L->getHeader()->getParent()->mustProgress() || hasMustProgress(L);
1122 }
1123 
1124 bool llvm::isValidAsAccessGroup(MDNode *Node) {
1125   return Node->getNumOperands() == 0 && Node->isDistinct();
1126 }
1127 
1128 MDNode *llvm::makePostTransformationMetadata(LLVMContext &Context,
1129                                              MDNode *OrigLoopID,
1130                                              ArrayRef<StringRef> RemovePrefixes,
1131                                              ArrayRef<MDNode *> AddAttrs) {
1132   // First remove any existing loop metadata related to this transformation.
1133   SmallVector<Metadata *, 4> MDs;
1134 
1135   // Reserve first location for self reference to the LoopID metadata node.
1136   MDs.push_back(nullptr);
1137 
1138   // Remove metadata for the transformation that has been applied or that became
1139   // outdated.
1140   if (OrigLoopID) {
1141     for (unsigned i = 1, ie = OrigLoopID->getNumOperands(); i < ie; ++i) {
1142       bool IsVectorMetadata = false;
1143       Metadata *Op = OrigLoopID->getOperand(i);
1144       if (MDNode *MD = dyn_cast<MDNode>(Op)) {
1145         const MDString *S = dyn_cast<MDString>(MD->getOperand(0));
1146         if (S)
1147           IsVectorMetadata =
1148               llvm::any_of(RemovePrefixes, [S](StringRef Prefix) -> bool {
1149                 return S->getString().startswith(Prefix);
1150               });
1151       }
1152       if (!IsVectorMetadata)
1153         MDs.push_back(Op);
1154     }
1155   }
1156 
1157   // Add metadata to avoid reapplying a transformation, such as
1158   // llvm.loop.unroll.disable and llvm.loop.isvectorized.
1159   MDs.append(AddAttrs.begin(), AddAttrs.end());
1160 
1161   MDNode *NewLoopID = MDNode::getDistinct(Context, MDs);
1162   // Replace the temporary node with a self-reference.
1163   NewLoopID->replaceOperandWith(0, NewLoopID);
1164   return NewLoopID;
1165 }
1166 
1167 //===----------------------------------------------------------------------===//
1168 // LoopInfo implementation
1169 //
1170 
1171 LoopInfoWrapperPass::LoopInfoWrapperPass() : FunctionPass(ID) {
1172   initializeLoopInfoWrapperPassPass(*PassRegistry::getPassRegistry());
1173 }
1174 
1175 char LoopInfoWrapperPass::ID = 0;
1176 INITIALIZE_PASS_BEGIN(LoopInfoWrapperPass, "loops", "Natural Loop Information",
1177                       true, true)
1178 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
1179 INITIALIZE_PASS_END(LoopInfoWrapperPass, "loops", "Natural Loop Information",
1180                     true, true)
1181 
1182 bool LoopInfoWrapperPass::runOnFunction(Function &) {
1183   releaseMemory();
1184   LI.analyze(getAnalysis<DominatorTreeWrapperPass>().getDomTree());
1185   return false;
1186 }
1187 
1188 void LoopInfoWrapperPass::verifyAnalysis() const {
1189   // LoopInfoWrapperPass is a FunctionPass, but verifying every loop in the
1190   // function each time verifyAnalysis is called is very expensive. The
1191   // -verify-loop-info option can enable this. In order to perform some
1192   // checking by default, LoopPass has been taught to call verifyLoop manually
1193   // during loop pass sequences.
1194   if (VerifyLoopInfo) {
1195     auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
1196     LI.verify(DT);
1197   }
1198 }
1199 
1200 void LoopInfoWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const {
1201   AU.setPreservesAll();
1202   AU.addRequiredTransitive<DominatorTreeWrapperPass>();
1203 }
1204 
1205 void LoopInfoWrapperPass::print(raw_ostream &OS, const Module *) const {
1206   LI.print(OS);
1207 }
1208 
1209 PreservedAnalyses LoopVerifierPass::run(Function &F,
1210                                         FunctionAnalysisManager &AM) {
1211   LoopInfo &LI = AM.getResult<LoopAnalysis>(F);
1212   auto &DT = AM.getResult<DominatorTreeAnalysis>(F);
1213   LI.verify(DT);
1214   return PreservedAnalyses::all();
1215 }
1216 
1217 //===----------------------------------------------------------------------===//
1218 // LoopBlocksDFS implementation
1219 //
1220 
1221 /// Traverse the loop blocks and store the DFS result.
1222 /// Useful for clients that just want the final DFS result and don't need to
1223 /// visit blocks during the initial traversal.
1224 void LoopBlocksDFS::perform(LoopInfo *LI) {
1225   LoopBlocksTraversal Traversal(*this, LI);
1226   for (LoopBlocksTraversal::POTIterator POI = Traversal.begin(),
1227                                         POE = Traversal.end();
1228        POI != POE; ++POI)
1229     ;
1230 }
1231