blob: 244db3064967b7069c78b35bcb948dcd589613e2 [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 Lattner1b7f7dc2002-04-28 16:21:30 +000016AnalysisID LoopInfo::ID(AnalysisID::create<LoopInfo>());
Chris Lattner93193f82002-01-31 00:42:27 +000017
18//===----------------------------------------------------------------------===//
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000019// Loop implementation
Chris Lattner93193f82002-01-31 00:42:27 +000020//
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000021bool Loop::contains(BasicBlock *BB) const {
Chris Lattner0bbe58f2001-11-26 18:41:20 +000022 return find(Blocks.begin(), Blocks.end(), BB) != Blocks.end();
23}
24
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000025void LoopInfo::releaseMemory() {
Chris Lattner918c4ec2002-04-09 05:43:19 +000026 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//===----------------------------------------------------------------------===//
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000036// LoopInfo implementation
Chris Lattner93193f82002-01-31 00:42:27 +000037//
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000038bool 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
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000044void LoopInfo::Calculate(const DominatorSet &DS) {
Chris Lattnera298d272002-04-28 00:15:57 +000045 BasicBlock *RootNode = DS.getRoot();
Chris Lattner0bbe58f2001-11-26 18:41:20 +000046
Chris Lattnera298d272002-04-28 00:15:57 +000047 for (df_iterator<BasicBlock*> NI = df_begin(RootNode),
Chris Lattner0bbe58f2001-11-26 18:41:20 +000048 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 Lattner1b7f7dc2002-04-28 16:21:30 +000056void LoopInfo::getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnerf57b8452002-04-27 06:56:12 +000057 AU.setPreservesAll();
58 AU.addRequired(DominatorSet::ID);
59 AU.addProvided(ID);
Chris Lattner93193f82002-01-31 00:42:27 +000060}
61
62
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000063Loop *LoopInfo::ConsiderForLoop(BasicBlock *BB, const DominatorSet &DS) {
Chris Lattner0bbe58f2001-11-26 18:41:20 +000064 if (BBMap.find(BB) != BBMap.end()) return 0; // Havn't processed this node?
65
Chris Lattnera298d272002-04-28 00:15:57 +000066 std::vector<BasicBlock *> TodoStack;
Chris Lattner0bbe58f2001-11-26 18:41:20 +000067
68 // Scan the predecessors of BB, checking to see if BB dominates any of
69 // them.
Chris Lattnera298d272002-04-28 00:15:57 +000070 for (pred_iterator I = pred_begin(BB), E = pred_end(BB); I != E; ++I)
Chris Lattner0bbe58f2001-11-26 18:41:20 +000071 if (DS.dominates(BB, *I)) // If BB dominates it's predecessor...
72 TodoStack.push_back(*I);
73
74 if (TodoStack.empty()) return 0; // Doesn't dominate any predecessors...
75
76 // Create a new loop to represent this basic block...
77 Loop *L = new Loop(BB);
78 BBMap[BB] = L;
79
80 while (!TodoStack.empty()) { // Process all the nodes in the loop
Chris Lattnera298d272002-04-28 00:15:57 +000081 BasicBlock *X = TodoStack.back();
Chris Lattner0bbe58f2001-11-26 18:41:20 +000082 TodoStack.pop_back();
83
84 if (!L->contains(X)) { // As of yet unprocessed??
85 L->Blocks.push_back(X);
86
87 // Add all of the predecessors of X to the end of the work stack...
Chris Lattner455889a2002-02-12 22:39:50 +000088 TodoStack.insert(TodoStack.end(), pred_begin(X), pred_end(X));
Chris Lattner0bbe58f2001-11-26 18:41:20 +000089 }
90 }
91
92 // Add the basic blocks that comprise this loop to the BBMap so that this
93 // loop can be found for them. Also check subsidary basic blocks to see if
94 // they start subloops of their own.
95 //
Chris Lattnera298d272002-04-28 00:15:57 +000096 for (std::vector<BasicBlock*>::reverse_iterator I = L->Blocks.rbegin(),
Chris Lattner0bbe58f2001-11-26 18:41:20 +000097 E = L->Blocks.rend(); I != E; ++I) {
98
99 // Check to see if this block starts a new loop
100 if (Loop *NewLoop = ConsiderForLoop(*I, DS)) {
101 L->SubLoops.push_back(NewLoop);
102 NewLoop->ParentLoop = L;
103 }
104
105 if (BBMap.find(*I) == BBMap.end())
Chris Lattner697954c2002-01-20 22:54:45 +0000106 BBMap.insert(std::make_pair(*I, L));
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000107 }
108
109 return L;
110}