Fix the LoopUnroller to handle nontrivial loops and partial unrolling.
[oota-llvm.git] / lib / Transforms / Utils / LoopUnroll.cpp
1 //===-- UnrollLoop.cpp - Loop unrolling utilities -------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements some loop unrolling utilities. It does not define any
11 // actual pass or policy, but provides a single function to perform loop
12 // unrolling.
13 //
14 // The process of unrolling can produce extraneous basic blocks linked with
15 // unconditional branches.  This will be corrected in the future.
16 //
17 //===----------------------------------------------------------------------===//
18
19 #define DEBUG_TYPE "loop-unroll"
20 #include "llvm/Transforms/Utils/UnrollLoop.h"
21 #include "llvm/BasicBlock.h"
22 #include "llvm/ADT/Statistic.h"
23 #include "llvm/Analysis/InstructionSimplify.h"
24 #include "llvm/Analysis/LoopIterator.h"
25 #include "llvm/Analysis/LoopPass.h"
26 #include "llvm/Analysis/ScalarEvolution.h"
27 #include "llvm/Support/Debug.h"
28 #include "llvm/Support/raw_ostream.h"
29 #include "llvm/Transforms/Utils/BasicBlockUtils.h"
30 #include "llvm/Transforms/Utils/Cloning.h"
31 #include "llvm/Transforms/Utils/Local.h"
32 using namespace llvm;
33
34 // TODO: Should these be here or in LoopUnroll?
35 STATISTIC(NumCompletelyUnrolled, "Number of loops completely unrolled");
36 STATISTIC(NumUnrolled, "Number of loops unrolled (completely or otherwise)");
37
38 /// RemapInstruction - Convert the instruction operands from referencing the
39 /// current values into those specified by VMap.
40 static inline void RemapInstruction(Instruction *I,
41                                     ValueToValueMapTy &VMap) {
42   for (unsigned op = 0, E = I->getNumOperands(); op != E; ++op) {
43     Value *Op = I->getOperand(op);
44     ValueToValueMapTy::iterator It = VMap.find(Op);
45     if (It != VMap.end())
46       I->setOperand(op, It->second);
47   }
48
49   if (PHINode *PN = dyn_cast<PHINode>(I)) {
50     for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
51       ValueToValueMapTy::iterator It = VMap.find(PN->getIncomingBlock(i));
52       if (It != VMap.end())
53         PN->setIncomingBlock(i, cast<BasicBlock>(It->second));
54     }
55   }
56 }
57
58 /// FoldBlockIntoPredecessor - Folds a basic block into its predecessor if it
59 /// only has one predecessor, and that predecessor only has one successor.
60 /// The LoopInfo Analysis that is passed will be kept consistent.
61 /// Returns the new combined block.
62 static BasicBlock *FoldBlockIntoPredecessor(BasicBlock *BB, LoopInfo* LI,
63                                             LPPassManager *LPM) {
64   // Merge basic blocks into their predecessor if there is only one distinct
65   // pred, and if there is only one distinct successor of the predecessor, and
66   // if there are no PHI nodes.
67   BasicBlock *OnlyPred = BB->getSinglePredecessor();
68   if (!OnlyPred) return 0;
69
70   if (OnlyPred->getTerminator()->getNumSuccessors() != 1)
71     return 0;
72
73   DEBUG(dbgs() << "Merging: " << *BB << "into: " << *OnlyPred);
74
75   // Resolve any PHI nodes at the start of the block.  They are all
76   // guaranteed to have exactly one entry if they exist, unless there are
77   // multiple duplicate (but guaranteed to be equal) entries for the
78   // incoming edges.  This occurs when there are multiple edges from
79   // OnlyPred to OnlySucc.
80   FoldSingleEntryPHINodes(BB);
81
82   // Delete the unconditional branch from the predecessor...
83   OnlyPred->getInstList().pop_back();
84
85   // Make all PHI nodes that referred to BB now refer to Pred as their
86   // source...
87   BB->replaceAllUsesWith(OnlyPred);
88
89   // Move all definitions in the successor to the predecessor...
90   OnlyPred->getInstList().splice(OnlyPred->end(), BB->getInstList());
91
92   std::string OldName = BB->getName();
93
94   // Erase basic block from the function...
95
96   // ScalarEvolution holds references to loop exit blocks.
97   if (ScalarEvolution *SE = LPM->getAnalysisIfAvailable<ScalarEvolution>()) {
98     if (Loop *L = LI->getLoopFor(BB))
99       SE->forgetLoop(L);
100   }
101   LI->removeBlock(BB);
102   BB->eraseFromParent();
103
104   // Inherit predecessor's name if it exists...
105   if (!OldName.empty() && !OnlyPred->hasName())
106     OnlyPred->setName(OldName);
107
108   return OnlyPred;
109 }
110
111 /// Unroll the given loop by Count. The loop must be in LCSSA form. Returns true
112 /// if unrolling was successful, or false if the loop was unmodified. Unrolling
113 /// can only fail when the loop's latch block is not terminated by a conditional
114 /// branch instruction. However, if the trip count (and multiple) are not known,
115 /// loop unrolling will mostly produce more code that is no faster.
116 ///
117 /// TripCount is generally defined as the number of times the loop header
118 /// executes. UnrollLoop relaxes the definition to permit early exits: here
119 /// TripCount is the iteration on which control exits LatchBlock if no early
120 /// exits were taken. Note that UnrollLoop assumes that the loop counter test
121 /// terminates LatchBlock in order to remove unnecesssary instances of the
122 /// test. In other words, control may exit the loop prior to TripCount
123 /// iterations via an early branch, but control may not exit the loop from the
124 /// LatchBlock's terminator prior to TripCount iterations.
125 ///
126 /// Similarly, TripMultiple divides the number of times that the LatchBlock may
127 /// execute without exiting the loop.
128 ///
129 /// The LoopInfo Analysis that is passed will be kept consistent.
130 ///
131 /// If a LoopPassManager is passed in, and the loop is fully removed, it will be
132 /// removed from the LoopPassManager as well. LPM can also be NULL.
133 bool llvm::UnrollLoop(Loop *L, unsigned Count, unsigned TripCount,
134                       unsigned TripMultiple, LoopInfo *LI, LPPassManager *LPM) {
135   BasicBlock *Preheader = L->getLoopPreheader();
136   if (!Preheader) {
137     DEBUG(dbgs() << "  Can't unroll; loop preheader-insertion failed.\n");
138     return false;
139   }
140
141   BasicBlock *LatchBlock = L->getLoopLatch();
142   if (!LatchBlock) {
143     DEBUG(dbgs() << "  Can't unroll; loop exit-block-insertion failed.\n");
144     return false;
145   }
146
147   BasicBlock *Header = L->getHeader();
148   BranchInst *BI = dyn_cast<BranchInst>(LatchBlock->getTerminator());
149
150   if (!BI || BI->isUnconditional()) {
151     // The loop-rotate pass can be helpful to avoid this in many cases.
152     DEBUG(dbgs() <<
153              "  Can't unroll; loop not terminated by a conditional branch.\n");
154     return false;
155   }
156
157   if (Header->hasAddressTaken()) {
158     // The loop-rotate pass can be helpful to avoid this in many cases.
159     DEBUG(dbgs() <<
160           "  Won't unroll loop: address of header block is taken.\n");
161     return false;
162   }
163
164   // Notify ScalarEvolution that the loop will be substantially changed,
165   // if not outright eliminated.
166   if (ScalarEvolution *SE = LPM->getAnalysisIfAvailable<ScalarEvolution>())
167     SE->forgetLoop(L);
168
169   if (TripCount != 0)
170     DEBUG(dbgs() << "  Trip Count = " << TripCount << "\n");
171   if (TripMultiple != 1)
172     DEBUG(dbgs() << "  Trip Multiple = " << TripMultiple << "\n");
173
174   // Effectively "DCE" unrolled iterations that are beyond the tripcount
175   // and will never be executed.
176   if (TripCount != 0 && Count > TripCount)
177     Count = TripCount;
178
179   assert(Count > 0);
180   assert(TripMultiple > 0);
181   assert(TripCount == 0 || TripCount % TripMultiple == 0);
182
183   // Are we eliminating the loop control altogether?
184   bool CompletelyUnroll = Count == TripCount;
185
186   // If we know the trip count, we know the multiple...
187   unsigned BreakoutTrip = 0;
188   if (TripCount != 0) {
189     BreakoutTrip = TripCount % Count;
190     TripMultiple = 0;
191   } else {
192     // Figure out what multiple to use.
193     BreakoutTrip = TripMultiple =
194       (unsigned)GreatestCommonDivisor64(Count, TripMultiple);
195   }
196
197   if (CompletelyUnroll) {
198     DEBUG(dbgs() << "COMPLETELY UNROLLING loop %" << Header->getName()
199           << " with trip count " << TripCount << "!\n");
200   } else {
201     DEBUG(dbgs() << "UNROLLING loop %" << Header->getName()
202           << " by " << Count);
203     if (TripMultiple == 0 || BreakoutTrip != TripMultiple) {
204       DEBUG(dbgs() << " with a breakout at trip " << BreakoutTrip);
205     } else if (TripMultiple != 1) {
206       DEBUG(dbgs() << " with " << TripMultiple << " trips per branch");
207     }
208     DEBUG(dbgs() << "!\n");
209   }
210
211   std::vector<BasicBlock*> LoopBlocks = L->getBlocks();
212
213   bool ContinueOnTrue = L->contains(BI->getSuccessor(0));
214   BasicBlock *LoopExit = BI->getSuccessor(ContinueOnTrue);
215
216   // For the first iteration of the loop, we should use the precloned values for
217   // PHI nodes.  Insert associations now.
218   ValueToValueMapTy LastValueMap;
219   std::vector<PHINode*> OrigPHINode;
220   for (BasicBlock::iterator I = Header->begin(); isa<PHINode>(I); ++I) {
221     OrigPHINode.push_back(cast<PHINode>(I));
222   }
223
224   std::vector<BasicBlock*> Headers;
225   std::vector<BasicBlock*> Latches;
226   Headers.push_back(Header);
227   Latches.push_back(LatchBlock);
228
229   // The current on-the-fly SSA update requires blocks to be processed in
230   // reverse postorder so that LastValueMap contains the correct value at each
231   // exit.
232   LoopBlocksDFS DFS(L);
233   {
234     // Traverse the loop blocks using depth-first search to record RPO numbers
235     // for each block in the DFS result.
236     LoopBlocksTraversal Traversal(DFS, LI);
237     for (LoopBlocksTraversal::POTIterator POI = Traversal.begin(),
238            POE = Traversal.end(); POI != POE; ++POI);
239   }
240   // Stash the DFS iterators before adding blocks to the loop.
241   LoopBlocksDFS::RPOIterator BlockBegin = DFS.beginRPO();
242   LoopBlocksDFS::RPOIterator BlockEnd = DFS.endRPO();
243
244   for (unsigned It = 1; It != Count; ++It) {
245     std::vector<BasicBlock*> NewBlocks;
246
247     for (LoopBlocksDFS::RPOIterator BB = BlockBegin; BB != BlockEnd; ++BB) {
248       ValueToValueMapTy VMap;
249       BasicBlock *New = CloneBasicBlock(*BB, VMap, "." + Twine(It));
250       Header->getParent()->getBasicBlockList().push_back(New);
251
252       // Loop over all of the PHI nodes in the block, changing them to use the
253       // incoming values from the previous block.
254       if (*BB == Header)
255         for (unsigned i = 0, e = OrigPHINode.size(); i != e; ++i) {
256           PHINode *NewPHI = cast<PHINode>(VMap[OrigPHINode[i]]);
257           Value *InVal = NewPHI->getIncomingValueForBlock(LatchBlock);
258           if (Instruction *InValI = dyn_cast<Instruction>(InVal))
259             if (It > 1 && L->contains(InValI))
260               InVal = LastValueMap[InValI];
261           VMap[OrigPHINode[i]] = InVal;
262           New->getInstList().erase(NewPHI);
263         }
264
265       // Update our running map of newest clones
266       LastValueMap[*BB] = New;
267       for (ValueToValueMapTy::iterator VI = VMap.begin(), VE = VMap.end();
268            VI != VE; ++VI)
269         LastValueMap[VI->first] = VI->second;
270
271       L->addBasicBlockToLoop(New, LI->getBase());
272
273       // Add phi entries for newly created values to all exit blocks.
274       for (succ_iterator SI = succ_begin(*BB), SE = succ_end(*BB);
275            SI != SE; ++SI) {
276         if (L->contains(*SI))
277           continue;
278         for (BasicBlock::iterator BBI = (*SI)->begin();
279              PHINode *phi = dyn_cast<PHINode>(BBI); ++BBI) {
280           Value *Incoming = phi->getIncomingValueForBlock(*BB);
281           ValueToValueMapTy::iterator It = LastValueMap.find(Incoming);
282           if (It != LastValueMap.end())
283             Incoming = It->second;
284           phi->addIncoming(Incoming, New);
285         }
286       }
287       // Keep track of new headers and latches as we create them, so that
288       // we can insert the proper branches later.
289       if (*BB == Header)
290         Headers.push_back(New);
291       if (*BB == LatchBlock)
292         Latches.push_back(New);
293
294       NewBlocks.push_back(New);
295     }
296
297     // Remap all instructions in the most recent iteration
298     for (unsigned i = 0; i < NewBlocks.size(); ++i)
299       for (BasicBlock::iterator I = NewBlocks[i]->begin(),
300            E = NewBlocks[i]->end(); I != E; ++I)
301         ::RemapInstruction(I, LastValueMap);
302   }
303
304   // Loop over the PHI nodes in the original block, setting incoming values.
305   for (unsigned i = 0, e = OrigPHINode.size(); i != e; ++i) {
306     PHINode *PN = OrigPHINode[i];
307     if (CompletelyUnroll) {
308       PN->replaceAllUsesWith(PN->getIncomingValueForBlock(Preheader));
309       Header->getInstList().erase(PN);
310     }
311     else if (Count > 1) {
312       Value *InVal = PN->removeIncomingValue(LatchBlock, false);
313       // If this value was defined in the loop, take the value defined by the
314       // last iteration of the loop.
315       if (Instruction *InValI = dyn_cast<Instruction>(InVal)) {
316         if (L->contains(InValI))
317           InVal = LastValueMap[InVal];
318       }
319       assert(Latches.back() == LastValueMap[LatchBlock] && "bad last latch");
320       PN->addIncoming(InVal, Latches.back());
321     }
322   }
323
324   // Now that all the basic blocks for the unrolled iterations are in place,
325   // set up the branches to connect them.
326   for (unsigned i = 0, e = Latches.size(); i != e; ++i) {
327     // The original branch was replicated in each unrolled iteration.
328     BranchInst *Term = cast<BranchInst>(Latches[i]->getTerminator());
329
330     // The branch destination.
331     unsigned j = (i + 1) % e;
332     BasicBlock *Dest = Headers[j];
333     bool NeedConditional = true;
334
335     // For a complete unroll, make the last iteration end with a branch
336     // to the exit block.
337     if (CompletelyUnroll && j == 0) {
338       Dest = LoopExit;
339       NeedConditional = false;
340     }
341
342     // If we know the trip count or a multiple of it, we can safely use an
343     // unconditional branch for some iterations.
344     if (j != BreakoutTrip && (TripMultiple == 0 || j % TripMultiple != 0)) {
345       NeedConditional = false;
346     }
347
348     if (NeedConditional) {
349       // Update the conditional branch's successor for the following
350       // iteration.
351       Term->setSuccessor(!ContinueOnTrue, Dest);
352     } else {
353       // Remove phi operands at this loop exit
354       if (Dest != LoopExit) {
355         BasicBlock *BB = Latches[i];
356         for (succ_iterator SI = succ_begin(BB), SE = succ_end(BB);
357              SI != SE; ++SI) {
358           if (*SI == Headers[i])
359             continue;
360           for (BasicBlock::iterator BBI = (*SI)->begin();
361                PHINode *Phi = dyn_cast<PHINode>(BBI); ++BBI) {
362             Phi->removeIncomingValue(BB, false);
363           }
364         }
365       }
366       // Replace the conditional branch with an unconditional one.
367       BranchInst::Create(Dest, Term);
368       Term->eraseFromParent();
369     }
370   }
371
372   // Merge adjacent basic blocks, if possible.
373   for (unsigned i = 0, e = Latches.size(); i != e; ++i) {
374     BranchInst *Term = cast<BranchInst>(Latches[i]->getTerminator());
375     if (Term->isUnconditional()) {
376       BasicBlock *Dest = Term->getSuccessor(0);
377       if (BasicBlock *Fold = FoldBlockIntoPredecessor(Dest, LI, LPM))
378         std::replace(Latches.begin(), Latches.end(), Dest, Fold);
379     }
380   }
381
382   // At this point, the code is well formed.  We now do a quick sweep over the
383   // inserted code, doing constant propagation and dead code elimination as we
384   // go.
385   const std::vector<BasicBlock*> &NewLoopBlocks = L->getBlocks();
386   for (std::vector<BasicBlock*>::const_iterator BB = NewLoopBlocks.begin(),
387        BBE = NewLoopBlocks.end(); BB != BBE; ++BB)
388     for (BasicBlock::iterator I = (*BB)->begin(), E = (*BB)->end(); I != E; ) {
389       Instruction *Inst = I++;
390
391       if (isInstructionTriviallyDead(Inst))
392         (*BB)->getInstList().erase(Inst);
393       else if (Value *V = SimplifyInstruction(Inst))
394         if (LI->replacementPreservesLCSSAForm(Inst, V)) {
395           Inst->replaceAllUsesWith(V);
396           (*BB)->getInstList().erase(Inst);
397         }
398     }
399
400   NumCompletelyUnrolled += CompletelyUnroll;
401   ++NumUnrolled;
402   // Remove the loop from the LoopPassManager if it's completely removed.
403   if (CompletelyUnroll && LPM != NULL)
404     LPM->deleteLoopFromQueue(L);
405
406   return true;
407 }