blob: c34aef7b9c77703433a1d11fd51608f89113d571 [file] [log] [blame]
Chris Lattner0bbe58f2001-11-26 18:41:20 +00001//===- 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 Lattner221d6882002-02-12 21:07:25 +000012#include "llvm/Support/CFG.h"
Chris Lattnercee8f9a2001-11-27 00:03:19 +000013#include "Support/DepthFirstIterator.h"
Chris Lattner0bbe58f2001-11-26 18:41:20 +000014#include <algorithm>
15
Chris Lattner93193f82002-01-31 00:42:27 +000016AnalysisID cfg::LoopInfo::ID(AnalysisID::create<cfg::LoopInfo>());
17
18//===----------------------------------------------------------------------===//
19// cfg::Loop implementation
20//
Chris Lattner0bbe58f2001-11-26 18:41:20 +000021bool cfg::Loop::contains(const BasicBlock *BB) const {
22 return find(Blocks.begin(), Blocks.end(), BB) != Blocks.end();
23}
24
Chris Lattner918c4ec2002-04-09 05:43:19 +000025void cfg::LoopInfo::releaseMemory() {
26 for (std::vector<Loop*>::iterator I = TopLevelLoops.begin(),
27 E = TopLevelLoops.end(); I != E; ++I)
28 delete *I; // Delete all of the loops...
29
30 BBMap.clear(); // Reset internal state of analysis
31 TopLevelLoops.clear();
32}
33
Chris Lattner93193f82002-01-31 00:42:27 +000034
35//===----------------------------------------------------------------------===//
36// cfg::LoopInfo implementation
37//
Chris Lattnerf57b8452002-04-27 06:56:12 +000038bool cfg::LoopInfo::runOnFunction(Function *F) {
Chris Lattner918c4ec2002-04-09 05:43:19 +000039 releaseMemory();
Chris Lattner93193f82002-01-31 00:42:27 +000040 Calculate(getAnalysis<DominatorSet>()); // Update
41 return false;
42}
43
44void cfg::LoopInfo::Calculate(const DominatorSet &DS) {
Chris Lattner0bbe58f2001-11-26 18:41:20 +000045 const BasicBlock *RootNode = DS.getRoot();
46
47 for (df_iterator<const BasicBlock*> NI = df_begin(RootNode),
48 NE = df_end(RootNode); NI != NE; ++NI)
49 if (Loop *L = ConsiderForLoop(*NI, DS))
50 TopLevelLoops.push_back(L);
51
52 for (unsigned i = 0; i < TopLevelLoops.size(); ++i)
53 TopLevelLoops[i]->setLoopDepth(1);
54}
55
Chris Lattnerf57b8452002-04-27 06:56:12 +000056void cfg::LoopInfo::getAnalysisUsage(AnalysisUsage &AU) const {
57 AU.setPreservesAll();
58 AU.addRequired(DominatorSet::ID);
59 AU.addProvided(ID);
Chris Lattner93193f82002-01-31 00:42:27 +000060}
61
62
Chris Lattner0bbe58f2001-11-26 18:41:20 +000063cfg::Loop *cfg::LoopInfo::ConsiderForLoop(const BasicBlock *BB,
64 const DominatorSet &DS) {
65 if (BBMap.find(BB) != BBMap.end()) return 0; // Havn't processed this node?
66
Chris Lattner697954c2002-01-20 22:54:45 +000067 std::vector<const BasicBlock *> TodoStack;
Chris Lattner0bbe58f2001-11-26 18:41:20 +000068
69 // Scan the predecessors of BB, checking to see if BB dominates any of
70 // them.
Chris Lattner455889a2002-02-12 22:39:50 +000071 for (pred_const_iterator I = pred_begin(BB), E = pred_end(BB); I != E; ++I)
Chris Lattner0bbe58f2001-11-26 18:41:20 +000072 if (DS.dominates(BB, *I)) // If BB dominates it's predecessor...
73 TodoStack.push_back(*I);
74
75 if (TodoStack.empty()) return 0; // Doesn't dominate any predecessors...
76
77 // Create a new loop to represent this basic block...
78 Loop *L = new Loop(BB);
79 BBMap[BB] = L;
80
81 while (!TodoStack.empty()) { // Process all the nodes in the loop
82 const BasicBlock *X = TodoStack.back();
83 TodoStack.pop_back();
84
85 if (!L->contains(X)) { // As of yet unprocessed??
86 L->Blocks.push_back(X);
87
88 // Add all of the predecessors of X to the end of the work stack...
Chris Lattner455889a2002-02-12 22:39:50 +000089 TodoStack.insert(TodoStack.end(), pred_begin(X), pred_end(X));
Chris Lattner0bbe58f2001-11-26 18:41:20 +000090 }
91 }
92
93 // Add the basic blocks that comprise this loop to the BBMap so that this
94 // loop can be found for them. Also check subsidary basic blocks to see if
95 // they start subloops of their own.
96 //
Chris Lattner697954c2002-01-20 22:54:45 +000097 for (std::vector<const BasicBlock*>::reverse_iterator I = L->Blocks.rbegin(),
Chris Lattner0bbe58f2001-11-26 18:41:20 +000098 E = L->Blocks.rend(); I != E; ++I) {
99
100 // Check to see if this block starts a new loop
101 if (Loop *NewLoop = ConsiderForLoop(*I, DS)) {
102 L->SubLoops.push_back(NewLoop);
103 NewLoop->ParentLoop = L;
104 }
105
106 if (BBMap.find(*I) == BBMap.end())
Chris Lattner697954c2002-01-20 22:54:45 +0000107 BBMap.insert(std::make_pair(*I, L));
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000108 }
109
110 return L;
111}