blob: 68e7d2f845daddbde6e1110f0dba4128e1f0ee37 [file] [log] [blame]
Chris Lattnercf3056d2003-10-13 03:32:08 +00001//===- LoopInfo.cpp - Natural Loop Calculator -----------------------------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Chris Lattner0bbe58f2001-11-26 18:41:20 +00009//
10// This file defines the LoopInfo class that is used to identify natural loops
11// and determine the loop depth of various nodes of the CFG. Note that the
12// loops identified may actually be several natural loops that share the same
13// header node... not just a single natural loop.
14//
15//===----------------------------------------------------------------------===//
16
17#include "llvm/Analysis/LoopInfo.h"
18#include "llvm/Analysis/Dominators.h"
Chris Lattner221d6882002-02-12 21:07:25 +000019#include "llvm/Support/CFG.h"
Chris Lattnera59cbb22002-07-27 01:12:17 +000020#include "llvm/Assembly/Writer.h"
Chris Lattnercee8f9a2001-11-27 00:03:19 +000021#include "Support/DepthFirstIterator.h"
Chris Lattner0bbe58f2001-11-26 18:41:20 +000022#include <algorithm>
23
Brian Gaeked0fde302003-11-11 22:41:34 +000024namespace llvm {
25
Chris Lattner1e435162002-07-26 21:12:44 +000026static RegisterAnalysis<LoopInfo>
Chris Lattner17689df2002-07-30 16:27:52 +000027X("loops", "Natural Loop Construction", true);
Chris Lattner93193f82002-01-31 00:42:27 +000028
29//===----------------------------------------------------------------------===//
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000030// Loop implementation
Chris Lattner93193f82002-01-31 00:42:27 +000031//
Chris Lattner0f995552002-06-03 22:10:52 +000032bool Loop::contains(const BasicBlock *BB) const {
Chris Lattner0bbe58f2001-11-26 18:41:20 +000033 return find(Blocks.begin(), Blocks.end(), BB) != Blocks.end();
34}
35
Misha Brukman6b290a52002-10-11 05:31:10 +000036bool Loop::isLoopExit(const BasicBlock *BB) const {
Chris Lattner03f252f2003-09-24 22:18:35 +000037 for (succ_const_iterator SI = succ_begin(BB), SE = succ_end(BB);
Misha Brukman6b290a52002-10-11 05:31:10 +000038 SI != SE; ++SI) {
Chris Lattner5f82b8a2003-02-27 00:38:34 +000039 if (!contains(*SI))
Misha Brukman6b290a52002-10-11 05:31:10 +000040 return true;
41 }
42 return false;
43}
44
Chris Lattner2ef12362003-10-12 22:14:27 +000045/// getNumBackEdges - Calculate the number of back edges to the loop header.
46///
Misha Brukman6b290a52002-10-11 05:31:10 +000047unsigned Loop::getNumBackEdges() const {
Chris Lattner5f82b8a2003-02-27 00:38:34 +000048 unsigned NumBackEdges = 0;
49 BasicBlock *H = getHeader();
Misha Brukman6b290a52002-10-11 05:31:10 +000050
Chris Lattner2ef12362003-10-12 22:14:27 +000051 for (pred_iterator I = pred_begin(H), E = pred_end(H); I != E; ++I)
52 if (contains(*I))
53 ++NumBackEdges;
54
Chris Lattner5f82b8a2003-02-27 00:38:34 +000055 return NumBackEdges;
Misha Brukman6b290a52002-10-11 05:31:10 +000056}
57
Chris Lattner7dd46b02003-08-16 20:57:16 +000058void Loop::print(std::ostream &OS, unsigned Depth) const {
59 OS << std::string(Depth*2, ' ') << "Loop Containing: ";
Chris Lattnera59cbb22002-07-27 01:12:17 +000060
61 for (unsigned i = 0; i < getBlocks().size(); ++i) {
62 if (i) OS << ",";
Chris Lattner5f82b8a2003-02-27 00:38:34 +000063 WriteAsOperand(OS, getBlocks()[i], false);
Chris Lattnera59cbb22002-07-27 01:12:17 +000064 }
Chris Lattner5f82b8a2003-02-27 00:38:34 +000065 if (!ExitBlocks.empty()) {
66 OS << "\tExitBlocks: ";
67 for (unsigned i = 0; i < getExitBlocks().size(); ++i) {
68 if (i) OS << ",";
69 WriteAsOperand(OS, getExitBlocks()[i], false);
70 }
71 }
72
Chris Lattnera59cbb22002-07-27 01:12:17 +000073 OS << "\n";
74
Chris Lattnerb1f8aeb2002-09-29 21:43:04 +000075 for (unsigned i = 0, e = getSubLoops().size(); i != e; ++i)
Chris Lattner7dd46b02003-08-16 20:57:16 +000076 getSubLoops()[i]->print(OS, Depth+2);
Chris Lattnera59cbb22002-07-27 01:12:17 +000077}
78
Chris Lattnerbb05f1e2003-02-28 16:54:45 +000079void Loop::dump() const {
80 print(std::cerr);
81}
82
Chris Lattner420df9b2003-02-22 21:33:11 +000083
Chris Lattnera59cbb22002-07-27 01:12:17 +000084//===----------------------------------------------------------------------===//
85// LoopInfo implementation
86//
Anand Shuklae0b6b782002-08-26 16:45:19 +000087void LoopInfo::stub() {}
Chris Lattnera59cbb22002-07-27 01:12:17 +000088
89bool LoopInfo::runOnFunction(Function &) {
90 releaseMemory();
91 Calculate(getAnalysis<DominatorSet>()); // Update
92 return false;
93}
94
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000095void LoopInfo::releaseMemory() {
Chris Lattner918c4ec2002-04-09 05:43:19 +000096 for (std::vector<Loop*>::iterator I = TopLevelLoops.begin(),
97 E = TopLevelLoops.end(); I != E; ++I)
98 delete *I; // Delete all of the loops...
99
100 BBMap.clear(); // Reset internal state of analysis
101 TopLevelLoops.clear();
102}
103
Chris Lattner93193f82002-01-31 00:42:27 +0000104
Chris Lattner1b7f7dc2002-04-28 16:21:30 +0000105void LoopInfo::Calculate(const DominatorSet &DS) {
Chris Lattnera298d272002-04-28 00:15:57 +0000106 BasicBlock *RootNode = DS.getRoot();
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000107
Chris Lattnera298d272002-04-28 00:15:57 +0000108 for (df_iterator<BasicBlock*> NI = df_begin(RootNode),
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000109 NE = df_end(RootNode); NI != NE; ++NI)
110 if (Loop *L = ConsiderForLoop(*NI, DS))
111 TopLevelLoops.push_back(L);
112
113 for (unsigned i = 0; i < TopLevelLoops.size(); ++i)
114 TopLevelLoops[i]->setLoopDepth(1);
115}
116
Chris Lattner1b7f7dc2002-04-28 16:21:30 +0000117void LoopInfo::getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnerf57b8452002-04-27 06:56:12 +0000118 AU.setPreservesAll();
Chris Lattnerdd5b4952002-08-08 19:01:28 +0000119 AU.addRequired<DominatorSet>();
Chris Lattner93193f82002-01-31 00:42:27 +0000120}
121
Chris Lattnera59cbb22002-07-27 01:12:17 +0000122void LoopInfo::print(std::ostream &OS) const {
Chris Lattnerfce46ef2002-09-26 16:15:54 +0000123 for (unsigned i = 0; i < TopLevelLoops.size(); ++i)
124 TopLevelLoops[i]->print(OS);
Chris Lattner420df9b2003-02-22 21:33:11 +0000125#if 0
126 for (std::map<BasicBlock*, Loop*>::const_iterator I = BBMap.begin(),
127 E = BBMap.end(); I != E; ++I)
128 OS << "BB '" << I->first->getName() << "' level = "
129 << I->second->LoopDepth << "\n";
130#endif
Chris Lattnera59cbb22002-07-27 01:12:17 +0000131}
Chris Lattner93193f82002-01-31 00:42:27 +0000132
Chris Lattner39c987a2003-05-15 18:03:51 +0000133static bool isNotAlreadyContainedIn(Loop *SubLoop, Loop *ParentLoop) {
134 if (SubLoop == 0) return true;
135 if (SubLoop == ParentLoop) return false;
136 return isNotAlreadyContainedIn(SubLoop->getParentLoop(), ParentLoop);
137}
138
Chris Lattner1b7f7dc2002-04-28 16:21:30 +0000139Loop *LoopInfo::ConsiderForLoop(BasicBlock *BB, const DominatorSet &DS) {
Chris Lattner699b3052002-09-26 05:32:50 +0000140 if (BBMap.find(BB) != BBMap.end()) return 0; // Haven't processed this node?
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000141
Chris Lattnera298d272002-04-28 00:15:57 +0000142 std::vector<BasicBlock *> TodoStack;
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000143
144 // Scan the predecessors of BB, checking to see if BB dominates any of
Chris Lattner99224ae2003-04-26 19:34:18 +0000145 // them. This identifies backedges which target this node...
Chris Lattnera298d272002-04-28 00:15:57 +0000146 for (pred_iterator I = pred_begin(BB), E = pred_end(BB); I != E; ++I)
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000147 if (DS.dominates(BB, *I)) // If BB dominates it's predecessor...
148 TodoStack.push_back(*I);
149
Chris Lattner99224ae2003-04-26 19:34:18 +0000150 if (TodoStack.empty()) return 0; // No backedges to this block...
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000151
152 // Create a new loop to represent this basic block...
153 Loop *L = new Loop(BB);
154 BBMap[BB] = L;
155
Chris Lattner59dc1782003-10-22 16:41:21 +0000156 BasicBlock *EntryBlock = &BB->getParent()->getEntryBlock();
157
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000158 while (!TodoStack.empty()) { // Process all the nodes in the loop
Chris Lattnera298d272002-04-28 00:15:57 +0000159 BasicBlock *X = TodoStack.back();
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000160 TodoStack.pop_back();
161
Chris Lattner59dc1782003-10-22 16:41:21 +0000162 if (!L->contains(X) && // As of yet unprocessed??
163 DS.dominates(EntryBlock, X)) { // X is reachable from entry block?
Chris Lattner99224ae2003-04-26 19:34:18 +0000164 // Check to see if this block already belongs to a loop. If this occurs
165 // then we have a case where a loop that is supposed to be a child of the
166 // current loop was processed before the current loop. When this occurs,
167 // this child loop gets added to a part of the current loop, making it a
168 // sibling to the current loop. We have to reparent this loop.
169 if (Loop *SubLoop = const_cast<Loop*>(getLoopFor(X)))
Chris Lattner39c987a2003-05-15 18:03:51 +0000170 if (SubLoop->getHeader() == X && isNotAlreadyContainedIn(SubLoop, L)) {
Chris Lattner99224ae2003-04-26 19:34:18 +0000171 // Remove the subloop from it's current parent...
172 assert(SubLoop->ParentLoop && SubLoop->ParentLoop != L);
173 Loop *SLP = SubLoop->ParentLoop; // SubLoopParent
174 std::vector<Loop*>::iterator I =
175 std::find(SLP->SubLoops.begin(), SLP->SubLoops.end(), SubLoop);
176 assert(I != SLP->SubLoops.end() && "SubLoop not a child of parent?");
177 SLP->SubLoops.erase(I); // Remove from parent...
178
179 // Add the subloop to THIS loop...
180 SubLoop->ParentLoop = L;
181 L->SubLoops.push_back(SubLoop);
182 }
183
184 // Normal case, add the block to our loop...
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000185 L->Blocks.push_back(X);
Chris Lattner99224ae2003-04-26 19:34:18 +0000186
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000187 // Add all of the predecessors of X to the end of the work stack...
Chris Lattner455889a2002-02-12 22:39:50 +0000188 TodoStack.insert(TodoStack.end(), pred_begin(X), pred_end(X));
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000189 }
190 }
191
Chris Lattner420df9b2003-02-22 21:33:11 +0000192 // If there are any loops nested within this loop, create them now!
193 for (std::vector<BasicBlock*>::iterator I = L->Blocks.begin(),
194 E = L->Blocks.end(); I != E; ++I)
195 if (Loop *NewLoop = ConsiderForLoop(*I, DS)) {
196 L->SubLoops.push_back(NewLoop);
197 NewLoop->ParentLoop = L;
198 }
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000199
Chris Lattner420df9b2003-02-22 21:33:11 +0000200 // Add the basic blocks that comprise this loop to the BBMap so that this
201 // loop can be found for them.
202 //
203 for (std::vector<BasicBlock*>::iterator I = L->Blocks.begin(),
204 E = L->Blocks.end(); I != E; ++I) {
205 std::map<BasicBlock*, Loop*>::iterator BBMI = BBMap.lower_bound(*I);
206 if (BBMI == BBMap.end() || BBMI->first != *I) // Not in map yet...
207 BBMap.insert(BBMI, std::make_pair(*I, L)); // Must be at this level
208 }
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000209
Chris Lattner7dd46b02003-08-16 20:57:16 +0000210 // Now that we have a list of all of the child loops of this loop, check to
211 // see if any of them should actually be nested inside of each other. We can
212 // accidentally pull loops our of their parents, so we must make sure to
213 // organize the loop nests correctly now.
214 {
215 std::map<BasicBlock*, Loop*> ContainingLoops;
216 for (unsigned i = 0; i != L->SubLoops.size(); ++i) {
217 Loop *Child = L->SubLoops[i];
218 assert(Child->getParentLoop() == L && "Not proper child loop?");
219
220 if (Loop *ContainingLoop = ContainingLoops[Child->getHeader()]) {
221 // If there is already a loop which contains this loop, move this loop
222 // into the containing loop.
223 MoveSiblingLoopInto(Child, ContainingLoop);
224 --i; // The loop got removed from the SubLoops list.
225 } else {
226 // This is currently considered to be a top-level loop. Check to see if
227 // any of the contained blocks are loop headers for subloops we have
228 // already processed.
229 for (unsigned b = 0, e = Child->Blocks.size(); b != e; ++b) {
230 Loop *&BlockLoop = ContainingLoops[Child->Blocks[b]];
231 if (BlockLoop == 0) { // Child block not processed yet...
232 BlockLoop = Child;
233 } else if (BlockLoop != Child) {
Chris Lattner169db9d2003-08-17 21:47:33 +0000234 Loop *SubLoop = BlockLoop;
235 // Reparent all of the blocks which used to belong to BlockLoops
236 for (unsigned j = 0, e = SubLoop->Blocks.size(); j != e; ++j)
237 ContainingLoops[SubLoop->Blocks[j]] = Child;
238
Chris Lattner7dd46b02003-08-16 20:57:16 +0000239 // There is already a loop which contains this block, that means
240 // that we should reparent the loop which the block is currently
241 // considered to belong to to be a child of this loop.
Chris Lattner169db9d2003-08-17 21:47:33 +0000242 MoveSiblingLoopInto(SubLoop, Child);
Chris Lattner7dd46b02003-08-16 20:57:16 +0000243 --i; // We just shrunk the SubLoops list.
244 }
245 }
246 }
247 }
248 }
249
Chris Lattner5f82b8a2003-02-27 00:38:34 +0000250 // Now that we know all of the blocks that make up this loop, see if there are
251 // any branches to outside of the loop... building the ExitBlocks list.
252 for (std::vector<BasicBlock*>::iterator BI = L->Blocks.begin(),
253 BE = L->Blocks.end(); BI != BE; ++BI)
254 for (succ_iterator I = succ_begin(*BI), E = succ_end(*BI); I != E; ++I)
255 if (!L->contains(*I)) // Not in current loop?
256 L->ExitBlocks.push_back(*I); // It must be an exit block...
257
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000258 return L;
259}
Chris Lattner699b3052002-09-26 05:32:50 +0000260
Chris Lattner7dd46b02003-08-16 20:57:16 +0000261/// MoveSiblingLoopInto - This method moves the NewChild loop to live inside of
262/// the NewParent Loop, instead of being a sibling of it.
263void LoopInfo::MoveSiblingLoopInto(Loop *NewChild, Loop *NewParent) {
264 Loop *OldParent = NewChild->getParentLoop();
265 assert(OldParent && OldParent == NewParent->getParentLoop() &&
266 NewChild != NewParent && "Not sibling loops!");
267
268 // Remove NewChild from being a child of OldParent
269 std::vector<Loop*>::iterator I =
270 std::find(OldParent->SubLoops.begin(), OldParent->SubLoops.end(), NewChild);
271 assert(I != OldParent->SubLoops.end() && "Parent fields incorrect??");
272 OldParent->SubLoops.erase(I); // Remove from parent's subloops list
273 NewChild->ParentLoop = 0;
274
275 InsertLoopInto(NewChild, NewParent);
276}
277
278/// InsertLoopInto - This inserts loop L into the specified parent loop. If the
279/// parent loop contains a loop which should contain L, the loop gets inserted
280/// into L instead.
281void LoopInfo::InsertLoopInto(Loop *L, Loop *Parent) {
282 BasicBlock *LHeader = L->getHeader();
283 assert(Parent->contains(LHeader) && "This loop should not be inserted here!");
284
285 // Check to see if it belongs in a child loop...
286 for (unsigned i = 0, e = Parent->SubLoops.size(); i != e; ++i)
287 if (Parent->SubLoops[i]->contains(LHeader)) {
288 InsertLoopInto(L, Parent->SubLoops[i]);
289 return;
290 }
291
292 // If not, insert it here!
293 Parent->SubLoops.push_back(L);
294 L->ParentLoop = Parent;
295}
296
297
298
Chris Lattner699b3052002-09-26 05:32:50 +0000299/// getLoopPreheader - If there is a preheader for this loop, return it. A
300/// loop has a preheader if there is only one edge to the header of the loop
301/// from outside of the loop. If this is the case, the block branching to the
302/// header of the loop is the preheader node. The "preheaders" pass can be
303/// "Required" to ensure that there is always a preheader node for every loop.
304///
305/// This method returns null if there is no preheader for the loop (either
306/// because the loop is dead or because multiple blocks branch to the header
307/// node of this loop).
308///
309BasicBlock *Loop::getLoopPreheader() const {
310 // Keep track of nodes outside the loop branching to the header...
311 BasicBlock *Out = 0;
312
313 // Loop over the predecessors of the header node...
314 BasicBlock *Header = getHeader();
315 for (pred_iterator PI = pred_begin(Header), PE = pred_end(Header);
316 PI != PE; ++PI)
Chris Lattnerc8f25d92002-09-29 22:59:29 +0000317 if (!contains(*PI)) { // If the block is not in the loop...
318 if (Out && Out != *PI)
319 return 0; // Multiple predecessors outside the loop
Chris Lattner699b3052002-09-26 05:32:50 +0000320 Out = *PI;
321 }
Chris Lattner5a8a2912003-02-27 21:51:38 +0000322
323 // Make sure there is only one exit out of the preheader...
324 succ_iterator SI = succ_begin(Out);
325 ++SI;
326 if (SI != succ_end(Out))
327 return 0; // Multiple exits from the block, must not be a preheader.
328
Chris Lattner699b3052002-09-26 05:32:50 +0000329
330 // If there is exactly one preheader, return it. If there was zero, then Out
331 // is still null.
332 return Out;
333}
334
335/// addBasicBlockToLoop - This function is used by other analyses to update loop
336/// information. NewBB is set to be a new member of the current loop. Because
337/// of this, it is added as a member of all parent loops, and is added to the
338/// specified LoopInfo object as being in the current basic block. It is not
339/// valid to replace the loop header with this method.
340///
341void Loop::addBasicBlockToLoop(BasicBlock *NewBB, LoopInfo &LI) {
342 assert(LI[getHeader()] == this && "Incorrect LI specified for this loop!");
343 assert(NewBB && "Cannot add a null basic block to the loop!");
344 assert(LI[NewBB] == 0 && "BasicBlock already in the loop!");
345
346 // Add the loop mapping to the LoopInfo object...
347 LI.BBMap[NewBB] = this;
348
349 // Add the basic block to this loop and all parent loops...
350 Loop *L = this;
351 while (L) {
352 L->Blocks.push_back(NewBB);
353 L = L->getParentLoop();
354 }
355}
Chris Lattner5f82b8a2003-02-27 00:38:34 +0000356
Chris Lattnerf2e29252003-02-27 22:37:44 +0000357/// changeExitBlock - This method is used to update loop information. All
358/// instances of the specified Old basic block are removed from the exit list
Chris Lattner5f82b8a2003-02-27 00:38:34 +0000359/// and replaced with New.
360///
361void Loop::changeExitBlock(BasicBlock *Old, BasicBlock *New) {
362 assert(Old != New && "Cannot changeExitBlock to the same thing!");
363 assert(Old && New && "Cannot changeExitBlock to or from a null node!");
Chris Lattnera94837a2003-02-27 22:48:08 +0000364 assert(hasExitBlock(Old) && "Old exit block not found!");
365 std::vector<BasicBlock*>::iterator
366 I = std::find(ExitBlocks.begin(), ExitBlocks.end(), Old);
Chris Lattnerf2e29252003-02-27 22:37:44 +0000367 while (I != ExitBlocks.end()) {
368 *I = New;
369 I = std::find(I+1, ExitBlocks.end(), Old);
370 }
Chris Lattner5f82b8a2003-02-27 00:38:34 +0000371}
Brian Gaeked0fde302003-11-11 22:41:34 +0000372
373} // End llvm namespace