1 //===-- LICM.cpp - Loop Invariant Code Motion Pass ------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This pass performs loop invariant code motion, attempting to remove as much
11 // code from the body of a loop as possible.  It does this by either hoisting
12 // code into the preheader block, or by sinking code to the exit blocks if it is
13 // safe.  This pass also promotes must-aliased memory locations in the loop to
14 // live in registers, thus hoisting and sinking "invariant" loads and stores.
15 //
16 // This pass uses alias analysis for two purposes:
17 //
18 //  1. Moving loop invariant loads and calls out of loops.  If we can determine
19 //     that a load or call inside of a loop never aliases anything stored to,
20 //     we can hoist it or sink it like any other instruction.
21 //  2. Scalar Promotion of Memory - If there is a store instruction inside of
22 //     the loop, we try to move the store to happen AFTER the loop instead of
23 //     inside of the loop.  This can only happen if a few conditions are true:
24 //       A. The pointer stored through is loop invariant
25 //       B. There are no stores or loads in the loop which _may_ alias the
26 //          pointer.  There are no calls in the loop which mod/ref the pointer.
27 //     If these conditions are true, we can promote the loads and stores in the
28 //     loop of the pointer to use a temporary alloca'd variable.  We then use
29 //     the SSAUpdater to construct the appropriate SSA form for the value.
30 //
31 //===----------------------------------------------------------------------===//
32 
33 #include "llvm/Transforms/Scalar/LICM.h"
34 #include "llvm/ADT/Statistic.h"
35 #include "llvm/Analysis/AliasAnalysis.h"
36 #include "llvm/Analysis/AliasSetTracker.h"
37 #include "llvm/Analysis/BasicAliasAnalysis.h"
38 #include "llvm/Analysis/CaptureTracking.h"
39 #include "llvm/Analysis/ConstantFolding.h"
40 #include "llvm/Analysis/GlobalsModRef.h"
41 #include "llvm/Analysis/GuardUtils.h"
42 #include "llvm/Analysis/Loads.h"
43 #include "llvm/Analysis/LoopInfo.h"
44 #include "llvm/Analysis/LoopPass.h"
45 #include "llvm/Analysis/MemoryBuiltins.h"
46 #include "llvm/Analysis/MemorySSA.h"
47 #include "llvm/Analysis/OptimizationRemarkEmitter.h"
48 #include "llvm/Analysis/ScalarEvolution.h"
49 #include "llvm/Analysis/ScalarEvolutionAliasAnalysis.h"
50 #include "llvm/Analysis/TargetLibraryInfo.h"
51 #include "llvm/Transforms/Utils/Local.h"
52 #include "llvm/Analysis/ValueTracking.h"
53 #include "llvm/IR/CFG.h"
54 #include "llvm/IR/Constants.h"
55 #include "llvm/IR/DataLayout.h"
56 #include "llvm/IR/DerivedTypes.h"
57 #include "llvm/IR/Dominators.h"
58 #include "llvm/IR/Instructions.h"
59 #include "llvm/IR/IntrinsicInst.h"
60 #include "llvm/IR/LLVMContext.h"
61 #include "llvm/IR/Metadata.h"
62 #include "llvm/IR/PatternMatch.h"
63 #include "llvm/IR/PredIteratorCache.h"
64 #include "llvm/Support/CommandLine.h"
65 #include "llvm/Support/Debug.h"
66 #include "llvm/Support/raw_ostream.h"
67 #include "llvm/Transforms/Scalar.h"
68 #include "llvm/Transforms/Scalar/LoopPassManager.h"
69 #include "llvm/Transforms/Utils/BasicBlockUtils.h"
70 #include "llvm/Transforms/Utils/LoopUtils.h"
71 #include "llvm/Transforms/Utils/SSAUpdater.h"
72 #include <algorithm>
73 #include <utility>
74 using namespace llvm;
75 
76 #define DEBUG_TYPE "licm"
77 
78 STATISTIC(NumSunk, "Number of instructions sunk out of loop");
79 STATISTIC(NumHoisted, "Number of instructions hoisted out of loop");
80 STATISTIC(NumMovedLoads, "Number of load insts hoisted or sunk");
81 STATISTIC(NumMovedCalls, "Number of call insts hoisted or sunk");
82 STATISTIC(NumPromoted, "Number of memory locations promoted to registers");
83 
84 /// Memory promotion is enabled by default.
85 static cl::opt<bool>
86     DisablePromotion("disable-licm-promotion", cl::Hidden, cl::init(false),
87                      cl::desc("Disable memory promotion in LICM pass"));
88 
89 static cl::opt<uint32_t> MaxNumUsesTraversed(
90     "licm-max-num-uses-traversed", cl::Hidden, cl::init(8),
91     cl::desc("Max num uses visited for identifying load "
92              "invariance in loop using invariant start (default = 8)"));
93 
94 // Default value of zero implies we use the regular alias set tracker mechanism
95 // instead of the cross product using AA to identify aliasing of the memory
96 // location we are interested in.
97 static cl::opt<int>
98 LICMN2Theshold("licm-n2-threshold", cl::Hidden, cl::init(0),
99                cl::desc("How many instruction to cross product using AA"));
100 
101 static bool inSubLoop(BasicBlock *BB, Loop *CurLoop, LoopInfo *LI);
102 static bool isNotUsedOrFreeInLoop(const Instruction &I, const Loop *CurLoop,
103                                   const LoopSafetyInfo *SafetyInfo,
104                                   TargetTransformInfo *TTI, bool &FreeInLoop);
105 static void hoist(Instruction &I, const DominatorTree *DT, const Loop *CurLoop,
106                   LoopSafetyInfo *SafetyInfo,
107                   OptimizationRemarkEmitter *ORE);
108 static bool sink(Instruction &I, LoopInfo *LI, DominatorTree *DT,
109                  const Loop *CurLoop, LoopSafetyInfo *SafetyInfo,
110                  OptimizationRemarkEmitter *ORE, bool FreeInLoop);
111 static bool isSafeToExecuteUnconditionally(Instruction &Inst,
112                                            const DominatorTree *DT,
113                                            const Loop *CurLoop,
114                                            const LoopSafetyInfo *SafetyInfo,
115                                            OptimizationRemarkEmitter *ORE,
116                                            const Instruction *CtxI = nullptr);
117 static bool pointerInvalidatedByLoop(MemoryLocation MemLoc,
118                                      AliasSetTracker *CurAST, Loop *CurLoop,
119                                      AliasAnalysis *AA);
120 
121 static Instruction *
122 CloneInstructionInExitBlock(Instruction &I, BasicBlock &ExitBlock, PHINode &PN,
123                             const LoopInfo *LI,
124                             const LoopSafetyInfo *SafetyInfo);
125 
126 namespace {
127 struct LoopInvariantCodeMotion {
128   using ASTrackerMapTy = DenseMap<Loop *, std::unique_ptr<AliasSetTracker>>;
129   bool runOnLoop(Loop *L, AliasAnalysis *AA, LoopInfo *LI, DominatorTree *DT,
130                  TargetLibraryInfo *TLI, TargetTransformInfo *TTI,
131                  ScalarEvolution *SE, MemorySSA *MSSA,
132                  OptimizationRemarkEmitter *ORE, bool DeleteAST);
133 
134   ASTrackerMapTy &getLoopToAliasSetMap() { return LoopToAliasSetMap; }
135 
136 private:
137   ASTrackerMapTy LoopToAliasSetMap;
138 
139   std::unique_ptr<AliasSetTracker>
140   collectAliasInfoForLoop(Loop *L, LoopInfo *LI, AliasAnalysis *AA);
141 };
142 
143 struct LegacyLICMPass : public LoopPass {
144   static char ID; // Pass identification, replacement for typeid
145   LegacyLICMPass() : LoopPass(ID) {
146     initializeLegacyLICMPassPass(*PassRegistry::getPassRegistry());
147   }
148 
149   bool runOnLoop(Loop *L, LPPassManager &LPM) override {
150     if (skipLoop(L)) {
151       // If we have run LICM on a previous loop but now we are skipping
152       // (because we've hit the opt-bisect limit), we need to clear the
153       // loop alias information.
154       LICM.getLoopToAliasSetMap().clear();
155       return false;
156     }
157 
158     auto *SE = getAnalysisIfAvailable<ScalarEvolutionWrapperPass>();
159     MemorySSA *MSSA = EnableMSSALoopDependency
160                           ? (&getAnalysis<MemorySSAWrapperPass>().getMSSA())
161                           : nullptr;
162     // For the old PM, we can't use OptimizationRemarkEmitter as an analysis
163     // pass.  Function analyses need to be preserved across loop transformations
164     // but ORE cannot be preserved (see comment before the pass definition).
165     OptimizationRemarkEmitter ORE(L->getHeader()->getParent());
166     return LICM.runOnLoop(L,
167                           &getAnalysis<AAResultsWrapperPass>().getAAResults(),
168                           &getAnalysis<LoopInfoWrapperPass>().getLoopInfo(),
169                           &getAnalysis<DominatorTreeWrapperPass>().getDomTree(),
170                           &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(),
171                           &getAnalysis<TargetTransformInfoWrapperPass>().getTTI(
172                               *L->getHeader()->getParent()),
173                           SE ? &SE->getSE() : nullptr, MSSA, &ORE, false);
174   }
175 
176   /// This transformation requires natural loop information & requires that
177   /// loop preheaders be inserted into the CFG...
178   ///
179   void getAnalysisUsage(AnalysisUsage &AU) const override {
180     AU.addPreserved<DominatorTreeWrapperPass>();
181     AU.addPreserved<LoopInfoWrapperPass>();
182     AU.addRequired<TargetLibraryInfoWrapperPass>();
183     if (EnableMSSALoopDependency)
184       AU.addRequired<MemorySSAWrapperPass>();
185     AU.addRequired<TargetTransformInfoWrapperPass>();
186     getLoopAnalysisUsage(AU);
187   }
188 
189   using llvm::Pass::doFinalization;
190 
191   bool doFinalization() override {
192     assert(LICM.getLoopToAliasSetMap().empty() &&
193            "Didn't free loop alias sets");
194     return false;
195   }
196 
197 private:
198   LoopInvariantCodeMotion LICM;
199 
200   /// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
201   void cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To,
202                                Loop *L) override;
203 
204   /// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
205   /// set.
206   void deleteAnalysisValue(Value *V, Loop *L) override;
207 
208   /// Simple Analysis hook. Delete loop L from alias set map.
209   void deleteAnalysisLoop(Loop *L) override;
210 };
211 } // namespace
212 
213 PreservedAnalyses LICMPass::run(Loop &L, LoopAnalysisManager &AM,
214                                 LoopStandardAnalysisResults &AR, LPMUpdater &) {
215   const auto &FAM =
216       AM.getResult<FunctionAnalysisManagerLoopProxy>(L, AR).getManager();
217   Function *F = L.getHeader()->getParent();
218 
219   auto *ORE = FAM.getCachedResult<OptimizationRemarkEmitterAnalysis>(*F);
220   // FIXME: This should probably be optional rather than required.
221   if (!ORE)
222     report_fatal_error("LICM: OptimizationRemarkEmitterAnalysis not "
223                        "cached at a higher level");
224 
225   LoopInvariantCodeMotion LICM;
226   if (!LICM.runOnLoop(&L, &AR.AA, &AR.LI, &AR.DT, &AR.TLI, &AR.TTI, &AR.SE,
227                       AR.MSSA, ORE, true))
228     return PreservedAnalyses::all();
229 
230   auto PA = getLoopPassPreservedAnalyses();
231 
232   PA.preserve<DominatorTreeAnalysis>();
233   PA.preserve<LoopAnalysis>();
234 
235   return PA;
236 }
237 
238 char LegacyLICMPass::ID = 0;
239 INITIALIZE_PASS_BEGIN(LegacyLICMPass, "licm", "Loop Invariant Code Motion",
240                       false, false)
241 INITIALIZE_PASS_DEPENDENCY(LoopPass)
242 INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
243 INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
244 INITIALIZE_PASS_DEPENDENCY(MemorySSAWrapperPass)
245 INITIALIZE_PASS_END(LegacyLICMPass, "licm", "Loop Invariant Code Motion", false,
246                     false)
247 
248 Pass *llvm::createLICMPass() { return new LegacyLICMPass(); }
249 
250 /// Hoist expressions out of the specified loop. Note, alias info for inner
251 /// loop is not preserved so it is not a good idea to run LICM multiple
252 /// times on one loop.
253 /// We should delete AST for inner loops in the new pass manager to avoid
254 /// memory leak.
255 ///
256 bool LoopInvariantCodeMotion::runOnLoop(
257     Loop *L, AliasAnalysis *AA, LoopInfo *LI, DominatorTree *DT,
258     TargetLibraryInfo *TLI, TargetTransformInfo *TTI, ScalarEvolution *SE,
259     MemorySSA *MSSA, OptimizationRemarkEmitter *ORE, bool DeleteAST) {
260   bool Changed = false;
261 
262   assert(L->isLCSSAForm(*DT) && "Loop is not in LCSSA form.");
263 
264   std::unique_ptr<AliasSetTracker> CurAST = collectAliasInfoForLoop(L, LI, AA);
265 
266   // Get the preheader block to move instructions into...
267   BasicBlock *Preheader = L->getLoopPreheader();
268 
269   // Compute loop safety information.
270   SimpleLoopSafetyInfo SafetyInfo;
271   SafetyInfo.computeLoopSafetyInfo(L);
272 
273   // We want to visit all of the instructions in this loop... that are not parts
274   // of our subloops (they have already had their invariants hoisted out of
275   // their loop, into this loop, so there is no need to process the BODIES of
276   // the subloops).
277   //
278   // Traverse the body of the loop in depth first order on the dominator tree so
279   // that we are guaranteed to see definitions before we see uses.  This allows
280   // us to sink instructions in one pass, without iteration.  After sinking
281   // instructions, we perform another pass to hoist them out of the loop.
282   //
283   if (L->hasDedicatedExits())
284     Changed |= sinkRegion(DT->getNode(L->getHeader()), AA, LI, DT, TLI, TTI, L,
285                           CurAST.get(), &SafetyInfo, ORE);
286   if (Preheader)
287     Changed |= hoistRegion(DT->getNode(L->getHeader()), AA, LI, DT, TLI, L,
288                            CurAST.get(), &SafetyInfo, ORE);
289 
290   // Now that all loop invariants have been removed from the loop, promote any
291   // memory references to scalars that we can.
292   // Don't sink stores from loops without dedicated block exits. Exits
293   // containing indirect branches are not transformed by loop simplify,
294   // make sure we catch that. An additional load may be generated in the
295   // preheader for SSA updater, so also avoid sinking when no preheader
296   // is available.
297   if (!DisablePromotion && Preheader && L->hasDedicatedExits()) {
298     // Figure out the loop exits and their insertion points
299     SmallVector<BasicBlock *, 8> ExitBlocks;
300     L->getUniqueExitBlocks(ExitBlocks);
301 
302     // We can't insert into a catchswitch.
303     bool HasCatchSwitch = llvm::any_of(ExitBlocks, [](BasicBlock *Exit) {
304       return isa<CatchSwitchInst>(Exit->getTerminator());
305     });
306 
307     if (!HasCatchSwitch) {
308       SmallVector<Instruction *, 8> InsertPts;
309       InsertPts.reserve(ExitBlocks.size());
310       for (BasicBlock *ExitBlock : ExitBlocks)
311         InsertPts.push_back(&*ExitBlock->getFirstInsertionPt());
312 
313       PredIteratorCache PIC;
314 
315       bool Promoted = false;
316 
317       // Loop over all of the alias sets in the tracker object.
318       for (AliasSet &AS : *CurAST) {
319         // We can promote this alias set if it has a store, if it is a "Must"
320         // alias set, if the pointer is loop invariant, and if we are not
321         // eliminating any volatile loads or stores.
322         if (AS.isForwardingAliasSet() || !AS.isMod() || !AS.isMustAlias() ||
323             !L->isLoopInvariant(AS.begin()->getValue()))
324           continue;
325 
326         assert(
327             !AS.empty() &&
328             "Must alias set should have at least one pointer element in it!");
329 
330         SmallSetVector<Value *, 8> PointerMustAliases;
331         for (const auto &ASI : AS)
332           PointerMustAliases.insert(ASI.getValue());
333 
334         Promoted |= promoteLoopAccessesToScalars(
335             PointerMustAliases, ExitBlocks, InsertPts, PIC, LI, DT, TLI, L,
336             CurAST.get(), &SafetyInfo, ORE);
337       }
338 
339       // Once we have promoted values across the loop body we have to
340       // recursively reform LCSSA as any nested loop may now have values defined
341       // within the loop used in the outer loop.
342       // FIXME: This is really heavy handed. It would be a bit better to use an
343       // SSAUpdater strategy during promotion that was LCSSA aware and reformed
344       // it as it went.
345       if (Promoted)
346         formLCSSARecursively(*L, *DT, LI, SE);
347 
348       Changed |= Promoted;
349     }
350   }
351 
352   // Check that neither this loop nor its parent have had LCSSA broken. LICM is
353   // specifically moving instructions across the loop boundary and so it is
354   // especially in need of sanity checking here.
355   assert(L->isLCSSAForm(*DT) && "Loop not left in LCSSA form after LICM!");
356   assert((!L->getParentLoop() || L->getParentLoop()->isLCSSAForm(*DT)) &&
357          "Parent loop not left in LCSSA form after LICM!");
358 
359   // If this loop is nested inside of another one, save the alias information
360   // for when we process the outer loop.
361   if (L->getParentLoop() && !DeleteAST)
362     LoopToAliasSetMap[L] = std::move(CurAST);
363 
364   if (Changed && SE)
365     SE->forgetLoopDispositions(L);
366   return Changed;
367 }
368 
369 /// Walk the specified region of the CFG (defined by all blocks dominated by
370 /// the specified block, and that are in the current loop) in reverse depth
371 /// first order w.r.t the DominatorTree.  This allows us to visit uses before
372 /// definitions, allowing us to sink a loop body in one pass without iteration.
373 ///
374 bool llvm::sinkRegion(DomTreeNode *N, AliasAnalysis *AA, LoopInfo *LI,
375                       DominatorTree *DT, TargetLibraryInfo *TLI,
376                       TargetTransformInfo *TTI, Loop *CurLoop,
377                       AliasSetTracker *CurAST, LoopSafetyInfo *SafetyInfo,
378                       OptimizationRemarkEmitter *ORE) {
379 
380   // Verify inputs.
381   assert(N != nullptr && AA != nullptr && LI != nullptr && DT != nullptr &&
382          CurLoop != nullptr && CurAST && SafetyInfo != nullptr &&
383          "Unexpected input to sinkRegion");
384 
385   // We want to visit children before parents. We will enque all the parents
386   // before their children in the worklist and process the worklist in reverse
387   // order.
388   SmallVector<DomTreeNode *, 16> Worklist = collectChildrenInLoop(N, CurLoop);
389 
390   bool Changed = false;
391   for (DomTreeNode *DTN : reverse(Worklist)) {
392     BasicBlock *BB = DTN->getBlock();
393     // Only need to process the contents of this block if it is not part of a
394     // subloop (which would already have been processed).
395     if (inSubLoop(BB, CurLoop, LI))
396       continue;
397 
398     for (BasicBlock::iterator II = BB->end(); II != BB->begin();) {
399       Instruction &I = *--II;
400 
401       // If the instruction is dead, we would try to sink it because it isn't
402       // used in the loop, instead, just delete it.
403       if (isInstructionTriviallyDead(&I, TLI)) {
404         LLVM_DEBUG(dbgs() << "LICM deleting dead inst: " << I << '\n');
405         salvageDebugInfo(I);
406         ++II;
407         CurAST->deleteValue(&I);
408         I.eraseFromParent();
409         Changed = true;
410         continue;
411       }
412 
413       // Check to see if we can sink this instruction to the exit blocks
414       // of the loop.  We can do this if the all users of the instruction are
415       // outside of the loop.  In this case, it doesn't even matter if the
416       // operands of the instruction are loop invariant.
417       //
418       bool FreeInLoop = false;
419       if (isNotUsedOrFreeInLoop(I, CurLoop, SafetyInfo, TTI, FreeInLoop) &&
420           canSinkOrHoistInst(I, AA, DT, CurLoop, CurAST, true, ORE) &&
421           !I.mayHaveSideEffects()) {
422         if (sink(I, LI, DT, CurLoop, SafetyInfo, ORE, FreeInLoop)) {
423           if (!FreeInLoop) {
424             ++II;
425             CurAST->deleteValue(&I);
426             I.eraseFromParent();
427           }
428           Changed = true;
429         }
430       }
431     }
432   }
433   return Changed;
434 }
435 
436 /// Walk the specified region of the CFG (defined by all blocks dominated by
437 /// the specified block, and that are in the current loop) in depth first
438 /// order w.r.t the DominatorTree.  This allows us to visit definitions before
439 /// uses, allowing us to hoist a loop body in one pass without iteration.
440 ///
441 bool llvm::hoistRegion(DomTreeNode *N, AliasAnalysis *AA, LoopInfo *LI,
442                        DominatorTree *DT, TargetLibraryInfo *TLI, Loop *CurLoop,
443                        AliasSetTracker *CurAST, LoopSafetyInfo *SafetyInfo,
444                        OptimizationRemarkEmitter *ORE) {
445   // Verify inputs.
446   assert(N != nullptr && AA != nullptr && LI != nullptr && DT != nullptr &&
447          CurLoop != nullptr && CurAST != nullptr && SafetyInfo != nullptr &&
448          "Unexpected input to hoistRegion");
449 
450   // We want to visit parents before children. We will enque all the parents
451   // before their children in the worklist and process the worklist in order.
452   SmallVector<DomTreeNode *, 16> Worklist = collectChildrenInLoop(N, CurLoop);
453 
454   bool Changed = false;
455   for (DomTreeNode *DTN : Worklist) {
456     BasicBlock *BB = DTN->getBlock();
457     // Only need to process the contents of this block if it is not part of a
458     // subloop (which would already have been processed).
459     if (inSubLoop(BB, CurLoop, LI))
460       continue;
461 
462     // Keep track of whether the prefix of instructions visited so far are such
463     // that the next instruction visited is guaranteed to execute if the loop
464     // is entered.
465     bool IsMustExecute = CurLoop->getHeader() == BB;
466     // Keep track of whether the prefix instructions could have written memory.
467     // TODO: This and IsMustExecute may be done smarter if we keep track of all
468     // throwing and mem-writing operations in every block, e.g. using something
469     // similar to isGuaranteedToExecute.
470     bool IsMemoryNotModified = CurLoop->getHeader() == BB;
471 
472     for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E;) {
473       Instruction &I = *II++;
474       // Try constant folding this instruction.  If all the operands are
475       // constants, it is technically hoistable, but it would be better to
476       // just fold it.
477       if (Constant *C = ConstantFoldInstruction(
478               &I, I.getModule()->getDataLayout(), TLI)) {
479         LLVM_DEBUG(dbgs() << "LICM folding inst: " << I << "  --> " << *C
480                           << '\n');
481         CurAST->copyValue(&I, C);
482         I.replaceAllUsesWith(C);
483         if (isInstructionTriviallyDead(&I, TLI)) {
484           CurAST->deleteValue(&I);
485           I.eraseFromParent();
486         }
487         Changed = true;
488         continue;
489       }
490 
491       // Try hoisting the instruction out to the preheader.  We can only do
492       // this if all of the operands of the instruction are loop invariant and
493       // if it is safe to hoist the instruction.
494       //
495       if (CurLoop->hasLoopInvariantOperands(&I) &&
496           canSinkOrHoistInst(I, AA, DT, CurLoop, CurAST, true, ORE) &&
497           (IsMustExecute ||
498            isSafeToExecuteUnconditionally(
499                I, DT, CurLoop, SafetyInfo, ORE,
500                CurLoop->getLoopPreheader()->getTerminator()))) {
501         hoist(I, DT, CurLoop, SafetyInfo, ORE);
502         Changed = true;
503         continue;
504       }
505 
506       // Attempt to remove floating point division out of the loop by
507       // converting it to a reciprocal multiplication.
508       if (I.getOpcode() == Instruction::FDiv &&
509           CurLoop->isLoopInvariant(I.getOperand(1)) &&
510           I.hasAllowReciprocal()) {
511         auto Divisor = I.getOperand(1);
512         auto One = llvm::ConstantFP::get(Divisor->getType(), 1.0);
513         auto ReciprocalDivisor = BinaryOperator::CreateFDiv(One, Divisor);
514         ReciprocalDivisor->setFastMathFlags(I.getFastMathFlags());
515         ReciprocalDivisor->insertBefore(&I);
516 
517         auto Product =
518             BinaryOperator::CreateFMul(I.getOperand(0), ReciprocalDivisor);
519         Product->setFastMathFlags(I.getFastMathFlags());
520         Product->insertAfter(&I);
521         I.replaceAllUsesWith(Product);
522         I.eraseFromParent();
523 
524         hoist(*ReciprocalDivisor, DT, CurLoop, SafetyInfo, ORE);
525         Changed = true;
526         continue;
527       }
528 
529       using namespace PatternMatch;
530       if (((I.use_empty() &&
531             match(&I, m_Intrinsic<Intrinsic::invariant_start>())) ||
532            isGuard(&I)) &&
533           IsMustExecute && IsMemoryNotModified &&
534           CurLoop->hasLoopInvariantOperands(&I)) {
535         hoist(I, DT, CurLoop, SafetyInfo, ORE);
536         Changed = true;
537         continue;
538       }
539 
540       if (IsMustExecute)
541         IsMustExecute = isGuaranteedToTransferExecutionToSuccessor(&I);
542       if (IsMemoryNotModified)
543         IsMemoryNotModified = !I.mayWriteToMemory();
544     }
545   }
546 
547   return Changed;
548 }
549 
550 // Return true if LI is invariant within scope of the loop. LI is invariant if
551 // CurLoop is dominated by an invariant.start representing the same memory
552 // location and size as the memory location LI loads from, and also the
553 // invariant.start has no uses.
554 static bool isLoadInvariantInLoop(LoadInst *LI, DominatorTree *DT,
555                                   Loop *CurLoop) {
556   Value *Addr = LI->getOperand(0);
557   const DataLayout &DL = LI->getModule()->getDataLayout();
558   const uint32_t LocSizeInBits = DL.getTypeSizeInBits(
559       cast<PointerType>(Addr->getType())->getElementType());
560 
561   // if the type is i8 addrspace(x)*, we know this is the type of
562   // llvm.invariant.start operand
563   auto *PtrInt8Ty = PointerType::get(Type::getInt8Ty(LI->getContext()),
564                                      LI->getPointerAddressSpace());
565   unsigned BitcastsVisited = 0;
566   // Look through bitcasts until we reach the i8* type (this is invariant.start
567   // operand type).
568   while (Addr->getType() != PtrInt8Ty) {
569     auto *BC = dyn_cast<BitCastInst>(Addr);
570     // Avoid traversing high number of bitcast uses.
571     if (++BitcastsVisited > MaxNumUsesTraversed || !BC)
572       return false;
573     Addr = BC->getOperand(0);
574   }
575 
576   unsigned UsesVisited = 0;
577   // Traverse all uses of the load operand value, to see if invariant.start is
578   // one of the uses, and whether it dominates the load instruction.
579   for (auto *U : Addr->users()) {
580     // Avoid traversing for Load operand with high number of users.
581     if (++UsesVisited > MaxNumUsesTraversed)
582       return false;
583     IntrinsicInst *II = dyn_cast<IntrinsicInst>(U);
584     // If there are escaping uses of invariant.start instruction, the load maybe
585     // non-invariant.
586     if (!II || II->getIntrinsicID() != Intrinsic::invariant_start ||
587         !II->use_empty())
588       continue;
589     unsigned InvariantSizeInBits =
590         cast<ConstantInt>(II->getArgOperand(0))->getSExtValue() * 8;
591     // Confirm the invariant.start location size contains the load operand size
592     // in bits. Also, the invariant.start should dominate the load, and we
593     // should not hoist the load out of a loop that contains this dominating
594     // invariant.start.
595     if (LocSizeInBits <= InvariantSizeInBits &&
596         DT->properlyDominates(II->getParent(), CurLoop->getHeader()))
597       return true;
598   }
599 
600   return false;
601 }
602 
603 namespace {
604 /// Return true if-and-only-if we know how to (mechanically) both hoist and
605 /// sink a given instruction out of a loop.  Does not address legality
606 /// concerns such as aliasing or speculation safety.
607 bool isHoistableAndSinkableInst(Instruction &I) {
608   // Only these instructions are hoistable/sinkable.
609   return (isa<LoadInst>(I) || isa<StoreInst>(I) ||
610           isa<CallInst>(I) || isa<FenceInst>(I) ||
611           isa<BinaryOperator>(I) || isa<CastInst>(I) ||
612           isa<SelectInst>(I) || isa<GetElementPtrInst>(I) ||
613           isa<CmpInst>(I) || isa<InsertElementInst>(I) ||
614           isa<ExtractElementInst>(I) || isa<ShuffleVectorInst>(I) ||
615           isa<ExtractValueInst>(I) || isa<InsertValueInst>(I));
616 }
617 /// Return true if all of the alias sets within this AST are known not to
618 /// contain a Mod.
619 bool isReadOnly(AliasSetTracker *CurAST) {
620   for (AliasSet &AS : *CurAST) {
621     if (!AS.isForwardingAliasSet() && AS.isMod()) {
622       return false;
623     }
624   }
625   return true;
626 }
627 }
628 
629 bool llvm::canSinkOrHoistInst(Instruction &I, AAResults *AA, DominatorTree *DT,
630                               Loop *CurLoop, AliasSetTracker *CurAST,
631                               bool TargetExecutesOncePerLoop,
632                               OptimizationRemarkEmitter *ORE) {
633   // If we don't understand the instruction, bail early.
634   if (!isHoistableAndSinkableInst(I))
635     return false;
636 
637   // Loads have extra constraints we have to verify before we can hoist them.
638   if (LoadInst *LI = dyn_cast<LoadInst>(&I)) {
639     if (!LI->isUnordered())
640       return false; // Don't sink/hoist volatile or ordered atomic loads!
641 
642     // Loads from constant memory are always safe to move, even if they end up
643     // in the same alias set as something that ends up being modified.
644     if (AA->pointsToConstantMemory(LI->getOperand(0)))
645       return true;
646     if (LI->getMetadata(LLVMContext::MD_invariant_load))
647       return true;
648 
649     if (LI->isAtomic() && !TargetExecutesOncePerLoop)
650       return false; // Don't risk duplicating unordered loads
651 
652     // This checks for an invariant.start dominating the load.
653     if (isLoadInvariantInLoop(LI, DT, CurLoop))
654       return true;
655 
656     bool Invalidated = pointerInvalidatedByLoop(MemoryLocation::get(LI),
657                                                 CurAST, CurLoop, AA);
658     // Check loop-invariant address because this may also be a sinkable load
659     // whose address is not necessarily loop-invariant.
660     if (ORE && Invalidated && CurLoop->isLoopInvariant(LI->getPointerOperand()))
661       ORE->emit([&]() {
662         return OptimizationRemarkMissed(
663                    DEBUG_TYPE, "LoadWithLoopInvariantAddressInvalidated", LI)
664                << "failed to move load with loop-invariant address "
665                   "because the loop may invalidate its value";
666       });
667 
668     return !Invalidated;
669   } else if (CallInst *CI = dyn_cast<CallInst>(&I)) {
670     // Don't sink or hoist dbg info; it's legal, but not useful.
671     if (isa<DbgInfoIntrinsic>(I))
672       return false;
673 
674     // Don't sink calls which can throw.
675     if (CI->mayThrow())
676       return false;
677 
678     using namespace PatternMatch;
679     if (match(CI, m_Intrinsic<Intrinsic::assume>()))
680       // Assumes don't actually alias anything or throw
681       return true;
682 
683     // Handle simple cases by querying alias analysis.
684     FunctionModRefBehavior Behavior = AA->getModRefBehavior(CI);
685     if (Behavior == FMRB_DoesNotAccessMemory)
686       return true;
687     if (AliasAnalysis::onlyReadsMemory(Behavior)) {
688       // A readonly argmemonly function only reads from memory pointed to by
689       // it's arguments with arbitrary offsets.  If we can prove there are no
690       // writes to this memory in the loop, we can hoist or sink.
691       if (AliasAnalysis::onlyAccessesArgPointees(Behavior)) {
692         // TODO: expand to writeable arguments
693         for (Value *Op : CI->arg_operands())
694           if (Op->getType()->isPointerTy() &&
695               pointerInvalidatedByLoop(
696                   MemoryLocation(Op, LocationSize::unknown(), AAMDNodes()),
697                   CurAST, CurLoop, AA))
698             return false;
699         return true;
700       }
701 
702       // If this call only reads from memory and there are no writes to memory
703       // in the loop, we can hoist or sink the call as appropriate.
704       if (isReadOnly(CurAST))
705         return true;
706     }
707 
708     // FIXME: This should use mod/ref information to see if we can hoist or
709     // sink the call.
710 
711     return false;
712   } else if (auto *FI = dyn_cast<FenceInst>(&I)) {
713     // Fences alias (most) everything to provide ordering.  For the moment,
714     // just give up if there are any other memory operations in the loop.
715     auto Begin = CurAST->begin();
716     assert(Begin != CurAST->end() && "must contain FI");
717     if (std::next(Begin) != CurAST->end())
718       // constant memory for instance, TODO: handle better
719       return false;
720     auto *UniqueI = Begin->getUniqueInstruction();
721     if (!UniqueI)
722       // other memory op, give up
723       return false;
724     (void)FI; //suppress unused variable warning
725     assert(UniqueI == FI && "AS must contain FI");
726     return true;
727   } else if (auto *SI = dyn_cast<StoreInst>(&I)) {
728     if (!SI->isUnordered())
729       return false; // Don't sink/hoist volatile or ordered atomic store!
730 
731     // We can only hoist a store that we can prove writes a value which is not
732     // read or overwritten within the loop.  For those cases, we fallback to
733     // load store promotion instead.  TODO: We can extend this to cases where
734     // there is exactly one write to the location and that write dominates an
735     // arbitrary number of reads in the loop.
736     auto &AS = CurAST->getAliasSetFor(MemoryLocation::get(SI));
737 
738     if (AS.isRef() || !AS.isMustAlias())
739       // Quick exit test, handled by the full path below as well.
740       return false;
741     auto *UniqueI = AS.getUniqueInstruction();
742     if (!UniqueI)
743       // other memory op, give up
744       return false;
745     assert(UniqueI == SI && "AS must contain SI");
746     return true;
747   }
748 
749   assert(!I.mayReadOrWriteMemory() && "unhandled aliasing");
750 
751   // We've established mechanical ability and aliasing, it's up to the caller
752   // to check fault safety
753   return true;
754 }
755 
756 /// Returns true if a PHINode is a trivially replaceable with an
757 /// Instruction.
758 /// This is true when all incoming values are that instruction.
759 /// This pattern occurs most often with LCSSA PHI nodes.
760 ///
761 static bool isTriviallyReplaceablePHI(const PHINode &PN, const Instruction &I) {
762   for (const Value *IncValue : PN.incoming_values())
763     if (IncValue != &I)
764       return false;
765 
766   return true;
767 }
768 
769 /// Return true if the instruction is free in the loop.
770 static bool isFreeInLoop(const Instruction &I, const Loop *CurLoop,
771                          const TargetTransformInfo *TTI) {
772 
773   if (const GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(&I)) {
774     if (TTI->getUserCost(GEP) != TargetTransformInfo::TCC_Free)
775       return false;
776     // For a GEP, we cannot simply use getUserCost because currently it
777     // optimistically assume that a GEP will fold into addressing mode
778     // regardless of its users.
779     const BasicBlock *BB = GEP->getParent();
780     for (const User *U : GEP->users()) {
781       const Instruction *UI = cast<Instruction>(U);
782       if (CurLoop->contains(UI) &&
783           (BB != UI->getParent() ||
784            (!isa<StoreInst>(UI) && !isa<LoadInst>(UI))))
785         return false;
786     }
787     return true;
788   } else
789     return TTI->getUserCost(&I) == TargetTransformInfo::TCC_Free;
790 }
791 
792 /// Return true if the only users of this instruction are outside of
793 /// the loop. If this is true, we can sink the instruction to the exit
794 /// blocks of the loop.
795 ///
796 /// We also return true if the instruction could be folded away in lowering.
797 /// (e.g.,  a GEP can be folded into a load as an addressing mode in the loop).
798 static bool isNotUsedOrFreeInLoop(const Instruction &I, const Loop *CurLoop,
799                                   const LoopSafetyInfo *SafetyInfo,
800                                   TargetTransformInfo *TTI, bool &FreeInLoop) {
801   const auto &BlockColors = SafetyInfo->getBlockColors();
802   bool IsFree = isFreeInLoop(I, CurLoop, TTI);
803   for (const User *U : I.users()) {
804     const Instruction *UI = cast<Instruction>(U);
805     if (const PHINode *PN = dyn_cast<PHINode>(UI)) {
806       const BasicBlock *BB = PN->getParent();
807       // We cannot sink uses in catchswitches.
808       if (isa<CatchSwitchInst>(BB->getTerminator()))
809         return false;
810 
811       // We need to sink a callsite to a unique funclet.  Avoid sinking if the
812       // phi use is too muddled.
813       if (isa<CallInst>(I))
814         if (!BlockColors.empty() &&
815             BlockColors.find(const_cast<BasicBlock *>(BB))->second.size() != 1)
816           return false;
817     }
818 
819     if (CurLoop->contains(UI)) {
820       if (IsFree) {
821         FreeInLoop = true;
822         continue;
823       }
824       return false;
825     }
826   }
827   return true;
828 }
829 
830 static Instruction *
831 CloneInstructionInExitBlock(Instruction &I, BasicBlock &ExitBlock, PHINode &PN,
832                             const LoopInfo *LI,
833                             const LoopSafetyInfo *SafetyInfo) {
834   Instruction *New;
835   if (auto *CI = dyn_cast<CallInst>(&I)) {
836     const auto &BlockColors = SafetyInfo->getBlockColors();
837 
838     // Sinking call-sites need to be handled differently from other
839     // instructions.  The cloned call-site needs a funclet bundle operand
840     // appropriate for it's location in the CFG.
841     SmallVector<OperandBundleDef, 1> OpBundles;
842     for (unsigned BundleIdx = 0, BundleEnd = CI->getNumOperandBundles();
843          BundleIdx != BundleEnd; ++BundleIdx) {
844       OperandBundleUse Bundle = CI->getOperandBundleAt(BundleIdx);
845       if (Bundle.getTagID() == LLVMContext::OB_funclet)
846         continue;
847 
848       OpBundles.emplace_back(Bundle);
849     }
850 
851     if (!BlockColors.empty()) {
852       const ColorVector &CV = BlockColors.find(&ExitBlock)->second;
853       assert(CV.size() == 1 && "non-unique color for exit block!");
854       BasicBlock *BBColor = CV.front();
855       Instruction *EHPad = BBColor->getFirstNonPHI();
856       if (EHPad->isEHPad())
857         OpBundles.emplace_back("funclet", EHPad);
858     }
859 
860     New = CallInst::Create(CI, OpBundles);
861   } else {
862     New = I.clone();
863   }
864 
865   ExitBlock.getInstList().insert(ExitBlock.getFirstInsertionPt(), New);
866   if (!I.getName().empty())
867     New->setName(I.getName() + ".le");
868 
869   // Build LCSSA PHI nodes for any in-loop operands. Note that this is
870   // particularly cheap because we can rip off the PHI node that we're
871   // replacing for the number and blocks of the predecessors.
872   // OPT: If this shows up in a profile, we can instead finish sinking all
873   // invariant instructions, and then walk their operands to re-establish
874   // LCSSA. That will eliminate creating PHI nodes just to nuke them when
875   // sinking bottom-up.
876   for (User::op_iterator OI = New->op_begin(), OE = New->op_end(); OI != OE;
877        ++OI)
878     if (Instruction *OInst = dyn_cast<Instruction>(*OI))
879       if (Loop *OLoop = LI->getLoopFor(OInst->getParent()))
880         if (!OLoop->contains(&PN)) {
881           PHINode *OpPN =
882               PHINode::Create(OInst->getType(), PN.getNumIncomingValues(),
883                               OInst->getName() + ".lcssa", &ExitBlock.front());
884           for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i)
885             OpPN->addIncoming(OInst, PN.getIncomingBlock(i));
886           *OI = OpPN;
887         }
888   return New;
889 }
890 
891 static Instruction *sinkThroughTriviallyReplaceablePHI(
892     PHINode *TPN, Instruction *I, LoopInfo *LI,
893     SmallDenseMap<BasicBlock *, Instruction *, 32> &SunkCopies,
894     const LoopSafetyInfo *SafetyInfo, const Loop *CurLoop) {
895   assert(isTriviallyReplaceablePHI(*TPN, *I) &&
896          "Expect only trivially replaceable PHI");
897   BasicBlock *ExitBlock = TPN->getParent();
898   Instruction *New;
899   auto It = SunkCopies.find(ExitBlock);
900   if (It != SunkCopies.end())
901     New = It->second;
902   else
903     New = SunkCopies[ExitBlock] =
904         CloneInstructionInExitBlock(*I, *ExitBlock, *TPN, LI, SafetyInfo);
905   return New;
906 }
907 
908 static bool canSplitPredecessors(PHINode *PN, LoopSafetyInfo *SafetyInfo) {
909   BasicBlock *BB = PN->getParent();
910   if (!BB->canSplitPredecessors())
911     return false;
912   // It's not impossible to split EHPad blocks, but if BlockColors already exist
913   // it require updating BlockColors for all offspring blocks accordingly. By
914   // skipping such corner case, we can make updating BlockColors after splitting
915   // predecessor fairly simple.
916   if (!SafetyInfo->getBlockColors().empty() && BB->getFirstNonPHI()->isEHPad())
917     return false;
918   for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
919     BasicBlock *BBPred = *PI;
920     if (isa<IndirectBrInst>(BBPred->getTerminator()))
921       return false;
922   }
923   return true;
924 }
925 
926 static void splitPredecessorsOfLoopExit(PHINode *PN, DominatorTree *DT,
927                                         LoopInfo *LI, const Loop *CurLoop,
928                                         LoopSafetyInfo *SafetyInfo) {
929 #ifndef NDEBUG
930   SmallVector<BasicBlock *, 32> ExitBlocks;
931   CurLoop->getUniqueExitBlocks(ExitBlocks);
932   SmallPtrSet<BasicBlock *, 32> ExitBlockSet(ExitBlocks.begin(),
933                                              ExitBlocks.end());
934 #endif
935   BasicBlock *ExitBB = PN->getParent();
936   assert(ExitBlockSet.count(ExitBB) && "Expect the PHI is in an exit block.");
937 
938   // Split predecessors of the loop exit to make instructions in the loop are
939   // exposed to exit blocks through trivially replaceable PHIs while keeping the
940   // loop in the canonical form where each predecessor of each exit block should
941   // be contained within the loop. For example, this will convert the loop below
942   // from
943   //
944   // LB1:
945   //   %v1 =
946   //   br %LE, %LB2
947   // LB2:
948   //   %v2 =
949   //   br %LE, %LB1
950   // LE:
951   //   %p = phi [%v1, %LB1], [%v2, %LB2] <-- non-trivially replaceable
952   //
953   // to
954   //
955   // LB1:
956   //   %v1 =
957   //   br %LE.split, %LB2
958   // LB2:
959   //   %v2 =
960   //   br %LE.split2, %LB1
961   // LE.split:
962   //   %p1 = phi [%v1, %LB1]  <-- trivially replaceable
963   //   br %LE
964   // LE.split2:
965   //   %p2 = phi [%v2, %LB2]  <-- trivially replaceable
966   //   br %LE
967   // LE:
968   //   %p = phi [%p1, %LE.split], [%p2, %LE.split2]
969   //
970   const auto &BlockColors = SafetyInfo->getBlockColors();
971   SmallSetVector<BasicBlock *, 8> PredBBs(pred_begin(ExitBB), pred_end(ExitBB));
972   while (!PredBBs.empty()) {
973     BasicBlock *PredBB = *PredBBs.begin();
974     assert(CurLoop->contains(PredBB) &&
975            "Expect all predecessors are in the loop");
976     if (PN->getBasicBlockIndex(PredBB) >= 0) {
977       BasicBlock *NewPred = SplitBlockPredecessors(
978           ExitBB, PredBB, ".split.loop.exit", DT, LI, nullptr, true);
979       // Since we do not allow splitting EH-block with BlockColors in
980       // canSplitPredecessors(), we can simply assign predecessor's color to
981       // the new block.
982       if (!BlockColors.empty())
983         // Grab a reference to the ColorVector to be inserted before getting the
984         // reference to the vector we are copying because inserting the new
985         // element in BlockColors might cause the map to be reallocated.
986         SafetyInfo->copyColors(NewPred, PredBB);
987     }
988     PredBBs.remove(PredBB);
989   }
990 }
991 
992 /// When an instruction is found to only be used outside of the loop, this
993 /// function moves it to the exit blocks and patches up SSA form as needed.
994 /// This method is guaranteed to remove the original instruction from its
995 /// position, and may either delete it or move it to outside of the loop.
996 ///
997 static bool sink(Instruction &I, LoopInfo *LI, DominatorTree *DT,
998                  const Loop *CurLoop, LoopSafetyInfo *SafetyInfo,
999                  OptimizationRemarkEmitter *ORE, bool FreeInLoop) {
1000   LLVM_DEBUG(dbgs() << "LICM sinking instruction: " << I << "\n");
1001   ORE->emit([&]() {
1002     return OptimizationRemark(DEBUG_TYPE, "InstSunk", &I)
1003            << "sinking " << ore::NV("Inst", &I);
1004   });
1005   bool Changed = false;
1006   if (isa<LoadInst>(I))
1007     ++NumMovedLoads;
1008   else if (isa<CallInst>(I))
1009     ++NumMovedCalls;
1010   ++NumSunk;
1011 
1012   // Iterate over users to be ready for actual sinking. Replace users via
1013   // unrechable blocks with undef and make all user PHIs trivially replcable.
1014   SmallPtrSet<Instruction *, 8> VisitedUsers;
1015   for (Value::user_iterator UI = I.user_begin(), UE = I.user_end(); UI != UE;) {
1016     auto *User = cast<Instruction>(*UI);
1017     Use &U = UI.getUse();
1018     ++UI;
1019 
1020     if (VisitedUsers.count(User) || CurLoop->contains(User))
1021       continue;
1022 
1023     if (!DT->isReachableFromEntry(User->getParent())) {
1024       U = UndefValue::get(I.getType());
1025       Changed = true;
1026       continue;
1027     }
1028 
1029     // The user must be a PHI node.
1030     PHINode *PN = cast<PHINode>(User);
1031 
1032     // Surprisingly, instructions can be used outside of loops without any
1033     // exits.  This can only happen in PHI nodes if the incoming block is
1034     // unreachable.
1035     BasicBlock *BB = PN->getIncomingBlock(U);
1036     if (!DT->isReachableFromEntry(BB)) {
1037       U = UndefValue::get(I.getType());
1038       Changed = true;
1039       continue;
1040     }
1041 
1042     VisitedUsers.insert(PN);
1043     if (isTriviallyReplaceablePHI(*PN, I))
1044       continue;
1045 
1046     if (!canSplitPredecessors(PN, SafetyInfo))
1047       return Changed;
1048 
1049     // Split predecessors of the PHI so that we can make users trivially
1050     // replaceable.
1051     splitPredecessorsOfLoopExit(PN, DT, LI, CurLoop, SafetyInfo);
1052 
1053     // Should rebuild the iterators, as they may be invalidated by
1054     // splitPredecessorsOfLoopExit().
1055     UI = I.user_begin();
1056     UE = I.user_end();
1057   }
1058 
1059   if (VisitedUsers.empty())
1060     return Changed;
1061 
1062 #ifndef NDEBUG
1063   SmallVector<BasicBlock *, 32> ExitBlocks;
1064   CurLoop->getUniqueExitBlocks(ExitBlocks);
1065   SmallPtrSet<BasicBlock *, 32> ExitBlockSet(ExitBlocks.begin(),
1066                                              ExitBlocks.end());
1067 #endif
1068 
1069   // Clones of this instruction. Don't create more than one per exit block!
1070   SmallDenseMap<BasicBlock *, Instruction *, 32> SunkCopies;
1071 
1072   // If this instruction is only used outside of the loop, then all users are
1073   // PHI nodes in exit blocks due to LCSSA form. Just RAUW them with clones of
1074   // the instruction.
1075   SmallSetVector<User*, 8> Users(I.user_begin(), I.user_end());
1076   for (auto *UI : Users) {
1077     auto *User = cast<Instruction>(UI);
1078 
1079     if (CurLoop->contains(User))
1080       continue;
1081 
1082     PHINode *PN = cast<PHINode>(User);
1083     assert(ExitBlockSet.count(PN->getParent()) &&
1084            "The LCSSA PHI is not in an exit block!");
1085     // The PHI must be trivially replaceable.
1086     Instruction *New = sinkThroughTriviallyReplaceablePHI(PN, &I, LI, SunkCopies,
1087                                                           SafetyInfo, CurLoop);
1088     PN->replaceAllUsesWith(New);
1089     PN->eraseFromParent();
1090     Changed = true;
1091   }
1092   return Changed;
1093 }
1094 
1095 /// When an instruction is found to only use loop invariant operands that
1096 /// is safe to hoist, this instruction is called to do the dirty work.
1097 ///
1098 static void hoist(Instruction &I, const DominatorTree *DT, const Loop *CurLoop,
1099                   LoopSafetyInfo *SafetyInfo, OptimizationRemarkEmitter *ORE) {
1100   auto *Preheader = CurLoop->getLoopPreheader();
1101   LLVM_DEBUG(dbgs() << "LICM hoisting to " << Preheader->getName() << ": " << I
1102                     << "\n");
1103   ORE->emit([&]() {
1104     return OptimizationRemark(DEBUG_TYPE, "Hoisted", &I) << "hoisting "
1105                                                          << ore::NV("Inst", &I);
1106   });
1107 
1108   // Metadata can be dependent on conditions we are hoisting above.
1109   // Conservatively strip all metadata on the instruction unless we were
1110   // guaranteed to execute I if we entered the loop, in which case the metadata
1111   // is valid in the loop preheader.
1112   if (I.hasMetadataOtherThanDebugLoc() &&
1113       // The check on hasMetadataOtherThanDebugLoc is to prevent us from burning
1114       // time in isGuaranteedToExecute if we don't actually have anything to
1115       // drop.  It is a compile time optimization, not required for correctness.
1116       !SafetyInfo->isGuaranteedToExecute(I, DT, CurLoop))
1117     I.dropUnknownNonDebugMetadata();
1118 
1119   // Move the new node to the Preheader, before its terminator.
1120   I.moveBefore(Preheader->getTerminator());
1121 
1122   // Do not retain debug locations when we are moving instructions to different
1123   // basic blocks, because we want to avoid jumpy line tables. Calls, however,
1124   // need to retain their debug locs because they may be inlined.
1125   // FIXME: How do we retain source locations without causing poor debugging
1126   // behavior?
1127   if (!isa<CallInst>(I))
1128     I.setDebugLoc(DebugLoc());
1129 
1130   if (isa<LoadInst>(I))
1131     ++NumMovedLoads;
1132   else if (isa<CallInst>(I))
1133     ++NumMovedCalls;
1134   ++NumHoisted;
1135 }
1136 
1137 /// Only sink or hoist an instruction if it is not a trapping instruction,
1138 /// or if the instruction is known not to trap when moved to the preheader.
1139 /// or if it is a trapping instruction and is guaranteed to execute.
1140 static bool isSafeToExecuteUnconditionally(Instruction &Inst,
1141                                            const DominatorTree *DT,
1142                                            const Loop *CurLoop,
1143                                            const LoopSafetyInfo *SafetyInfo,
1144                                            OptimizationRemarkEmitter *ORE,
1145                                            const Instruction *CtxI) {
1146   if (isSafeToSpeculativelyExecute(&Inst, CtxI, DT))
1147     return true;
1148 
1149   bool GuaranteedToExecute =
1150       SafetyInfo->isGuaranteedToExecute(Inst, DT, CurLoop);
1151 
1152   if (!GuaranteedToExecute) {
1153     auto *LI = dyn_cast<LoadInst>(&Inst);
1154     if (LI && CurLoop->isLoopInvariant(LI->getPointerOperand()))
1155       ORE->emit([&]() {
1156         return OptimizationRemarkMissed(
1157                    DEBUG_TYPE, "LoadWithLoopInvariantAddressCondExecuted", LI)
1158                << "failed to hoist load with loop-invariant address "
1159                   "because load is conditionally executed";
1160       });
1161   }
1162 
1163   return GuaranteedToExecute;
1164 }
1165 
1166 namespace {
1167 class LoopPromoter : public LoadAndStorePromoter {
1168   Value *SomePtr; // Designated pointer to store to.
1169   const SmallSetVector<Value *, 8> &PointerMustAliases;
1170   SmallVectorImpl<BasicBlock *> &LoopExitBlocks;
1171   SmallVectorImpl<Instruction *> &LoopInsertPts;
1172   PredIteratorCache &PredCache;
1173   AliasSetTracker &AST;
1174   LoopInfo &LI;
1175   DebugLoc DL;
1176   int Alignment;
1177   bool UnorderedAtomic;
1178   AAMDNodes AATags;
1179 
1180   Value *maybeInsertLCSSAPHI(Value *V, BasicBlock *BB) const {
1181     if (Instruction *I = dyn_cast<Instruction>(V))
1182       if (Loop *L = LI.getLoopFor(I->getParent()))
1183         if (!L->contains(BB)) {
1184           // We need to create an LCSSA PHI node for the incoming value and
1185           // store that.
1186           PHINode *PN = PHINode::Create(I->getType(), PredCache.size(BB),
1187                                         I->getName() + ".lcssa", &BB->front());
1188           for (BasicBlock *Pred : PredCache.get(BB))
1189             PN->addIncoming(I, Pred);
1190           return PN;
1191         }
1192     return V;
1193   }
1194 
1195 public:
1196   LoopPromoter(Value *SP, ArrayRef<const Instruction *> Insts, SSAUpdater &S,
1197                const SmallSetVector<Value *, 8> &PMA,
1198                SmallVectorImpl<BasicBlock *> &LEB,
1199                SmallVectorImpl<Instruction *> &LIP, PredIteratorCache &PIC,
1200                AliasSetTracker &ast, LoopInfo &li, DebugLoc dl, int alignment,
1201                bool UnorderedAtomic, const AAMDNodes &AATags)
1202       : LoadAndStorePromoter(Insts, S), SomePtr(SP), PointerMustAliases(PMA),
1203         LoopExitBlocks(LEB), LoopInsertPts(LIP), PredCache(PIC), AST(ast),
1204         LI(li), DL(std::move(dl)), Alignment(alignment),
1205         UnorderedAtomic(UnorderedAtomic), AATags(AATags) {}
1206 
1207   bool isInstInList(Instruction *I,
1208                     const SmallVectorImpl<Instruction *> &) const override {
1209     Value *Ptr;
1210     if (LoadInst *LI = dyn_cast<LoadInst>(I))
1211       Ptr = LI->getOperand(0);
1212     else
1213       Ptr = cast<StoreInst>(I)->getPointerOperand();
1214     return PointerMustAliases.count(Ptr);
1215   }
1216 
1217   void doExtraRewritesBeforeFinalDeletion() const override {
1218     // Insert stores after in the loop exit blocks.  Each exit block gets a
1219     // store of the live-out values that feed them.  Since we've already told
1220     // the SSA updater about the defs in the loop and the preheader
1221     // definition, it is all set and we can start using it.
1222     for (unsigned i = 0, e = LoopExitBlocks.size(); i != e; ++i) {
1223       BasicBlock *ExitBlock = LoopExitBlocks[i];
1224       Value *LiveInValue = SSA.GetValueInMiddleOfBlock(ExitBlock);
1225       LiveInValue = maybeInsertLCSSAPHI(LiveInValue, ExitBlock);
1226       Value *Ptr = maybeInsertLCSSAPHI(SomePtr, ExitBlock);
1227       Instruction *InsertPos = LoopInsertPts[i];
1228       StoreInst *NewSI = new StoreInst(LiveInValue, Ptr, InsertPos);
1229       if (UnorderedAtomic)
1230         NewSI->setOrdering(AtomicOrdering::Unordered);
1231       NewSI->setAlignment(Alignment);
1232       NewSI->setDebugLoc(DL);
1233       if (AATags)
1234         NewSI->setAAMetadata(AATags);
1235     }
1236   }
1237 
1238   void replaceLoadWithValue(LoadInst *LI, Value *V) const override {
1239     // Update alias analysis.
1240     AST.copyValue(LI, V);
1241   }
1242   void instructionDeleted(Instruction *I) const override { AST.deleteValue(I); }
1243 };
1244 
1245 
1246 /// Return true iff we can prove that a caller of this function can not inspect
1247 /// the contents of the provided object in a well defined program.
1248 bool isKnownNonEscaping(Value *Object, const TargetLibraryInfo *TLI) {
1249   if (isa<AllocaInst>(Object))
1250     // Since the alloca goes out of scope, we know the caller can't retain a
1251     // reference to it and be well defined.  Thus, we don't need to check for
1252     // capture.
1253     return true;
1254 
1255   // For all other objects we need to know that the caller can't possibly
1256   // have gotten a reference to the object.  There are two components of
1257   // that:
1258   //   1) Object can't be escaped by this function.  This is what
1259   //      PointerMayBeCaptured checks.
1260   //   2) Object can't have been captured at definition site.  For this, we
1261   //      need to know the return value is noalias.  At the moment, we use a
1262   //      weaker condition and handle only AllocLikeFunctions (which are
1263   //      known to be noalias).  TODO
1264   return isAllocLikeFn(Object, TLI) &&
1265     !PointerMayBeCaptured(Object, true, true);
1266 }
1267 
1268 } // namespace
1269 
1270 /// Try to promote memory values to scalars by sinking stores out of the
1271 /// loop and moving loads to before the loop.  We do this by looping over
1272 /// the stores in the loop, looking for stores to Must pointers which are
1273 /// loop invariant.
1274 ///
1275 bool llvm::promoteLoopAccessesToScalars(
1276     const SmallSetVector<Value *, 8> &PointerMustAliases,
1277     SmallVectorImpl<BasicBlock *> &ExitBlocks,
1278     SmallVectorImpl<Instruction *> &InsertPts, PredIteratorCache &PIC,
1279     LoopInfo *LI, DominatorTree *DT, const TargetLibraryInfo *TLI,
1280     Loop *CurLoop, AliasSetTracker *CurAST, LoopSafetyInfo *SafetyInfo,
1281     OptimizationRemarkEmitter *ORE) {
1282   // Verify inputs.
1283   assert(LI != nullptr && DT != nullptr && CurLoop != nullptr &&
1284          CurAST != nullptr && SafetyInfo != nullptr &&
1285          "Unexpected Input to promoteLoopAccessesToScalars");
1286 
1287   Value *SomePtr = *PointerMustAliases.begin();
1288   BasicBlock *Preheader = CurLoop->getLoopPreheader();
1289 
1290   // It is not safe to promote a load/store from the loop if the load/store is
1291   // conditional.  For example, turning:
1292   //
1293   //    for () { if (c) *P += 1; }
1294   //
1295   // into:
1296   //
1297   //    tmp = *P;  for () { if (c) tmp +=1; } *P = tmp;
1298   //
1299   // is not safe, because *P may only be valid to access if 'c' is true.
1300   //
1301   // The safety property divides into two parts:
1302   // p1) The memory may not be dereferenceable on entry to the loop.  In this
1303   //    case, we can't insert the required load in the preheader.
1304   // p2) The memory model does not allow us to insert a store along any dynamic
1305   //    path which did not originally have one.
1306   //
1307   // If at least one store is guaranteed to execute, both properties are
1308   // satisfied, and promotion is legal.
1309   //
1310   // This, however, is not a necessary condition. Even if no store/load is
1311   // guaranteed to execute, we can still establish these properties.
1312   // We can establish (p1) by proving that hoisting the load into the preheader
1313   // is safe (i.e. proving dereferenceability on all paths through the loop). We
1314   // can use any access within the alias set to prove dereferenceability,
1315   // since they're all must alias.
1316   //
1317   // There are two ways establish (p2):
1318   // a) Prove the location is thread-local. In this case the memory model
1319   // requirement does not apply, and stores are safe to insert.
1320   // b) Prove a store dominates every exit block. In this case, if an exit
1321   // blocks is reached, the original dynamic path would have taken us through
1322   // the store, so inserting a store into the exit block is safe. Note that this
1323   // is different from the store being guaranteed to execute. For instance,
1324   // if an exception is thrown on the first iteration of the loop, the original
1325   // store is never executed, but the exit blocks are not executed either.
1326 
1327   bool DereferenceableInPH = false;
1328   bool SafeToInsertStore = false;
1329 
1330   SmallVector<Instruction *, 64> LoopUses;
1331 
1332   // We start with an alignment of one and try to find instructions that allow
1333   // us to prove better alignment.
1334   unsigned Alignment = 1;
1335   // Keep track of which types of access we see
1336   bool SawUnorderedAtomic = false;
1337   bool SawNotAtomic = false;
1338   AAMDNodes AATags;
1339 
1340   const DataLayout &MDL = Preheader->getModule()->getDataLayout();
1341 
1342   bool IsKnownThreadLocalObject = false;
1343   if (SafetyInfo->anyBlockMayThrow()) {
1344     // If a loop can throw, we have to insert a store along each unwind edge.
1345     // That said, we can't actually make the unwind edge explicit. Therefore,
1346     // we have to prove that the store is dead along the unwind edge.  We do
1347     // this by proving that the caller can't have a reference to the object
1348     // after return and thus can't possibly load from the object.
1349     Value *Object = GetUnderlyingObject(SomePtr, MDL);
1350     if (!isKnownNonEscaping(Object, TLI))
1351       return false;
1352     // Subtlety: Alloca's aren't visible to callers, but *are* potentially
1353     // visible to other threads if captured and used during their lifetimes.
1354     IsKnownThreadLocalObject = !isa<AllocaInst>(Object);
1355   }
1356 
1357   // Check that all of the pointers in the alias set have the same type.  We
1358   // cannot (yet) promote a memory location that is loaded and stored in
1359   // different sizes.  While we are at it, collect alignment and AA info.
1360   for (Value *ASIV : PointerMustAliases) {
1361     // Check that all of the pointers in the alias set have the same type.  We
1362     // cannot (yet) promote a memory location that is loaded and stored in
1363     // different sizes.
1364     if (SomePtr->getType() != ASIV->getType())
1365       return false;
1366 
1367     for (User *U : ASIV->users()) {
1368       // Ignore instructions that are outside the loop.
1369       Instruction *UI = dyn_cast<Instruction>(U);
1370       if (!UI || !CurLoop->contains(UI))
1371         continue;
1372 
1373       // If there is an non-load/store instruction in the loop, we can't promote
1374       // it.
1375       if (LoadInst *Load = dyn_cast<LoadInst>(UI)) {
1376         if (!Load->isUnordered())
1377           return false;
1378 
1379         SawUnorderedAtomic |= Load->isAtomic();
1380         SawNotAtomic |= !Load->isAtomic();
1381 
1382         if (!DereferenceableInPH)
1383           DereferenceableInPH = isSafeToExecuteUnconditionally(
1384               *Load, DT, CurLoop, SafetyInfo, ORE, Preheader->getTerminator());
1385       } else if (const StoreInst *Store = dyn_cast<StoreInst>(UI)) {
1386         // Stores *of* the pointer are not interesting, only stores *to* the
1387         // pointer.
1388         if (UI->getOperand(1) != ASIV)
1389           continue;
1390         if (!Store->isUnordered())
1391           return false;
1392 
1393         SawUnorderedAtomic |= Store->isAtomic();
1394         SawNotAtomic |= !Store->isAtomic();
1395 
1396         // If the store is guaranteed to execute, both properties are satisfied.
1397         // We may want to check if a store is guaranteed to execute even if we
1398         // already know that promotion is safe, since it may have higher
1399         // alignment than any other guaranteed stores, in which case we can
1400         // raise the alignment on the promoted store.
1401         unsigned InstAlignment = Store->getAlignment();
1402         if (!InstAlignment)
1403           InstAlignment =
1404               MDL.getABITypeAlignment(Store->getValueOperand()->getType());
1405 
1406         if (!DereferenceableInPH || !SafeToInsertStore ||
1407             (InstAlignment > Alignment)) {
1408           if (SafetyInfo->isGuaranteedToExecute(*UI, DT, CurLoop)) {
1409             DereferenceableInPH = true;
1410             SafeToInsertStore = true;
1411             Alignment = std::max(Alignment, InstAlignment);
1412           }
1413         }
1414 
1415         // If a store dominates all exit blocks, it is safe to sink.
1416         // As explained above, if an exit block was executed, a dominating
1417         // store must have been executed at least once, so we are not
1418         // introducing stores on paths that did not have them.
1419         // Note that this only looks at explicit exit blocks. If we ever
1420         // start sinking stores into unwind edges (see above), this will break.
1421         if (!SafeToInsertStore)
1422           SafeToInsertStore = llvm::all_of(ExitBlocks, [&](BasicBlock *Exit) {
1423             return DT->dominates(Store->getParent(), Exit);
1424           });
1425 
1426         // If the store is not guaranteed to execute, we may still get
1427         // deref info through it.
1428         if (!DereferenceableInPH) {
1429           DereferenceableInPH = isDereferenceableAndAlignedPointer(
1430               Store->getPointerOperand(), Store->getAlignment(), MDL,
1431               Preheader->getTerminator(), DT);
1432         }
1433       } else
1434         return false; // Not a load or store.
1435 
1436       // Merge the AA tags.
1437       if (LoopUses.empty()) {
1438         // On the first load/store, just take its AA tags.
1439         UI->getAAMetadata(AATags);
1440       } else if (AATags) {
1441         UI->getAAMetadata(AATags, /* Merge = */ true);
1442       }
1443 
1444       LoopUses.push_back(UI);
1445     }
1446   }
1447 
1448   // If we found both an unordered atomic instruction and a non-atomic memory
1449   // access, bail.  We can't blindly promote non-atomic to atomic since we
1450   // might not be able to lower the result.  We can't downgrade since that
1451   // would violate memory model.  Also, align 0 is an error for atomics.
1452   if (SawUnorderedAtomic && SawNotAtomic)
1453     return false;
1454 
1455   // If we couldn't prove we can hoist the load, bail.
1456   if (!DereferenceableInPH)
1457     return false;
1458 
1459   // We know we can hoist the load, but don't have a guaranteed store.
1460   // Check whether the location is thread-local. If it is, then we can insert
1461   // stores along paths which originally didn't have them without violating the
1462   // memory model.
1463   if (!SafeToInsertStore) {
1464     if (IsKnownThreadLocalObject)
1465       SafeToInsertStore = true;
1466     else {
1467       Value *Object = GetUnderlyingObject(SomePtr, MDL);
1468       SafeToInsertStore =
1469           (isAllocLikeFn(Object, TLI) || isa<AllocaInst>(Object)) &&
1470           !PointerMayBeCaptured(Object, true, true);
1471     }
1472   }
1473 
1474   // If we've still failed to prove we can sink the store, give up.
1475   if (!SafeToInsertStore)
1476     return false;
1477 
1478   // Otherwise, this is safe to promote, lets do it!
1479   LLVM_DEBUG(dbgs() << "LICM: Promoting value stored to in loop: " << *SomePtr
1480                     << '\n');
1481   ORE->emit([&]() {
1482     return OptimizationRemark(DEBUG_TYPE, "PromoteLoopAccessesToScalar",
1483                               LoopUses[0])
1484            << "Moving accesses to memory location out of the loop";
1485   });
1486   ++NumPromoted;
1487 
1488   // Grab a debug location for the inserted loads/stores; given that the
1489   // inserted loads/stores have little relation to the original loads/stores,
1490   // this code just arbitrarily picks a location from one, since any debug
1491   // location is better than none.
1492   DebugLoc DL = LoopUses[0]->getDebugLoc();
1493 
1494   // We use the SSAUpdater interface to insert phi nodes as required.
1495   SmallVector<PHINode *, 16> NewPHIs;
1496   SSAUpdater SSA(&NewPHIs);
1497   LoopPromoter Promoter(SomePtr, LoopUses, SSA, PointerMustAliases, ExitBlocks,
1498                         InsertPts, PIC, *CurAST, *LI, DL, Alignment,
1499                         SawUnorderedAtomic, AATags);
1500 
1501   // Set up the preheader to have a definition of the value.  It is the live-out
1502   // value from the preheader that uses in the loop will use.
1503   LoadInst *PreheaderLoad = new LoadInst(
1504       SomePtr, SomePtr->getName() + ".promoted", Preheader->getTerminator());
1505   if (SawUnorderedAtomic)
1506     PreheaderLoad->setOrdering(AtomicOrdering::Unordered);
1507   PreheaderLoad->setAlignment(Alignment);
1508   PreheaderLoad->setDebugLoc(DL);
1509   if (AATags)
1510     PreheaderLoad->setAAMetadata(AATags);
1511   SSA.AddAvailableValue(Preheader, PreheaderLoad);
1512 
1513   // Rewrite all the loads in the loop and remember all the definitions from
1514   // stores in the loop.
1515   Promoter.run(LoopUses);
1516 
1517   // If the SSAUpdater didn't use the load in the preheader, just zap it now.
1518   if (PreheaderLoad->use_empty())
1519     PreheaderLoad->eraseFromParent();
1520 
1521   return true;
1522 }
1523 
1524 /// Returns an owning pointer to an alias set which incorporates aliasing info
1525 /// from L and all subloops of L.
1526 /// FIXME: In new pass manager, there is no helper function to handle loop
1527 /// analysis such as cloneBasicBlockAnalysis, so the AST needs to be recomputed
1528 /// from scratch for every loop. Hook up with the helper functions when
1529 /// available in the new pass manager to avoid redundant computation.
1530 std::unique_ptr<AliasSetTracker>
1531 LoopInvariantCodeMotion::collectAliasInfoForLoop(Loop *L, LoopInfo *LI,
1532                                                  AliasAnalysis *AA) {
1533   std::unique_ptr<AliasSetTracker> CurAST;
1534   SmallVector<Loop *, 4> RecomputeLoops;
1535   for (Loop *InnerL : L->getSubLoops()) {
1536     auto MapI = LoopToAliasSetMap.find(InnerL);
1537     // If the AST for this inner loop is missing it may have been merged into
1538     // some other loop's AST and then that loop unrolled, and so we need to
1539     // recompute it.
1540     if (MapI == LoopToAliasSetMap.end()) {
1541       RecomputeLoops.push_back(InnerL);
1542       continue;
1543     }
1544     std::unique_ptr<AliasSetTracker> InnerAST = std::move(MapI->second);
1545 
1546     if (CurAST) {
1547       // What if InnerLoop was modified by other passes ?
1548       // Once we've incorporated the inner loop's AST into ours, we don't need
1549       // the subloop's anymore.
1550       CurAST->add(*InnerAST);
1551     } else {
1552       CurAST = std::move(InnerAST);
1553     }
1554     LoopToAliasSetMap.erase(MapI);
1555   }
1556   if (!CurAST)
1557     CurAST = make_unique<AliasSetTracker>(*AA);
1558 
1559   // Add everything from the sub loops that are no longer directly available.
1560   for (Loop *InnerL : RecomputeLoops)
1561     for (BasicBlock *BB : InnerL->blocks())
1562       CurAST->add(*BB);
1563 
1564   // And merge in this loop (without anything from inner loops).
1565   for (BasicBlock *BB : L->blocks())
1566     if (LI->getLoopFor(BB) == L)
1567       CurAST->add(*BB);
1568 
1569   return CurAST;
1570 }
1571 
1572 /// Simple analysis hook. Clone alias set info.
1573 ///
1574 void LegacyLICMPass::cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To,
1575                                              Loop *L) {
1576   auto ASTIt = LICM.getLoopToAliasSetMap().find(L);
1577   if (ASTIt == LICM.getLoopToAliasSetMap().end())
1578     return;
1579 
1580   ASTIt->second->copyValue(From, To);
1581 }
1582 
1583 /// Simple Analysis hook. Delete value V from alias set
1584 ///
1585 void LegacyLICMPass::deleteAnalysisValue(Value *V, Loop *L) {
1586   auto ASTIt = LICM.getLoopToAliasSetMap().find(L);
1587   if (ASTIt == LICM.getLoopToAliasSetMap().end())
1588     return;
1589 
1590   ASTIt->second->deleteValue(V);
1591 }
1592 
1593 /// Simple Analysis hook. Delete value L from alias set map.
1594 ///
1595 void LegacyLICMPass::deleteAnalysisLoop(Loop *L) {
1596   if (!LICM.getLoopToAliasSetMap().count(L))
1597     return;
1598 
1599   LICM.getLoopToAliasSetMap().erase(L);
1600 }
1601 
1602 static bool pointerInvalidatedByLoop(MemoryLocation MemLoc,
1603                                      AliasSetTracker *CurAST, Loop *CurLoop,
1604                                      AliasAnalysis *AA) {
1605   // First check to see if any of the basic blocks in CurLoop invalidate *V.
1606   bool isInvalidatedAccordingToAST = CurAST->getAliasSetFor(MemLoc).isMod();
1607 
1608   if (!isInvalidatedAccordingToAST || !LICMN2Theshold)
1609     return isInvalidatedAccordingToAST;
1610 
1611   // Check with a diagnostic analysis if we can refine the information above.
1612   // This is to identify the limitations of using the AST.
1613   // The alias set mechanism used by LICM has a major weakness in that it
1614   // combines all things which may alias into a single set *before* asking
1615   // modref questions. As a result, a single readonly call within a loop will
1616   // collapse all loads and stores into a single alias set and report
1617   // invalidation if the loop contains any store. For example, readonly calls
1618   // with deopt states have this form and create a general alias set with all
1619   // loads and stores.  In order to get any LICM in loops containing possible
1620   // deopt states we need a more precise invalidation of checking the mod ref
1621   // info of each instruction within the loop and LI. This has a complexity of
1622   // O(N^2), so currently, it is used only as a diagnostic tool since the
1623   // default value of LICMN2Threshold is zero.
1624 
1625   // Don't look at nested loops.
1626   if (CurLoop->begin() != CurLoop->end())
1627     return true;
1628 
1629   int N = 0;
1630   for (BasicBlock *BB : CurLoop->getBlocks())
1631     for (Instruction &I : *BB) {
1632       if (N >= LICMN2Theshold) {
1633         LLVM_DEBUG(dbgs() << "Alasing N2 threshold exhausted for "
1634                           << *(MemLoc.Ptr) << "\n");
1635         return true;
1636       }
1637       N++;
1638       auto Res = AA->getModRefInfo(&I, MemLoc);
1639       if (isModSet(Res)) {
1640         LLVM_DEBUG(dbgs() << "Aliasing failed on " << I << " for "
1641                           << *(MemLoc.Ptr) << "\n");
1642         return true;
1643       }
1644     }
1645   LLVM_DEBUG(dbgs() << "Aliasing okay for " << *(MemLoc.Ptr) << "\n");
1646   return false;
1647 }
1648 
1649 /// Little predicate that returns true if the specified basic block is in
1650 /// a subloop of the current one, not the current one itself.
1651 ///
1652 static bool inSubLoop(BasicBlock *BB, Loop *CurLoop, LoopInfo *LI) {
1653   assert(CurLoop->contains(BB) && "Only valid if BB is IN the loop");
1654   return LI->getLoopFor(BB) != CurLoop;
1655 }
1656