blob: 047e6563779d3ddf442630beb46e9331540ea94d [file] [log] [blame]
Devang Patelfee76bd2007-08-07 00:25:56 +00001//===- LoopIndexSplit.cpp - Loop Index Splitting Pass ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Devang Patelfee76bd2007-08-07 00:25:56 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements Loop Index Splitting Pass.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "loop-index-split"
15
Devang Patelfee76bd2007-08-07 00:25:56 +000016#include "llvm/Transforms/Scalar.h"
17#include "llvm/Analysis/LoopPass.h"
18#include "llvm/Analysis/ScalarEvolutionExpander.h"
Devang Patel787a7132007-08-08 21:39:47 +000019#include "llvm/Analysis/Dominators.h"
Devang Patel423c8b22007-08-10 18:07:13 +000020#include "llvm/Transforms/Utils/BasicBlockUtils.h"
21#include "llvm/Transforms/Utils/Cloning.h"
Devang Patelfee76bd2007-08-07 00:25:56 +000022#include "llvm/Support/Compiler.h"
Devang Patel5b8ec612007-08-15 03:31:47 +000023#include "llvm/ADT/DepthFirstIterator.h"
Devang Patelfee76bd2007-08-07 00:25:56 +000024#include "llvm/ADT/Statistic.h"
25
26using namespace llvm;
27
28STATISTIC(NumIndexSplit, "Number of loops index split");
29
30namespace {
31
32 class VISIBILITY_HIDDEN LoopIndexSplit : public LoopPass {
33
34 public:
35 static char ID; // Pass ID, replacement for typeid
Dan Gohmanae73dc12008-09-04 17:05:41 +000036 LoopIndexSplit() : LoopPass(&ID) {}
Devang Patelfee76bd2007-08-07 00:25:56 +000037
38 // Index split Loop L. Return true if loop is split.
39 bool runOnLoop(Loop *L, LPPassManager &LPM);
40
41 void getAnalysisUsage(AnalysisUsage &AU) const {
42 AU.addRequired<ScalarEvolution>();
43 AU.addPreserved<ScalarEvolution>();
44 AU.addRequiredID(LCSSAID);
45 AU.addPreservedID(LCSSAID);
Devang Patel423c8b22007-08-10 18:07:13 +000046 AU.addRequired<LoopInfo>();
Devang Patelfee76bd2007-08-07 00:25:56 +000047 AU.addPreserved<LoopInfo>();
48 AU.addRequiredID(LoopSimplifyID);
49 AU.addPreservedID(LoopSimplifyID);
Devang Patel9704fcf2007-08-08 22:25:28 +000050 AU.addRequired<DominatorTree>();
Devang Patel5b8ec612007-08-15 03:31:47 +000051 AU.addRequired<DominanceFrontier>();
Devang Patel787a7132007-08-08 21:39:47 +000052 AU.addPreserved<DominatorTree>();
53 AU.addPreserved<DominanceFrontier>();
Devang Patelfee76bd2007-08-07 00:25:56 +000054 }
55
56 private:
Devang Patel71554b82007-08-08 21:02:17 +000057
58 class SplitInfo {
59 public:
Devang Patel4259fe32007-08-24 06:17:19 +000060 SplitInfo() : SplitValue(NULL), SplitCondition(NULL),
Devang Patel4a69da92007-08-25 00:56:38 +000061 UseTrueBranchFirst(true), A_ExitValue(NULL),
62 B_StartValue(NULL) {}
Devang Patelc9d123d2007-08-09 01:39:01 +000063
Devang Patel71554b82007-08-08 21:02:17 +000064 // Induction variable's range is split at this value.
65 Value *SplitValue;
66
Devang Patel4f12c5f2007-09-11 00:12:56 +000067 // This instruction compares IndVar against SplitValue.
68 Instruction *SplitCondition;
Devang Patel71554b82007-08-08 21:02:17 +000069
Devang Patel4259fe32007-08-24 06:17:19 +000070 // True if after loop index split, first loop will execute split condition's
71 // true branch.
72 bool UseTrueBranchFirst;
Devang Patel4a69da92007-08-25 00:56:38 +000073
74 // Exit value for first loop after loop split.
75 Value *A_ExitValue;
76
77 // Start value for second loop after loop split.
78 Value *B_StartValue;
79
Devang Patel9021c702007-08-08 21:18:27 +000080 // Clear split info.
81 void clear() {
Devang Patel9021c702007-08-08 21:18:27 +000082 SplitValue = NULL;
Devang Patel9021c702007-08-08 21:18:27 +000083 SplitCondition = NULL;
Devang Patel4259fe32007-08-24 06:17:19 +000084 UseTrueBranchFirst = true;
Devang Patel4a69da92007-08-25 00:56:38 +000085 A_ExitValue = NULL;
86 B_StartValue = NULL;
Devang Patel9021c702007-08-08 21:18:27 +000087 }
Devang Patelc9d123d2007-08-09 01:39:01 +000088
Devang Patel71554b82007-08-08 21:02:17 +000089 };
Devang Patelbacf5192007-08-10 00:33:50 +000090
Devang Patel71554b82007-08-08 21:02:17 +000091 private:
Devang Pateld35ed2c2007-09-11 00:42:56 +000092
93 // safeIcmpInst - CI is considered safe instruction if one of the operand
94 // is SCEVAddRecExpr based on induction variable and other operand is
95 // loop invariant. If CI is safe then populate SplitInfo object SD appropriately
96 // and return true;
97 bool safeICmpInst(ICmpInst *CI, SplitInfo &SD);
98
Devang Patelfee76bd2007-08-07 00:25:56 +000099 /// Find condition inside a loop that is suitable candidate for index split.
100 void findSplitCondition();
101
Devang Patelbacf5192007-08-10 00:33:50 +0000102 /// Find loop's exit condition.
103 void findLoopConditionals();
104
105 /// Return induction variable associated with value V.
106 void findIndVar(Value *V, Loop *L);
107
Devang Patelfee76bd2007-08-07 00:25:56 +0000108 /// processOneIterationLoop - Current loop L contains compare instruction
109 /// that compares induction variable, IndVar, agains loop invariant. If
110 /// entire (i.e. meaningful) loop body is dominated by this compare
111 /// instruction then loop body is executed only for one iteration. In
112 /// such case eliminate loop structure surrounding this loop body. For
Devang Patel423c8b22007-08-10 18:07:13 +0000113 bool processOneIterationLoop(SplitInfo &SD);
Devang Patel00622952008-09-17 17:53:47 +0000114
115 /// isOneIterationLoop - Return true if split condition is EQ and
116 /// the IV is not used outside the loop.
117 bool isOneIterationLoop(ICmpInst *CI);
Devang Patel5279d062007-09-17 20:39:48 +0000118
119 void updateLoopBounds(ICmpInst *CI);
120 /// updateLoopIterationSpace - Current loop body is covered by an AND
121 /// instruction whose operands compares induction variables with loop
122 /// invariants. If possible, hoist this check outside the loop by
123 /// updating appropriate start and end values for induction variable.
124 bool updateLoopIterationSpace(SplitInfo &SD);
125
Devang Patel9704fcf2007-08-08 22:25:28 +0000126 /// If loop header includes loop variant instruction operands then
127 /// this loop may not be eliminated.
Devang Patel71554b82007-08-08 21:02:17 +0000128 bool safeHeader(SplitInfo &SD, BasicBlock *BB);
Devang Patelfee76bd2007-08-07 00:25:56 +0000129
Devang Patel1cc2ec82007-08-20 23:51:18 +0000130 /// If Exiting block includes loop variant instructions then this
Devang Patel9704fcf2007-08-08 22:25:28 +0000131 /// loop may not be eliminated.
Devang Patel1cc2ec82007-08-20 23:51:18 +0000132 bool safeExitingBlock(SplitInfo &SD, BasicBlock *BB);
Devang Patelfee76bd2007-08-07 00:25:56 +0000133
Devang Patela6a86632007-08-14 18:35:57 +0000134 /// removeBlocks - Remove basic block DeadBB and all blocks dominated by DeadBB.
135 /// This routine is used to remove split condition's dead branch, dominated by
136 /// DeadBB. LiveBB dominates split conidition's other branch.
137 void removeBlocks(BasicBlock *DeadBB, Loop *LP, BasicBlock *LiveBB);
Devang Patel98147a32007-08-12 07:02:51 +0000138
Devang Pateldc523952007-08-22 18:27:01 +0000139 /// safeSplitCondition - Return true if it is possible to
140 /// split loop using given split condition.
141 bool safeSplitCondition(SplitInfo &SD);
142
Devang Patel4a69da92007-08-25 00:56:38 +0000143 /// calculateLoopBounds - ALoop exit value and BLoop start values are calculated
144 /// based on split value.
145 void calculateLoopBounds(SplitInfo &SD);
146
Devang Pateld79faee2007-08-25 02:39:24 +0000147 /// updatePHINodes - CFG has been changed.
148 /// Before
149 /// - ExitBB's single predecessor was Latch
150 /// - Latch's second successor was Header
151 /// Now
152 /// - ExitBB's single predecessor was Header
153 /// - Latch's one and only successor was Header
154 ///
155 /// Update ExitBB PHINodes' to reflect this change.
156 void updatePHINodes(BasicBlock *ExitBB, BasicBlock *Latch,
157 BasicBlock *Header,
Devang Patelea069062008-02-13 22:23:07 +0000158 PHINode *IV, Instruction *IVIncrement, Loop *LP);
Devang Pateld79faee2007-08-25 02:39:24 +0000159
160 /// moveExitCondition - Move exit condition EC into split condition block CondBB.
161 void moveExitCondition(BasicBlock *CondBB, BasicBlock *ActiveBB,
162 BasicBlock *ExitBB, ICmpInst *EC, ICmpInst *SC,
163 PHINode *IV, Instruction *IVAdd, Loop *LP);
164
Devang Pateldc523952007-08-22 18:27:01 +0000165 /// splitLoop - Split current loop L in two loops using split information
166 /// SD. Update dominator information. Maintain LCSSA form.
Devang Patel71554b82007-08-08 21:02:17 +0000167 bool splitLoop(SplitInfo &SD);
Devang Patelfee76bd2007-08-07 00:25:56 +0000168
Devang Patelbacf5192007-08-10 00:33:50 +0000169 void initialize() {
170 IndVar = NULL;
171 IndVarIncrement = NULL;
172 ExitCondition = NULL;
Devang Patel98147a32007-08-12 07:02:51 +0000173 StartValue = NULL;
174 ExitValueNum = 0;
175 SplitData.clear();
Devang Patelbacf5192007-08-10 00:33:50 +0000176 }
177
Devang Patelfee76bd2007-08-07 00:25:56 +0000178 private:
179
180 // Current Loop.
181 Loop *L;
Devang Patel423c8b22007-08-10 18:07:13 +0000182 LPPassManager *LPM;
183 LoopInfo *LI;
Devang Patelfee76bd2007-08-07 00:25:56 +0000184 ScalarEvolution *SE;
Devang Patel9704fcf2007-08-08 22:25:28 +0000185 DominatorTree *DT;
Devang Patelfc4c5f82007-08-13 22:13:24 +0000186 DominanceFrontier *DF;
Devang Patel71554b82007-08-08 21:02:17 +0000187 SmallVector<SplitInfo, 4> SplitData;
Devang Patelbacf5192007-08-10 00:33:50 +0000188
189 // Induction variable whose range is being split by this transformation.
190 PHINode *IndVar;
191 Instruction *IndVarIncrement;
192
193 // Loop exit condition.
194 ICmpInst *ExitCondition;
195
196 // Induction variable's initial value.
197 Value *StartValue;
198
Devang Patel98147a32007-08-12 07:02:51 +0000199 // Induction variable's final loop exit value operand number in exit condition..
200 unsigned ExitValueNum;
Devang Patelfee76bd2007-08-07 00:25:56 +0000201 };
Devang Patelfee76bd2007-08-07 00:25:56 +0000202}
203
Dan Gohman844731a2008-05-13 00:00:25 +0000204char LoopIndexSplit::ID = 0;
205static RegisterPass<LoopIndexSplit>
206X("loop-index-split", "Index Split Loops");
207
Devang Patelfee76bd2007-08-07 00:25:56 +0000208LoopPass *llvm::createLoopIndexSplitPass() {
209 return new LoopIndexSplit();
210}
211
212// Index split Loop L. Return true if loop is split.
Devang Patel423c8b22007-08-10 18:07:13 +0000213bool LoopIndexSplit::runOnLoop(Loop *IncomingLoop, LPPassManager &LPM_Ref) {
Devang Patelfee76bd2007-08-07 00:25:56 +0000214 bool Changed = false;
215 L = IncomingLoop;
Devang Patel423c8b22007-08-10 18:07:13 +0000216 LPM = &LPM_Ref;
Devang Patel71554b82007-08-08 21:02:17 +0000217
Devang Patel3fe4f212007-08-15 02:14:55 +0000218 // FIXME - Nested loops make dominator info updates tricky.
Devang Patel4e8061c2007-08-14 23:53:57 +0000219 if (!L->getSubLoops().empty())
220 return false;
221
Devang Patelfee76bd2007-08-07 00:25:56 +0000222 SE = &getAnalysis<ScalarEvolution>();
Devang Patel9704fcf2007-08-08 22:25:28 +0000223 DT = &getAnalysis<DominatorTree>();
Devang Patel423c8b22007-08-10 18:07:13 +0000224 LI = &getAnalysis<LoopInfo>();
Devang Patel7375bb92007-08-15 03:34:53 +0000225 DF = &getAnalysis<DominanceFrontier>();
Devang Patelfee76bd2007-08-07 00:25:56 +0000226
Devang Patelbacf5192007-08-10 00:33:50 +0000227 initialize();
228
229 findLoopConditionals();
230
231 if (!ExitCondition)
232 return false;
233
Devang Patelfee76bd2007-08-07 00:25:56 +0000234 findSplitCondition();
235
Devang Patel71554b82007-08-08 21:02:17 +0000236 if (SplitData.empty())
Devang Patelfee76bd2007-08-07 00:25:56 +0000237 return false;
238
Devang Patel71554b82007-08-08 21:02:17 +0000239 // First see if it is possible to eliminate loop itself or not.
David Greenea022e3f2008-04-02 18:24:46 +0000240 for (SmallVector<SplitInfo, 4>::iterator SI = SplitData.begin();
241 SI != SplitData.end();) {
Devang Patel71554b82007-08-08 21:02:17 +0000242 SplitInfo &SD = *SI;
Devang Patel4f12c5f2007-09-11 00:12:56 +0000243 ICmpInst *CI = dyn_cast<ICmpInst>(SD.SplitCondition);
Devang Patel5279d062007-09-17 20:39:48 +0000244 if (SD.SplitCondition->getOpcode() == Instruction::And) {
245 Changed = updateLoopIterationSpace(SD);
246 if (Changed) {
247 ++NumIndexSplit;
248 // If is loop is eliminated then nothing else to do here.
249 return Changed;
250 } else {
251 SmallVector<SplitInfo, 4>::iterator Delete_SI = SI;
David Greenea022e3f2008-04-02 18:24:46 +0000252 SI = SplitData.erase(Delete_SI);
Devang Patel5279d062007-09-17 20:39:48 +0000253 }
254 }
Devang Patel00622952008-09-17 17:53:47 +0000255 else if (isOneIterationLoop(CI)) {
Devang Patel423c8b22007-08-10 18:07:13 +0000256 Changed = processOneIterationLoop(SD);
Devang Patel71554b82007-08-08 21:02:17 +0000257 if (Changed) {
258 ++NumIndexSplit;
259 // If is loop is eliminated then nothing else to do here.
260 return Changed;
Devang Pateld651f652007-08-20 20:24:15 +0000261 } else {
262 SmallVector<SplitInfo, 4>::iterator Delete_SI = SI;
David Greenea022e3f2008-04-02 18:24:46 +0000263 SI = SplitData.erase(Delete_SI);
Devang Patel71554b82007-08-08 21:02:17 +0000264 }
Devang Pateld651f652007-08-20 20:24:15 +0000265 } else
266 ++SI;
Devang Patel71554b82007-08-08 21:02:17 +0000267 }
268
Devang Patel4259fe32007-08-24 06:17:19 +0000269 if (SplitData.empty())
270 return false;
271
Devang Patel9704fcf2007-08-08 22:25:28 +0000272 // Split most profitiable condition.
Devang Patel7237d112007-08-24 05:21:13 +0000273 // FIXME : Implement cost analysis.
274 unsigned MostProfitableSDIndex = 0;
275 Changed = splitLoop(SplitData[MostProfitableSDIndex]);
Devang Patel9704fcf2007-08-08 22:25:28 +0000276
Devang Patelfee76bd2007-08-07 00:25:56 +0000277 if (Changed)
278 ++NumIndexSplit;
Devang Patel71554b82007-08-08 21:02:17 +0000279
Devang Patelfee76bd2007-08-07 00:25:56 +0000280 return Changed;
281}
282
Devang Patel00622952008-09-17 17:53:47 +0000283/// isOneIterationLoop - Return true if split condition is EQ and
284/// the IV is not used outside the loop.
285bool LoopIndexSplit::isOneIterationLoop(ICmpInst *CI) {
286 if (!CI)
287 return false;
288 if (CI->getPredicate() != ICmpInst::ICMP_EQ)
289 return false;
290
291 Value *Incr = IndVar->getIncomingValueForBlock(L->getLoopLatch());
292 for (Value::use_iterator UI = Incr->use_begin(), E = Incr->use_end();
293 UI != E; ++UI)
294 if (!L->contains(cast<Instruction>(*UI)->getParent()))
295 return false;
296
297 return true;
298}
Devang Patelc9d123d2007-08-09 01:39:01 +0000299/// Return true if V is a induction variable or induction variable's
300/// increment for loop L.
Devang Patelbacf5192007-08-10 00:33:50 +0000301void LoopIndexSplit::findIndVar(Value *V, Loop *L) {
Devang Patelc9d123d2007-08-09 01:39:01 +0000302
303 Instruction *I = dyn_cast<Instruction>(V);
304 if (!I)
Devang Patelbacf5192007-08-10 00:33:50 +0000305 return;
Devang Patelc9d123d2007-08-09 01:39:01 +0000306
307 // Check if I is a phi node from loop header or not.
308 if (PHINode *PN = dyn_cast<PHINode>(V)) {
309 if (PN->getParent() == L->getHeader()) {
Devang Patelbacf5192007-08-10 00:33:50 +0000310 IndVar = PN;
311 return;
Devang Patelc9d123d2007-08-09 01:39:01 +0000312 }
313 }
314
315 // Check if I is a add instruction whose one operand is
316 // phi node from loop header and second operand is constant.
317 if (I->getOpcode() != Instruction::Add)
Devang Patelbacf5192007-08-10 00:33:50 +0000318 return;
Devang Patelc9d123d2007-08-09 01:39:01 +0000319
320 Value *Op0 = I->getOperand(0);
321 Value *Op1 = I->getOperand(1);
322
Devang Patelc840da12008-01-29 02:20:41 +0000323 if (PHINode *PN = dyn_cast<PHINode>(Op0))
324 if (PN->getParent() == L->getHeader())
325 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1))
326 if (CI->isOne()) {
327 IndVar = PN;
328 IndVarIncrement = I;
329 return;
330 }
331
332 if (PHINode *PN = dyn_cast<PHINode>(Op1))
333 if (PN->getParent() == L->getHeader())
334 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op0))
335 if (CI->isOne()) {
336 IndVar = PN;
337 IndVarIncrement = I;
338 return;
339 }
Devang Patelc9d123d2007-08-09 01:39:01 +0000340
Devang Patelbacf5192007-08-10 00:33:50 +0000341 return;
342}
343
344// Find loop's exit condition and associated induction variable.
345void LoopIndexSplit::findLoopConditionals() {
346
Devang Patel1cc2ec82007-08-20 23:51:18 +0000347 BasicBlock *ExitingBlock = NULL;
Devang Patelbacf5192007-08-10 00:33:50 +0000348
349 for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
350 I != E; ++I) {
351 BasicBlock *BB = *I;
352 if (!L->isLoopExit(BB))
353 continue;
Devang Patel1cc2ec82007-08-20 23:51:18 +0000354 if (ExitingBlock)
Devang Patelbacf5192007-08-10 00:33:50 +0000355 return;
Devang Patel1cc2ec82007-08-20 23:51:18 +0000356 ExitingBlock = BB;
Devang Patelbacf5192007-08-10 00:33:50 +0000357 }
358
Devang Patel1cc2ec82007-08-20 23:51:18 +0000359 if (!ExitingBlock)
Devang Patelbacf5192007-08-10 00:33:50 +0000360 return;
Devang Patelb88e4202007-08-24 05:36:56 +0000361
362 // If exiting block is neither loop header nor loop latch then this loop is
363 // not suitable.
364 if (ExitingBlock != L->getHeader() && ExitingBlock != L->getLoopLatch())
365 return;
366
Devang Patelbacf5192007-08-10 00:33:50 +0000367 // If exit block's terminator is conditional branch inst then we have found
368 // exit condition.
Devang Patel1cc2ec82007-08-20 23:51:18 +0000369 BranchInst *BR = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
Devang Patelbacf5192007-08-10 00:33:50 +0000370 if (!BR || BR->isUnconditional())
371 return;
372
373 ICmpInst *CI = dyn_cast<ICmpInst>(BR->getCondition());
374 if (!CI)
375 return;
Devang Patel4a69da92007-08-25 00:56:38 +0000376
Bill Wendlingc6849102007-09-14 01:13:55 +0000377 // FIXME
Devang Patelbabbe272007-09-19 00:28:47 +0000378 if (CI->getPredicate() == ICmpInst::ICMP_EQ
Bill Wendlingc6849102007-09-14 01:13:55 +0000379 || CI->getPredicate() == ICmpInst::ICMP_NE)
380 return;
Devang Patel4a69da92007-08-25 00:56:38 +0000381
Devang Patelbacf5192007-08-10 00:33:50 +0000382 ExitCondition = CI;
383
384 // Exit condition's one operand is loop invariant exit value and second
385 // operand is SCEVAddRecExpr based on induction variable.
386 Value *V0 = CI->getOperand(0);
387 Value *V1 = CI->getOperand(1);
388
389 SCEVHandle SH0 = SE->getSCEV(V0);
390 SCEVHandle SH1 = SE->getSCEV(V1);
391
392 if (SH0->isLoopInvariant(L) && isa<SCEVAddRecExpr>(SH1)) {
Devang Patel98147a32007-08-12 07:02:51 +0000393 ExitValueNum = 0;
Devang Patelbacf5192007-08-10 00:33:50 +0000394 findIndVar(V1, L);
395 }
396 else if (SH1->isLoopInvariant(L) && isa<SCEVAddRecExpr>(SH0)) {
Devang Patel98147a32007-08-12 07:02:51 +0000397 ExitValueNum = 1;
Devang Patelbacf5192007-08-10 00:33:50 +0000398 findIndVar(V0, L);
399 }
400
Devang Patel98147a32007-08-12 07:02:51 +0000401 if (!IndVar)
Devang Patelbacf5192007-08-10 00:33:50 +0000402 ExitCondition = NULL;
403 else if (IndVar) {
404 BasicBlock *Preheader = L->getLoopPreheader();
405 StartValue = IndVar->getIncomingValueForBlock(Preheader);
406 }
Devang Patela5e27f82008-07-09 00:12:01 +0000407
408 // If start value is more then exit value where induction variable
409 // increments by 1 then we are potentially dealing with an infinite loop.
410 // Do not index split this loop.
411 if (ExitCondition) {
412 ConstantInt *SV = dyn_cast<ConstantInt>(StartValue);
413 ConstantInt *EV =
414 dyn_cast<ConstantInt>(ExitCondition->getOperand(ExitValueNum));
415 if (SV && EV && SV->getSExtValue() > EV->getSExtValue())
416 ExitCondition = NULL;
417 else if (EV && EV->isZero())
418 ExitCondition = NULL;
419 }
Devang Patelc9d123d2007-08-09 01:39:01 +0000420}
421
Devang Patelfee76bd2007-08-07 00:25:56 +0000422/// Find condition inside a loop that is suitable candidate for index split.
423void LoopIndexSplit::findSplitCondition() {
424
Devang Patel71554b82007-08-08 21:02:17 +0000425 SplitInfo SD;
Devang Patelc9d123d2007-08-09 01:39:01 +0000426 // Check all basic block's terminators.
Devang Patelc9d123d2007-08-09 01:39:01 +0000427 for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
428 I != E; ++I) {
Devang Patel964be452007-09-11 00:23:56 +0000429 SD.clear();
Devang Patelc9d123d2007-08-09 01:39:01 +0000430 BasicBlock *BB = *I;
Devang Patelfee76bd2007-08-07 00:25:56 +0000431
Devang Patelc9d123d2007-08-09 01:39:01 +0000432 // If this basic block does not terminate in a conditional branch
433 // then terminator is not a suitable split condition.
434 BranchInst *BR = dyn_cast<BranchInst>(BB->getTerminator());
435 if (!BR)
436 continue;
437
438 if (BR->isUnconditional())
Devang Patelfee76bd2007-08-07 00:25:56 +0000439 continue;
440
Devang Patel5279d062007-09-17 20:39:48 +0000441 if (Instruction *AndI = dyn_cast<Instruction>(BR->getCondition())) {
442 if (AndI->getOpcode() == Instruction::And) {
443 ICmpInst *Op0 = dyn_cast<ICmpInst>(AndI->getOperand(0));
444 ICmpInst *Op1 = dyn_cast<ICmpInst>(AndI->getOperand(1));
445
446 if (!Op0 || !Op1)
447 continue;
448
449 if (!safeICmpInst(Op0, SD))
450 continue;
451 SD.clear();
452 if (!safeICmpInst(Op1, SD))
453 continue;
454 SD.clear();
455 SD.SplitCondition = AndI;
456 SplitData.push_back(SD);
457 continue;
458 }
459 }
Devang Patelc9d123d2007-08-09 01:39:01 +0000460 ICmpInst *CI = dyn_cast<ICmpInst>(BR->getCondition());
Devang Patelbacf5192007-08-10 00:33:50 +0000461 if (!CI || CI == ExitCondition)
Devang Patelba32a5f2007-09-10 23:57:58 +0000462 continue;
Devang Patelfee76bd2007-08-07 00:25:56 +0000463
Devang Patelc830aee2007-08-24 06:02:25 +0000464 if (CI->getPredicate() == ICmpInst::ICMP_NE)
Devang Patelba32a5f2007-09-10 23:57:58 +0000465 continue;
Devang Patelc830aee2007-08-24 06:02:25 +0000466
Devang Patel4259fe32007-08-24 06:17:19 +0000467 // If split condition predicate is GT or GE then first execute
468 // false branch of split condition.
Devang Patelc3957d12007-09-11 01:10:45 +0000469 if (CI->getPredicate() == ICmpInst::ICMP_UGT
470 || CI->getPredicate() == ICmpInst::ICMP_SGT
471 || CI->getPredicate() == ICmpInst::ICMP_UGE
472 || CI->getPredicate() == ICmpInst::ICMP_SGE)
Devang Patel4259fe32007-08-24 06:17:19 +0000473 SD.UseTrueBranchFirst = false;
474
Devang Patelc9d123d2007-08-09 01:39:01 +0000475 // If one operand is loop invariant and second operand is SCEVAddRecExpr
476 // based on induction variable then CI is a candidate split condition.
Devang Pateld35ed2c2007-09-11 00:42:56 +0000477 if (safeICmpInst(CI, SD))
478 SplitData.push_back(SD);
479 }
480}
Devang Patelc9d123d2007-08-09 01:39:01 +0000481
Devang Pateld35ed2c2007-09-11 00:42:56 +0000482// safeIcmpInst - CI is considered safe instruction if one of the operand
483// is SCEVAddRecExpr based on induction variable and other operand is
484// loop invariant. If CI is safe then populate SplitInfo object SD appropriately
485// and return true;
486bool LoopIndexSplit::safeICmpInst(ICmpInst *CI, SplitInfo &SD) {
Devang Patelc9d123d2007-08-09 01:39:01 +0000487
Devang Pateld35ed2c2007-09-11 00:42:56 +0000488 Value *V0 = CI->getOperand(0);
489 Value *V1 = CI->getOperand(1);
490
491 SCEVHandle SH0 = SE->getSCEV(V0);
492 SCEVHandle SH1 = SE->getSCEV(V1);
493
494 if (SH0->isLoopInvariant(L) && isa<SCEVAddRecExpr>(SH1)) {
495 SD.SplitValue = V0;
496 SD.SplitCondition = CI;
497 if (PHINode *PN = dyn_cast<PHINode>(V1)) {
498 if (PN == IndVar)
499 return true;
Devang Patelfee76bd2007-08-07 00:25:56 +0000500 }
Devang Pateld35ed2c2007-09-11 00:42:56 +0000501 else if (Instruction *Insn = dyn_cast<Instruction>(V1)) {
502 if (IndVarIncrement && IndVarIncrement == Insn)
503 return true;
Devang Patelfee76bd2007-08-07 00:25:56 +0000504 }
505 }
Devang Pateld35ed2c2007-09-11 00:42:56 +0000506 else if (SH1->isLoopInvariant(L) && isa<SCEVAddRecExpr>(SH0)) {
507 SD.SplitValue = V1;
508 SD.SplitCondition = CI;
509 if (PHINode *PN = dyn_cast<PHINode>(V0)) {
510 if (PN == IndVar)
511 return true;
512 }
513 else if (Instruction *Insn = dyn_cast<Instruction>(V0)) {
514 if (IndVarIncrement && IndVarIncrement == Insn)
515 return true;
516 }
517 }
518
519 return false;
Devang Patelfee76bd2007-08-07 00:25:56 +0000520}
521
522/// processOneIterationLoop - Current loop L contains compare instruction
523/// that compares induction variable, IndVar, against loop invariant. If
524/// entire (i.e. meaningful) loop body is dominated by this compare
525/// instruction then loop body is executed only once. In such case eliminate
526/// loop structure surrounding this loop body. For example,
527/// for (int i = start; i < end; ++i) {
528/// if ( i == somevalue) {
529/// loop_body
530/// }
531/// }
532/// can be transformed into
533/// if (somevalue >= start && somevalue < end) {
534/// i = somevalue;
535/// loop_body
536/// }
Devang Patel423c8b22007-08-10 18:07:13 +0000537bool LoopIndexSplit::processOneIterationLoop(SplitInfo &SD) {
Devang Patelfee76bd2007-08-07 00:25:56 +0000538
539 BasicBlock *Header = L->getHeader();
540
541 // First of all, check if SplitCondition dominates entire loop body
542 // or not.
543
544 // If SplitCondition is not in loop header then this loop is not suitable
545 // for this transformation.
Devang Patel71554b82007-08-08 21:02:17 +0000546 if (SD.SplitCondition->getParent() != Header)
Devang Patelfee76bd2007-08-07 00:25:56 +0000547 return false;
548
Devang Patelfee76bd2007-08-07 00:25:56 +0000549 // If loop header includes loop variant instruction operands then
550 // this loop may not be eliminated.
Devang Patel71554b82007-08-08 21:02:17 +0000551 if (!safeHeader(SD, Header))
Devang Patelfee76bd2007-08-07 00:25:56 +0000552 return false;
553
Devang Patel1cc2ec82007-08-20 23:51:18 +0000554 // If Exiting block includes loop variant instructions then this
Devang Patelfee76bd2007-08-07 00:25:56 +0000555 // loop may not be eliminated.
Devang Patel1cc2ec82007-08-20 23:51:18 +0000556 if (!safeExitingBlock(SD, ExitCondition->getParent()))
Devang Patelfee76bd2007-08-07 00:25:56 +0000557 return false;
558
Devang Patel968eee22007-09-19 00:15:16 +0000559 // Filter loops where split condition's false branch is not empty.
560 if (ExitCondition->getParent() != Header->getTerminator()->getSuccessor(1))
561 return false;
562
Devang Patel8893ca62007-09-17 21:01:05 +0000563 // If split condition is not safe then do not process this loop.
564 // For example,
565 // for(int i = 0; i < N; i++) {
566 // if ( i == XYZ) {
567 // A;
568 // else
569 // B;
570 // }
571 // C;
572 // D;
573 // }
574 if (!safeSplitCondition(SD))
575 return false;
576
Devang Patel84ef08b2007-09-19 00:11:01 +0000577 BasicBlock *Latch = L->getLoopLatch();
578 BranchInst *BR = dyn_cast<BranchInst>(Latch->getTerminator());
579 if (!BR)
580 return false;
581
Devang Patel6a2bfda2007-08-08 01:51:27 +0000582 // Update CFG.
583
Devang Patelebc5fea2007-08-20 20:49:01 +0000584 // Replace index variable with split value in loop body. Loop body is executed
585 // only when index variable is equal to split value.
586 IndVar->replaceAllUsesWith(SD.SplitValue);
587
588 // Remove Latch to Header edge.
Devang Patel6a2bfda2007-08-08 01:51:27 +0000589 BasicBlock *LatchSucc = NULL;
Devang Patel6a2bfda2007-08-08 01:51:27 +0000590 Header->removePredecessor(Latch);
591 for (succ_iterator SI = succ_begin(Latch), E = succ_end(Latch);
592 SI != E; ++SI) {
593 if (Header != *SI)
594 LatchSucc = *SI;
595 }
596 BR->setUnconditionalDest(LatchSucc);
597
Devang Patelfee76bd2007-08-07 00:25:56 +0000598 Instruction *Terminator = Header->getTerminator();
Devang Patelada054a2007-08-14 01:30:57 +0000599 Value *ExitValue = ExitCondition->getOperand(ExitValueNum);
Devang Patelfee76bd2007-08-07 00:25:56 +0000600
Devang Patelfee76bd2007-08-07 00:25:56 +0000601 // Replace split condition in header.
602 // Transform
603 // SplitCondition : icmp eq i32 IndVar, SplitValue
604 // into
605 // c1 = icmp uge i32 SplitValue, StartValue
Devang Patelba32a5f2007-09-10 23:57:58 +0000606 // c2 = icmp ult i32 SplitValue, ExitValue
Devang Patelfee76bd2007-08-07 00:25:56 +0000607 // and i32 c1, c2
Devang Patelbacf5192007-08-10 00:33:50 +0000608 bool SignedPredicate = ExitCondition->isSignedPredicate();
Devang Patelfee76bd2007-08-07 00:25:56 +0000609 Instruction *C1 = new ICmpInst(SignedPredicate ?
610 ICmpInst::ICMP_SGE : ICmpInst::ICMP_UGE,
Devang Patel71554b82007-08-08 21:02:17 +0000611 SD.SplitValue, StartValue, "lisplit",
612 Terminator);
Devang Patelfee76bd2007-08-07 00:25:56 +0000613 Instruction *C2 = new ICmpInst(SignedPredicate ?
614 ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
Devang Patelada054a2007-08-14 01:30:57 +0000615 SD.SplitValue, ExitValue, "lisplit",
Devang Patel71554b82007-08-08 21:02:17 +0000616 Terminator);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000617 Instruction *NSplitCond = BinaryOperator::CreateAnd(C1, C2, "lisplit",
Devang Patel71554b82007-08-08 21:02:17 +0000618 Terminator);
619 SD.SplitCondition->replaceAllUsesWith(NSplitCond);
620 SD.SplitCondition->eraseFromParent();
Devang Patelfee76bd2007-08-07 00:25:56 +0000621
Devang Patelfee76bd2007-08-07 00:25:56 +0000622 // Now, clear latch block. Remove instructions that are responsible
623 // to increment induction variable.
624 Instruction *LTerminator = Latch->getTerminator();
625 for (BasicBlock::iterator LB = Latch->begin(), LE = Latch->end();
626 LB != LE; ) {
627 Instruction *I = LB;
628 ++LB;
629 if (isa<PHINode>(I) || I == LTerminator)
630 continue;
631
Devang Patel52abbf52008-05-19 22:23:55 +0000632 if (I == IndVarIncrement) {
633 // Replace induction variable increment if it is not used outside
634 // the loop.
635 bool UsedOutsideLoop = false;
636 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
637 UI != E; ++UI) {
638 if (Instruction *Use = dyn_cast<Instruction>(UI))
639 if (!L->contains(Use->getParent())) {
640 UsedOutsideLoop = true;
641 break;
642 }
643 }
644 if (!UsedOutsideLoop) {
645 I->replaceAllUsesWith(ExitValue);
646 I->eraseFromParent();
647 }
648 }
649 else {
Devang Patelada054a2007-08-14 01:30:57 +0000650 I->replaceAllUsesWith(UndefValue::get(I->getType()));
Devang Patel52abbf52008-05-19 22:23:55 +0000651 I->eraseFromParent();
652 }
Devang Patelfee76bd2007-08-07 00:25:56 +0000653 }
654
Devang Patel423c8b22007-08-10 18:07:13 +0000655 LPM->deleteLoopFromQueue(L);
Devang Patel787a7132007-08-08 21:39:47 +0000656
657 // Update Dominator Info.
658 // Only CFG change done is to remove Latch to Header edge. This
659 // does not change dominator tree because Latch did not dominate
660 // Header.
Devang Patelfc4c5f82007-08-13 22:13:24 +0000661 if (DF) {
Devang Patel787a7132007-08-08 21:39:47 +0000662 DominanceFrontier::iterator HeaderDF = DF->find(Header);
663 if (HeaderDF != DF->end())
664 DF->removeFromFrontier(HeaderDF, Header);
665
666 DominanceFrontier::iterator LatchDF = DF->find(Latch);
667 if (LatchDF != DF->end())
668 DF->removeFromFrontier(LatchDF, Header);
669 }
Devang Patelfee76bd2007-08-07 00:25:56 +0000670 return true;
671}
672
673// If loop header includes loop variant instruction operands then
674// this loop can not be eliminated. This is used by processOneIterationLoop().
Devang Patel71554b82007-08-08 21:02:17 +0000675bool LoopIndexSplit::safeHeader(SplitInfo &SD, BasicBlock *Header) {
Devang Patelfee76bd2007-08-07 00:25:56 +0000676
677 Instruction *Terminator = Header->getTerminator();
678 for(BasicBlock::iterator BI = Header->begin(), BE = Header->end();
679 BI != BE; ++BI) {
680 Instruction *I = BI;
681
Devang Patelada054a2007-08-14 01:30:57 +0000682 // PHI Nodes are OK.
Devang Patelfee76bd2007-08-07 00:25:56 +0000683 if (isa<PHINode>(I))
684 continue;
685
686 // SplitCondition itself is OK.
Devang Patel71554b82007-08-08 21:02:17 +0000687 if (I == SD.SplitCondition)
Devang Patel6a2bfda2007-08-08 01:51:27 +0000688 continue;
Devang Patelfee76bd2007-08-07 00:25:56 +0000689
Devang Patelc9d123d2007-08-09 01:39:01 +0000690 // Induction variable is OK.
Devang Patelbacf5192007-08-10 00:33:50 +0000691 if (I == IndVar)
Devang Patelc9d123d2007-08-09 01:39:01 +0000692 continue;
693
694 // Induction variable increment is OK.
Devang Patelbacf5192007-08-10 00:33:50 +0000695 if (I == IndVarIncrement)
Devang Patelc9d123d2007-08-09 01:39:01 +0000696 continue;
697
Devang Patelfee76bd2007-08-07 00:25:56 +0000698 // Terminator is also harmless.
699 if (I == Terminator)
700 continue;
701
702 // Otherwise we have a instruction that may not be safe.
703 return false;
704 }
705
706 return true;
707}
708
Devang Patel1cc2ec82007-08-20 23:51:18 +0000709// If Exiting block includes loop variant instructions then this
Devang Patelfee76bd2007-08-07 00:25:56 +0000710// loop may not be eliminated. This is used by processOneIterationLoop().
Devang Patel1cc2ec82007-08-20 23:51:18 +0000711bool LoopIndexSplit::safeExitingBlock(SplitInfo &SD,
712 BasicBlock *ExitingBlock) {
Devang Patelfee76bd2007-08-07 00:25:56 +0000713
Devang Patel1cc2ec82007-08-20 23:51:18 +0000714 for (BasicBlock::iterator BI = ExitingBlock->begin(),
715 BE = ExitingBlock->end(); BI != BE; ++BI) {
Devang Patelfee76bd2007-08-07 00:25:56 +0000716 Instruction *I = BI;
717
Devang Patelada054a2007-08-14 01:30:57 +0000718 // PHI Nodes are OK.
Devang Patelfee76bd2007-08-07 00:25:56 +0000719 if (isa<PHINode>(I))
720 continue;
721
Devang Patelc9d123d2007-08-09 01:39:01 +0000722 // Induction variable increment is OK.
Devang Patelbacf5192007-08-10 00:33:50 +0000723 if (IndVarIncrement && IndVarIncrement == I)
Devang Patelc9d123d2007-08-09 01:39:01 +0000724 continue;
Devang Patelfee76bd2007-08-07 00:25:56 +0000725
Devang Patelc9d123d2007-08-09 01:39:01 +0000726 // Check if I is induction variable increment instruction.
Devang Patela6dff2f2007-09-25 18:24:48 +0000727 if (I->getOpcode() == Instruction::Add) {
Devang Patelc9d123d2007-08-09 01:39:01 +0000728
729 Value *Op0 = I->getOperand(0);
730 Value *Op1 = I->getOperand(1);
Devang Patelfee76bd2007-08-07 00:25:56 +0000731 PHINode *PN = NULL;
732 ConstantInt *CI = NULL;
733
734 if ((PN = dyn_cast<PHINode>(Op0))) {
735 if ((CI = dyn_cast<ConstantInt>(Op1)))
Devang Patela6dff2f2007-09-25 18:24:48 +0000736 if (CI->isOne()) {
737 if (!IndVarIncrement && PN == IndVar)
738 IndVarIncrement = I;
739 // else this is another loop induction variable
740 continue;
741 }
Devang Patelfee76bd2007-08-07 00:25:56 +0000742 } else
743 if ((PN = dyn_cast<PHINode>(Op1))) {
744 if ((CI = dyn_cast<ConstantInt>(Op0)))
Devang Patela6dff2f2007-09-25 18:24:48 +0000745 if (CI->isOne()) {
746 if (!IndVarIncrement && PN == IndVar)
747 IndVarIncrement = I;
748 // else this is another loop induction variable
749 continue;
750 }
Devang Patelfee76bd2007-08-07 00:25:56 +0000751 }
Devang Patela6dff2f2007-09-25 18:24:48 +0000752 }
Devang Patel6a2bfda2007-08-08 01:51:27 +0000753
Devang Patelfee76bd2007-08-07 00:25:56 +0000754 // I is an Exit condition if next instruction is block terminator.
755 // Exit condition is OK if it compares loop invariant exit value,
756 // which is checked below.
Devang Patel002fe252007-08-07 23:17:52 +0000757 else if (ICmpInst *EC = dyn_cast<ICmpInst>(I)) {
Devang Patelbacf5192007-08-10 00:33:50 +0000758 if (EC == ExitCondition)
Devang Patel6a2bfda2007-08-08 01:51:27 +0000759 continue;
Devang Patelfee76bd2007-08-07 00:25:56 +0000760 }
761
Devang Patel1cc2ec82007-08-20 23:51:18 +0000762 if (I == ExitingBlock->getTerminator())
Devang Patelbacf5192007-08-10 00:33:50 +0000763 continue;
764
Devang Patelfee76bd2007-08-07 00:25:56 +0000765 // Otherwise we have instruction that may not be safe.
766 return false;
767 }
768
Devang Patel1cc2ec82007-08-20 23:51:18 +0000769 // We could not find any reason to consider ExitingBlock unsafe.
Devang Patelfee76bd2007-08-07 00:25:56 +0000770 return true;
771}
772
Devang Patel5279d062007-09-17 20:39:48 +0000773void LoopIndexSplit::updateLoopBounds(ICmpInst *CI) {
774
775 Value *V0 = CI->getOperand(0);
776 Value *V1 = CI->getOperand(1);
777 Value *NV = NULL;
778
779 SCEVHandle SH0 = SE->getSCEV(V0);
780
781 if (SH0->isLoopInvariant(L))
782 NV = V0;
783 else
784 NV = V1;
785
Devang Patel453a8442007-09-25 17:31:19 +0000786 if (ExitCondition->getPredicate() == ICmpInst::ICMP_SGT
787 || ExitCondition->getPredicate() == ICmpInst::ICMP_UGT
788 || ExitCondition->getPredicate() == ICmpInst::ICMP_SGE
789 || ExitCondition->getPredicate() == ICmpInst::ICMP_UGE) {
790 ExitCondition->swapOperands();
791 if (ExitValueNum)
792 ExitValueNum = 0;
793 else
794 ExitValueNum = 1;
795 }
796
797 Value *NUB = NULL;
798 Value *NLB = NULL;
799 Value *UB = ExitCondition->getOperand(ExitValueNum);
800 const Type *Ty = NV->getType();
801 bool Sign = ExitCondition->isSignedPredicate();
802 BasicBlock *Preheader = L->getLoopPreheader();
803 Instruction *PHTerminator = Preheader->getTerminator();
804
805 assert (NV && "Unexpected value");
806
Devang Patel5279d062007-09-17 20:39:48 +0000807 switch (CI->getPredicate()) {
808 case ICmpInst::ICMP_ULE:
809 case ICmpInst::ICMP_SLE:
810 // for (i = LB; i < UB; ++i)
811 // if (i <= NV && ...)
812 // LOOP_BODY
813 //
814 // is transformed into
815 // NUB = min (NV+1, UB)
816 // for (i = LB; i < NUB ; ++i)
817 // LOOP_BODY
818 //
Devang Patel453a8442007-09-25 17:31:19 +0000819 if (ExitCondition->getPredicate() == ICmpInst::ICMP_SLT
820 || ExitCondition->getPredicate() == ICmpInst::ICMP_ULT) {
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000821 Value *A = BinaryOperator::CreateAdd(NV, ConstantInt::get(Ty, 1, Sign),
Devang Patel453a8442007-09-25 17:31:19 +0000822 "lsplit.add", PHTerminator);
823 Value *C = new ICmpInst(Sign ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
824 A, UB,"lsplit,c", PHTerminator);
Gabor Greif051a9502008-04-06 20:25:17 +0000825 NUB = SelectInst::Create(C, A, UB, "lsplit.nub", PHTerminator);
Devang Patel453a8442007-09-25 17:31:19 +0000826 }
827
Devang Patel5279d062007-09-17 20:39:48 +0000828 // for (i = LB; i <= UB; ++i)
829 // if (i <= NV && ...)
830 // LOOP_BODY
831 //
832 // is transformed into
833 // NUB = min (NV, UB)
834 // for (i = LB; i <= NUB ; ++i)
835 // LOOP_BODY
836 //
Devang Patel453a8442007-09-25 17:31:19 +0000837 else if (ExitCondition->getPredicate() == ICmpInst::ICMP_SLE
838 || ExitCondition->getPredicate() == ICmpInst::ICMP_ULE) {
839 Value *C = new ICmpInst(Sign ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
840 NV, UB, "lsplit.c", PHTerminator);
Gabor Greif051a9502008-04-06 20:25:17 +0000841 NUB = SelectInst::Create(C, NV, UB, "lsplit.nub", PHTerminator);
Devang Patel453a8442007-09-25 17:31:19 +0000842 }
Devang Patel5279d062007-09-17 20:39:48 +0000843 break;
844 case ICmpInst::ICMP_ULT:
845 case ICmpInst::ICMP_SLT:
846 // for (i = LB; i < UB; ++i)
847 // if (i < NV && ...)
848 // LOOP_BODY
849 //
850 // is transformed into
851 // NUB = min (NV, UB)
852 // for (i = LB; i < NUB ; ++i)
853 // LOOP_BODY
854 //
Devang Patel453a8442007-09-25 17:31:19 +0000855 if (ExitCondition->getPredicate() == ICmpInst::ICMP_SLT
856 || ExitCondition->getPredicate() == ICmpInst::ICMP_ULT) {
857 Value *C = new ICmpInst(Sign ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
858 NV, UB, "lsplit.c", PHTerminator);
Gabor Greif051a9502008-04-06 20:25:17 +0000859 NUB = SelectInst::Create(C, NV, UB, "lsplit.nub", PHTerminator);
Devang Patel453a8442007-09-25 17:31:19 +0000860 }
Devang Patel5279d062007-09-17 20:39:48 +0000861
862 // for (i = LB; i <= UB; ++i)
863 // if (i < NV && ...)
864 // LOOP_BODY
865 //
866 // is transformed into
867 // NUB = min (NV -1 , UB)
868 // for (i = LB; i <= NUB ; ++i)
869 // LOOP_BODY
870 //
Devang Patel453a8442007-09-25 17:31:19 +0000871 else if (ExitCondition->getPredicate() == ICmpInst::ICMP_SLE
872 || ExitCondition->getPredicate() == ICmpInst::ICMP_ULE) {
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000873 Value *S = BinaryOperator::CreateSub(NV, ConstantInt::get(Ty, 1, Sign),
Devang Patel453a8442007-09-25 17:31:19 +0000874 "lsplit.add", PHTerminator);
875 Value *C = new ICmpInst(Sign ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
876 S, UB, "lsplit.c", PHTerminator);
Gabor Greif051a9502008-04-06 20:25:17 +0000877 NUB = SelectInst::Create(C, S, UB, "lsplit.nub", PHTerminator);
Devang Patel453a8442007-09-25 17:31:19 +0000878 }
Devang Patel5279d062007-09-17 20:39:48 +0000879 break;
880 case ICmpInst::ICMP_UGE:
881 case ICmpInst::ICMP_SGE:
882 // for (i = LB; i (< or <=) UB; ++i)
883 // if (i >= NV && ...)
884 // LOOP_BODY
885 //
886 // is transformed into
887 // NLB = max (NV, LB)
888 // for (i = NLB; i (< or <=) UB ; ++i)
889 // LOOP_BODY
890 //
Devang Patel453a8442007-09-25 17:31:19 +0000891 {
892 Value *C = new ICmpInst(Sign ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
893 NV, StartValue, "lsplit.c", PHTerminator);
Gabor Greif051a9502008-04-06 20:25:17 +0000894 NLB = SelectInst::Create(C, StartValue, NV, "lsplit.nlb", PHTerminator);
Devang Patel453a8442007-09-25 17:31:19 +0000895 }
Devang Patel5279d062007-09-17 20:39:48 +0000896 break;
897 case ICmpInst::ICMP_UGT:
898 case ICmpInst::ICMP_SGT:
899 // for (i = LB; i (< or <=) UB; ++i)
900 // if (i > NV && ...)
901 // LOOP_BODY
902 //
903 // is transformed into
904 // NLB = max (NV+1, LB)
905 // for (i = NLB; i (< or <=) UB ; ++i)
906 // LOOP_BODY
907 //
Devang Patel453a8442007-09-25 17:31:19 +0000908 {
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000909 Value *A = BinaryOperator::CreateAdd(NV, ConstantInt::get(Ty, 1, Sign),
Devang Patel453a8442007-09-25 17:31:19 +0000910 "lsplit.add", PHTerminator);
911 Value *C = new ICmpInst(Sign ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
912 A, StartValue, "lsplit.c", PHTerminator);
Gabor Greif051a9502008-04-06 20:25:17 +0000913 NLB = SelectInst::Create(C, StartValue, A, "lsplit.nlb", PHTerminator);
Devang Patel453a8442007-09-25 17:31:19 +0000914 }
Devang Patel5279d062007-09-17 20:39:48 +0000915 break;
916 default:
917 assert ( 0 && "Unexpected split condition predicate");
918 }
Devang Patel453a8442007-09-25 17:31:19 +0000919
920 if (NLB) {
921 unsigned i = IndVar->getBasicBlockIndex(Preheader);
922 IndVar->setIncomingValue(i, NLB);
923 }
924
925 if (NUB) {
926 ExitCondition->setOperand(ExitValueNum, NUB);
927 }
Devang Patel5279d062007-09-17 20:39:48 +0000928}
929/// updateLoopIterationSpace - Current loop body is covered by an AND
930/// instruction whose operands compares induction variables with loop
931/// invariants. If possible, hoist this check outside the loop by
932/// updating appropriate start and end values for induction variable.
933bool LoopIndexSplit::updateLoopIterationSpace(SplitInfo &SD) {
934 BasicBlock *Header = L->getHeader();
Devang Patel453a8442007-09-25 17:31:19 +0000935 BasicBlock *ExitingBlock = ExitCondition->getParent();
936 BasicBlock *SplitCondBlock = SD.SplitCondition->getParent();
937
Devang Patel5279d062007-09-17 20:39:48 +0000938 ICmpInst *Op0 = cast<ICmpInst>(SD.SplitCondition->getOperand(0));
939 ICmpInst *Op1 = cast<ICmpInst>(SD.SplitCondition->getOperand(1));
940
941 if (Op0->getPredicate() == ICmpInst::ICMP_EQ
942 || Op0->getPredicate() == ICmpInst::ICMP_NE
Devang Pateld44b7c12008-10-06 23:22:54 +0000943 || Op1->getPredicate() == ICmpInst::ICMP_EQ
944 || Op1->getPredicate() == ICmpInst::ICMP_NE)
Devang Patel5279d062007-09-17 20:39:48 +0000945 return false;
946
947 // Check if SplitCondition dominates entire loop body
948 // or not.
949
950 // If SplitCondition is not in loop header then this loop is not suitable
951 // for this transformation.
952 if (SD.SplitCondition->getParent() != Header)
953 return false;
954
955 // If loop header includes loop variant instruction operands then
956 // this loop may not be eliminated.
957 Instruction *Terminator = Header->getTerminator();
958 for(BasicBlock::iterator BI = Header->begin(), BE = Header->end();
959 BI != BE; ++BI) {
960 Instruction *I = BI;
961
962 // PHI Nodes are OK.
963 if (isa<PHINode>(I))
964 continue;
965
966 // SplitCondition itself is OK.
967 if (I == SD.SplitCondition)
968 continue;
969 if (I == Op0 || I == Op1)
970 continue;
971
972 // Induction variable is OK.
973 if (I == IndVar)
974 continue;
975
976 // Induction variable increment is OK.
977 if (I == IndVarIncrement)
978 continue;
979
980 // Terminator is also harmless.
981 if (I == Terminator)
982 continue;
983
984 // Otherwise we have a instruction that may not be safe.
985 return false;
986 }
987
988 // If Exiting block includes loop variant instructions then this
989 // loop may not be eliminated.
990 if (!safeExitingBlock(SD, ExitCondition->getParent()))
991 return false;
Devang Patel453a8442007-09-25 17:31:19 +0000992
993 // Verify that loop exiting block has only two predecessor, where one predecessor
994 // is split condition block. The other predecessor will become exiting block's
995 // dominator after CFG is updated. TODO : Handle CFG's where exiting block has
996 // more then two predecessors. This requires extra work in updating dominator
997 // information.
998 BasicBlock *ExitingBBPred = NULL;
999 for (pred_iterator PI = pred_begin(ExitingBlock), PE = pred_end(ExitingBlock);
1000 PI != PE; ++PI) {
1001 BasicBlock *BB = *PI;
1002 if (SplitCondBlock == BB)
1003 continue;
1004 if (ExitingBBPred)
1005 return false;
1006 else
1007 ExitingBBPred = BB;
1008 }
1009
1010 // Update loop bounds to absorb Op0 check.
Devang Patel5279d062007-09-17 20:39:48 +00001011 updateLoopBounds(Op0);
Devang Patel453a8442007-09-25 17:31:19 +00001012 // Update loop bounds to absorb Op1 check.
Devang Patel5279d062007-09-17 20:39:48 +00001013 updateLoopBounds(Op1);
Devang Patel453a8442007-09-25 17:31:19 +00001014
Devang Patel5279d062007-09-17 20:39:48 +00001015 // Update CFG
Devang Patel453a8442007-09-25 17:31:19 +00001016
1017 // Unconditionally connect split block to its remaining successor.
1018 BranchInst *SplitTerminator =
1019 cast<BranchInst>(SplitCondBlock->getTerminator());
1020 BasicBlock *Succ0 = SplitTerminator->getSuccessor(0);
1021 BasicBlock *Succ1 = SplitTerminator->getSuccessor(1);
1022 if (Succ0 == ExitCondition->getParent())
1023 SplitTerminator->setUnconditionalDest(Succ1);
1024 else
1025 SplitTerminator->setUnconditionalDest(Succ0);
1026
1027 // Remove split condition.
1028 SD.SplitCondition->eraseFromParent();
Dan Gohmana8c763b2008-08-14 18:13:49 +00001029 if (Op0->use_empty())
Devang Patel453a8442007-09-25 17:31:19 +00001030 Op0->eraseFromParent();
Dan Gohmana8c763b2008-08-14 18:13:49 +00001031 if (Op1->use_empty())
Devang Patel453a8442007-09-25 17:31:19 +00001032 Op1->eraseFromParent();
1033
1034 BranchInst *ExitInsn =
1035 dyn_cast<BranchInst>(ExitingBlock->getTerminator());
1036 assert (ExitInsn && "Unable to find suitable loop exit branch");
1037 BasicBlock *ExitBlock = ExitInsn->getSuccessor(1);
1038 if (L->contains(ExitBlock))
1039 ExitBlock = ExitInsn->getSuccessor(0);
1040
1041 // Update domiantor info. Now, ExitingBlock has only one predecessor,
1042 // ExitingBBPred, and it is ExitingBlock's immediate domiantor.
1043 DT->changeImmediateDominator(ExitingBlock, ExitingBBPred);
1044
1045 // If ExitingBlock is a member of loop BB's DF list then replace it with
1046 // loop header and exit block.
1047 for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
1048 I != E; ++I) {
1049 BasicBlock *BB = *I;
1050 if (BB == Header || BB == ExitingBlock)
1051 continue;
1052 DominanceFrontier::iterator BBDF = DF->find(BB);
1053 DominanceFrontier::DomSetType::iterator DomSetI = BBDF->second.begin();
1054 DominanceFrontier::DomSetType::iterator DomSetE = BBDF->second.end();
1055 while (DomSetI != DomSetE) {
1056 DominanceFrontier::DomSetType::iterator CurrentItr = DomSetI;
1057 ++DomSetI;
1058 BasicBlock *DFBB = *CurrentItr;
1059 if (DFBB == ExitingBlock) {
1060 BBDF->second.erase(DFBB);
1061 BBDF->second.insert(Header);
1062 if (Header != ExitingBlock)
1063 BBDF->second.insert(ExitBlock);
1064 }
1065 }
1066 }
1067
Devang Patel1c013502007-09-25 17:43:08 +00001068 return true;
Devang Patel5279d062007-09-17 20:39:48 +00001069}
1070
1071
Devang Patela6a86632007-08-14 18:35:57 +00001072/// removeBlocks - Remove basic block DeadBB and all blocks dominated by DeadBB.
1073/// This routine is used to remove split condition's dead branch, dominated by
1074/// DeadBB. LiveBB dominates split conidition's other branch.
1075void LoopIndexSplit::removeBlocks(BasicBlock *DeadBB, Loop *LP,
1076 BasicBlock *LiveBB) {
Devang Patel98147a32007-08-12 07:02:51 +00001077
Devang Patel5b8ec612007-08-15 03:31:47 +00001078 // First update DeadBB's dominance frontier.
Devang Patel96bf5242007-08-17 21:59:16 +00001079 SmallVector<BasicBlock *, 8> FrontierBBs;
Devang Patel5b8ec612007-08-15 03:31:47 +00001080 DominanceFrontier::iterator DeadBBDF = DF->find(DeadBB);
1081 if (DeadBBDF != DF->end()) {
1082 SmallVector<BasicBlock *, 8> PredBlocks;
1083
1084 DominanceFrontier::DomSetType DeadBBSet = DeadBBDF->second;
1085 for (DominanceFrontier::DomSetType::iterator DeadBBSetI = DeadBBSet.begin(),
1086 DeadBBSetE = DeadBBSet.end(); DeadBBSetI != DeadBBSetE; ++DeadBBSetI) {
1087 BasicBlock *FrontierBB = *DeadBBSetI;
Devang Patel96bf5242007-08-17 21:59:16 +00001088 FrontierBBs.push_back(FrontierBB);
1089
Devang Patel5b8ec612007-08-15 03:31:47 +00001090 // Rremove any PHI incoming edge from blocks dominated by DeadBB.
1091 PredBlocks.clear();
1092 for(pred_iterator PI = pred_begin(FrontierBB), PE = pred_end(FrontierBB);
1093 PI != PE; ++PI) {
1094 BasicBlock *P = *PI;
1095 if (P == DeadBB || DT->dominates(DeadBB, P))
1096 PredBlocks.push_back(P);
Devang Patelfc4c5f82007-08-13 22:13:24 +00001097 }
Devang Patel96bf5242007-08-17 21:59:16 +00001098
Devang Patel5b8ec612007-08-15 03:31:47 +00001099 for(BasicBlock::iterator FBI = FrontierBB->begin(), FBE = FrontierBB->end();
1100 FBI != FBE; ++FBI) {
1101 if (PHINode *PN = dyn_cast<PHINode>(FBI)) {
1102 for(SmallVector<BasicBlock *, 8>::iterator PI = PredBlocks.begin(),
1103 PE = PredBlocks.end(); PI != PE; ++PI) {
1104 BasicBlock *P = *PI;
1105 PN->removeIncomingValue(P);
1106 }
1107 }
1108 else
1109 break;
Devang Patel96bf5242007-08-17 21:59:16 +00001110 }
Devang Patel98147a32007-08-12 07:02:51 +00001111 }
Devang Patel98147a32007-08-12 07:02:51 +00001112 }
Devang Patel5b8ec612007-08-15 03:31:47 +00001113
1114 // Now remove DeadBB and all nodes dominated by DeadBB in df order.
1115 SmallVector<BasicBlock *, 32> WorkList;
1116 DomTreeNode *DN = DT->getNode(DeadBB);
1117 for (df_iterator<DomTreeNode*> DI = df_begin(DN),
1118 E = df_end(DN); DI != E; ++DI) {
1119 BasicBlock *BB = DI->getBlock();
1120 WorkList.push_back(BB);
Devang Patel96bf5242007-08-17 21:59:16 +00001121 BB->replaceAllUsesWith(UndefValue::get(Type::LabelTy));
Devang Patel5b8ec612007-08-15 03:31:47 +00001122 }
1123
1124 while (!WorkList.empty()) {
1125 BasicBlock *BB = WorkList.back(); WorkList.pop_back();
1126 for(BasicBlock::iterator BBI = BB->begin(), BBE = BB->end();
Devang Pateld15dd8c2007-09-20 23:01:50 +00001127 BBI != BBE; ) {
Devang Patel5b8ec612007-08-15 03:31:47 +00001128 Instruction *I = BBI;
Devang Pateld15dd8c2007-09-20 23:01:50 +00001129 ++BBI;
Devang Patel5b8ec612007-08-15 03:31:47 +00001130 I->replaceAllUsesWith(UndefValue::get(I->getType()));
1131 I->eraseFromParent();
1132 }
1133 LPM->deleteSimpleAnalysisValue(BB, LP);
1134 DT->eraseNode(BB);
1135 DF->removeBlock(BB);
1136 LI->removeBlock(BB);
1137 BB->eraseFromParent();
1138 }
Devang Patel96bf5242007-08-17 21:59:16 +00001139
1140 // Update Frontier BBs' dominator info.
1141 while (!FrontierBBs.empty()) {
1142 BasicBlock *FBB = FrontierBBs.back(); FrontierBBs.pop_back();
1143 BasicBlock *NewDominator = FBB->getSinglePredecessor();
1144 if (!NewDominator) {
1145 pred_iterator PI = pred_begin(FBB), PE = pred_end(FBB);
1146 NewDominator = *PI;
1147 ++PI;
1148 if (NewDominator != LiveBB) {
1149 for(; PI != PE; ++PI) {
1150 BasicBlock *P = *PI;
1151 if (P == LiveBB) {
1152 NewDominator = LiveBB;
1153 break;
1154 }
1155 NewDominator = DT->findNearestCommonDominator(NewDominator, P);
1156 }
1157 }
1158 }
1159 assert (NewDominator && "Unable to fix dominator info.");
1160 DT->changeImmediateDominator(FBB, NewDominator);
1161 DF->changeImmediateDominator(FBB, NewDominator, DT);
1162 }
1163
Devang Patel98147a32007-08-12 07:02:51 +00001164}
1165
Devang Pateldc523952007-08-22 18:27:01 +00001166/// safeSplitCondition - Return true if it is possible to
1167/// split loop using given split condition.
1168bool LoopIndexSplit::safeSplitCondition(SplitInfo &SD) {
Devang Patel23a19f82007-08-10 00:53:35 +00001169
Devang Pateldc523952007-08-22 18:27:01 +00001170 BasicBlock *SplitCondBlock = SD.SplitCondition->getParent();
Devang Patel8893ca62007-09-17 21:01:05 +00001171 BasicBlock *Latch = L->getLoopLatch();
Devang Pateldc523952007-08-22 18:27:01 +00001172 BranchInst *SplitTerminator =
1173 cast<BranchInst>(SplitCondBlock->getTerminator());
1174 BasicBlock *Succ0 = SplitTerminator->getSuccessor(0);
1175 BasicBlock *Succ1 = SplitTerminator->getSuccessor(1);
Devang Patel20d260a2007-08-18 00:00:32 +00001176
Bill Wendling643310d2008-05-02 00:43:20 +00001177 // If split block does not dominate the latch then this is not a diamond.
1178 // Such loop may not benefit from index split.
1179 if (!DT->dominates(SplitCondBlock, Latch))
1180 return false;
1181
Devang Patelb88e4202007-08-24 05:36:56 +00001182 // Finally this split condition is safe only if merge point for
1183 // split condition branch is loop latch. This check along with previous
1184 // check, to ensure that exit condition is in either loop latch or header,
1185 // filters all loops with non-empty loop body between merge point
1186 // and exit condition.
1187 DominanceFrontier::iterator Succ0DF = DF->find(Succ0);
1188 assert (Succ0DF != DF->end() && "Unable to find Succ0 dominance frontier");
1189 if (Succ0DF->second.count(Latch))
1190 return true;
1191
1192 DominanceFrontier::iterator Succ1DF = DF->find(Succ1);
1193 assert (Succ1DF != DF->end() && "Unable to find Succ1 dominance frontier");
1194 if (Succ1DF->second.count(Latch))
1195 return true;
1196
1197 return false;
Devang Pateldc523952007-08-22 18:27:01 +00001198}
1199
Devang Patel4a69da92007-08-25 00:56:38 +00001200/// calculateLoopBounds - ALoop exit value and BLoop start values are calculated
1201/// based on split value.
1202void LoopIndexSplit::calculateLoopBounds(SplitInfo &SD) {
1203
Devang Patel4f12c5f2007-09-11 00:12:56 +00001204 ICmpInst *SC = cast<ICmpInst>(SD.SplitCondition);
1205 ICmpInst::Predicate SP = SC->getPredicate();
Devang Patel4a69da92007-08-25 00:56:38 +00001206 const Type *Ty = SD.SplitValue->getType();
1207 bool Sign = ExitCondition->isSignedPredicate();
1208 BasicBlock *Preheader = L->getLoopPreheader();
1209 Instruction *PHTerminator = Preheader->getTerminator();
1210
1211 // Initially use split value as upper loop bound for first loop and lower loop
1212 // bound for second loop.
1213 Value *AEV = SD.SplitValue;
1214 Value *BSV = SD.SplitValue;
1215
Devang Patelbabbe272007-09-19 00:28:47 +00001216 if (ExitCondition->getPredicate() == ICmpInst::ICMP_SGT
1217 || ExitCondition->getPredicate() == ICmpInst::ICMP_UGT
1218 || ExitCondition->getPredicate() == ICmpInst::ICMP_SGE
Devang Patel02c48362008-02-13 19:48:48 +00001219 || ExitCondition->getPredicate() == ICmpInst::ICMP_UGE) {
Devang Patelbabbe272007-09-19 00:28:47 +00001220 ExitCondition->swapOperands();
Devang Patel02c48362008-02-13 19:48:48 +00001221 if (ExitValueNum)
1222 ExitValueNum = 0;
1223 else
1224 ExitValueNum = 1;
1225 }
Devang Patelbabbe272007-09-19 00:28:47 +00001226
Devang Patel4a69da92007-08-25 00:56:38 +00001227 switch (ExitCondition->getPredicate()) {
1228 case ICmpInst::ICMP_SGT:
1229 case ICmpInst::ICMP_UGT:
1230 case ICmpInst::ICMP_SGE:
1231 case ICmpInst::ICMP_UGE:
1232 default:
1233 assert (0 && "Unexpected exit condition predicate");
1234
1235 case ICmpInst::ICMP_SLT:
1236 case ICmpInst::ICMP_ULT:
1237 {
1238 switch (SP) {
1239 case ICmpInst::ICMP_SLT:
1240 case ICmpInst::ICMP_ULT:
1241 //
1242 // for (i = LB; i < UB; ++i) { if (i < SV) A; else B; }
1243 //
1244 // is transformed into
1245 // AEV = BSV = SV
1246 // for (i = LB; i < min(UB, AEV); ++i)
1247 // A;
1248 // for (i = max(LB, BSV); i < UB; ++i);
1249 // B;
1250 break;
1251 case ICmpInst::ICMP_SLE:
1252 case ICmpInst::ICMP_ULE:
1253 {
1254 //
1255 // for (i = LB; i < UB; ++i) { if (i <= SV) A; else B; }
1256 //
1257 // is transformed into
1258 //
1259 // AEV = SV + 1
1260 // BSV = SV + 1
1261 // for (i = LB; i < min(UB, AEV); ++i)
1262 // A;
1263 // for (i = max(LB, BSV); i < UB; ++i)
1264 // B;
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001265 BSV = BinaryOperator::CreateAdd(SD.SplitValue,
Devang Patel4a69da92007-08-25 00:56:38 +00001266 ConstantInt::get(Ty, 1, Sign),
1267 "lsplit.add", PHTerminator);
1268 AEV = BSV;
1269 }
1270 break;
1271 case ICmpInst::ICMP_SGE:
1272 case ICmpInst::ICMP_UGE:
1273 //
1274 // for (i = LB; i < UB; ++i) { if (i >= SV) A; else B; }
1275 //
1276 // is transformed into
1277 // AEV = BSV = SV
1278 // for (i = LB; i < min(UB, AEV); ++i)
1279 // B;
1280 // for (i = max(BSV, LB); i < UB; ++i)
1281 // A;
1282 break;
1283 case ICmpInst::ICMP_SGT:
1284 case ICmpInst::ICMP_UGT:
1285 {
1286 //
1287 // for (i = LB; i < UB; ++i) { if (i > SV) A; else B; }
1288 //
1289 // is transformed into
1290 //
1291 // BSV = AEV = SV + 1
1292 // for (i = LB; i < min(UB, AEV); ++i)
1293 // B;
1294 // for (i = max(LB, BSV); i < UB; ++i)
1295 // A;
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001296 BSV = BinaryOperator::CreateAdd(SD.SplitValue,
Devang Patel4a69da92007-08-25 00:56:38 +00001297 ConstantInt::get(Ty, 1, Sign),
1298 "lsplit.add", PHTerminator);
1299 AEV = BSV;
1300 }
1301 break;
1302 default:
1303 assert (0 && "Unexpected split condition predicate");
1304 break;
1305 } // end switch (SP)
1306 }
1307 break;
1308 case ICmpInst::ICMP_SLE:
1309 case ICmpInst::ICMP_ULE:
1310 {
1311 switch (SP) {
1312 case ICmpInst::ICMP_SLT:
1313 case ICmpInst::ICMP_ULT:
1314 //
1315 // for (i = LB; i <= UB; ++i) { if (i < SV) A; else B; }
1316 //
1317 // is transformed into
1318 // AEV = SV - 1;
1319 // BSV = SV;
1320 // for (i = LB; i <= min(UB, AEV); ++i)
1321 // A;
1322 // for (i = max(LB, BSV); i <= UB; ++i)
1323 // B;
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001324 AEV = BinaryOperator::CreateSub(SD.SplitValue,
Devang Patel4a69da92007-08-25 00:56:38 +00001325 ConstantInt::get(Ty, 1, Sign),
1326 "lsplit.sub", PHTerminator);
1327 break;
1328 case ICmpInst::ICMP_SLE:
1329 case ICmpInst::ICMP_ULE:
1330 //
1331 // for (i = LB; i <= UB; ++i) { if (i <= SV) A; else B; }
1332 //
1333 // is transformed into
1334 // AEV = SV;
1335 // BSV = SV + 1;
1336 // for (i = LB; i <= min(UB, AEV); ++i)
1337 // A;
1338 // for (i = max(LB, BSV); i <= UB; ++i)
1339 // B;
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001340 BSV = BinaryOperator::CreateAdd(SD.SplitValue,
Devang Patel4a69da92007-08-25 00:56:38 +00001341 ConstantInt::get(Ty, 1, Sign),
1342 "lsplit.add", PHTerminator);
1343 break;
1344 case ICmpInst::ICMP_SGT:
1345 case ICmpInst::ICMP_UGT:
1346 //
1347 // for (i = LB; i <= UB; ++i) { if (i > SV) A; else B; }
1348 //
1349 // is transformed into
1350 // AEV = SV;
1351 // BSV = SV + 1;
1352 // for (i = LB; i <= min(AEV, UB); ++i)
1353 // B;
1354 // for (i = max(LB, BSV); i <= UB; ++i)
1355 // A;
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001356 BSV = BinaryOperator::CreateAdd(SD.SplitValue,
Devang Patel4a69da92007-08-25 00:56:38 +00001357 ConstantInt::get(Ty, 1, Sign),
1358 "lsplit.add", PHTerminator);
1359 break;
1360 case ICmpInst::ICMP_SGE:
1361 case ICmpInst::ICMP_UGE:
1362 // ** TODO **
1363 //
1364 // for (i = LB; i <= UB; ++i) { if (i >= SV) A; else B; }
1365 //
1366 // is transformed into
1367 // AEV = SV - 1;
1368 // BSV = SV;
1369 // for (i = LB; i <= min(AEV, UB); ++i)
1370 // B;
1371 // for (i = max(LB, BSV); i <= UB; ++i)
1372 // A;
Gabor Greif7cbd8a32008-05-16 19:29:10 +00001373 AEV = BinaryOperator::CreateSub(SD.SplitValue,
Devang Patel4a69da92007-08-25 00:56:38 +00001374 ConstantInt::get(Ty, 1, Sign),
1375 "lsplit.sub", PHTerminator);
1376 break;
1377 default:
1378 assert (0 && "Unexpected split condition predicate");
1379 break;
1380 } // end switch (SP)
1381 }
1382 break;
1383 }
1384
1385 // Calculate ALoop induction variable's new exiting value and
1386 // BLoop induction variable's new starting value. Calculuate these
1387 // values in original loop's preheader.
1388 // A_ExitValue = min(SplitValue, OrignalLoopExitValue)
1389 // B_StartValue = max(SplitValue, OriginalLoopStartValue)
Devang Patel3f65f022007-09-21 21:18:19 +00001390 Instruction *InsertPt = L->getHeader()->getFirstNonPHI();
Devang Patel5ffdc562007-12-03 19:17:21 +00001391
1392 // If ExitValue operand is also defined in Loop header then
1393 // insert new ExitValue after this operand definition.
1394 if (Instruction *EVN =
1395 dyn_cast<Instruction>(ExitCondition->getOperand(ExitValueNum))) {
1396 if (!isa<PHINode>(EVN))
1397 if (InsertPt->getParent() == EVN->getParent()) {
1398 BasicBlock::iterator LHBI = L->getHeader()->begin();
1399 BasicBlock::iterator LHBE = L->getHeader()->end();
1400 for(;LHBI != LHBE; ++LHBI) {
1401 Instruction *I = LHBI;
1402 if (I == EVN)
1403 break;
1404 }
1405 InsertPt = ++LHBI;
1406 }
1407 }
Devang Patel4a69da92007-08-25 00:56:38 +00001408 Value *C1 = new ICmpInst(Sign ?
1409 ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
1410 AEV,
1411 ExitCondition->getOperand(ExitValueNum),
Devang Patel3f65f022007-09-21 21:18:19 +00001412 "lsplit.ev", InsertPt);
1413
Gabor Greif051a9502008-04-06 20:25:17 +00001414 SD.A_ExitValue = SelectInst::Create(C1, AEV,
1415 ExitCondition->getOperand(ExitValueNum),
1416 "lsplit.ev", InsertPt);
Devang Patel3f65f022007-09-21 21:18:19 +00001417
Devang Patel4a69da92007-08-25 00:56:38 +00001418 Value *C2 = new ICmpInst(Sign ?
1419 ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
1420 BSV, StartValue, "lsplit.sv",
1421 PHTerminator);
Gabor Greif051a9502008-04-06 20:25:17 +00001422 SD.B_StartValue = SelectInst::Create(C2, StartValue, BSV,
1423 "lsplit.sv", PHTerminator);
Devang Patel4a69da92007-08-25 00:56:38 +00001424}
1425
Devang Pateldc523952007-08-22 18:27:01 +00001426/// splitLoop - Split current loop L in two loops using split information
1427/// SD. Update dominator information. Maintain LCSSA form.
1428bool LoopIndexSplit::splitLoop(SplitInfo &SD) {
1429
1430 if (!safeSplitCondition(SD))
1431 return false;
1432
Devang Patel4fe0fe82008-09-18 23:45:14 +00001433 // If split condition EQ is not handled.
1434 if (ICmpInst *ICMP = dyn_cast<ICmpInst>(SD.SplitCondition)) {
1435 if (ICMP->getPredicate() == ICmpInst::ICMP_EQ)
1436 return false;
1437 }
1438
Devang Patel8893ca62007-09-17 21:01:05 +00001439 BasicBlock *SplitCondBlock = SD.SplitCondition->getParent();
1440
Dan Gohman2864ce62008-06-24 18:00:21 +00001441 // Unable to handle triangle loops at the moment.
Devang Patel8893ca62007-09-17 21:01:05 +00001442 // In triangle loop, split condition is in header and one of the
1443 // the split destination is loop latch. If split condition is EQ
1444 // then such loops are already handle in processOneIterationLoop().
1445 BasicBlock *Latch = L->getLoopLatch();
1446 BranchInst *SplitTerminator =
1447 cast<BranchInst>(SplitCondBlock->getTerminator());
1448 BasicBlock *Succ0 = SplitTerminator->getSuccessor(0);
1449 BasicBlock *Succ1 = SplitTerminator->getSuccessor(1);
1450 if (L->getHeader() == SplitCondBlock
1451 && (Latch == Succ0 || Latch == Succ1))
1452 return false;
1453
1454 // If split condition branches heads do not have single predecessor,
1455 // SplitCondBlock, then is not possible to remove inactive branch.
1456 if (!Succ0->getSinglePredecessor() || !Succ1->getSinglePredecessor())
1457 return false;
1458
Devang Patel82ada542008-02-08 22:49:13 +00001459 // If Exiting block includes loop variant instructions then this
1460 // loop may not be split safely.
1461 if (!safeExitingBlock(SD, ExitCondition->getParent()))
1462 return false;
1463
Devang Patela8644e32007-08-22 19:33:29 +00001464 // After loop is cloned there are two loops.
1465 //
1466 // First loop, referred as ALoop, executes first part of loop's iteration
1467 // space split. Second loop, referred as BLoop, executes remaining
1468 // part of loop's iteration space.
1469 //
1470 // ALoop's exit edge enters BLoop's header through a forwarding block which
1471 // acts as a BLoop's preheader.
Devang Patel4a69da92007-08-25 00:56:38 +00001472 BasicBlock *Preheader = L->getLoopPreheader();
Devang Pateldc523952007-08-22 18:27:01 +00001473
Devang Patel4a69da92007-08-25 00:56:38 +00001474 // Calculate ALoop induction variable's new exiting value and
1475 // BLoop induction variable's new starting value.
1476 calculateLoopBounds(SD);
Devang Patel423c8b22007-08-10 18:07:13 +00001477
Devang Patela8644e32007-08-22 19:33:29 +00001478 //[*] Clone loop.
Devang Patel98147a32007-08-12 07:02:51 +00001479 DenseMap<const Value *, Value *> ValueMap;
Devang Patela8644e32007-08-22 19:33:29 +00001480 Loop *BLoop = CloneLoop(L, LPM, LI, ValueMap, this);
Devang Pateld79faee2007-08-25 02:39:24 +00001481 Loop *ALoop = L;
Devang Patela8644e32007-08-22 19:33:29 +00001482 BasicBlock *B_Header = BLoop->getHeader();
Devang Patel98147a32007-08-12 07:02:51 +00001483
Devang Patela8644e32007-08-22 19:33:29 +00001484 //[*] ALoop's exiting edge BLoop's header.
1485 // ALoop's original exit block becomes BLoop's exit block.
1486 PHINode *B_IndVar = cast<PHINode>(ValueMap[IndVar]);
1487 BasicBlock *A_ExitingBlock = ExitCondition->getParent();
1488 BranchInst *A_ExitInsn =
1489 dyn_cast<BranchInst>(A_ExitingBlock->getTerminator());
1490 assert (A_ExitInsn && "Unable to find suitable loop exit branch");
1491 BasicBlock *B_ExitBlock = A_ExitInsn->getSuccessor(1);
1492 if (L->contains(B_ExitBlock)) {
1493 B_ExitBlock = A_ExitInsn->getSuccessor(0);
1494 A_ExitInsn->setSuccessor(0, B_Header);
Devang Patelada054a2007-08-14 01:30:57 +00001495 } else
Devang Patela8644e32007-08-22 19:33:29 +00001496 A_ExitInsn->setSuccessor(1, B_Header);
1497
1498 //[*] Update ALoop's exit value using new exit value.
Devang Patel4a69da92007-08-25 00:56:38 +00001499 ExitCondition->setOperand(ExitValueNum, SD.A_ExitValue);
Devang Patel0b8e02b2007-08-21 21:12:02 +00001500
Devang Patela8644e32007-08-22 19:33:29 +00001501 // [*] Update BLoop's header phi nodes. Remove incoming PHINode's from
1502 // original loop's preheader. Add incoming PHINode values from
1503 // ALoop's exiting block. Update BLoop header's domiantor info.
1504
Devang Patelada054a2007-08-14 01:30:57 +00001505 // Collect inverse map of Header PHINodes.
1506 DenseMap<Value *, Value *> InverseMap;
1507 for (BasicBlock::iterator BI = L->getHeader()->begin(),
1508 BE = L->getHeader()->end(); BI != BE; ++BI) {
1509 if (PHINode *PN = dyn_cast<PHINode>(BI)) {
1510 PHINode *PNClone = cast<PHINode>(ValueMap[PN]);
1511 InverseMap[PNClone] = PN;
1512 } else
1513 break;
1514 }
Devang Patel4a69da92007-08-25 00:56:38 +00001515
Devang Patela8644e32007-08-22 19:33:29 +00001516 for (BasicBlock::iterator BI = B_Header->begin(), BE = B_Header->end();
Devang Patel98147a32007-08-12 07:02:51 +00001517 BI != BE; ++BI) {
1518 if (PHINode *PN = dyn_cast<PHINode>(BI)) {
Devang Patela8644e32007-08-22 19:33:29 +00001519 // Remove incoming value from original preheader.
1520 PN->removeIncomingValue(Preheader);
1521
1522 // Add incoming value from A_ExitingBlock.
1523 if (PN == B_IndVar)
Devang Patel4a69da92007-08-25 00:56:38 +00001524 PN->addIncoming(SD.B_StartValue, A_ExitingBlock);
Devang Patelada054a2007-08-14 01:30:57 +00001525 else {
1526 PHINode *OrigPN = cast<PHINode>(InverseMap[PN]);
Devang Patel9b03daa2008-02-14 23:18:47 +00001527 Value *V2 = NULL;
1528 // If loop header is also loop exiting block then
1529 // OrigPN is incoming value for B loop header.
1530 if (A_ExitingBlock == L->getHeader())
1531 V2 = OrigPN;
1532 else
1533 V2 = OrigPN->getIncomingValueForBlock(A_ExitingBlock);
Devang Patela8644e32007-08-22 19:33:29 +00001534 PN->addIncoming(V2, A_ExitingBlock);
Devang Patelada054a2007-08-14 01:30:57 +00001535 }
1536 } else
Devang Patel98147a32007-08-12 07:02:51 +00001537 break;
1538 }
Devang Patela8644e32007-08-22 19:33:29 +00001539 DT->changeImmediateDominator(B_Header, A_ExitingBlock);
1540 DF->changeImmediateDominator(B_Header, A_ExitingBlock, DT);
Devang Patel0b8e02b2007-08-21 21:12:02 +00001541
Devang Patela8644e32007-08-22 19:33:29 +00001542 // [*] Update BLoop's exit block. Its new predecessor is BLoop's exit
1543 // block. Remove incoming PHINode values from ALoop's exiting block.
1544 // Add new incoming values from BLoop's incoming exiting value.
1545 // Update BLoop exit block's dominator info..
1546 BasicBlock *B_ExitingBlock = cast<BasicBlock>(ValueMap[A_ExitingBlock]);
1547 for (BasicBlock::iterator BI = B_ExitBlock->begin(), BE = B_ExitBlock->end();
Devang Patelada054a2007-08-14 01:30:57 +00001548 BI != BE; ++BI) {
1549 if (PHINode *PN = dyn_cast<PHINode>(BI)) {
Devang Patela8644e32007-08-22 19:33:29 +00001550 PN->addIncoming(ValueMap[PN->getIncomingValueForBlock(A_ExitingBlock)],
1551 B_ExitingBlock);
1552 PN->removeIncomingValue(A_ExitingBlock);
Devang Patelada054a2007-08-14 01:30:57 +00001553 } else
1554 break;
1555 }
Devang Patel98147a32007-08-12 07:02:51 +00001556
Devang Patela8644e32007-08-22 19:33:29 +00001557 DT->changeImmediateDominator(B_ExitBlock, B_ExitingBlock);
1558 DF->changeImmediateDominator(B_ExitBlock, B_ExitingBlock, DT);
Devang Patelfc4c5f82007-08-13 22:13:24 +00001559
Devang Patela8644e32007-08-22 19:33:29 +00001560 //[*] Split ALoop's exit edge. This creates a new block which
1561 // serves two purposes. First one is to hold PHINode defnitions
1562 // to ensure that ALoop's LCSSA form. Second use it to act
1563 // as a preheader for BLoop.
1564 BasicBlock *A_ExitBlock = SplitEdge(A_ExitingBlock, B_Header, this);
Devang Patel423c8b22007-08-10 18:07:13 +00001565
Devang Patela8644e32007-08-22 19:33:29 +00001566 //[*] Preserve ALoop's LCSSA form. Create new forwarding PHINodes
1567 // in A_ExitBlock to redefine outgoing PHI definitions from ALoop.
1568 for(BasicBlock::iterator BI = B_Header->begin(), BE = B_Header->end();
Devang Patel60cbab42007-08-21 19:47:46 +00001569 BI != BE; ++BI) {
1570 if (PHINode *PN = dyn_cast<PHINode>(BI)) {
Devang Patela8644e32007-08-22 19:33:29 +00001571 Value *V1 = PN->getIncomingValueForBlock(A_ExitBlock);
Gabor Greif051a9502008-04-06 20:25:17 +00001572 PHINode *newPHI = PHINode::Create(PN->getType(), PN->getName());
Devang Patela8644e32007-08-22 19:33:29 +00001573 newPHI->addIncoming(V1, A_ExitingBlock);
1574 A_ExitBlock->getInstList().push_front(newPHI);
1575 PN->removeIncomingValue(A_ExitBlock);
1576 PN->addIncoming(newPHI, A_ExitBlock);
Devang Patel60cbab42007-08-21 19:47:46 +00001577 } else
1578 break;
1579 }
1580
Devang Patela8644e32007-08-22 19:33:29 +00001581 //[*] Eliminate split condition's inactive branch from ALoop.
1582 BasicBlock *A_SplitCondBlock = SD.SplitCondition->getParent();
1583 BranchInst *A_BR = cast<BranchInst>(A_SplitCondBlock->getTerminator());
Devang Patel4259fe32007-08-24 06:17:19 +00001584 BasicBlock *A_InactiveBranch = NULL;
1585 BasicBlock *A_ActiveBranch = NULL;
1586 if (SD.UseTrueBranchFirst) {
1587 A_ActiveBranch = A_BR->getSuccessor(0);
1588 A_InactiveBranch = A_BR->getSuccessor(1);
1589 } else {
1590 A_ActiveBranch = A_BR->getSuccessor(1);
1591 A_InactiveBranch = A_BR->getSuccessor(0);
1592 }
Devang Patel7097e9a2007-08-24 19:32:26 +00001593 A_BR->setUnconditionalDest(A_ActiveBranch);
Devang Patela8644e32007-08-22 19:33:29 +00001594 removeBlocks(A_InactiveBranch, L, A_ActiveBranch);
1595
1596 //[*] Eliminate split condition's inactive branch in from BLoop.
1597 BasicBlock *B_SplitCondBlock = cast<BasicBlock>(ValueMap[A_SplitCondBlock]);
1598 BranchInst *B_BR = cast<BranchInst>(B_SplitCondBlock->getTerminator());
Devang Patel4259fe32007-08-24 06:17:19 +00001599 BasicBlock *B_InactiveBranch = NULL;
1600 BasicBlock *B_ActiveBranch = NULL;
1601 if (SD.UseTrueBranchFirst) {
1602 B_ActiveBranch = B_BR->getSuccessor(1);
1603 B_InactiveBranch = B_BR->getSuccessor(0);
1604 } else {
1605 B_ActiveBranch = B_BR->getSuccessor(0);
1606 B_InactiveBranch = B_BR->getSuccessor(1);
1607 }
Devang Patel7097e9a2007-08-24 19:32:26 +00001608 B_BR->setUnconditionalDest(B_ActiveBranch);
Devang Patela8644e32007-08-22 19:33:29 +00001609 removeBlocks(B_InactiveBranch, BLoop, B_ActiveBranch);
1610
Devang Pateld79faee2007-08-25 02:39:24 +00001611 BasicBlock *A_Header = L->getHeader();
1612 if (A_ExitingBlock == A_Header)
1613 return true;
1614
1615 //[*] Move exit condition into split condition block to avoid
1616 // executing dead loop iteration.
1617 ICmpInst *B_ExitCondition = cast<ICmpInst>(ValueMap[ExitCondition]);
1618 Instruction *B_IndVarIncrement = cast<Instruction>(ValueMap[IndVarIncrement]);
1619 ICmpInst *B_SplitCondition = cast<ICmpInst>(ValueMap[SD.SplitCondition]);
1620
1621 moveExitCondition(A_SplitCondBlock, A_ActiveBranch, A_ExitBlock, ExitCondition,
Devang Patel4f12c5f2007-09-11 00:12:56 +00001622 cast<ICmpInst>(SD.SplitCondition), IndVar, IndVarIncrement,
1623 ALoop);
Devang Pateld79faee2007-08-25 02:39:24 +00001624
1625 moveExitCondition(B_SplitCondBlock, B_ActiveBranch, B_ExitBlock, B_ExitCondition,
1626 B_SplitCondition, B_IndVar, B_IndVarIncrement, BLoop);
1627
Devang Patel98147a32007-08-12 07:02:51 +00001628 return true;
Devang Patelfee76bd2007-08-07 00:25:56 +00001629}
Devang Pateld79faee2007-08-25 02:39:24 +00001630
1631// moveExitCondition - Move exit condition EC into split condition block CondBB.
1632void LoopIndexSplit::moveExitCondition(BasicBlock *CondBB, BasicBlock *ActiveBB,
1633 BasicBlock *ExitBB, ICmpInst *EC, ICmpInst *SC,
1634 PHINode *IV, Instruction *IVAdd, Loop *LP) {
1635
1636 BasicBlock *ExitingBB = EC->getParent();
1637 Instruction *CurrentBR = CondBB->getTerminator();
1638
1639 // Move exit condition into split condition block.
1640 EC->moveBefore(CurrentBR);
1641 EC->setOperand(ExitValueNum == 0 ? 1 : 0, IV);
1642
1643 // Move exiting block's branch into split condition block. Update its branch
1644 // destination.
1645 BranchInst *ExitingBR = cast<BranchInst>(ExitingBB->getTerminator());
1646 ExitingBR->moveBefore(CurrentBR);
Devang Patel23067df2008-02-13 22:06:36 +00001647 BasicBlock *OrigDestBB = NULL;
1648 if (ExitingBR->getSuccessor(0) == ExitBB) {
1649 OrigDestBB = ExitingBR->getSuccessor(1);
Devang Pateld79faee2007-08-25 02:39:24 +00001650 ExitingBR->setSuccessor(1, ActiveBB);
Devang Patel23067df2008-02-13 22:06:36 +00001651 }
1652 else {
1653 OrigDestBB = ExitingBR->getSuccessor(0);
Devang Pateld79faee2007-08-25 02:39:24 +00001654 ExitingBR->setSuccessor(0, ActiveBB);
Devang Patel23067df2008-02-13 22:06:36 +00001655 }
Devang Pateld79faee2007-08-25 02:39:24 +00001656
1657 // Remove split condition and current split condition branch.
1658 SC->eraseFromParent();
1659 CurrentBR->eraseFromParent();
1660
Devang Patel23067df2008-02-13 22:06:36 +00001661 // Connect exiting block to original destination.
Gabor Greif051a9502008-04-06 20:25:17 +00001662 BranchInst::Create(OrigDestBB, ExitingBB);
Devang Pateld79faee2007-08-25 02:39:24 +00001663
1664 // Update PHINodes
Devang Patelea069062008-02-13 22:23:07 +00001665 updatePHINodes(ExitBB, ExitingBB, CondBB, IV, IVAdd, LP);
Devang Pateld79faee2007-08-25 02:39:24 +00001666
1667 // Fix dominator info.
1668 // ExitBB is now dominated by CondBB
1669 DT->changeImmediateDominator(ExitBB, CondBB);
1670 DF->changeImmediateDominator(ExitBB, CondBB, DT);
1671
1672 // Basicblocks dominated by ActiveBB may have ExitingBB or
1673 // a basic block outside the loop in their DF list. If so,
1674 // replace it with CondBB.
1675 DomTreeNode *Node = DT->getNode(ActiveBB);
1676 for (df_iterator<DomTreeNode *> DI = df_begin(Node), DE = df_end(Node);
1677 DI != DE; ++DI) {
1678 BasicBlock *BB = DI->getBlock();
1679 DominanceFrontier::iterator BBDF = DF->find(BB);
1680 DominanceFrontier::DomSetType::iterator DomSetI = BBDF->second.begin();
1681 DominanceFrontier::DomSetType::iterator DomSetE = BBDF->second.end();
1682 while (DomSetI != DomSetE) {
1683 DominanceFrontier::DomSetType::iterator CurrentItr = DomSetI;
1684 ++DomSetI;
1685 BasicBlock *DFBB = *CurrentItr;
1686 if (DFBB == ExitingBB || !L->contains(DFBB)) {
1687 BBDF->second.erase(DFBB);
1688 BBDF->second.insert(CondBB);
1689 }
1690 }
1691 }
1692}
1693
1694/// updatePHINodes - CFG has been changed.
1695/// Before
1696/// - ExitBB's single predecessor was Latch
1697/// - Latch's second successor was Header
1698/// Now
Devang Patel82ada542008-02-08 22:49:13 +00001699/// - ExitBB's single predecessor is Header
1700/// - Latch's one and only successor is Header
Devang Pateld79faee2007-08-25 02:39:24 +00001701///
1702/// Update ExitBB PHINodes' to reflect this change.
1703void LoopIndexSplit::updatePHINodes(BasicBlock *ExitBB, BasicBlock *Latch,
1704 BasicBlock *Header,
Devang Patelea069062008-02-13 22:23:07 +00001705 PHINode *IV, Instruction *IVIncrement,
1706 Loop *LP) {
Devang Pateld79faee2007-08-25 02:39:24 +00001707
1708 for (BasicBlock::iterator BI = ExitBB->begin(), BE = ExitBB->end();
Devang Patel4a3c0ac2008-03-27 17:32:46 +00001709 BI != BE; ) {
Devang Pateld79faee2007-08-25 02:39:24 +00001710 PHINode *PN = dyn_cast<PHINode>(BI);
Devang Patel4a3c0ac2008-03-27 17:32:46 +00001711 ++BI;
Devang Pateld79faee2007-08-25 02:39:24 +00001712 if (!PN)
1713 break;
1714
1715 Value *V = PN->getIncomingValueForBlock(Latch);
1716 if (PHINode *PHV = dyn_cast<PHINode>(V)) {
Devang Patel82ada542008-02-08 22:49:13 +00001717 // PHV is in Latch. PHV has one use is in ExitBB PHINode. And one use
1718 // in Header which is new incoming value for PN.
Devang Pateld79faee2007-08-25 02:39:24 +00001719 Value *NewV = NULL;
1720 for (Value::use_iterator UI = PHV->use_begin(), E = PHV->use_end();
Devang Patel82ada542008-02-08 22:49:13 +00001721 UI != E; ++UI)
1722 if (PHINode *U = dyn_cast<PHINode>(*UI))
Devang Patelea069062008-02-13 22:23:07 +00001723 if (LP->contains(U->getParent())) {
Devang Patel82ada542008-02-08 22:49:13 +00001724 NewV = U;
1725 break;
1726 }
1727
Devang Patel60a12902008-03-24 20:16:14 +00001728 // Add incoming value from header only if PN has any use inside the loop.
1729 if (NewV)
1730 PN->addIncoming(NewV, Header);
Devang Pateld79faee2007-08-25 02:39:24 +00001731
1732 } else if (Instruction *PHI = dyn_cast<Instruction>(V)) {
1733 // If this instruction is IVIncrement then IV is new incoming value
1734 // from header otherwise this instruction must be incoming value from
1735 // header because loop is in LCSSA form.
1736 if (PHI == IVIncrement)
1737 PN->addIncoming(IV, Header);
1738 else
1739 PN->addIncoming(V, Header);
1740 } else
1741 // Otherwise this is an incoming value from header because loop is in
1742 // LCSSA form.
1743 PN->addIncoming(V, Header);
1744
1745 // Remove incoming value from Latch.
1746 PN->removeIncomingValue(Latch);
1747 }
1748}