blob: c53cc9038c90186fa03de2b9bf7c99a50d56e54b [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 Lattner1e435162002-07-26 21:12:44 +000016static RegisterAnalysis<LoopInfo>
17X("loops", "Natural Loop Construction");
Chris Lattner07a228d2002-05-06 19:32:07 +000018AnalysisID LoopInfo::ID(AnalysisID::create<LoopInfo>(), true);
Chris Lattner93193f82002-01-31 00:42:27 +000019
20//===----------------------------------------------------------------------===//
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000021// Loop implementation
Chris Lattner93193f82002-01-31 00:42:27 +000022//
Chris Lattner0f995552002-06-03 22:10:52 +000023bool Loop::contains(const BasicBlock *BB) const {
Chris Lattner0bbe58f2001-11-26 18:41:20 +000024 return find(Blocks.begin(), Blocks.end(), BB) != Blocks.end();
25}
26
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000027void LoopInfo::releaseMemory() {
Chris Lattner918c4ec2002-04-09 05:43:19 +000028 for (std::vector<Loop*>::iterator I = TopLevelLoops.begin(),
29 E = TopLevelLoops.end(); I != E; ++I)
30 delete *I; // Delete all of the loops...
31
32 BBMap.clear(); // Reset internal state of analysis
33 TopLevelLoops.clear();
34}
35
Chris Lattner93193f82002-01-31 00:42:27 +000036
37//===----------------------------------------------------------------------===//
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000038// LoopInfo implementation
Chris Lattner93193f82002-01-31 00:42:27 +000039//
Chris Lattner7e708292002-06-25 16:13:24 +000040bool LoopInfo::runOnFunction(Function &) {
Chris Lattner918c4ec2002-04-09 05:43:19 +000041 releaseMemory();
Chris Lattner93193f82002-01-31 00:42:27 +000042 Calculate(getAnalysis<DominatorSet>()); // Update
43 return false;
44}
45
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000046void LoopInfo::Calculate(const DominatorSet &DS) {
Chris Lattnera298d272002-04-28 00:15:57 +000047 BasicBlock *RootNode = DS.getRoot();
Chris Lattner0bbe58f2001-11-26 18:41:20 +000048
Chris Lattnera298d272002-04-28 00:15:57 +000049 for (df_iterator<BasicBlock*> NI = df_begin(RootNode),
Chris Lattner0bbe58f2001-11-26 18:41:20 +000050 NE = df_end(RootNode); NI != NE; ++NI)
51 if (Loop *L = ConsiderForLoop(*NI, DS))
52 TopLevelLoops.push_back(L);
53
54 for (unsigned i = 0; i < TopLevelLoops.size(); ++i)
55 TopLevelLoops[i]->setLoopDepth(1);
56}
57
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000058void LoopInfo::getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnerf57b8452002-04-27 06:56:12 +000059 AU.setPreservesAll();
60 AU.addRequired(DominatorSet::ID);
61 AU.addProvided(ID);
Chris Lattner93193f82002-01-31 00:42:27 +000062}
63
64
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000065Loop *LoopInfo::ConsiderForLoop(BasicBlock *BB, const DominatorSet &DS) {
Chris Lattner0bbe58f2001-11-26 18:41:20 +000066 if (BBMap.find(BB) != BBMap.end()) return 0; // Havn't processed this node?
67
Chris Lattnera298d272002-04-28 00:15:57 +000068 std::vector<BasicBlock *> TodoStack;
Chris Lattner0bbe58f2001-11-26 18:41:20 +000069
70 // Scan the predecessors of BB, checking to see if BB dominates any of
71 // them.
Chris Lattnera298d272002-04-28 00:15:57 +000072 for (pred_iterator I = pred_begin(BB), E = pred_end(BB); I != E; ++I)
Chris Lattner0bbe58f2001-11-26 18:41:20 +000073 if (DS.dominates(BB, *I)) // If BB dominates it's predecessor...
74 TodoStack.push_back(*I);
75
76 if (TodoStack.empty()) return 0; // Doesn't dominate any predecessors...
77
78 // Create a new loop to represent this basic block...
79 Loop *L = new Loop(BB);
80 BBMap[BB] = L;
81
82 while (!TodoStack.empty()) { // Process all the nodes in the loop
Chris Lattnera298d272002-04-28 00:15:57 +000083 BasicBlock *X = TodoStack.back();
Chris Lattner0bbe58f2001-11-26 18:41:20 +000084 TodoStack.pop_back();
85
86 if (!L->contains(X)) { // As of yet unprocessed??
87 L->Blocks.push_back(X);
88
89 // Add all of the predecessors of X to the end of the work stack...
Chris Lattner455889a2002-02-12 22:39:50 +000090 TodoStack.insert(TodoStack.end(), pred_begin(X), pred_end(X));
Chris Lattner0bbe58f2001-11-26 18:41:20 +000091 }
92 }
93
94 // Add the basic blocks that comprise this loop to the BBMap so that this
95 // loop can be found for them. Also check subsidary basic blocks to see if
96 // they start subloops of their own.
97 //
Chris Lattnera298d272002-04-28 00:15:57 +000098 for (std::vector<BasicBlock*>::reverse_iterator I = L->Blocks.rbegin(),
Chris Lattner0bbe58f2001-11-26 18:41:20 +000099 E = L->Blocks.rend(); I != E; ++I) {
100
101 // Check to see if this block starts a new loop
102 if (Loop *NewLoop = ConsiderForLoop(*I, DS)) {
103 L->SubLoops.push_back(NewLoop);
104 NewLoop->ParentLoop = L;
105 }
106
107 if (BBMap.find(*I) == BBMap.end())
Chris Lattner697954c2002-01-20 22:54:45 +0000108 BBMap.insert(std::make_pair(*I, L));
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000109 }
110
111 return L;
112}