blob: e23cdc92b50624e4852b3d516fa3c68bc6177246 [file] [log] [blame]
Dan Gohman45b31972008-05-14 00:24:14 +00001//===-- 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// It works best when loops have been canonicalized by the -indvars pass,
15// allowing it to determine the trip counts of loops easily.
16//
17// The process of unrolling can produce extraneous basic blocks linked with
18// unconditional branches. This will be corrected in the future.
19//===----------------------------------------------------------------------===//
20
21#define DEBUG_TYPE "loop-unroll"
22#include "llvm/Transforms/Utils/UnrollLoop.h"
23#include "llvm/BasicBlock.h"
24#include "llvm/ADT/Statistic.h"
25#include "llvm/Analysis/ConstantFolding.h"
26#include "llvm/Analysis/LoopPass.h"
Dan Gohman572365e2010-07-26 18:02:06 +000027#include "llvm/Analysis/ScalarEvolution.h"
Dan Gohman45b31972008-05-14 00:24:14 +000028#include "llvm/Support/Debug.h"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +000029#include "llvm/Support/raw_ostream.h"
Chris Lattner29874e02008-12-03 19:44:02 +000030#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Dan Gohman45b31972008-05-14 00:24:14 +000031#include "llvm/Transforms/Utils/Cloning.h"
32#include "llvm/Transforms/Utils/Local.h"
33
34using namespace llvm;
35
Chris Lattner29874e02008-12-03 19:44:02 +000036// TODO: Should these be here or in LoopUnroll?
Dan Gohman45b31972008-05-14 00:24:14 +000037STATISTIC(NumCompletelyUnrolled, "Number of loops completely unrolled");
38STATISTIC(NumUnrolled, "Number of loops unrolled (completely or otherwise)");
39
40/// RemapInstruction - Convert the instruction operands from referencing the
Devang Patel29d3dd82010-06-23 23:55:51 +000041/// current values into those specified by VMap.
Dan Gohman45b31972008-05-14 00:24:14 +000042static inline void RemapInstruction(Instruction *I,
Rafael Espindola1ed219a2010-10-13 01:36:30 +000043 ValueToValueMapTy &VMap) {
Dan Gohman45b31972008-05-14 00:24:14 +000044 for (unsigned op = 0, E = I->getNumOperands(); op != E; ++op) {
45 Value *Op = I->getOperand(op);
Rafael Espindola1ed219a2010-10-13 01:36:30 +000046 ValueToValueMapTy::iterator It = VMap.find(Op);
Devang Patel29d3dd82010-06-23 23:55:51 +000047 if (It != VMap.end())
Dan Gohmanb56c9662009-10-31 14:46:50 +000048 I->setOperand(op, It->second);
Dan Gohman45b31972008-05-14 00:24:14 +000049 }
50}
51
Dan Gohman438b5832009-10-31 17:33:01 +000052/// FoldBlockIntoPredecessor - Folds a basic block into its predecessor if it
53/// only has one predecessor, and that predecessor only has one successor.
54/// The LoopInfo Analysis that is passed will be kept consistent.
55/// Returns the new combined block.
56static BasicBlock *FoldBlockIntoPredecessor(BasicBlock *BB, LoopInfo* LI) {
57 // Merge basic blocks into their predecessor if there is only one distinct
58 // pred, and if there is only one distinct successor of the predecessor, and
59 // if there are no PHI nodes.
60 BasicBlock *OnlyPred = BB->getSinglePredecessor();
61 if (!OnlyPred) return 0;
62
63 if (OnlyPred->getTerminator()->getNumSuccessors() != 1)
64 return 0;
65
David Greenea9ad9c22010-01-05 01:26:41 +000066 DEBUG(dbgs() << "Merging: " << *BB << "into: " << *OnlyPred);
Dan Gohman438b5832009-10-31 17:33:01 +000067
68 // Resolve any PHI nodes at the start of the block. They are all
69 // guaranteed to have exactly one entry if they exist, unless there are
70 // multiple duplicate (but guaranteed to be equal) entries for the
71 // incoming edges. This occurs when there are multiple edges from
72 // OnlyPred to OnlySucc.
73 FoldSingleEntryPHINodes(BB);
74
75 // Delete the unconditional branch from the predecessor...
76 OnlyPred->getInstList().pop_back();
77
78 // Move all definitions in the successor to the predecessor...
79 OnlyPred->getInstList().splice(OnlyPred->end(), BB->getInstList());
80
81 // Make all PHI nodes that referred to BB now refer to Pred as their
82 // source...
83 BB->replaceAllUsesWith(OnlyPred);
84
85 std::string OldName = BB->getName();
86
87 // Erase basic block from the function...
88 LI->removeBlock(BB);
89 BB->eraseFromParent();
90
91 // Inherit predecessor's name if it exists...
92 if (!OldName.empty() && !OnlyPred->hasName())
93 OnlyPred->setName(OldName);
94
95 return OnlyPred;
96}
97
Dan Gohman45b31972008-05-14 00:24:14 +000098/// Unroll the given loop by Count. The loop must be in LCSSA form. Returns true
99/// if unrolling was succesful, or false if the loop was unmodified. Unrolling
100/// can only fail when the loop's latch block is not terminated by a conditional
101/// branch instruction. However, if the trip count (and multiple) are not known,
102/// loop unrolling will mostly produce more code that is no faster.
103///
104/// The LoopInfo Analysis that is passed will be kept consistent.
105///
106/// If a LoopPassManager is passed in, and the loop is fully removed, it will be
107/// removed from the LoopPassManager as well. LPM can also be NULL.
Dan Gohman8dbe7f82008-06-24 20:44:42 +0000108bool llvm::UnrollLoop(Loop *L, unsigned Count, LoopInfo* LI, LPPassManager* LPM) {
Dan Gohman692ad8d2009-11-05 19:44:06 +0000109 BasicBlock *Preheader = L->getLoopPreheader();
110 if (!Preheader) {
David Greenea9ad9c22010-01-05 01:26:41 +0000111 DEBUG(dbgs() << " Can't unroll; loop preheader-insertion failed.\n");
Dan Gohman692ad8d2009-11-05 19:44:06 +0000112 return false;
113 }
114
Dan Gohman45b31972008-05-14 00:24:14 +0000115 BasicBlock *LatchBlock = L->getLoopLatch();
Dan Gohman692ad8d2009-11-05 19:44:06 +0000116 if (!LatchBlock) {
David Greenea9ad9c22010-01-05 01:26:41 +0000117 DEBUG(dbgs() << " Can't unroll; loop exit-block-insertion failed.\n");
Dan Gohman692ad8d2009-11-05 19:44:06 +0000118 return false;
119 }
120
121 BasicBlock *Header = L->getHeader();
Dan Gohman45b31972008-05-14 00:24:14 +0000122 BranchInst *BI = dyn_cast<BranchInst>(LatchBlock->getTerminator());
Dan Gohman8dbe7f82008-06-24 20:44:42 +0000123
Dan Gohman45b31972008-05-14 00:24:14 +0000124 if (!BI || BI->isUnconditional()) {
125 // The loop-rotate pass can be helpful to avoid this in many cases.
David Greenea9ad9c22010-01-05 01:26:41 +0000126 DEBUG(dbgs() <<
Chris Lattnerbdff5482009-08-23 04:37:46 +0000127 " Can't unroll; loop not terminated by a conditional branch.\n");
Dan Gohman45b31972008-05-14 00:24:14 +0000128 return false;
129 }
130
Dan Gohman572365e2010-07-26 18:02:06 +0000131 // Notify ScalarEvolution that the loop will be substantially changed,
132 // if not outright eliminated.
133 if (ScalarEvolution *SE = LPM->getAnalysisIfAvailable<ScalarEvolution>())
134 SE->forgetLoop(L);
135
Dan Gohman45b31972008-05-14 00:24:14 +0000136 // Find trip count
137 unsigned TripCount = L->getSmallConstantTripCount();
138 // Find trip multiple if count is not available
139 unsigned TripMultiple = 1;
140 if (TripCount == 0)
141 TripMultiple = L->getSmallConstantTripMultiple();
142
143 if (TripCount != 0)
David Greenea9ad9c22010-01-05 01:26:41 +0000144 DEBUG(dbgs() << " Trip Count = " << TripCount << "\n");
Dan Gohman45b31972008-05-14 00:24:14 +0000145 if (TripMultiple != 1)
David Greenea9ad9c22010-01-05 01:26:41 +0000146 DEBUG(dbgs() << " Trip Multiple = " << TripMultiple << "\n");
Dan Gohman45b31972008-05-14 00:24:14 +0000147
148 // Effectively "DCE" unrolled iterations that are beyond the tripcount
149 // and will never be executed.
150 if (TripCount != 0 && Count > TripCount)
151 Count = TripCount;
152
153 assert(Count > 0);
154 assert(TripMultiple > 0);
155 assert(TripCount == 0 || TripCount % TripMultiple == 0);
156
157 // Are we eliminating the loop control altogether?
158 bool CompletelyUnroll = Count == TripCount;
159
160 // If we know the trip count, we know the multiple...
161 unsigned BreakoutTrip = 0;
162 if (TripCount != 0) {
163 BreakoutTrip = TripCount % Count;
164 TripMultiple = 0;
165 } else {
166 // Figure out what multiple to use.
167 BreakoutTrip = TripMultiple =
168 (unsigned)GreatestCommonDivisor64(Count, TripMultiple);
169 }
170
171 if (CompletelyUnroll) {
David Greenea9ad9c22010-01-05 01:26:41 +0000172 DEBUG(dbgs() << "COMPLETELY UNROLLING loop %" << Header->getName()
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000173 << " with trip count " << TripCount << "!\n");
Dan Gohman45b31972008-05-14 00:24:14 +0000174 } else {
David Greenea9ad9c22010-01-05 01:26:41 +0000175 DEBUG(dbgs() << "UNROLLING loop %" << Header->getName()
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000176 << " by " << Count);
Dan Gohman45b31972008-05-14 00:24:14 +0000177 if (TripMultiple == 0 || BreakoutTrip != TripMultiple) {
David Greenea9ad9c22010-01-05 01:26:41 +0000178 DEBUG(dbgs() << " with a breakout at trip " << BreakoutTrip);
Dan Gohman45b31972008-05-14 00:24:14 +0000179 } else if (TripMultiple != 1) {
David Greenea9ad9c22010-01-05 01:26:41 +0000180 DEBUG(dbgs() << " with " << TripMultiple << " trips per branch");
Dan Gohman45b31972008-05-14 00:24:14 +0000181 }
David Greenea9ad9c22010-01-05 01:26:41 +0000182 DEBUG(dbgs() << "!\n");
Dan Gohman45b31972008-05-14 00:24:14 +0000183 }
184
185 std::vector<BasicBlock*> LoopBlocks = L->getBlocks();
186
Dan Gohman8dbe7f82008-06-24 20:44:42 +0000187 bool ContinueOnTrue = L->contains(BI->getSuccessor(0));
Dan Gohman45b31972008-05-14 00:24:14 +0000188 BasicBlock *LoopExit = BI->getSuccessor(ContinueOnTrue);
189
190 // For the first iteration of the loop, we should use the precloned values for
191 // PHI nodes. Insert associations now.
Devang Patel39430842010-04-20 22:24:18 +0000192 ValueToValueMapTy LastValueMap;
Dan Gohman8dbe7f82008-06-24 20:44:42 +0000193 std::vector<PHINode*> OrigPHINode;
Dan Gohman45b31972008-05-14 00:24:14 +0000194 for (BasicBlock::iterator I = Header->begin(); isa<PHINode>(I); ++I) {
195 PHINode *PN = cast<PHINode>(I);
Dan Gohman8dbe7f82008-06-24 20:44:42 +0000196 OrigPHINode.push_back(PN);
Dan Gohman45b31972008-05-14 00:24:14 +0000197 if (Instruction *I =
198 dyn_cast<Instruction>(PN->getIncomingValueForBlock(LatchBlock)))
Dan Gohman92329c72009-12-18 01:24:09 +0000199 if (L->contains(I))
Dan Gohman45b31972008-05-14 00:24:14 +0000200 LastValueMap[I] = I;
201 }
202
203 std::vector<BasicBlock*> Headers;
204 std::vector<BasicBlock*> Latches;
205 Headers.push_back(Header);
206 Latches.push_back(LatchBlock);
207
208 for (unsigned It = 1; It != Count; ++It) {
Dan Gohman45b31972008-05-14 00:24:14 +0000209 std::vector<BasicBlock*> NewBlocks;
210
Dan Gohman8dbe7f82008-06-24 20:44:42 +0000211 for (std::vector<BasicBlock*>::iterator BB = LoopBlocks.begin(),
212 E = LoopBlocks.end(); BB != E; ++BB) {
Devang Patel29d3dd82010-06-23 23:55:51 +0000213 ValueToValueMapTy VMap;
214 BasicBlock *New = CloneBasicBlock(*BB, VMap, "." + Twine(It));
Dan Gohman8dbe7f82008-06-24 20:44:42 +0000215 Header->getParent()->getBasicBlockList().push_back(New);
Dan Gohman45b31972008-05-14 00:24:14 +0000216
Dan Gohman8dbe7f82008-06-24 20:44:42 +0000217 // Loop over all of the PHI nodes in the block, changing them to use the
218 // incoming values from the previous block.
219 if (*BB == Header)
220 for (unsigned i = 0, e = OrigPHINode.size(); i != e; ++i) {
Devang Patel29d3dd82010-06-23 23:55:51 +0000221 PHINode *NewPHI = cast<PHINode>(VMap[OrigPHINode[i]]);
Dan Gohman45b31972008-05-14 00:24:14 +0000222 Value *InVal = NewPHI->getIncomingValueForBlock(LatchBlock);
223 if (Instruction *InValI = dyn_cast<Instruction>(InVal))
Dan Gohman92329c72009-12-18 01:24:09 +0000224 if (It > 1 && L->contains(InValI))
Dan Gohman45b31972008-05-14 00:24:14 +0000225 InVal = LastValueMap[InValI];
Devang Patel29d3dd82010-06-23 23:55:51 +0000226 VMap[OrigPHINode[i]] = InVal;
Dan Gohman45b31972008-05-14 00:24:14 +0000227 New->getInstList().erase(NewPHI);
228 }
229
230 // Update our running map of newest clones
Dan Gohman8dbe7f82008-06-24 20:44:42 +0000231 LastValueMap[*BB] = New;
Devang Patel29d3dd82010-06-23 23:55:51 +0000232 for (ValueToValueMapTy::iterator VI = VMap.begin(), VE = VMap.end();
Dan Gohman45b31972008-05-14 00:24:14 +0000233 VI != VE; ++VI)
234 LastValueMap[VI->first] = VI->second;
235
Dan Gohman8dbe7f82008-06-24 20:44:42 +0000236 L->addBasicBlockToLoop(New, LI->getBase());
237
238 // Add phi entries for newly created values to all exit blocks except
239 // the successor of the latch block. The successor of the exit block will
240 // be updated specially after unrolling all the way.
241 if (*BB != LatchBlock)
242 for (Value::use_iterator UI = (*BB)->use_begin(), UE = (*BB)->use_end();
243 UI != UE;) {
244 Instruction *UseInst = cast<Instruction>(*UI);
245 ++UI;
Dan Gohman92329c72009-12-18 01:24:09 +0000246 if (isa<PHINode>(UseInst) && !L->contains(UseInst)) {
Dan Gohman8dbe7f82008-06-24 20:44:42 +0000247 PHINode *phi = cast<PHINode>(UseInst);
248 Value *Incoming = phi->getIncomingValueForBlock(*BB);
249 phi->addIncoming(Incoming, New);
250 }
Dan Gohman45b31972008-05-14 00:24:14 +0000251 }
Dan Gohman8dbe7f82008-06-24 20:44:42 +0000252
253 // Keep track of new headers and latches as we create them, so that
254 // we can insert the proper branches later.
255 if (*BB == Header)
256 Headers.push_back(New);
257 if (*BB == LatchBlock) {
258 Latches.push_back(New);
259
260 // Also, clear out the new latch's back edge so that it doesn't look
261 // like a new loop, so that it's amenable to being merged with adjacent
262 // blocks later on.
263 TerminatorInst *Term = New->getTerminator();
264 assert(L->contains(Term->getSuccessor(!ContinueOnTrue)));
265 assert(Term->getSuccessor(ContinueOnTrue) == LoopExit);
266 Term->setSuccessor(!ContinueOnTrue, NULL);
Dan Gohman45b31972008-05-14 00:24:14 +0000267 }
Dan Gohman8dbe7f82008-06-24 20:44:42 +0000268
269 NewBlocks.push_back(New);
Dan Gohman45b31972008-05-14 00:24:14 +0000270 }
271
272 // Remap all instructions in the most recent iteration
Dan Gohman8dbe7f82008-06-24 20:44:42 +0000273 for (unsigned i = 0; i < NewBlocks.size(); ++i)
Dan Gohman45b31972008-05-14 00:24:14 +0000274 for (BasicBlock::iterator I = NewBlocks[i]->begin(),
275 E = NewBlocks[i]->end(); I != E; ++I)
Rafael Espindola1ed219a2010-10-13 01:36:30 +0000276 ::RemapInstruction(I, LastValueMap);
Dan Gohman45b31972008-05-14 00:24:14 +0000277 }
Dan Gohman8dbe7f82008-06-24 20:44:42 +0000278
279 // The latch block exits the loop. If there are any PHI nodes in the
280 // successor blocks, update them to use the appropriate values computed as the
281 // last iteration of the loop.
282 if (Count != 1) {
283 SmallPtrSet<PHINode*, 8> Users;
284 for (Value::use_iterator UI = LatchBlock->use_begin(),
285 UE = LatchBlock->use_end(); UI != UE; ++UI)
286 if (PHINode *phi = dyn_cast<PHINode>(*UI))
287 Users.insert(phi);
288
289 BasicBlock *LastIterationBB = cast<BasicBlock>(LastValueMap[LatchBlock]);
290 for (SmallPtrSet<PHINode*,8>::iterator SI = Users.begin(), SE = Users.end();
291 SI != SE; ++SI) {
292 PHINode *PN = *SI;
293 Value *InVal = PN->removeIncomingValue(LatchBlock, false);
294 // If this value was defined in the loop, take the value defined by the
295 // last iteration of the loop.
296 if (Instruction *InValI = dyn_cast<Instruction>(InVal)) {
Dan Gohman92329c72009-12-18 01:24:09 +0000297 if (L->contains(InValI))
Dan Gohman8dbe7f82008-06-24 20:44:42 +0000298 InVal = LastValueMap[InVal];
299 }
300 PN->addIncoming(InVal, LastIterationBB);
301 }
302 }
303
304 // Now, if we're doing complete unrolling, loop over the PHI nodes in the
305 // original block, setting them to their incoming values.
306 if (CompletelyUnroll) {
307 BasicBlock *Preheader = L->getLoopPreheader();
308 for (unsigned i = 0, e = OrigPHINode.size(); i != e; ++i) {
309 PHINode *PN = OrigPHINode[i];
310 PN->replaceAllUsesWith(PN->getIncomingValueForBlock(Preheader));
311 Header->getInstList().erase(PN);
312 }
313 }
Dan Gohman45b31972008-05-14 00:24:14 +0000314
315 // Now that all the basic blocks for the unrolled iterations are in place,
316 // set up the branches to connect them.
Dan Gohman8dbe7f82008-06-24 20:44:42 +0000317 for (unsigned i = 0, e = Latches.size(); i != e; ++i) {
Dan Gohman45b31972008-05-14 00:24:14 +0000318 // The original branch was replicated in each unrolled iteration.
Dan Gohman8dbe7f82008-06-24 20:44:42 +0000319 BranchInst *Term = cast<BranchInst>(Latches[i]->getTerminator());
Dan Gohman45b31972008-05-14 00:24:14 +0000320
321 // The branch destination.
Dan Gohman8dbe7f82008-06-24 20:44:42 +0000322 unsigned j = (i + 1) % e;
323 BasicBlock *Dest = Headers[j];
Dan Gohman45b31972008-05-14 00:24:14 +0000324 bool NeedConditional = true;
325
Dan Gohman8dbe7f82008-06-24 20:44:42 +0000326 // For a complete unroll, make the last iteration end with a branch
327 // to the exit block.
328 if (CompletelyUnroll && j == 0) {
Dan Gohman45b31972008-05-14 00:24:14 +0000329 Dest = LoopExit;
330 NeedConditional = false;
331 }
332
333 // If we know the trip count or a multiple of it, we can safely use an
334 // unconditional branch for some iterations.
Dan Gohman8dbe7f82008-06-24 20:44:42 +0000335 if (j != BreakoutTrip && (TripMultiple == 0 || j % TripMultiple != 0)) {
Dan Gohman45b31972008-05-14 00:24:14 +0000336 NeedConditional = false;
337 }
338
339 if (NeedConditional) {
340 // Update the conditional branch's successor for the following
341 // iteration.
342 Term->setSuccessor(!ContinueOnTrue, Dest);
343 } else {
344 Term->setUnconditionalDest(Dest);
345 // Merge adjacent basic blocks, if possible.
Dan Gohman438b5832009-10-31 17:33:01 +0000346 if (BasicBlock *Fold = FoldBlockIntoPredecessor(Dest, LI)) {
Dan Gohman45b31972008-05-14 00:24:14 +0000347 std::replace(Latches.begin(), Latches.end(), Dest, Fold);
348 std::replace(Headers.begin(), Headers.end(), Dest, Fold);
349 }
350 }
351 }
352
Dan Gohman8dbe7f82008-06-24 20:44:42 +0000353 // At this point, the code is well formed. We now do a quick sweep over the
354 // inserted code, doing constant propagation and dead code elimination as we
355 // go.
356 const std::vector<BasicBlock*> &NewLoopBlocks = L->getBlocks();
357 for (std::vector<BasicBlock*>::const_iterator BB = NewLoopBlocks.begin(),
358 BBE = NewLoopBlocks.end(); BB != BBE; ++BB)
359 for (BasicBlock::iterator I = (*BB)->begin(), E = (*BB)->end(); I != E; ) {
Dan Gohman45b31972008-05-14 00:24:14 +0000360 Instruction *Inst = I++;
361
362 if (isInstructionTriviallyDead(Inst))
Dan Gohman8dbe7f82008-06-24 20:44:42 +0000363 (*BB)->getInstList().erase(Inst);
Chris Lattner7b550cc2009-11-06 04:27:31 +0000364 else if (Constant *C = ConstantFoldInstruction(Inst)) {
Dan Gohman45b31972008-05-14 00:24:14 +0000365 Inst->replaceAllUsesWith(C);
Dan Gohman8dbe7f82008-06-24 20:44:42 +0000366 (*BB)->getInstList().erase(Inst);
Dan Gohman45b31972008-05-14 00:24:14 +0000367 }
368 }
Dan Gohman45b31972008-05-14 00:24:14 +0000369
370 NumCompletelyUnrolled += CompletelyUnroll;
371 ++NumUnrolled;
372 // Remove the loop from the LoopPassManager if it's completely removed.
373 if (CompletelyUnroll && LPM != NULL)
374 LPM->deleteLoopFromQueue(L);
375
Dan Gohman45b31972008-05-14 00:24:14 +0000376 return true;
377}