blob: ef4b6430ba2ad4aa1b0c511569c00e25b1cb18fa [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
Chris Lattnere30c7632003-02-20 00:17:17 +000040 for (std::vector<BasicBlock*>::const_iterator I = Blocks.begin(),
41 E = Blocks.end(); I != E; ++I) {
42 for (BasicBlock::succ_iterator SI = succ_begin(*I), SE = succ_end(*I);
43 SI != SE; ++SI)
44 if (header == *SI)
Misha Brukman6b290a52002-10-11 05:31:10 +000045 ++numBackEdges;
Misha Brukman6b290a52002-10-11 05:31:10 +000046 }
47 return numBackEdges;
48}
49
Chris Lattnera59cbb22002-07-27 01:12:17 +000050void Loop::print(std::ostream &OS) const {
51 OS << std::string(getLoopDepth()*2, ' ') << "Loop Containing: ";
52
53 for (unsigned i = 0; i < getBlocks().size(); ++i) {
54 if (i) OS << ",";
55 WriteAsOperand(OS, (const Value*)getBlocks()[i]);
56 }
57 OS << "\n";
58
Chris Lattnerb1f8aeb2002-09-29 21:43:04 +000059 for (unsigned i = 0, e = getSubLoops().size(); i != e; ++i)
60 getSubLoops()[i]->print(OS);
Chris Lattnera59cbb22002-07-27 01:12:17 +000061}
62
63//===----------------------------------------------------------------------===//
64// LoopInfo implementation
65//
Anand Shuklae0b6b782002-08-26 16:45:19 +000066void LoopInfo::stub() {}
Chris Lattnera59cbb22002-07-27 01:12:17 +000067
68bool LoopInfo::runOnFunction(Function &) {
69 releaseMemory();
70 Calculate(getAnalysis<DominatorSet>()); // Update
71 return false;
72}
73
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000074void LoopInfo::releaseMemory() {
Chris Lattner918c4ec2002-04-09 05:43:19 +000075 for (std::vector<Loop*>::iterator I = TopLevelLoops.begin(),
76 E = TopLevelLoops.end(); I != E; ++I)
77 delete *I; // Delete all of the loops...
78
79 BBMap.clear(); // Reset internal state of analysis
80 TopLevelLoops.clear();
81}
82
Chris Lattner93193f82002-01-31 00:42:27 +000083
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000084void LoopInfo::Calculate(const DominatorSet &DS) {
Chris Lattnera298d272002-04-28 00:15:57 +000085 BasicBlock *RootNode = DS.getRoot();
Chris Lattner0bbe58f2001-11-26 18:41:20 +000086
Chris Lattnera298d272002-04-28 00:15:57 +000087 for (df_iterator<BasicBlock*> NI = df_begin(RootNode),
Chris Lattner0bbe58f2001-11-26 18:41:20 +000088 NE = df_end(RootNode); NI != NE; ++NI)
89 if (Loop *L = ConsiderForLoop(*NI, DS))
90 TopLevelLoops.push_back(L);
91
92 for (unsigned i = 0; i < TopLevelLoops.size(); ++i)
93 TopLevelLoops[i]->setLoopDepth(1);
94}
95
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000096void LoopInfo::getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnerf57b8452002-04-27 06:56:12 +000097 AU.setPreservesAll();
Chris Lattnerdd5b4952002-08-08 19:01:28 +000098 AU.addRequired<DominatorSet>();
Chris Lattner93193f82002-01-31 00:42:27 +000099}
100
Chris Lattnera59cbb22002-07-27 01:12:17 +0000101void LoopInfo::print(std::ostream &OS) const {
Chris Lattnerfce46ef2002-09-26 16:15:54 +0000102 for (unsigned i = 0; i < TopLevelLoops.size(); ++i)
103 TopLevelLoops[i]->print(OS);
Chris Lattnera59cbb22002-07-27 01:12:17 +0000104}
Chris Lattner93193f82002-01-31 00:42:27 +0000105
Chris Lattner1b7f7dc2002-04-28 16:21:30 +0000106Loop *LoopInfo::ConsiderForLoop(BasicBlock *BB, const DominatorSet &DS) {
Chris Lattner699b3052002-09-26 05:32:50 +0000107 if (BBMap.find(BB) != BBMap.end()) return 0; // Haven't processed this node?
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000108
Chris Lattnera298d272002-04-28 00:15:57 +0000109 std::vector<BasicBlock *> TodoStack;
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000110
111 // Scan the predecessors of BB, checking to see if BB dominates any of
112 // them.
Chris Lattnera298d272002-04-28 00:15:57 +0000113 for (pred_iterator I = pred_begin(BB), E = pred_end(BB); I != E; ++I)
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000114 if (DS.dominates(BB, *I)) // If BB dominates it's predecessor...
115 TodoStack.push_back(*I);
116
117 if (TodoStack.empty()) return 0; // Doesn't dominate any predecessors...
118
119 // Create a new loop to represent this basic block...
120 Loop *L = new Loop(BB);
121 BBMap[BB] = L;
122
123 while (!TodoStack.empty()) { // Process all the nodes in the loop
Chris Lattnera298d272002-04-28 00:15:57 +0000124 BasicBlock *X = TodoStack.back();
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000125 TodoStack.pop_back();
126
127 if (!L->contains(X)) { // As of yet unprocessed??
128 L->Blocks.push_back(X);
129
130 // Add all of the predecessors of X to the end of the work stack...
Chris Lattner455889a2002-02-12 22:39:50 +0000131 TodoStack.insert(TodoStack.end(), pred_begin(X), pred_end(X));
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000132 }
133 }
134
135 // Add the basic blocks that comprise this loop to the BBMap so that this
136 // loop can be found for them. Also check subsidary basic blocks to see if
137 // they start subloops of their own.
138 //
Chris Lattnera298d272002-04-28 00:15:57 +0000139 for (std::vector<BasicBlock*>::reverse_iterator I = L->Blocks.rbegin(),
Chris Lattnere30c7632003-02-20 00:17:17 +0000140 E = L->Blocks.rend(); I != E; ++I)
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000141
142 // Check to see if this block starts a new loop
Chris Lattnere30c7632003-02-20 00:17:17 +0000143 if (*I != BB)
144 if (Loop *NewLoop = ConsiderForLoop(*I, DS)) {
145 L->SubLoops.push_back(NewLoop);
146 NewLoop->ParentLoop = L;
147 } else {
148 std::map<BasicBlock*, Loop*>::iterator BBMI = BBMap.lower_bound(*I);
149 if (BBMI == BBMap.end() || BBMI->first != *I) { // Not in map yet...
150 BBMap.insert(BBMI, std::make_pair(*I, L));
151 } else {
Chris Lattnerae5d39e2003-02-20 00:18:07 +0000152 // If this is already in the BBMap then this means that we already
153 // added a loop for it, but incorrectly added the loop to a higher
154 // level loop instead of the current loop we are creating. Fix this
155 // now by moving the loop into the correct subloop.
Chris Lattnere30c7632003-02-20 00:17:17 +0000156 //
157 Loop *SubLoop = BBMI->second;
158 Loop *OldSubLoopParent = SubLoop->getParentLoop();
159 if (OldSubLoopParent != L) {
160 // Remove SubLoop from OldSubLoopParent's list of subloops...
161 std::vector<Loop*>::iterator I =
162 std::find(OldSubLoopParent->SubLoops.begin(),
163 OldSubLoopParent->SubLoops.end(), SubLoop);
164 assert(I != OldSubLoopParent->SubLoops.end()
165 && "Loop parent doesn't contain loop?");
166 OldSubLoopParent->SubLoops.erase(I);
167 SubLoop->ParentLoop = L;
168 L->SubLoops.push_back(SubLoop);
169 }
170 }
171 }
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000172
173 return L;
174}
Chris Lattner699b3052002-09-26 05:32:50 +0000175
176/// getLoopPreheader - If there is a preheader for this loop, return it. A
177/// loop has a preheader if there is only one edge to the header of the loop
178/// from outside of the loop. If this is the case, the block branching to the
179/// header of the loop is the preheader node. The "preheaders" pass can be
180/// "Required" to ensure that there is always a preheader node for every loop.
181///
182/// This method returns null if there is no preheader for the loop (either
183/// because the loop is dead or because multiple blocks branch to the header
184/// node of this loop).
185///
186BasicBlock *Loop::getLoopPreheader() const {
187 // Keep track of nodes outside the loop branching to the header...
188 BasicBlock *Out = 0;
189
190 // Loop over the predecessors of the header node...
191 BasicBlock *Header = getHeader();
192 for (pred_iterator PI = pred_begin(Header), PE = pred_end(Header);
193 PI != PE; ++PI)
Chris Lattnerc8f25d92002-09-29 22:59:29 +0000194 if (!contains(*PI)) { // If the block is not in the loop...
195 if (Out && Out != *PI)
196 return 0; // Multiple predecessors outside the loop
Chris Lattner699b3052002-09-26 05:32:50 +0000197 Out = *PI;
198 }
199
200 // If there is exactly one preheader, return it. If there was zero, then Out
201 // is still null.
202 return Out;
203}
204
205/// addBasicBlockToLoop - This function is used by other analyses to update loop
206/// information. NewBB is set to be a new member of the current loop. Because
207/// of this, it is added as a member of all parent loops, and is added to the
208/// specified LoopInfo object as being in the current basic block. It is not
209/// valid to replace the loop header with this method.
210///
211void Loop::addBasicBlockToLoop(BasicBlock *NewBB, LoopInfo &LI) {
212 assert(LI[getHeader()] == this && "Incorrect LI specified for this loop!");
213 assert(NewBB && "Cannot add a null basic block to the loop!");
214 assert(LI[NewBB] == 0 && "BasicBlock already in the loop!");
215
216 // Add the loop mapping to the LoopInfo object...
217 LI.BBMap[NewBB] = this;
218
219 // Add the basic block to this loop and all parent loops...
220 Loop *L = this;
221 while (L) {
222 L->Blocks.push_back(NewBB);
223 L = L->getParentLoop();
224 }
225}