Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 1 | //===- LoopInfo.cpp - Natural Loop Calculator -------------------------------=// |
| 2 | // |
| 3 | // This file defines the LoopInfo class that is used to identify natural loops |
| 4 | // and determine the loop depth of various nodes of the CFG. Note that the |
| 5 | // loops identified may actually be several natural loops that share the same |
| 6 | // header node... not just a single natural loop. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "llvm/Analysis/LoopInfo.h" |
| 11 | #include "llvm/Analysis/Dominators.h" |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 12 | #include "llvm/BasicBlock.h" |
Chris Lattner | cee8f9a | 2001-11-27 00:03:19 +0000 | [diff] [blame] | 13 | #include "Support/DepthFirstIterator.h" |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 14 | #include <algorithm> |
| 15 | |
Chris Lattner | 93193f8 | 2002-01-31 00:42:27 +0000 | [diff] [blame^] | 16 | AnalysisID cfg::LoopInfo::ID(AnalysisID::create<cfg::LoopInfo>()); |
| 17 | |
| 18 | //===----------------------------------------------------------------------===// |
| 19 | // cfg::Loop implementation |
| 20 | // |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 21 | bool cfg::Loop::contains(const BasicBlock *BB) const { |
| 22 | return find(Blocks.begin(), Blocks.end(), BB) != Blocks.end(); |
| 23 | } |
| 24 | |
Chris Lattner | 93193f8 | 2002-01-31 00:42:27 +0000 | [diff] [blame^] | 25 | |
| 26 | //===----------------------------------------------------------------------===// |
| 27 | // cfg::LoopInfo implementation |
| 28 | // |
| 29 | bool cfg::LoopInfo::runOnMethod(Method *M) { |
| 30 | BBMap.clear(); // Reset internal state of analysis |
| 31 | TopLevelLoops.clear(); |
| 32 | Calculate(getAnalysis<DominatorSet>()); // Update |
| 33 | return false; |
| 34 | } |
| 35 | |
| 36 | void cfg::LoopInfo::Calculate(const DominatorSet &DS) { |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 37 | const BasicBlock *RootNode = DS.getRoot(); |
| 38 | |
| 39 | for (df_iterator<const BasicBlock*> NI = df_begin(RootNode), |
| 40 | NE = df_end(RootNode); NI != NE; ++NI) |
| 41 | if (Loop *L = ConsiderForLoop(*NI, DS)) |
| 42 | TopLevelLoops.push_back(L); |
| 43 | |
| 44 | for (unsigned i = 0; i < TopLevelLoops.size(); ++i) |
| 45 | TopLevelLoops[i]->setLoopDepth(1); |
| 46 | } |
| 47 | |
Chris Lattner | 93193f8 | 2002-01-31 00:42:27 +0000 | [diff] [blame^] | 48 | void cfg::LoopInfo::getAnalysisUsageInfo(Pass::AnalysisSet &Required, |
| 49 | Pass::AnalysisSet &Destroyed, |
| 50 | Pass::AnalysisSet &Provided) { |
| 51 | Required.push_back(DominatorSet::ID); |
| 52 | Provided.push_back(ID); |
| 53 | } |
| 54 | |
| 55 | |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 56 | cfg::Loop *cfg::LoopInfo::ConsiderForLoop(const BasicBlock *BB, |
| 57 | const DominatorSet &DS) { |
| 58 | if (BBMap.find(BB) != BBMap.end()) return 0; // Havn't processed this node? |
| 59 | |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 60 | std::vector<const BasicBlock *> TodoStack; |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 61 | |
| 62 | // Scan the predecessors of BB, checking to see if BB dominates any of |
| 63 | // them. |
| 64 | for (BasicBlock::pred_const_iterator I = BB->pred_begin(), |
| 65 | E = BB->pred_end(); I != E; ++I) |
| 66 | if (DS.dominates(BB, *I)) // If BB dominates it's predecessor... |
| 67 | TodoStack.push_back(*I); |
| 68 | |
| 69 | if (TodoStack.empty()) return 0; // Doesn't dominate any predecessors... |
| 70 | |
| 71 | // Create a new loop to represent this basic block... |
| 72 | Loop *L = new Loop(BB); |
| 73 | BBMap[BB] = L; |
| 74 | |
| 75 | while (!TodoStack.empty()) { // Process all the nodes in the loop |
| 76 | const BasicBlock *X = TodoStack.back(); |
| 77 | TodoStack.pop_back(); |
| 78 | |
| 79 | if (!L->contains(X)) { // As of yet unprocessed?? |
| 80 | L->Blocks.push_back(X); |
| 81 | |
| 82 | // Add all of the predecessors of X to the end of the work stack... |
| 83 | TodoStack.insert(TodoStack.end(), X->pred_begin(), X->pred_end()); |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | // Add the basic blocks that comprise this loop to the BBMap so that this |
| 88 | // loop can be found for them. Also check subsidary basic blocks to see if |
| 89 | // they start subloops of their own. |
| 90 | // |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 91 | for (std::vector<const BasicBlock*>::reverse_iterator I = L->Blocks.rbegin(), |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 92 | E = L->Blocks.rend(); I != E; ++I) { |
| 93 | |
| 94 | // Check to see if this block starts a new loop |
| 95 | if (Loop *NewLoop = ConsiderForLoop(*I, DS)) { |
| 96 | L->SubLoops.push_back(NewLoop); |
| 97 | NewLoop->ParentLoop = L; |
| 98 | } |
| 99 | |
| 100 | if (BBMap.find(*I) == BBMap.end()) |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 101 | BBMap.insert(std::make_pair(*I, L)); |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | return L; |
| 105 | } |