blob: a2f2ccec5dc0f050e93246951d1355f8c2249628 [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 Lattnera59cbb22002-07-27 01:12:17 +000013#include "llvm/Assembly/Writer.h"
Chris Lattnercee8f9a2001-11-27 00:03:19 +000014#include "Support/DepthFirstIterator.h"
Chris Lattner0bbe58f2001-11-26 18:41:20 +000015#include <algorithm>
16
Chris Lattner1e435162002-07-26 21:12:44 +000017static RegisterAnalysis<LoopInfo>
Chris Lattner17689df2002-07-30 16:27:52 +000018X("loops", "Natural Loop Construction", 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 Lattnera59cbb22002-07-27 01:12:17 +000027void Loop::print(std::ostream &OS) const {
28 OS << std::string(getLoopDepth()*2, ' ') << "Loop Containing: ";
29
30 for (unsigned i = 0; i < getBlocks().size(); ++i) {
31 if (i) OS << ",";
32 WriteAsOperand(OS, (const Value*)getBlocks()[i]);
33 }
34 OS << "\n";
35
36 std::copy(getSubLoops().begin(), getSubLoops().end(),
37 std::ostream_iterator<const Loop*>(OS, "\n"));
38}
39
40//===----------------------------------------------------------------------===//
41// LoopInfo implementation
42//
43
44bool LoopInfo::runOnFunction(Function &) {
45 releaseMemory();
46 Calculate(getAnalysis<DominatorSet>()); // Update
47 return false;
48}
49
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000050void LoopInfo::releaseMemory() {
Chris Lattner918c4ec2002-04-09 05:43:19 +000051 for (std::vector<Loop*>::iterator I = TopLevelLoops.begin(),
52 E = TopLevelLoops.end(); I != E; ++I)
53 delete *I; // Delete all of the loops...
54
55 BBMap.clear(); // Reset internal state of analysis
56 TopLevelLoops.clear();
57}
58
Chris Lattner93193f82002-01-31 00:42:27 +000059
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000060void LoopInfo::Calculate(const DominatorSet &DS) {
Chris Lattnera298d272002-04-28 00:15:57 +000061 BasicBlock *RootNode = DS.getRoot();
Chris Lattner0bbe58f2001-11-26 18:41:20 +000062
Chris Lattnera298d272002-04-28 00:15:57 +000063 for (df_iterator<BasicBlock*> NI = df_begin(RootNode),
Chris Lattner0bbe58f2001-11-26 18:41:20 +000064 NE = df_end(RootNode); NI != NE; ++NI)
65 if (Loop *L = ConsiderForLoop(*NI, DS))
66 TopLevelLoops.push_back(L);
67
68 for (unsigned i = 0; i < TopLevelLoops.size(); ++i)
69 TopLevelLoops[i]->setLoopDepth(1);
70}
71
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000072void LoopInfo::getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnerf57b8452002-04-27 06:56:12 +000073 AU.setPreservesAll();
Chris Lattnerdd5b4952002-08-08 19:01:28 +000074 AU.addRequired<DominatorSet>();
Chris Lattner93193f82002-01-31 00:42:27 +000075}
76
Chris Lattnera59cbb22002-07-27 01:12:17 +000077void LoopInfo::print(std::ostream &OS) const {
78 std::copy(getTopLevelLoops().begin(), getTopLevelLoops().end(),
79 std::ostream_iterator<const Loop*>(OS, "\n"));
80}
Chris Lattner93193f82002-01-31 00:42:27 +000081
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000082Loop *LoopInfo::ConsiderForLoop(BasicBlock *BB, const DominatorSet &DS) {
Chris Lattner0bbe58f2001-11-26 18:41:20 +000083 if (BBMap.find(BB) != BBMap.end()) return 0; // Havn't processed this node?
84
Chris Lattnera298d272002-04-28 00:15:57 +000085 std::vector<BasicBlock *> TodoStack;
Chris Lattner0bbe58f2001-11-26 18:41:20 +000086
87 // Scan the predecessors of BB, checking to see if BB dominates any of
88 // them.
Chris Lattnera298d272002-04-28 00:15:57 +000089 for (pred_iterator I = pred_begin(BB), E = pred_end(BB); I != E; ++I)
Chris Lattner0bbe58f2001-11-26 18:41:20 +000090 if (DS.dominates(BB, *I)) // If BB dominates it's predecessor...
91 TodoStack.push_back(*I);
92
93 if (TodoStack.empty()) return 0; // Doesn't dominate any predecessors...
94
95 // Create a new loop to represent this basic block...
96 Loop *L = new Loop(BB);
97 BBMap[BB] = L;
98
99 while (!TodoStack.empty()) { // Process all the nodes in the loop
Chris Lattnera298d272002-04-28 00:15:57 +0000100 BasicBlock *X = TodoStack.back();
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000101 TodoStack.pop_back();
102
103 if (!L->contains(X)) { // As of yet unprocessed??
104 L->Blocks.push_back(X);
105
106 // Add all of the predecessors of X to the end of the work stack...
Chris Lattner455889a2002-02-12 22:39:50 +0000107 TodoStack.insert(TodoStack.end(), pred_begin(X), pred_end(X));
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000108 }
109 }
110
111 // Add the basic blocks that comprise this loop to the BBMap so that this
112 // loop can be found for them. Also check subsidary basic blocks to see if
113 // they start subloops of their own.
114 //
Chris Lattnera298d272002-04-28 00:15:57 +0000115 for (std::vector<BasicBlock*>::reverse_iterator I = L->Blocks.rbegin(),
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000116 E = L->Blocks.rend(); I != E; ++I) {
117
118 // Check to see if this block starts a new loop
119 if (Loop *NewLoop = ConsiderForLoop(*I, DS)) {
120 L->SubLoops.push_back(NewLoop);
121 NewLoop->ParentLoop = L;
122 }
123
124 if (BBMap.find(*I) == BBMap.end())
Chris Lattner697954c2002-01-20 22:54:45 +0000125 BBMap.insert(std::make_pair(*I, L));
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000126 }
127
128 return L;
129}