blob: 002e55362452a7da852adfee2137af56decbf606 [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
Misha Brukman6b290a52002-10-11 05:31:10 +000027bool Loop::isLoopExit(const BasicBlock *BB) const {
28 for (BasicBlock::succ_const_iterator SI = succ_begin(BB), SE = succ_end(BB);
29 SI != SE; ++SI) {
30 if (! contains(*SI))
31 return true;
32 }
33 return false;
34}
35
36unsigned Loop::getNumBackEdges() const {
37 unsigned numBackEdges = 0;
38 BasicBlock *header = Blocks.front();
39
40 for (std::vector<BasicBlock*>::const_iterator i = Blocks.begin(), e = Blocks.end();
41 i != e; ++i) {
42 for (BasicBlock::succ_iterator Successor = succ_begin(*i), SEnd = succ_end(*i);
43 Successor != SEnd; ++Successor) {
44 if (header == *Successor)
45 ++numBackEdges;
46 }
47 }
48 return numBackEdges;
49}
50
Chris Lattnera59cbb22002-07-27 01:12:17 +000051void Loop::print(std::ostream &OS) const {
52 OS << std::string(getLoopDepth()*2, ' ') << "Loop Containing: ";
53
54 for (unsigned i = 0; i < getBlocks().size(); ++i) {
55 if (i) OS << ",";
56 WriteAsOperand(OS, (const Value*)getBlocks()[i]);
57 }
58 OS << "\n";
59
Chris Lattnerb1f8aeb2002-09-29 21:43:04 +000060 for (unsigned i = 0, e = getSubLoops().size(); i != e; ++i)
61 getSubLoops()[i]->print(OS);
Chris Lattnera59cbb22002-07-27 01:12:17 +000062}
63
64//===----------------------------------------------------------------------===//
65// LoopInfo implementation
66//
Anand Shuklae0b6b782002-08-26 16:45:19 +000067void LoopInfo::stub() {}
Chris Lattnera59cbb22002-07-27 01:12:17 +000068
69bool LoopInfo::runOnFunction(Function &) {
70 releaseMemory();
71 Calculate(getAnalysis<DominatorSet>()); // Update
72 return false;
73}
74
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000075void LoopInfo::releaseMemory() {
Chris Lattner918c4ec2002-04-09 05:43:19 +000076 for (std::vector<Loop*>::iterator I = TopLevelLoops.begin(),
77 E = TopLevelLoops.end(); I != E; ++I)
78 delete *I; // Delete all of the loops...
79
80 BBMap.clear(); // Reset internal state of analysis
81 TopLevelLoops.clear();
82}
83
Chris Lattner93193f82002-01-31 00:42:27 +000084
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000085void LoopInfo::Calculate(const DominatorSet &DS) {
Chris Lattnera298d272002-04-28 00:15:57 +000086 BasicBlock *RootNode = DS.getRoot();
Chris Lattner0bbe58f2001-11-26 18:41:20 +000087
Chris Lattnera298d272002-04-28 00:15:57 +000088 for (df_iterator<BasicBlock*> NI = df_begin(RootNode),
Chris Lattner0bbe58f2001-11-26 18:41:20 +000089 NE = df_end(RootNode); NI != NE; ++NI)
90 if (Loop *L = ConsiderForLoop(*NI, DS))
91 TopLevelLoops.push_back(L);
92
93 for (unsigned i = 0; i < TopLevelLoops.size(); ++i)
94 TopLevelLoops[i]->setLoopDepth(1);
95}
96
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000097void LoopInfo::getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnerf57b8452002-04-27 06:56:12 +000098 AU.setPreservesAll();
Chris Lattnerdd5b4952002-08-08 19:01:28 +000099 AU.addRequired<DominatorSet>();
Chris Lattner93193f82002-01-31 00:42:27 +0000100}
101
Chris Lattnera59cbb22002-07-27 01:12:17 +0000102void LoopInfo::print(std::ostream &OS) const {
Chris Lattnerfce46ef2002-09-26 16:15:54 +0000103 for (unsigned i = 0; i < TopLevelLoops.size(); ++i)
104 TopLevelLoops[i]->print(OS);
Chris Lattnera59cbb22002-07-27 01:12:17 +0000105}
Chris Lattner93193f82002-01-31 00:42:27 +0000106
Chris Lattner1b7f7dc2002-04-28 16:21:30 +0000107Loop *LoopInfo::ConsiderForLoop(BasicBlock *BB, const DominatorSet &DS) {
Chris Lattner699b3052002-09-26 05:32:50 +0000108 if (BBMap.find(BB) != BBMap.end()) return 0; // Haven't processed this node?
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000109
Chris Lattnera298d272002-04-28 00:15:57 +0000110 std::vector<BasicBlock *> TodoStack;
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000111
112 // Scan the predecessors of BB, checking to see if BB dominates any of
113 // them.
Chris Lattnera298d272002-04-28 00:15:57 +0000114 for (pred_iterator I = pred_begin(BB), E = pred_end(BB); I != E; ++I)
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000115 if (DS.dominates(BB, *I)) // If BB dominates it's predecessor...
116 TodoStack.push_back(*I);
117
118 if (TodoStack.empty()) return 0; // Doesn't dominate any predecessors...
119
120 // Create a new loop to represent this basic block...
121 Loop *L = new Loop(BB);
122 BBMap[BB] = L;
123
124 while (!TodoStack.empty()) { // Process all the nodes in the loop
Chris Lattnera298d272002-04-28 00:15:57 +0000125 BasicBlock *X = TodoStack.back();
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000126 TodoStack.pop_back();
127
128 if (!L->contains(X)) { // As of yet unprocessed??
129 L->Blocks.push_back(X);
130
131 // Add all of the predecessors of X to the end of the work stack...
Chris Lattner455889a2002-02-12 22:39:50 +0000132 TodoStack.insert(TodoStack.end(), pred_begin(X), pred_end(X));
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000133 }
134 }
135
136 // Add the basic blocks that comprise this loop to the BBMap so that this
137 // loop can be found for them. Also check subsidary basic blocks to see if
138 // they start subloops of their own.
139 //
Chris Lattnera298d272002-04-28 00:15:57 +0000140 for (std::vector<BasicBlock*>::reverse_iterator I = L->Blocks.rbegin(),
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000141 E = L->Blocks.rend(); I != E; ++I) {
142
143 // Check to see if this block starts a new loop
144 if (Loop *NewLoop = ConsiderForLoop(*I, DS)) {
145 L->SubLoops.push_back(NewLoop);
146 NewLoop->ParentLoop = L;
147 }
148
149 if (BBMap.find(*I) == BBMap.end())
Chris Lattner697954c2002-01-20 22:54:45 +0000150 BBMap.insert(std::make_pair(*I, L));
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000151 }
152
153 return L;
154}
Chris Lattner699b3052002-09-26 05:32:50 +0000155
156/// getLoopPreheader - If there is a preheader for this loop, return it. A
157/// loop has a preheader if there is only one edge to the header of the loop
158/// from outside of the loop. If this is the case, the block branching to the
159/// header of the loop is the preheader node. The "preheaders" pass can be
160/// "Required" to ensure that there is always a preheader node for every loop.
161///
162/// This method returns null if there is no preheader for the loop (either
163/// because the loop is dead or because multiple blocks branch to the header
164/// node of this loop).
165///
166BasicBlock *Loop::getLoopPreheader() const {
167 // Keep track of nodes outside the loop branching to the header...
168 BasicBlock *Out = 0;
169
170 // Loop over the predecessors of the header node...
171 BasicBlock *Header = getHeader();
172 for (pred_iterator PI = pred_begin(Header), PE = pred_end(Header);
173 PI != PE; ++PI)
Chris Lattnerc8f25d92002-09-29 22:59:29 +0000174 if (!contains(*PI)) { // If the block is not in the loop...
175 if (Out && Out != *PI)
176 return 0; // Multiple predecessors outside the loop
Chris Lattner699b3052002-09-26 05:32:50 +0000177 Out = *PI;
178 }
179
180 // If there is exactly one preheader, return it. If there was zero, then Out
181 // is still null.
182 return Out;
183}
184
185/// addBasicBlockToLoop - This function is used by other analyses to update loop
186/// information. NewBB is set to be a new member of the current loop. Because
187/// of this, it is added as a member of all parent loops, and is added to the
188/// specified LoopInfo object as being in the current basic block. It is not
189/// valid to replace the loop header with this method.
190///
191void Loop::addBasicBlockToLoop(BasicBlock *NewBB, LoopInfo &LI) {
192 assert(LI[getHeader()] == this && "Incorrect LI specified for this loop!");
193 assert(NewBB && "Cannot add a null basic block to the loop!");
194 assert(LI[NewBB] == 0 && "BasicBlock already in the loop!");
195
196 // Add the loop mapping to the LoopInfo object...
197 LI.BBMap[NewBB] = this;
198
199 // Add the basic block to this loop and all parent loops...
200 Loop *L = this;
201 while (L) {
202 L->Blocks.push_back(NewBB);
203 L = L->getParentLoop();
204 }
205}