LICM.cpp revision 200581
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 mem2reg functionality to construct the appropriate SSA form for the
30//     variable.
31//
32//===----------------------------------------------------------------------===//
33
34#define DEBUG_TYPE "licm"
35#include "llvm/Transforms/Scalar.h"
36#include "llvm/Constants.h"
37#include "llvm/DerivedTypes.h"
38#include "llvm/IntrinsicInst.h"
39#include "llvm/Instructions.h"
40#include "llvm/Target/TargetData.h"
41#include "llvm/Analysis/LoopInfo.h"
42#include "llvm/Analysis/LoopPass.h"
43#include "llvm/Analysis/AliasAnalysis.h"
44#include "llvm/Analysis/AliasSetTracker.h"
45#include "llvm/Analysis/Dominators.h"
46#include "llvm/Analysis/ScalarEvolution.h"
47#include "llvm/Transforms/Utils/PromoteMemToReg.h"
48#include "llvm/Support/CFG.h"
49#include "llvm/Support/CommandLine.h"
50#include "llvm/Support/raw_ostream.h"
51#include "llvm/Support/Debug.h"
52#include "llvm/ADT/Statistic.h"
53#include <algorithm>
54using namespace llvm;
55
56STATISTIC(NumSunk      , "Number of instructions sunk out of loop");
57STATISTIC(NumHoisted   , "Number of instructions hoisted out of loop");
58STATISTIC(NumMovedLoads, "Number of load insts hoisted or sunk");
59STATISTIC(NumMovedCalls, "Number of call insts hoisted or sunk");
60STATISTIC(NumPromoted  , "Number of memory locations promoted to registers");
61
62static cl::opt<bool>
63DisablePromotion("disable-licm-promotion", cl::Hidden,
64                 cl::desc("Disable memory promotion in LICM pass"));
65
66namespace {
67  struct LICM : public LoopPass {
68    static char ID; // Pass identification, replacement for typeid
69    LICM() : LoopPass(&ID) {}
70
71    virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
72
73    /// This transformation requires natural loop information & requires that
74    /// loop preheaders be inserted into the CFG...
75    ///
76    virtual void getAnalysisUsage(AnalysisUsage &AU) const {
77      AU.setPreservesCFG();
78      AU.addRequiredID(LoopSimplifyID);
79      AU.addRequired<LoopInfo>();
80      AU.addRequired<DominatorTree>();
81      AU.addRequired<DominanceFrontier>();  // For scalar promotion (mem2reg)
82      AU.addRequired<AliasAnalysis>();
83      AU.addPreserved<ScalarEvolution>();
84      AU.addPreserved<DominanceFrontier>();
85      AU.addPreservedID(LoopSimplifyID);
86    }
87
88    bool doFinalization() {
89      // Free the values stored in the map
90      for (std::map<Loop *, AliasSetTracker *>::iterator
91             I = LoopToAliasMap.begin(), E = LoopToAliasMap.end(); I != E; ++I)
92        delete I->second;
93
94      LoopToAliasMap.clear();
95      return false;
96    }
97
98  private:
99    // Various analyses that we use...
100    AliasAnalysis *AA;       // Current AliasAnalysis information
101    LoopInfo      *LI;       // Current LoopInfo
102    DominatorTree *DT;       // Dominator Tree for the current Loop...
103    DominanceFrontier *DF;   // Current Dominance Frontier
104
105    // State that is updated as we process loops
106    bool Changed;            // Set to true when we change anything.
107    BasicBlock *Preheader;   // The preheader block of the current loop...
108    Loop *CurLoop;           // The current loop we are working on...
109    AliasSetTracker *CurAST; // AliasSet information for the current loop...
110    std::map<Loop *, AliasSetTracker *> LoopToAliasMap;
111
112    /// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
113    void cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L);
114
115    /// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
116    /// set.
117    void deleteAnalysisValue(Value *V, Loop *L);
118
119    /// SinkRegion - Walk the specified region of the CFG (defined by all blocks
120    /// dominated by the specified block, and that are in the current loop) in
121    /// reverse depth first order w.r.t the DominatorTree.  This allows us to
122    /// visit uses before definitions, allowing us to sink a loop body in one
123    /// pass without iteration.
124    ///
125    void SinkRegion(DomTreeNode *N);
126
127    /// HoistRegion - Walk the specified region of the CFG (defined by all
128    /// blocks dominated by the specified block, and that are in the current
129    /// loop) in depth first order w.r.t the DominatorTree.  This allows us to
130    /// visit definitions before uses, allowing us to hoist a loop body in one
131    /// pass without iteration.
132    ///
133    void HoistRegion(DomTreeNode *N);
134
135    /// inSubLoop - Little predicate that returns true if the specified basic
136    /// block is in a subloop of the current one, not the current one itself.
137    ///
138    bool inSubLoop(BasicBlock *BB) {
139      assert(CurLoop->contains(BB) && "Only valid if BB is IN the loop");
140      for (Loop::iterator I = CurLoop->begin(), E = CurLoop->end(); I != E; ++I)
141        if ((*I)->contains(BB))
142          return true;  // A subloop actually contains this block!
143      return false;
144    }
145
146    /// isExitBlockDominatedByBlockInLoop - This method checks to see if the
147    /// specified exit block of the loop is dominated by the specified block
148    /// that is in the body of the loop.  We use these constraints to
149    /// dramatically limit the amount of the dominator tree that needs to be
150    /// searched.
151    bool isExitBlockDominatedByBlockInLoop(BasicBlock *ExitBlock,
152                                           BasicBlock *BlockInLoop) const {
153      // If the block in the loop is the loop header, it must be dominated!
154      BasicBlock *LoopHeader = CurLoop->getHeader();
155      if (BlockInLoop == LoopHeader)
156        return true;
157
158      DomTreeNode *BlockInLoopNode = DT->getNode(BlockInLoop);
159      DomTreeNode *IDom            = DT->getNode(ExitBlock);
160
161      // Because the exit block is not in the loop, we know we have to get _at
162      // least_ its immediate dominator.
163      IDom = IDom->getIDom();
164
165      while (IDom && IDom != BlockInLoopNode) {
166        // If we have got to the header of the loop, then the instructions block
167        // did not dominate the exit node, so we can't hoist it.
168        if (IDom->getBlock() == LoopHeader)
169          return false;
170
171        // Get next Immediate Dominator.
172        IDom = IDom->getIDom();
173      };
174
175      return true;
176    }
177
178    /// sink - When an instruction is found to only be used outside of the loop,
179    /// this function moves it to the exit blocks and patches up SSA form as
180    /// needed.
181    ///
182    void sink(Instruction &I);
183
184    /// hoist - When an instruction is found to only use loop invariant operands
185    /// that is safe to hoist, this instruction is called to do the dirty work.
186    ///
187    void hoist(Instruction &I);
188
189    /// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it
190    /// is not a trapping instruction or if it is a trapping instruction and is
191    /// guaranteed to execute.
192    ///
193    bool isSafeToExecuteUnconditionally(Instruction &I);
194
195    /// pointerInvalidatedByLoop - Return true if the body of this loop may
196    /// store into the memory location pointed to by V.
197    ///
198    bool pointerInvalidatedByLoop(Value *V, unsigned Size) {
199      // Check to see if any of the basic blocks in CurLoop invalidate *V.
200      return CurAST->getAliasSetForPointer(V, Size).isMod();
201    }
202
203    bool canSinkOrHoistInst(Instruction &I);
204    bool isLoopInvariantInst(Instruction &I);
205    bool isNotUsedInLoop(Instruction &I);
206
207    /// PromoteValuesInLoop - Look at the stores in the loop and promote as many
208    /// to scalars as we can.
209    ///
210    void PromoteValuesInLoop();
211
212    /// FindPromotableValuesInLoop - Check the current loop for stores to
213    /// definite pointers, which are not loaded and stored through may aliases.
214    /// If these are found, create an alloca for the value, add it to the
215    /// PromotedValues list, and keep track of the mapping from value to
216    /// alloca...
217    ///
218    void FindPromotableValuesInLoop(
219                   std::vector<std::pair<AllocaInst*, Value*> > &PromotedValues,
220                                    std::map<Value*, AllocaInst*> &Val2AlMap);
221  };
222}
223
224char LICM::ID = 0;
225static RegisterPass<LICM> X("licm", "Loop Invariant Code Motion");
226
227Pass *llvm::createLICMPass() { return new LICM(); }
228
229/// Hoist expressions out of the specified loop. Note, alias info for inner
230/// loop is not preserved so it is not a good idea to run LICM multiple
231/// times on one loop.
232///
233bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) {
234  Changed = false;
235
236  // Get our Loop and Alias Analysis information...
237  LI = &getAnalysis<LoopInfo>();
238  AA = &getAnalysis<AliasAnalysis>();
239  DF = &getAnalysis<DominanceFrontier>();
240  DT = &getAnalysis<DominatorTree>();
241
242  CurAST = new AliasSetTracker(*AA);
243  // Collect Alias info from subloops
244  for (Loop::iterator LoopItr = L->begin(), LoopItrE = L->end();
245       LoopItr != LoopItrE; ++LoopItr) {
246    Loop *InnerL = *LoopItr;
247    AliasSetTracker *InnerAST = LoopToAliasMap[InnerL];
248    assert (InnerAST && "Where is my AST?");
249
250    // What if InnerLoop was modified by other passes ?
251    CurAST->add(*InnerAST);
252  }
253
254  CurLoop = L;
255
256  // Get the preheader block to move instructions into...
257  Preheader = L->getLoopPreheader();
258
259  // Loop over the body of this loop, looking for calls, invokes, and stores.
260  // Because subloops have already been incorporated into AST, we skip blocks in
261  // subloops.
262  //
263  for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
264       I != E; ++I) {
265    BasicBlock *BB = *I;
266    if (LI->getLoopFor(BB) == L)        // Ignore blocks in subloops...
267      CurAST->add(*BB);                 // Incorporate the specified basic block
268  }
269
270  // We want to visit all of the instructions in this loop... that are not parts
271  // of our subloops (they have already had their invariants hoisted out of
272  // their loop, into this loop, so there is no need to process the BODIES of
273  // the subloops).
274  //
275  // Traverse the body of the loop in depth first order on the dominator tree so
276  // that we are guaranteed to see definitions before we see uses.  This allows
277  // us to sink instructions in one pass, without iteration.  After sinking
278  // instructions, we perform another pass to hoist them out of the loop.
279  //
280  if (L->hasDedicatedExits())
281    SinkRegion(DT->getNode(L->getHeader()));
282  if (Preheader)
283    HoistRegion(DT->getNode(L->getHeader()));
284
285  // Now that all loop invariants have been removed from the loop, promote any
286  // memory references to scalars that we can...
287  if (!DisablePromotion && Preheader && L->hasDedicatedExits())
288    PromoteValuesInLoop();
289
290  // Clear out loops state information for the next iteration
291  CurLoop = 0;
292  Preheader = 0;
293
294  LoopToAliasMap[L] = 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///
304void 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    // Check to see if we can sink this instruction to the exit blocks
324    // of the loop.  We can do this if the all users of the instruction are
325    // outside of the loop.  In this case, it doesn't even matter if the
326    // operands of the instruction are loop invariant.
327    //
328    if (isNotUsedInLoop(I) && canSinkOrHoistInst(I)) {
329      ++II;
330      sink(I);
331    }
332  }
333}
334
335/// HoistRegion - Walk the specified region of the CFG (defined by all blocks
336/// dominated by the specified block, and that are in the current loop) in depth
337/// first order w.r.t the DominatorTree.  This allows us to visit definitions
338/// before uses, allowing us to hoist a loop body in one pass without iteration.
339///
340void LICM::HoistRegion(DomTreeNode *N) {
341  assert(N != 0 && "Null dominator tree node?");
342  BasicBlock *BB = N->getBlock();
343
344  // If this subregion is not in the top level loop at all, exit.
345  if (!CurLoop->contains(BB)) return;
346
347  // Only need to process the contents of this block if it is not part of a
348  // subloop (which would already have been processed).
349  if (!inSubLoop(BB))
350    for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ) {
351      Instruction &I = *II++;
352
353      // Try hoisting the instruction out to the preheader.  We can only do this
354      // if all of the operands of the instruction are loop invariant and if it
355      // is safe to hoist the instruction.
356      //
357      if (isLoopInvariantInst(I) && canSinkOrHoistInst(I) &&
358          isSafeToExecuteUnconditionally(I))
359        hoist(I);
360      }
361
362  const std::vector<DomTreeNode*> &Children = N->getChildren();
363  for (unsigned i = 0, e = Children.size(); i != e; ++i)
364    HoistRegion(Children[i]);
365}
366
367/// canSinkOrHoistInst - Return true if the hoister and sinker can handle this
368/// instruction.
369///
370bool LICM::canSinkOrHoistInst(Instruction &I) {
371  // Loads have extra constraints we have to verify before we can hoist them.
372  if (LoadInst *LI = dyn_cast<LoadInst>(&I)) {
373    if (LI->isVolatile())
374      return false;        // Don't hoist volatile loads!
375
376    // Loads from constant memory are always safe to move, even if they end up
377    // in the same alias set as something that ends up being modified.
378    if (AA->pointsToConstantMemory(LI->getOperand(0)))
379      return true;
380
381    // Don't hoist loads which have may-aliased stores in loop.
382    unsigned Size = 0;
383    if (LI->getType()->isSized())
384      Size = AA->getTypeStoreSize(LI->getType());
385    return !pointerInvalidatedByLoop(LI->getOperand(0), Size);
386  } else if (CallInst *CI = dyn_cast<CallInst>(&I)) {
387    if (isa<DbgStopPointInst>(CI)) {
388      // Don't hoist/sink dbgstoppoints, we handle them separately
389      return false;
390    }
391    // Handle obvious cases efficiently.
392    AliasAnalysis::ModRefBehavior Behavior = AA->getModRefBehavior(CI);
393    if (Behavior == AliasAnalysis::DoesNotAccessMemory)
394      return true;
395    else if (Behavior == AliasAnalysis::OnlyReadsMemory) {
396      // If this call only reads from memory and there are no writes to memory
397      // in the loop, we can hoist or sink the call as appropriate.
398      bool FoundMod = false;
399      for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
400           I != E; ++I) {
401        AliasSet &AS = *I;
402        if (!AS.isForwardingAliasSet() && AS.isMod()) {
403          FoundMod = true;
404          break;
405        }
406      }
407      if (!FoundMod) return true;
408    }
409
410    // FIXME: This should use mod/ref information to see if we can hoist or sink
411    // the call.
412
413    return false;
414  }
415
416  // Otherwise these instructions are hoistable/sinkable
417  return isa<BinaryOperator>(I) || isa<CastInst>(I) ||
418         isa<SelectInst>(I) || isa<GetElementPtrInst>(I) || isa<CmpInst>(I) ||
419         isa<InsertElementInst>(I) || isa<ExtractElementInst>(I) ||
420         isa<ShuffleVectorInst>(I);
421}
422
423/// isNotUsedInLoop - Return true if the only users of this instruction are
424/// outside of the loop.  If this is true, we can sink the instruction to the
425/// exit blocks of the loop.
426///
427bool LICM::isNotUsedInLoop(Instruction &I) {
428  for (Value::use_iterator UI = I.use_begin(), E = I.use_end(); UI != E; ++UI) {
429    Instruction *User = cast<Instruction>(*UI);
430    if (PHINode *PN = dyn_cast<PHINode>(User)) {
431      // PHI node uses occur in predecessor blocks!
432      for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
433        if (PN->getIncomingValue(i) == &I)
434          if (CurLoop->contains(PN->getIncomingBlock(i)))
435            return false;
436    } else if (CurLoop->contains(User->getParent())) {
437      return false;
438    }
439  }
440  return true;
441}
442
443
444/// isLoopInvariantInst - Return true if all operands of this instruction are
445/// loop invariant.  We also filter out non-hoistable instructions here just for
446/// efficiency.
447///
448bool LICM::isLoopInvariantInst(Instruction &I) {
449  // The instruction is loop invariant if all of its operands are loop-invariant
450  for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i)
451    if (!CurLoop->isLoopInvariant(I.getOperand(i)))
452      return false;
453
454  // If we got this far, the instruction is loop invariant!
455  return true;
456}
457
458/// sink - When an instruction is found to only be used outside of the loop,
459/// this function moves it to the exit blocks and patches up SSA form as needed.
460/// This method is guaranteed to remove the original instruction from its
461/// position, and may either delete it or move it to outside of the loop.
462///
463void LICM::sink(Instruction &I) {
464  DEBUG(errs() << "LICM sinking instruction: " << I);
465
466  SmallVector<BasicBlock*, 8> ExitBlocks;
467  CurLoop->getExitBlocks(ExitBlocks);
468
469  if (isa<LoadInst>(I)) ++NumMovedLoads;
470  else if (isa<CallInst>(I)) ++NumMovedCalls;
471  ++NumSunk;
472  Changed = true;
473
474  // The case where there is only a single exit node of this loop is common
475  // enough that we handle it as a special (more efficient) case.  It is more
476  // efficient to handle because there are no PHI nodes that need to be placed.
477  if (ExitBlocks.size() == 1) {
478    if (!isExitBlockDominatedByBlockInLoop(ExitBlocks[0], I.getParent())) {
479      // Instruction is not used, just delete it.
480      CurAST->deleteValue(&I);
481      // If I has users in unreachable blocks, eliminate.
482      // If I is not void type then replaceAllUsesWith undef.
483      // This allows ValueHandlers and custom metadata to adjust itself.
484      if (!I.getType()->isVoidTy())
485        I.replaceAllUsesWith(UndefValue::get(I.getType()));
486      I.eraseFromParent();
487    } else {
488      // Move the instruction to the start of the exit block, after any PHI
489      // nodes in it.
490      I.removeFromParent();
491      BasicBlock::iterator InsertPt = ExitBlocks[0]->getFirstNonPHI();
492      ExitBlocks[0]->getInstList().insert(InsertPt, &I);
493    }
494  } else if (ExitBlocks.empty()) {
495    // The instruction is actually dead if there ARE NO exit blocks.
496    CurAST->deleteValue(&I);
497    // If I has users in unreachable blocks, eliminate.
498    // If I is not void type then replaceAllUsesWith undef.
499    // This allows ValueHandlers and custom metadata to adjust itself.
500    if (!I.getType()->isVoidTy())
501      I.replaceAllUsesWith(UndefValue::get(I.getType()));
502    I.eraseFromParent();
503  } else {
504    // Otherwise, if we have multiple exits, use the PromoteMem2Reg function to
505    // do all of the hard work of inserting PHI nodes as necessary.  We convert
506    // the value into a stack object to get it to do this.
507
508    // Firstly, we create a stack object to hold the value...
509    AllocaInst *AI = 0;
510
511    if (!I.getType()->isVoidTy()) {
512      AI = new AllocaInst(I.getType(), 0, I.getName(),
513                          I.getParent()->getParent()->getEntryBlock().begin());
514      CurAST->add(AI);
515    }
516
517    // Secondly, insert load instructions for each use of the instruction
518    // outside of the loop.
519    while (!I.use_empty()) {
520      Instruction *U = cast<Instruction>(I.use_back());
521
522      // If the user is a PHI Node, we actually have to insert load instructions
523      // in all predecessor blocks, not in the PHI block itself!
524      if (PHINode *UPN = dyn_cast<PHINode>(U)) {
525        // Only insert into each predecessor once, so that we don't have
526        // different incoming values from the same block!
527        std::map<BasicBlock*, Value*> InsertedBlocks;
528        for (unsigned i = 0, e = UPN->getNumIncomingValues(); i != e; ++i)
529          if (UPN->getIncomingValue(i) == &I) {
530            BasicBlock *Pred = UPN->getIncomingBlock(i);
531            Value *&PredVal = InsertedBlocks[Pred];
532            if (!PredVal) {
533              // Insert a new load instruction right before the terminator in
534              // the predecessor block.
535              PredVal = new LoadInst(AI, "", Pred->getTerminator());
536              CurAST->add(cast<LoadInst>(PredVal));
537            }
538
539            UPN->setIncomingValue(i, PredVal);
540          }
541
542      } else {
543        LoadInst *L = new LoadInst(AI, "", U);
544        U->replaceUsesOfWith(&I, L);
545        CurAST->add(L);
546      }
547    }
548
549    // Thirdly, insert a copy of the instruction in each exit block of the loop
550    // that is dominated by the instruction, storing the result into the memory
551    // location.  Be careful not to insert the instruction into any particular
552    // basic block more than once.
553    std::set<BasicBlock*> InsertedBlocks;
554    BasicBlock *InstOrigBB = I.getParent();
555
556    for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
557      BasicBlock *ExitBlock = ExitBlocks[i];
558
559      if (isExitBlockDominatedByBlockInLoop(ExitBlock, InstOrigBB)) {
560        // If we haven't already processed this exit block, do so now.
561        if (InsertedBlocks.insert(ExitBlock).second) {
562          // Insert the code after the last PHI node...
563          BasicBlock::iterator InsertPt = ExitBlock->getFirstNonPHI();
564
565          // If this is the first exit block processed, just move the original
566          // instruction, otherwise clone the original instruction and insert
567          // the copy.
568          Instruction *New;
569          if (InsertedBlocks.size() == 1) {
570            I.removeFromParent();
571            ExitBlock->getInstList().insert(InsertPt, &I);
572            New = &I;
573          } else {
574            New = I.clone();
575            CurAST->copyValue(&I, New);
576            if (!I.getName().empty())
577              New->setName(I.getName()+".le");
578            ExitBlock->getInstList().insert(InsertPt, New);
579          }
580
581          // Now that we have inserted the instruction, store it into the alloca
582          if (AI) new StoreInst(New, AI, InsertPt);
583        }
584      }
585    }
586
587    // If the instruction doesn't dominate any exit blocks, it must be dead.
588    if (InsertedBlocks.empty()) {
589      CurAST->deleteValue(&I);
590      I.eraseFromParent();
591    }
592
593    // Finally, promote the fine value to SSA form.
594    if (AI) {
595      std::vector<AllocaInst*> Allocas;
596      Allocas.push_back(AI);
597      PromoteMemToReg(Allocas, *DT, *DF, CurAST);
598    }
599  }
600}
601
602/// hoist - When an instruction is found to only use loop invariant operands
603/// that is safe to hoist, this instruction is called to do the dirty work.
604///
605void LICM::hoist(Instruction &I) {
606  DEBUG(errs() << "LICM hoisting to " << Preheader->getName() << ": "
607        << I << "\n");
608
609  // Remove the instruction from its current basic block... but don't delete the
610  // instruction.
611  I.removeFromParent();
612
613  // Insert the new node in Preheader, before the terminator.
614  Preheader->getInstList().insert(Preheader->getTerminator(), &I);
615
616  if (isa<LoadInst>(I)) ++NumMovedLoads;
617  else if (isa<CallInst>(I)) ++NumMovedCalls;
618  ++NumHoisted;
619  Changed = true;
620}
621
622/// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it is
623/// not a trapping instruction or if it is a trapping instruction and is
624/// guaranteed to execute.
625///
626bool LICM::isSafeToExecuteUnconditionally(Instruction &Inst) {
627  // If it is not a trapping instruction, it is always safe to hoist.
628  if (Inst.isSafeToSpeculativelyExecute())
629    return true;
630
631  // Otherwise we have to check to make sure that the instruction dominates all
632  // of the exit blocks.  If it doesn't, then there is a path out of the loop
633  // which does not execute this instruction, so we can't hoist it.
634
635  // If the instruction is in the header block for the loop (which is very
636  // common), it is always guaranteed to dominate the exit blocks.  Since this
637  // is a common case, and can save some work, check it now.
638  if (Inst.getParent() == CurLoop->getHeader())
639    return true;
640
641  // Get the exit blocks for the current loop.
642  SmallVector<BasicBlock*, 8> ExitBlocks;
643  CurLoop->getExitBlocks(ExitBlocks);
644
645  // For each exit block, get the DT node and walk up the DT until the
646  // instruction's basic block is found or we exit the loop.
647  for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
648    if (!isExitBlockDominatedByBlockInLoop(ExitBlocks[i], Inst.getParent()))
649      return false;
650
651  return true;
652}
653
654
655/// PromoteValuesInLoop - Try to promote memory values to scalars by sinking
656/// stores out of the loop and moving loads to before the loop.  We do this by
657/// looping over the stores in the loop, looking for stores to Must pointers
658/// which are loop invariant.  We promote these memory locations to use allocas
659/// instead.  These allocas can easily be raised to register values by the
660/// PromoteMem2Reg functionality.
661///
662void LICM::PromoteValuesInLoop() {
663  // PromotedValues - List of values that are promoted out of the loop.  Each
664  // value has an alloca instruction for it, and a canonical version of the
665  // pointer.
666  std::vector<std::pair<AllocaInst*, Value*> > PromotedValues;
667  std::map<Value*, AllocaInst*> ValueToAllocaMap; // Map of ptr to alloca
668
669  FindPromotableValuesInLoop(PromotedValues, ValueToAllocaMap);
670  if (ValueToAllocaMap.empty()) return;   // If there are values to promote.
671
672  Changed = true;
673  NumPromoted += PromotedValues.size();
674
675  std::vector<Value*> PointerValueNumbers;
676
677  // Emit a copy from the value into the alloca'd value in the loop preheader
678  TerminatorInst *LoopPredInst = Preheader->getTerminator();
679  for (unsigned i = 0, e = PromotedValues.size(); i != e; ++i) {
680    Value *Ptr = PromotedValues[i].second;
681
682    // If we are promoting a pointer value, update alias information for the
683    // inserted load.
684    Value *LoadValue = 0;
685    if (isa<PointerType>(cast<PointerType>(Ptr->getType())->getElementType())) {
686      // Locate a load or store through the pointer, and assign the same value
687      // to LI as we are loading or storing.  Since we know that the value is
688      // stored in this loop, this will always succeed.
689      for (Value::use_iterator UI = Ptr->use_begin(), E = Ptr->use_end();
690           UI != E; ++UI)
691        if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
692          LoadValue = LI;
693          break;
694        } else if (StoreInst *SI = dyn_cast<StoreInst>(*UI)) {
695          if (SI->getOperand(1) == Ptr) {
696            LoadValue = SI->getOperand(0);
697            break;
698          }
699        }
700      assert(LoadValue && "No store through the pointer found!");
701      PointerValueNumbers.push_back(LoadValue);  // Remember this for later.
702    }
703
704    // Load from the memory we are promoting.
705    LoadInst *LI = new LoadInst(Ptr, Ptr->getName()+".promoted", LoopPredInst);
706
707    if (LoadValue) CurAST->copyValue(LoadValue, LI);
708
709    // Store into the temporary alloca.
710    new StoreInst(LI, PromotedValues[i].first, LoopPredInst);
711  }
712
713  // Scan the basic blocks in the loop, replacing uses of our pointers with
714  // uses of the allocas in question.
715  //
716  for (Loop::block_iterator I = CurLoop->block_begin(),
717         E = CurLoop->block_end(); I != E; ++I) {
718    BasicBlock *BB = *I;
719    // Rewrite all loads and stores in the block of the pointer...
720    for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ++II) {
721      if (LoadInst *L = dyn_cast<LoadInst>(II)) {
722        std::map<Value*, AllocaInst*>::iterator
723          I = ValueToAllocaMap.find(L->getOperand(0));
724        if (I != ValueToAllocaMap.end())
725          L->setOperand(0, I->second);    // Rewrite load instruction...
726      } else if (StoreInst *S = dyn_cast<StoreInst>(II)) {
727        std::map<Value*, AllocaInst*>::iterator
728          I = ValueToAllocaMap.find(S->getOperand(1));
729        if (I != ValueToAllocaMap.end())
730          S->setOperand(1, I->second);    // Rewrite store instruction...
731      }
732    }
733  }
734
735  // Now that the body of the loop uses the allocas instead of the original
736  // memory locations, insert code to copy the alloca value back into the
737  // original memory location on all exits from the loop.  Note that we only
738  // want to insert one copy of the code in each exit block, though the loop may
739  // exit to the same block more than once.
740  //
741  SmallPtrSet<BasicBlock*, 16> ProcessedBlocks;
742
743  SmallVector<BasicBlock*, 8> ExitBlocks;
744  CurLoop->getExitBlocks(ExitBlocks);
745  for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
746    if (!ProcessedBlocks.insert(ExitBlocks[i]))
747      continue;
748
749    // Copy all of the allocas into their memory locations.
750    BasicBlock::iterator BI = ExitBlocks[i]->getFirstNonPHI();
751    Instruction *InsertPos = BI;
752    unsigned PVN = 0;
753    for (unsigned i = 0, e = PromotedValues.size(); i != e; ++i) {
754      // Load from the alloca.
755      LoadInst *LI = new LoadInst(PromotedValues[i].first, "", InsertPos);
756
757      // If this is a pointer type, update alias info appropriately.
758      if (isa<PointerType>(LI->getType()))
759        CurAST->copyValue(PointerValueNumbers[PVN++], LI);
760
761      // Store into the memory we promoted.
762      new StoreInst(LI, PromotedValues[i].second, InsertPos);
763    }
764  }
765
766  // Now that we have done the deed, use the mem2reg functionality to promote
767  // all of the new allocas we just created into real SSA registers.
768  //
769  std::vector<AllocaInst*> PromotedAllocas;
770  PromotedAllocas.reserve(PromotedValues.size());
771  for (unsigned i = 0, e = PromotedValues.size(); i != e; ++i)
772    PromotedAllocas.push_back(PromotedValues[i].first);
773  PromoteMemToReg(PromotedAllocas, *DT, *DF, CurAST);
774}
775
776/// FindPromotableValuesInLoop - Check the current loop for stores to definite
777/// pointers, which are not loaded and stored through may aliases and are safe
778/// for promotion.  If these are found, create an alloca for the value, add it
779/// to the PromotedValues list, and keep track of the mapping from value to
780/// alloca.
781void LICM::FindPromotableValuesInLoop(
782                   std::vector<std::pair<AllocaInst*, Value*> > &PromotedValues,
783                             std::map<Value*, AllocaInst*> &ValueToAllocaMap) {
784  Instruction *FnStart = CurLoop->getHeader()->getParent()->begin()->begin();
785
786  // Loop over all of the alias sets in the tracker object.
787  for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
788       I != E; ++I) {
789    AliasSet &AS = *I;
790    // We can promote this alias set if it has a store, if it is a "Must" alias
791    // set, if the pointer is loop invariant, and if we are not eliminating any
792    // volatile loads or stores.
793    if (AS.isForwardingAliasSet() || !AS.isMod() || !AS.isMustAlias() ||
794        AS.isVolatile() || !CurLoop->isLoopInvariant(AS.begin()->getValue()))
795      continue;
796
797    assert(!AS.empty() &&
798           "Must alias set should have at least one pointer element in it!");
799    Value *V = AS.begin()->getValue();
800
801    // Check that all of the pointers in the alias set have the same type.  We
802    // cannot (yet) promote a memory location that is loaded and stored in
803    // different sizes.
804    {
805      bool PointerOk = true;
806      for (AliasSet::iterator I = AS.begin(), E = AS.end(); I != E; ++I)
807        if (V->getType() != I->getValue()->getType()) {
808          PointerOk = false;
809          break;
810        }
811      if (!PointerOk)
812        continue;
813    }
814
815    // It isn't safe to promote a load/store from the loop if the load/store is
816    // conditional.  For example, turning:
817    //
818    //    for () { if (c) *P += 1; }
819    //
820    // into:
821    //
822    //    tmp = *P;  for () { if (c) tmp +=1; } *P = tmp;
823    //
824    // is not safe, because *P may only be valid to access if 'c' is true.
825    //
826    // It is safe to promote P if all uses are direct load/stores and if at
827    // least one is guaranteed to be executed.
828    bool GuaranteedToExecute = false;
829    bool InvalidInst = false;
830    for (Value::use_iterator UI = V->use_begin(), UE = V->use_end();
831         UI != UE; ++UI) {
832      // Ignore instructions not in this loop.
833      Instruction *Use = dyn_cast<Instruction>(*UI);
834      if (!Use || !CurLoop->contains(Use->getParent()))
835        continue;
836
837      if (!isa<LoadInst>(Use) && !isa<StoreInst>(Use)) {
838        InvalidInst = true;
839        break;
840      }
841
842      if (!GuaranteedToExecute)
843        GuaranteedToExecute = isSafeToExecuteUnconditionally(*Use);
844    }
845
846    // If there is an non-load/store instruction in the loop, we can't promote
847    // it.  If there isn't a guaranteed-to-execute instruction, we can't
848    // promote.
849    if (InvalidInst || !GuaranteedToExecute)
850      continue;
851
852    const Type *Ty = cast<PointerType>(V->getType())->getElementType();
853    AllocaInst *AI = new AllocaInst(Ty, 0, V->getName()+".tmp", FnStart);
854    PromotedValues.push_back(std::make_pair(AI, V));
855
856    // Update the AST and alias analysis.
857    CurAST->copyValue(V, AI);
858
859    for (AliasSet::iterator I = AS.begin(), E = AS.end(); I != E; ++I)
860      ValueToAllocaMap.insert(std::make_pair(I->getValue(), AI));
861
862    DEBUG(errs() << "LICM: Promoting value: " << *V << "\n");
863  }
864}
865
866/// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
867void LICM::cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L) {
868  AliasSetTracker *AST = LoopToAliasMap[L];
869  if (!AST)
870    return;
871
872  AST->copyValue(From, To);
873}
874
875/// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
876/// set.
877void LICM::deleteAnalysisValue(Value *V, Loop *L) {
878  AliasSetTracker *AST = LoopToAliasMap[L];
879  if (!AST)
880    return;
881
882  AST->deleteValue(V);
883}
884