blob: 87c0723312d3b11dc518428913b4199b4c1d5256 [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
Misha Brukman10d208d2004-01-30 17:26:24 +000017#include "llvm/Analysis/LoopInfo.h"
Chris Lattner92020fa2004-04-15 15:16:02 +000018#include "llvm/Constants.h"
19#include "llvm/Instructions.h"
20#include "llvm/Analysis/Dominators.h"
Chris Lattnera59cbb22002-07-27 01:12:17 +000021#include "llvm/Assembly/Writer.h"
Misha Brukman10d208d2004-01-30 17:26:24 +000022#include "llvm/Support/CFG.h"
Chris Lattnercee8f9a2001-11-27 00:03:19 +000023#include "Support/DepthFirstIterator.h"
Chris Lattner0bbe58f2001-11-26 18:41:20 +000024#include <algorithm>
Chris Lattner46758a82004-04-12 20:26:17 +000025using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000026
Chris Lattner1e435162002-07-26 21:12:44 +000027static RegisterAnalysis<LoopInfo>
Chris Lattner17689df2002-07-30 16:27:52 +000028X("loops", "Natural Loop Construction", true);
Chris Lattner93193f82002-01-31 00:42:27 +000029
30//===----------------------------------------------------------------------===//
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000031// Loop implementation
Chris Lattner93193f82002-01-31 00:42:27 +000032//
Chris Lattner0f995552002-06-03 22:10:52 +000033bool Loop::contains(const BasicBlock *BB) const {
Chris Lattner0bbe58f2001-11-26 18:41:20 +000034 return find(Blocks.begin(), Blocks.end(), BB) != Blocks.end();
35}
36
Misha Brukman6b290a52002-10-11 05:31:10 +000037bool Loop::isLoopExit(const BasicBlock *BB) const {
Chris Lattner03f252f2003-09-24 22:18:35 +000038 for (succ_const_iterator SI = succ_begin(BB), SE = succ_end(BB);
Misha Brukman6b290a52002-10-11 05:31:10 +000039 SI != SE; ++SI) {
Chris Lattner5f82b8a2003-02-27 00:38:34 +000040 if (!contains(*SI))
Misha Brukman6b290a52002-10-11 05:31:10 +000041 return true;
42 }
43 return false;
44}
45
Chris Lattner2ef12362003-10-12 22:14:27 +000046/// getNumBackEdges - Calculate the number of back edges to the loop header.
47///
Misha Brukman6b290a52002-10-11 05:31:10 +000048unsigned Loop::getNumBackEdges() const {
Chris Lattner5f82b8a2003-02-27 00:38:34 +000049 unsigned NumBackEdges = 0;
50 BasicBlock *H = getHeader();
Misha Brukman6b290a52002-10-11 05:31:10 +000051
Chris Lattner2ef12362003-10-12 22:14:27 +000052 for (pred_iterator I = pred_begin(H), E = pred_end(H); I != E; ++I)
53 if (contains(*I))
54 ++NumBackEdges;
55
Chris Lattner5f82b8a2003-02-27 00:38:34 +000056 return NumBackEdges;
Misha Brukman6b290a52002-10-11 05:31:10 +000057}
58
Chris Lattner7dd46b02003-08-16 20:57:16 +000059void Loop::print(std::ostream &OS, unsigned Depth) const {
60 OS << std::string(Depth*2, ' ') << "Loop Containing: ";
Chris Lattnera59cbb22002-07-27 01:12:17 +000061
62 for (unsigned i = 0; i < getBlocks().size(); ++i) {
63 if (i) OS << ",";
Chris Lattner5f82b8a2003-02-27 00:38:34 +000064 WriteAsOperand(OS, getBlocks()[i], false);
Chris Lattnera59cbb22002-07-27 01:12:17 +000065 }
Chris Lattner5f82b8a2003-02-27 00:38:34 +000066 if (!ExitBlocks.empty()) {
67 OS << "\tExitBlocks: ";
68 for (unsigned i = 0; i < getExitBlocks().size(); ++i) {
69 if (i) OS << ",";
70 WriteAsOperand(OS, getExitBlocks()[i], false);
71 }
72 }
73
Chris Lattnera59cbb22002-07-27 01:12:17 +000074 OS << "\n";
75
Chris Lattner329c1c62004-01-08 00:09:44 +000076 for (iterator I = begin(), E = end(); I != E; ++I)
77 (*I)->print(OS, Depth+2);
Chris Lattnera59cbb22002-07-27 01:12:17 +000078}
79
Chris Lattnerbb05f1e2003-02-28 16:54:45 +000080void Loop::dump() const {
81 print(std::cerr);
82}
83
Chris Lattner420df9b2003-02-22 21:33:11 +000084
Chris Lattnera59cbb22002-07-27 01:12:17 +000085//===----------------------------------------------------------------------===//
86// LoopInfo implementation
87//
Anand Shuklae0b6b782002-08-26 16:45:19 +000088void LoopInfo::stub() {}
Chris Lattnera59cbb22002-07-27 01:12:17 +000089
90bool LoopInfo::runOnFunction(Function &) {
91 releaseMemory();
92 Calculate(getAnalysis<DominatorSet>()); // Update
93 return false;
94}
95
Chris Lattner1b7f7dc2002-04-28 16:21:30 +000096void LoopInfo::releaseMemory() {
Chris Lattner918c4ec2002-04-09 05:43:19 +000097 for (std::vector<Loop*>::iterator I = TopLevelLoops.begin(),
98 E = TopLevelLoops.end(); I != E; ++I)
99 delete *I; // Delete all of the loops...
100
101 BBMap.clear(); // Reset internal state of analysis
102 TopLevelLoops.clear();
103}
104
Chris Lattner93193f82002-01-31 00:42:27 +0000105
Chris Lattner1b7f7dc2002-04-28 16:21:30 +0000106void LoopInfo::Calculate(const DominatorSet &DS) {
Chris Lattnera298d272002-04-28 00:15:57 +0000107 BasicBlock *RootNode = DS.getRoot();
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000108
Chris Lattnera298d272002-04-28 00:15:57 +0000109 for (df_iterator<BasicBlock*> NI = df_begin(RootNode),
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000110 NE = df_end(RootNode); NI != NE; ++NI)
111 if (Loop *L = ConsiderForLoop(*NI, DS))
112 TopLevelLoops.push_back(L);
113
114 for (unsigned i = 0; i < TopLevelLoops.size(); ++i)
115 TopLevelLoops[i]->setLoopDepth(1);
116}
117
Chris Lattner1b7f7dc2002-04-28 16:21:30 +0000118void LoopInfo::getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnerf57b8452002-04-27 06:56:12 +0000119 AU.setPreservesAll();
Chris Lattnerdd5b4952002-08-08 19:01:28 +0000120 AU.addRequired<DominatorSet>();
Chris Lattner93193f82002-01-31 00:42:27 +0000121}
122
Chris Lattnera59cbb22002-07-27 01:12:17 +0000123void LoopInfo::print(std::ostream &OS) const {
Chris Lattnerfce46ef2002-09-26 16:15:54 +0000124 for (unsigned i = 0; i < TopLevelLoops.size(); ++i)
125 TopLevelLoops[i]->print(OS);
Chris Lattner420df9b2003-02-22 21:33:11 +0000126#if 0
127 for (std::map<BasicBlock*, Loop*>::const_iterator I = BBMap.begin(),
128 E = BBMap.end(); I != E; ++I)
129 OS << "BB '" << I->first->getName() << "' level = "
130 << I->second->LoopDepth << "\n";
131#endif
Chris Lattnera59cbb22002-07-27 01:12:17 +0000132}
Chris Lattner93193f82002-01-31 00:42:27 +0000133
Chris Lattner39c987a2003-05-15 18:03:51 +0000134static bool isNotAlreadyContainedIn(Loop *SubLoop, Loop *ParentLoop) {
135 if (SubLoop == 0) return true;
136 if (SubLoop == ParentLoop) return false;
137 return isNotAlreadyContainedIn(SubLoop->getParentLoop(), ParentLoop);
138}
139
Chris Lattner1b7f7dc2002-04-28 16:21:30 +0000140Loop *LoopInfo::ConsiderForLoop(BasicBlock *BB, const DominatorSet &DS) {
Chris Lattner699b3052002-09-26 05:32:50 +0000141 if (BBMap.find(BB) != BBMap.end()) return 0; // Haven't processed this node?
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000142
Chris Lattnera298d272002-04-28 00:15:57 +0000143 std::vector<BasicBlock *> TodoStack;
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000144
145 // Scan the predecessors of BB, checking to see if BB dominates any of
Chris Lattner99224ae2003-04-26 19:34:18 +0000146 // them. This identifies backedges which target this node...
Chris Lattnera298d272002-04-28 00:15:57 +0000147 for (pred_iterator I = pred_begin(BB), E = pred_end(BB); I != E; ++I)
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000148 if (DS.dominates(BB, *I)) // If BB dominates it's predecessor...
149 TodoStack.push_back(*I);
150
Chris Lattner99224ae2003-04-26 19:34:18 +0000151 if (TodoStack.empty()) return 0; // No backedges to this block...
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000152
153 // Create a new loop to represent this basic block...
154 Loop *L = new Loop(BB);
155 BBMap[BB] = L;
156
Chris Lattner59dc1782003-10-22 16:41:21 +0000157 BasicBlock *EntryBlock = &BB->getParent()->getEntryBlock();
158
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000159 while (!TodoStack.empty()) { // Process all the nodes in the loop
Chris Lattnera298d272002-04-28 00:15:57 +0000160 BasicBlock *X = TodoStack.back();
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000161 TodoStack.pop_back();
162
Chris Lattner59dc1782003-10-22 16:41:21 +0000163 if (!L->contains(X) && // As of yet unprocessed??
164 DS.dominates(EntryBlock, X)) { // X is reachable from entry block?
Chris Lattner99224ae2003-04-26 19:34:18 +0000165 // Check to see if this block already belongs to a loop. If this occurs
166 // then we have a case where a loop that is supposed to be a child of the
167 // current loop was processed before the current loop. When this occurs,
168 // this child loop gets added to a part of the current loop, making it a
169 // sibling to the current loop. We have to reparent this loop.
170 if (Loop *SubLoop = const_cast<Loop*>(getLoopFor(X)))
Chris Lattner39c987a2003-05-15 18:03:51 +0000171 if (SubLoop->getHeader() == X && isNotAlreadyContainedIn(SubLoop, L)) {
Chris Lattner99224ae2003-04-26 19:34:18 +0000172 // Remove the subloop from it's current parent...
173 assert(SubLoop->ParentLoop && SubLoop->ParentLoop != L);
174 Loop *SLP = SubLoop->ParentLoop; // SubLoopParent
175 std::vector<Loop*>::iterator I =
176 std::find(SLP->SubLoops.begin(), SLP->SubLoops.end(), SubLoop);
177 assert(I != SLP->SubLoops.end() && "SubLoop not a child of parent?");
178 SLP->SubLoops.erase(I); // Remove from parent...
179
180 // Add the subloop to THIS loop...
181 SubLoop->ParentLoop = L;
182 L->SubLoops.push_back(SubLoop);
183 }
184
185 // Normal case, add the block to our loop...
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000186 L->Blocks.push_back(X);
Chris Lattner99224ae2003-04-26 19:34:18 +0000187
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000188 // Add all of the predecessors of X to the end of the work stack...
Chris Lattner455889a2002-02-12 22:39:50 +0000189 TodoStack.insert(TodoStack.end(), pred_begin(X), pred_end(X));
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000190 }
191 }
192
Chris Lattner420df9b2003-02-22 21:33:11 +0000193 // If there are any loops nested within this loop, create them now!
194 for (std::vector<BasicBlock*>::iterator I = L->Blocks.begin(),
195 E = L->Blocks.end(); I != E; ++I)
196 if (Loop *NewLoop = ConsiderForLoop(*I, DS)) {
197 L->SubLoops.push_back(NewLoop);
198 NewLoop->ParentLoop = L;
199 }
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000200
Chris Lattner420df9b2003-02-22 21:33:11 +0000201 // Add the basic blocks that comprise this loop to the BBMap so that this
202 // loop can be found for them.
203 //
204 for (std::vector<BasicBlock*>::iterator I = L->Blocks.begin(),
205 E = L->Blocks.end(); I != E; ++I) {
206 std::map<BasicBlock*, Loop*>::iterator BBMI = BBMap.lower_bound(*I);
207 if (BBMI == BBMap.end() || BBMI->first != *I) // Not in map yet...
208 BBMap.insert(BBMI, std::make_pair(*I, L)); // Must be at this level
209 }
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000210
Chris Lattner7dd46b02003-08-16 20:57:16 +0000211 // Now that we have a list of all of the child loops of this loop, check to
212 // see if any of them should actually be nested inside of each other. We can
213 // accidentally pull loops our of their parents, so we must make sure to
214 // organize the loop nests correctly now.
215 {
216 std::map<BasicBlock*, Loop*> ContainingLoops;
217 for (unsigned i = 0; i != L->SubLoops.size(); ++i) {
218 Loop *Child = L->SubLoops[i];
219 assert(Child->getParentLoop() == L && "Not proper child loop?");
220
221 if (Loop *ContainingLoop = ContainingLoops[Child->getHeader()]) {
222 // If there is already a loop which contains this loop, move this loop
223 // into the containing loop.
224 MoveSiblingLoopInto(Child, ContainingLoop);
225 --i; // The loop got removed from the SubLoops list.
226 } else {
227 // This is currently considered to be a top-level loop. Check to see if
228 // any of the contained blocks are loop headers for subloops we have
229 // already processed.
230 for (unsigned b = 0, e = Child->Blocks.size(); b != e; ++b) {
231 Loop *&BlockLoop = ContainingLoops[Child->Blocks[b]];
232 if (BlockLoop == 0) { // Child block not processed yet...
233 BlockLoop = Child;
234 } else if (BlockLoop != Child) {
Chris Lattner169db9d2003-08-17 21:47:33 +0000235 Loop *SubLoop = BlockLoop;
236 // Reparent all of the blocks which used to belong to BlockLoops
237 for (unsigned j = 0, e = SubLoop->Blocks.size(); j != e; ++j)
238 ContainingLoops[SubLoop->Blocks[j]] = Child;
239
Chris Lattner7dd46b02003-08-16 20:57:16 +0000240 // There is already a loop which contains this block, that means
241 // that we should reparent the loop which the block is currently
242 // considered to belong to to be a child of this loop.
Chris Lattner169db9d2003-08-17 21:47:33 +0000243 MoveSiblingLoopInto(SubLoop, Child);
Chris Lattner7dd46b02003-08-16 20:57:16 +0000244 --i; // We just shrunk the SubLoops list.
245 }
246 }
247 }
248 }
249 }
250
Chris Lattner5f82b8a2003-02-27 00:38:34 +0000251 // Now that we know all of the blocks that make up this loop, see if there are
252 // any branches to outside of the loop... building the ExitBlocks list.
253 for (std::vector<BasicBlock*>::iterator BI = L->Blocks.begin(),
254 BE = L->Blocks.end(); BI != BE; ++BI)
255 for (succ_iterator I = succ_begin(*BI), E = succ_end(*BI); I != E; ++I)
256 if (!L->contains(*I)) // Not in current loop?
257 L->ExitBlocks.push_back(*I); // It must be an exit block...
258
Chris Lattner0bbe58f2001-11-26 18:41:20 +0000259 return L;
260}
Chris Lattner699b3052002-09-26 05:32:50 +0000261
Chris Lattner7dd46b02003-08-16 20:57:16 +0000262/// MoveSiblingLoopInto - This method moves the NewChild loop to live inside of
263/// the NewParent Loop, instead of being a sibling of it.
264void LoopInfo::MoveSiblingLoopInto(Loop *NewChild, Loop *NewParent) {
265 Loop *OldParent = NewChild->getParentLoop();
266 assert(OldParent && OldParent == NewParent->getParentLoop() &&
267 NewChild != NewParent && "Not sibling loops!");
268
269 // Remove NewChild from being a child of OldParent
270 std::vector<Loop*>::iterator I =
271 std::find(OldParent->SubLoops.begin(), OldParent->SubLoops.end(), NewChild);
272 assert(I != OldParent->SubLoops.end() && "Parent fields incorrect??");
273 OldParent->SubLoops.erase(I); // Remove from parent's subloops list
274 NewChild->ParentLoop = 0;
275
276 InsertLoopInto(NewChild, NewParent);
277}
278
279/// InsertLoopInto - This inserts loop L into the specified parent loop. If the
280/// parent loop contains a loop which should contain L, the loop gets inserted
281/// into L instead.
282void LoopInfo::InsertLoopInto(Loop *L, Loop *Parent) {
283 BasicBlock *LHeader = L->getHeader();
284 assert(Parent->contains(LHeader) && "This loop should not be inserted here!");
285
286 // Check to see if it belongs in a child loop...
287 for (unsigned i = 0, e = Parent->SubLoops.size(); i != e; ++i)
288 if (Parent->SubLoops[i]->contains(LHeader)) {
289 InsertLoopInto(L, Parent->SubLoops[i]);
290 return;
291 }
292
293 // If not, insert it here!
294 Parent->SubLoops.push_back(L);
295 L->ParentLoop = Parent;
296}
297
Chris Lattner46758a82004-04-12 20:26:17 +0000298/// changeLoopFor - Change the top-level loop that contains BB to the
299/// specified loop. This should be used by transformations that restructure
300/// the loop hierarchy tree.
301void LoopInfo::changeLoopFor(BasicBlock *BB, Loop *L) {
302 Loop *&OldLoop = BBMap[BB];
303 assert(OldLoop && "Block not in a loop yet!");
304 OldLoop = L;
305}
Chris Lattner7dd46b02003-08-16 20:57:16 +0000306
Chris Lattner46758a82004-04-12 20:26:17 +0000307/// changeTopLevelLoop - Replace the specified loop in the top-level loops
308/// list with the indicated loop.
309void LoopInfo::changeTopLevelLoop(Loop *OldLoop, Loop *NewLoop) {
310 std::vector<Loop*>::iterator I = std::find(TopLevelLoops.begin(),
311 TopLevelLoops.end(), OldLoop);
312 assert(I != TopLevelLoops.end() && "Old loop not at top level!");
313 *I = NewLoop;
314 assert(NewLoop->ParentLoop == 0 && OldLoop->ParentLoop == 0 &&
315 "Loops already embedded into a subloop!");
316}
Chris Lattner7dd46b02003-08-16 20:57:16 +0000317
Chris Lattner92020fa2004-04-15 15:16:02 +0000318//===----------------------------------------------------------------------===//
319// APIs for simple analysis of the loop.
320//
321
Chris Lattner699b3052002-09-26 05:32:50 +0000322/// getLoopPreheader - If there is a preheader for this loop, return it. A
323/// loop has a preheader if there is only one edge to the header of the loop
324/// from outside of the loop. If this is the case, the block branching to the
Chris Lattner92020fa2004-04-15 15:16:02 +0000325/// header of the loop is the preheader node.
Chris Lattner699b3052002-09-26 05:32:50 +0000326///
Chris Lattner92020fa2004-04-15 15:16:02 +0000327/// This method returns null if there is no preheader for the loop.
Chris Lattner699b3052002-09-26 05:32:50 +0000328///
329BasicBlock *Loop::getLoopPreheader() const {
330 // Keep track of nodes outside the loop branching to the header...
331 BasicBlock *Out = 0;
332
333 // Loop over the predecessors of the header node...
334 BasicBlock *Header = getHeader();
335 for (pred_iterator PI = pred_begin(Header), PE = pred_end(Header);
336 PI != PE; ++PI)
Chris Lattnerc8f25d92002-09-29 22:59:29 +0000337 if (!contains(*PI)) { // If the block is not in the loop...
338 if (Out && Out != *PI)
339 return 0; // Multiple predecessors outside the loop
Chris Lattner699b3052002-09-26 05:32:50 +0000340 Out = *PI;
341 }
Chris Lattner5a8a2912003-02-27 21:51:38 +0000342
343 // Make sure there is only one exit out of the preheader...
344 succ_iterator SI = succ_begin(Out);
345 ++SI;
346 if (SI != succ_end(Out))
347 return 0; // Multiple exits from the block, must not be a preheader.
348
Chris Lattner699b3052002-09-26 05:32:50 +0000349
350 // If there is exactly one preheader, return it. If there was zero, then Out
351 // is still null.
352 return Out;
353}
354
Chris Lattner92020fa2004-04-15 15:16:02 +0000355/// getCanonicalInductionVariable - Check to see if the loop has a canonical
356/// induction variable: an integer recurrence that starts at 0 and increments by
357/// one each time through the loop. If so, return the phi node that corresponds
358/// to it.
359///
360PHINode *Loop::getCanonicalInductionVariable() const {
361 BasicBlock *H = getHeader();
362
363 BasicBlock *Incoming = 0, *Backedge = 0;
364 pred_iterator PI = pred_begin(H);
365 assert(PI != pred_end(H) && "Loop must have at least one backedge!");
366 Backedge = *PI++;
367 if (PI == pred_end(H)) return 0; // dead loop
368 Incoming = *PI++;
369 if (PI != pred_end(H)) return 0; // multiple backedges?
370
371 if (contains(Incoming)) {
372 if (contains(Backedge))
373 return 0;
374 std::swap(Incoming, Backedge);
375 } else if (!contains(Backedge))
376 return 0;
377
378 // Loop over all of the PHI nodes, looking for a canonical indvar.
379 for (BasicBlock::iterator I = H->begin();
380 PHINode *PN = dyn_cast<PHINode>(I); ++I)
381 if (Instruction *Inc =
382 dyn_cast<Instruction>(PN->getIncomingValueForBlock(Backedge)))
383 if (Inc->getOpcode() == Instruction::Add && Inc->getOperand(0) == PN)
384 if (ConstantInt *CI = dyn_cast<ConstantInt>(Inc->getOperand(1)))
385 if (CI->equalsInt(1))
386 return PN;
387
388 return 0;
389}
390
391/// getCanonicalInductionVariableIncrement - Return the LLVM value that holds
392/// the canonical induction variable value for the "next" iteration of the loop.
393/// This always succeeds if getCanonicalInductionVariable succeeds.
394///
395Instruction *Loop::getCanonicalInductionVariableIncrement() const {
396 if (PHINode *PN = getCanonicalInductionVariable()) {
397 bool P1InLoop = contains(PN->getIncomingBlock(1));
398 return cast<Instruction>(PN->getIncomingValue(P1InLoop));
399 }
400 return 0;
401}
402
403/// getTripCount - Return a loop-invariant LLVM value indicating the number of
404/// times the loop will be executed. Note that this means that the backedge of
405/// the loop executes N-1 times. If the trip-count cannot be determined, this
406/// returns null.
407///
408Value *Loop::getTripCount() const {
409 // Canonical loops will end with a 'setne I, V', where I is the incremented
410 // canonical induction variable and V is the trip count of the loop.
411 Instruction *Inc = getCanonicalInductionVariableIncrement();
412 PHINode *IV = cast<PHINode>(Inc->getOperand(0));
413
414 BasicBlock *BackedgeBlock =
415 IV->getIncomingBlock(contains(IV->getIncomingBlock(1)));
416
417 if (BranchInst *BI = dyn_cast<BranchInst>(BackedgeBlock->getTerminator()))
418 if (SetCondInst *SCI = dyn_cast<SetCondInst>(BI->getCondition()))
419 if (SCI->getOperand(0) == Inc)
420 if (BI->getSuccessor(0) == getHeader()) {
421 if (SCI->getOpcode() == Instruction::SetNE)
422 return SCI->getOperand(1);
423 } else if (SCI->getOpcode() == Instruction::SetEQ) {
424 return SCI->getOperand(1);
425 }
426
427 return 0;
428}
429
430
431//===-------------------------------------------------------------------===//
432// APIs for updating loop information after changing the CFG
433//
434
Chris Lattner699b3052002-09-26 05:32:50 +0000435/// addBasicBlockToLoop - This function is used by other analyses to update loop
436/// information. NewBB is set to be a new member of the current loop. Because
437/// of this, it is added as a member of all parent loops, and is added to the
438/// specified LoopInfo object as being in the current basic block. It is not
439/// valid to replace the loop header with this method.
440///
441void Loop::addBasicBlockToLoop(BasicBlock *NewBB, LoopInfo &LI) {
Chris Lattner46758a82004-04-12 20:26:17 +0000442 assert((Blocks.empty() || LI[getHeader()] == this) &&
443 "Incorrect LI specified for this loop!");
Chris Lattner699b3052002-09-26 05:32:50 +0000444 assert(NewBB && "Cannot add a null basic block to the loop!");
445 assert(LI[NewBB] == 0 && "BasicBlock already in the loop!");
446
447 // Add the loop mapping to the LoopInfo object...
448 LI.BBMap[NewBB] = this;
449
450 // Add the basic block to this loop and all parent loops...
451 Loop *L = this;
452 while (L) {
453 L->Blocks.push_back(NewBB);
454 L = L->getParentLoop();
455 }
456}
Chris Lattner5f82b8a2003-02-27 00:38:34 +0000457
Chris Lattnerf2e29252003-02-27 22:37:44 +0000458/// changeExitBlock - This method is used to update loop information. All
459/// instances of the specified Old basic block are removed from the exit list
Chris Lattner5f82b8a2003-02-27 00:38:34 +0000460/// and replaced with New.
461///
462void Loop::changeExitBlock(BasicBlock *Old, BasicBlock *New) {
463 assert(Old != New && "Cannot changeExitBlock to the same thing!");
464 assert(Old && New && "Cannot changeExitBlock to or from a null node!");
Chris Lattnera94837a2003-02-27 22:48:08 +0000465 assert(hasExitBlock(Old) && "Old exit block not found!");
466 std::vector<BasicBlock*>::iterator
467 I = std::find(ExitBlocks.begin(), ExitBlocks.end(), Old);
Chris Lattnerf2e29252003-02-27 22:37:44 +0000468 while (I != ExitBlocks.end()) {
469 *I = New;
470 I = std::find(I+1, ExitBlocks.end(), Old);
471 }
Chris Lattner5f82b8a2003-02-27 00:38:34 +0000472}
Brian Gaeked0fde302003-11-11 22:41:34 +0000473
Chris Lattner46758a82004-04-12 20:26:17 +0000474/// replaceChildLoopWith - This is used when splitting loops up. It replaces
475/// the OldChild entry in our children list with NewChild, and updates the
476/// parent pointers of the two loops as appropriate.
477void Loop::replaceChildLoopWith(Loop *OldChild, Loop *NewChild) {
478 assert(OldChild->ParentLoop == this && "This loop is already broken!");
479 assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!");
480 std::vector<Loop*>::iterator I = std::find(SubLoops.begin(), SubLoops.end(),
481 OldChild);
482 assert(I != SubLoops.end() && "OldChild not in loop!");
483 *I = NewChild;
484 OldChild->ParentLoop = 0;
485 NewChild->ParentLoop = this;
486
487 // Update the loop depth of the new child.
488 NewChild->setLoopDepth(LoopDepth+1);
489}
490
491/// addChildLoop - Add the specified loop to be a child of this loop.
492///
493void Loop::addChildLoop(Loop *NewChild) {
494 assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!");
495 NewChild->ParentLoop = this;
496 SubLoops.push_back(NewChild);
497
498 // Update the loop depth of the new child.
499 NewChild->setLoopDepth(LoopDepth+1);
500}
501
502template<typename T>
503static void RemoveFromVector(std::vector<T*> &V, T *N) {
504 typename std::vector<T*>::iterator I = std::find(V.begin(), V.end(), N);
505 assert(I != V.end() && "N is not in this list!");
506 V.erase(I);
507}
508
509/// removeChildLoop - This removes the specified child from being a subloop of
510/// this loop. The loop is not deleted, as it will presumably be inserted
511/// into another loop.
512Loop *Loop::removeChildLoop(iterator I) {
513 assert(I != SubLoops.end() && "Cannot remove end iterator!");
514 Loop *Child = *I;
515 assert(Child->ParentLoop == this && "Child is not a child of this loop!");
516 SubLoops.erase(SubLoops.begin()+(I-begin()));
517 Child->ParentLoop = 0;
518 return Child;
519}
520
521
522/// removeBlockFromLoop - This removes the specified basic block from the
523/// current loop, updating the Blocks and ExitBlocks lists as appropriate. This
524/// does not update the mapping in the LoopInfo class.
525void Loop::removeBlockFromLoop(BasicBlock *BB) {
526 RemoveFromVector(Blocks, BB);
527
528 // If this block branched out of this loop, remove any exit blocks entries due
529 // to it.
530 for (succ_iterator SI = succ_begin(BB), E = succ_end(BB); SI != E; ++SI)
531 if (!contains(*SI) && *SI != BB)
532 RemoveFromVector(ExitBlocks, *SI);
533
534 // If any blocks in this loop branch to BB, add it to the exit blocks set.
535 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI)
536 if (contains(*PI))
537 ExitBlocks.push_back(BB);
538}