modernize this pass a bit: use efficient set/map and reduce indentation.
[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 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>
54 using namespace llvm;
55
56 STATISTIC(NumSunk      , "Number of instructions sunk out of loop");
57 STATISTIC(NumHoisted   , "Number of instructions hoisted out of loop");
58 STATISTIC(NumMovedLoads, "Number of load insts hoisted or sunk");
59 STATISTIC(NumMovedCalls, "Number of call insts hoisted or sunk");
60 STATISTIC(NumPromoted  , "Number of memory locations promoted to registers");
61
62 static cl::opt<bool>
63 DisablePromotion("disable-licm-promotion", cl::Hidden,
64                  cl::desc("Disable memory promotion in LICM pass"));
65
66 namespace {
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.addRequired<DominatorTree>();
79       AU.addRequired<DominanceFrontier>();  // For scalar promotion (mem2reg)
80       AU.addRequired<LoopInfo>();
81       AU.addRequiredID(LoopSimplifyID);
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                                     DenseMap<Value*, AllocaInst*> &Val2AlMap);
221   };
222 }
223
224 char LICM::ID = 0;
225 INITIALIZE_PASS(LICM, "licm", "Loop Invariant Code Motion", false, false);
226
227 Pass *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 ///
233 bool 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 ///
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     // 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 ///
340 void 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 ///
370 bool 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     // Handle obvious cases efficiently.
388     AliasAnalysis::ModRefBehavior Behavior = AA->getModRefBehavior(CI);
389     if (Behavior == AliasAnalysis::DoesNotAccessMemory)
390       return true;
391     else if (Behavior == AliasAnalysis::OnlyReadsMemory) {
392       // If this call only reads from memory and there are no writes to memory
393       // in the loop, we can hoist or sink the call as appropriate.
394       bool FoundMod = false;
395       for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
396            I != E; ++I) {
397         AliasSet &AS = *I;
398         if (!AS.isForwardingAliasSet() && AS.isMod()) {
399           FoundMod = true;
400           break;
401         }
402       }
403       if (!FoundMod) return true;
404     }
405
406     // FIXME: This should use mod/ref information to see if we can hoist or sink
407     // the call.
408
409     return false;
410   }
411
412   // Otherwise these instructions are hoistable/sinkable
413   return isa<BinaryOperator>(I) || isa<CastInst>(I) ||
414          isa<SelectInst>(I) || isa<GetElementPtrInst>(I) || isa<CmpInst>(I) ||
415          isa<InsertElementInst>(I) || isa<ExtractElementInst>(I) ||
416          isa<ShuffleVectorInst>(I);
417 }
418
419 /// isNotUsedInLoop - Return true if the only users of this instruction are
420 /// outside of the loop.  If this is true, we can sink the instruction to the
421 /// exit blocks of the loop.
422 ///
423 bool LICM::isNotUsedInLoop(Instruction &I) {
424   for (Value::use_iterator UI = I.use_begin(), E = I.use_end(); UI != E; ++UI) {
425     Instruction *User = cast<Instruction>(*UI);
426     if (PHINode *PN = dyn_cast<PHINode>(User)) {
427       // PHI node uses occur in predecessor blocks!
428       for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
429         if (PN->getIncomingValue(i) == &I)
430           if (CurLoop->contains(PN->getIncomingBlock(i)))
431             return false;
432     } else if (CurLoop->contains(User)) {
433       return false;
434     }
435   }
436   return true;
437 }
438
439
440 /// isLoopInvariantInst - Return true if all operands of this instruction are
441 /// loop invariant.  We also filter out non-hoistable instructions here just for
442 /// efficiency.
443 ///
444 bool LICM::isLoopInvariantInst(Instruction &I) {
445   // The instruction is loop invariant if all of its operands are loop-invariant
446   for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i)
447     if (!CurLoop->isLoopInvariant(I.getOperand(i)))
448       return false;
449
450   // If we got this far, the instruction is loop invariant!
451   return true;
452 }
453
454 /// sink - When an instruction is found to only be used outside of the loop,
455 /// this function moves it to the exit blocks and patches up SSA form as needed.
456 /// This method is guaranteed to remove the original instruction from its
457 /// position, and may either delete it or move it to outside of the loop.
458 ///
459 void LICM::sink(Instruction &I) {
460   DEBUG(dbgs() << "LICM sinking instruction: " << I << "\n");
461
462   SmallVector<BasicBlock*, 8> ExitBlocks;
463   CurLoop->getExitBlocks(ExitBlocks);
464
465   if (isa<LoadInst>(I)) ++NumMovedLoads;
466   else if (isa<CallInst>(I)) ++NumMovedCalls;
467   ++NumSunk;
468   Changed = true;
469
470   // The case where there is only a single exit node of this loop is common
471   // enough that we handle it as a special (more efficient) case.  It is more
472   // efficient to handle because there are no PHI nodes that need to be placed.
473   if (ExitBlocks.size() == 1) {
474     if (!isExitBlockDominatedByBlockInLoop(ExitBlocks[0], I.getParent())) {
475       // Instruction is not used, just delete it.
476       CurAST->deleteValue(&I);
477       // If I has users in unreachable blocks, eliminate.
478       // If I is not void type then replaceAllUsesWith undef.
479       // This allows ValueHandlers and custom metadata to adjust itself.
480       if (!I.getType()->isVoidTy())
481         I.replaceAllUsesWith(UndefValue::get(I.getType()));
482       I.eraseFromParent();
483     } else {
484       // Move the instruction to the start of the exit block, after any PHI
485       // nodes in it.
486       I.removeFromParent();
487       BasicBlock::iterator InsertPt = ExitBlocks[0]->getFirstNonPHI();
488       ExitBlocks[0]->getInstList().insert(InsertPt, &I);
489     }
490   } else if (ExitBlocks.empty()) {
491     // The instruction is actually dead if there ARE NO exit blocks.
492     CurAST->deleteValue(&I);
493     // If I has users in unreachable blocks, eliminate.
494     // If I is not void type then replaceAllUsesWith undef.
495     // This allows ValueHandlers and custom metadata to adjust itself.
496     if (!I.getType()->isVoidTy())
497       I.replaceAllUsesWith(UndefValue::get(I.getType()));
498     I.eraseFromParent();
499   } else {
500     // Otherwise, if we have multiple exits, use the PromoteMem2Reg function to
501     // do all of the hard work of inserting PHI nodes as necessary.  We convert
502     // the value into a stack object to get it to do this.
503
504     // Firstly, we create a stack object to hold the value...
505     AllocaInst *AI = 0;
506
507     if (!I.getType()->isVoidTy()) {
508       AI = new AllocaInst(I.getType(), 0, I.getName(),
509                           I.getParent()->getParent()->getEntryBlock().begin());
510       CurAST->add(AI);
511     }
512
513     // Secondly, insert load instructions for each use of the instruction
514     // outside of the loop.
515     while (!I.use_empty()) {
516       Instruction *U = cast<Instruction>(I.use_back());
517
518       // If the user is a PHI Node, we actually have to insert load instructions
519       // in all predecessor blocks, not in the PHI block itself!
520       if (PHINode *UPN = dyn_cast<PHINode>(U)) {
521         // Only insert into each predecessor once, so that we don't have
522         // different incoming values from the same block!
523         DenseMap<BasicBlock*, Value*> InsertedBlocks;
524         for (unsigned i = 0, e = UPN->getNumIncomingValues(); i != e; ++i) {
525           if (UPN->getIncomingValue(i) != &I) continue;
526           
527           BasicBlock *Pred = UPN->getIncomingBlock(i);
528           Value *&PredVal = InsertedBlocks[Pred];
529           if (!PredVal) {
530             // Insert a new load instruction right before the terminator in
531             // the predecessor block.
532             PredVal = new LoadInst(AI, "", Pred->getTerminator());
533             CurAST->add(cast<LoadInst>(PredVal));
534           }
535
536           UPN->setIncomingValue(i, PredVal);
537         }
538
539       } else {
540         LoadInst *L = new LoadInst(AI, "", U);
541         U->replaceUsesOfWith(&I, L);
542         CurAST->add(L);
543       }
544     }
545
546     // Thirdly, insert a copy of the instruction in each exit block of the loop
547     // that is dominated by the instruction, storing the result into the memory
548     // location.  Be careful not to insert the instruction into any particular
549     // basic block more than once.
550     SmallPtrSet<BasicBlock*, 16> InsertedBlocks;
551     BasicBlock *InstOrigBB = I.getParent();
552
553     for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
554       BasicBlock *ExitBlock = ExitBlocks[i];
555
556       if (!isExitBlockDominatedByBlockInLoop(ExitBlock, InstOrigBB))
557         continue;
558       
559       // If we haven't already processed this exit block, do so now.
560       if (!InsertedBlocks.insert(ExitBlock))
561         continue;
562       
563       // Insert the code after the last PHI node...
564       BasicBlock::iterator InsertPt = ExitBlock->getFirstNonPHI();
565
566       // If this is the first exit block processed, just move the original
567       // instruction, otherwise clone the original instruction and insert
568       // the copy.
569       Instruction *New;
570       if (InsertedBlocks.size() == 1) {
571         I.removeFromParent();
572         ExitBlock->getInstList().insert(InsertPt, &I);
573         New = &I;
574       } else {
575         New = I.clone();
576         CurAST->copyValue(&I, New);
577         if (!I.getName().empty())
578           New->setName(I.getName()+".le");
579         ExitBlock->getInstList().insert(InsertPt, New);
580       }
581
582       // Now that we have inserted the instruction, store it into the alloca
583       if (AI) new StoreInst(New, AI, InsertPt);
584     }
585
586     // If the instruction doesn't dominate any exit blocks, it must be dead.
587     if (InsertedBlocks.empty()) {
588       CurAST->deleteValue(&I);
589       I.eraseFromParent();
590     }
591
592     // Finally, promote the fine value to SSA form.
593     if (AI) {
594       std::vector<AllocaInst*> Allocas;
595       Allocas.push_back(AI);
596       PromoteMemToReg(Allocas, *DT, *DF, CurAST);
597     }
598   }
599 }
600
601 /// hoist - When an instruction is found to only use loop invariant operands
602 /// that is safe to hoist, this instruction is called to do the dirty work.
603 ///
604 void LICM::hoist(Instruction &I) {
605   DEBUG(dbgs() << "LICM hoisting to " << Preheader->getName() << ": "
606         << I << "\n");
607
608   // Remove the instruction from its current basic block... but don't delete the
609   // instruction.
610   I.removeFromParent();
611
612   // Insert the new node in Preheader, before the terminator.
613   Preheader->getInstList().insert(Preheader->getTerminator(), &I);
614
615   if (isa<LoadInst>(I)) ++NumMovedLoads;
616   else if (isa<CallInst>(I)) ++NumMovedCalls;
617   ++NumHoisted;
618   Changed = true;
619 }
620
621 /// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it is
622 /// not a trapping instruction or if it is a trapping instruction and is
623 /// guaranteed to execute.
624 ///
625 bool LICM::isSafeToExecuteUnconditionally(Instruction &Inst) {
626   // If it is not a trapping instruction, it is always safe to hoist.
627   if (Inst.isSafeToSpeculativelyExecute())
628     return true;
629
630   // Otherwise we have to check to make sure that the instruction dominates all
631   // of the exit blocks.  If it doesn't, then there is a path out of the loop
632   // which does not execute this instruction, so we can't hoist it.
633
634   // If the instruction is in the header block for the loop (which is very
635   // common), it is always guaranteed to dominate the exit blocks.  Since this
636   // is a common case, and can save some work, check it now.
637   if (Inst.getParent() == CurLoop->getHeader())
638     return true;
639
640   // Get the exit blocks for the current loop.
641   SmallVector<BasicBlock*, 8> ExitBlocks;
642   CurLoop->getExitBlocks(ExitBlocks);
643
644   // For each exit block, get the DT node and walk up the DT until the
645   // instruction's basic block is found or we exit the loop.
646   for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
647     if (!isExitBlockDominatedByBlockInLoop(ExitBlocks[i], Inst.getParent()))
648       return false;
649
650   return true;
651 }
652
653
654 /// PromoteValuesInLoop - Try to promote memory values to scalars by sinking
655 /// stores out of the loop and moving loads to before the loop.  We do this by
656 /// looping over the stores in the loop, looking for stores to Must pointers
657 /// which are loop invariant.  We promote these memory locations to use allocas
658 /// instead.  These allocas can easily be raised to register values by the
659 /// PromoteMem2Reg functionality.
660 ///
661 void LICM::PromoteValuesInLoop() {
662   // PromotedValues - List of values that are promoted out of the loop.  Each
663   // value has an alloca instruction for it, and a canonical version of the
664   // pointer.
665   std::vector<std::pair<AllocaInst*, Value*> > PromotedValues;
666   DenseMap<Value*, AllocaInst*> ValueToAllocaMap; // Map of ptr to alloca
667
668   FindPromotableValuesInLoop(PromotedValues, ValueToAllocaMap);
669   if (ValueToAllocaMap.empty()) return;   // If there are values to promote.
670
671   Changed = true;
672   NumPromoted += PromotedValues.size();
673
674   std::vector<Value*> PointerValueNumbers;
675
676   // Emit a copy from the value into the alloca'd value in the loop preheader
677   TerminatorInst *LoopPredInst = Preheader->getTerminator();
678   for (unsigned i = 0, e = PromotedValues.size(); i != e; ++i) {
679     Value *Ptr = PromotedValues[i].second;
680
681     // If we are promoting a pointer value, update alias information for the
682     // inserted load.
683     Value *LoadValue = 0;
684     if (cast<PointerType>(Ptr->getType())->getElementType()->isPointerTy()) {
685       // Locate a load or store through the pointer, and assign the same value
686       // to LI as we are loading or storing.  Since we know that the value is
687       // stored in this loop, this will always succeed.
688       for (Value::use_iterator UI = Ptr->use_begin(), E = Ptr->use_end();
689            UI != E; ++UI) {
690         User *U = *UI;
691         if (LoadInst *LI = dyn_cast<LoadInst>(U)) {
692           LoadValue = LI;
693           break;
694         } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
695           if (SI->getOperand(1) == Ptr) {
696             LoadValue = SI->getOperand(0);
697             break;
698           }
699         }
700       }
701       assert(LoadValue && "No store through the pointer found!");
702       PointerValueNumbers.push_back(LoadValue);  // Remember this for later.
703     }
704
705     // Load from the memory we are promoting.
706     LoadInst *LI = new LoadInst(Ptr, Ptr->getName()+".promoted", LoopPredInst);
707
708     if (LoadValue) CurAST->copyValue(LoadValue, LI);
709
710     // Store into the temporary alloca.
711     new StoreInst(LI, PromotedValues[i].first, LoopPredInst);
712   }
713
714   // Scan the basic blocks in the loop, replacing uses of our pointers with
715   // uses of the allocas in question.
716   //
717   for (Loop::block_iterator I = CurLoop->block_begin(),
718          E = CurLoop->block_end(); I != E; ++I) {
719     BasicBlock *BB = *I;
720     // Rewrite all loads and stores in the block of the pointer...
721     for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ++II) {
722       if (LoadInst *L = dyn_cast<LoadInst>(II)) {
723         DenseMap<Value*, AllocaInst*>::iterator
724           I = ValueToAllocaMap.find(L->getOperand(0));
725         if (I != ValueToAllocaMap.end())
726           L->setOperand(0, I->second);    // Rewrite load instruction...
727       } else if (StoreInst *S = dyn_cast<StoreInst>(II)) {
728         DenseMap<Value*, AllocaInst*>::iterator
729           I = ValueToAllocaMap.find(S->getOperand(1));
730         if (I != ValueToAllocaMap.end())
731           S->setOperand(1, I->second);    // Rewrite store instruction...
732       }
733     }
734   }
735
736   // Now that the body of the loop uses the allocas instead of the original
737   // memory locations, insert code to copy the alloca value back into the
738   // original memory location on all exits from the loop.  Note that we only
739   // want to insert one copy of the code in each exit block, though the loop may
740   // exit to the same block more than once.
741   //
742   SmallPtrSet<BasicBlock*, 16> ProcessedBlocks;
743
744   SmallVector<BasicBlock*, 8> ExitBlocks;
745   CurLoop->getExitBlocks(ExitBlocks);
746   for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
747     if (!ProcessedBlocks.insert(ExitBlocks[i]))
748       continue;
749   
750     // Copy all of the allocas into their memory locations.
751     BasicBlock::iterator BI = ExitBlocks[i]->getFirstNonPHI();
752     Instruction *InsertPos = BI;
753     unsigned PVN = 0;
754     for (unsigned i = 0, e = PromotedValues.size(); i != e; ++i) {
755       // Load from the alloca.
756       LoadInst *LI = new LoadInst(PromotedValues[i].first, "", InsertPos);
757
758       // If this is a pointer type, update alias info appropriately.
759       if (LI->getType()->isPointerTy())
760         CurAST->copyValue(PointerValueNumbers[PVN++], LI);
761
762       // Store into the memory we promoted.
763       new StoreInst(LI, PromotedValues[i].second, InsertPos);
764     }
765   }
766
767   // Now that we have done the deed, use the mem2reg functionality to promote
768   // all of the new allocas we just created into real SSA registers.
769   //
770   std::vector<AllocaInst*> PromotedAllocas;
771   PromotedAllocas.reserve(PromotedValues.size());
772   for (unsigned i = 0, e = PromotedValues.size(); i != e; ++i)
773     PromotedAllocas.push_back(PromotedValues[i].first);
774   PromoteMemToReg(PromotedAllocas, *DT, *DF, CurAST);
775 }
776
777 /// FindPromotableValuesInLoop - Check the current loop for stores to definite
778 /// pointers, which are not loaded and stored through may aliases and are safe
779 /// for promotion.  If these are found, create an alloca for the value, add it 
780 /// to the PromotedValues list, and keep track of the mapping from value to 
781 /// alloca. 
782 void LICM::FindPromotableValuesInLoop(
783                    std::vector<std::pair<AllocaInst*, Value*> > &PromotedValues,
784                              DenseMap<Value*, AllocaInst*> &ValueToAllocaMap) {
785   Instruction *FnStart = CurLoop->getHeader()->getParent()->begin()->begin();
786
787   // Loop over all of the alias sets in the tracker object.
788   for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
789        I != E; ++I) {
790     AliasSet &AS = *I;
791     // We can promote this alias set if it has a store, if it is a "Must" alias
792     // set, if the pointer is loop invariant, and if we are not eliminating any
793     // volatile loads or stores.
794     if (AS.isForwardingAliasSet() || !AS.isMod() || !AS.isMustAlias() ||
795         AS.isVolatile() || !CurLoop->isLoopInvariant(AS.begin()->getValue()))
796       continue;
797     
798     assert(!AS.empty() &&
799            "Must alias set should have at least one pointer element in it!");
800     Value *V = AS.begin()->getValue();
801
802     // Check that all of the pointers in the alias set have the same type.  We
803     // cannot (yet) promote a memory location that is loaded and stored in
804     // different sizes.
805     {
806       bool PointerOk = true;
807       for (AliasSet::iterator I = AS.begin(), E = AS.end(); I != E; ++I)
808         if (V->getType() != I->getValue()->getType()) {
809           PointerOk = false;
810           break;
811         }
812       if (!PointerOk)
813         continue;
814     }
815
816     // It isn't safe to promote a load/store from the loop if the load/store is
817     // conditional.  For example, turning:
818     //
819     //    for () { if (c) *P += 1; }
820     //
821     // into:
822     //
823     //    tmp = *P;  for () { if (c) tmp +=1; } *P = tmp;
824     //
825     // is not safe, because *P may only be valid to access if 'c' is true.
826     // 
827     // It is safe to promote P if all uses are direct load/stores and if at
828     // least one is guaranteed to be executed.
829     bool GuaranteedToExecute = false;
830     bool InvalidInst = false;
831     for (Value::use_iterator UI = V->use_begin(), UE = V->use_end();
832          UI != UE; ++UI) {
833       // Ignore instructions not in this loop.
834       Instruction *Use = dyn_cast<Instruction>(*UI);
835       if (!Use || !CurLoop->contains(Use))
836         continue;
837
838       if (!isa<LoadInst>(Use) && !isa<StoreInst>(Use)) {
839         InvalidInst = true;
840         break;
841       }
842       
843       if (!GuaranteedToExecute)
844         GuaranteedToExecute = isSafeToExecuteUnconditionally(*Use);
845     }
846
847     // If there is an non-load/store instruction in the loop, we can't promote
848     // it.  If there isn't a guaranteed-to-execute instruction, we can't
849     // promote.
850     if (InvalidInst || !GuaranteedToExecute)
851       continue;
852     
853     const Type *Ty = cast<PointerType>(V->getType())->getElementType();
854     AllocaInst *AI = new AllocaInst(Ty, 0, V->getName()+".tmp", FnStart);
855     PromotedValues.push_back(std::make_pair(AI, V));
856
857     // Update the AST and alias analysis.
858     CurAST->copyValue(V, AI);
859
860     for (AliasSet::iterator I = AS.begin(), E = AS.end(); I != E; ++I)
861       ValueToAllocaMap[I->getValue()] = AI;
862
863     DEBUG(dbgs() << "LICM: Promoting value: " << *V << "\n");
864   }
865 }
866
867 /// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
868 void LICM::cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L) {
869   AliasSetTracker *AST = LoopToAliasMap[L];
870   if (!AST)
871     return;
872
873   AST->copyValue(From, To);
874 }
875
876 /// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
877 /// set.
878 void LICM::deleteAnalysisValue(Value *V, Loop *L) {
879   AliasSetTracker *AST = LoopToAliasMap[L];
880   if (!AST)
881     return;
882
883   AST->deleteValue(V);
884 }