switch from pointer equality comparison to MDNode::getMostGenericTBAA
[oota-llvm.git] / lib / Transforms / Scalar / LICM.cpp
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 #define DEBUG_TYPE "licm"
34 #include "llvm/Transforms/Scalar.h"
35 #include "llvm/ADT/Statistic.h"
36 #include "llvm/Analysis/AliasAnalysis.h"
37 #include "llvm/Analysis/AliasSetTracker.h"
38 #include "llvm/Analysis/ConstantFolding.h"
39 #include "llvm/Analysis/Dominators.h"
40 #include "llvm/Analysis/LoopInfo.h"
41 #include "llvm/Analysis/LoopPass.h"
42 #include "llvm/Analysis/ValueTracking.h"
43 #include "llvm/IR/Constants.h"
44 #include "llvm/IR/DataLayout.h"
45 #include "llvm/IR/DerivedTypes.h"
46 #include "llvm/IR/Instructions.h"
47 #include "llvm/IR/IntrinsicInst.h"
48 #include "llvm/IR/LLVMContext.h"
49 #include "llvm/IR/Metadata.h"
50 #include "llvm/Support/CFG.h"
51 #include "llvm/Support/CommandLine.h"
52 #include "llvm/Support/Debug.h"
53 #include "llvm/Support/raw_ostream.h"
54 #include "llvm/Target/TargetLibraryInfo.h"
55 #include "llvm/Transforms/Utils/Local.h"
56 #include "llvm/Transforms/Utils/SSAUpdater.h"
57 #include <algorithm>
58 using namespace llvm;
59
60 STATISTIC(NumSunk      , "Number of instructions sunk out of loop");
61 STATISTIC(NumHoisted   , "Number of instructions hoisted out of loop");
62 STATISTIC(NumMovedLoads, "Number of load insts hoisted or sunk");
63 STATISTIC(NumMovedCalls, "Number of call insts hoisted or sunk");
64 STATISTIC(NumPromoted  , "Number of memory locations promoted to registers");
65
66 static cl::opt<bool>
67 DisablePromotion("disable-licm-promotion", cl::Hidden,
68                  cl::desc("Disable memory promotion in LICM pass"));
69
70 namespace {
71   struct LICM : public LoopPass {
72     static char ID; // Pass identification, replacement for typeid
73     LICM() : LoopPass(ID) {
74       initializeLICMPass(*PassRegistry::getPassRegistry());
75     }
76
77     virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
78
79     /// This transformation requires natural loop information & requires that
80     /// loop preheaders be inserted into the CFG...
81     ///
82     virtual void getAnalysisUsage(AnalysisUsage &AU) const {
83       AU.setPreservesCFG();
84       AU.addRequired<DominatorTree>();
85       AU.addRequired<LoopInfo>();
86       AU.addRequiredID(LoopSimplifyID);
87       AU.addRequired<AliasAnalysis>();
88       AU.addPreserved<AliasAnalysis>();
89       AU.addPreserved("scalar-evolution");
90       AU.addPreservedID(LoopSimplifyID);
91       AU.addRequired<TargetLibraryInfo>();
92     }
93
94     using llvm::Pass::doFinalization;
95
96     bool doFinalization() {
97       assert(LoopToAliasSetMap.empty() && "Didn't free loop alias sets");
98       return false;
99     }
100
101   private:
102     AliasAnalysis *AA;       // Current AliasAnalysis information
103     LoopInfo      *LI;       // Current LoopInfo
104     DominatorTree *DT;       // Dominator Tree for the current Loop.
105
106     DataLayout *TD;          // DataLayout for constant folding.
107     TargetLibraryInfo *TLI;  // TargetLibraryInfo for constant folding.
108
109     // State that is updated as we process loops.
110     bool Changed;            // Set to true when we change anything.
111     BasicBlock *Preheader;   // The preheader block of the current loop...
112     Loop *CurLoop;           // The current loop we are working on...
113     AliasSetTracker *CurAST; // AliasSet information for the current loop...
114     bool MayThrow;           // The current loop contains an instruction which
115                              // may throw, thus preventing code motion of
116                              // instructions with side effects.
117     DenseMap<Loop*, AliasSetTracker*> LoopToAliasSetMap;
118
119     /// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
120     void cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L);
121
122     /// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
123     /// set.
124     void deleteAnalysisValue(Value *V, Loop *L);
125
126     /// SinkRegion - Walk the specified region of the CFG (defined by all blocks
127     /// dominated by the specified block, and that are in the current loop) in
128     /// reverse depth first order w.r.t the DominatorTree.  This allows us to
129     /// visit uses before definitions, allowing us to sink a loop body in one
130     /// pass without iteration.
131     ///
132     void SinkRegion(DomTreeNode *N);
133
134     /// HoistRegion - Walk the specified region of the CFG (defined by all
135     /// blocks dominated by the specified block, and that are in the current
136     /// loop) in depth first order w.r.t the DominatorTree.  This allows us to
137     /// visit definitions before uses, allowing us to hoist a loop body in one
138     /// pass without iteration.
139     ///
140     void HoistRegion(DomTreeNode *N);
141
142     /// inSubLoop - Little predicate that returns true if the specified basic
143     /// block is in a subloop of the current one, not the current one itself.
144     ///
145     bool inSubLoop(BasicBlock *BB) {
146       assert(CurLoop->contains(BB) && "Only valid if BB is IN the loop");
147       return LI->getLoopFor(BB) != CurLoop;
148     }
149
150     /// sink - When an instruction is found to only be used outside of the loop,
151     /// this function moves it to the exit blocks and patches up SSA form as
152     /// needed.
153     ///
154     void sink(Instruction &I);
155
156     /// hoist - When an instruction is found to only use loop invariant operands
157     /// that is safe to hoist, this instruction is called to do the dirty work.
158     ///
159     void hoist(Instruction &I);
160
161     /// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it
162     /// is not a trapping instruction or if it is a trapping instruction and is
163     /// guaranteed to execute.
164     ///
165     bool isSafeToExecuteUnconditionally(Instruction &I);
166
167     /// isGuaranteedToExecute - Check that the instruction is guaranteed to
168     /// execute.
169     ///
170     bool isGuaranteedToExecute(Instruction &I);
171
172     /// pointerInvalidatedByLoop - Return true if the body of this loop may
173     /// store into the memory location pointed to by V.
174     ///
175     bool pointerInvalidatedByLoop(Value *V, uint64_t Size,
176                                   const MDNode *TBAAInfo) {
177       // Check to see if any of the basic blocks in CurLoop invalidate *V.
178       return CurAST->getAliasSetForPointer(V, Size, TBAAInfo).isMod();
179     }
180
181     bool canSinkOrHoistInst(Instruction &I);
182     bool isNotUsedInLoop(Instruction &I);
183
184     void PromoteAliasSet(AliasSet &AS,
185                          SmallVectorImpl<BasicBlock*> &ExitBlocks,
186                          SmallVectorImpl<Instruction*> &InsertPts);
187   };
188 }
189
190 char LICM::ID = 0;
191 INITIALIZE_PASS_BEGIN(LICM, "licm", "Loop Invariant Code Motion", false, false)
192 INITIALIZE_PASS_DEPENDENCY(DominatorTree)
193 INITIALIZE_PASS_DEPENDENCY(LoopInfo)
194 INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
195 INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfo)
196 INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
197 INITIALIZE_PASS_END(LICM, "licm", "Loop Invariant Code Motion", false, false)
198
199 Pass *llvm::createLICMPass() { return new LICM(); }
200
201 /// Hoist expressions out of the specified loop. Note, alias info for inner
202 /// loop is not preserved so it is not a good idea to run LICM multiple
203 /// times on one loop.
204 ///
205 bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) {
206   Changed = false;
207
208   // Get our Loop and Alias Analysis information...
209   LI = &getAnalysis<LoopInfo>();
210   AA = &getAnalysis<AliasAnalysis>();
211   DT = &getAnalysis<DominatorTree>();
212
213   TD = getAnalysisIfAvailable<DataLayout>();
214   TLI = &getAnalysis<TargetLibraryInfo>();
215
216   CurAST = new AliasSetTracker(*AA);
217   // Collect Alias info from subloops.
218   for (Loop::iterator LoopItr = L->begin(), LoopItrE = L->end();
219        LoopItr != LoopItrE; ++LoopItr) {
220     Loop *InnerL = *LoopItr;
221     AliasSetTracker *InnerAST = LoopToAliasSetMap[InnerL];
222     assert(InnerAST && "Where is my AST?");
223
224     // What if InnerLoop was modified by other passes ?
225     CurAST->add(*InnerAST);
226
227     // Once we've incorporated the inner loop's AST into ours, we don't need the
228     // subloop's anymore.
229     delete InnerAST;
230     LoopToAliasSetMap.erase(InnerL);
231   }
232
233   CurLoop = L;
234
235   // Get the preheader block to move instructions into...
236   Preheader = L->getLoopPreheader();
237
238   // Loop over the body of this loop, looking for calls, invokes, and stores.
239   // Because subloops have already been incorporated into AST, we skip blocks in
240   // subloops.
241   //
242   for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
243        I != E; ++I) {
244     BasicBlock *BB = *I;
245     if (LI->getLoopFor(BB) == L)        // Ignore blocks in subloops.
246       CurAST->add(*BB);                 // Incorporate the specified basic block
247   }
248
249   MayThrow = false;
250   // TODO: We've already searched for instructions which may throw in subloops.
251   // We may want to reuse this information.
252   for (Loop::block_iterator BB = L->block_begin(), BBE = L->block_end();
253        (BB != BBE) && !MayThrow ; ++BB)
254     for (BasicBlock::iterator I = (*BB)->begin(), E = (*BB)->end();
255          (I != E) && !MayThrow; ++I)
256       MayThrow |= I->mayThrow();
257
258   // We want to visit all of the instructions in this loop... that are not parts
259   // of our subloops (they have already had their invariants hoisted out of
260   // their loop, into this loop, so there is no need to process the BODIES of
261   // the subloops).
262   //
263   // Traverse the body of the loop in depth first order on the dominator tree so
264   // that we are guaranteed to see definitions before we see uses.  This allows
265   // us to sink instructions in one pass, without iteration.  After sinking
266   // instructions, we perform another pass to hoist them out of the loop.
267   //
268   if (L->hasDedicatedExits())
269     SinkRegion(DT->getNode(L->getHeader()));
270   if (Preheader)
271     HoistRegion(DT->getNode(L->getHeader()));
272
273   // Now that all loop invariants have been removed from the loop, promote any
274   // memory references to scalars that we can.
275   if (!DisablePromotion && Preheader && L->hasDedicatedExits()) {
276     SmallVector<BasicBlock *, 8> ExitBlocks;
277     SmallVector<Instruction *, 8> InsertPts;
278
279     // Loop over all of the alias sets in the tracker object.
280     for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
281          I != E; ++I)
282       PromoteAliasSet(*I, ExitBlocks, InsertPts);
283   }
284
285   // Clear out loops state information for the next iteration
286   CurLoop = 0;
287   Preheader = 0;
288
289   // If this loop is nested inside of another one, save the alias information
290   // for when we process the outer loop.
291   if (L->getParentLoop())
292     LoopToAliasSetMap[L] = CurAST;
293   else
294     delete CurAST;
295   return Changed;
296 }
297
298 /// SinkRegion - Walk the specified region of the CFG (defined by all blocks
299 /// dominated by the specified block, and that are in the current loop) in
300 /// reverse depth first order w.r.t the DominatorTree.  This allows us to visit
301 /// uses before definitions, allowing us to sink a loop body in one pass without
302 /// iteration.
303 ///
304 void LICM::SinkRegion(DomTreeNode *N) {
305   assert(N != 0 && "Null dominator tree node?");
306   BasicBlock *BB = N->getBlock();
307
308   // If this subregion is not in the top level loop at all, exit.
309   if (!CurLoop->contains(BB)) return;
310
311   // We are processing blocks in reverse dfo, so process children first.
312   const std::vector<DomTreeNode*> &Children = N->getChildren();
313   for (unsigned i = 0, e = Children.size(); i != e; ++i)
314     SinkRegion(Children[i]);
315
316   // Only need to process the contents of this block if it is not part of a
317   // subloop (which would already have been processed).
318   if (inSubLoop(BB)) return;
319
320   for (BasicBlock::iterator II = BB->end(); II != BB->begin(); ) {
321     Instruction &I = *--II;
322
323     // If the instruction is dead, we would try to sink it because it isn't used
324     // in the loop, instead, just delete it.
325     if (isInstructionTriviallyDead(&I, TLI)) {
326       DEBUG(dbgs() << "LICM deleting dead inst: " << I << '\n');
327       ++II;
328       CurAST->deleteValue(&I);
329       I.eraseFromParent();
330       Changed = true;
331       continue;
332     }
333
334     // Check to see if we can sink this instruction to the exit blocks
335     // of the loop.  We can do this if the all users of the instruction are
336     // outside of the loop.  In this case, it doesn't even matter if the
337     // operands of the instruction are loop invariant.
338     //
339     if (isNotUsedInLoop(I) && canSinkOrHoistInst(I)) {
340       ++II;
341       sink(I);
342     }
343   }
344 }
345
346 /// HoistRegion - Walk the specified region of the CFG (defined by all blocks
347 /// dominated by the specified block, and that are in the current loop) in depth
348 /// first order w.r.t the DominatorTree.  This allows us to visit definitions
349 /// before uses, allowing us to hoist a loop body in one pass without iteration.
350 ///
351 void LICM::HoistRegion(DomTreeNode *N) {
352   assert(N != 0 && "Null dominator tree node?");
353   BasicBlock *BB = N->getBlock();
354
355   // If this subregion is not in the top level loop at all, exit.
356   if (!CurLoop->contains(BB)) return;
357
358   // Only need to process the contents of this block if it is not part of a
359   // subloop (which would already have been processed).
360   if (!inSubLoop(BB))
361     for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ) {
362       Instruction &I = *II++;
363
364       // Try constant folding this instruction.  If all the operands are
365       // constants, it is technically hoistable, but it would be better to just
366       // fold it.
367       if (Constant *C = ConstantFoldInstruction(&I, TD, TLI)) {
368         DEBUG(dbgs() << "LICM folding inst: " << I << "  --> " << *C << '\n');
369         CurAST->copyValue(&I, C);
370         CurAST->deleteValue(&I);
371         I.replaceAllUsesWith(C);
372         I.eraseFromParent();
373         continue;
374       }
375
376       // Try hoisting the instruction out to the preheader.  We can only do this
377       // if all of the operands of the instruction are loop invariant and if it
378       // is safe to hoist the instruction.
379       //
380       if (CurLoop->hasLoopInvariantOperands(&I) && canSinkOrHoistInst(I) &&
381           isSafeToExecuteUnconditionally(I))
382         hoist(I);
383     }
384
385   const std::vector<DomTreeNode*> &Children = N->getChildren();
386   for (unsigned i = 0, e = Children.size(); i != e; ++i)
387     HoistRegion(Children[i]);
388 }
389
390 /// canSinkOrHoistInst - Return true if the hoister and sinker can handle this
391 /// instruction.
392 ///
393 bool LICM::canSinkOrHoistInst(Instruction &I) {
394   // Loads have extra constraints we have to verify before we can hoist them.
395   if (LoadInst *LI = dyn_cast<LoadInst>(&I)) {
396     if (!LI->isUnordered())
397       return false;        // Don't hoist volatile/atomic loads!
398
399     // Loads from constant memory are always safe to move, even if they end up
400     // in the same alias set as something that ends up being modified.
401     if (AA->pointsToConstantMemory(LI->getOperand(0)))
402       return true;
403     if (LI->getMetadata("invariant.load"))
404       return true;
405
406     // Don't hoist loads which have may-aliased stores in loop.
407     uint64_t Size = 0;
408     if (LI->getType()->isSized())
409       Size = AA->getTypeStoreSize(LI->getType());
410     return !pointerInvalidatedByLoop(LI->getOperand(0), Size,
411                                      LI->getMetadata(LLVMContext::MD_tbaa));
412   } else if (CallInst *CI = dyn_cast<CallInst>(&I)) {
413     // Don't sink or hoist dbg info; it's legal, but not useful.
414     if (isa<DbgInfoIntrinsic>(I))
415       return false;
416
417     // Handle simple cases by querying alias analysis.
418     AliasAnalysis::ModRefBehavior Behavior = AA->getModRefBehavior(CI);
419     if (Behavior == AliasAnalysis::DoesNotAccessMemory)
420       return true;
421     if (AliasAnalysis::onlyReadsMemory(Behavior)) {
422       // If this call only reads from memory and there are no writes to memory
423       // in the loop, we can hoist or sink the call as appropriate.
424       bool FoundMod = false;
425       for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
426            I != E; ++I) {
427         AliasSet &AS = *I;
428         if (!AS.isForwardingAliasSet() && AS.isMod()) {
429           FoundMod = true;
430           break;
431         }
432       }
433       if (!FoundMod) return true;
434     }
435
436     // FIXME: This should use mod/ref information to see if we can hoist or
437     // sink the call.
438
439     return false;
440   }
441
442   // Only these instructions are hoistable/sinkable.
443   bool HoistableKind = (isa<BinaryOperator>(I) || isa<CastInst>(I) ||
444                             isa<SelectInst>(I) || isa<GetElementPtrInst>(I) ||
445                             isa<CmpInst>(I)    || isa<InsertElementInst>(I) ||
446                             isa<ExtractElementInst>(I) ||
447                             isa<ShuffleVectorInst>(I));
448   if (!HoistableKind)
449       return false;
450
451   return isSafeToExecuteUnconditionally(I);
452 }
453
454 /// isNotUsedInLoop - Return true if the only users of this instruction are
455 /// outside of the loop.  If this is true, we can sink the instruction to the
456 /// exit blocks of the loop.
457 ///
458 bool LICM::isNotUsedInLoop(Instruction &I) {
459   for (Value::use_iterator UI = I.use_begin(), E = I.use_end(); UI != E; ++UI) {
460     Instruction *User = cast<Instruction>(*UI);
461     if (PHINode *PN = dyn_cast<PHINode>(User)) {
462       // PHI node uses occur in predecessor blocks!
463       for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
464         if (PN->getIncomingValue(i) == &I)
465           if (CurLoop->contains(PN->getIncomingBlock(i)))
466             return false;
467     } else if (CurLoop->contains(User)) {
468       return false;
469     }
470   }
471   return true;
472 }
473
474
475 /// sink - When an instruction is found to only be used outside of the loop,
476 /// this function moves it to the exit blocks and patches up SSA form as needed.
477 /// This method is guaranteed to remove the original instruction from its
478 /// position, and may either delete it or move it to outside of the loop.
479 ///
480 void LICM::sink(Instruction &I) {
481   DEBUG(dbgs() << "LICM sinking instruction: " << I << "\n");
482
483   SmallVector<BasicBlock*, 8> ExitBlocks;
484   CurLoop->getUniqueExitBlocks(ExitBlocks);
485
486   if (isa<LoadInst>(I)) ++NumMovedLoads;
487   else if (isa<CallInst>(I)) ++NumMovedCalls;
488   ++NumSunk;
489   Changed = true;
490
491   // The case where there is only a single exit node of this loop is common
492   // enough that we handle it as a special (more efficient) case.  It is more
493   // efficient to handle because there are no PHI nodes that need to be placed.
494   if (ExitBlocks.size() == 1) {
495     if (!DT->dominates(I.getParent(), ExitBlocks[0])) {
496       // Instruction is not used, just delete it.
497       CurAST->deleteValue(&I);
498       // If I has users in unreachable blocks, eliminate.
499       // If I is not void type then replaceAllUsesWith undef.
500       // This allows ValueHandlers and custom metadata to adjust itself.
501       if (!I.use_empty())
502         I.replaceAllUsesWith(UndefValue::get(I.getType()));
503       I.eraseFromParent();
504     } else {
505       // Move the instruction to the start of the exit block, after any PHI
506       // nodes in it.
507       I.moveBefore(ExitBlocks[0]->getFirstInsertionPt());
508
509       // This instruction is no longer in the AST for the current loop, because
510       // we just sunk it out of the loop.  If we just sunk it into an outer
511       // loop, we will rediscover the operation when we process it.
512       CurAST->deleteValue(&I);
513     }
514     return;
515   }
516
517   if (ExitBlocks.empty()) {
518     // The instruction is actually dead if there ARE NO exit blocks.
519     CurAST->deleteValue(&I);
520     // If I has users in unreachable blocks, eliminate.
521     // If I is not void type then replaceAllUsesWith undef.
522     // This allows ValueHandlers and custom metadata to adjust itself.
523     if (!I.use_empty())
524       I.replaceAllUsesWith(UndefValue::get(I.getType()));
525     I.eraseFromParent();
526     return;
527   }
528
529   // Otherwise, if we have multiple exits, use the SSAUpdater to do all of the
530   // hard work of inserting PHI nodes as necessary.
531   SmallVector<PHINode*, 8> NewPHIs;
532   SSAUpdater SSA(&NewPHIs);
533
534   if (!I.use_empty())
535     SSA.Initialize(I.getType(), I.getName());
536
537   // Insert a copy of the instruction in each exit block of the loop that is
538   // dominated by the instruction.  Each exit block is known to only be in the
539   // ExitBlocks list once.
540   BasicBlock *InstOrigBB = I.getParent();
541   unsigned NumInserted = 0;
542
543   for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
544     BasicBlock *ExitBlock = ExitBlocks[i];
545
546     if (!DT->dominates(InstOrigBB, ExitBlock))
547       continue;
548
549     // Insert the code after the last PHI node.
550     BasicBlock::iterator InsertPt = ExitBlock->getFirstInsertionPt();
551
552     // If this is the first exit block processed, just move the original
553     // instruction, otherwise clone the original instruction and insert
554     // the copy.
555     Instruction *New;
556     if (NumInserted++ == 0) {
557       I.moveBefore(InsertPt);
558       New = &I;
559     } else {
560       New = I.clone();
561       if (!I.getName().empty())
562         New->setName(I.getName()+".le");
563       ExitBlock->getInstList().insert(InsertPt, New);
564     }
565
566     // Now that we have inserted the instruction, inform SSAUpdater.
567     if (!I.use_empty())
568       SSA.AddAvailableValue(ExitBlock, New);
569   }
570
571   // If the instruction doesn't dominate any exit blocks, it must be dead.
572   if (NumInserted == 0) {
573     CurAST->deleteValue(&I);
574     if (!I.use_empty())
575       I.replaceAllUsesWith(UndefValue::get(I.getType()));
576     I.eraseFromParent();
577     return;
578   }
579
580   // Next, rewrite uses of the instruction, inserting PHI nodes as needed.
581   for (Value::use_iterator UI = I.use_begin(), UE = I.use_end(); UI != UE; ) {
582     // Grab the use before incrementing the iterator.
583     Use &U = UI.getUse();
584     // Increment the iterator before removing the use from the list.
585     ++UI;
586     SSA.RewriteUseAfterInsertions(U);
587   }
588
589   // Update CurAST for NewPHIs if I had pointer type.
590   if (I.getType()->isPointerTy())
591     for (unsigned i = 0, e = NewPHIs.size(); i != e; ++i)
592       CurAST->copyValue(&I, NewPHIs[i]);
593
594   // Finally, remove the instruction from CurAST.  It is no longer in the loop.
595   CurAST->deleteValue(&I);
596 }
597
598 /// hoist - When an instruction is found to only use loop invariant operands
599 /// that is safe to hoist, this instruction is called to do the dirty work.
600 ///
601 void LICM::hoist(Instruction &I) {
602   DEBUG(dbgs() << "LICM hoisting to " << Preheader->getName() << ": "
603         << I << "\n");
604
605   // Move the new node to the Preheader, before its terminator.
606   I.moveBefore(Preheader->getTerminator());
607
608   if (isa<LoadInst>(I)) ++NumMovedLoads;
609   else if (isa<CallInst>(I)) ++NumMovedCalls;
610   ++NumHoisted;
611   Changed = true;
612 }
613
614 /// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it is
615 /// not a trapping instruction or if it is a trapping instruction and is
616 /// guaranteed to execute.
617 ///
618 bool LICM::isSafeToExecuteUnconditionally(Instruction &Inst) {
619   // If it is not a trapping instruction, it is always safe to hoist.
620   if (isSafeToSpeculativelyExecute(&Inst))
621     return true;
622
623   return isGuaranteedToExecute(Inst);
624 }
625
626 bool LICM::isGuaranteedToExecute(Instruction &Inst) {
627
628   // Somewhere in this loop there is an instruction which may throw and make us
629   // exit the loop.
630   if (MayThrow)
631     return false;
632
633   // Otherwise we have to check to make sure that the instruction dominates all
634   // of the exit blocks.  If it doesn't, then there is a path out of the loop
635   // which does not execute this instruction, so we can't hoist it.
636
637   // If the instruction is in the header block for the loop (which is very
638   // common), it is always guaranteed to dominate the exit blocks.  Since this
639   // is a common case, and can save some work, check it now.
640   if (Inst.getParent() == CurLoop->getHeader())
641     return true;
642
643   // Get the exit blocks for the current loop.
644   SmallVector<BasicBlock*, 8> ExitBlocks;
645   CurLoop->getExitBlocks(ExitBlocks);
646
647   // Verify that the block dominates each of the exit blocks of the loop.
648   for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
649     if (!DT->dominates(Inst.getParent(), ExitBlocks[i]))
650       return false;
651
652   // As a degenerate case, if the loop is statically infinite then we haven't
653   // proven anything since there are no exit blocks.
654   if (ExitBlocks.empty())
655     return false;
656
657   return true;
658 }
659
660 namespace {
661   class LoopPromoter : public LoadAndStorePromoter {
662     Value *SomePtr;  // Designated pointer to store to.
663     SmallPtrSet<Value*, 4> &PointerMustAliases;
664     SmallVectorImpl<BasicBlock*> &LoopExitBlocks;
665     SmallVectorImpl<Instruction*> &LoopInsertPts;
666     AliasSetTracker &AST;
667     DebugLoc DL;
668     int Alignment;
669     MDNode *TBAATag;
670   public:
671     LoopPromoter(Value *SP,
672                  const SmallVectorImpl<Instruction*> &Insts, SSAUpdater &S,
673                  SmallPtrSet<Value*, 4> &PMA,
674                  SmallVectorImpl<BasicBlock*> &LEB,
675                  SmallVectorImpl<Instruction*> &LIP,
676                  AliasSetTracker &ast, DebugLoc dl, int alignment,
677                  MDNode *TBAATag)
678       : LoadAndStorePromoter(Insts, S), SomePtr(SP),
679         PointerMustAliases(PMA), LoopExitBlocks(LEB), LoopInsertPts(LIP),
680         AST(ast), DL(dl), Alignment(alignment), TBAATag(TBAATag) {}
681
682     virtual bool isInstInList(Instruction *I,
683                               const SmallVectorImpl<Instruction*> &) const {
684       Value *Ptr;
685       if (LoadInst *LI = dyn_cast<LoadInst>(I))
686         Ptr = LI->getOperand(0);
687       else
688         Ptr = cast<StoreInst>(I)->getPointerOperand();
689       return PointerMustAliases.count(Ptr);
690     }
691
692     virtual void doExtraRewritesBeforeFinalDeletion() const {
693       // Insert stores after in the loop exit blocks.  Each exit block gets a
694       // store of the live-out values that feed them.  Since we've already told
695       // the SSA updater about the defs in the loop and the preheader
696       // definition, it is all set and we can start using it.
697       for (unsigned i = 0, e = LoopExitBlocks.size(); i != e; ++i) {
698         BasicBlock *ExitBlock = LoopExitBlocks[i];
699         Value *LiveInValue = SSA.GetValueInMiddleOfBlock(ExitBlock);
700         Instruction *InsertPos = LoopInsertPts[i];
701         StoreInst *NewSI = new StoreInst(LiveInValue, SomePtr, InsertPos);
702         NewSI->setAlignment(Alignment);
703         NewSI->setDebugLoc(DL);
704         if (TBAATag) NewSI->setMetadata(LLVMContext::MD_tbaa, TBAATag);
705       }
706     }
707
708     virtual void replaceLoadWithValue(LoadInst *LI, Value *V) const {
709       // Update alias analysis.
710       AST.copyValue(LI, V);
711     }
712     virtual void instructionDeleted(Instruction *I) const {
713       AST.deleteValue(I);
714     }
715   };
716 } // end anon namespace
717
718 /// PromoteAliasSet - Try to promote memory values to scalars by sinking
719 /// stores out of the loop and moving loads to before the loop.  We do this by
720 /// looping over the stores in the loop, looking for stores to Must pointers
721 /// which are loop invariant.
722 ///
723 void LICM::PromoteAliasSet(AliasSet &AS,
724                            SmallVectorImpl<BasicBlock*> &ExitBlocks,
725                            SmallVectorImpl<Instruction*> &InsertPts) {
726   // We can promote this alias set if it has a store, if it is a "Must" alias
727   // set, if the pointer is loop invariant, and if we are not eliminating any
728   // volatile loads or stores.
729   if (AS.isForwardingAliasSet() || !AS.isMod() || !AS.isMustAlias() ||
730       AS.isVolatile() || !CurLoop->isLoopInvariant(AS.begin()->getValue()))
731     return;
732
733   assert(!AS.empty() &&
734          "Must alias set should have at least one pointer element in it!");
735   Value *SomePtr = AS.begin()->getValue();
736
737   // It isn't safe to promote a load/store from the loop if the load/store is
738   // conditional.  For example, turning:
739   //
740   //    for () { if (c) *P += 1; }
741   //
742   // into:
743   //
744   //    tmp = *P;  for () { if (c) tmp +=1; } *P = tmp;
745   //
746   // is not safe, because *P may only be valid to access if 'c' is true.
747   //
748   // It is safe to promote P if all uses are direct load/stores and if at
749   // least one is guaranteed to be executed.
750   bool GuaranteedToExecute = false;
751
752   SmallVector<Instruction*, 64> LoopUses;
753   SmallPtrSet<Value*, 4> PointerMustAliases;
754
755   // We start with an alignment of one and try to find instructions that allow
756   // us to prove better alignment.
757   unsigned Alignment = 1;
758   MDNode *TBAATag = 0;
759
760   // Check that all of the pointers in the alias set have the same type.  We
761   // cannot (yet) promote a memory location that is loaded and stored in
762   // different sizes.  While we are at it, collect alignment and TBAA info.
763   for (AliasSet::iterator ASI = AS.begin(), E = AS.end(); ASI != E; ++ASI) {
764     Value *ASIV = ASI->getValue();
765     PointerMustAliases.insert(ASIV);
766
767     // Check that all of the pointers in the alias set have the same type.  We
768     // cannot (yet) promote a memory location that is loaded and stored in
769     // different sizes.
770     if (SomePtr->getType() != ASIV->getType())
771       return;
772
773     for (Value::use_iterator UI = ASIV->use_begin(), UE = ASIV->use_end();
774          UI != UE; ++UI) {
775       // Ignore instructions that are outside the loop.
776       Instruction *Use = dyn_cast<Instruction>(*UI);
777       if (!Use || !CurLoop->contains(Use))
778         continue;
779
780       // If there is an non-load/store instruction in the loop, we can't promote
781       // it.
782       if (LoadInst *load = dyn_cast<LoadInst>(Use)) {
783         assert(!load->isVolatile() && "AST broken");
784         if (!load->isSimple())
785           return;
786       } else if (StoreInst *store = dyn_cast<StoreInst>(Use)) {
787         // Stores *of* the pointer are not interesting, only stores *to* the
788         // pointer.
789         if (Use->getOperand(1) != ASIV)
790           continue;
791         assert(!store->isVolatile() && "AST broken");
792         if (!store->isSimple())
793           return;
794
795         // Note that we only check GuaranteedToExecute inside the store case
796         // so that we do not introduce stores where they did not exist before
797         // (which would break the LLVM concurrency model).
798
799         // If the alignment of this instruction allows us to specify a more
800         // restrictive (and performant) alignment and if we are sure this
801         // instruction will be executed, update the alignment.
802         // Larger is better, with the exception of 0 being the best alignment.
803         unsigned InstAlignment = store->getAlignment();
804         if ((InstAlignment > Alignment || InstAlignment == 0) && Alignment != 0)
805           if (isGuaranteedToExecute(*Use)) {
806             GuaranteedToExecute = true;
807             Alignment = InstAlignment;
808           }
809
810         if (!GuaranteedToExecute)
811           GuaranteedToExecute = isGuaranteedToExecute(*Use);
812
813       } else
814         return; // Not a load or store.
815
816       // Merge the TBAA tags.
817       if (LoopUses.empty()) {
818         // On the first load/store, just take its TBAA tag.
819         TBAATag = Use->getMetadata(LLVMContext::MD_tbaa);
820       } else if (TBAATag) {
821         TBAATag = MDNode::getMostGenericTBAA(TBAATag,
822                                        Use->getMetadata(LLVMContext::MD_tbaa));
823       }
824       
825       LoopUses.push_back(Use);
826     }
827   }
828
829   // If there isn't a guaranteed-to-execute instruction, we can't promote.
830   if (!GuaranteedToExecute)
831     return;
832
833   // Otherwise, this is safe to promote, lets do it!
834   DEBUG(dbgs() << "LICM: Promoting value stored to in loop: " <<*SomePtr<<'\n');
835   Changed = true;
836   ++NumPromoted;
837
838   // Grab a debug location for the inserted loads/stores; given that the
839   // inserted loads/stores have little relation to the original loads/stores,
840   // this code just arbitrarily picks a location from one, since any debug
841   // location is better than none.
842   DebugLoc DL = LoopUses[0]->getDebugLoc();
843
844   // Figure out the loop exits and their insertion points, if this is the
845   // first promotion.
846   if (ExitBlocks.empty()) {
847     CurLoop->getUniqueExitBlocks(ExitBlocks);
848     InsertPts.resize(ExitBlocks.size());
849     for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
850       InsertPts[i] = ExitBlocks[i]->getFirstInsertionPt();
851   }
852
853   // We use the SSAUpdater interface to insert phi nodes as required.
854   SmallVector<PHINode*, 16> NewPHIs;
855   SSAUpdater SSA(&NewPHIs);
856   LoopPromoter Promoter(SomePtr, LoopUses, SSA, PointerMustAliases, ExitBlocks,
857                         InsertPts, *CurAST, DL, Alignment, TBAATag);
858
859   // Set up the preheader to have a definition of the value.  It is the live-out
860   // value from the preheader that uses in the loop will use.
861   LoadInst *PreheaderLoad =
862     new LoadInst(SomePtr, SomePtr->getName()+".promoted",
863                  Preheader->getTerminator());
864   PreheaderLoad->setAlignment(Alignment);
865   PreheaderLoad->setDebugLoc(DL);
866   if (TBAATag) PreheaderLoad->setMetadata(LLVMContext::MD_tbaa, TBAATag);
867   SSA.AddAvailableValue(Preheader, PreheaderLoad);
868
869   // Rewrite all the loads in the loop and remember all the definitions from
870   // stores in the loop.
871   Promoter.run(LoopUses);
872
873   // If the SSAUpdater didn't use the load in the preheader, just zap it now.
874   if (PreheaderLoad->use_empty())
875     PreheaderLoad->eraseFromParent();
876 }
877
878
879 /// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
880 void LICM::cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L) {
881   AliasSetTracker *AST = LoopToAliasSetMap.lookup(L);
882   if (!AST)
883     return;
884
885   AST->copyValue(From, To);
886 }
887
888 /// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
889 /// set.
890 void LICM::deleteAnalysisValue(Value *V, Loop *L) {
891   AliasSetTracker *AST = LoopToAliasSetMap.lookup(L);
892   if (!AST)
893     return;
894
895   AST->deleteValue(V);
896 }