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.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/Loads.h"
42 #include "llvm/Analysis/LoopInfo.h"
43 #include "llvm/Analysis/LoopPass.h"
44 #include "llvm/Analysis/MemoryBuiltins.h"
45 #include "llvm/Analysis/ScalarEvolution.h"
46 #include "llvm/Analysis/ScalarEvolutionAliasAnalysis.h"
47 #include "llvm/Analysis/TargetLibraryInfo.h"
48 #include "llvm/Analysis/ValueTracking.h"
49 #include "llvm/IR/CFG.h"
50 #include "llvm/IR/Constants.h"
51 #include "llvm/IR/DataLayout.h"
52 #include "llvm/IR/DerivedTypes.h"
53 #include "llvm/IR/Dominators.h"
54 #include "llvm/IR/Instructions.h"
55 #include "llvm/IR/IntrinsicInst.h"
56 #include "llvm/IR/LLVMContext.h"
57 #include "llvm/IR/Metadata.h"
58 #include "llvm/IR/PredIteratorCache.h"
59 #include "llvm/Support/CommandLine.h"
60 #include "llvm/Support/Debug.h"
61 #include "llvm/Support/raw_ostream.h"
62 #include "llvm/Transforms/Utils/Local.h"
63 #include "llvm/Transforms/Utils/LoopUtils.h"
64 #include "llvm/Transforms/Utils/SSAUpdater.h"
65 #include <algorithm>
66 using namespace llvm;
67 
68 #define DEBUG_TYPE "licm"
69 
70 STATISTIC(NumSunk      , "Number of instructions sunk out of loop");
71 STATISTIC(NumHoisted   , "Number of instructions hoisted out of loop");
72 STATISTIC(NumMovedLoads, "Number of load insts hoisted or sunk");
73 STATISTIC(NumMovedCalls, "Number of call insts hoisted or sunk");
74 STATISTIC(NumPromoted  , "Number of memory locations promoted to registers");
75 
76 static cl::opt<bool>
77 DisablePromotion("disable-licm-promotion", cl::Hidden,
78                  cl::desc("Disable memory promotion in LICM pass"));
79 
80 static bool inSubLoop(BasicBlock *BB, Loop *CurLoop, LoopInfo *LI);
81 static bool isNotUsedInLoop(const Instruction &I, const Loop *CurLoop,
82                             const LICMSafetyInfo *SafetyInfo);
83 static bool hoist(Instruction &I, const DominatorTree *DT, const Loop *CurLoop,
84                   const LICMSafetyInfo *SafetyInfo);
85 static bool sink(Instruction &I, const LoopInfo *LI, const DominatorTree *DT,
86                  const Loop *CurLoop, AliasSetTracker *CurAST,
87                  const LICMSafetyInfo *SafetyInfo);
88 static bool isGuaranteedToExecute(const Instruction &Inst,
89                                   const DominatorTree *DT,
90                                   const Loop *CurLoop,
91                                   const LICMSafetyInfo *SafetyInfo);
92 static bool isSafeToExecuteUnconditionally(const Instruction &Inst,
93                                            const DominatorTree *DT,
94                                            const TargetLibraryInfo *TLI,
95                                            const Loop *CurLoop,
96                                            const LICMSafetyInfo *SafetyInfo,
97                                            const Instruction *CtxI = nullptr);
98 static bool pointerInvalidatedByLoop(Value *V, uint64_t Size,
99                                      const AAMDNodes &AAInfo,
100                                      AliasSetTracker *CurAST);
101 static Instruction *
102 CloneInstructionInExitBlock(Instruction &I, BasicBlock &ExitBlock, PHINode &PN,
103                             const LoopInfo *LI,
104                             const LICMSafetyInfo *SafetyInfo);
105 static bool canSinkOrHoistInst(Instruction &I, AliasAnalysis *AA,
106                                DominatorTree *DT, TargetLibraryInfo *TLI,
107                                Loop *CurLoop, AliasSetTracker *CurAST,
108                                LICMSafetyInfo *SafetyInfo);
109 
110 namespace {
111   struct LICM : public LoopPass {
112     static char ID; // Pass identification, replacement for typeid
113     LICM() : LoopPass(ID) {
114       initializeLICMPass(*PassRegistry::getPassRegistry());
115     }
116 
117     bool runOnLoop(Loop *L, LPPassManager &LPM) override;
118 
119     /// This transformation requires natural loop information & requires that
120     /// loop preheaders be inserted into the CFG...
121     ///
122     void getAnalysisUsage(AnalysisUsage &AU) const override {
123       AU.setPreservesCFG();
124       AU.addRequired<TargetLibraryInfoWrapperPass>();
125       getLoopAnalysisUsage(AU);
126     }
127 
128     using llvm::Pass::doFinalization;
129 
130     bool doFinalization() override {
131       assert(LoopToAliasSetMap.empty() && "Didn't free loop alias sets");
132       return false;
133     }
134 
135   private:
136     AliasAnalysis *AA;       // Current AliasAnalysis information
137     LoopInfo      *LI;       // Current LoopInfo
138     DominatorTree *DT;       // Dominator Tree for the current Loop.
139 
140     TargetLibraryInfo *TLI;  // TargetLibraryInfo for constant folding.
141 
142     // State that is updated as we process loops.
143     bool Changed;            // Set to true when we change anything.
144     BasicBlock *Preheader;   // The preheader block of the current loop...
145     Loop *CurLoop;           // The current loop we are working on...
146     AliasSetTracker *CurAST; // AliasSet information for the current loop...
147     DenseMap<Loop*, AliasSetTracker*> LoopToAliasSetMap;
148 
149     /// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
150     void cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To,
151                                  Loop *L) override;
152 
153     /// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
154     /// set.
155     void deleteAnalysisValue(Value *V, Loop *L) override;
156 
157     /// Simple Analysis hook. Delete loop L from alias set map.
158     void deleteAnalysisLoop(Loop *L) override;
159 
160     AliasSetTracker *collectAliasInfoForLoop(Loop *L);
161   };
162 }
163 
164 char LICM::ID = 0;
165 INITIALIZE_PASS_BEGIN(LICM, "licm", "Loop Invariant Code Motion", false, false)
166 INITIALIZE_PASS_DEPENDENCY(LoopPass)
167 INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
168 INITIALIZE_PASS_END(LICM, "licm", "Loop Invariant Code Motion", false, false)
169 
170 Pass *llvm::createLICMPass() { return new LICM(); }
171 
172 /// Hoist expressions out of the specified loop. Note, alias info for inner
173 /// loop is not preserved so it is not a good idea to run LICM multiple
174 /// times on one loop.
175 ///
176 bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) {
177   if (skipLoop(L))
178     return false;
179 
180   Changed = false;
181 
182   // Get our Loop and Alias Analysis information...
183   LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
184   AA = &getAnalysis<AAResultsWrapperPass>().getAAResults();
185   DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
186 
187   TLI = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
188 
189   assert(L->isLCSSAForm(*DT) && "Loop is not in LCSSA form.");
190 
191   CurAST = collectAliasInfoForLoop(L);
192 
193   CurLoop = L;
194 
195   // Get the preheader block to move instructions into...
196   Preheader = L->getLoopPreheader();
197 
198   // Compute loop safety information.
199   LICMSafetyInfo SafetyInfo;
200   computeLICMSafetyInfo(&SafetyInfo, CurLoop);
201 
202   // We want to visit all of the instructions in this loop... that are not parts
203   // of our subloops (they have already had their invariants hoisted out of
204   // their loop, into this loop, so there is no need to process the BODIES of
205   // the subloops).
206   //
207   // Traverse the body of the loop in depth first order on the dominator tree so
208   // that we are guaranteed to see definitions before we see uses.  This allows
209   // us to sink instructions in one pass, without iteration.  After sinking
210   // instructions, we perform another pass to hoist them out of the loop.
211   //
212   if (L->hasDedicatedExits())
213     Changed |= sinkRegion(DT->getNode(L->getHeader()), AA, LI, DT, TLI, CurLoop,
214                           CurAST, &SafetyInfo);
215   if (Preheader)
216     Changed |= hoistRegion(DT->getNode(L->getHeader()), AA, LI, DT, TLI,
217                            CurLoop, CurAST, &SafetyInfo);
218 
219   // Now that all loop invariants have been removed from the loop, promote any
220   // memory references to scalars that we can.
221   if (!DisablePromotion && (Preheader || L->hasDedicatedExits())) {
222     SmallVector<BasicBlock *, 8> ExitBlocks;
223     SmallVector<Instruction *, 8> InsertPts;
224     PredIteratorCache PIC;
225 
226     // Loop over all of the alias sets in the tracker object.
227     for (AliasSet &AS : *CurAST)
228       Changed |= promoteLoopAccessesToScalars(AS, ExitBlocks, InsertPts,
229                                               PIC, LI, DT, TLI, CurLoop,
230                                               CurAST, &SafetyInfo);
231 
232     // Once we have promoted values across the loop body we have to recursively
233     // reform LCSSA as any nested loop may now have values defined within the
234     // loop used in the outer loop.
235     // FIXME: This is really heavy handed. It would be a bit better to use an
236     // SSAUpdater strategy during promotion that was LCSSA aware and reformed
237     // it as it went.
238     if (Changed) {
239       auto *SEWP = getAnalysisIfAvailable<ScalarEvolutionWrapperPass>();
240       formLCSSARecursively(*L, *DT, LI, SEWP ? &SEWP->getSE() : nullptr);
241     }
242   }
243 
244   // Check that neither this loop nor its parent have had LCSSA broken. LICM is
245   // specifically moving instructions across the loop boundary and so it is
246   // especially in need of sanity checking here.
247   assert(L->isLCSSAForm(*DT) && "Loop not left in LCSSA form after LICM!");
248   assert((!L->getParentLoop() || L->getParentLoop()->isLCSSAForm(*DT)) &&
249          "Parent loop not left in LCSSA form after LICM!");
250 
251   // Clear out loops state information for the next iteration
252   CurLoop = nullptr;
253   Preheader = nullptr;
254 
255   // If this loop is nested inside of another one, save the alias information
256   // for when we process the outer loop.
257   if (L->getParentLoop())
258     LoopToAliasSetMap[L] = CurAST;
259   else
260     delete CurAST;
261   return Changed;
262 }
263 
264 /// Walk the specified region of the CFG (defined by all blocks dominated by
265 /// the specified block, and that are in the current loop) in reverse depth
266 /// first order w.r.t the DominatorTree.  This allows us to visit uses before
267 /// definitions, allowing us to sink a loop body in one pass without iteration.
268 ///
269 bool llvm::sinkRegion(DomTreeNode *N, AliasAnalysis *AA, LoopInfo *LI,
270                       DominatorTree *DT, TargetLibraryInfo *TLI, Loop *CurLoop,
271                       AliasSetTracker *CurAST, LICMSafetyInfo *SafetyInfo) {
272 
273   // Verify inputs.
274   assert(N != nullptr && AA != nullptr && LI != nullptr &&
275          DT != nullptr && CurLoop != nullptr && CurAST != nullptr &&
276          SafetyInfo != nullptr && "Unexpected input to sinkRegion");
277 
278   BasicBlock *BB = N->getBlock();
279   // If this subregion is not in the top level loop at all, exit.
280   if (!CurLoop->contains(BB)) return false;
281 
282   // We are processing blocks in reverse dfo, so process children first.
283   bool Changed = false;
284   const std::vector<DomTreeNode*> &Children = N->getChildren();
285   for (DomTreeNode *Child : Children)
286     Changed |= sinkRegion(Child, AA, LI, DT, TLI, CurLoop, CurAST, SafetyInfo);
287 
288   // Only need to process the contents of this block if it is not part of a
289   // subloop (which would already have been processed).
290   if (inSubLoop(BB,CurLoop,LI)) return Changed;
291 
292   for (BasicBlock::iterator II = BB->end(); II != BB->begin(); ) {
293     Instruction &I = *--II;
294 
295     // If the instruction is dead, we would try to sink it because it isn't used
296     // in the loop, instead, just delete it.
297     if (isInstructionTriviallyDead(&I, TLI)) {
298       DEBUG(dbgs() << "LICM deleting dead inst: " << I << '\n');
299       ++II;
300       CurAST->deleteValue(&I);
301       I.eraseFromParent();
302       Changed = true;
303       continue;
304     }
305 
306     // Check to see if we can sink this instruction to the exit blocks
307     // of the loop.  We can do this if the all users of the instruction are
308     // outside of the loop.  In this case, it doesn't even matter if the
309     // operands of the instruction are loop invariant.
310     //
311     if (isNotUsedInLoop(I, CurLoop, SafetyInfo) &&
312         canSinkOrHoistInst(I, AA, DT, TLI, CurLoop, CurAST, SafetyInfo)) {
313       ++II;
314       Changed |= sink(I, LI, DT, CurLoop, CurAST, SafetyInfo);
315     }
316   }
317   return Changed;
318 }
319 
320 /// Walk the specified region of the CFG (defined by all blocks dominated by
321 /// the specified block, and that are in the current loop) in depth first
322 /// order w.r.t the DominatorTree.  This allows us to visit definitions before
323 /// uses, allowing us to hoist a loop body in one pass without iteration.
324 ///
325 bool llvm::hoistRegion(DomTreeNode *N, AliasAnalysis *AA, LoopInfo *LI,
326                        DominatorTree *DT, TargetLibraryInfo *TLI, Loop *CurLoop,
327                        AliasSetTracker *CurAST, LICMSafetyInfo *SafetyInfo) {
328   // Verify inputs.
329   assert(N != nullptr && AA != nullptr && LI != nullptr &&
330          DT != nullptr && CurLoop != nullptr && CurAST != nullptr &&
331          SafetyInfo != nullptr && "Unexpected input to hoistRegion");
332 
333   BasicBlock *BB = N->getBlock();
334 
335   // If this subregion is not in the top level loop at all, exit.
336   if (!CurLoop->contains(BB)) return false;
337 
338   // Only need to process the contents of this block if it is not part of a
339   // subloop (which would already have been processed).
340   bool Changed = false;
341   if (!inSubLoop(BB, CurLoop, LI))
342     for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ) {
343       Instruction &I = *II++;
344       // Try constant folding this instruction.  If all the operands are
345       // constants, it is technically hoistable, but it would be better to just
346       // fold it.
347       if (Constant *C = ConstantFoldInstruction(
348               &I, I.getModule()->getDataLayout(), TLI)) {
349         DEBUG(dbgs() << "LICM folding inst: " << I << "  --> " << *C << '\n');
350         CurAST->copyValue(&I, C);
351         CurAST->deleteValue(&I);
352         I.replaceAllUsesWith(C);
353         I.eraseFromParent();
354         continue;
355       }
356 
357       // Try hoisting the instruction out to the preheader.  We can only do this
358       // if all of the operands of the instruction are loop invariant and if it
359       // is safe to hoist the instruction.
360       //
361       if (CurLoop->hasLoopInvariantOperands(&I) &&
362           canSinkOrHoistInst(I, AA, DT, TLI, CurLoop, CurAST, SafetyInfo) &&
363           isSafeToExecuteUnconditionally(I, DT, TLI, CurLoop, SafetyInfo,
364                                  CurLoop->getLoopPreheader()->getTerminator()))
365         Changed |= hoist(I, DT, CurLoop, SafetyInfo);
366     }
367 
368   const std::vector<DomTreeNode*> &Children = N->getChildren();
369   for (DomTreeNode *Child : Children)
370     Changed |= hoistRegion(Child, AA, LI, DT, TLI, CurLoop, CurAST, SafetyInfo);
371   return Changed;
372 }
373 
374 /// Computes loop safety information, checks loop body & header
375 /// for the possibility of may throw exception.
376 ///
377 void llvm::computeLICMSafetyInfo(LICMSafetyInfo * SafetyInfo, Loop * CurLoop) {
378   assert(CurLoop != nullptr && "CurLoop cant be null");
379   BasicBlock *Header = CurLoop->getHeader();
380   // Setting default safety values.
381   SafetyInfo->MayThrow = false;
382   SafetyInfo->HeaderMayThrow = false;
383   // Iterate over header and compute safety info.
384   for (BasicBlock::iterator I = Header->begin(), E = Header->end();
385        (I != E) && !SafetyInfo->HeaderMayThrow; ++I)
386     SafetyInfo->HeaderMayThrow |= I->mayThrow();
387 
388   SafetyInfo->MayThrow = SafetyInfo->HeaderMayThrow;
389   // Iterate over loop instructions and compute safety info.
390   for (Loop::block_iterator BB = CurLoop->block_begin(),
391        BBE = CurLoop->block_end(); (BB != BBE) && !SafetyInfo->MayThrow ; ++BB)
392     for (BasicBlock::iterator I = (*BB)->begin(), E = (*BB)->end();
393          (I != E) && !SafetyInfo->MayThrow; ++I)
394       SafetyInfo->MayThrow |= I->mayThrow();
395 
396   // Compute funclet colors if we might sink/hoist in a function with a funclet
397   // personality routine.
398   Function *Fn = CurLoop->getHeader()->getParent();
399   if (Fn->hasPersonalityFn())
400     if (Constant *PersonalityFn = Fn->getPersonalityFn())
401       if (isFuncletEHPersonality(classifyEHPersonality(PersonalityFn)))
402         SafetyInfo->BlockColors = colorEHFunclets(*Fn);
403 }
404 
405 /// canSinkOrHoistInst - Return true if the hoister and sinker can handle this
406 /// instruction.
407 ///
408 bool canSinkOrHoistInst(Instruction &I, AliasAnalysis *AA, DominatorTree *DT,
409                         TargetLibraryInfo *TLI, Loop *CurLoop,
410                         AliasSetTracker *CurAST, LICMSafetyInfo *SafetyInfo) {
411   // Loads have extra constraints we have to verify before we can hoist them.
412   if (LoadInst *LI = dyn_cast<LoadInst>(&I)) {
413     if (!LI->isUnordered())
414       return false;        // Don't hoist volatile/atomic loads!
415 
416     // Loads from constant memory are always safe to move, even if they end up
417     // in the same alias set as something that ends up being modified.
418     if (AA->pointsToConstantMemory(LI->getOperand(0)))
419       return true;
420     if (LI->getMetadata(LLVMContext::MD_invariant_load))
421       return true;
422 
423     // Don't hoist loads which have may-aliased stores in loop.
424     uint64_t Size = 0;
425     if (LI->getType()->isSized())
426       Size = I.getModule()->getDataLayout().getTypeStoreSize(LI->getType());
427 
428     AAMDNodes AAInfo;
429     LI->getAAMetadata(AAInfo);
430 
431     return !pointerInvalidatedByLoop(LI->getOperand(0), Size, AAInfo, CurAST);
432   } else if (CallInst *CI = dyn_cast<CallInst>(&I)) {
433     // Don't sink or hoist dbg info; it's legal, but not useful.
434     if (isa<DbgInfoIntrinsic>(I))
435       return false;
436 
437     // Don't sink calls which can throw.
438     if (CI->mayThrow())
439       return false;
440 
441     // Handle simple cases by querying alias analysis.
442     FunctionModRefBehavior Behavior = AA->getModRefBehavior(CI);
443     if (Behavior == FMRB_DoesNotAccessMemory)
444       return true;
445     if (AliasAnalysis::onlyReadsMemory(Behavior)) {
446       // A readonly argmemonly function only reads from memory pointed to by
447       // it's arguments with arbitrary offsets.  If we can prove there are no
448       // writes to this memory in the loop, we can hoist or sink.
449       if (AliasAnalysis::onlyAccessesArgPointees(Behavior)) {
450         for (Value *Op : CI->arg_operands())
451           if (Op->getType()->isPointerTy() &&
452               pointerInvalidatedByLoop(Op, MemoryLocation::UnknownSize,
453                                        AAMDNodes(), CurAST))
454             return false;
455         return true;
456       }
457       // If this call only reads from memory and there are no writes to memory
458       // in the loop, we can hoist or sink the call as appropriate.
459       bool FoundMod = false;
460       for (AliasSet &AS : *CurAST) {
461         if (!AS.isForwardingAliasSet() && AS.isMod()) {
462           FoundMod = true;
463           break;
464         }
465       }
466       if (!FoundMod) return true;
467     }
468 
469     // FIXME: This should use mod/ref information to see if we can hoist or
470     // sink the call.
471 
472     return false;
473   }
474 
475   // Only these instructions are hoistable/sinkable.
476   if (!isa<BinaryOperator>(I) && !isa<CastInst>(I) && !isa<SelectInst>(I) &&
477       !isa<GetElementPtrInst>(I) && !isa<CmpInst>(I) &&
478       !isa<InsertElementInst>(I) && !isa<ExtractElementInst>(I) &&
479       !isa<ShuffleVectorInst>(I) && !isa<ExtractValueInst>(I) &&
480       !isa<InsertValueInst>(I))
481     return false;
482 
483   // TODO: Plumb the context instruction through to make hoisting and sinking
484   // more powerful. Hoisting of loads already works due to the special casing
485   // above.
486   return isSafeToExecuteUnconditionally(I, DT, TLI, CurLoop, SafetyInfo,
487                                         nullptr);
488 }
489 
490 /// Returns true if a PHINode is a trivially replaceable with an
491 /// Instruction.
492 /// This is true when all incoming values are that instruction.
493 /// This pattern occurs most often with LCSSA PHI nodes.
494 ///
495 static bool isTriviallyReplacablePHI(const PHINode &PN, const Instruction &I) {
496   for (const Value *IncValue : PN.incoming_values())
497     if (IncValue != &I)
498       return false;
499 
500   return true;
501 }
502 
503 /// Return true if the only users of this instruction are outside of
504 /// the loop. If this is true, we can sink the instruction to the exit
505 /// blocks of the loop.
506 ///
507 static bool isNotUsedInLoop(const Instruction &I, const Loop *CurLoop,
508                             const LICMSafetyInfo *SafetyInfo) {
509   const auto &BlockColors = SafetyInfo->BlockColors;
510   for (const User *U : I.users()) {
511     const Instruction *UI = cast<Instruction>(U);
512     if (const PHINode *PN = dyn_cast<PHINode>(UI)) {
513       const BasicBlock *BB = PN->getParent();
514       // We cannot sink uses in catchswitches.
515       if (isa<CatchSwitchInst>(BB->getTerminator()))
516         return false;
517 
518       // We need to sink a callsite to a unique funclet.  Avoid sinking if the
519       // phi use is too muddled.
520       if (isa<CallInst>(I))
521         if (!BlockColors.empty() &&
522             BlockColors.find(const_cast<BasicBlock *>(BB))->second.size() != 1)
523           return false;
524 
525       // A PHI node where all of the incoming values are this instruction are
526       // special -- they can just be RAUW'ed with the instruction and thus
527       // don't require a use in the predecessor. This is a particular important
528       // special case because it is the pattern found in LCSSA form.
529       if (isTriviallyReplacablePHI(*PN, I)) {
530         if (CurLoop->contains(PN))
531           return false;
532         else
533           continue;
534       }
535 
536       // Otherwise, PHI node uses occur in predecessor blocks if the incoming
537       // values. Check for such a use being inside the loop.
538       for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
539         if (PN->getIncomingValue(i) == &I)
540           if (CurLoop->contains(PN->getIncomingBlock(i)))
541             return false;
542 
543       continue;
544     }
545 
546     if (CurLoop->contains(UI))
547       return false;
548   }
549   return true;
550 }
551 
552 static Instruction *
553 CloneInstructionInExitBlock(Instruction &I, BasicBlock &ExitBlock, PHINode &PN,
554                             const LoopInfo *LI,
555                             const LICMSafetyInfo *SafetyInfo) {
556   Instruction *New;
557   if (auto *CI = dyn_cast<CallInst>(&I)) {
558     const auto &BlockColors = SafetyInfo->BlockColors;
559 
560     // Sinking call-sites need to be handled differently from other
561     // instructions.  The cloned call-site needs a funclet bundle operand
562     // appropriate for it's location in the CFG.
563     SmallVector<OperandBundleDef, 1> OpBundles;
564     for (unsigned BundleIdx = 0, BundleEnd = CI->getNumOperandBundles();
565          BundleIdx != BundleEnd; ++BundleIdx) {
566       OperandBundleUse Bundle = CI->getOperandBundleAt(BundleIdx);
567       if (Bundle.getTagID() == LLVMContext::OB_funclet)
568         continue;
569 
570       OpBundles.emplace_back(Bundle);
571     }
572 
573     if (!BlockColors.empty()) {
574       const ColorVector &CV = BlockColors.find(&ExitBlock)->second;
575       assert(CV.size() == 1 && "non-unique color for exit block!");
576       BasicBlock *BBColor = CV.front();
577       Instruction *EHPad = BBColor->getFirstNonPHI();
578       if (EHPad->isEHPad())
579         OpBundles.emplace_back("funclet", EHPad);
580     }
581 
582     New = CallInst::Create(CI, OpBundles);
583   } else {
584     New = I.clone();
585   }
586 
587   ExitBlock.getInstList().insert(ExitBlock.getFirstInsertionPt(), New);
588   if (!I.getName().empty()) New->setName(I.getName() + ".le");
589 
590   // Build LCSSA PHI nodes for any in-loop operands. Note that this is
591   // particularly cheap because we can rip off the PHI node that we're
592   // replacing for the number and blocks of the predecessors.
593   // OPT: If this shows up in a profile, we can instead finish sinking all
594   // invariant instructions, and then walk their operands to re-establish
595   // LCSSA. That will eliminate creating PHI nodes just to nuke them when
596   // sinking bottom-up.
597   for (User::op_iterator OI = New->op_begin(), OE = New->op_end(); OI != OE;
598        ++OI)
599     if (Instruction *OInst = dyn_cast<Instruction>(*OI))
600       if (Loop *OLoop = LI->getLoopFor(OInst->getParent()))
601         if (!OLoop->contains(&PN)) {
602           PHINode *OpPN =
603               PHINode::Create(OInst->getType(), PN.getNumIncomingValues(),
604                               OInst->getName() + ".lcssa", &ExitBlock.front());
605           for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i)
606             OpPN->addIncoming(OInst, PN.getIncomingBlock(i));
607           *OI = OpPN;
608         }
609   return New;
610 }
611 
612 /// When an instruction is found to only be used outside of the loop, this
613 /// function moves it to the exit blocks and patches up SSA form as needed.
614 /// This method is guaranteed to remove the original instruction from its
615 /// position, and may either delete it or move it to outside of the loop.
616 ///
617 static bool sink(Instruction &I, const LoopInfo *LI, const DominatorTree *DT,
618                  const Loop *CurLoop, AliasSetTracker *CurAST,
619                  const LICMSafetyInfo *SafetyInfo) {
620   DEBUG(dbgs() << "LICM sinking instruction: " << I << "\n");
621   bool Changed = false;
622   if (isa<LoadInst>(I)) ++NumMovedLoads;
623   else if (isa<CallInst>(I)) ++NumMovedCalls;
624   ++NumSunk;
625   Changed = true;
626 
627 #ifndef NDEBUG
628   SmallVector<BasicBlock *, 32> ExitBlocks;
629   CurLoop->getUniqueExitBlocks(ExitBlocks);
630   SmallPtrSet<BasicBlock *, 32> ExitBlockSet(ExitBlocks.begin(),
631                                              ExitBlocks.end());
632 #endif
633 
634   // Clones of this instruction. Don't create more than one per exit block!
635   SmallDenseMap<BasicBlock *, Instruction *, 32> SunkCopies;
636 
637   // If this instruction is only used outside of the loop, then all users are
638   // PHI nodes in exit blocks due to LCSSA form. Just RAUW them with clones of
639   // the instruction.
640   while (!I.use_empty()) {
641     Value::user_iterator UI = I.user_begin();
642     auto *User = cast<Instruction>(*UI);
643     if (!DT->isReachableFromEntry(User->getParent())) {
644       User->replaceUsesOfWith(&I, UndefValue::get(I.getType()));
645       continue;
646     }
647     // The user must be a PHI node.
648     PHINode *PN = cast<PHINode>(User);
649 
650     // Surprisingly, instructions can be used outside of loops without any
651     // exits.  This can only happen in PHI nodes if the incoming block is
652     // unreachable.
653     Use &U = UI.getUse();
654     BasicBlock *BB = PN->getIncomingBlock(U);
655     if (!DT->isReachableFromEntry(BB)) {
656       U = UndefValue::get(I.getType());
657       continue;
658     }
659 
660     BasicBlock *ExitBlock = PN->getParent();
661     assert(ExitBlockSet.count(ExitBlock) &&
662            "The LCSSA PHI is not in an exit block!");
663 
664     Instruction *New;
665     auto It = SunkCopies.find(ExitBlock);
666     if (It != SunkCopies.end())
667       New = It->second;
668     else
669       New = SunkCopies[ExitBlock] =
670           CloneInstructionInExitBlock(I, *ExitBlock, *PN, LI, SafetyInfo);
671 
672     PN->replaceAllUsesWith(New);
673     PN->eraseFromParent();
674   }
675 
676   CurAST->deleteValue(&I);
677   I.eraseFromParent();
678   return Changed;
679 }
680 
681 /// When an instruction is found to only use loop invariant operands that
682 /// is safe to hoist, this instruction is called to do the dirty work.
683 ///
684 static bool hoist(Instruction &I, const DominatorTree *DT, const Loop *CurLoop,
685                   const LICMSafetyInfo *SafetyInfo) {
686   auto *Preheader = CurLoop->getLoopPreheader();
687   DEBUG(dbgs() << "LICM hoisting to " << Preheader->getName() << ": "
688         << I << "\n");
689 
690   // Metadata can be dependent on conditions we are hoisting above.
691   // Conservatively strip all metadata on the instruction unless we were
692   // guaranteed to execute I if we entered the loop, in which case the metadata
693   // is valid in the loop preheader.
694   if (I.hasMetadataOtherThanDebugLoc() &&
695       // The check on hasMetadataOtherThanDebugLoc is to prevent us from burning
696       // time in isGuaranteedToExecute if we don't actually have anything to
697       // drop.  It is a compile time optimization, not required for correctness.
698       !isGuaranteedToExecute(I, DT, CurLoop, SafetyInfo))
699     I.dropUnknownNonDebugMetadata();
700 
701   // Move the new node to the Preheader, before its terminator.
702   I.moveBefore(Preheader->getTerminator());
703 
704   if (isa<LoadInst>(I)) ++NumMovedLoads;
705   else if (isa<CallInst>(I)) ++NumMovedCalls;
706   ++NumHoisted;
707   return true;
708 }
709 
710 /// Only sink or hoist an instruction if it is not a trapping instruction,
711 /// or if the instruction is known not to trap when moved to the preheader.
712 /// or if it is a trapping instruction and is guaranteed to execute.
713 static bool isSafeToExecuteUnconditionally(const Instruction &Inst,
714                                            const DominatorTree *DT,
715                                            const TargetLibraryInfo *TLI,
716                                            const Loop *CurLoop,
717                                            const LICMSafetyInfo *SafetyInfo,
718                                            const Instruction *CtxI) {
719   if (isSafeToSpeculativelyExecute(&Inst, CtxI, DT, TLI))
720     return true;
721 
722   return isGuaranteedToExecute(Inst, DT, CurLoop, SafetyInfo);
723 }
724 
725 static bool isGuaranteedToExecute(const Instruction &Inst,
726                                   const DominatorTree *DT,
727                                   const Loop *CurLoop,
728                                   const LICMSafetyInfo * SafetyInfo) {
729 
730   // We have to check to make sure that the instruction dominates all
731   // of the exit blocks.  If it doesn't, then there is a path out of the loop
732   // which does not execute this instruction, so we can't hoist it.
733 
734   // If the instruction is in the header block for the loop (which is very
735   // common), it is always guaranteed to dominate the exit blocks.  Since this
736   // is a common case, and can save some work, check it now.
737   if (Inst.getParent() == CurLoop->getHeader())
738     // If there's a throw in the header block, we can't guarantee we'll reach
739     // Inst.
740     return !SafetyInfo->HeaderMayThrow;
741 
742   // Somewhere in this loop there is an instruction which may throw and make us
743   // exit the loop.
744   if (SafetyInfo->MayThrow)
745     return false;
746 
747   // Get the exit blocks for the current loop.
748   SmallVector<BasicBlock*, 8> ExitBlocks;
749   CurLoop->getExitBlocks(ExitBlocks);
750 
751   // Verify that the block dominates each of the exit blocks of the loop.
752   for (BasicBlock *ExitBlock : ExitBlocks)
753     if (!DT->dominates(Inst.getParent(), ExitBlock))
754       return false;
755 
756   // As a degenerate case, if the loop is statically infinite then we haven't
757   // proven anything since there are no exit blocks.
758   if (ExitBlocks.empty())
759     return false;
760 
761   return true;
762 }
763 
764 namespace {
765   class LoopPromoter : public LoadAndStorePromoter {
766     Value *SomePtr;  // Designated pointer to store to.
767     SmallPtrSetImpl<Value*> &PointerMustAliases;
768     SmallVectorImpl<BasicBlock*> &LoopExitBlocks;
769     SmallVectorImpl<Instruction*> &LoopInsertPts;
770     PredIteratorCache &PredCache;
771     AliasSetTracker &AST;
772     LoopInfo &LI;
773     DebugLoc DL;
774     int Alignment;
775     AAMDNodes AATags;
776 
777     Value *maybeInsertLCSSAPHI(Value *V, BasicBlock *BB) const {
778       if (Instruction *I = dyn_cast<Instruction>(V))
779         if (Loop *L = LI.getLoopFor(I->getParent()))
780           if (!L->contains(BB)) {
781             // We need to create an LCSSA PHI node for the incoming value and
782             // store that.
783             PHINode *PN =
784                 PHINode::Create(I->getType(), PredCache.size(BB),
785                                 I->getName() + ".lcssa", &BB->front());
786             for (BasicBlock *Pred : PredCache.get(BB))
787               PN->addIncoming(I, Pred);
788             return PN;
789           }
790       return V;
791     }
792 
793   public:
794     LoopPromoter(Value *SP,
795                  ArrayRef<const Instruction *> Insts,
796                  SSAUpdater &S, SmallPtrSetImpl<Value *> &PMA,
797                  SmallVectorImpl<BasicBlock *> &LEB,
798                  SmallVectorImpl<Instruction *> &LIP, PredIteratorCache &PIC,
799                  AliasSetTracker &ast, LoopInfo &li, DebugLoc dl, int alignment,
800                  const AAMDNodes &AATags)
801         : LoadAndStorePromoter(Insts, S), SomePtr(SP), PointerMustAliases(PMA),
802           LoopExitBlocks(LEB), LoopInsertPts(LIP), PredCache(PIC), AST(ast),
803           LI(li), DL(dl), Alignment(alignment), AATags(AATags) {}
804 
805     bool isInstInList(Instruction *I,
806                       const SmallVectorImpl<Instruction*> &) const override {
807       Value *Ptr;
808       if (LoadInst *LI = dyn_cast<LoadInst>(I))
809         Ptr = LI->getOperand(0);
810       else
811         Ptr = cast<StoreInst>(I)->getPointerOperand();
812       return PointerMustAliases.count(Ptr);
813     }
814 
815     void doExtraRewritesBeforeFinalDeletion() const override {
816       // Insert stores after in the loop exit blocks.  Each exit block gets a
817       // store of the live-out values that feed them.  Since we've already told
818       // the SSA updater about the defs in the loop and the preheader
819       // definition, it is all set and we can start using it.
820       for (unsigned i = 0, e = LoopExitBlocks.size(); i != e; ++i) {
821         BasicBlock *ExitBlock = LoopExitBlocks[i];
822         Value *LiveInValue = SSA.GetValueInMiddleOfBlock(ExitBlock);
823         LiveInValue = maybeInsertLCSSAPHI(LiveInValue, ExitBlock);
824         Value *Ptr = maybeInsertLCSSAPHI(SomePtr, ExitBlock);
825         Instruction *InsertPos = LoopInsertPts[i];
826         StoreInst *NewSI = new StoreInst(LiveInValue, Ptr, InsertPos);
827         NewSI->setAlignment(Alignment);
828         NewSI->setDebugLoc(DL);
829         if (AATags) NewSI->setAAMetadata(AATags);
830       }
831     }
832 
833     void replaceLoadWithValue(LoadInst *LI, Value *V) const override {
834       // Update alias analysis.
835       AST.copyValue(LI, V);
836     }
837     void instructionDeleted(Instruction *I) const override {
838       AST.deleteValue(I);
839     }
840   };
841 } // end anon namespace
842 
843 /// Try to promote memory values to scalars by sinking stores out of the
844 /// loop and moving loads to before the loop.  We do this by looping over
845 /// the stores in the loop, looking for stores to Must pointers which are
846 /// loop invariant.
847 ///
848 bool llvm::promoteLoopAccessesToScalars(AliasSet &AS,
849                                         SmallVectorImpl<BasicBlock*>&ExitBlocks,
850                                         SmallVectorImpl<Instruction*>&InsertPts,
851                                         PredIteratorCache &PIC, LoopInfo *LI,
852                                         DominatorTree *DT,
853                                         const TargetLibraryInfo *TLI,
854                                         Loop *CurLoop,
855                                         AliasSetTracker *CurAST,
856                                         LICMSafetyInfo * SafetyInfo) {
857   // Verify inputs.
858   assert(LI != nullptr && DT != nullptr &&
859          CurLoop != nullptr && CurAST != nullptr &&
860          SafetyInfo != nullptr &&
861          "Unexpected Input to promoteLoopAccessesToScalars");
862 
863   // We can promote this alias set if it has a store, if it is a "Must" alias
864   // set, if the pointer is loop invariant, and if we are not eliminating any
865   // volatile loads or stores.
866   if (AS.isForwardingAliasSet() || !AS.isMod() || !AS.isMustAlias() ||
867       AS.isVolatile() || !CurLoop->isLoopInvariant(AS.begin()->getValue()))
868     return false;
869 
870   assert(!AS.empty() &&
871          "Must alias set should have at least one pointer element in it!");
872 
873   Value *SomePtr = AS.begin()->getValue();
874   BasicBlock * Preheader = CurLoop->getLoopPreheader();
875 
876   // It isn't safe to promote a load/store from the loop if the load/store is
877   // conditional.  For example, turning:
878   //
879   //    for () { if (c) *P += 1; }
880   //
881   // into:
882   //
883   //    tmp = *P;  for () { if (c) tmp +=1; } *P = tmp;
884   //
885   // is not safe, because *P may only be valid to access if 'c' is true.
886   //
887   // The safety property divides into two parts:
888   // 1) The memory may not be dereferenceable on entry to the loop.  In this
889   //    case, we can't insert the required load in the preheader.
890   // 2) The memory model does not allow us to insert a store along any dynamic
891   //    path which did not originally have one.
892   //
893   // It is safe to promote P if all uses are direct load/stores and if at
894   // least one is guaranteed to be executed.
895   bool GuaranteedToExecute = false;
896 
897   // It is also safe to promote P if we can prove that speculating a load into
898   // the preheader is safe (i.e. proving dereferenceability on all
899   // paths through the loop), and that the memory can be proven thread local
900   // (so that the memory model requirement doesn't apply.)  We first establish
901   // the former, and then run a capture analysis below to establish the later.
902   // We can use any access within the alias set to prove dereferenceability
903   // since they're all must alias.
904   bool CanSpeculateLoad = false;
905 
906   SmallVector<Instruction*, 64> LoopUses;
907   SmallPtrSet<Value*, 4> PointerMustAliases;
908 
909   // We start with an alignment of one and try to find instructions that allow
910   // us to prove better alignment.
911   unsigned Alignment = 1;
912   AAMDNodes AATags;
913   bool HasDedicatedExits = CurLoop->hasDedicatedExits();
914 
915   // Don't sink stores from loops without dedicated block exits. Exits
916   // containing indirect branches are not transformed by loop simplify,
917   // make sure we catch that. An additional load may be generated in the
918   // preheader for SSA updater, so also avoid sinking when no preheader
919   // is available.
920   if (!HasDedicatedExits || !Preheader)
921     return false;
922 
923   const DataLayout &MDL = Preheader->getModule()->getDataLayout();
924 
925   // Check that all of the pointers in the alias set have the same type.  We
926   // cannot (yet) promote a memory location that is loaded and stored in
927   // different sizes.  While we are at it, collect alignment and AA info.
928   bool Changed = false;
929   for (AliasSet::iterator ASI = AS.begin(), E = AS.end(); ASI != E; ++ASI) {
930     Value *ASIV = ASI->getValue();
931     PointerMustAliases.insert(ASIV);
932 
933     // Check that all of the pointers in the alias set have the same type.  We
934     // cannot (yet) promote a memory location that is loaded and stored in
935     // different sizes.
936     if (SomePtr->getType() != ASIV->getType())
937       return Changed;
938 
939     for (User *U : ASIV->users()) {
940       // Ignore instructions that are outside the loop.
941       Instruction *UI = dyn_cast<Instruction>(U);
942       if (!UI || !CurLoop->contains(UI))
943         continue;
944 
945       // If there is an non-load/store instruction in the loop, we can't promote
946       // it.
947       if (const LoadInst *Load = dyn_cast<LoadInst>(UI)) {
948         assert(!Load->isVolatile() && "AST broken");
949         if (!Load->isSimple())
950           return Changed;
951 
952         if (!GuaranteedToExecute && !CanSpeculateLoad)
953           CanSpeculateLoad =
954             isSafeToExecuteUnconditionally(*Load, DT, TLI, CurLoop,
955                                            SafetyInfo,
956                                            Preheader->getTerminator());
957       } else if (const StoreInst *Store = dyn_cast<StoreInst>(UI)) {
958         // Stores *of* the pointer are not interesting, only stores *to* the
959         // pointer.
960         if (UI->getOperand(1) != ASIV)
961           continue;
962         assert(!Store->isVolatile() && "AST broken");
963         if (!Store->isSimple())
964           return Changed;
965 
966         // Note that we only check GuaranteedToExecute inside the store case
967         // so that we do not introduce stores where they did not exist before
968         // (which would break the LLVM concurrency model).
969 
970         // If the alignment of this instruction allows us to specify a more
971         // restrictive (and performant) alignment and if we are sure this
972         // instruction will be executed, update the alignment.
973         // Larger is better, with the exception of 0 being the best alignment.
974         unsigned InstAlignment = Store->getAlignment();
975         if ((InstAlignment > Alignment || InstAlignment == 0) && Alignment != 0)
976           if (isGuaranteedToExecute(*UI, DT, CurLoop, SafetyInfo)) {
977             GuaranteedToExecute = true;
978             Alignment = InstAlignment;
979           }
980 
981         if (!GuaranteedToExecute)
982           GuaranteedToExecute = isGuaranteedToExecute(*UI, DT,
983                                                       CurLoop, SafetyInfo);
984 
985 
986         if (!GuaranteedToExecute && !CanSpeculateLoad) {
987           CanSpeculateLoad =
988             isDereferenceableAndAlignedPointer(Store->getPointerOperand(),
989                                                Store->getAlignment(), MDL,
990                                                Preheader->getTerminator(),
991                                                DT, TLI);
992         }
993       } else
994         return Changed; // Not a load or store.
995 
996       // Merge the AA tags.
997       if (LoopUses.empty()) {
998         // On the first load/store, just take its AA tags.
999         UI->getAAMetadata(AATags);
1000       } else if (AATags) {
1001         UI->getAAMetadata(AATags, /* Merge = */ true);
1002       }
1003 
1004       LoopUses.push_back(UI);
1005     }
1006   }
1007 
1008   // Check legality per comment above. Otherwise, we can't promote.
1009   bool PromotionIsLegal = GuaranteedToExecute;
1010   if (!PromotionIsLegal && CanSpeculateLoad) {
1011     // If this is a thread local location, then we can insert stores along
1012     // paths which originally didn't have them without violating the memory
1013     // model.
1014     Value *Object = GetUnderlyingObject(SomePtr, MDL);
1015     PromotionIsLegal = isAllocLikeFn(Object, TLI) &&
1016       !PointerMayBeCaptured(Object, true, true);
1017   }
1018   if (!PromotionIsLegal)
1019     return Changed;
1020 
1021   // Figure out the loop exits and their insertion points, if this is the
1022   // first promotion.
1023   if (ExitBlocks.empty()) {
1024     CurLoop->getUniqueExitBlocks(ExitBlocks);
1025     InsertPts.clear();
1026     InsertPts.reserve(ExitBlocks.size());
1027     for (BasicBlock *ExitBlock : ExitBlocks)
1028       InsertPts.push_back(&*ExitBlock->getFirstInsertionPt());
1029   }
1030 
1031   // Can't insert into a catchswitch.
1032   for (BasicBlock *ExitBlock : ExitBlocks)
1033     if (isa<CatchSwitchInst>(ExitBlock->getTerminator()))
1034       return Changed;
1035 
1036   // Otherwise, this is safe to promote, lets do it!
1037   DEBUG(dbgs() << "LICM: Promoting value stored to in loop: " <<*SomePtr<<'\n');
1038   Changed = true;
1039   ++NumPromoted;
1040 
1041   // Grab a debug location for the inserted loads/stores; given that the
1042   // inserted loads/stores have little relation to the original loads/stores,
1043   // this code just arbitrarily picks a location from one, since any debug
1044   // location is better than none.
1045   DebugLoc DL = LoopUses[0]->getDebugLoc();
1046 
1047   // We use the SSAUpdater interface to insert phi nodes as required.
1048   SmallVector<PHINode*, 16> NewPHIs;
1049   SSAUpdater SSA(&NewPHIs);
1050   LoopPromoter Promoter(SomePtr, LoopUses, SSA,
1051                         PointerMustAliases, ExitBlocks,
1052                         InsertPts, PIC, *CurAST, *LI, DL, Alignment, AATags);
1053 
1054   // Set up the preheader to have a definition of the value.  It is the live-out
1055   // value from the preheader that uses in the loop will use.
1056   LoadInst *PreheaderLoad =
1057     new LoadInst(SomePtr, SomePtr->getName()+".promoted",
1058                  Preheader->getTerminator());
1059   PreheaderLoad->setAlignment(Alignment);
1060   PreheaderLoad->setDebugLoc(DL);
1061   if (AATags) PreheaderLoad->setAAMetadata(AATags);
1062   SSA.AddAvailableValue(Preheader, PreheaderLoad);
1063 
1064   // Rewrite all the loads in the loop and remember all the definitions from
1065   // stores in the loop.
1066   Promoter.run(LoopUses);
1067 
1068   // If the SSAUpdater didn't use the load in the preheader, just zap it now.
1069   if (PreheaderLoad->use_empty())
1070     PreheaderLoad->eraseFromParent();
1071 
1072   return Changed;
1073 }
1074 
1075 /// Returns an owning pointer to an alias set which incorporates aliasing info
1076 /// from L and all subloops of L.
1077 AliasSetTracker *LICM::collectAliasInfoForLoop(Loop *L) {
1078   AliasSetTracker *CurAST = nullptr;
1079   SmallVector<Loop *, 4> RecomputeLoops;
1080   for (Loop *InnerL : L->getSubLoops()) {
1081     auto MapI = LoopToAliasSetMap.find(InnerL);
1082     // If the AST for this inner loop is missing it may have been merged into
1083     // some other loop's AST and then that loop unrolled, and so we need to
1084     // recompute it.
1085     if (MapI == LoopToAliasSetMap.end()) {
1086       RecomputeLoops.push_back(InnerL);
1087       continue;
1088     }
1089     AliasSetTracker *InnerAST = MapI->second;
1090 
1091     if (CurAST != nullptr) {
1092       // What if InnerLoop was modified by other passes ?
1093       CurAST->add(*InnerAST);
1094 
1095       // Once we've incorporated the inner loop's AST into ours, we don't need
1096       // the subloop's anymore.
1097       delete InnerAST;
1098     } else {
1099       CurAST = InnerAST;
1100     }
1101     LoopToAliasSetMap.erase(MapI);
1102   }
1103   if (CurAST == nullptr)
1104     CurAST = new AliasSetTracker(*AA);
1105 
1106   auto mergeLoop = [&](Loop *L) {
1107     // Loop over the body of this loop, looking for calls, invokes, and stores.
1108     // Because subloops have already been incorporated into AST, we skip blocks
1109     // in subloops.
1110     for (BasicBlock *BB : L->blocks())
1111       if (LI->getLoopFor(BB) == L) // Ignore blocks in subloops.
1112         CurAST->add(*BB);          // Incorporate the specified basic block
1113   };
1114 
1115   // Add everything from the sub loops that are no longer directly available.
1116   for (Loop *InnerL : RecomputeLoops)
1117     mergeLoop(InnerL);
1118 
1119   // And merge in this loop.
1120   mergeLoop(L);
1121 
1122   return CurAST;
1123 }
1124 
1125 /// Simple analysis hook. Clone alias set info.
1126 ///
1127 void LICM::cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L) {
1128   AliasSetTracker *AST = LoopToAliasSetMap.lookup(L);
1129   if (!AST)
1130     return;
1131 
1132   AST->copyValue(From, To);
1133 }
1134 
1135 /// Simple Analysis hook. Delete value V from alias set
1136 ///
1137 void LICM::deleteAnalysisValue(Value *V, Loop *L) {
1138   AliasSetTracker *AST = LoopToAliasSetMap.lookup(L);
1139   if (!AST)
1140     return;
1141 
1142   AST->deleteValue(V);
1143 }
1144 
1145 /// Simple Analysis hook. Delete value L from alias set map.
1146 ///
1147 void LICM::deleteAnalysisLoop(Loop *L) {
1148   AliasSetTracker *AST = LoopToAliasSetMap.lookup(L);
1149   if (!AST)
1150     return;
1151 
1152   delete AST;
1153   LoopToAliasSetMap.erase(L);
1154 }
1155 
1156 
1157 /// Return true if the body of this loop may store into the memory
1158 /// location pointed to by V.
1159 ///
1160 static bool pointerInvalidatedByLoop(Value *V, uint64_t Size,
1161                                      const AAMDNodes &AAInfo,
1162                                      AliasSetTracker *CurAST) {
1163   // Check to see if any of the basic blocks in CurLoop invalidate *V.
1164   return CurAST->getAliasSetForPointer(V, Size, AAInfo).isMod();
1165 }
1166 
1167 /// Little predicate that returns true if the specified basic block is in
1168 /// a subloop of the current one, not the current one itself.
1169 ///
1170 static bool inSubLoop(BasicBlock *BB, Loop *CurLoop, LoopInfo *LI) {
1171   assert(CurLoop->contains(BB) && "Only valid if BB is IN the loop");
1172   return LI->getLoopFor(BB) != CurLoop;
1173 }
1174 
1175