Completely purge DomSet from LoopSimplify. This is part of the
[oota-llvm.git] / lib / Transforms / Utils / LoopSimplify.cpp
1 //===- LoopSimplify.cpp - Loop Canonicalization Pass ----------------------===//
2 //
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 //===----------------------------------------------------------------------===//
9 //
10 // This pass performs several transformations to transform natural loops into a
11 // simpler form, which makes subsequent analyses and transformations simpler and
12 // more effective.
13 //
14 // Loop pre-header insertion guarantees that there is a single, non-critical
15 // entry edge from outside of the loop to the loop header.  This simplifies a
16 // number of analyses and transformations, such as LICM.
17 //
18 // Loop exit-block insertion guarantees that all exit blocks from the loop
19 // (blocks which are outside of the loop that have predecessors inside of the
20 // loop) only have predecessors from inside of the loop (and are thus dominated
21 // by the loop header).  This simplifies transformations such as store-sinking
22 // that are built into LICM.
23 //
24 // This pass also guarantees that loops will have exactly one backedge.
25 //
26 // Note that the simplifycfg pass will clean up blocks which are split out but
27 // end up being unnecessary, so usage of this pass should not pessimize
28 // generated code.
29 //
30 // This pass obviously modifies the CFG, but updates loop information and
31 // dominator information.
32 //
33 //===----------------------------------------------------------------------===//
34
35 #define DEBUG_TYPE "loopsimplify"
36 #include "llvm/Transforms/Scalar.h"
37 #include "llvm/Constant.h"
38 #include "llvm/Instructions.h"
39 #include "llvm/Function.h"
40 #include "llvm/Type.h"
41 #include "llvm/Analysis/AliasAnalysis.h"
42 #include "llvm/Analysis/Dominators.h"
43 #include "llvm/Analysis/LoopInfo.h"
44 #include "llvm/Support/CFG.h"
45 #include "llvm/Support/Compiler.h"
46 #include "llvm/ADT/SetOperations.h"
47 #include "llvm/ADT/SetVector.h"
48 #include "llvm/ADT/Statistic.h"
49 #include "llvm/ADT/DepthFirstIterator.h"
50 using namespace llvm;
51
52 STATISTIC(NumInserted, "Number of pre-header or exit blocks inserted");
53 STATISTIC(NumNested  , "Number of nested loops split out");
54
55 namespace {
56   struct VISIBILITY_HIDDEN LoopSimplify : public FunctionPass {
57     // AA - If we have an alias analysis object to update, this is it, otherwise
58     // this is null.
59     AliasAnalysis *AA;
60     LoopInfo *LI;
61
62     virtual bool runOnFunction(Function &F);
63
64     virtual void getAnalysisUsage(AnalysisUsage &AU) const {
65       // We need loop information to identify the loops...
66       AU.addRequired<LoopInfo>();
67       AU.addRequired<DominatorTree>();
68       AU.addRequired<ETForest>();
69
70       AU.addPreserved<LoopInfo>();
71       AU.addPreserved<ImmediateDominators>();
72       AU.addPreserved<ETForest>();
73       AU.addPreserved<DominatorTree>();
74       AU.addPreserved<DominanceFrontier>();
75       AU.addPreservedID(BreakCriticalEdgesID);  // No critical edges added.
76     }
77   private:
78     bool ProcessLoop(Loop *L);
79     BasicBlock *SplitBlockPredecessors(BasicBlock *BB, const char *Suffix,
80                                        const std::vector<BasicBlock*> &Preds);
81     BasicBlock *RewriteLoopExitBlock(Loop *L, BasicBlock *Exit);
82     void InsertPreheaderForLoop(Loop *L);
83     Loop *SeparateNestedLoop(Loop *L);
84     void InsertUniqueBackedgeBlock(Loop *L);
85     void PlaceSplitBlockCarefully(BasicBlock *NewBB,
86                                   std::vector<BasicBlock*> &SplitPreds,
87                                   Loop *L);
88       
89     void UpdateDomInfoForRevectoredPreds(BasicBlock *NewBB,
90                                          std::vector<BasicBlock*> &PredBlocks);
91   };
92
93   RegisterPass<LoopSimplify>
94   X("loopsimplify", "Canonicalize natural loops", true);
95 }
96
97 // Publically exposed interface to pass...
98 const PassInfo *llvm::LoopSimplifyID = X.getPassInfo();
99 FunctionPass *llvm::createLoopSimplifyPass() { return new LoopSimplify(); }
100
101 /// runOnFunction - Run down all loops in the CFG (recursively, but we could do
102 /// it in any convenient order) inserting preheaders...
103 ///
104 bool LoopSimplify::runOnFunction(Function &F) {
105   bool Changed = false;
106   LI = &getAnalysis<LoopInfo>();
107   AA = getAnalysisToUpdate<AliasAnalysis>();
108
109   // Check to see that no blocks (other than the header) in loops have
110   // predecessors that are not in loops.  This is not valid for natural loops,
111   // but can occur if the blocks are unreachable.  Since they are unreachable we
112   // can just shamelessly destroy their terminators to make them not branch into
113   // the loop!
114   for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
115     // This case can only occur for unreachable blocks.  Blocks that are
116     // unreachable can't be in loops, so filter those blocks out.
117     if (LI->getLoopFor(BB)) continue;
118     
119     bool BlockUnreachable = false;
120     TerminatorInst *TI = BB->getTerminator();
121
122     // Check to see if any successors of this block are non-loop-header loops
123     // that are not the header.
124     for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i) {
125       // If this successor is not in a loop, BB is clearly ok.
126       Loop *L = LI->getLoopFor(TI->getSuccessor(i));
127       if (!L) continue;
128       
129       // If the succ is the loop header, and if L is a top-level loop, then this
130       // is an entrance into a loop through the header, which is also ok.
131       if (L->getHeader() == TI->getSuccessor(i) && L->getParentLoop() == 0)
132         continue;
133       
134       // Otherwise, this is an entrance into a loop from some place invalid.
135       // Either the loop structure is invalid and this is not a natural loop (in
136       // which case the compiler is buggy somewhere else) or BB is unreachable.
137       BlockUnreachable = true;
138       break;
139     }
140     
141     // If this block is ok, check the next one.
142     if (!BlockUnreachable) continue;
143     
144     // Otherwise, this block is dead.  To clean up the CFG and to allow later
145     // loop transformations to ignore this case, we delete the edges into the
146     // loop by replacing the terminator.
147     
148     // Remove PHI entries from the successors.
149     for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i)
150       TI->getSuccessor(i)->removePredecessor(BB);
151    
152     // Add a new unreachable instruction.
153     new UnreachableInst(TI);
154     
155     // Delete the dead terminator.
156     if (AA) AA->deleteValue(&BB->back());
157     BB->getInstList().pop_back();
158     Changed |= true;
159   }
160   
161   for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I)
162     Changed |= ProcessLoop(*I);
163
164   return Changed;
165 }
166
167 /// ProcessLoop - Walk the loop structure in depth first order, ensuring that
168 /// all loops have preheaders.
169 ///
170 bool LoopSimplify::ProcessLoop(Loop *L) {
171   bool Changed = false;
172 ReprocessLoop:
173   
174   // Canonicalize inner loops before outer loops.  Inner loop canonicalization
175   // can provide work for the outer loop to canonicalize.
176   for (Loop::iterator I = L->begin(), E = L->end(); I != E; ++I)
177     Changed |= ProcessLoop(*I);
178   
179   assert(L->getBlocks()[0] == L->getHeader() &&
180          "Header isn't first block in loop?");
181
182   // Does the loop already have a preheader?  If so, don't insert one.
183   if (L->getLoopPreheader() == 0) {
184     InsertPreheaderForLoop(L);
185     NumInserted++;
186     Changed = true;
187   }
188
189   // Next, check to make sure that all exit nodes of the loop only have
190   // predecessors that are inside of the loop.  This check guarantees that the
191   // loop preheader/header will dominate the exit blocks.  If the exit block has
192   // predecessors from outside of the loop, split the edge now.
193   std::vector<BasicBlock*> ExitBlocks;
194   L->getExitBlocks(ExitBlocks);
195     
196   SetVector<BasicBlock*> ExitBlockSet(ExitBlocks.begin(), ExitBlocks.end());
197   for (SetVector<BasicBlock*>::iterator I = ExitBlockSet.begin(),
198          E = ExitBlockSet.end(); I != E; ++I) {
199     BasicBlock *ExitBlock = *I;
200     for (pred_iterator PI = pred_begin(ExitBlock), PE = pred_end(ExitBlock);
201          PI != PE; ++PI)
202       // Must be exactly this loop: no subloops, parent loops, or non-loop preds
203       // allowed.
204       if (!L->contains(*PI)) {
205         RewriteLoopExitBlock(L, ExitBlock);
206         NumInserted++;
207         Changed = true;
208         break;
209       }
210   }
211
212   // If the header has more than two predecessors at this point (from the
213   // preheader and from multiple backedges), we must adjust the loop.
214   unsigned NumBackedges = L->getNumBackEdges();
215   if (NumBackedges != 1) {
216     // If this is really a nested loop, rip it out into a child loop.  Don't do
217     // this for loops with a giant number of backedges, just factor them into a
218     // common backedge instead.
219     if (NumBackedges < 8) {
220       if (Loop *NL = SeparateNestedLoop(L)) {
221         ++NumNested;
222         // This is a big restructuring change, reprocess the whole loop.
223         ProcessLoop(NL);
224         Changed = true;
225         // GCC doesn't tail recursion eliminate this.
226         goto ReprocessLoop;
227       }
228     }
229
230     // If we either couldn't, or didn't want to, identify nesting of the loops,
231     // insert a new block that all backedges target, then make it jump to the
232     // loop header.
233     InsertUniqueBackedgeBlock(L);
234     NumInserted++;
235     Changed = true;
236   }
237
238   // Scan over the PHI nodes in the loop header.  Since they now have only two
239   // incoming values (the loop is canonicalized), we may have simplified the PHI
240   // down to 'X = phi [X, Y]', which should be replaced with 'Y'.
241   PHINode *PN;
242   for (BasicBlock::iterator I = L->getHeader()->begin();
243        (PN = dyn_cast<PHINode>(I++)); )
244     if (Value *V = PN->hasConstantValue()) {
245         PN->replaceAllUsesWith(V);
246         PN->eraseFromParent();
247       }
248
249   return Changed;
250 }
251
252 /// SplitBlockPredecessors - Split the specified block into two blocks.  We want
253 /// to move the predecessors specified in the Preds list to point to the new
254 /// block, leaving the remaining predecessors pointing to BB.  This method
255 /// updates the SSA PHINode's, but no other analyses.
256 ///
257 BasicBlock *LoopSimplify::SplitBlockPredecessors(BasicBlock *BB,
258                                                  const char *Suffix,
259                                        const std::vector<BasicBlock*> &Preds) {
260
261   // Create new basic block, insert right before the original block...
262   BasicBlock *NewBB = new BasicBlock(BB->getName()+Suffix, BB->getParent(), BB);
263
264   // The preheader first gets an unconditional branch to the loop header...
265   BranchInst *BI = new BranchInst(BB, NewBB);
266
267   // For every PHI node in the block, insert a PHI node into NewBB where the
268   // incoming values from the out of loop edges are moved to NewBB.  We have two
269   // possible cases here.  If the loop is dead, we just insert dummy entries
270   // into the PHI nodes for the new edge.  If the loop is not dead, we move the
271   // incoming edges in BB into new PHI nodes in NewBB.
272   //
273   if (!Preds.empty()) {  // Is the loop not obviously dead?
274     // Check to see if the values being merged into the new block need PHI
275     // nodes.  If so, insert them.
276     for (BasicBlock::iterator I = BB->begin(); isa<PHINode>(I); ) {
277       PHINode *PN = cast<PHINode>(I);
278       ++I;
279
280       // Check to see if all of the values coming in are the same.  If so, we
281       // don't need to create a new PHI node.
282       Value *InVal = PN->getIncomingValueForBlock(Preds[0]);
283       for (unsigned i = 1, e = Preds.size(); i != e; ++i)
284         if (InVal != PN->getIncomingValueForBlock(Preds[i])) {
285           InVal = 0;
286           break;
287         }
288
289       // If the values coming into the block are not the same, we need a PHI.
290       if (InVal == 0) {
291         // Create the new PHI node, insert it into NewBB at the end of the block
292         PHINode *NewPHI = new PHINode(PN->getType(), PN->getName()+".ph", BI);
293         if (AA) AA->copyValue(PN, NewPHI);
294
295         // Move all of the edges from blocks outside the loop to the new PHI
296         for (unsigned i = 0, e = Preds.size(); i != e; ++i) {
297           Value *V = PN->removeIncomingValue(Preds[i], false);
298           NewPHI->addIncoming(V, Preds[i]);
299         }
300         InVal = NewPHI;
301       } else {
302         // Remove all of the edges coming into the PHI nodes from outside of the
303         // block.
304         for (unsigned i = 0, e = Preds.size(); i != e; ++i)
305           PN->removeIncomingValue(Preds[i], false);
306       }
307
308       // Add an incoming value to the PHI node in the loop for the preheader
309       // edge.
310       PN->addIncoming(InVal, NewBB);
311
312       // Can we eliminate this phi node now?
313       if (Value *V = PN->hasConstantValue(true)) {
314         if (!isa<Instruction>(V) ||
315             getAnalysis<ETForest>().dominates(cast<Instruction>(V), PN)) {
316           PN->replaceAllUsesWith(V);
317           if (AA) AA->deleteValue(PN);
318           BB->getInstList().erase(PN);
319         }
320       }
321     }
322
323     // Now that the PHI nodes are updated, actually move the edges from
324     // Preds to point to NewBB instead of BB.
325     //
326     for (unsigned i = 0, e = Preds.size(); i != e; ++i) {
327       TerminatorInst *TI = Preds[i]->getTerminator();
328       for (unsigned s = 0, e = TI->getNumSuccessors(); s != e; ++s)
329         if (TI->getSuccessor(s) == BB)
330           TI->setSuccessor(s, NewBB);
331     }
332
333   } else {                       // Otherwise the loop is dead...
334     for (BasicBlock::iterator I = BB->begin(); isa<PHINode>(I); ++I) {
335       PHINode *PN = cast<PHINode>(I);
336       // Insert dummy values as the incoming value...
337       PN->addIncoming(Constant::getNullValue(PN->getType()), NewBB);
338     }
339   }
340   return NewBB;
341 }
342
343 /// InsertPreheaderForLoop - Once we discover that a loop doesn't have a
344 /// preheader, this method is called to insert one.  This method has two phases:
345 /// preheader insertion and analysis updating.
346 ///
347 void LoopSimplify::InsertPreheaderForLoop(Loop *L) {
348   BasicBlock *Header = L->getHeader();
349
350   // Compute the set of predecessors of the loop that are not in the loop.
351   std::vector<BasicBlock*> OutsideBlocks;
352   for (pred_iterator PI = pred_begin(Header), PE = pred_end(Header);
353        PI != PE; ++PI)
354     if (!L->contains(*PI))           // Coming in from outside the loop?
355       OutsideBlocks.push_back(*PI);  // Keep track of it...
356
357   // Split out the loop pre-header.
358   BasicBlock *NewBB =
359     SplitBlockPredecessors(Header, ".preheader", OutsideBlocks);
360   
361
362   //===--------------------------------------------------------------------===//
363   //  Update analysis results now that we have performed the transformation
364   //
365
366   // We know that we have loop information to update... update it now.
367   if (Loop *Parent = L->getParentLoop())
368     Parent->addBasicBlockToLoop(NewBB, *LI);
369
370   UpdateDomInfoForRevectoredPreds(NewBB, OutsideBlocks);
371   
372   // Make sure that NewBB is put someplace intelligent, which doesn't mess up
373   // code layout too horribly.
374   PlaceSplitBlockCarefully(NewBB, OutsideBlocks, L);
375 }
376
377 /// RewriteLoopExitBlock - Ensure that the loop preheader dominates all exit
378 /// blocks.  This method is used to split exit blocks that have predecessors
379 /// outside of the loop.
380 BasicBlock *LoopSimplify::RewriteLoopExitBlock(Loop *L, BasicBlock *Exit) {
381   std::vector<BasicBlock*> LoopBlocks;
382   for (pred_iterator I = pred_begin(Exit), E = pred_end(Exit); I != E; ++I)
383     if (L->contains(*I))
384       LoopBlocks.push_back(*I);
385
386   assert(!LoopBlocks.empty() && "No edges coming in from outside the loop?");
387   BasicBlock *NewBB = SplitBlockPredecessors(Exit, ".loopexit", LoopBlocks);
388
389   // Update Loop Information - we know that the new block will be in whichever
390   // loop the Exit block is in.  Note that it may not be in that immediate loop,
391   // if the successor is some other loop header.  In that case, we continue 
392   // walking up the loop tree to find a loop that contains both the successor
393   // block and the predecessor block.
394   Loop *SuccLoop = LI->getLoopFor(Exit);
395   while (SuccLoop && !SuccLoop->contains(L->getHeader()))
396     SuccLoop = SuccLoop->getParentLoop();
397   if (SuccLoop)
398     SuccLoop->addBasicBlockToLoop(NewBB, *LI);
399
400   // Update dominator information (set, immdom, domtree, and domfrontier)
401   UpdateDomInfoForRevectoredPreds(NewBB, LoopBlocks);
402   return NewBB;
403 }
404
405 /// AddBlockAndPredsToSet - Add the specified block, and all of its
406 /// predecessors, to the specified set, if it's not already in there.  Stop
407 /// predecessor traversal when we reach StopBlock.
408 static void AddBlockAndPredsToSet(BasicBlock *BB, BasicBlock *StopBlock,
409                                   std::set<BasicBlock*> &Blocks) {
410   if (!Blocks.insert(BB).second) return;  // already processed.
411   if (BB == StopBlock) return;  // Stop here!
412
413   for (pred_iterator I = pred_begin(BB), E = pred_end(BB); I != E; ++I)
414     AddBlockAndPredsToSet(*I, StopBlock, Blocks);
415 }
416
417 /// FindPHIToPartitionLoops - The first part of loop-nestification is to find a
418 /// PHI node that tells us how to partition the loops.
419 static PHINode *FindPHIToPartitionLoops(Loop *L, ETForest *EF, 
420                                         AliasAnalysis *AA) {
421   for (BasicBlock::iterator I = L->getHeader()->begin(); isa<PHINode>(I); ) {
422     PHINode *PN = cast<PHINode>(I);
423     ++I;
424     if (Value *V = PN->hasConstantValue())
425       if (!isa<Instruction>(V) || EF->dominates(cast<Instruction>(V), PN)) {
426         // This is a degenerate PHI already, don't modify it!
427         PN->replaceAllUsesWith(V);
428         if (AA) AA->deleteValue(PN);
429         PN->eraseFromParent();
430         continue;
431       }
432
433     // Scan this PHI node looking for a use of the PHI node by itself.
434     for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
435       if (PN->getIncomingValue(i) == PN &&
436           L->contains(PN->getIncomingBlock(i)))
437         // We found something tasty to remove.
438         return PN;
439   }
440   return 0;
441 }
442
443 // PlaceSplitBlockCarefully - If the block isn't already, move the new block to
444 // right after some 'outside block' block.  This prevents the preheader from
445 // being placed inside the loop body, e.g. when the loop hasn't been rotated.
446 void LoopSimplify::PlaceSplitBlockCarefully(BasicBlock *NewBB,
447                                             std::vector<BasicBlock*>&SplitPreds,
448                                             Loop *L) {
449   // Check to see if NewBB is already well placed.
450   Function::iterator BBI = NewBB; --BBI;
451   for (unsigned i = 0, e = SplitPreds.size(); i != e; ++i) {
452     if (&*BBI == SplitPreds[i])
453       return;
454   }
455   
456   // If it isn't already after an outside block, move it after one.  This is
457   // always good as it makes the uncond branch from the outside block into a
458   // fall-through.
459   
460   // Figure out *which* outside block to put this after.  Prefer an outside
461   // block that neighbors a BB actually in the loop.
462   BasicBlock *FoundBB = 0;
463   for (unsigned i = 0, e = SplitPreds.size(); i != e; ++i) {
464     Function::iterator BBI = SplitPreds[i];
465     if (++BBI != NewBB->getParent()->end() && 
466         L->contains(BBI)) {
467       FoundBB = SplitPreds[i];
468       break;
469     }
470   }
471   
472   // If our heuristic for a *good* bb to place this after doesn't find
473   // anything, just pick something.  It's likely better than leaving it within
474   // the loop.
475   if (!FoundBB)
476     FoundBB = SplitPreds[0];
477   NewBB->moveAfter(FoundBB);
478 }
479
480
481 /// SeparateNestedLoop - If this loop has multiple backedges, try to pull one of
482 /// them out into a nested loop.  This is important for code that looks like
483 /// this:
484 ///
485 ///  Loop:
486 ///     ...
487 ///     br cond, Loop, Next
488 ///     ...
489 ///     br cond2, Loop, Out
490 ///
491 /// To identify this common case, we look at the PHI nodes in the header of the
492 /// loop.  PHI nodes with unchanging values on one backedge correspond to values
493 /// that change in the "outer" loop, but not in the "inner" loop.
494 ///
495 /// If we are able to separate out a loop, return the new outer loop that was
496 /// created.
497 ///
498 Loop *LoopSimplify::SeparateNestedLoop(Loop *L) {
499   ETForest *EF = getAnalysisToUpdate<ETForest>();
500   PHINode *PN = FindPHIToPartitionLoops(L, EF, AA);
501   if (PN == 0) return 0;  // No known way to partition.
502
503   // Pull out all predecessors that have varying values in the loop.  This
504   // handles the case when a PHI node has multiple instances of itself as
505   // arguments.
506   std::vector<BasicBlock*> OuterLoopPreds;
507   for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
508     if (PN->getIncomingValue(i) != PN ||
509         !L->contains(PN->getIncomingBlock(i)))
510       OuterLoopPreds.push_back(PN->getIncomingBlock(i));
511
512   BasicBlock *Header = L->getHeader();
513   BasicBlock *NewBB = SplitBlockPredecessors(Header, ".outer", OuterLoopPreds);
514
515   // Update dominator information (set, immdom, domtree, and domfrontier)
516   UpdateDomInfoForRevectoredPreds(NewBB, OuterLoopPreds);
517
518   // Make sure that NewBB is put someplace intelligent, which doesn't mess up
519   // code layout too horribly.
520   PlaceSplitBlockCarefully(NewBB, OuterLoopPreds, L);
521   
522   // Create the new outer loop.
523   Loop *NewOuter = new Loop();
524
525   // Change the parent loop to use the outer loop as its child now.
526   if (Loop *Parent = L->getParentLoop())
527     Parent->replaceChildLoopWith(L, NewOuter);
528   else
529     LI->changeTopLevelLoop(L, NewOuter);
530
531   // This block is going to be our new header block: add it to this loop and all
532   // parent loops.
533   NewOuter->addBasicBlockToLoop(NewBB, *LI);
534
535   // L is now a subloop of our outer loop.
536   NewOuter->addChildLoop(L);
537
538   for (unsigned i = 0, e = L->getBlocks().size(); i != e; ++i)
539     NewOuter->addBlockEntry(L->getBlocks()[i]);
540
541   // Determine which blocks should stay in L and which should be moved out to
542   // the Outer loop now.
543   std::set<BasicBlock*> BlocksInL;
544   for (pred_iterator PI = pred_begin(Header), E = pred_end(Header); PI!=E; ++PI)
545     if (EF->dominates(Header, *PI))
546       AddBlockAndPredsToSet(*PI, Header, BlocksInL);
547
548
549   // Scan all of the loop children of L, moving them to OuterLoop if they are
550   // not part of the inner loop.
551   for (Loop::iterator I = L->begin(); I != L->end(); )
552     if (BlocksInL.count((*I)->getHeader()))
553       ++I;   // Loop remains in L
554     else
555       NewOuter->addChildLoop(L->removeChildLoop(I));
556
557   // Now that we know which blocks are in L and which need to be moved to
558   // OuterLoop, move any blocks that need it.
559   for (unsigned i = 0; i != L->getBlocks().size(); ++i) {
560     BasicBlock *BB = L->getBlocks()[i];
561     if (!BlocksInL.count(BB)) {
562       // Move this block to the parent, updating the exit blocks sets
563       L->removeBlockFromLoop(BB);
564       if ((*LI)[BB] == L)
565         LI->changeLoopFor(BB, NewOuter);
566       --i;
567     }
568   }
569
570   return NewOuter;
571 }
572
573
574
575 /// InsertUniqueBackedgeBlock - This method is called when the specified loop
576 /// has more than one backedge in it.  If this occurs, revector all of these
577 /// backedges to target a new basic block and have that block branch to the loop
578 /// header.  This ensures that loops have exactly one backedge.
579 ///
580 void LoopSimplify::InsertUniqueBackedgeBlock(Loop *L) {
581   assert(L->getNumBackEdges() > 1 && "Must have > 1 backedge!");
582
583   // Get information about the loop
584   BasicBlock *Preheader = L->getLoopPreheader();
585   BasicBlock *Header = L->getHeader();
586   Function *F = Header->getParent();
587
588   // Figure out which basic blocks contain back-edges to the loop header.
589   std::vector<BasicBlock*> BackedgeBlocks;
590   for (pred_iterator I = pred_begin(Header), E = pred_end(Header); I != E; ++I)
591     if (*I != Preheader) BackedgeBlocks.push_back(*I);
592
593   // Create and insert the new backedge block...
594   BasicBlock *BEBlock = new BasicBlock(Header->getName()+".backedge", F);
595   BranchInst *BETerminator = new BranchInst(Header, BEBlock);
596
597   // Move the new backedge block to right after the last backedge block.
598   Function::iterator InsertPos = BackedgeBlocks.back(); ++InsertPos;
599   F->getBasicBlockList().splice(InsertPos, F->getBasicBlockList(), BEBlock);
600
601   // Now that the block has been inserted into the function, create PHI nodes in
602   // the backedge block which correspond to any PHI nodes in the header block.
603   for (BasicBlock::iterator I = Header->begin(); isa<PHINode>(I); ++I) {
604     PHINode *PN = cast<PHINode>(I);
605     PHINode *NewPN = new PHINode(PN->getType(), PN->getName()+".be",
606                                  BETerminator);
607     NewPN->reserveOperandSpace(BackedgeBlocks.size());
608     if (AA) AA->copyValue(PN, NewPN);
609
610     // Loop over the PHI node, moving all entries except the one for the
611     // preheader over to the new PHI node.
612     unsigned PreheaderIdx = ~0U;
613     bool HasUniqueIncomingValue = true;
614     Value *UniqueValue = 0;
615     for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
616       BasicBlock *IBB = PN->getIncomingBlock(i);
617       Value *IV = PN->getIncomingValue(i);
618       if (IBB == Preheader) {
619         PreheaderIdx = i;
620       } else {
621         NewPN->addIncoming(IV, IBB);
622         if (HasUniqueIncomingValue) {
623           if (UniqueValue == 0)
624             UniqueValue = IV;
625           else if (UniqueValue != IV)
626             HasUniqueIncomingValue = false;
627         }
628       }
629     }
630
631     // Delete all of the incoming values from the old PN except the preheader's
632     assert(PreheaderIdx != ~0U && "PHI has no preheader entry??");
633     if (PreheaderIdx != 0) {
634       PN->setIncomingValue(0, PN->getIncomingValue(PreheaderIdx));
635       PN->setIncomingBlock(0, PN->getIncomingBlock(PreheaderIdx));
636     }
637     // Nuke all entries except the zero'th.
638     for (unsigned i = 0, e = PN->getNumIncomingValues()-1; i != e; ++i)
639       PN->removeIncomingValue(e-i, false);
640
641     // Finally, add the newly constructed PHI node as the entry for the BEBlock.
642     PN->addIncoming(NewPN, BEBlock);
643
644     // As an optimization, if all incoming values in the new PhiNode (which is a
645     // subset of the incoming values of the old PHI node) have the same value,
646     // eliminate the PHI Node.
647     if (HasUniqueIncomingValue) {
648       NewPN->replaceAllUsesWith(UniqueValue);
649       if (AA) AA->deleteValue(NewPN);
650       BEBlock->getInstList().erase(NewPN);
651     }
652   }
653
654   // Now that all of the PHI nodes have been inserted and adjusted, modify the
655   // backedge blocks to just to the BEBlock instead of the header.
656   for (unsigned i = 0, e = BackedgeBlocks.size(); i != e; ++i) {
657     TerminatorInst *TI = BackedgeBlocks[i]->getTerminator();
658     for (unsigned Op = 0, e = TI->getNumSuccessors(); Op != e; ++Op)
659       if (TI->getSuccessor(Op) == Header)
660         TI->setSuccessor(Op, BEBlock);
661   }
662
663   //===--- Update all analyses which we must preserve now -----------------===//
664
665   // Update Loop Information - we know that this block is now in the current
666   // loop and all parent loops.
667   L->addBasicBlockToLoop(BEBlock, *LI);
668
669   // Update dominator information (set, immdom, domtree, and domfrontier)
670   UpdateDomInfoForRevectoredPreds(BEBlock, BackedgeBlocks);
671 }
672
673 /// UpdateDomInfoForRevectoredPreds - This method is used to update the four
674 /// different kinds of dominator information (dominator sets, immediate
675 /// dominators, dominator trees, and dominance frontiers) after a new block has
676 /// been added to the CFG.
677 ///
678 /// This only supports the case when an existing block (known as "NewBBSucc"),
679 /// had some of its predecessors factored into a new basic block.  This
680 /// transformation inserts a new basic block ("NewBB"), with a single
681 /// unconditional branch to NewBBSucc, and moves some predecessors of
682 /// "NewBBSucc" to now branch to NewBB.  These predecessors are listed in
683 /// PredBlocks, even though they are the same as
684 /// pred_begin(NewBB)/pred_end(NewBB).
685 ///
686 void LoopSimplify::UpdateDomInfoForRevectoredPreds(BasicBlock *NewBB,
687                                          std::vector<BasicBlock*> &PredBlocks) {
688   assert(!PredBlocks.empty() && "No predblocks??");
689   assert(succ_begin(NewBB) != succ_end(NewBB) &&
690          ++succ_begin(NewBB) == succ_end(NewBB) &&
691          "NewBB should have a single successor!");
692   BasicBlock *NewBBSucc = *succ_begin(NewBB);
693   ETForest& ETF = getAnalysis<ETForest>();
694   
695   // The newly inserted basic block will dominate existing basic blocks iff the
696   // PredBlocks dominate all of the non-pred blocks.  If all predblocks dominate
697   // the non-pred blocks, then they all must be the same block!
698   //
699   bool NewBBDominatesNewBBSucc = true;
700   {
701     BasicBlock *OnePred = PredBlocks[0];
702     unsigned i, e = PredBlocks.size();
703     for (i = 1; !ETF.dominates(&OnePred->getParent()->getEntryBlock(), OnePred); ++i) {
704       assert(i != e && "Didn't find reachable pred?");
705       OnePred = PredBlocks[i];
706     }
707     
708     for (; i != e; ++i)
709       if (PredBlocks[i] != OnePred &&
710           ETF.dominates(&PredBlocks[i]->getParent()->getEntryBlock(), OnePred)) {
711         NewBBDominatesNewBBSucc = false;
712         break;
713       }
714
715     if (NewBBDominatesNewBBSucc)
716       for (pred_iterator PI = pred_begin(NewBBSucc), E = pred_end(NewBBSucc);
717            PI != E; ++PI)
718         if (*PI != NewBB && !ETF.dominates(NewBBSucc, *PI)) {
719           NewBBDominatesNewBBSucc = false;
720           break;
721         }
722   }
723
724   // The other scenario where the new block can dominate its successors are when
725   // all predecessors of NewBBSucc that are not NewBB are dominated by NewBBSucc
726   // already.
727   if (!NewBBDominatesNewBBSucc) {
728     NewBBDominatesNewBBSucc = true;
729     for (pred_iterator PI = pred_begin(NewBBSucc), E = pred_end(NewBBSucc);
730          PI != E; ++PI)
731       if (*PI != NewBB && !ETF.dominates(NewBBSucc, *PI)) {
732         NewBBDominatesNewBBSucc = false;
733         break;
734       }
735   }
736
737   BasicBlock *NewBBIDom = 0;
738   
739   // Update immediate dominator information if we have it.
740   if (ImmediateDominators *ID = getAnalysisToUpdate<ImmediateDominators>()) {
741     unsigned i = 0;
742     for (i = 0; i < PredBlocks.size(); ++i)
743       if (ETF.dominates(&PredBlocks[i]->getParent()->getEntryBlock(), PredBlocks[i])) {
744         NewBBIDom = PredBlocks[i];
745         break;
746       }
747     assert(i != PredBlocks.size() && "No reachable preds?");
748     for (i = i + 1; i < PredBlocks.size(); ++i) {
749       if (ETF.dominates(&PredBlocks[i]->getParent()->getEntryBlock(), PredBlocks[i]))
750         NewBBIDom = ETF.nearestCommonDominator(NewBBIDom, PredBlocks[i]);
751     }
752     assert(NewBBIDom && "No immediate dominator found??");
753   
754     // Set the immediate dominator now...
755     ID->addNewBlock(NewBB, NewBBIDom);
756
757     // If NewBB strictly dominates other blocks, we need to update their idom's
758     // now.  The only block that need adjustment is the NewBBSucc block, whose
759     // idom should currently be set to PredBlocks[0].
760     if (NewBBDominatesNewBBSucc)
761       ID->setImmediateDominator(NewBBSucc, NewBB);
762   }
763
764   // Update DominatorTree information if it is active.
765   if (DominatorTree *DT = getAnalysisToUpdate<DominatorTree>()) {
766     // If we don't have ImmediateDominator info around, calculate the idom as
767     // above.
768     if (!NewBBIDom) {
769       unsigned i = 0;
770       for (i = 0; i < PredBlocks.size(); ++i)
771         if (ETF.dominates(&PredBlocks[i]->getParent()->getEntryBlock(), PredBlocks[i])) {
772           NewBBIDom = PredBlocks[i];
773           break;
774         }
775       assert(i != PredBlocks.size() && "No reachable preds?");
776       for (i = i + 1; i < PredBlocks.size(); ++i) {
777         if (ETF.dominates(&PredBlocks[i]->getParent()->getEntryBlock(), PredBlocks[i]))
778           NewBBIDom = ETF.nearestCommonDominator(NewBBIDom, PredBlocks[i]);
779       }
780       assert(NewBBIDom && "No immediate dominator found??");
781     }
782     DominatorTree::Node *NewBBIDomNode = DT->getNode(NewBBIDom);
783
784     // Create the new dominator tree node... and set the idom of NewBB.
785     DominatorTree::Node *NewBBNode = DT->createNewNode(NewBB, NewBBIDomNode);
786
787     // If NewBB strictly dominates other blocks, then it is now the immediate
788     // dominator of NewBBSucc.  Update the dominator tree as appropriate.
789     if (NewBBDominatesNewBBSucc) {
790       DominatorTree::Node *NewBBSuccNode = DT->getNode(NewBBSucc);
791       DT->changeImmediateDominator(NewBBSuccNode, NewBBNode);
792     }
793   }
794
795   // Update ET-Forest information if it is active.
796   if (ETForest *EF = getAnalysisToUpdate<ETForest>()) {
797     EF->addNewBlock(NewBB, NewBBIDom);
798     if (NewBBDominatesNewBBSucc)
799       EF->setImmediateDominator(NewBBSucc, NewBB);
800   }
801
802   // Update dominance frontier information...
803   if (DominanceFrontier *DF = getAnalysisToUpdate<DominanceFrontier>()) {
804     // If NewBB dominates NewBBSucc, then DF(NewBB) is now going to be the
805     // DF(PredBlocks[0]) without the stuff that the new block does not dominate
806     // a predecessor of.
807     if (NewBBDominatesNewBBSucc) {
808       DominanceFrontier::iterator DFI = DF->find(PredBlocks[0]);
809       if (DFI != DF->end()) {
810         DominanceFrontier::DomSetType Set = DFI->second;
811         // Filter out stuff in Set that we do not dominate a predecessor of.
812         for (DominanceFrontier::DomSetType::iterator SetI = Set.begin(),
813                E = Set.end(); SetI != E;) {
814           bool DominatesPred = false;
815           for (pred_iterator PI = pred_begin(*SetI), E = pred_end(*SetI);
816                PI != E; ++PI)
817             if (ETF.dominates(NewBB, *PI))
818               DominatesPred = true;
819           if (!DominatesPred)
820             Set.erase(SetI++);
821           else
822             ++SetI;
823         }
824
825         DF->addBasicBlock(NewBB, Set);
826       }
827
828     } else {
829       // DF(NewBB) is {NewBBSucc} because NewBB does not strictly dominate
830       // NewBBSucc, but it does dominate itself (and there is an edge (NewBB ->
831       // NewBBSucc)).  NewBBSucc is the single successor of NewBB.
832       DominanceFrontier::DomSetType NewDFSet;
833       NewDFSet.insert(NewBBSucc);
834       DF->addBasicBlock(NewBB, NewDFSet);
835     }
836
837     // Now we must loop over all of the dominance frontiers in the function,
838     // replacing occurrences of NewBBSucc with NewBB in some cases.  All
839     // blocks that dominate a block in PredBlocks and contained NewBBSucc in
840     // their dominance frontier must be updated to contain NewBB instead.
841     //
842     for (unsigned i = 0, e = PredBlocks.size(); i != e; ++i) {
843       BasicBlock *Pred = PredBlocks[i];
844       // Get all of the dominators of the predecessor...
845       // FIXME: There's probably a better way to do this...
846       std::vector<BasicBlock*> PredDoms;
847       for (Function::iterator I = Pred->getParent()->begin(),
848            E = Pred->getParent()->end(); I != E; ++I)
849         if (ETF.dominates(&(*I), Pred))
850           PredDoms.push_back(I);
851       
852       for (std::vector<BasicBlock*>::const_iterator PDI = PredDoms.begin(),
853              PDE = PredDoms.end(); PDI != PDE; ++PDI) {
854         BasicBlock *PredDom = *PDI;
855
856         // If the NewBBSucc node is in DF(PredDom), then PredDom didn't
857         // dominate NewBBSucc but did dominate a predecessor of it.  Now we
858         // change this entry to include NewBB in the DF instead of NewBBSucc.
859         DominanceFrontier::iterator DFI = DF->find(PredDom);
860         assert(DFI != DF->end() && "No dominance frontier for node?");
861         if (DFI->second.count(NewBBSucc)) {
862           // If NewBBSucc should not stay in our dominator frontier, remove it.
863           // We remove it unless there is a predecessor of NewBBSucc that we
864           // dominate, but we don't strictly dominate NewBBSucc.
865           bool ShouldRemove = true;
866           if (PredDom == NewBBSucc || !ETF.dominates(PredDom, NewBBSucc)) {
867             // Okay, we know that PredDom does not strictly dominate NewBBSucc.
868             // Check to see if it dominates any predecessors of NewBBSucc.
869             for (pred_iterator PI = pred_begin(NewBBSucc),
870                    E = pred_end(NewBBSucc); PI != E; ++PI)
871               if (ETF.dominates(PredDom, *PI)) {
872                 ShouldRemove = false;
873                 break;
874               }
875           }
876
877           if (ShouldRemove)
878             DF->removeFromFrontier(DFI, NewBBSucc);
879           DF->addToFrontier(DFI, NewBB);
880         }
881       }
882     }
883   }
884 }
885