4cb03fbd8e71c6dfb7d461243c85b635e3cda908
[oota-llvm.git] / include / llvm / Analysis / LoopInfo.h
1 //===- llvm/Analysis/LoopInfo.h - Natural Loop Calculator -------*- C++ -*-===//
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 file defines the LoopInfo class that is used to identify natural loops
11 // and determine the loop depth of various nodes of the CFG.  Note that natural
12 // loops may actually be several loops that share the same header node.
13 //
14 // This analysis calculates the nesting structure of loops in a function.  For
15 // each natural loop identified, this analysis identifies natural loops
16 // contained entirely within the loop and the basic blocks the make up the loop.
17 //
18 // It can calculate on the fly various bits of information, for example:
19 //
20 //  * whether there is a preheader for the loop
21 //  * the number of back edges to the header
22 //  * whether or not a particular block branches out of the loop
23 //  * the successor blocks of the loop
24 //  * the loop depth
25 //  * the trip count
26 //  * etc...
27 //
28 //===----------------------------------------------------------------------===//
29
30 #ifndef LLVM_ANALYSIS_LOOP_INFO_H
31 #define LLVM_ANALYSIS_LOOP_INFO_H
32
33 #include "llvm/Pass.h"
34 #include "llvm/Constants.h"
35 #include "llvm/Instructions.h"
36 #include "llvm/ADT/DepthFirstIterator.h"
37 #include "llvm/ADT/GraphTraits.h"
38 #include "llvm/ADT/SmallPtrSet.h"
39 #include "llvm/ADT/SmallVector.h"
40 #include "llvm/Analysis/Dominators.h"
41 #include "llvm/Support/CFG.h"
42 #include "llvm/Support/Streams.h"
43 #include <algorithm>
44 #include <ostream>
45
46 template<typename T>
47 static void RemoveFromVector(std::vector<T*> &V, T *N) {
48   typename std::vector<T*>::iterator I = std::find(V.begin(), V.end(), N);
49   assert(I != V.end() && "N is not in this list!");
50   V.erase(I);
51 }
52
53 namespace llvm {
54
55 class DominatorTree;
56 class LoopInfo;
57 class PHINode;
58 class Instruction;
59 template<class N> class LoopInfoBase;
60 template<class N> class LoopBase;
61
62 typedef LoopBase<BasicBlock> Loop;
63
64 //===----------------------------------------------------------------------===//
65 /// LoopBase class - Instances of this class are used to represent loops that
66 /// are detected in the flow graph
67 ///
68 template<class BlockT>
69 class LoopBase {
70   LoopBase<BlockT> *ParentLoop;
71   // SubLoops - Loops contained entirely within this one.
72   std::vector<LoopBase<BlockT>*> SubLoops;
73
74   // Blocks - The list of blocks in this loop.  First entry is the header node.
75   std::vector<BlockT*> Blocks;
76
77   LoopBase(const LoopBase<BlockT> &);                  // DO NOT IMPLEMENT
78   const LoopBase<BlockT>&operator=(const LoopBase<BlockT> &);// DO NOT IMPLEMENT
79 public:
80   /// Loop ctor - This creates an empty loop.
81   LoopBase() : ParentLoop(0) {}
82   ~LoopBase() {
83     for (unsigned i = 0, e = SubLoops.size(); i != e; ++i)
84       delete SubLoops[i];
85   }
86
87   /// getLoopDepth - Return the nesting level of this loop.  An outer-most
88   /// loop has depth 1, for consistency with loop depth values used for basic
89   /// blocks, where depth 0 is used for blocks not inside any loops.
90   unsigned getLoopDepth() const {
91     unsigned D = 1;
92     for (const LoopBase<BlockT> *CurLoop = ParentLoop; CurLoop;
93          CurLoop = CurLoop->ParentLoop)
94       ++D;
95     return D;
96   }
97   BlockT *getHeader() const { return Blocks.front(); }
98   LoopBase<BlockT> *getParentLoop() const { return ParentLoop; }
99
100   /// contains - Return true if the specified basic block is in this loop
101   ///
102   bool contains(const BlockT *BB) const {
103     return std::find(Blocks.begin(), Blocks.end(), BB) != Blocks.end();
104   }
105
106   /// iterator/begin/end - Return the loops contained entirely within this loop.
107   ///
108   const std::vector<LoopBase<BlockT>*> &getSubLoops() const { return SubLoops; }
109   typedef typename std::vector<LoopBase<BlockT>*>::const_iterator iterator;
110   iterator begin() const { return SubLoops.begin(); }
111   iterator end() const { return SubLoops.end(); }
112   bool empty() const { return SubLoops.empty(); }
113
114   /// getBlocks - Get a list of the basic blocks which make up this loop.
115   ///
116   const std::vector<BlockT*> &getBlocks() const { return Blocks; }
117   typedef typename std::vector<BlockT*>::const_iterator block_iterator;
118   block_iterator block_begin() const { return Blocks.begin(); }
119   block_iterator block_end() const { return Blocks.end(); }
120
121   /// isLoopExit - True if terminator in the block can branch to another block
122   /// that is outside of the current loop.
123   ///
124   bool isLoopExit(const BlockT *BB) const {
125     typedef GraphTraits<BlockT*> BlockTraits;
126     for (typename BlockTraits::ChildIteratorType SI =
127          BlockTraits::child_begin(const_cast<BlockT*>(BB)),
128          SE = BlockTraits::child_end(const_cast<BlockT*>(BB)); SI != SE; ++SI) {
129       if (!contains(*SI))
130         return true;
131     }
132     return false;
133   }
134
135   /// getNumBackEdges - Calculate the number of back edges to the loop header
136   ///
137   unsigned getNumBackEdges() const {
138     unsigned NumBackEdges = 0;
139     BlockT *H = getHeader();
140
141     typedef GraphTraits<Inverse<BlockT*> > InvBlockTraits;
142     for (typename InvBlockTraits::ChildIteratorType I =
143          InvBlockTraits::child_begin(const_cast<BlockT*>(H)),
144          E = InvBlockTraits::child_end(const_cast<BlockT*>(H)); I != E; ++I)
145       if (contains(*I))
146         ++NumBackEdges;
147
148     return NumBackEdges;
149   }
150
151   /// isLoopInvariant - Return true if the specified value is loop invariant
152   ///
153   inline bool isLoopInvariant(Value *V) const {
154     if (Instruction *I = dyn_cast<Instruction>(V))
155       return !contains(I->getParent());
156     return true;  // All non-instructions are loop invariant
157   }
158
159   //===--------------------------------------------------------------------===//
160   // APIs for simple analysis of the loop.
161   //
162   // Note that all of these methods can fail on general loops (ie, there may not
163   // be a preheader, etc).  For best success, the loop simplification and
164   // induction variable canonicalization pass should be used to normalize loops
165   // for easy analysis.  These methods assume canonical loops.
166
167   /// getExitingBlocks - Return all blocks inside the loop that have successors
168   /// outside of the loop.  These are the blocks _inside of the current loop_
169   /// which branch out.  The returned list is always unique.
170   ///
171   void getExitingBlocks(SmallVectorImpl<BlockT *> &ExitingBlocks) const {
172     // Sort the blocks vector so that we can use binary search to do quick
173     // lookups.
174     SmallVector<BlockT*, 128> LoopBBs(block_begin(), block_end());
175     std::sort(LoopBBs.begin(), LoopBBs.end());
176
177     typedef GraphTraits<BlockT*> BlockTraits;
178     for (typename std::vector<BlockT*>::const_iterator BI = Blocks.begin(),
179          BE = Blocks.end(); BI != BE; ++BI)
180       for (typename BlockTraits::ChildIteratorType I =
181           BlockTraits::child_begin(*BI), E = BlockTraits::child_end(*BI);
182           I != E; ++I)
183         if (!std::binary_search(LoopBBs.begin(), LoopBBs.end(), *I)) {
184           // Not in current loop? It must be an exit block.
185           ExitingBlocks.push_back(*BI);
186           break;
187         }
188   }
189
190   /// getExitBlocks - Return all of the successor blocks of this loop.  These
191   /// are the blocks _outside of the current loop_ which are branched to.
192   ///
193   void getExitBlocks(SmallVectorImpl<BlockT*> &ExitBlocks) const {
194     // Sort the blocks vector so that we can use binary search to do quick
195     // lookups.
196     SmallVector<BlockT*, 128> LoopBBs(block_begin(), block_end());
197     std::sort(LoopBBs.begin(), LoopBBs.end());
198
199     typedef GraphTraits<BlockT*> BlockTraits;
200     for (typename std::vector<BlockT*>::const_iterator BI = Blocks.begin(),
201          BE = Blocks.end(); BI != BE; ++BI)
202       for (typename BlockTraits::ChildIteratorType I =
203            BlockTraits::child_begin(*BI), E = BlockTraits::child_end(*BI);
204            I != E; ++I)
205         if (!std::binary_search(LoopBBs.begin(), LoopBBs.end(), *I))
206           // Not in current loop? It must be an exit block.
207           ExitBlocks.push_back(*I);
208   }
209
210   /// getUniqueExitBlocks - Return all unique successor blocks of this loop. 
211   /// These are the blocks _outside of the current loop_ which are branched to.
212   /// This assumes that loop is in canonical form.
213   ///
214   void getUniqueExitBlocks(SmallVectorImpl<BlockT*> &ExitBlocks) const {
215     // Sort the blocks vector so that we can use binary search to do quick
216     // lookups.
217     SmallVector<BlockT*, 128> LoopBBs(block_begin(), block_end());
218     std::sort(LoopBBs.begin(), LoopBBs.end());
219
220     std::vector<BlockT*> switchExitBlocks;  
221
222     for (typename std::vector<BlockT*>::const_iterator BI = Blocks.begin(),
223          BE = Blocks.end(); BI != BE; ++BI) {
224
225       BlockT *current = *BI;
226       switchExitBlocks.clear();
227
228       typedef GraphTraits<BlockT*> BlockTraits;
229       typedef GraphTraits<Inverse<BlockT*> > InvBlockTraits;
230       for (typename BlockTraits::ChildIteratorType I =
231            BlockTraits::child_begin(*BI), E = BlockTraits::child_end(*BI);
232            I != E; ++I) {
233         if (std::binary_search(LoopBBs.begin(), LoopBBs.end(), *I))
234       // If block is inside the loop then it is not a exit block.
235           continue;
236       
237         typename InvBlockTraits::ChildIteratorType PI =
238                                                 InvBlockTraits::child_begin(*I);
239         BlockT *firstPred = *PI;
240
241         // If current basic block is this exit block's first predecessor
242         // then only insert exit block in to the output ExitBlocks vector.
243         // This ensures that same exit block is not inserted twice into
244         // ExitBlocks vector.
245         if (current != firstPred) 
246           continue;
247
248         // If a terminator has more then two successors, for example SwitchInst,
249         // then it is possible that there are multiple edges from current block 
250         // to one exit block. 
251         if (std::distance(BlockTraits::child_begin(current),
252                           BlockTraits::child_end(current)) <= 2) {
253           ExitBlocks.push_back(*I);
254           continue;
255         }
256
257         // In case of multiple edges from current block to exit block, collect
258         // only one edge in ExitBlocks. Use switchExitBlocks to keep track of
259         // duplicate edges.
260         if (std::find(switchExitBlocks.begin(), switchExitBlocks.end(), *I) 
261             == switchExitBlocks.end()) {
262           switchExitBlocks.push_back(*I);
263           ExitBlocks.push_back(*I);
264         }
265       }
266     }
267   }
268
269   /// getLoopPreheader - If there is a preheader for this loop, return it.  A
270   /// loop has a preheader if there is only one edge to the header of the loop
271   /// from outside of the loop.  If this is the case, the block branching to the
272   /// header of the loop is the preheader node.
273   ///
274   /// This method returns null if there is no preheader for the loop.
275   ///
276   BlockT *getLoopPreheader() const {
277     // Keep track of nodes outside the loop branching to the header...
278     BlockT *Out = 0;
279
280     // Loop over the predecessors of the header node...
281     BlockT *Header = getHeader();
282     typedef GraphTraits<BlockT*> BlockTraits;
283     typedef GraphTraits<Inverse<BlockT*> > InvBlockTraits;
284     for (typename InvBlockTraits::ChildIteratorType PI =
285          InvBlockTraits::child_begin(Header),
286          PE = InvBlockTraits::child_end(Header); PI != PE; ++PI)
287       if (!contains(*PI)) {     // If the block is not in the loop...
288         if (Out && Out != *PI)
289           return 0;             // Multiple predecessors outside the loop
290         Out = *PI;
291       }
292
293     // Make sure there is only one exit out of the preheader.
294     assert(Out && "Header of loop has no predecessors from outside loop?");
295     typename BlockTraits::ChildIteratorType SI = BlockTraits::child_begin(Out);
296     ++SI;
297     if (SI != BlockTraits::child_end(Out))
298       return 0;  // Multiple exits from the block, must not be a preheader.
299
300     // If there is exactly one preheader, return it.  If there was zero, then
301     // Out is still null.
302     return Out;
303   }
304
305   /// getLoopLatch - If there is a latch block for this loop, return it.  A
306   /// latch block is the canonical backedge for a loop.  A loop header in normal
307   /// form has two edges into it: one from a preheader and one from a latch
308   /// block.
309   BlockT *getLoopLatch() const {
310     BlockT *Header = getHeader();
311     typedef GraphTraits<Inverse<BlockT*> > InvBlockTraits;
312     typename InvBlockTraits::ChildIteratorType PI =
313                                             InvBlockTraits::child_begin(Header);
314     typename InvBlockTraits::ChildIteratorType PE =
315                                               InvBlockTraits::child_end(Header);
316     if (PI == PE) return 0;  // no preds?
317
318     BlockT *Latch = 0;
319     if (contains(*PI))
320       Latch = *PI;
321     ++PI;
322     if (PI == PE) return 0;  // only one pred?
323
324     if (contains(*PI)) {
325       if (Latch) return 0;  // multiple backedges
326       Latch = *PI;
327     }
328     ++PI;
329     if (PI != PE) return 0;  // more than two preds
330
331     return Latch;
332   }
333   
334   /// getCanonicalInductionVariable - Check to see if the loop has a canonical
335   /// induction variable: an integer recurrence that starts at 0 and increments
336   /// by one each time through the loop.  If so, return the phi node that
337   /// corresponds to it.
338   ///
339   inline PHINode *getCanonicalInductionVariable() const {
340     BlockT *H = getHeader();
341
342     BlockT *Incoming = 0, *Backedge = 0;
343     typedef GraphTraits<Inverse<BlockT*> > InvBlockTraits;
344     typename InvBlockTraits::ChildIteratorType PI =
345                                                  InvBlockTraits::child_begin(H);
346     assert(PI != InvBlockTraits::child_end(H) &&
347            "Loop must have at least one backedge!");
348     Backedge = *PI++;
349     if (PI == InvBlockTraits::child_end(H)) return 0;  // dead loop
350     Incoming = *PI++;
351     if (PI != InvBlockTraits::child_end(H)) return 0;  // multiple backedges?
352
353     if (contains(Incoming)) {
354       if (contains(Backedge))
355         return 0;
356       std::swap(Incoming, Backedge);
357     } else if (!contains(Backedge))
358       return 0;
359
360     // Loop over all of the PHI nodes, looking for a canonical indvar.
361     for (typename BlockT::iterator I = H->begin(); isa<PHINode>(I); ++I) {
362       PHINode *PN = cast<PHINode>(I);
363       if (ConstantInt *CI =
364           dyn_cast<ConstantInt>(PN->getIncomingValueForBlock(Incoming)))
365         if (CI->isNullValue())
366           if (Instruction *Inc =
367               dyn_cast<Instruction>(PN->getIncomingValueForBlock(Backedge)))
368             if (Inc->getOpcode() == Instruction::Add &&
369                 Inc->getOperand(0) == PN)
370               if (ConstantInt *CI = dyn_cast<ConstantInt>(Inc->getOperand(1)))
371                 if (CI->equalsInt(1))
372                   return PN;
373     }
374     return 0;
375   }
376
377   /// getCanonicalInductionVariableIncrement - Return the LLVM value that holds
378   /// the canonical induction variable value for the "next" iteration of the
379   /// loop.  This always succeeds if getCanonicalInductionVariable succeeds.
380   ///
381   inline Instruction *getCanonicalInductionVariableIncrement() const {
382     if (PHINode *PN = getCanonicalInductionVariable()) {
383       bool P1InLoop = contains(PN->getIncomingBlock(1));
384       return cast<Instruction>(PN->getIncomingValue(P1InLoop));
385     }
386     return 0;
387   }
388
389   /// getTripCount - Return a loop-invariant LLVM value indicating the number of
390   /// times the loop will be executed.  Note that this means that the backedge
391   /// of the loop executes N-1 times.  If the trip-count cannot be determined,
392   /// this returns null.
393   ///
394   inline Value *getTripCount() const {
395     // Canonical loops will end with a 'cmp ne I, V', where I is the incremented
396     // canonical induction variable and V is the trip count of the loop.
397     Instruction *Inc = getCanonicalInductionVariableIncrement();
398     if (Inc == 0) return 0;
399     PHINode *IV = cast<PHINode>(Inc->getOperand(0));
400
401     BlockT *BackedgeBlock =
402             IV->getIncomingBlock(contains(IV->getIncomingBlock(1)));
403
404     if (BranchInst *BI = dyn_cast<BranchInst>(BackedgeBlock->getTerminator()))
405       if (BI->isConditional()) {
406         if (ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition())) {
407           if (ICI->getOperand(0) == Inc)
408             if (BI->getSuccessor(0) == getHeader()) {
409               if (ICI->getPredicate() == ICmpInst::ICMP_NE)
410                 return ICI->getOperand(1);
411             } else if (ICI->getPredicate() == ICmpInst::ICMP_EQ) {
412               return ICI->getOperand(1);
413             }
414         }
415       }
416
417     return 0;
418   }
419   
420   /// isLCSSAForm - Return true if the Loop is in LCSSA form
421   inline bool isLCSSAForm() const {
422     // Sort the blocks vector so that we can use binary search to do quick
423     // lookups.
424     SmallPtrSet<BlockT*, 16> LoopBBs(block_begin(), block_end());
425
426     for (block_iterator BI = block_begin(), E = block_end(); BI != E; ++BI) {
427       BlockT *BB = *BI;
428       for (typename BlockT::iterator I = BB->begin(), E = BB->end(); I != E;++I)
429         for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E;
430              ++UI) {
431           BlockT *UserBB = cast<Instruction>(*UI)->getParent();
432           if (PHINode *P = dyn_cast<PHINode>(*UI)) {
433             unsigned OperandNo = UI.getOperandNo();
434             UserBB = P->getIncomingBlock(OperandNo/2);
435           }
436
437           // Check the current block, as a fast-path.  Most values are used in
438           // the same block they are defined in.
439           if (UserBB != BB && !LoopBBs.count(UserBB))
440             return false;
441         }
442     }
443
444     return true;
445   }
446
447   //===--------------------------------------------------------------------===//
448   // APIs for updating loop information after changing the CFG
449   //
450
451   /// addBasicBlockToLoop - This method is used by other analyses to update loop
452   /// information.  NewBB is set to be a new member of the current loop.
453   /// Because of this, it is added as a member of all parent loops, and is added
454   /// to the specified LoopInfo object as being in the current basic block.  It
455   /// is not valid to replace the loop header with this method.
456   ///
457   void addBasicBlockToLoop(BlockT *NewBB, LoopInfoBase<BlockT> &LI);
458
459   /// replaceChildLoopWith - This is used when splitting loops up.  It replaces
460   /// the OldChild entry in our children list with NewChild, and updates the
461   /// parent pointer of OldChild to be null and the NewChild to be this loop.
462   /// This updates the loop depth of the new child.
463   void replaceChildLoopWith(LoopBase<BlockT> *OldChild,
464                             LoopBase<BlockT> *NewChild) {
465     assert(OldChild->ParentLoop == this && "This loop is already broken!");
466     assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!");
467     typename std::vector<LoopBase<BlockT>*>::iterator I =
468                           std::find(SubLoops.begin(), SubLoops.end(), OldChild);
469     assert(I != SubLoops.end() && "OldChild not in loop!");
470     *I = NewChild;
471     OldChild->ParentLoop = 0;
472     NewChild->ParentLoop = this;
473   }
474
475   /// addChildLoop - Add the specified loop to be a child of this loop.  This
476   /// updates the loop depth of the new child.
477   ///
478   void addChildLoop(LoopBase<BlockT> *NewChild) {
479     assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!");
480     NewChild->ParentLoop = this;
481     SubLoops.push_back(NewChild);
482   }
483
484   /// removeChildLoop - This removes the specified child from being a subloop of
485   /// this loop.  The loop is not deleted, as it will presumably be inserted
486   /// into another loop.
487   LoopBase<BlockT> *removeChildLoop(iterator I) {
488     assert(I != SubLoops.end() && "Cannot remove end iterator!");
489     LoopBase<BlockT> *Child = *I;
490     assert(Child->ParentLoop == this && "Child is not a child of this loop!");
491     SubLoops.erase(SubLoops.begin()+(I-begin()));
492     Child->ParentLoop = 0;
493     return Child;
494   }
495
496   /// addBlockEntry - This adds a basic block directly to the basic block list.
497   /// This should only be used by transformations that create new loops.  Other
498   /// transformations should use addBasicBlockToLoop.
499   void addBlockEntry(BlockT *BB) {
500     Blocks.push_back(BB);
501   }
502
503   /// moveToHeader - This method is used to move BB (which must be part of this
504   /// loop) to be the loop header of the loop (the block that dominates all
505   /// others).
506   void moveToHeader(BlockT *BB) {
507     if (Blocks[0] == BB) return;
508     for (unsigned i = 0; ; ++i) {
509       assert(i != Blocks.size() && "Loop does not contain BB!");
510       if (Blocks[i] == BB) {
511         Blocks[i] = Blocks[0];
512         Blocks[0] = BB;
513         return;
514       }
515     }
516   }
517
518   /// removeBlockFromLoop - This removes the specified basic block from the
519   /// current loop, updating the Blocks as appropriate.  This does not update
520   /// the mapping in the LoopInfo class.
521   void removeBlockFromLoop(BlockT *BB) {
522     RemoveFromVector(Blocks, BB);
523   }
524
525   /// verifyLoop - Verify loop structure
526   void verifyLoop() const {
527 #ifndef NDEBUG
528     assert (getHeader() && "Loop header is missing");
529     assert (getLoopPreheader() && "Loop preheader is missing");
530     assert (getLoopLatch() && "Loop latch is missing");
531     for (typename std::vector<LoopBase<BlockT>*>::const_iterator I =
532          SubLoops.begin(), E = SubLoops.end(); I != E; ++I)
533       (*I)->verifyLoop();
534 #endif
535   }
536
537   void print(std::ostream &OS, unsigned Depth = 0) const {
538     OS << std::string(Depth*2, ' ') << "Loop Containing: ";
539
540     for (unsigned i = 0; i < getBlocks().size(); ++i) {
541       if (i) OS << ",";
542       WriteAsOperand(OS, getBlocks()[i], false);
543     }
544     OS << "\n";
545
546     for (iterator I = begin(), E = end(); I != E; ++I)
547       (*I)->print(OS, Depth+2);
548   }
549   
550   void print(std::ostream *O, unsigned Depth = 0) const {
551     if (O) print(*O, Depth);
552   }
553   
554   void dump() const {
555     print(cerr);
556   }
557   
558 private:
559   friend class LoopInfoBase<BlockT>;
560   LoopBase(BlockT *BB) : ParentLoop(0) {
561     Blocks.push_back(BB);
562   }
563 };
564
565
566 //===----------------------------------------------------------------------===//
567 /// LoopInfo - This class builds and contains all of the top level loop
568 /// structures in the specified function.
569 ///
570
571 template<class BlockT>
572 class LoopInfoBase {
573   // BBMap - Mapping of basic blocks to the inner most loop they occur in
574   std::map<BlockT*, LoopBase<BlockT>*> BBMap;
575   std::vector<LoopBase<BlockT>*> TopLevelLoops;
576   friend class LoopBase<BlockT>;
577   
578 public:
579   LoopInfoBase() { }
580   ~LoopInfoBase() { releaseMemory(); }
581   
582   void releaseMemory() {
583     for (typename std::vector<LoopBase<BlockT>* >::iterator I =
584          TopLevelLoops.begin(), E = TopLevelLoops.end(); I != E; ++I)
585       delete *I;   // Delete all of the loops...
586
587     BBMap.clear();                           // Reset internal state of analysis
588     TopLevelLoops.clear();
589   }
590   
591   /// iterator/begin/end - The interface to the top-level loops in the current
592   /// function.
593   ///
594   typedef typename std::vector<LoopBase<BlockT>*>::const_iterator iterator;
595   iterator begin() const { return TopLevelLoops.begin(); }
596   iterator end() const { return TopLevelLoops.end(); }
597   
598   /// getLoopFor - Return the inner most loop that BB lives in.  If a basic
599   /// block is in no loop (for example the entry node), null is returned.
600   ///
601   LoopBase<BlockT> *getLoopFor(const BlockT *BB) const {
602     typename std::map<BlockT *, LoopBase<BlockT>*>::const_iterator I=
603       BBMap.find(const_cast<BlockT*>(BB));
604     return I != BBMap.end() ? I->second : 0;
605   }
606   
607   /// operator[] - same as getLoopFor...
608   ///
609   const LoopBase<BlockT> *operator[](const BlockT *BB) const {
610     return getLoopFor(BB);
611   }
612   
613   /// getLoopDepth - Return the loop nesting level of the specified block.  A
614   /// depth of 0 means the block is not inside any loop.
615   ///
616   unsigned getLoopDepth(const BlockT *BB) const {
617     const LoopBase<BlockT> *L = getLoopFor(BB);
618     return L ? L->getLoopDepth() : 0;
619   }
620
621   // isLoopHeader - True if the block is a loop header node
622   bool isLoopHeader(BlockT *BB) const {
623     const LoopBase<BlockT> *L = getLoopFor(BB);
624     return L && L->getHeader() == BB;
625   }
626   
627   /// removeLoop - This removes the specified top-level loop from this loop info
628   /// object.  The loop is not deleted, as it will presumably be inserted into
629   /// another loop.
630   LoopBase<BlockT> *removeLoop(iterator I) {
631     assert(I != end() && "Cannot remove end iterator!");
632     LoopBase<BlockT> *L = *I;
633     assert(L->getParentLoop() == 0 && "Not a top-level loop!");
634     TopLevelLoops.erase(TopLevelLoops.begin() + (I-begin()));
635     return L;
636   }
637   
638   /// changeLoopFor - Change the top-level loop that contains BB to the
639   /// specified loop.  This should be used by transformations that restructure
640   /// the loop hierarchy tree.
641   void changeLoopFor(BlockT *BB, LoopBase<BlockT> *L) {
642     LoopBase<BlockT> *&OldLoop = BBMap[BB];
643     assert(OldLoop && "Block not in a loop yet!");
644     OldLoop = L;
645   }
646   
647   /// changeTopLevelLoop - Replace the specified loop in the top-level loops
648   /// list with the indicated loop.
649   void changeTopLevelLoop(LoopBase<BlockT> *OldLoop,
650                           LoopBase<BlockT> *NewLoop) {
651     typename std::vector<LoopBase<BlockT>*>::iterator I =
652                  std::find(TopLevelLoops.begin(), TopLevelLoops.end(), OldLoop);
653     assert(I != TopLevelLoops.end() && "Old loop not at top level!");
654     *I = NewLoop;
655     assert(NewLoop->ParentLoop == 0 && OldLoop->ParentLoop == 0 &&
656            "Loops already embedded into a subloop!");
657   }
658   
659   /// addTopLevelLoop - This adds the specified loop to the collection of
660   /// top-level loops.
661   void addTopLevelLoop(LoopBase<BlockT> *New) {
662     assert(New->getParentLoop() == 0 && "Loop already in subloop!");
663     TopLevelLoops.push_back(New);
664   }
665   
666   /// removeBlock - This method completely removes BB from all data structures,
667   /// including all of the Loop objects it is nested in and our mapping from
668   /// BasicBlocks to loops.
669   void removeBlock(BlockT *BB) {
670     typename std::map<BlockT *, LoopBase<BlockT>*>::iterator I = BBMap.find(BB);
671     if (I != BBMap.end()) {
672       for (LoopBase<BlockT> *L = I->second; L; L = L->getParentLoop())
673         L->removeBlockFromLoop(BB);
674
675       BBMap.erase(I);
676     }
677   }
678   
679   // Internals
680   
681   static bool isNotAlreadyContainedIn(LoopBase<BlockT> *SubLoop,
682                                       LoopBase<BlockT> *ParentLoop) {
683     if (SubLoop == 0) return true;
684     if (SubLoop == ParentLoop) return false;
685     return isNotAlreadyContainedIn(SubLoop->getParentLoop(), ParentLoop);
686   }
687   
688   void Calculate(DominatorTreeBase<BlockT> &DT) {
689     BlockT *RootNode = DT.getRootNode()->getBlock();
690
691     for (df_iterator<BlockT*> NI = df_begin(RootNode),
692            NE = df_end(RootNode); NI != NE; ++NI)
693       if (LoopBase<BlockT> *L = ConsiderForLoop(*NI, DT))
694         TopLevelLoops.push_back(L);
695   }
696   
697   LoopBase<BlockT> *ConsiderForLoop(BlockT *BB, DominatorTreeBase<BlockT> &DT) {
698     if (BBMap.find(BB) != BBMap.end()) return 0;// Haven't processed this node?
699
700     std::vector<BlockT *> TodoStack;
701
702     // Scan the predecessors of BB, checking to see if BB dominates any of
703     // them.  This identifies backedges which target this node...
704     typedef GraphTraits<Inverse<BlockT*> > InvBlockTraits;
705     for (typename InvBlockTraits::ChildIteratorType I =
706          InvBlockTraits::child_begin(BB), E = InvBlockTraits::child_end(BB);
707          I != E; ++I)
708       if (DT.dominates(BB, *I))   // If BB dominates it's predecessor...
709         TodoStack.push_back(*I);
710
711     if (TodoStack.empty()) return 0;  // No backedges to this block...
712
713     // Create a new loop to represent this basic block...
714     LoopBase<BlockT> *L = new LoopBase<BlockT>(BB);
715     BBMap[BB] = L;
716
717     BlockT *EntryBlock = BB->getParent()->begin();
718
719     while (!TodoStack.empty()) {  // Process all the nodes in the loop
720       BlockT *X = TodoStack.back();
721       TodoStack.pop_back();
722
723       if (!L->contains(X) &&         // As of yet unprocessed??
724           DT.dominates(EntryBlock, X)) {   // X is reachable from entry block?
725         // Check to see if this block already belongs to a loop.  If this occurs
726         // then we have a case where a loop that is supposed to be a child of
727         // the current loop was processed before the current loop.  When this
728         // occurs, this child loop gets added to a part of the current loop,
729         // making it a sibling to the current loop.  We have to reparent this
730         // loop.
731         if (LoopBase<BlockT> *SubLoop =
732             const_cast<LoopBase<BlockT>*>(getLoopFor(X)))
733           if (SubLoop->getHeader() == X && isNotAlreadyContainedIn(SubLoop, L)){
734             // Remove the subloop from it's current parent...
735             assert(SubLoop->ParentLoop && SubLoop->ParentLoop != L);
736             LoopBase<BlockT> *SLP = SubLoop->ParentLoop;  // SubLoopParent
737             typename std::vector<LoopBase<BlockT>*>::iterator I =
738               std::find(SLP->SubLoops.begin(), SLP->SubLoops.end(), SubLoop);
739             assert(I != SLP->SubLoops.end() &&"SubLoop not a child of parent?");
740             SLP->SubLoops.erase(I);   // Remove from parent...
741
742             // Add the subloop to THIS loop...
743             SubLoop->ParentLoop = L;
744             L->SubLoops.push_back(SubLoop);
745           }
746
747         // Normal case, add the block to our loop...
748         L->Blocks.push_back(X);
749         
750         typedef GraphTraits<Inverse<BlockT*> > InvBlockTraits;
751         
752         // Add all of the predecessors of X to the end of the work stack...
753         TodoStack.insert(TodoStack.end(), InvBlockTraits::child_begin(X),
754                          InvBlockTraits::child_end(X));
755       }
756     }
757
758     // If there are any loops nested within this loop, create them now!
759     for (typename std::vector<BlockT*>::iterator I = L->Blocks.begin(),
760          E = L->Blocks.end(); I != E; ++I)
761       if (LoopBase<BlockT> *NewLoop = ConsiderForLoop(*I, DT)) {
762         L->SubLoops.push_back(NewLoop);
763         NewLoop->ParentLoop = L;
764       }
765
766     // Add the basic blocks that comprise this loop to the BBMap so that this
767     // loop can be found for them.
768     //
769     for (typename std::vector<BlockT*>::iterator I = L->Blocks.begin(),
770            E = L->Blocks.end(); I != E; ++I) {
771       typename std::map<BlockT*, LoopBase<BlockT>*>::iterator BBMI =
772                                                           BBMap.lower_bound(*I);
773       if (BBMI == BBMap.end() || BBMI->first != *I)  // Not in map yet...
774         BBMap.insert(BBMI, std::make_pair(*I, L));   // Must be at this level
775     }
776
777     // Now that we have a list of all of the child loops of this loop, check to
778     // see if any of them should actually be nested inside of each other.  We
779     // can accidentally pull loops our of their parents, so we must make sure to
780     // organize the loop nests correctly now.
781     {
782       std::map<BlockT*, LoopBase<BlockT>*> ContainingLoops;
783       for (unsigned i = 0; i != L->SubLoops.size(); ++i) {
784         LoopBase<BlockT> *Child = L->SubLoops[i];
785         assert(Child->getParentLoop() == L && "Not proper child loop?");
786
787         if (LoopBase<BlockT> *ContainingLoop =
788                                           ContainingLoops[Child->getHeader()]) {
789           // If there is already a loop which contains this loop, move this loop
790           // into the containing loop.
791           MoveSiblingLoopInto(Child, ContainingLoop);
792           --i;  // The loop got removed from the SubLoops list.
793         } else {
794           // This is currently considered to be a top-level loop.  Check to see
795           // if any of the contained blocks are loop headers for subloops we
796           // have already processed.
797           for (unsigned b = 0, e = Child->Blocks.size(); b != e; ++b) {
798             LoopBase<BlockT> *&BlockLoop = ContainingLoops[Child->Blocks[b]];
799             if (BlockLoop == 0) {   // Child block not processed yet...
800               BlockLoop = Child;
801             } else if (BlockLoop != Child) {
802               LoopBase<BlockT> *SubLoop = BlockLoop;
803               // Reparent all of the blocks which used to belong to BlockLoops
804               for (unsigned j = 0, e = SubLoop->Blocks.size(); j != e; ++j)
805                 ContainingLoops[SubLoop->Blocks[j]] = Child;
806
807               // There is already a loop which contains this block, that means
808               // that we should reparent the loop which the block is currently
809               // considered to belong to to be a child of this loop.
810               MoveSiblingLoopInto(SubLoop, Child);
811               --i;  // We just shrunk the SubLoops list.
812             }
813           }
814         }
815       }
816     }
817
818     return L;
819   }
820   
821   /// MoveSiblingLoopInto - This method moves the NewChild loop to live inside
822   /// of the NewParent Loop, instead of being a sibling of it.
823   void MoveSiblingLoopInto(LoopBase<BlockT> *NewChild,
824                            LoopBase<BlockT> *NewParent) {
825     LoopBase<BlockT> *OldParent = NewChild->getParentLoop();
826     assert(OldParent && OldParent == NewParent->getParentLoop() &&
827            NewChild != NewParent && "Not sibling loops!");
828
829     // Remove NewChild from being a child of OldParent
830     typename std::vector<LoopBase<BlockT>*>::iterator I =
831       std::find(OldParent->SubLoops.begin(), OldParent->SubLoops.end(),
832                 NewChild);
833     assert(I != OldParent->SubLoops.end() && "Parent fields incorrect??");
834     OldParent->SubLoops.erase(I);   // Remove from parent's subloops list
835     NewChild->ParentLoop = 0;
836
837     InsertLoopInto(NewChild, NewParent);
838   }
839   
840   /// InsertLoopInto - This inserts loop L into the specified parent loop.  If
841   /// the parent loop contains a loop which should contain L, the loop gets
842   /// inserted into L instead.
843   void InsertLoopInto(LoopBase<BlockT> *L, LoopBase<BlockT> *Parent) {
844     BlockT *LHeader = L->getHeader();
845     assert(Parent->contains(LHeader) &&
846            "This loop should not be inserted here!");
847
848     // Check to see if it belongs in a child loop...
849     for (unsigned i = 0, e = Parent->SubLoops.size(); i != e; ++i)
850       if (Parent->SubLoops[i]->contains(LHeader)) {
851         InsertLoopInto(L, Parent->SubLoops[i]);
852         return;
853       }
854
855     // If not, insert it here!
856     Parent->SubLoops.push_back(L);
857     L->ParentLoop = Parent;
858   }
859   
860   // Debugging
861   
862   void print(std::ostream &OS, const Module* ) const {
863     for (unsigned i = 0; i < TopLevelLoops.size(); ++i)
864       TopLevelLoops[i]->print(OS);
865   #if 0
866     for (std::map<BasicBlock*, Loop*>::const_iterator I = BBMap.begin(),
867            E = BBMap.end(); I != E; ++I)
868       OS << "BB '" << I->first->getName() << "' level = "
869          << I->second->getLoopDepth() << "\n";
870   #endif
871   }
872 };
873
874 class LoopInfo : public FunctionPass {
875   LoopInfoBase<BasicBlock>* LI;
876   friend class LoopBase<BasicBlock>;
877   
878 public:
879   static char ID; // Pass identification, replacement for typeid
880
881   LoopInfo() : FunctionPass(intptr_t(&ID)) {
882     LI = new LoopInfoBase<BasicBlock>();
883   }
884   
885   ~LoopInfo() { delete LI; }
886
887   LoopInfoBase<BasicBlock>& getBase() { return *LI; }
888
889   /// iterator/begin/end - The interface to the top-level loops in the current
890   /// function.
891   ///
892   typedef std::vector<Loop*>::const_iterator iterator;
893   inline iterator begin() const { return LI->begin(); }
894   inline iterator end() const { return LI->end(); }
895
896   /// getLoopFor - Return the inner most loop that BB lives in.  If a basic
897   /// block is in no loop (for example the entry node), null is returned.
898   ///
899   inline Loop *getLoopFor(const BasicBlock *BB) const {
900     return LI->getLoopFor(BB);
901   }
902
903   /// operator[] - same as getLoopFor...
904   ///
905   inline const Loop *operator[](const BasicBlock *BB) const {
906     return LI->getLoopFor(BB);
907   }
908
909   /// getLoopDepth - Return the loop nesting level of the specified block.  A
910   /// depth of 0 means the block is not inside any loop.
911   ///
912   inline unsigned getLoopDepth(const BasicBlock *BB) const {
913     return LI->getLoopDepth(BB);
914   }
915
916   // isLoopHeader - True if the block is a loop header node
917   inline bool isLoopHeader(BasicBlock *BB) const {
918     return LI->isLoopHeader(BB);
919   }
920
921   /// runOnFunction - Calculate the natural loop information.
922   ///
923   virtual bool runOnFunction(Function &F);
924
925   virtual void releaseMemory() { LI->releaseMemory(); }
926
927   virtual void print(std::ostream &O, const Module* M = 0) const {
928     if (O) LI->print(O, M);
929   }
930
931   virtual void getAnalysisUsage(AnalysisUsage &AU) const;
932
933   /// removeLoop - This removes the specified top-level loop from this loop info
934   /// object.  The loop is not deleted, as it will presumably be inserted into
935   /// another loop.
936   inline Loop *removeLoop(iterator I) { return LI->removeLoop(I); }
937
938   /// changeLoopFor - Change the top-level loop that contains BB to the
939   /// specified loop.  This should be used by transformations that restructure
940   /// the loop hierarchy tree.
941   inline void changeLoopFor(BasicBlock *BB, Loop *L) {
942     LI->changeLoopFor(BB, L);
943   }
944
945   /// changeTopLevelLoop - Replace the specified loop in the top-level loops
946   /// list with the indicated loop.
947   inline void changeTopLevelLoop(Loop *OldLoop, Loop *NewLoop) {
948     LI->changeTopLevelLoop(OldLoop, NewLoop);
949   }
950
951   /// addTopLevelLoop - This adds the specified loop to the collection of
952   /// top-level loops.
953   inline void addTopLevelLoop(Loop *New) {
954     LI->addTopLevelLoop(New);
955   }
956
957   /// removeBlock - This method completely removes BB from all data structures,
958   /// including all of the Loop objects it is nested in and our mapping from
959   /// BasicBlocks to loops.
960   void removeBlock(BasicBlock *BB) {
961     LI->removeBlock(BB);
962   }
963 };
964
965
966 // Allow clients to walk the list of nested loops...
967 template <> struct GraphTraits<const Loop*> {
968   typedef const Loop NodeType;
969   typedef std::vector<Loop*>::const_iterator ChildIteratorType;
970
971   static NodeType *getEntryNode(const Loop *L) { return L; }
972   static inline ChildIteratorType child_begin(NodeType *N) {
973     return N->begin();
974   }
975   static inline ChildIteratorType child_end(NodeType *N) {
976     return N->end();
977   }
978 };
979
980 template <> struct GraphTraits<Loop*> {
981   typedef Loop NodeType;
982   typedef std::vector<Loop*>::const_iterator ChildIteratorType;
983
984   static NodeType *getEntryNode(Loop *L) { return L; }
985   static inline ChildIteratorType child_begin(NodeType *N) {
986     return N->begin();
987   }
988   static inline ChildIteratorType child_end(NodeType *N) {
989     return N->end();
990   }
991 };
992
993 template<class BlockT>
994 void LoopBase<BlockT>::addBasicBlockToLoop(BlockT *NewBB,
995                                            LoopInfoBase<BlockT> &LIB) {
996   assert((Blocks.empty() || LIB[getHeader()] == this) &&
997          "Incorrect LI specified for this loop!");
998   assert(NewBB && "Cannot add a null basic block to the loop!");
999   assert(LIB[NewBB] == 0 && "BasicBlock already in the loop!");
1000
1001   // Add the loop mapping to the LoopInfo object...
1002   LIB.BBMap[NewBB] = this;
1003
1004   // Add the basic block to this loop and all parent loops...
1005   LoopBase<BlockT> *L = this;
1006   while (L) {
1007     L->Blocks.push_back(NewBB);
1008     L = L->getParentLoop();
1009   }
1010 }
1011
1012 } // End llvm namespace
1013
1014 // Make sure that any clients of this file link in LoopInfo.cpp
1015 FORCE_DEFINING_FILE_TO_BE_LINKED(LoopInfo)
1016
1017 #endif