blob: 497732b9586eec1565fee35b87a82009b3efe070 [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
Chris Lattner420df9b2003-02-22 21:33:11 +000063
Chris Lattnera59cbb22002-07-27 01:12:17 +000064//===----------------------------------------------------------------------===//
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 Lattner420df9b2003-02-22 21:33:11 +0000105#if 0
106 for (std::map<BasicBlock*, Loop*>::const_iterator I = BBMap.begin(),
107 E = BBMap.end(); I != E; ++I)
108 OS << "BB '" << I->first->getName() << "' level = "
109 << I->second->LoopDepth << "\n";
110#endif
Chris Lattnera59cbb22002-07-27 01:12:17 +0000111}
Chris Lattner93193f82002-01-31 00:42:27 +0000112
Chris Lattner1b7f7dc2002-04-28 16:21:30 +0000113Loop *LoopInfo::ConsiderForLoop(BasicBlock *BB, const DominatorSet &DS) {
Chris Lattner699b3052002-09-26 05:32:50 +0000114 if (BBMap.find(BB) != BBMap.end()) return 0; // Haven't processed this node?
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000115
Chris Lattnera298d272002-04-28 00:15:57 +0000116 std::vector<BasicBlock *> TodoStack;
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000117
118 // Scan the predecessors of BB, checking to see if BB dominates any of
119 // them.
Chris Lattnera298d272002-04-28 00:15:57 +0000120 for (pred_iterator I = pred_begin(BB), E = pred_end(BB); I != E; ++I)
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000121 if (DS.dominates(BB, *I)) // If BB dominates it's predecessor...
122 TodoStack.push_back(*I);
123
124 if (TodoStack.empty()) return 0; // Doesn't dominate any predecessors...
125
126 // Create a new loop to represent this basic block...
127 Loop *L = new Loop(BB);
128 BBMap[BB] = L;
129
130 while (!TodoStack.empty()) { // Process all the nodes in the loop
Chris Lattnera298d272002-04-28 00:15:57 +0000131 BasicBlock *X = TodoStack.back();
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000132 TodoStack.pop_back();
133
134 if (!L->contains(X)) { // As of yet unprocessed??
135 L->Blocks.push_back(X);
136
137 // Add all of the predecessors of X to the end of the work stack...
Chris Lattner455889a2002-02-12 22:39:50 +0000138 TodoStack.insert(TodoStack.end(), pred_begin(X), pred_end(X));
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000139 }
140 }
141
Chris Lattner420df9b2003-02-22 21:33:11 +0000142 // If there are any loops nested within this loop, create them now!
143 for (std::vector<BasicBlock*>::iterator I = L->Blocks.begin(),
144 E = L->Blocks.end(); I != E; ++I)
145 if (Loop *NewLoop = ConsiderForLoop(*I, DS)) {
146 L->SubLoops.push_back(NewLoop);
147 NewLoop->ParentLoop = L;
148 }
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000149
Chris Lattner420df9b2003-02-22 21:33:11 +0000150
151 // Add the basic blocks that comprise this loop to the BBMap so that this
152 // loop can be found for them.
153 //
154 for (std::vector<BasicBlock*>::iterator I = L->Blocks.begin(),
155 E = L->Blocks.end(); I != E; ++I) {
156 std::map<BasicBlock*, Loop*>::iterator BBMI = BBMap.lower_bound(*I);
157 if (BBMI == BBMap.end() || BBMI->first != *I) // Not in map yet...
158 BBMap.insert(BBMI, std::make_pair(*I, L)); // Must be at this level
159 }
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000160
161 return L;
162}
Chris Lattner699b3052002-09-26 05:32:50 +0000163
164/// getLoopPreheader - If there is a preheader for this loop, return it. A
165/// loop has a preheader if there is only one edge to the header of the loop
166/// from outside of the loop. If this is the case, the block branching to the
167/// header of the loop is the preheader node. The "preheaders" pass can be
168/// "Required" to ensure that there is always a preheader node for every loop.
169///
170/// This method returns null if there is no preheader for the loop (either
171/// because the loop is dead or because multiple blocks branch to the header
172/// node of this loop).
173///
174BasicBlock *Loop::getLoopPreheader() const {
175 // Keep track of nodes outside the loop branching to the header...
176 BasicBlock *Out = 0;
177
178 // Loop over the predecessors of the header node...
179 BasicBlock *Header = getHeader();
180 for (pred_iterator PI = pred_begin(Header), PE = pred_end(Header);
181 PI != PE; ++PI)
Chris Lattnerc8f25d92002-09-29 22:59:29 +0000182 if (!contains(*PI)) { // If the block is not in the loop...
183 if (Out && Out != *PI)
184 return 0; // Multiple predecessors outside the loop
Chris Lattner699b3052002-09-26 05:32:50 +0000185 Out = *PI;
186 }
187
188 // If there is exactly one preheader, return it. If there was zero, then Out
189 // is still null.
190 return Out;
191}
192
193/// addBasicBlockToLoop - This function is used by other analyses to update loop
194/// information. NewBB is set to be a new member of the current loop. Because
195/// of this, it is added as a member of all parent loops, and is added to the
196/// specified LoopInfo object as being in the current basic block. It is not
197/// valid to replace the loop header with this method.
198///
199void Loop::addBasicBlockToLoop(BasicBlock *NewBB, LoopInfo &LI) {
200 assert(LI[getHeader()] == this && "Incorrect LI specified for this loop!");
201 assert(NewBB && "Cannot add a null basic block to the loop!");
202 assert(LI[NewBB] == 0 && "BasicBlock already in the loop!");
203
204 // Add the loop mapping to the LoopInfo object...
205 LI.BBMap[NewBB] = this;
206
207 // Add the basic block to this loop and all parent loops...
208 Loop *L = this;
209 while (L) {
210 L->Blocks.push_back(NewBB);
211 L = L->getParentLoop();
212 }
213}