1 //===----------------- LoopRotationUtils.cpp -----------------------------===//
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 provides utilities to convert a loop into a loop with bottom test.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "llvm/Transforms/Utils/LoopRotationUtils.h"
14 #include "llvm/ADT/Statistic.h"
15 #include "llvm/Analysis/AssumptionCache.h"
16 #include "llvm/Analysis/CodeMetrics.h"
17 #include "llvm/Analysis/DomTreeUpdater.h"
18 #include "llvm/Analysis/InstructionSimplify.h"
19 #include "llvm/Analysis/LoopInfo.h"
20 #include "llvm/Analysis/MemorySSA.h"
21 #include "llvm/Analysis/MemorySSAUpdater.h"
22 #include "llvm/Analysis/ScalarEvolution.h"
23 #include "llvm/Analysis/ValueTracking.h"
24 #include "llvm/IR/CFG.h"
25 #include "llvm/IR/DebugInfo.h"
26 #include "llvm/IR/Dominators.h"
27 #include "llvm/IR/IntrinsicInst.h"
28 #include "llvm/Support/CommandLine.h"
29 #include "llvm/Support/Debug.h"
30 #include "llvm/Support/raw_ostream.h"
31 #include "llvm/Transforms/Utils/BasicBlockUtils.h"
32 #include "llvm/Transforms/Utils/Cloning.h"
33 #include "llvm/Transforms/Utils/Local.h"
34 #include "llvm/Transforms/Utils/SSAUpdater.h"
35 #include "llvm/Transforms/Utils/ValueMapper.h"
36 using namespace llvm;
37 
38 #define DEBUG_TYPE "loop-rotate"
39 
40 STATISTIC(NumNotRotatedDueToHeaderSize,
41           "Number of loops not rotated due to the header size");
42 STATISTIC(NumInstrsHoisted,
43           "Number of instructions hoisted into loop preheader");
44 STATISTIC(NumInstrsDuplicated,
45           "Number of instructions cloned into loop preheader");
46 STATISTIC(NumRotated, "Number of loops rotated");
47 
48 static cl::opt<bool>
49     MultiRotate("loop-rotate-multi", cl::init(false), cl::Hidden,
50                 cl::desc("Allow loop rotation multiple times in order to reach "
51                          "a better latch exit"));
52 
53 namespace {
54 /// A simple loop rotation transformation.
55 class LoopRotate {
56   const unsigned MaxHeaderSize;
57   LoopInfo *LI;
58   const TargetTransformInfo *TTI;
59   AssumptionCache *AC;
60   DominatorTree *DT;
61   ScalarEvolution *SE;
62   MemorySSAUpdater *MSSAU;
63   const SimplifyQuery &SQ;
64   bool RotationOnly;
65   bool IsUtilMode;
66   bool PrepareForLTO;
67 
68 public:
69   LoopRotate(unsigned MaxHeaderSize, LoopInfo *LI,
70              const TargetTransformInfo *TTI, AssumptionCache *AC,
71              DominatorTree *DT, ScalarEvolution *SE, MemorySSAUpdater *MSSAU,
72              const SimplifyQuery &SQ, bool RotationOnly, bool IsUtilMode,
73              bool PrepareForLTO)
74       : MaxHeaderSize(MaxHeaderSize), LI(LI), TTI(TTI), AC(AC), DT(DT), SE(SE),
75         MSSAU(MSSAU), SQ(SQ), RotationOnly(RotationOnly),
76         IsUtilMode(IsUtilMode), PrepareForLTO(PrepareForLTO) {}
77   bool processLoop(Loop *L);
78 
79 private:
80   bool rotateLoop(Loop *L, bool SimplifiedLatch);
81   bool simplifyLoopLatch(Loop *L);
82 };
83 } // end anonymous namespace
84 
85 /// Insert (K, V) pair into the ValueToValueMap, and verify the key did not
86 /// previously exist in the map, and the value was inserted.
87 static void InsertNewValueIntoMap(ValueToValueMapTy &VM, Value *K, Value *V) {
88   bool Inserted = VM.insert({K, V}).second;
89   assert(Inserted);
90   (void)Inserted;
91 }
92 /// RewriteUsesOfClonedInstructions - We just cloned the instructions from the
93 /// old header into the preheader.  If there were uses of the values produced by
94 /// these instruction that were outside of the loop, we have to insert PHI nodes
95 /// to merge the two values.  Do this now.
96 static void RewriteUsesOfClonedInstructions(BasicBlock *OrigHeader,
97                                             BasicBlock *OrigPreheader,
98                                             ValueToValueMapTy &ValueMap,
99                                             ScalarEvolution *SE,
100                                 SmallVectorImpl<PHINode*> *InsertedPHIs) {
101   // Remove PHI node entries that are no longer live.
102   BasicBlock::iterator I, E = OrigHeader->end();
103   for (I = OrigHeader->begin(); PHINode *PN = dyn_cast<PHINode>(I); ++I)
104     PN->removeIncomingValue(PN->getBasicBlockIndex(OrigPreheader));
105 
106   // Now fix up users of the instructions in OrigHeader, inserting PHI nodes
107   // as necessary.
108   SSAUpdater SSA(InsertedPHIs);
109   for (I = OrigHeader->begin(); I != E; ++I) {
110     Value *OrigHeaderVal = &*I;
111 
112     // If there are no uses of the value (e.g. because it returns void), there
113     // is nothing to rewrite.
114     if (OrigHeaderVal->use_empty())
115       continue;
116 
117     Value *OrigPreHeaderVal = ValueMap.lookup(OrigHeaderVal);
118 
119     // The value now exits in two versions: the initial value in the preheader
120     // and the loop "next" value in the original header.
121     SSA.Initialize(OrigHeaderVal->getType(), OrigHeaderVal->getName());
122     // Force re-computation of OrigHeaderVal, as some users now need to use the
123     // new PHI node.
124     if (SE)
125       SE->forgetValue(OrigHeaderVal);
126     SSA.AddAvailableValue(OrigHeader, OrigHeaderVal);
127     SSA.AddAvailableValue(OrigPreheader, OrigPreHeaderVal);
128 
129     // Visit each use of the OrigHeader instruction.
130     for (Use &U : llvm::make_early_inc_range(OrigHeaderVal->uses())) {
131       // SSAUpdater can't handle a non-PHI use in the same block as an
132       // earlier def. We can easily handle those cases manually.
133       Instruction *UserInst = cast<Instruction>(U.getUser());
134       if (!isa<PHINode>(UserInst)) {
135         BasicBlock *UserBB = UserInst->getParent();
136 
137         // The original users in the OrigHeader are already using the
138         // original definitions.
139         if (UserBB == OrigHeader)
140           continue;
141 
142         // Users in the OrigPreHeader need to use the value to which the
143         // original definitions are mapped.
144         if (UserBB == OrigPreheader) {
145           U = OrigPreHeaderVal;
146           continue;
147         }
148       }
149 
150       // Anything else can be handled by SSAUpdater.
151       SSA.RewriteUse(U);
152     }
153 
154     // Replace MetadataAsValue(ValueAsMetadata(OrigHeaderVal)) uses in debug
155     // intrinsics.
156     SmallVector<DbgValueInst *, 1> DbgValues;
157     llvm::findDbgValues(DbgValues, OrigHeaderVal);
158     for (auto &DbgValue : DbgValues) {
159       // The original users in the OrigHeader are already using the original
160       // definitions.
161       BasicBlock *UserBB = DbgValue->getParent();
162       if (UserBB == OrigHeader)
163         continue;
164 
165       // Users in the OrigPreHeader need to use the value to which the
166       // original definitions are mapped and anything else can be handled by
167       // the SSAUpdater. To avoid adding PHINodes, check if the value is
168       // available in UserBB, if not substitute undef.
169       Value *NewVal;
170       if (UserBB == OrigPreheader)
171         NewVal = OrigPreHeaderVal;
172       else if (SSA.HasValueForBlock(UserBB))
173         NewVal = SSA.GetValueInMiddleOfBlock(UserBB);
174       else
175         NewVal = UndefValue::get(OrigHeaderVal->getType());
176       DbgValue->replaceVariableLocationOp(OrigHeaderVal, NewVal);
177     }
178   }
179 }
180 
181 // Assuming both header and latch are exiting, look for a phi which is only
182 // used outside the loop (via a LCSSA phi) in the exit from the header.
183 // This means that rotating the loop can remove the phi.
184 static bool profitableToRotateLoopExitingLatch(Loop *L) {
185   BasicBlock *Header = L->getHeader();
186   BranchInst *BI = dyn_cast<BranchInst>(Header->getTerminator());
187   assert(BI && BI->isConditional() && "need header with conditional exit");
188   BasicBlock *HeaderExit = BI->getSuccessor(0);
189   if (L->contains(HeaderExit))
190     HeaderExit = BI->getSuccessor(1);
191 
192   for (auto &Phi : Header->phis()) {
193     // Look for uses of this phi in the loop/via exits other than the header.
194     if (llvm::any_of(Phi.users(), [HeaderExit](const User *U) {
195           return cast<Instruction>(U)->getParent() != HeaderExit;
196         }))
197       continue;
198     return true;
199   }
200   return false;
201 }
202 
203 // Check that latch exit is deoptimizing (which means - very unlikely to happen)
204 // and there is another exit from the loop which is non-deoptimizing.
205 // If we rotate latch to that exit our loop has a better chance of being fully
206 // canonical.
207 //
208 // It can give false positives in some rare cases.
209 static bool canRotateDeoptimizingLatchExit(Loop *L) {
210   BasicBlock *Latch = L->getLoopLatch();
211   assert(Latch && "need latch");
212   BranchInst *BI = dyn_cast<BranchInst>(Latch->getTerminator());
213   // Need normal exiting latch.
214   if (!BI || !BI->isConditional())
215     return false;
216 
217   BasicBlock *Exit = BI->getSuccessor(1);
218   if (L->contains(Exit))
219     Exit = BI->getSuccessor(0);
220 
221   // Latch exit is non-deoptimizing, no need to rotate.
222   if (!Exit->getPostdominatingDeoptimizeCall())
223     return false;
224 
225   SmallVector<BasicBlock *, 4> Exits;
226   L->getUniqueExitBlocks(Exits);
227   if (!Exits.empty()) {
228     // There is at least one non-deoptimizing exit.
229     //
230     // Note, that BasicBlock::getPostdominatingDeoptimizeCall is not exact,
231     // as it can conservatively return false for deoptimizing exits with
232     // complex enough control flow down to deoptimize call.
233     //
234     // That means here we can report success for a case where
235     // all exits are deoptimizing but one of them has complex enough
236     // control flow (e.g. with loops).
237     //
238     // That should be a very rare case and false positives for this function
239     // have compile-time effect only.
240     return any_of(Exits, [](const BasicBlock *BB) {
241       return !BB->getPostdominatingDeoptimizeCall();
242     });
243   }
244   return false;
245 }
246 
247 /// Rotate loop LP. Return true if the loop is rotated.
248 ///
249 /// \param SimplifiedLatch is true if the latch was just folded into the final
250 /// loop exit. In this case we may want to rotate even though the new latch is
251 /// now an exiting branch. This rotation would have happened had the latch not
252 /// been simplified. However, if SimplifiedLatch is false, then we avoid
253 /// rotating loops in which the latch exits to avoid excessive or endless
254 /// rotation. LoopRotate should be repeatable and converge to a canonical
255 /// form. This property is satisfied because simplifying the loop latch can only
256 /// happen once across multiple invocations of the LoopRotate pass.
257 ///
258 /// If -loop-rotate-multi is enabled we can do multiple rotations in one go
259 /// so to reach a suitable (non-deoptimizing) exit.
260 bool LoopRotate::rotateLoop(Loop *L, bool SimplifiedLatch) {
261   // If the loop has only one block then there is not much to rotate.
262   if (L->getBlocks().size() == 1)
263     return false;
264 
265   bool Rotated = false;
266   do {
267     BasicBlock *OrigHeader = L->getHeader();
268     BasicBlock *OrigLatch = L->getLoopLatch();
269 
270     BranchInst *BI = dyn_cast<BranchInst>(OrigHeader->getTerminator());
271     if (!BI || BI->isUnconditional())
272       return Rotated;
273 
274     // If the loop header is not one of the loop exiting blocks then
275     // either this loop is already rotated or it is not
276     // suitable for loop rotation transformations.
277     if (!L->isLoopExiting(OrigHeader))
278       return Rotated;
279 
280     // If the loop latch already contains a branch that leaves the loop then the
281     // loop is already rotated.
282     if (!OrigLatch)
283       return Rotated;
284 
285     // Rotate if either the loop latch does *not* exit the loop, or if the loop
286     // latch was just simplified. Or if we think it will be profitable.
287     if (L->isLoopExiting(OrigLatch) && !SimplifiedLatch && IsUtilMode == false &&
288         !profitableToRotateLoopExitingLatch(L) &&
289         !canRotateDeoptimizingLatchExit(L))
290       return Rotated;
291 
292     // Check size of original header and reject loop if it is very big or we can't
293     // duplicate blocks inside it.
294     {
295       SmallPtrSet<const Value *, 32> EphValues;
296       CodeMetrics::collectEphemeralValues(L, AC, EphValues);
297 
298       CodeMetrics Metrics;
299       Metrics.analyzeBasicBlock(OrigHeader, *TTI, EphValues, PrepareForLTO);
300       if (Metrics.notDuplicatable) {
301         LLVM_DEBUG(
302                    dbgs() << "LoopRotation: NOT rotating - contains non-duplicatable"
303                    << " instructions: ";
304                    L->dump());
305         return Rotated;
306       }
307       if (Metrics.convergent) {
308         LLVM_DEBUG(dbgs() << "LoopRotation: NOT rotating - contains convergent "
309                    "instructions: ";
310                    L->dump());
311         return Rotated;
312       }
313       if (Metrics.NumInsts > MaxHeaderSize) {
314         LLVM_DEBUG(dbgs() << "LoopRotation: NOT rotating - contains "
315                           << Metrics.NumInsts
316                           << " instructions, which is more than the threshold ("
317                           << MaxHeaderSize << " instructions): ";
318                    L->dump());
319         ++NumNotRotatedDueToHeaderSize;
320         return Rotated;
321       }
322 
323       // When preparing for LTO, avoid rotating loops with calls that could be
324       // inlined during the LTO stage.
325       if (PrepareForLTO && Metrics.NumInlineCandidates > 0)
326         return Rotated;
327     }
328 
329     // Now, this loop is suitable for rotation.
330     BasicBlock *OrigPreheader = L->getLoopPreheader();
331 
332     // If the loop could not be converted to canonical form, it must have an
333     // indirectbr in it, just give up.
334     if (!OrigPreheader || !L->hasDedicatedExits())
335       return Rotated;
336 
337     // Anything ScalarEvolution may know about this loop or the PHI nodes
338     // in its header will soon be invalidated. We should also invalidate
339     // all outer loops because insertion and deletion of blocks that happens
340     // during the rotation may violate invariants related to backedge taken
341     // infos in them.
342     if (SE)
343       SE->forgetTopmostLoop(L);
344 
345     LLVM_DEBUG(dbgs() << "LoopRotation: rotating "; L->dump());
346     if (MSSAU && VerifyMemorySSA)
347       MSSAU->getMemorySSA()->verifyMemorySSA();
348 
349     // Find new Loop header. NewHeader is a Header's one and only successor
350     // that is inside loop.  Header's other successor is outside the
351     // loop.  Otherwise loop is not suitable for rotation.
352     BasicBlock *Exit = BI->getSuccessor(0);
353     BasicBlock *NewHeader = BI->getSuccessor(1);
354     if (L->contains(Exit))
355       std::swap(Exit, NewHeader);
356     assert(NewHeader && "Unable to determine new loop header");
357     assert(L->contains(NewHeader) && !L->contains(Exit) &&
358            "Unable to determine loop header and exit blocks");
359 
360     // This code assumes that the new header has exactly one predecessor.
361     // Remove any single-entry PHI nodes in it.
362     assert(NewHeader->getSinglePredecessor() &&
363            "New header doesn't have one pred!");
364     FoldSingleEntryPHINodes(NewHeader);
365 
366     // Begin by walking OrigHeader and populating ValueMap with an entry for
367     // each Instruction.
368     BasicBlock::iterator I = OrigHeader->begin(), E = OrigHeader->end();
369     ValueToValueMapTy ValueMap, ValueMapMSSA;
370 
371     // For PHI nodes, the value available in OldPreHeader is just the
372     // incoming value from OldPreHeader.
373     for (; PHINode *PN = dyn_cast<PHINode>(I); ++I)
374       InsertNewValueIntoMap(ValueMap, PN,
375                             PN->getIncomingValueForBlock(OrigPreheader));
376 
377     // For the rest of the instructions, either hoist to the OrigPreheader if
378     // possible or create a clone in the OldPreHeader if not.
379     Instruction *LoopEntryBranch = OrigPreheader->getTerminator();
380 
381     // Record all debug intrinsics preceding LoopEntryBranch to avoid
382     // duplication.
383     using DbgIntrinsicHash =
384         std::pair<std::pair<hash_code, DILocalVariable *>, DIExpression *>;
385     auto makeHash = [](DbgVariableIntrinsic *D) -> DbgIntrinsicHash {
386       auto VarLocOps = D->location_ops();
387       return {{hash_combine_range(VarLocOps.begin(), VarLocOps.end()),
388                D->getVariable()},
389               D->getExpression()};
390     };
391     SmallDenseSet<DbgIntrinsicHash, 8> DbgIntrinsics;
392     for (Instruction &I : llvm::drop_begin(llvm::reverse(*OrigPreheader))) {
393       if (auto *DII = dyn_cast<DbgVariableIntrinsic>(&I))
394         DbgIntrinsics.insert(makeHash(DII));
395       else
396         break;
397     }
398 
399     // Remember the local noalias scope declarations in the header. After the
400     // rotation, they must be duplicated and the scope must be cloned. This
401     // avoids unwanted interaction across iterations.
402     SmallVector<NoAliasScopeDeclInst *, 6> NoAliasDeclInstructions;
403     for (Instruction &I : *OrigHeader)
404       if (auto *Decl = dyn_cast<NoAliasScopeDeclInst>(&I))
405         NoAliasDeclInstructions.push_back(Decl);
406 
407     while (I != E) {
408       Instruction *Inst = &*I++;
409 
410       // If the instruction's operands are invariant and it doesn't read or write
411       // memory, then it is safe to hoist.  Doing this doesn't change the order of
412       // execution in the preheader, but does prevent the instruction from
413       // executing in each iteration of the loop.  This means it is safe to hoist
414       // something that might trap, but isn't safe to hoist something that reads
415       // memory (without proving that the loop doesn't write).
416       if (L->hasLoopInvariantOperands(Inst) && !Inst->mayReadFromMemory() &&
417           !Inst->mayWriteToMemory() && !Inst->isTerminator() &&
418           !isa<DbgInfoIntrinsic>(Inst) && !isa<AllocaInst>(Inst)) {
419         Inst->moveBefore(LoopEntryBranch);
420         ++NumInstrsHoisted;
421         continue;
422       }
423 
424       // Otherwise, create a duplicate of the instruction.
425       Instruction *C = Inst->clone();
426       ++NumInstrsDuplicated;
427 
428       // Eagerly remap the operands of the instruction.
429       RemapInstruction(C, ValueMap,
430                        RF_NoModuleLevelChanges | RF_IgnoreMissingLocals);
431 
432       // Avoid inserting the same intrinsic twice.
433       if (auto *DII = dyn_cast<DbgVariableIntrinsic>(C))
434         if (DbgIntrinsics.count(makeHash(DII))) {
435           C->deleteValue();
436           continue;
437         }
438 
439       // With the operands remapped, see if the instruction constant folds or is
440       // otherwise simplifyable.  This commonly occurs because the entry from PHI
441       // nodes allows icmps and other instructions to fold.
442       Value *V = SimplifyInstruction(C, SQ);
443       if (V && LI->replacementPreservesLCSSAForm(C, V)) {
444         // If so, then delete the temporary instruction and stick the folded value
445         // in the map.
446         InsertNewValueIntoMap(ValueMap, Inst, V);
447         if (!C->mayHaveSideEffects()) {
448           C->deleteValue();
449           C = nullptr;
450         }
451       } else {
452         InsertNewValueIntoMap(ValueMap, Inst, C);
453       }
454       if (C) {
455         // Otherwise, stick the new instruction into the new block!
456         C->setName(Inst->getName());
457         C->insertBefore(LoopEntryBranch);
458 
459         if (auto *II = dyn_cast<AssumeInst>(C))
460           AC->registerAssumption(II);
461         // MemorySSA cares whether the cloned instruction was inserted or not, and
462         // not whether it can be remapped to a simplified value.
463         if (MSSAU)
464           InsertNewValueIntoMap(ValueMapMSSA, Inst, C);
465       }
466     }
467 
468     if (!NoAliasDeclInstructions.empty()) {
469       // There are noalias scope declarations:
470       // (general):
471       // Original:    OrigPre              { OrigHeader NewHeader ... Latch }
472       // after:      (OrigPre+OrigHeader') { NewHeader ... Latch OrigHeader }
473       //
474       // with D: llvm.experimental.noalias.scope.decl,
475       //      U: !noalias or !alias.scope depending on D
476       //       ... { D U1 U2 }   can transform into:
477       // (0) : ... { D U1 U2 }        // no relevant rotation for this part
478       // (1) : ... D' { U1 U2 D }     // D is part of OrigHeader
479       // (2) : ... D' U1' { U2 D U1 } // D, U1 are part of OrigHeader
480       //
481       // We now want to transform:
482       // (1) -> : ... D' { D U1 U2 D'' }
483       // (2) -> : ... D' U1' { D U2 D'' U1'' }
484       // D: original llvm.experimental.noalias.scope.decl
485       // D', U1': duplicate with replaced scopes
486       // D'', U1'': different duplicate with replaced scopes
487       // This ensures a safe fallback to 'may_alias' introduced by the rotate,
488       // as U1'' and U1' scopes will not be compatible wrt to the local restrict
489 
490       // Clone the llvm.experimental.noalias.decl again for the NewHeader.
491       Instruction *NewHeaderInsertionPoint = &(*NewHeader->getFirstNonPHI());
492       for (NoAliasScopeDeclInst *NAD : NoAliasDeclInstructions) {
493         LLVM_DEBUG(dbgs() << "  Cloning llvm.experimental.noalias.scope.decl:"
494                           << *NAD << "\n");
495         Instruction *NewNAD = NAD->clone();
496         NewNAD->insertBefore(NewHeaderInsertionPoint);
497       }
498 
499       // Scopes must now be duplicated, once for OrigHeader and once for
500       // OrigPreHeader'.
501       {
502         auto &Context = NewHeader->getContext();
503 
504         SmallVector<MDNode *, 8> NoAliasDeclScopes;
505         for (NoAliasScopeDeclInst *NAD : NoAliasDeclInstructions)
506           NoAliasDeclScopes.push_back(NAD->getScopeList());
507 
508         LLVM_DEBUG(dbgs() << "  Updating OrigHeader scopes\n");
509         cloneAndAdaptNoAliasScopes(NoAliasDeclScopes, {OrigHeader}, Context,
510                                    "h.rot");
511         LLVM_DEBUG(OrigHeader->dump());
512 
513         // Keep the compile time impact low by only adapting the inserted block
514         // of instructions in the OrigPreHeader. This might result in slightly
515         // more aliasing between these instructions and those that were already
516         // present, but it will be much faster when the original PreHeader is
517         // large.
518         LLVM_DEBUG(dbgs() << "  Updating part of OrigPreheader scopes\n");
519         auto *FirstDecl =
520             cast<Instruction>(ValueMap[*NoAliasDeclInstructions.begin()]);
521         auto *LastInst = &OrigPreheader->back();
522         cloneAndAdaptNoAliasScopes(NoAliasDeclScopes, FirstDecl, LastInst,
523                                    Context, "pre.rot");
524         LLVM_DEBUG(OrigPreheader->dump());
525 
526         LLVM_DEBUG(dbgs() << "  Updated NewHeader:\n");
527         LLVM_DEBUG(NewHeader->dump());
528       }
529     }
530 
531     // Along with all the other instructions, we just cloned OrigHeader's
532     // terminator into OrigPreHeader. Fix up the PHI nodes in each of OrigHeader's
533     // successors by duplicating their incoming values for OrigHeader.
534     for (BasicBlock *SuccBB : successors(OrigHeader))
535       for (BasicBlock::iterator BI = SuccBB->begin();
536            PHINode *PN = dyn_cast<PHINode>(BI); ++BI)
537         PN->addIncoming(PN->getIncomingValueForBlock(OrigHeader), OrigPreheader);
538 
539     // Now that OrigPreHeader has a clone of OrigHeader's terminator, remove
540     // OrigPreHeader's old terminator (the original branch into the loop), and
541     // remove the corresponding incoming values from the PHI nodes in OrigHeader.
542     LoopEntryBranch->eraseFromParent();
543 
544     // Update MemorySSA before the rewrite call below changes the 1:1
545     // instruction:cloned_instruction_or_value mapping.
546     if (MSSAU) {
547       InsertNewValueIntoMap(ValueMapMSSA, OrigHeader, OrigPreheader);
548       MSSAU->updateForClonedBlockIntoPred(OrigHeader, OrigPreheader,
549                                           ValueMapMSSA);
550     }
551 
552     SmallVector<PHINode*, 2> InsertedPHIs;
553     // If there were any uses of instructions in the duplicated block outside the
554     // loop, update them, inserting PHI nodes as required
555     RewriteUsesOfClonedInstructions(OrigHeader, OrigPreheader, ValueMap, SE,
556                                     &InsertedPHIs);
557 
558     // Attach dbg.value intrinsics to the new phis if that phi uses a value that
559     // previously had debug metadata attached. This keeps the debug info
560     // up-to-date in the loop body.
561     if (!InsertedPHIs.empty())
562       insertDebugValuesForPHIs(OrigHeader, InsertedPHIs);
563 
564     // NewHeader is now the header of the loop.
565     L->moveToHeader(NewHeader);
566     assert(L->getHeader() == NewHeader && "Latch block is our new header");
567 
568     // Inform DT about changes to the CFG.
569     if (DT) {
570       // The OrigPreheader branches to the NewHeader and Exit now. Then, inform
571       // the DT about the removed edge to the OrigHeader (that got removed).
572       SmallVector<DominatorTree::UpdateType, 3> Updates;
573       Updates.push_back({DominatorTree::Insert, OrigPreheader, Exit});
574       Updates.push_back({DominatorTree::Insert, OrigPreheader, NewHeader});
575       Updates.push_back({DominatorTree::Delete, OrigPreheader, OrigHeader});
576 
577       if (MSSAU) {
578         MSSAU->applyUpdates(Updates, *DT, /*UpdateDT=*/true);
579         if (VerifyMemorySSA)
580           MSSAU->getMemorySSA()->verifyMemorySSA();
581       } else {
582         DT->applyUpdates(Updates);
583       }
584     }
585 
586     // At this point, we've finished our major CFG changes.  As part of cloning
587     // the loop into the preheader we've simplified instructions and the
588     // duplicated conditional branch may now be branching on a constant.  If it is
589     // branching on a constant and if that constant means that we enter the loop,
590     // then we fold away the cond branch to an uncond branch.  This simplifies the
591     // loop in cases important for nested loops, and it also means we don't have
592     // to split as many edges.
593     BranchInst *PHBI = cast<BranchInst>(OrigPreheader->getTerminator());
594     assert(PHBI->isConditional() && "Should be clone of BI condbr!");
595     if (!isa<ConstantInt>(PHBI->getCondition()) ||
596         PHBI->getSuccessor(cast<ConstantInt>(PHBI->getCondition())->isZero()) !=
597         NewHeader) {
598       // The conditional branch can't be folded, handle the general case.
599       // Split edges as necessary to preserve LoopSimplify form.
600 
601       // Right now OrigPreHeader has two successors, NewHeader and ExitBlock, and
602       // thus is not a preheader anymore.
603       // Split the edge to form a real preheader.
604       BasicBlock *NewPH = SplitCriticalEdge(
605                                             OrigPreheader, NewHeader,
606                                             CriticalEdgeSplittingOptions(DT, LI, MSSAU).setPreserveLCSSA());
607       NewPH->setName(NewHeader->getName() + ".lr.ph");
608 
609       // Preserve canonical loop form, which means that 'Exit' should have only
610       // one predecessor. Note that Exit could be an exit block for multiple
611       // nested loops, causing both of the edges to now be critical and need to
612       // be split.
613       SmallVector<BasicBlock *, 4> ExitPreds(predecessors(Exit));
614       bool SplitLatchEdge = false;
615       for (BasicBlock *ExitPred : ExitPreds) {
616         // We only need to split loop exit edges.
617         Loop *PredLoop = LI->getLoopFor(ExitPred);
618         if (!PredLoop || PredLoop->contains(Exit) ||
619             ExitPred->getTerminator()->isIndirectTerminator())
620           continue;
621         SplitLatchEdge |= L->getLoopLatch() == ExitPred;
622         BasicBlock *ExitSplit = SplitCriticalEdge(
623                                                   ExitPred, Exit,
624                                                   CriticalEdgeSplittingOptions(DT, LI, MSSAU).setPreserveLCSSA());
625         ExitSplit->moveBefore(Exit);
626       }
627       assert(SplitLatchEdge &&
628              "Despite splitting all preds, failed to split latch exit?");
629       (void)SplitLatchEdge;
630     } else {
631       // We can fold the conditional branch in the preheader, this makes things
632       // simpler. The first step is to remove the extra edge to the Exit block.
633       Exit->removePredecessor(OrigPreheader, true /*preserve LCSSA*/);
634       BranchInst *NewBI = BranchInst::Create(NewHeader, PHBI);
635       NewBI->setDebugLoc(PHBI->getDebugLoc());
636       PHBI->eraseFromParent();
637 
638       // With our CFG finalized, update DomTree if it is available.
639       if (DT) DT->deleteEdge(OrigPreheader, Exit);
640 
641       // Update MSSA too, if available.
642       if (MSSAU)
643         MSSAU->removeEdge(OrigPreheader, Exit);
644     }
645 
646     assert(L->getLoopPreheader() && "Invalid loop preheader after loop rotation");
647     assert(L->getLoopLatch() && "Invalid loop latch after loop rotation");
648 
649     if (MSSAU && VerifyMemorySSA)
650       MSSAU->getMemorySSA()->verifyMemorySSA();
651 
652     // Now that the CFG and DomTree are in a consistent state again, try to merge
653     // the OrigHeader block into OrigLatch.  This will succeed if they are
654     // connected by an unconditional branch.  This is just a cleanup so the
655     // emitted code isn't too gross in this common case.
656     DomTreeUpdater DTU(DT, DomTreeUpdater::UpdateStrategy::Eager);
657     BasicBlock *PredBB = OrigHeader->getUniquePredecessor();
658     bool DidMerge = MergeBlockIntoPredecessor(OrigHeader, &DTU, LI, MSSAU);
659     if (DidMerge)
660       RemoveRedundantDbgInstrs(PredBB);
661 
662     if (MSSAU && VerifyMemorySSA)
663       MSSAU->getMemorySSA()->verifyMemorySSA();
664 
665     LLVM_DEBUG(dbgs() << "LoopRotation: into "; L->dump());
666 
667     ++NumRotated;
668 
669     Rotated = true;
670     SimplifiedLatch = false;
671 
672     // Check that new latch is a deoptimizing exit and then repeat rotation if possible.
673     // Deoptimizing latch exit is not a generally typical case, so we just loop over.
674     // TODO: if it becomes a performance bottleneck extend rotation algorithm
675     // to handle multiple rotations in one go.
676   } while (MultiRotate && canRotateDeoptimizingLatchExit(L));
677 
678 
679   return true;
680 }
681 
682 /// Determine whether the instructions in this range may be safely and cheaply
683 /// speculated. This is not an important enough situation to develop complex
684 /// heuristics. We handle a single arithmetic instruction along with any type
685 /// conversions.
686 static bool shouldSpeculateInstrs(BasicBlock::iterator Begin,
687                                   BasicBlock::iterator End, Loop *L) {
688   bool seenIncrement = false;
689   bool MultiExitLoop = false;
690 
691   if (!L->getExitingBlock())
692     MultiExitLoop = true;
693 
694   for (BasicBlock::iterator I = Begin; I != End; ++I) {
695 
696     if (!isSafeToSpeculativelyExecute(&*I))
697       return false;
698 
699     if (isa<DbgInfoIntrinsic>(I))
700       continue;
701 
702     switch (I->getOpcode()) {
703     default:
704       return false;
705     case Instruction::GetElementPtr:
706       // GEPs are cheap if all indices are constant.
707       if (!cast<GEPOperator>(I)->hasAllConstantIndices())
708         return false;
709       // fall-thru to increment case
710       LLVM_FALLTHROUGH;
711     case Instruction::Add:
712     case Instruction::Sub:
713     case Instruction::And:
714     case Instruction::Or:
715     case Instruction::Xor:
716     case Instruction::Shl:
717     case Instruction::LShr:
718     case Instruction::AShr: {
719       Value *IVOpnd =
720           !isa<Constant>(I->getOperand(0))
721               ? I->getOperand(0)
722               : !isa<Constant>(I->getOperand(1)) ? I->getOperand(1) : nullptr;
723       if (!IVOpnd)
724         return false;
725 
726       // If increment operand is used outside of the loop, this speculation
727       // could cause extra live range interference.
728       if (MultiExitLoop) {
729         for (User *UseI : IVOpnd->users()) {
730           auto *UserInst = cast<Instruction>(UseI);
731           if (!L->contains(UserInst))
732             return false;
733         }
734       }
735 
736       if (seenIncrement)
737         return false;
738       seenIncrement = true;
739       break;
740     }
741     case Instruction::Trunc:
742     case Instruction::ZExt:
743     case Instruction::SExt:
744       // ignore type conversions
745       break;
746     }
747   }
748   return true;
749 }
750 
751 /// Fold the loop tail into the loop exit by speculating the loop tail
752 /// instructions. Typically, this is a single post-increment. In the case of a
753 /// simple 2-block loop, hoisting the increment can be much better than
754 /// duplicating the entire loop header. In the case of loops with early exits,
755 /// rotation will not work anyway, but simplifyLoopLatch will put the loop in
756 /// canonical form so downstream passes can handle it.
757 ///
758 /// I don't believe this invalidates SCEV.
759 bool LoopRotate::simplifyLoopLatch(Loop *L) {
760   BasicBlock *Latch = L->getLoopLatch();
761   if (!Latch || Latch->hasAddressTaken())
762     return false;
763 
764   BranchInst *Jmp = dyn_cast<BranchInst>(Latch->getTerminator());
765   if (!Jmp || !Jmp->isUnconditional())
766     return false;
767 
768   BasicBlock *LastExit = Latch->getSinglePredecessor();
769   if (!LastExit || !L->isLoopExiting(LastExit))
770     return false;
771 
772   BranchInst *BI = dyn_cast<BranchInst>(LastExit->getTerminator());
773   if (!BI)
774     return false;
775 
776   if (!shouldSpeculateInstrs(Latch->begin(), Jmp->getIterator(), L))
777     return false;
778 
779   LLVM_DEBUG(dbgs() << "Folding loop latch " << Latch->getName() << " into "
780                     << LastExit->getName() << "\n");
781 
782   DomTreeUpdater DTU(DT, DomTreeUpdater::UpdateStrategy::Eager);
783   MergeBlockIntoPredecessor(Latch, &DTU, LI, MSSAU, nullptr,
784                             /*PredecessorWithTwoSuccessors=*/true);
785 
786   if (MSSAU && VerifyMemorySSA)
787     MSSAU->getMemorySSA()->verifyMemorySSA();
788 
789   return true;
790 }
791 
792 /// Rotate \c L, and return true if any modification was made.
793 bool LoopRotate::processLoop(Loop *L) {
794   // Save the loop metadata.
795   MDNode *LoopMD = L->getLoopID();
796 
797   bool SimplifiedLatch = false;
798 
799   // Simplify the loop latch before attempting to rotate the header
800   // upward. Rotation may not be needed if the loop tail can be folded into the
801   // loop exit.
802   if (!RotationOnly)
803     SimplifiedLatch = simplifyLoopLatch(L);
804 
805   bool MadeChange = rotateLoop(L, SimplifiedLatch);
806   assert((!MadeChange || L->isLoopExiting(L->getLoopLatch())) &&
807          "Loop latch should be exiting after loop-rotate.");
808 
809   // Restore the loop metadata.
810   // NB! We presume LoopRotation DOESN'T ADD its own metadata.
811   if ((MadeChange || SimplifiedLatch) && LoopMD)
812     L->setLoopID(LoopMD);
813 
814   return MadeChange || SimplifiedLatch;
815 }
816 
817 
818 /// The utility to convert a loop into a loop with bottom test.
819 bool llvm::LoopRotation(Loop *L, LoopInfo *LI, const TargetTransformInfo *TTI,
820                         AssumptionCache *AC, DominatorTree *DT,
821                         ScalarEvolution *SE, MemorySSAUpdater *MSSAU,
822                         const SimplifyQuery &SQ, bool RotationOnly = true,
823                         unsigned Threshold = unsigned(-1),
824                         bool IsUtilMode = true, bool PrepareForLTO) {
825   LoopRotate LR(Threshold, LI, TTI, AC, DT, SE, MSSAU, SQ, RotationOnly,
826                 IsUtilMode, PrepareForLTO);
827   return LR.processLoop(L);
828 }
829