blob: c79ec3f3861745d81f3c573a6488baf469d48690 [file] [log] [blame]
Chris Lattner946b2552004-04-18 05:20:17 +00001//===-- LoopUnroll.cpp - Loop unroller pass -------------------------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
Chris Lattner946b2552004-04-18 05:20:17 +00003// 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.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
Chris Lattner946b2552004-04-18 05:20:17 +00008//===----------------------------------------------------------------------===//
9//
10// This pass implements a simple loop unroller. It works best when loops have
11// been canonicalized by the -indvars pass, allowing it to determine the trip
12// counts of loops easily.
13//
Owen Andersone001d812006-08-24 21:28:19 +000014// This pass will multi-block loops only if they contain no non-unrolled
15// subloops. The process of unrolling can produce extraneous basic blocks
16// linked with unconditional branches. This will be corrected in the future.
Chris Lattner946b2552004-04-18 05:20:17 +000017//
18//===----------------------------------------------------------------------===//
19
20#define DEBUG_TYPE "loop-unroll"
21#include "llvm/Transforms/Scalar.h"
22#include "llvm/Constants.h"
23#include "llvm/Function.h"
24#include "llvm/Instructions.h"
Chris Lattner024f4ab2007-01-30 23:46:24 +000025#include "llvm/Analysis/ConstantFolding.h"
Chris Lattner946b2552004-04-18 05:20:17 +000026#include "llvm/Analysis/LoopInfo.h"
Devang Patel9779e562007-03-07 01:38:05 +000027#include "llvm/Analysis/LoopPass.h"
Chris Lattner946b2552004-04-18 05:20:17 +000028#include "llvm/Transforms/Utils/Cloning.h"
29#include "llvm/Transforms/Utils/Local.h"
Owen Anderson62c84fe2006-08-28 02:09:46 +000030#include "llvm/Support/CFG.h"
Reid Spencer557ab152007-02-05 23:32:05 +000031#include "llvm/Support/Compiler.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000032#include "llvm/Support/CommandLine.h"
33#include "llvm/Support/Debug.h"
Dan Gohman2980d9d2007-05-11 20:53:41 +000034#include "llvm/Support/MathExtras.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000035#include "llvm/ADT/Statistic.h"
36#include "llvm/ADT/STLExtras.h"
Chris Lattner1bfc7ab2007-02-03 00:08:31 +000037#include "llvm/ADT/SmallPtrSet.h"
Chris Lattner6d048a02004-11-22 17:18:36 +000038#include "llvm/IntrinsicInst.h"
Chris Lattner946b2552004-04-18 05:20:17 +000039#include <cstdio>
Reid Spencerce078332004-10-18 14:38:48 +000040#include <algorithm>
Chris Lattner946b2552004-04-18 05:20:17 +000041using namespace llvm;
42
Dan Gohman2980d9d2007-05-11 20:53:41 +000043STATISTIC(NumCompletelyUnrolled, "Number of loops completely unrolled");
44STATISTIC(NumUnrolled, "Number of loops unrolled (completely or otherwise)");
Chris Lattner946b2552004-04-18 05:20:17 +000045
Chris Lattner79a42ac2006-12-19 21:40:18 +000046namespace {
Chris Lattner946b2552004-04-18 05:20:17 +000047 cl::opt<unsigned>
Dan Gohman2980d9d2007-05-11 20:53:41 +000048 UnrollThreshold
49 ("unroll-threshold", cl::init(100), cl::Hidden,
50 cl::desc("The cut-off point for automatic loop unrolling"));
51
52 cl::opt<unsigned>
53 UnrollCount
54 ("unroll-count", cl::init(0), cl::Hidden,
55 cl::desc("Use this unroll count for all loops, for testing purposes"));
Chris Lattner946b2552004-04-18 05:20:17 +000056
Devang Patel9779e562007-03-07 01:38:05 +000057 class VISIBILITY_HIDDEN LoopUnroll : public LoopPass {
Chris Lattner946b2552004-04-18 05:20:17 +000058 LoopInfo *LI; // The current loop information
59 public:
Devang Patel8c78a0b2007-05-03 01:11:54 +000060 static char ID; // Pass ID, replacement for typeid
Dan Gohman2e1f8042007-05-08 15:19:19 +000061 LoopUnroll() : LoopPass((intptr_t)&ID) {}
Devang Patel09f162c2007-05-01 21:15:47 +000062
Dan Gohman2980d9d2007-05-11 20:53:41 +000063 /// A magic value for use with the Threshold parameter to indicate
64 /// that the loop unroll should be performed regardless of how much
65 /// code expansion would result.
66 static const unsigned NoThreshold = UINT_MAX;
67
Devang Patel9779e562007-03-07 01:38:05 +000068 bool runOnLoop(Loop *L, LPPassManager &LPM);
Dan Gohman2980d9d2007-05-11 20:53:41 +000069 bool unrollLoop(Loop *L, unsigned Count, unsigned Threshold);
Dan Gohman2e1f8042007-05-08 15:19:19 +000070 BasicBlock *FoldBlockIntoPredecessor(BasicBlock *BB);
Chris Lattner946b2552004-04-18 05:20:17 +000071
72 /// This transformation requires natural loop information & requires that
73 /// loop preheaders be inserted into the CFG...
74 ///
75 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner946b2552004-04-18 05:20:17 +000076 AU.addRequiredID(LoopSimplifyID);
Owen Andersone001d812006-08-24 21:28:19 +000077 AU.addRequiredID(LCSSAID);
Chris Lattner946b2552004-04-18 05:20:17 +000078 AU.addRequired<LoopInfo>();
Owen Andersone001d812006-08-24 21:28:19 +000079 AU.addPreservedID(LCSSAID);
Chris Lattnerf2cc8412004-04-18 05:38:37 +000080 AU.addPreserved<LoopInfo>();
Chris Lattner946b2552004-04-18 05:20:17 +000081 }
82 };
Devang Patel8c78a0b2007-05-03 01:11:54 +000083 char LoopUnroll::ID = 0;
Chris Lattnerc2d3d312006-08-27 22:42:52 +000084 RegisterPass<LoopUnroll> X("loop-unroll", "Unroll loops");
Chris Lattner946b2552004-04-18 05:20:17 +000085}
86
Devang Patel9779e562007-03-07 01:38:05 +000087LoopPass *llvm::createLoopUnrollPass() { return new LoopUnroll(); }
Chris Lattner946b2552004-04-18 05:20:17 +000088
Dan Gohman49d08a52007-05-08 15:14:19 +000089/// ApproximateLoopSize - Approximate the size of the loop.
Chris Lattner946b2552004-04-18 05:20:17 +000090static unsigned ApproximateLoopSize(const Loop *L) {
91 unsigned Size = 0;
92 for (unsigned i = 0, e = L->getBlocks().size(); i != e; ++i) {
93 BasicBlock *BB = L->getBlocks()[i];
94 Instruction *Term = BB->getTerminator();
95 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
96 if (isa<PHINode>(I) && BB == L->getHeader()) {
97 // Ignore PHI nodes in the header.
98 } else if (I->hasOneUse() && I->use_back() == Term) {
99 // Ignore instructions only used by the loop terminator.
Reid Spencerde46e482006-11-02 20:25:50 +0000100 } else if (isa<DbgInfoIntrinsic>(I)) {
Jeff Cohen82639852005-04-23 21:38:35 +0000101 // Ignore debug instructions
Chris Lattner946b2552004-04-18 05:20:17 +0000102 } else {
103 ++Size;
104 }
105
106 // TODO: Ignore expressions derived from PHI and constants if inval of phi
107 // is a constant, or if operation is associative. This will get induction
108 // variables.
109 }
110 }
111
112 return Size;
113}
114
Misha Brukmanb1c93172005-04-21 23:48:37 +0000115// RemapInstruction - Convert the instruction operands from referencing the
Chris Lattner946b2552004-04-18 05:20:17 +0000116// current values into those specified by ValueMap.
117//
Misha Brukmanb1c93172005-04-21 23:48:37 +0000118static inline void RemapInstruction(Instruction *I,
Chris Lattner1bfc7ab2007-02-03 00:08:31 +0000119 DenseMap<const Value *, Value*> &ValueMap) {
Chris Lattner946b2552004-04-18 05:20:17 +0000120 for (unsigned op = 0, E = I->getNumOperands(); op != E; ++op) {
121 Value *Op = I->getOperand(op);
Chris Lattner1bfc7ab2007-02-03 00:08:31 +0000122 DenseMap<const Value *, Value*>::iterator It = ValueMap.find(Op);
Chris Lattner946b2552004-04-18 05:20:17 +0000123 if (It != ValueMap.end()) Op = It->second;
124 I->setOperand(op, Op);
125 }
126}
127
Owen Anderson62c84fe2006-08-28 02:09:46 +0000128// FoldBlockIntoPredecessor - Folds a basic block into its predecessor if it
129// only has one predecessor, and that predecessor only has one successor.
130// Returns the new combined block.
Dan Gohman2e1f8042007-05-08 15:19:19 +0000131BasicBlock *LoopUnroll::FoldBlockIntoPredecessor(BasicBlock *BB) {
Owen Anderson62c84fe2006-08-28 02:09:46 +0000132 // Merge basic blocks into their predecessor if there is only one distinct
133 // pred, and if there is only one distinct successor of the predecessor, and
134 // if there are no PHI nodes.
135 //
Owen Andersona8a2e5c2006-08-29 06:10:56 +0000136 BasicBlock *OnlyPred = BB->getSinglePredecessor();
137 if (!OnlyPred) return 0;
Owen Anderson62c84fe2006-08-28 02:09:46 +0000138
Owen Andersona8a2e5c2006-08-29 06:10:56 +0000139 if (OnlyPred->getTerminator()->getNumSuccessors() != 1)
140 return 0;
141
Bill Wendling5dbf43c2006-11-26 09:46:52 +0000142 DOUT << "Merging: " << *BB << "into: " << *OnlyPred;
Owen Andersona8a2e5c2006-08-29 06:10:56 +0000143
144 // Resolve any PHI nodes at the start of the block. They are all
145 // guaranteed to have exactly one entry if they exist, unless there are
146 // multiple duplicate (but guaranteed to be equal) entries for the
147 // incoming edges. This occurs when there are multiple edges from
148 // OnlyPred to OnlySucc.
149 //
150 while (PHINode *PN = dyn_cast<PHINode>(&BB->front())) {
151 PN->replaceAllUsesWith(PN->getIncomingValue(0));
152 BB->getInstList().pop_front(); // Delete the phi node...
Owen Anderson62c84fe2006-08-28 02:09:46 +0000153 }
154
Owen Andersona8a2e5c2006-08-29 06:10:56 +0000155 // Delete the unconditional branch from the predecessor...
156 OnlyPred->getInstList().pop_back();
Owen Anderson62c84fe2006-08-28 02:09:46 +0000157
Owen Andersona8a2e5c2006-08-29 06:10:56 +0000158 // Move all definitions in the successor to the predecessor...
159 OnlyPred->getInstList().splice(OnlyPred->end(), BB->getInstList());
Owen Anderson62c84fe2006-08-28 02:09:46 +0000160
Owen Andersona8a2e5c2006-08-29 06:10:56 +0000161 // Make all PHI nodes that referred to BB now refer to Pred as their
162 // source...
163 BB->replaceAllUsesWith(OnlyPred);
Owen Anderson62c84fe2006-08-28 02:09:46 +0000164
Owen Andersona8a2e5c2006-08-29 06:10:56 +0000165 std::string OldName = BB->getName();
Owen Anderson62c84fe2006-08-28 02:09:46 +0000166
Owen Andersona8a2e5c2006-08-29 06:10:56 +0000167 // Erase basic block from the function...
168 LI->removeBlock(BB);
169 BB->eraseFromParent();
Owen Anderson62c84fe2006-08-28 02:09:46 +0000170
Owen Andersona8a2e5c2006-08-29 06:10:56 +0000171 // Inherit predecessors name if it exists...
172 if (!OldName.empty() && !OnlyPred->hasName())
173 OnlyPred->setName(OldName);
Owen Anderson62c84fe2006-08-28 02:09:46 +0000174
Owen Andersona8a2e5c2006-08-29 06:10:56 +0000175 return OnlyPred;
Owen Anderson62c84fe2006-08-28 02:09:46 +0000176}
177
Devang Patel9779e562007-03-07 01:38:05 +0000178bool LoopUnroll::runOnLoop(Loop *L, LPPassManager &LPM) {
Devang Patel9779e562007-03-07 01:38:05 +0000179 LI = &getAnalysis<LoopInfo>();
Chris Lattner946b2552004-04-18 05:20:17 +0000180
Dan Gohman2980d9d2007-05-11 20:53:41 +0000181 // Unroll the loop.
182 if (!unrollLoop(L, UnrollCount, UnrollThreshold))
183 return false;
184
185 // Update the loop information for this loop.
186 // If we completely unrolled the loop, remove it from the parent.
187 if (L->getNumBackEdges() == 0)
188 LPM.deleteLoopFromQueue(L);
189
190 return true;
191}
192
193/// Unroll the given loop by UnrollCount, or by a heuristically-determined
194/// value if Count is zero. If Threshold is non-NULL, it points to
195/// a Threshold value to limit code size expansion. If the loop size would
196/// expand beyond the threshold value, unrolling is suppressed. The return
197/// value is false if no transformations are performed.
198///
199bool LoopUnroll::unrollLoop(Loop *L, unsigned Count, unsigned Threshold) {
200 assert(L->isLCSSAForm());
201
Dan Gohman2e1f8042007-05-08 15:19:19 +0000202 BasicBlock *Header = L->getHeader();
203 BasicBlock *LatchBlock = L->getLoopLatch();
Owen Andersone001d812006-08-24 21:28:19 +0000204 BranchInst *BI = dyn_cast<BranchInst>(LatchBlock->getTerminator());
Chris Lattner946b2552004-04-18 05:20:17 +0000205
Bill Wendling5dbf43c2006-11-26 09:46:52 +0000206 DOUT << "Loop Unroll: F[" << Header->getParent()->getName()
Dan Gohman2980d9d2007-05-11 20:53:41 +0000207 << "] Loop %" << Header->getName() << "\n";
208
209 if (!BI || BI->isUnconditional()) {
210 // The loop-rorate pass can be helpful to avoid this in many cases.
211 DOUT << " Can't unroll; loop not terminated by a conditional branch.\n";
212 return false;
Chris Lattner946b2552004-04-18 05:20:17 +0000213 }
Dan Gohman2980d9d2007-05-11 20:53:41 +0000214
215 // Determine the trip count and/or trip multiple. A TripCount value of zero
216 // is used to mean an unknown trip count. The TripMultiple value is the
217 // greatest known integer multiple of the trip count.
218 unsigned TripCount = 0;
219 unsigned TripMultiple = 1;
220 if (Value *TripCountValue = L->getTripCount()) {
221 if (ConstantInt *TripCountC = dyn_cast<ConstantInt>(TripCountValue)) {
222 // Guard against huge trip counts. This also guards against assertions in
223 // APInt from the use of getZExtValue, below.
224 if (TripCountC->getValue().getActiveBits() <= 32) {
225 TripCount = (unsigned)TripCountC->getZExtValue();
226 }
227 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(TripCountValue)) {
228 switch (BO->getOpcode()) {
229 case BinaryOperator::Mul:
230 if (ConstantInt *MultipleC = dyn_cast<ConstantInt>(BO->getOperand(1))) {
231 if (MultipleC->getValue().getActiveBits() <= 32) {
232 TripMultiple = (unsigned)MultipleC->getZExtValue();
233 }
234 }
235 break;
236 default: break;
237 }
238 }
239 }
240 if (TripCount != 0)
241 DOUT << " Trip Count = " << TripCount << "\n";
242 if (TripMultiple != 1)
243 DOUT << " Trip Multiple = " << TripMultiple << "\n";
244
245 // Automatically select an unroll count.
246 if (Count == 0) {
247 // Conservative heuristic: if we know the trip count, see if we can
248 // completely unroll (subject to the threshold, checked below); otherwise
249 // don't unroll.
250 if (TripCount != 0) {
251 Count = TripCount;
252 } else {
253 return false;
254 }
255 }
256
257 // Effectively "DCE" unrolled iterations that are beyond the tripcount
258 // and will never be executed.
259 if (TripCount != 0 && Count > TripCount)
260 Count = TripCount;
261
262 assert(Count > 0);
263 assert(TripMultiple > 0);
264 assert(TripCount == 0 || TripCount % TripMultiple == 0);
265
266 // Enforce the threshold.
267 if (Threshold != NoThreshold) {
268 unsigned LoopSize = ApproximateLoopSize(L);
269 DOUT << " Loop Size = " << LoopSize << "\n";
270 uint64_t Size = (uint64_t)LoopSize*Count;
271 if (TripCount != 1 && Size > Threshold) {
272 DOUT << " TOO LARGE TO UNROLL: "
273 << Size << ">" << Threshold << "\n";
274 return false;
275 }
276 }
277
278 // Are we eliminating the loop control altogether?
279 bool CompletelyUnroll = Count == TripCount;
280
281 // If we know the trip count, we know the multiple...
282 unsigned BreakoutTrip = 0;
283 if (TripCount != 0) {
284 BreakoutTrip = TripCount % Count;
285 TripMultiple = 0;
286 } else {
287 // Figure out what multiple to use.
288 BreakoutTrip = TripMultiple =
289 (unsigned)GreatestCommonDivisor64(Count, TripMultiple);
290 }
291
292 if (CompletelyUnroll) {
293 DOUT << "COMPLETELY UNROLLING loop %" << Header->getName()
294 << " with trip count " << TripCount << "!\n";
295 } else {
296 DOUT << "UNROLLING loop %" << Header->getName()
297 << " by " << Count;
298 if (TripMultiple == 0 || BreakoutTrip != TripMultiple) {
299 DOUT << " with a breakout at trip " << BreakoutTrip;
300 } else if (TripMultiple != 1) {
301 DOUT << " with " << TripMultiple << " trips per branch";
302 }
303 DOUT << "!\n";
304 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000305
Owen Andersone001d812006-08-24 21:28:19 +0000306 std::vector<BasicBlock*> LoopBlocks = L->getBlocks();
307
Dan Gohman2980d9d2007-05-11 20:53:41 +0000308 bool ContinueOnTrue = L->contains(BI->getSuccessor(0));
309 BasicBlock *LoopExit = BI->getSuccessor(ContinueOnTrue);
Chris Lattner946b2552004-04-18 05:20:17 +0000310
311 // For the first iteration of the loop, we should use the precloned values for
312 // PHI nodes. Insert associations now.
Chris Lattner1077d2a2007-05-05 18:49:57 +0000313 typedef DenseMap<const Value*, Value*> ValueMapTy;
314 ValueMapTy LastValueMap;
Chris Lattner946b2552004-04-18 05:20:17 +0000315 std::vector<PHINode*> OrigPHINode;
Owen Andersone001d812006-08-24 21:28:19 +0000316 for (BasicBlock::iterator I = Header->begin(); isa<PHINode>(I); ++I) {
Reid Spencer66149462004-09-15 17:06:42 +0000317 PHINode *PN = cast<PHINode>(I);
Chris Lattner946b2552004-04-18 05:20:17 +0000318 OrigPHINode.push_back(PN);
Owen Andersone001d812006-08-24 21:28:19 +0000319 if (Instruction *I =
320 dyn_cast<Instruction>(PN->getIncomingValueForBlock(LatchBlock)))
321 if (L->contains(I->getParent()))
Chris Lattner946b2552004-04-18 05:20:17 +0000322 LastValueMap[I] = I;
323 }
324
Owen Andersone001d812006-08-24 21:28:19 +0000325 std::vector<BasicBlock*> Headers;
326 std::vector<BasicBlock*> Latches;
327 Headers.push_back(Header);
328 Latches.push_back(LatchBlock);
Chris Lattner946b2552004-04-18 05:20:17 +0000329
Dan Gohman2980d9d2007-05-11 20:53:41 +0000330 for (unsigned It = 1; It != Count; ++It) {
Chris Lattner946b2552004-04-18 05:20:17 +0000331 char SuffixBuffer[100];
332 sprintf(SuffixBuffer, ".%d", It);
Owen Andersone001d812006-08-24 21:28:19 +0000333
334 std::vector<BasicBlock*> NewBlocks;
335
336 for (std::vector<BasicBlock*>::iterator BB = LoopBlocks.begin(),
337 E = LoopBlocks.end(); BB != E; ++BB) {
Chris Lattner1077d2a2007-05-05 18:49:57 +0000338 ValueMapTy ValueMap;
Owen Andersone001d812006-08-24 21:28:19 +0000339 BasicBlock *New = CloneBasicBlock(*BB, ValueMap, SuffixBuffer);
340 Header->getParent()->getBasicBlockList().push_back(New);
Chris Lattner946b2552004-04-18 05:20:17 +0000341
Owen Andersone001d812006-08-24 21:28:19 +0000342 // Loop over all of the PHI nodes in the block, changing them to use the
343 // incoming values from the previous block.
344 if (*BB == Header)
345 for (unsigned i = 0, e = OrigPHINode.size(); i != e; ++i) {
346 PHINode *NewPHI = cast<PHINode>(ValueMap[OrigPHINode[i]]);
347 Value *InVal = NewPHI->getIncomingValueForBlock(LatchBlock);
348 if (Instruction *InValI = dyn_cast<Instruction>(InVal))
349 if (It > 1 && L->contains(InValI->getParent()))
350 InVal = LastValueMap[InValI];
351 ValueMap[OrigPHINode[i]] = InVal;
352 New->getInstList().erase(NewPHI);
353 }
354
355 // Update our running map of newest clones
356 LastValueMap[*BB] = New;
Chris Lattner1077d2a2007-05-05 18:49:57 +0000357 for (ValueMapTy::iterator VI = ValueMap.begin(), VE = ValueMap.end();
358 VI != VE; ++VI)
Owen Andersone001d812006-08-24 21:28:19 +0000359 LastValueMap[VI->first] = VI->second;
360
361 L->addBasicBlockToLoop(New, *LI);
362
363 // Add phi entries for newly created values to all exit blocks except
364 // the successor of the latch block. The successor of the exit block will
365 // be updated specially after unrolling all the way.
366 if (*BB != LatchBlock)
367 for (Value::use_iterator UI = (*BB)->use_begin(), UE = (*BB)->use_end();
368 UI != UE; ++UI) {
Dan Gohman2e1f8042007-05-08 15:19:19 +0000369 Instruction *UseInst = cast<Instruction>(*UI);
Owen Andersone001d812006-08-24 21:28:19 +0000370 if (isa<PHINode>(UseInst) && !L->contains(UseInst->getParent())) {
Dan Gohman2e1f8042007-05-08 15:19:19 +0000371 PHINode *phi = cast<PHINode>(UseInst);
372 Value *Incoming = phi->getIncomingValueForBlock(*BB);
Owen Andersone001d812006-08-24 21:28:19 +0000373 if (isa<Instruction>(Incoming))
374 Incoming = LastValueMap[Incoming];
375
376 phi->addIncoming(Incoming, New);
377 }
378 }
379
380 // Keep track of new headers and latches as we create them, so that
381 // we can insert the proper branches later.
382 if (*BB == Header)
383 Headers.push_back(New);
Dan Gohman2980d9d2007-05-11 20:53:41 +0000384 if (*BB == LatchBlock) {
Owen Andersone001d812006-08-24 21:28:19 +0000385 Latches.push_back(New);
386
Dan Gohman2980d9d2007-05-11 20:53:41 +0000387 // Also, clear out the new latch's back edge so that it doesn't look
388 // like a new loop, so that it's amenable to being merged with adjacent
389 // blocks later on.
390 TerminatorInst *Term = New->getTerminator();
391 assert(L->contains(Term->getSuccessor(!ContinueOnTrue)));
392 assert(Term->getSuccessor(ContinueOnTrue) == LoopExit);
393 Term->setSuccessor(!ContinueOnTrue, NULL);
394 }
395
Owen Andersone001d812006-08-24 21:28:19 +0000396 NewBlocks.push_back(New);
Chris Lattner946b2552004-04-18 05:20:17 +0000397 }
Owen Andersone001d812006-08-24 21:28:19 +0000398
399 // Remap all instructions in the most recent iteration
400 for (unsigned i = 0; i < NewBlocks.size(); ++i)
401 for (BasicBlock::iterator I = NewBlocks[i]->begin(),
402 E = NewBlocks[i]->end(); I != E; ++I)
Chris Lattner230bcb62004-04-18 17:32:39 +0000403 RemapInstruction(I, LastValueMap);
Chris Lattner230bcb62004-04-18 17:32:39 +0000404 }
Owen Andersone001d812006-08-24 21:28:19 +0000405
Chris Lattner1077d2a2007-05-05 18:49:57 +0000406 // The latch block exits the loop. If there are any PHI nodes in the
407 // successor blocks, update them to use the appropriate values computed as the
408 // last iteration of the loop.
Dan Gohman2980d9d2007-05-11 20:53:41 +0000409 if (Count != 1) {
Chris Lattner1bfc7ab2007-02-03 00:08:31 +0000410 SmallPtrSet<PHINode*, 8> Users;
Owen Andersone001d812006-08-24 21:28:19 +0000411 for (Value::use_iterator UI = LatchBlock->use_begin(),
412 UE = LatchBlock->use_end(); UI != UE; ++UI)
Dan Gohman2e1f8042007-05-08 15:19:19 +0000413 if (PHINode *phi = dyn_cast<PHINode>(*UI))
Owen Andersone001d812006-08-24 21:28:19 +0000414 Users.insert(phi);
Chris Lattner1077d2a2007-05-05 18:49:57 +0000415
416 BasicBlock *LastIterationBB = cast<BasicBlock>(LastValueMap[LatchBlock]);
Chris Lattner1bfc7ab2007-02-03 00:08:31 +0000417 for (SmallPtrSet<PHINode*,8>::iterator SI = Users.begin(), SE = Users.end();
Owen Andersone001d812006-08-24 21:28:19 +0000418 SI != SE; ++SI) {
Chris Lattner57d89a52007-05-05 18:36:36 +0000419 PHINode *PN = *SI;
Chris Lattner1077d2a2007-05-05 18:49:57 +0000420 Value *InVal = PN->removeIncomingValue(LatchBlock, false);
421 // If this value was defined in the loop, take the value defined by the
422 // last iteration of the loop.
423 if (Instruction *InValI = dyn_cast<Instruction>(InVal)) {
424 if (L->contains(InValI->getParent()))
425 InVal = LastValueMap[InVal];
Devang Patelabdff3f2007-04-16 23:03:45 +0000426 }
Chris Lattner1077d2a2007-05-05 18:49:57 +0000427 PN->addIncoming(InVal, LastIterationBB);
Owen Andersone001d812006-08-24 21:28:19 +0000428 }
429 }
Chris Lattner946b2552004-04-18 05:20:17 +0000430
Dan Gohman2980d9d2007-05-11 20:53:41 +0000431 // Now, if we're doing complete unrolling, loop over the PHI nodes in the
432 // original block, setting them to their incoming values.
433 if (CompletelyUnroll) {
434 BasicBlock *Preheader = L->getLoopPreheader();
435 for (unsigned i = 0, e = OrigPHINode.size(); i != e; ++i) {
436 PHINode *PN = OrigPHINode[i];
437 PN->replaceAllUsesWith(PN->getIncomingValueForBlock(Preheader));
438 Header->getInstList().erase(PN);
Owen Anderson62c84fe2006-08-28 02:09:46 +0000439 }
440 }
Dan Gohman2980d9d2007-05-11 20:53:41 +0000441
442 // Now that all the basic blocks for the unrolled iterations are in place,
443 // set up the branches to connect them.
444 for (unsigned i = 0, e = Latches.size(); i != e; ++i) {
445 // The original branch was replicated in each unrolled iteration.
446 BranchInst *Term = cast<BranchInst>(Latches[i]->getTerminator());
447
448 // The branch destination.
449 unsigned j = (i + 1) % e;
450 BasicBlock *Dest = Headers[j];
451 bool NeedConditional = true;
452
453 // For a complete unroll, make the last iteration end with a branch
454 // to the exit block.
455 if (CompletelyUnroll && j == 0) {
456 Dest = LoopExit;
457 NeedConditional = false;
458 }
459
460 // If we know the trip count or a multiple of it, we can safely use an
461 // unconditional branch for some iterations.
462 if (j != BreakoutTrip && (TripMultiple == 0 || j % TripMultiple != 0)) {
463 NeedConditional = false;
464 }
465
466 if (NeedConditional) {
467 // Update the conditional branch's successor for the following
468 // iteration.
469 Term->setSuccessor(!ContinueOnTrue, Dest);
470 } else {
471 Term->setUnconditionalDest(Dest);
472 // Merge adjacent basic blocks, if possible.
473 if (BasicBlock *Fold = FoldBlockIntoPredecessor(Dest)) {
474 std::replace(Latches.begin(), Latches.end(), Dest, Fold);
475 std::replace(Headers.begin(), Headers.end(), Dest, Fold);
476 }
477 }
478 }
Owen Anderson62c84fe2006-08-28 02:09:46 +0000479
Chris Lattner946b2552004-04-18 05:20:17 +0000480 // At this point, the code is well formed. We now do a quick sweep over the
481 // inserted code, doing constant propagation and dead code elimination as we
482 // go.
Owen Andersone001d812006-08-24 21:28:19 +0000483 const std::vector<BasicBlock*> &NewLoopBlocks = L->getBlocks();
484 for (std::vector<BasicBlock*>::const_iterator BB = NewLoopBlocks.begin(),
Owen Anderson62c84fe2006-08-28 02:09:46 +0000485 BBE = NewLoopBlocks.end(); BB != BBE; ++BB)
Owen Andersone001d812006-08-24 21:28:19 +0000486 for (BasicBlock::iterator I = (*BB)->begin(), E = (*BB)->end(); I != E; ) {
487 Instruction *Inst = I++;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000488
Owen Andersone001d812006-08-24 21:28:19 +0000489 if (isInstructionTriviallyDead(Inst))
490 (*BB)->getInstList().erase(Inst);
491 else if (Constant *C = ConstantFoldInstruction(Inst)) {
492 Inst->replaceAllUsesWith(C);
493 (*BB)->getInstList().erase(Inst);
494 }
Chris Lattner946b2552004-04-18 05:20:17 +0000495 }
Chris Lattner946b2552004-04-18 05:20:17 +0000496
Dan Gohman2980d9d2007-05-11 20:53:41 +0000497 NumCompletelyUnrolled += CompletelyUnroll;
Chris Lattner946b2552004-04-18 05:20:17 +0000498 ++NumUnrolled;
499 return true;
500}