blob: 6113b24a29815567a2c74e5bffe7d8443ce4aa79 [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
36 LoopIndexSplit() : LoopPass((intptr_t)&ID) {}
37
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 Patel5279d062007-09-17 20:39:48 +0000114
115 void updateLoopBounds(ICmpInst *CI);
116 /// updateLoopIterationSpace - Current loop body is covered by an AND
117 /// instruction whose operands compares induction variables with loop
118 /// invariants. If possible, hoist this check outside the loop by
119 /// updating appropriate start and end values for induction variable.
120 bool updateLoopIterationSpace(SplitInfo &SD);
121
Devang Patel9704fcf2007-08-08 22:25:28 +0000122 /// If loop header includes loop variant instruction operands then
123 /// this loop may not be eliminated.
Devang Patel71554b82007-08-08 21:02:17 +0000124 bool safeHeader(SplitInfo &SD, BasicBlock *BB);
Devang Patelfee76bd2007-08-07 00:25:56 +0000125
Devang Patel1cc2ec82007-08-20 23:51:18 +0000126 /// If Exiting block includes loop variant instructions then this
Devang Patel9704fcf2007-08-08 22:25:28 +0000127 /// loop may not be eliminated.
Devang Patel1cc2ec82007-08-20 23:51:18 +0000128 bool safeExitingBlock(SplitInfo &SD, BasicBlock *BB);
Devang Patelfee76bd2007-08-07 00:25:56 +0000129
Devang Patela6a86632007-08-14 18:35:57 +0000130 /// removeBlocks - Remove basic block DeadBB and all blocks dominated by DeadBB.
131 /// This routine is used to remove split condition's dead branch, dominated by
132 /// DeadBB. LiveBB dominates split conidition's other branch.
133 void removeBlocks(BasicBlock *DeadBB, Loop *LP, BasicBlock *LiveBB);
Devang Patel98147a32007-08-12 07:02:51 +0000134
Devang Pateldc523952007-08-22 18:27:01 +0000135 /// safeSplitCondition - Return true if it is possible to
136 /// split loop using given split condition.
137 bool safeSplitCondition(SplitInfo &SD);
138
Devang Patel4a69da92007-08-25 00:56:38 +0000139 /// calculateLoopBounds - ALoop exit value and BLoop start values are calculated
140 /// based on split value.
141 void calculateLoopBounds(SplitInfo &SD);
142
Devang Pateld79faee2007-08-25 02:39:24 +0000143 /// updatePHINodes - CFG has been changed.
144 /// Before
145 /// - ExitBB's single predecessor was Latch
146 /// - Latch's second successor was Header
147 /// Now
148 /// - ExitBB's single predecessor was Header
149 /// - Latch's one and only successor was Header
150 ///
151 /// Update ExitBB PHINodes' to reflect this change.
152 void updatePHINodes(BasicBlock *ExitBB, BasicBlock *Latch,
153 BasicBlock *Header,
Devang Patelea069062008-02-13 22:23:07 +0000154 PHINode *IV, Instruction *IVIncrement, Loop *LP);
Devang Pateld79faee2007-08-25 02:39:24 +0000155
156 /// moveExitCondition - Move exit condition EC into split condition block CondBB.
157 void moveExitCondition(BasicBlock *CondBB, BasicBlock *ActiveBB,
158 BasicBlock *ExitBB, ICmpInst *EC, ICmpInst *SC,
159 PHINode *IV, Instruction *IVAdd, Loop *LP);
160
Devang Pateldc523952007-08-22 18:27:01 +0000161 /// splitLoop - Split current loop L in two loops using split information
162 /// SD. Update dominator information. Maintain LCSSA form.
Devang Patel71554b82007-08-08 21:02:17 +0000163 bool splitLoop(SplitInfo &SD);
Devang Patelfee76bd2007-08-07 00:25:56 +0000164
Devang Patelbacf5192007-08-10 00:33:50 +0000165 void initialize() {
166 IndVar = NULL;
167 IndVarIncrement = NULL;
168 ExitCondition = NULL;
Devang Patel98147a32007-08-12 07:02:51 +0000169 StartValue = NULL;
170 ExitValueNum = 0;
171 SplitData.clear();
Devang Patelbacf5192007-08-10 00:33:50 +0000172 }
173
Devang Patelfee76bd2007-08-07 00:25:56 +0000174 private:
175
176 // Current Loop.
177 Loop *L;
Devang Patel423c8b22007-08-10 18:07:13 +0000178 LPPassManager *LPM;
179 LoopInfo *LI;
Devang Patelfee76bd2007-08-07 00:25:56 +0000180 ScalarEvolution *SE;
Devang Patel9704fcf2007-08-08 22:25:28 +0000181 DominatorTree *DT;
Devang Patelfc4c5f82007-08-13 22:13:24 +0000182 DominanceFrontier *DF;
Devang Patel71554b82007-08-08 21:02:17 +0000183 SmallVector<SplitInfo, 4> SplitData;
Devang Patelbacf5192007-08-10 00:33:50 +0000184
185 // Induction variable whose range is being split by this transformation.
186 PHINode *IndVar;
187 Instruction *IndVarIncrement;
188
189 // Loop exit condition.
190 ICmpInst *ExitCondition;
191
192 // Induction variable's initial value.
193 Value *StartValue;
194
Devang Patel98147a32007-08-12 07:02:51 +0000195 // Induction variable's final loop exit value operand number in exit condition..
196 unsigned ExitValueNum;
Devang Patelfee76bd2007-08-07 00:25:56 +0000197 };
Devang Patelfee76bd2007-08-07 00:25:56 +0000198}
199
Dan Gohman844731a2008-05-13 00:00:25 +0000200char LoopIndexSplit::ID = 0;
201static RegisterPass<LoopIndexSplit>
202X("loop-index-split", "Index Split Loops");
203
Devang Patelfee76bd2007-08-07 00:25:56 +0000204LoopPass *llvm::createLoopIndexSplitPass() {
205 return new LoopIndexSplit();
206}
207
208// Index split Loop L. Return true if loop is split.
Devang Patel423c8b22007-08-10 18:07:13 +0000209bool LoopIndexSplit::runOnLoop(Loop *IncomingLoop, LPPassManager &LPM_Ref) {
Devang Patelfee76bd2007-08-07 00:25:56 +0000210 bool Changed = false;
211 L = IncomingLoop;
Devang Patel423c8b22007-08-10 18:07:13 +0000212 LPM = &LPM_Ref;
Devang Patel71554b82007-08-08 21:02:17 +0000213
Devang Patel3fe4f212007-08-15 02:14:55 +0000214 // FIXME - Nested loops make dominator info updates tricky.
Devang Patel4e8061c2007-08-14 23:53:57 +0000215 if (!L->getSubLoops().empty())
216 return false;
217
Devang Patelfee76bd2007-08-07 00:25:56 +0000218 SE = &getAnalysis<ScalarEvolution>();
Devang Patel9704fcf2007-08-08 22:25:28 +0000219 DT = &getAnalysis<DominatorTree>();
Devang Patel423c8b22007-08-10 18:07:13 +0000220 LI = &getAnalysis<LoopInfo>();
Devang Patel7375bb92007-08-15 03:34:53 +0000221 DF = &getAnalysis<DominanceFrontier>();
Devang Patelfee76bd2007-08-07 00:25:56 +0000222
Devang Patelbacf5192007-08-10 00:33:50 +0000223 initialize();
224
225 findLoopConditionals();
226
227 if (!ExitCondition)
228 return false;
229
Devang Patelfee76bd2007-08-07 00:25:56 +0000230 findSplitCondition();
231
Devang Patel71554b82007-08-08 21:02:17 +0000232 if (SplitData.empty())
Devang Patelfee76bd2007-08-07 00:25:56 +0000233 return false;
234
Devang Patel71554b82007-08-08 21:02:17 +0000235 // First see if it is possible to eliminate loop itself or not.
David Greenea022e3f2008-04-02 18:24:46 +0000236 for (SmallVector<SplitInfo, 4>::iterator SI = SplitData.begin();
237 SI != SplitData.end();) {
Devang Patel71554b82007-08-08 21:02:17 +0000238 SplitInfo &SD = *SI;
Devang Patel4f12c5f2007-09-11 00:12:56 +0000239 ICmpInst *CI = dyn_cast<ICmpInst>(SD.SplitCondition);
Devang Patel5279d062007-09-17 20:39:48 +0000240 if (SD.SplitCondition->getOpcode() == Instruction::And) {
241 Changed = updateLoopIterationSpace(SD);
242 if (Changed) {
243 ++NumIndexSplit;
244 // If is loop is eliminated then nothing else to do here.
245 return Changed;
246 } else {
247 SmallVector<SplitInfo, 4>::iterator Delete_SI = SI;
David Greenea022e3f2008-04-02 18:24:46 +0000248 SI = SplitData.erase(Delete_SI);
Devang Patel5279d062007-09-17 20:39:48 +0000249 }
250 }
251 else if (CI && CI->getPredicate() == ICmpInst::ICMP_EQ) {
Devang Patel423c8b22007-08-10 18:07:13 +0000252 Changed = processOneIterationLoop(SD);
Devang Patel71554b82007-08-08 21:02:17 +0000253 if (Changed) {
254 ++NumIndexSplit;
255 // If is loop is eliminated then nothing else to do here.
256 return Changed;
Devang Pateld651f652007-08-20 20:24:15 +0000257 } else {
258 SmallVector<SplitInfo, 4>::iterator Delete_SI = SI;
David Greenea022e3f2008-04-02 18:24:46 +0000259 SI = SplitData.erase(Delete_SI);
Devang Patel71554b82007-08-08 21:02:17 +0000260 }
Devang Pateld651f652007-08-20 20:24:15 +0000261 } else
262 ++SI;
Devang Patel71554b82007-08-08 21:02:17 +0000263 }
264
Devang Patel4259fe32007-08-24 06:17:19 +0000265 if (SplitData.empty())
266 return false;
267
Devang Patel9704fcf2007-08-08 22:25:28 +0000268 // Split most profitiable condition.
Devang Patel7237d112007-08-24 05:21:13 +0000269 // FIXME : Implement cost analysis.
270 unsigned MostProfitableSDIndex = 0;
271 Changed = splitLoop(SplitData[MostProfitableSDIndex]);
Devang Patel9704fcf2007-08-08 22:25:28 +0000272
Devang Patelfee76bd2007-08-07 00:25:56 +0000273 if (Changed)
274 ++NumIndexSplit;
Devang Patel71554b82007-08-08 21:02:17 +0000275
Devang Patelfee76bd2007-08-07 00:25:56 +0000276 return Changed;
277}
278
Devang Patelc9d123d2007-08-09 01:39:01 +0000279/// Return true if V is a induction variable or induction variable's
280/// increment for loop L.
Devang Patelbacf5192007-08-10 00:33:50 +0000281void LoopIndexSplit::findIndVar(Value *V, Loop *L) {
Devang Patelc9d123d2007-08-09 01:39:01 +0000282
283 Instruction *I = dyn_cast<Instruction>(V);
284 if (!I)
Devang Patelbacf5192007-08-10 00:33:50 +0000285 return;
Devang Patelc9d123d2007-08-09 01:39:01 +0000286
287 // Check if I is a phi node from loop header or not.
288 if (PHINode *PN = dyn_cast<PHINode>(V)) {
289 if (PN->getParent() == L->getHeader()) {
Devang Patelbacf5192007-08-10 00:33:50 +0000290 IndVar = PN;
291 return;
Devang Patelc9d123d2007-08-09 01:39:01 +0000292 }
293 }
294
295 // Check if I is a add instruction whose one operand is
296 // phi node from loop header and second operand is constant.
297 if (I->getOpcode() != Instruction::Add)
Devang Patelbacf5192007-08-10 00:33:50 +0000298 return;
Devang Patelc9d123d2007-08-09 01:39:01 +0000299
300 Value *Op0 = I->getOperand(0);
301 Value *Op1 = I->getOperand(1);
302
Devang Patelc840da12008-01-29 02:20:41 +0000303 if (PHINode *PN = dyn_cast<PHINode>(Op0))
304 if (PN->getParent() == L->getHeader())
305 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1))
306 if (CI->isOne()) {
307 IndVar = PN;
308 IndVarIncrement = I;
309 return;
310 }
311
312 if (PHINode *PN = dyn_cast<PHINode>(Op1))
313 if (PN->getParent() == L->getHeader())
314 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op0))
315 if (CI->isOne()) {
316 IndVar = PN;
317 IndVarIncrement = I;
318 return;
319 }
Devang Patelc9d123d2007-08-09 01:39:01 +0000320
Devang Patelbacf5192007-08-10 00:33:50 +0000321 return;
322}
323
324// Find loop's exit condition and associated induction variable.
325void LoopIndexSplit::findLoopConditionals() {
326
Devang Patel1cc2ec82007-08-20 23:51:18 +0000327 BasicBlock *ExitingBlock = NULL;
Devang Patelbacf5192007-08-10 00:33:50 +0000328
329 for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
330 I != E; ++I) {
331 BasicBlock *BB = *I;
332 if (!L->isLoopExit(BB))
333 continue;
Devang Patel1cc2ec82007-08-20 23:51:18 +0000334 if (ExitingBlock)
Devang Patelbacf5192007-08-10 00:33:50 +0000335 return;
Devang Patel1cc2ec82007-08-20 23:51:18 +0000336 ExitingBlock = BB;
Devang Patelbacf5192007-08-10 00:33:50 +0000337 }
338
Devang Patel1cc2ec82007-08-20 23:51:18 +0000339 if (!ExitingBlock)
Devang Patelbacf5192007-08-10 00:33:50 +0000340 return;
Devang Patelb88e4202007-08-24 05:36:56 +0000341
342 // If exiting block is neither loop header nor loop latch then this loop is
343 // not suitable.
344 if (ExitingBlock != L->getHeader() && ExitingBlock != L->getLoopLatch())
345 return;
346
Devang Patelbacf5192007-08-10 00:33:50 +0000347 // If exit block's terminator is conditional branch inst then we have found
348 // exit condition.
Devang Patel1cc2ec82007-08-20 23:51:18 +0000349 BranchInst *BR = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
Devang Patelbacf5192007-08-10 00:33:50 +0000350 if (!BR || BR->isUnconditional())
351 return;
352
353 ICmpInst *CI = dyn_cast<ICmpInst>(BR->getCondition());
354 if (!CI)
355 return;
Devang Patel4a69da92007-08-25 00:56:38 +0000356
Bill Wendlingc6849102007-09-14 01:13:55 +0000357 // FIXME
Devang Patelbabbe272007-09-19 00:28:47 +0000358 if (CI->getPredicate() == ICmpInst::ICMP_EQ
Bill Wendlingc6849102007-09-14 01:13:55 +0000359 || CI->getPredicate() == ICmpInst::ICMP_NE)
360 return;
Devang Patel4a69da92007-08-25 00:56:38 +0000361
Devang Patelbacf5192007-08-10 00:33:50 +0000362 ExitCondition = CI;
363
364 // Exit condition's one operand is loop invariant exit value and second
365 // operand is SCEVAddRecExpr based on induction variable.
366 Value *V0 = CI->getOperand(0);
367 Value *V1 = CI->getOperand(1);
368
369 SCEVHandle SH0 = SE->getSCEV(V0);
370 SCEVHandle SH1 = SE->getSCEV(V1);
371
372 if (SH0->isLoopInvariant(L) && isa<SCEVAddRecExpr>(SH1)) {
Devang Patel98147a32007-08-12 07:02:51 +0000373 ExitValueNum = 0;
Devang Patelbacf5192007-08-10 00:33:50 +0000374 findIndVar(V1, L);
375 }
376 else if (SH1->isLoopInvariant(L) && isa<SCEVAddRecExpr>(SH0)) {
Devang Patel98147a32007-08-12 07:02:51 +0000377 ExitValueNum = 1;
Devang Patelbacf5192007-08-10 00:33:50 +0000378 findIndVar(V0, L);
379 }
380
Devang Patel98147a32007-08-12 07:02:51 +0000381 if (!IndVar)
Devang Patelbacf5192007-08-10 00:33:50 +0000382 ExitCondition = NULL;
383 else if (IndVar) {
384 BasicBlock *Preheader = L->getLoopPreheader();
385 StartValue = IndVar->getIncomingValueForBlock(Preheader);
386 }
Devang Patelc9d123d2007-08-09 01:39:01 +0000387}
388
Devang Patelfee76bd2007-08-07 00:25:56 +0000389/// Find condition inside a loop that is suitable candidate for index split.
390void LoopIndexSplit::findSplitCondition() {
391
Devang Patel71554b82007-08-08 21:02:17 +0000392 SplitInfo SD;
Devang Patelc9d123d2007-08-09 01:39:01 +0000393 // Check all basic block's terminators.
Devang Patelc9d123d2007-08-09 01:39:01 +0000394 for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
395 I != E; ++I) {
Devang Patel964be452007-09-11 00:23:56 +0000396 SD.clear();
Devang Patelc9d123d2007-08-09 01:39:01 +0000397 BasicBlock *BB = *I;
Devang Patelfee76bd2007-08-07 00:25:56 +0000398
Devang Patelc9d123d2007-08-09 01:39:01 +0000399 // If this basic block does not terminate in a conditional branch
400 // then terminator is not a suitable split condition.
401 BranchInst *BR = dyn_cast<BranchInst>(BB->getTerminator());
402 if (!BR)
403 continue;
404
405 if (BR->isUnconditional())
Devang Patelfee76bd2007-08-07 00:25:56 +0000406 continue;
407
Devang Patel5279d062007-09-17 20:39:48 +0000408 if (Instruction *AndI = dyn_cast<Instruction>(BR->getCondition())) {
409 if (AndI->getOpcode() == Instruction::And) {
410 ICmpInst *Op0 = dyn_cast<ICmpInst>(AndI->getOperand(0));
411 ICmpInst *Op1 = dyn_cast<ICmpInst>(AndI->getOperand(1));
412
413 if (!Op0 || !Op1)
414 continue;
415
416 if (!safeICmpInst(Op0, SD))
417 continue;
418 SD.clear();
419 if (!safeICmpInst(Op1, SD))
420 continue;
421 SD.clear();
422 SD.SplitCondition = AndI;
423 SplitData.push_back(SD);
424 continue;
425 }
426 }
Devang Patelc9d123d2007-08-09 01:39:01 +0000427 ICmpInst *CI = dyn_cast<ICmpInst>(BR->getCondition());
Devang Patelbacf5192007-08-10 00:33:50 +0000428 if (!CI || CI == ExitCondition)
Devang Patelba32a5f2007-09-10 23:57:58 +0000429 continue;
Devang Patelfee76bd2007-08-07 00:25:56 +0000430
Devang Patelc830aee2007-08-24 06:02:25 +0000431 if (CI->getPredicate() == ICmpInst::ICMP_NE)
Devang Patelba32a5f2007-09-10 23:57:58 +0000432 continue;
Devang Patelc830aee2007-08-24 06:02:25 +0000433
Devang Patel4259fe32007-08-24 06:17:19 +0000434 // If split condition predicate is GT or GE then first execute
435 // false branch of split condition.
Devang Patelc3957d12007-09-11 01:10:45 +0000436 if (CI->getPredicate() == ICmpInst::ICMP_UGT
437 || CI->getPredicate() == ICmpInst::ICMP_SGT
438 || CI->getPredicate() == ICmpInst::ICMP_UGE
439 || CI->getPredicate() == ICmpInst::ICMP_SGE)
Devang Patel4259fe32007-08-24 06:17:19 +0000440 SD.UseTrueBranchFirst = false;
441
Devang Patelc9d123d2007-08-09 01:39:01 +0000442 // If one operand is loop invariant and second operand is SCEVAddRecExpr
443 // based on induction variable then CI is a candidate split condition.
Devang Pateld35ed2c2007-09-11 00:42:56 +0000444 if (safeICmpInst(CI, SD))
445 SplitData.push_back(SD);
446 }
447}
Devang Patelc9d123d2007-08-09 01:39:01 +0000448
Devang Pateld35ed2c2007-09-11 00:42:56 +0000449// safeIcmpInst - CI is considered safe instruction if one of the operand
450// is SCEVAddRecExpr based on induction variable and other operand is
451// loop invariant. If CI is safe then populate SplitInfo object SD appropriately
452// and return true;
453bool LoopIndexSplit::safeICmpInst(ICmpInst *CI, SplitInfo &SD) {
Devang Patelc9d123d2007-08-09 01:39:01 +0000454
Devang Pateld35ed2c2007-09-11 00:42:56 +0000455 Value *V0 = CI->getOperand(0);
456 Value *V1 = CI->getOperand(1);
457
458 SCEVHandle SH0 = SE->getSCEV(V0);
459 SCEVHandle SH1 = SE->getSCEV(V1);
460
461 if (SH0->isLoopInvariant(L) && isa<SCEVAddRecExpr>(SH1)) {
462 SD.SplitValue = V0;
463 SD.SplitCondition = CI;
464 if (PHINode *PN = dyn_cast<PHINode>(V1)) {
465 if (PN == IndVar)
466 return true;
Devang Patelfee76bd2007-08-07 00:25:56 +0000467 }
Devang Pateld35ed2c2007-09-11 00:42:56 +0000468 else if (Instruction *Insn = dyn_cast<Instruction>(V1)) {
469 if (IndVarIncrement && IndVarIncrement == Insn)
470 return true;
Devang Patelfee76bd2007-08-07 00:25:56 +0000471 }
472 }
Devang Pateld35ed2c2007-09-11 00:42:56 +0000473 else if (SH1->isLoopInvariant(L) && isa<SCEVAddRecExpr>(SH0)) {
474 SD.SplitValue = V1;
475 SD.SplitCondition = CI;
476 if (PHINode *PN = dyn_cast<PHINode>(V0)) {
477 if (PN == IndVar)
478 return true;
479 }
480 else if (Instruction *Insn = dyn_cast<Instruction>(V0)) {
481 if (IndVarIncrement && IndVarIncrement == Insn)
482 return true;
483 }
484 }
485
486 return false;
Devang Patelfee76bd2007-08-07 00:25:56 +0000487}
488
489/// processOneIterationLoop - Current loop L contains compare instruction
490/// that compares induction variable, IndVar, against loop invariant. If
491/// entire (i.e. meaningful) loop body is dominated by this compare
492/// instruction then loop body is executed only once. In such case eliminate
493/// loop structure surrounding this loop body. For example,
494/// for (int i = start; i < end; ++i) {
495/// if ( i == somevalue) {
496/// loop_body
497/// }
498/// }
499/// can be transformed into
500/// if (somevalue >= start && somevalue < end) {
501/// i = somevalue;
502/// loop_body
503/// }
Devang Patel423c8b22007-08-10 18:07:13 +0000504bool LoopIndexSplit::processOneIterationLoop(SplitInfo &SD) {
Devang Patelfee76bd2007-08-07 00:25:56 +0000505
506 BasicBlock *Header = L->getHeader();
507
508 // First of all, check if SplitCondition dominates entire loop body
509 // or not.
510
511 // If SplitCondition is not in loop header then this loop is not suitable
512 // for this transformation.
Devang Patel71554b82007-08-08 21:02:17 +0000513 if (SD.SplitCondition->getParent() != Header)
Devang Patelfee76bd2007-08-07 00:25:56 +0000514 return false;
515
Devang Patelfee76bd2007-08-07 00:25:56 +0000516 // If loop header includes loop variant instruction operands then
517 // this loop may not be eliminated.
Devang Patel71554b82007-08-08 21:02:17 +0000518 if (!safeHeader(SD, Header))
Devang Patelfee76bd2007-08-07 00:25:56 +0000519 return false;
520
Devang Patel1cc2ec82007-08-20 23:51:18 +0000521 // If Exiting block includes loop variant instructions then this
Devang Patelfee76bd2007-08-07 00:25:56 +0000522 // loop may not be eliminated.
Devang Patel1cc2ec82007-08-20 23:51:18 +0000523 if (!safeExitingBlock(SD, ExitCondition->getParent()))
Devang Patelfee76bd2007-08-07 00:25:56 +0000524 return false;
525
Devang Patel968eee22007-09-19 00:15:16 +0000526 // Filter loops where split condition's false branch is not empty.
527 if (ExitCondition->getParent() != Header->getTerminator()->getSuccessor(1))
528 return false;
529
Devang Patel8893ca62007-09-17 21:01:05 +0000530 // If split condition is not safe then do not process this loop.
531 // For example,
532 // for(int i = 0; i < N; i++) {
533 // if ( i == XYZ) {
534 // A;
535 // else
536 // B;
537 // }
538 // C;
539 // D;
540 // }
541 if (!safeSplitCondition(SD))
542 return false;
543
Devang Patel84ef08b2007-09-19 00:11:01 +0000544 BasicBlock *Latch = L->getLoopLatch();
545 BranchInst *BR = dyn_cast<BranchInst>(Latch->getTerminator());
546 if (!BR)
547 return false;
548
Devang Patel6a2bfda2007-08-08 01:51:27 +0000549 // Update CFG.
550
Devang Patelebc5fea2007-08-20 20:49:01 +0000551 // Replace index variable with split value in loop body. Loop body is executed
552 // only when index variable is equal to split value.
553 IndVar->replaceAllUsesWith(SD.SplitValue);
554
555 // Remove Latch to Header edge.
Devang Patel6a2bfda2007-08-08 01:51:27 +0000556 BasicBlock *LatchSucc = NULL;
Devang Patel6a2bfda2007-08-08 01:51:27 +0000557 Header->removePredecessor(Latch);
558 for (succ_iterator SI = succ_begin(Latch), E = succ_end(Latch);
559 SI != E; ++SI) {
560 if (Header != *SI)
561 LatchSucc = *SI;
562 }
563 BR->setUnconditionalDest(LatchSucc);
564
Devang Patelfee76bd2007-08-07 00:25:56 +0000565 Instruction *Terminator = Header->getTerminator();
Devang Patelada054a2007-08-14 01:30:57 +0000566 Value *ExitValue = ExitCondition->getOperand(ExitValueNum);
Devang Patelfee76bd2007-08-07 00:25:56 +0000567
Devang Patelfee76bd2007-08-07 00:25:56 +0000568 // Replace split condition in header.
569 // Transform
570 // SplitCondition : icmp eq i32 IndVar, SplitValue
571 // into
572 // c1 = icmp uge i32 SplitValue, StartValue
Devang Patelba32a5f2007-09-10 23:57:58 +0000573 // c2 = icmp ult i32 SplitValue, ExitValue
Devang Patelfee76bd2007-08-07 00:25:56 +0000574 // and i32 c1, c2
Devang Patelbacf5192007-08-10 00:33:50 +0000575 bool SignedPredicate = ExitCondition->isSignedPredicate();
Devang Patelfee76bd2007-08-07 00:25:56 +0000576 Instruction *C1 = new ICmpInst(SignedPredicate ?
577 ICmpInst::ICMP_SGE : ICmpInst::ICMP_UGE,
Devang Patel71554b82007-08-08 21:02:17 +0000578 SD.SplitValue, StartValue, "lisplit",
579 Terminator);
Devang Patelfee76bd2007-08-07 00:25:56 +0000580 Instruction *C2 = new ICmpInst(SignedPredicate ?
581 ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
Devang Patelada054a2007-08-14 01:30:57 +0000582 SD.SplitValue, ExitValue, "lisplit",
Devang Patel71554b82007-08-08 21:02:17 +0000583 Terminator);
584 Instruction *NSplitCond = BinaryOperator::createAnd(C1, C2, "lisplit",
585 Terminator);
586 SD.SplitCondition->replaceAllUsesWith(NSplitCond);
587 SD.SplitCondition->eraseFromParent();
Devang Patelfee76bd2007-08-07 00:25:56 +0000588
Devang Patelfee76bd2007-08-07 00:25:56 +0000589 // Now, clear latch block. Remove instructions that are responsible
590 // to increment induction variable.
591 Instruction *LTerminator = Latch->getTerminator();
592 for (BasicBlock::iterator LB = Latch->begin(), LE = Latch->end();
593 LB != LE; ) {
594 Instruction *I = LB;
595 ++LB;
596 if (isa<PHINode>(I) || I == LTerminator)
597 continue;
598
Devang Patelada054a2007-08-14 01:30:57 +0000599 if (I == IndVarIncrement)
600 I->replaceAllUsesWith(ExitValue);
601 else
602 I->replaceAllUsesWith(UndefValue::get(I->getType()));
Devang Patel8431a1c2007-08-07 17:45:35 +0000603 I->eraseFromParent();
Devang Patelfee76bd2007-08-07 00:25:56 +0000604 }
605
Devang Patel423c8b22007-08-10 18:07:13 +0000606 LPM->deleteLoopFromQueue(L);
Devang Patel787a7132007-08-08 21:39:47 +0000607
608 // Update Dominator Info.
609 // Only CFG change done is to remove Latch to Header edge. This
610 // does not change dominator tree because Latch did not dominate
611 // Header.
Devang Patelfc4c5f82007-08-13 22:13:24 +0000612 if (DF) {
Devang Patel787a7132007-08-08 21:39:47 +0000613 DominanceFrontier::iterator HeaderDF = DF->find(Header);
614 if (HeaderDF != DF->end())
615 DF->removeFromFrontier(HeaderDF, Header);
616
617 DominanceFrontier::iterator LatchDF = DF->find(Latch);
618 if (LatchDF != DF->end())
619 DF->removeFromFrontier(LatchDF, Header);
620 }
Devang Patelfee76bd2007-08-07 00:25:56 +0000621 return true;
622}
623
624// If loop header includes loop variant instruction operands then
625// this loop can not be eliminated. This is used by processOneIterationLoop().
Devang Patel71554b82007-08-08 21:02:17 +0000626bool LoopIndexSplit::safeHeader(SplitInfo &SD, BasicBlock *Header) {
Devang Patelfee76bd2007-08-07 00:25:56 +0000627
628 Instruction *Terminator = Header->getTerminator();
629 for(BasicBlock::iterator BI = Header->begin(), BE = Header->end();
630 BI != BE; ++BI) {
631 Instruction *I = BI;
632
Devang Patelada054a2007-08-14 01:30:57 +0000633 // PHI Nodes are OK.
Devang Patelfee76bd2007-08-07 00:25:56 +0000634 if (isa<PHINode>(I))
635 continue;
636
637 // SplitCondition itself is OK.
Devang Patel71554b82007-08-08 21:02:17 +0000638 if (I == SD.SplitCondition)
Devang Patel6a2bfda2007-08-08 01:51:27 +0000639 continue;
Devang Patelfee76bd2007-08-07 00:25:56 +0000640
Devang Patelc9d123d2007-08-09 01:39:01 +0000641 // Induction variable is OK.
Devang Patelbacf5192007-08-10 00:33:50 +0000642 if (I == IndVar)
Devang Patelc9d123d2007-08-09 01:39:01 +0000643 continue;
644
645 // Induction variable increment is OK.
Devang Patelbacf5192007-08-10 00:33:50 +0000646 if (I == IndVarIncrement)
Devang Patelc9d123d2007-08-09 01:39:01 +0000647 continue;
648
Devang Patelfee76bd2007-08-07 00:25:56 +0000649 // Terminator is also harmless.
650 if (I == Terminator)
651 continue;
652
653 // Otherwise we have a instruction that may not be safe.
654 return false;
655 }
656
657 return true;
658}
659
Devang Patel1cc2ec82007-08-20 23:51:18 +0000660// If Exiting block includes loop variant instructions then this
Devang Patelfee76bd2007-08-07 00:25:56 +0000661// loop may not be eliminated. This is used by processOneIterationLoop().
Devang Patel1cc2ec82007-08-20 23:51:18 +0000662bool LoopIndexSplit::safeExitingBlock(SplitInfo &SD,
663 BasicBlock *ExitingBlock) {
Devang Patelfee76bd2007-08-07 00:25:56 +0000664
Devang Patel1cc2ec82007-08-20 23:51:18 +0000665 for (BasicBlock::iterator BI = ExitingBlock->begin(),
666 BE = ExitingBlock->end(); BI != BE; ++BI) {
Devang Patelfee76bd2007-08-07 00:25:56 +0000667 Instruction *I = BI;
668
Devang Patelada054a2007-08-14 01:30:57 +0000669 // PHI Nodes are OK.
Devang Patelfee76bd2007-08-07 00:25:56 +0000670 if (isa<PHINode>(I))
671 continue;
672
Devang Patelc9d123d2007-08-09 01:39:01 +0000673 // Induction variable increment is OK.
Devang Patelbacf5192007-08-10 00:33:50 +0000674 if (IndVarIncrement && IndVarIncrement == I)
Devang Patelc9d123d2007-08-09 01:39:01 +0000675 continue;
Devang Patelfee76bd2007-08-07 00:25:56 +0000676
Devang Patelc9d123d2007-08-09 01:39:01 +0000677 // Check if I is induction variable increment instruction.
Devang Patela6dff2f2007-09-25 18:24:48 +0000678 if (I->getOpcode() == Instruction::Add) {
Devang Patelc9d123d2007-08-09 01:39:01 +0000679
680 Value *Op0 = I->getOperand(0);
681 Value *Op1 = I->getOperand(1);
Devang Patelfee76bd2007-08-07 00:25:56 +0000682 PHINode *PN = NULL;
683 ConstantInt *CI = NULL;
684
685 if ((PN = dyn_cast<PHINode>(Op0))) {
686 if ((CI = dyn_cast<ConstantInt>(Op1)))
Devang Patela6dff2f2007-09-25 18:24:48 +0000687 if (CI->isOne()) {
688 if (!IndVarIncrement && PN == IndVar)
689 IndVarIncrement = I;
690 // else this is another loop induction variable
691 continue;
692 }
Devang Patelfee76bd2007-08-07 00:25:56 +0000693 } else
694 if ((PN = dyn_cast<PHINode>(Op1))) {
695 if ((CI = dyn_cast<ConstantInt>(Op0)))
Devang Patela6dff2f2007-09-25 18:24:48 +0000696 if (CI->isOne()) {
697 if (!IndVarIncrement && PN == IndVar)
698 IndVarIncrement = I;
699 // else this is another loop induction variable
700 continue;
701 }
Devang Patelfee76bd2007-08-07 00:25:56 +0000702 }
Devang Patela6dff2f2007-09-25 18:24:48 +0000703 }
Devang Patel6a2bfda2007-08-08 01:51:27 +0000704
Devang Patelfee76bd2007-08-07 00:25:56 +0000705 // I is an Exit condition if next instruction is block terminator.
706 // Exit condition is OK if it compares loop invariant exit value,
707 // which is checked below.
Devang Patel002fe252007-08-07 23:17:52 +0000708 else if (ICmpInst *EC = dyn_cast<ICmpInst>(I)) {
Devang Patelbacf5192007-08-10 00:33:50 +0000709 if (EC == ExitCondition)
Devang Patel6a2bfda2007-08-08 01:51:27 +0000710 continue;
Devang Patelfee76bd2007-08-07 00:25:56 +0000711 }
712
Devang Patel1cc2ec82007-08-20 23:51:18 +0000713 if (I == ExitingBlock->getTerminator())
Devang Patelbacf5192007-08-10 00:33:50 +0000714 continue;
715
Devang Patelfee76bd2007-08-07 00:25:56 +0000716 // Otherwise we have instruction that may not be safe.
717 return false;
718 }
719
Devang Patel1cc2ec82007-08-20 23:51:18 +0000720 // We could not find any reason to consider ExitingBlock unsafe.
Devang Patelfee76bd2007-08-07 00:25:56 +0000721 return true;
722}
723
Devang Patel5279d062007-09-17 20:39:48 +0000724void LoopIndexSplit::updateLoopBounds(ICmpInst *CI) {
725
726 Value *V0 = CI->getOperand(0);
727 Value *V1 = CI->getOperand(1);
728 Value *NV = NULL;
729
730 SCEVHandle SH0 = SE->getSCEV(V0);
731
732 if (SH0->isLoopInvariant(L))
733 NV = V0;
734 else
735 NV = V1;
736
Devang Patel453a8442007-09-25 17:31:19 +0000737 if (ExitCondition->getPredicate() == ICmpInst::ICMP_SGT
738 || ExitCondition->getPredicate() == ICmpInst::ICMP_UGT
739 || ExitCondition->getPredicate() == ICmpInst::ICMP_SGE
740 || ExitCondition->getPredicate() == ICmpInst::ICMP_UGE) {
741 ExitCondition->swapOperands();
742 if (ExitValueNum)
743 ExitValueNum = 0;
744 else
745 ExitValueNum = 1;
746 }
747
748 Value *NUB = NULL;
749 Value *NLB = NULL;
750 Value *UB = ExitCondition->getOperand(ExitValueNum);
751 const Type *Ty = NV->getType();
752 bool Sign = ExitCondition->isSignedPredicate();
753 BasicBlock *Preheader = L->getLoopPreheader();
754 Instruction *PHTerminator = Preheader->getTerminator();
755
756 assert (NV && "Unexpected value");
757
Devang Patel5279d062007-09-17 20:39:48 +0000758 switch (CI->getPredicate()) {
759 case ICmpInst::ICMP_ULE:
760 case ICmpInst::ICMP_SLE:
761 // for (i = LB; i < UB; ++i)
762 // if (i <= NV && ...)
763 // LOOP_BODY
764 //
765 // is transformed into
766 // NUB = min (NV+1, UB)
767 // for (i = LB; i < NUB ; ++i)
768 // LOOP_BODY
769 //
Devang Patel453a8442007-09-25 17:31:19 +0000770 if (ExitCondition->getPredicate() == ICmpInst::ICMP_SLT
771 || ExitCondition->getPredicate() == ICmpInst::ICMP_ULT) {
772 Value *A = BinaryOperator::createAdd(NV, ConstantInt::get(Ty, 1, Sign),
773 "lsplit.add", PHTerminator);
774 Value *C = new ICmpInst(Sign ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
775 A, UB,"lsplit,c", PHTerminator);
Gabor Greif051a9502008-04-06 20:25:17 +0000776 NUB = SelectInst::Create(C, A, UB, "lsplit.nub", PHTerminator);
Devang Patel453a8442007-09-25 17:31:19 +0000777 }
778
Devang Patel5279d062007-09-17 20:39:48 +0000779 // for (i = LB; i <= UB; ++i)
780 // if (i <= NV && ...)
781 // LOOP_BODY
782 //
783 // is transformed into
784 // NUB = min (NV, UB)
785 // for (i = LB; i <= NUB ; ++i)
786 // LOOP_BODY
787 //
Devang Patel453a8442007-09-25 17:31:19 +0000788 else if (ExitCondition->getPredicate() == ICmpInst::ICMP_SLE
789 || ExitCondition->getPredicate() == ICmpInst::ICMP_ULE) {
790 Value *C = new ICmpInst(Sign ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
791 NV, UB, "lsplit.c", PHTerminator);
Gabor Greif051a9502008-04-06 20:25:17 +0000792 NUB = SelectInst::Create(C, NV, UB, "lsplit.nub", PHTerminator);
Devang Patel453a8442007-09-25 17:31:19 +0000793 }
Devang Patel5279d062007-09-17 20:39:48 +0000794 break;
795 case ICmpInst::ICMP_ULT:
796 case ICmpInst::ICMP_SLT:
797 // for (i = LB; i < UB; ++i)
798 // if (i < NV && ...)
799 // LOOP_BODY
800 //
801 // is transformed into
802 // NUB = min (NV, UB)
803 // for (i = LB; i < NUB ; ++i)
804 // LOOP_BODY
805 //
Devang Patel453a8442007-09-25 17:31:19 +0000806 if (ExitCondition->getPredicate() == ICmpInst::ICMP_SLT
807 || ExitCondition->getPredicate() == ICmpInst::ICMP_ULT) {
808 Value *C = new ICmpInst(Sign ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
809 NV, UB, "lsplit.c", PHTerminator);
Gabor Greif051a9502008-04-06 20:25:17 +0000810 NUB = SelectInst::Create(C, NV, UB, "lsplit.nub", PHTerminator);
Devang Patel453a8442007-09-25 17:31:19 +0000811 }
Devang Patel5279d062007-09-17 20:39:48 +0000812
813 // for (i = LB; i <= UB; ++i)
814 // if (i < NV && ...)
815 // LOOP_BODY
816 //
817 // is transformed into
818 // NUB = min (NV -1 , UB)
819 // for (i = LB; i <= NUB ; ++i)
820 // LOOP_BODY
821 //
Devang Patel453a8442007-09-25 17:31:19 +0000822 else if (ExitCondition->getPredicate() == ICmpInst::ICMP_SLE
823 || ExitCondition->getPredicate() == ICmpInst::ICMP_ULE) {
824 Value *S = BinaryOperator::createSub(NV, ConstantInt::get(Ty, 1, Sign),
825 "lsplit.add", PHTerminator);
826 Value *C = new ICmpInst(Sign ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
827 S, UB, "lsplit.c", PHTerminator);
Gabor Greif051a9502008-04-06 20:25:17 +0000828 NUB = SelectInst::Create(C, S, UB, "lsplit.nub", PHTerminator);
Devang Patel453a8442007-09-25 17:31:19 +0000829 }
Devang Patel5279d062007-09-17 20:39:48 +0000830 break;
831 case ICmpInst::ICMP_UGE:
832 case ICmpInst::ICMP_SGE:
833 // for (i = LB; i (< or <=) UB; ++i)
834 // if (i >= NV && ...)
835 // LOOP_BODY
836 //
837 // is transformed into
838 // NLB = max (NV, LB)
839 // for (i = NLB; i (< or <=) UB ; ++i)
840 // LOOP_BODY
841 //
Devang Patel453a8442007-09-25 17:31:19 +0000842 {
843 Value *C = new ICmpInst(Sign ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
844 NV, StartValue, "lsplit.c", PHTerminator);
Gabor Greif051a9502008-04-06 20:25:17 +0000845 NLB = SelectInst::Create(C, StartValue, NV, "lsplit.nlb", PHTerminator);
Devang Patel453a8442007-09-25 17:31:19 +0000846 }
Devang Patel5279d062007-09-17 20:39:48 +0000847 break;
848 case ICmpInst::ICMP_UGT:
849 case ICmpInst::ICMP_SGT:
850 // for (i = LB; i (< or <=) UB; ++i)
851 // if (i > NV && ...)
852 // LOOP_BODY
853 //
854 // is transformed into
855 // NLB = max (NV+1, LB)
856 // for (i = NLB; i (< or <=) UB ; ++i)
857 // LOOP_BODY
858 //
Devang Patel453a8442007-09-25 17:31:19 +0000859 {
860 Value *A = BinaryOperator::createAdd(NV, ConstantInt::get(Ty, 1, Sign),
861 "lsplit.add", PHTerminator);
862 Value *C = new ICmpInst(Sign ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
863 A, StartValue, "lsplit.c", PHTerminator);
Gabor Greif051a9502008-04-06 20:25:17 +0000864 NLB = SelectInst::Create(C, StartValue, A, "lsplit.nlb", PHTerminator);
Devang Patel453a8442007-09-25 17:31:19 +0000865 }
Devang Patel5279d062007-09-17 20:39:48 +0000866 break;
867 default:
868 assert ( 0 && "Unexpected split condition predicate");
869 }
Devang Patel453a8442007-09-25 17:31:19 +0000870
871 if (NLB) {
872 unsigned i = IndVar->getBasicBlockIndex(Preheader);
873 IndVar->setIncomingValue(i, NLB);
874 }
875
876 if (NUB) {
877 ExitCondition->setOperand(ExitValueNum, NUB);
878 }
Devang Patel5279d062007-09-17 20:39:48 +0000879}
880/// updateLoopIterationSpace - Current loop body is covered by an AND
881/// instruction whose operands compares induction variables with loop
882/// invariants. If possible, hoist this check outside the loop by
883/// updating appropriate start and end values for induction variable.
884bool LoopIndexSplit::updateLoopIterationSpace(SplitInfo &SD) {
885 BasicBlock *Header = L->getHeader();
Devang Patel453a8442007-09-25 17:31:19 +0000886 BasicBlock *ExitingBlock = ExitCondition->getParent();
887 BasicBlock *SplitCondBlock = SD.SplitCondition->getParent();
888
Devang Patel5279d062007-09-17 20:39:48 +0000889 ICmpInst *Op0 = cast<ICmpInst>(SD.SplitCondition->getOperand(0));
890 ICmpInst *Op1 = cast<ICmpInst>(SD.SplitCondition->getOperand(1));
891
892 if (Op0->getPredicate() == ICmpInst::ICMP_EQ
893 || Op0->getPredicate() == ICmpInst::ICMP_NE
894 || Op0->getPredicate() == ICmpInst::ICMP_EQ
895 || Op0->getPredicate() == ICmpInst::ICMP_NE)
896 return false;
897
898 // Check if SplitCondition dominates entire loop body
899 // or not.
900
901 // If SplitCondition is not in loop header then this loop is not suitable
902 // for this transformation.
903 if (SD.SplitCondition->getParent() != Header)
904 return false;
905
906 // If loop header includes loop variant instruction operands then
907 // this loop may not be eliminated.
908 Instruction *Terminator = Header->getTerminator();
909 for(BasicBlock::iterator BI = Header->begin(), BE = Header->end();
910 BI != BE; ++BI) {
911 Instruction *I = BI;
912
913 // PHI Nodes are OK.
914 if (isa<PHINode>(I))
915 continue;
916
917 // SplitCondition itself is OK.
918 if (I == SD.SplitCondition)
919 continue;
920 if (I == Op0 || I == Op1)
921 continue;
922
923 // Induction variable is OK.
924 if (I == IndVar)
925 continue;
926
927 // Induction variable increment is OK.
928 if (I == IndVarIncrement)
929 continue;
930
931 // Terminator is also harmless.
932 if (I == Terminator)
933 continue;
934
935 // Otherwise we have a instruction that may not be safe.
936 return false;
937 }
938
939 // If Exiting block includes loop variant instructions then this
940 // loop may not be eliminated.
941 if (!safeExitingBlock(SD, ExitCondition->getParent()))
942 return false;
Devang Patel453a8442007-09-25 17:31:19 +0000943
944 // Verify that loop exiting block has only two predecessor, where one predecessor
945 // is split condition block. The other predecessor will become exiting block's
946 // dominator after CFG is updated. TODO : Handle CFG's where exiting block has
947 // more then two predecessors. This requires extra work in updating dominator
948 // information.
949 BasicBlock *ExitingBBPred = NULL;
950 for (pred_iterator PI = pred_begin(ExitingBlock), PE = pred_end(ExitingBlock);
951 PI != PE; ++PI) {
952 BasicBlock *BB = *PI;
953 if (SplitCondBlock == BB)
954 continue;
955 if (ExitingBBPred)
956 return false;
957 else
958 ExitingBBPred = BB;
959 }
960
961 // Update loop bounds to absorb Op0 check.
Devang Patel5279d062007-09-17 20:39:48 +0000962 updateLoopBounds(Op0);
Devang Patel453a8442007-09-25 17:31:19 +0000963 // Update loop bounds to absorb Op1 check.
Devang Patel5279d062007-09-17 20:39:48 +0000964 updateLoopBounds(Op1);
Devang Patel453a8442007-09-25 17:31:19 +0000965
Devang Patel5279d062007-09-17 20:39:48 +0000966 // Update CFG
Devang Patel453a8442007-09-25 17:31:19 +0000967
968 // Unconditionally connect split block to its remaining successor.
969 BranchInst *SplitTerminator =
970 cast<BranchInst>(SplitCondBlock->getTerminator());
971 BasicBlock *Succ0 = SplitTerminator->getSuccessor(0);
972 BasicBlock *Succ1 = SplitTerminator->getSuccessor(1);
973 if (Succ0 == ExitCondition->getParent())
974 SplitTerminator->setUnconditionalDest(Succ1);
975 else
976 SplitTerminator->setUnconditionalDest(Succ0);
977
978 // Remove split condition.
979 SD.SplitCondition->eraseFromParent();
980 if (Op0->use_begin() == Op0->use_end())
981 Op0->eraseFromParent();
982 if (Op1->use_begin() == Op1->use_end())
983 Op1->eraseFromParent();
984
985 BranchInst *ExitInsn =
986 dyn_cast<BranchInst>(ExitingBlock->getTerminator());
987 assert (ExitInsn && "Unable to find suitable loop exit branch");
988 BasicBlock *ExitBlock = ExitInsn->getSuccessor(1);
989 if (L->contains(ExitBlock))
990 ExitBlock = ExitInsn->getSuccessor(0);
991
992 // Update domiantor info. Now, ExitingBlock has only one predecessor,
993 // ExitingBBPred, and it is ExitingBlock's immediate domiantor.
994 DT->changeImmediateDominator(ExitingBlock, ExitingBBPred);
995
996 // If ExitingBlock is a member of loop BB's DF list then replace it with
997 // loop header and exit block.
998 for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
999 I != E; ++I) {
1000 BasicBlock *BB = *I;
1001 if (BB == Header || BB == ExitingBlock)
1002 continue;
1003 DominanceFrontier::iterator BBDF = DF->find(BB);
1004 DominanceFrontier::DomSetType::iterator DomSetI = BBDF->second.begin();
1005 DominanceFrontier::DomSetType::iterator DomSetE = BBDF->second.end();
1006 while (DomSetI != DomSetE) {
1007 DominanceFrontier::DomSetType::iterator CurrentItr = DomSetI;
1008 ++DomSetI;
1009 BasicBlock *DFBB = *CurrentItr;
1010 if (DFBB == ExitingBlock) {
1011 BBDF->second.erase(DFBB);
1012 BBDF->second.insert(Header);
1013 if (Header != ExitingBlock)
1014 BBDF->second.insert(ExitBlock);
1015 }
1016 }
1017 }
1018
Devang Patel1c013502007-09-25 17:43:08 +00001019 return true;
Devang Patel5279d062007-09-17 20:39:48 +00001020}
1021
1022
Devang Patela6a86632007-08-14 18:35:57 +00001023/// removeBlocks - Remove basic block DeadBB and all blocks dominated by DeadBB.
1024/// This routine is used to remove split condition's dead branch, dominated by
1025/// DeadBB. LiveBB dominates split conidition's other branch.
1026void LoopIndexSplit::removeBlocks(BasicBlock *DeadBB, Loop *LP,
1027 BasicBlock *LiveBB) {
Devang Patel98147a32007-08-12 07:02:51 +00001028
Devang Patel5b8ec612007-08-15 03:31:47 +00001029 // First update DeadBB's dominance frontier.
Devang Patel96bf5242007-08-17 21:59:16 +00001030 SmallVector<BasicBlock *, 8> FrontierBBs;
Devang Patel5b8ec612007-08-15 03:31:47 +00001031 DominanceFrontier::iterator DeadBBDF = DF->find(DeadBB);
1032 if (DeadBBDF != DF->end()) {
1033 SmallVector<BasicBlock *, 8> PredBlocks;
1034
1035 DominanceFrontier::DomSetType DeadBBSet = DeadBBDF->second;
1036 for (DominanceFrontier::DomSetType::iterator DeadBBSetI = DeadBBSet.begin(),
1037 DeadBBSetE = DeadBBSet.end(); DeadBBSetI != DeadBBSetE; ++DeadBBSetI) {
1038 BasicBlock *FrontierBB = *DeadBBSetI;
Devang Patel96bf5242007-08-17 21:59:16 +00001039 FrontierBBs.push_back(FrontierBB);
1040
Devang Patel5b8ec612007-08-15 03:31:47 +00001041 // Rremove any PHI incoming edge from blocks dominated by DeadBB.
1042 PredBlocks.clear();
1043 for(pred_iterator PI = pred_begin(FrontierBB), PE = pred_end(FrontierBB);
1044 PI != PE; ++PI) {
1045 BasicBlock *P = *PI;
1046 if (P == DeadBB || DT->dominates(DeadBB, P))
1047 PredBlocks.push_back(P);
Devang Patelfc4c5f82007-08-13 22:13:24 +00001048 }
Devang Patel96bf5242007-08-17 21:59:16 +00001049
Devang Patel5b8ec612007-08-15 03:31:47 +00001050 for(BasicBlock::iterator FBI = FrontierBB->begin(), FBE = FrontierBB->end();
1051 FBI != FBE; ++FBI) {
1052 if (PHINode *PN = dyn_cast<PHINode>(FBI)) {
1053 for(SmallVector<BasicBlock *, 8>::iterator PI = PredBlocks.begin(),
1054 PE = PredBlocks.end(); PI != PE; ++PI) {
1055 BasicBlock *P = *PI;
1056 PN->removeIncomingValue(P);
1057 }
1058 }
1059 else
1060 break;
Devang Patel96bf5242007-08-17 21:59:16 +00001061 }
Devang Patel98147a32007-08-12 07:02:51 +00001062 }
Devang Patel98147a32007-08-12 07:02:51 +00001063 }
Devang Patel5b8ec612007-08-15 03:31:47 +00001064
1065 // Now remove DeadBB and all nodes dominated by DeadBB in df order.
1066 SmallVector<BasicBlock *, 32> WorkList;
1067 DomTreeNode *DN = DT->getNode(DeadBB);
1068 for (df_iterator<DomTreeNode*> DI = df_begin(DN),
1069 E = df_end(DN); DI != E; ++DI) {
1070 BasicBlock *BB = DI->getBlock();
1071 WorkList.push_back(BB);
Devang Patel96bf5242007-08-17 21:59:16 +00001072 BB->replaceAllUsesWith(UndefValue::get(Type::LabelTy));
Devang Patel5b8ec612007-08-15 03:31:47 +00001073 }
1074
1075 while (!WorkList.empty()) {
1076 BasicBlock *BB = WorkList.back(); WorkList.pop_back();
1077 for(BasicBlock::iterator BBI = BB->begin(), BBE = BB->end();
Devang Pateld15dd8c2007-09-20 23:01:50 +00001078 BBI != BBE; ) {
Devang Patel5b8ec612007-08-15 03:31:47 +00001079 Instruction *I = BBI;
Devang Pateld15dd8c2007-09-20 23:01:50 +00001080 ++BBI;
Devang Patel5b8ec612007-08-15 03:31:47 +00001081 I->replaceAllUsesWith(UndefValue::get(I->getType()));
1082 I->eraseFromParent();
1083 }
1084 LPM->deleteSimpleAnalysisValue(BB, LP);
1085 DT->eraseNode(BB);
1086 DF->removeBlock(BB);
1087 LI->removeBlock(BB);
1088 BB->eraseFromParent();
1089 }
Devang Patel96bf5242007-08-17 21:59:16 +00001090
1091 // Update Frontier BBs' dominator info.
1092 while (!FrontierBBs.empty()) {
1093 BasicBlock *FBB = FrontierBBs.back(); FrontierBBs.pop_back();
1094 BasicBlock *NewDominator = FBB->getSinglePredecessor();
1095 if (!NewDominator) {
1096 pred_iterator PI = pred_begin(FBB), PE = pred_end(FBB);
1097 NewDominator = *PI;
1098 ++PI;
1099 if (NewDominator != LiveBB) {
1100 for(; PI != PE; ++PI) {
1101 BasicBlock *P = *PI;
1102 if (P == LiveBB) {
1103 NewDominator = LiveBB;
1104 break;
1105 }
1106 NewDominator = DT->findNearestCommonDominator(NewDominator, P);
1107 }
1108 }
1109 }
1110 assert (NewDominator && "Unable to fix dominator info.");
1111 DT->changeImmediateDominator(FBB, NewDominator);
1112 DF->changeImmediateDominator(FBB, NewDominator, DT);
1113 }
1114
Devang Patel98147a32007-08-12 07:02:51 +00001115}
1116
Devang Pateldc523952007-08-22 18:27:01 +00001117/// safeSplitCondition - Return true if it is possible to
1118/// split loop using given split condition.
1119bool LoopIndexSplit::safeSplitCondition(SplitInfo &SD) {
Devang Patel23a19f82007-08-10 00:53:35 +00001120
Devang Pateldc523952007-08-22 18:27:01 +00001121 BasicBlock *SplitCondBlock = SD.SplitCondition->getParent();
Devang Patel8893ca62007-09-17 21:01:05 +00001122 BasicBlock *Latch = L->getLoopLatch();
Devang Pateldc523952007-08-22 18:27:01 +00001123 BranchInst *SplitTerminator =
1124 cast<BranchInst>(SplitCondBlock->getTerminator());
1125 BasicBlock *Succ0 = SplitTerminator->getSuccessor(0);
1126 BasicBlock *Succ1 = SplitTerminator->getSuccessor(1);
Devang Patel20d260a2007-08-18 00:00:32 +00001127
Bill Wendling643310d2008-05-02 00:43:20 +00001128 // If split block does not dominate the latch then this is not a diamond.
1129 // Such loop may not benefit from index split.
1130 if (!DT->dominates(SplitCondBlock, Latch))
1131 return false;
1132
Devang Patelb88e4202007-08-24 05:36:56 +00001133 // Finally this split condition is safe only if merge point for
1134 // split condition branch is loop latch. This check along with previous
1135 // check, to ensure that exit condition is in either loop latch or header,
1136 // filters all loops with non-empty loop body between merge point
1137 // and exit condition.
1138 DominanceFrontier::iterator Succ0DF = DF->find(Succ0);
1139 assert (Succ0DF != DF->end() && "Unable to find Succ0 dominance frontier");
1140 if (Succ0DF->second.count(Latch))
1141 return true;
1142
1143 DominanceFrontier::iterator Succ1DF = DF->find(Succ1);
1144 assert (Succ1DF != DF->end() && "Unable to find Succ1 dominance frontier");
1145 if (Succ1DF->second.count(Latch))
1146 return true;
1147
1148 return false;
Devang Pateldc523952007-08-22 18:27:01 +00001149}
1150
Devang Patel4a69da92007-08-25 00:56:38 +00001151/// calculateLoopBounds - ALoop exit value and BLoop start values are calculated
1152/// based on split value.
1153void LoopIndexSplit::calculateLoopBounds(SplitInfo &SD) {
1154
Devang Patel4f12c5f2007-09-11 00:12:56 +00001155 ICmpInst *SC = cast<ICmpInst>(SD.SplitCondition);
1156 ICmpInst::Predicate SP = SC->getPredicate();
Devang Patel4a69da92007-08-25 00:56:38 +00001157 const Type *Ty = SD.SplitValue->getType();
1158 bool Sign = ExitCondition->isSignedPredicate();
1159 BasicBlock *Preheader = L->getLoopPreheader();
1160 Instruction *PHTerminator = Preheader->getTerminator();
1161
1162 // Initially use split value as upper loop bound for first loop and lower loop
1163 // bound for second loop.
1164 Value *AEV = SD.SplitValue;
1165 Value *BSV = SD.SplitValue;
1166
Devang Patelbabbe272007-09-19 00:28:47 +00001167 if (ExitCondition->getPredicate() == ICmpInst::ICMP_SGT
1168 || ExitCondition->getPredicate() == ICmpInst::ICMP_UGT
1169 || ExitCondition->getPredicate() == ICmpInst::ICMP_SGE
Devang Patel02c48362008-02-13 19:48:48 +00001170 || ExitCondition->getPredicate() == ICmpInst::ICMP_UGE) {
Devang Patelbabbe272007-09-19 00:28:47 +00001171 ExitCondition->swapOperands();
Devang Patel02c48362008-02-13 19:48:48 +00001172 if (ExitValueNum)
1173 ExitValueNum = 0;
1174 else
1175 ExitValueNum = 1;
1176 }
Devang Patelbabbe272007-09-19 00:28:47 +00001177
Devang Patel4a69da92007-08-25 00:56:38 +00001178 switch (ExitCondition->getPredicate()) {
1179 case ICmpInst::ICMP_SGT:
1180 case ICmpInst::ICMP_UGT:
1181 case ICmpInst::ICMP_SGE:
1182 case ICmpInst::ICMP_UGE:
1183 default:
1184 assert (0 && "Unexpected exit condition predicate");
1185
1186 case ICmpInst::ICMP_SLT:
1187 case ICmpInst::ICMP_ULT:
1188 {
1189 switch (SP) {
1190 case ICmpInst::ICMP_SLT:
1191 case ICmpInst::ICMP_ULT:
1192 //
1193 // for (i = LB; i < UB; ++i) { if (i < SV) A; else B; }
1194 //
1195 // is transformed into
1196 // AEV = BSV = SV
1197 // for (i = LB; i < min(UB, AEV); ++i)
1198 // A;
1199 // for (i = max(LB, BSV); i < UB; ++i);
1200 // B;
1201 break;
1202 case ICmpInst::ICMP_SLE:
1203 case ICmpInst::ICMP_ULE:
1204 {
1205 //
1206 // for (i = LB; i < UB; ++i) { if (i <= SV) A; else B; }
1207 //
1208 // is transformed into
1209 //
1210 // AEV = SV + 1
1211 // BSV = SV + 1
1212 // for (i = LB; i < min(UB, AEV); ++i)
1213 // A;
1214 // for (i = max(LB, BSV); i < UB; ++i)
1215 // B;
1216 BSV = BinaryOperator::createAdd(SD.SplitValue,
1217 ConstantInt::get(Ty, 1, Sign),
1218 "lsplit.add", PHTerminator);
1219 AEV = BSV;
1220 }
1221 break;
1222 case ICmpInst::ICMP_SGE:
1223 case ICmpInst::ICMP_UGE:
1224 //
1225 // for (i = LB; i < UB; ++i) { if (i >= SV) A; else B; }
1226 //
1227 // is transformed into
1228 // AEV = BSV = SV
1229 // for (i = LB; i < min(UB, AEV); ++i)
1230 // B;
1231 // for (i = max(BSV, LB); i < UB; ++i)
1232 // A;
1233 break;
1234 case ICmpInst::ICMP_SGT:
1235 case ICmpInst::ICMP_UGT:
1236 {
1237 //
1238 // for (i = LB; i < UB; ++i) { if (i > SV) A; else B; }
1239 //
1240 // is transformed into
1241 //
1242 // BSV = AEV = SV + 1
1243 // for (i = LB; i < min(UB, AEV); ++i)
1244 // B;
1245 // for (i = max(LB, BSV); i < UB; ++i)
1246 // A;
1247 BSV = BinaryOperator::createAdd(SD.SplitValue,
1248 ConstantInt::get(Ty, 1, Sign),
1249 "lsplit.add", PHTerminator);
1250 AEV = BSV;
1251 }
1252 break;
1253 default:
1254 assert (0 && "Unexpected split condition predicate");
1255 break;
1256 } // end switch (SP)
1257 }
1258 break;
1259 case ICmpInst::ICMP_SLE:
1260 case ICmpInst::ICMP_ULE:
1261 {
1262 switch (SP) {
1263 case ICmpInst::ICMP_SLT:
1264 case ICmpInst::ICMP_ULT:
1265 //
1266 // for (i = LB; i <= UB; ++i) { if (i < SV) A; else B; }
1267 //
1268 // is transformed into
1269 // AEV = SV - 1;
1270 // BSV = SV;
1271 // for (i = LB; i <= min(UB, AEV); ++i)
1272 // A;
1273 // for (i = max(LB, BSV); i <= UB; ++i)
1274 // B;
1275 AEV = BinaryOperator::createSub(SD.SplitValue,
1276 ConstantInt::get(Ty, 1, Sign),
1277 "lsplit.sub", PHTerminator);
1278 break;
1279 case ICmpInst::ICMP_SLE:
1280 case ICmpInst::ICMP_ULE:
1281 //
1282 // for (i = LB; i <= UB; ++i) { if (i <= SV) A; else B; }
1283 //
1284 // is transformed into
1285 // AEV = SV;
1286 // BSV = SV + 1;
1287 // for (i = LB; i <= min(UB, AEV); ++i)
1288 // A;
1289 // for (i = max(LB, BSV); i <= UB; ++i)
1290 // B;
1291 BSV = BinaryOperator::createAdd(SD.SplitValue,
1292 ConstantInt::get(Ty, 1, Sign),
1293 "lsplit.add", PHTerminator);
1294 break;
1295 case ICmpInst::ICMP_SGT:
1296 case ICmpInst::ICMP_UGT:
1297 //
1298 // for (i = LB; i <= UB; ++i) { if (i > SV) A; else B; }
1299 //
1300 // is transformed into
1301 // AEV = SV;
1302 // BSV = SV + 1;
1303 // for (i = LB; i <= min(AEV, UB); ++i)
1304 // B;
1305 // for (i = max(LB, BSV); i <= UB; ++i)
1306 // A;
1307 BSV = BinaryOperator::createAdd(SD.SplitValue,
1308 ConstantInt::get(Ty, 1, Sign),
1309 "lsplit.add", PHTerminator);
1310 break;
1311 case ICmpInst::ICMP_SGE:
1312 case ICmpInst::ICMP_UGE:
1313 // ** TODO **
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(AEV, UB); ++i)
1321 // B;
1322 // for (i = max(LB, BSV); i <= UB; ++i)
1323 // A;
1324 AEV = BinaryOperator::createSub(SD.SplitValue,
1325 ConstantInt::get(Ty, 1, Sign),
1326 "lsplit.sub", PHTerminator);
1327 break;
1328 default:
1329 assert (0 && "Unexpected split condition predicate");
1330 break;
1331 } // end switch (SP)
1332 }
1333 break;
1334 }
1335
1336 // Calculate ALoop induction variable's new exiting value and
1337 // BLoop induction variable's new starting value. Calculuate these
1338 // values in original loop's preheader.
1339 // A_ExitValue = min(SplitValue, OrignalLoopExitValue)
1340 // B_StartValue = max(SplitValue, OriginalLoopStartValue)
Devang Patel3f65f022007-09-21 21:18:19 +00001341 Instruction *InsertPt = L->getHeader()->getFirstNonPHI();
Devang Patel5ffdc562007-12-03 19:17:21 +00001342
1343 // If ExitValue operand is also defined in Loop header then
1344 // insert new ExitValue after this operand definition.
1345 if (Instruction *EVN =
1346 dyn_cast<Instruction>(ExitCondition->getOperand(ExitValueNum))) {
1347 if (!isa<PHINode>(EVN))
1348 if (InsertPt->getParent() == EVN->getParent()) {
1349 BasicBlock::iterator LHBI = L->getHeader()->begin();
1350 BasicBlock::iterator LHBE = L->getHeader()->end();
1351 for(;LHBI != LHBE; ++LHBI) {
1352 Instruction *I = LHBI;
1353 if (I == EVN)
1354 break;
1355 }
1356 InsertPt = ++LHBI;
1357 }
1358 }
Devang Patel4a69da92007-08-25 00:56:38 +00001359 Value *C1 = new ICmpInst(Sign ?
1360 ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
1361 AEV,
1362 ExitCondition->getOperand(ExitValueNum),
Devang Patel3f65f022007-09-21 21:18:19 +00001363 "lsplit.ev", InsertPt);
1364
Gabor Greif051a9502008-04-06 20:25:17 +00001365 SD.A_ExitValue = SelectInst::Create(C1, AEV,
1366 ExitCondition->getOperand(ExitValueNum),
1367 "lsplit.ev", InsertPt);
Devang Patel3f65f022007-09-21 21:18:19 +00001368
Devang Patel4a69da92007-08-25 00:56:38 +00001369 Value *C2 = new ICmpInst(Sign ?
1370 ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
1371 BSV, StartValue, "lsplit.sv",
1372 PHTerminator);
Gabor Greif051a9502008-04-06 20:25:17 +00001373 SD.B_StartValue = SelectInst::Create(C2, StartValue, BSV,
1374 "lsplit.sv", PHTerminator);
Devang Patel4a69da92007-08-25 00:56:38 +00001375}
1376
Devang Pateldc523952007-08-22 18:27:01 +00001377/// splitLoop - Split current loop L in two loops using split information
1378/// SD. Update dominator information. Maintain LCSSA form.
1379bool LoopIndexSplit::splitLoop(SplitInfo &SD) {
1380
1381 if (!safeSplitCondition(SD))
1382 return false;
1383
Devang Patel8893ca62007-09-17 21:01:05 +00001384 BasicBlock *SplitCondBlock = SD.SplitCondition->getParent();
1385
1386 // Unable to handle triange loops at the moment.
1387 // In triangle loop, split condition is in header and one of the
1388 // the split destination is loop latch. If split condition is EQ
1389 // then such loops are already handle in processOneIterationLoop().
1390 BasicBlock *Latch = L->getLoopLatch();
1391 BranchInst *SplitTerminator =
1392 cast<BranchInst>(SplitCondBlock->getTerminator());
1393 BasicBlock *Succ0 = SplitTerminator->getSuccessor(0);
1394 BasicBlock *Succ1 = SplitTerminator->getSuccessor(1);
1395 if (L->getHeader() == SplitCondBlock
1396 && (Latch == Succ0 || Latch == Succ1))
1397 return false;
1398
1399 // If split condition branches heads do not have single predecessor,
1400 // SplitCondBlock, then is not possible to remove inactive branch.
1401 if (!Succ0->getSinglePredecessor() || !Succ1->getSinglePredecessor())
1402 return false;
1403
Devang Patel82ada542008-02-08 22:49:13 +00001404 // If Exiting block includes loop variant instructions then this
1405 // loop may not be split safely.
1406 if (!safeExitingBlock(SD, ExitCondition->getParent()))
1407 return false;
1408
Devang Patela8644e32007-08-22 19:33:29 +00001409 // After loop is cloned there are two loops.
1410 //
1411 // First loop, referred as ALoop, executes first part of loop's iteration
1412 // space split. Second loop, referred as BLoop, executes remaining
1413 // part of loop's iteration space.
1414 //
1415 // ALoop's exit edge enters BLoop's header through a forwarding block which
1416 // acts as a BLoop's preheader.
Devang Patel4a69da92007-08-25 00:56:38 +00001417 BasicBlock *Preheader = L->getLoopPreheader();
Devang Pateldc523952007-08-22 18:27:01 +00001418
Devang Patel4a69da92007-08-25 00:56:38 +00001419 // Calculate ALoop induction variable's new exiting value and
1420 // BLoop induction variable's new starting value.
1421 calculateLoopBounds(SD);
Devang Patel423c8b22007-08-10 18:07:13 +00001422
Devang Patela8644e32007-08-22 19:33:29 +00001423 //[*] Clone loop.
Devang Patel98147a32007-08-12 07:02:51 +00001424 DenseMap<const Value *, Value *> ValueMap;
Devang Patela8644e32007-08-22 19:33:29 +00001425 Loop *BLoop = CloneLoop(L, LPM, LI, ValueMap, this);
Devang Pateld79faee2007-08-25 02:39:24 +00001426 Loop *ALoop = L;
Devang Patela8644e32007-08-22 19:33:29 +00001427 BasicBlock *B_Header = BLoop->getHeader();
Devang Patel98147a32007-08-12 07:02:51 +00001428
Devang Patela8644e32007-08-22 19:33:29 +00001429 //[*] ALoop's exiting edge BLoop's header.
1430 // ALoop's original exit block becomes BLoop's exit block.
1431 PHINode *B_IndVar = cast<PHINode>(ValueMap[IndVar]);
1432 BasicBlock *A_ExitingBlock = ExitCondition->getParent();
1433 BranchInst *A_ExitInsn =
1434 dyn_cast<BranchInst>(A_ExitingBlock->getTerminator());
1435 assert (A_ExitInsn && "Unable to find suitable loop exit branch");
1436 BasicBlock *B_ExitBlock = A_ExitInsn->getSuccessor(1);
1437 if (L->contains(B_ExitBlock)) {
1438 B_ExitBlock = A_ExitInsn->getSuccessor(0);
1439 A_ExitInsn->setSuccessor(0, B_Header);
Devang Patelada054a2007-08-14 01:30:57 +00001440 } else
Devang Patela8644e32007-08-22 19:33:29 +00001441 A_ExitInsn->setSuccessor(1, B_Header);
1442
1443 //[*] Update ALoop's exit value using new exit value.
Devang Patel4a69da92007-08-25 00:56:38 +00001444 ExitCondition->setOperand(ExitValueNum, SD.A_ExitValue);
Devang Patel0b8e02b2007-08-21 21:12:02 +00001445
Devang Patela8644e32007-08-22 19:33:29 +00001446 // [*] Update BLoop's header phi nodes. Remove incoming PHINode's from
1447 // original loop's preheader. Add incoming PHINode values from
1448 // ALoop's exiting block. Update BLoop header's domiantor info.
1449
Devang Patelada054a2007-08-14 01:30:57 +00001450 // Collect inverse map of Header PHINodes.
1451 DenseMap<Value *, Value *> InverseMap;
1452 for (BasicBlock::iterator BI = L->getHeader()->begin(),
1453 BE = L->getHeader()->end(); BI != BE; ++BI) {
1454 if (PHINode *PN = dyn_cast<PHINode>(BI)) {
1455 PHINode *PNClone = cast<PHINode>(ValueMap[PN]);
1456 InverseMap[PNClone] = PN;
1457 } else
1458 break;
1459 }
Devang Patel4a69da92007-08-25 00:56:38 +00001460
Devang Patela8644e32007-08-22 19:33:29 +00001461 for (BasicBlock::iterator BI = B_Header->begin(), BE = B_Header->end();
Devang Patel98147a32007-08-12 07:02:51 +00001462 BI != BE; ++BI) {
1463 if (PHINode *PN = dyn_cast<PHINode>(BI)) {
Devang Patela8644e32007-08-22 19:33:29 +00001464 // Remove incoming value from original preheader.
1465 PN->removeIncomingValue(Preheader);
1466
1467 // Add incoming value from A_ExitingBlock.
1468 if (PN == B_IndVar)
Devang Patel4a69da92007-08-25 00:56:38 +00001469 PN->addIncoming(SD.B_StartValue, A_ExitingBlock);
Devang Patelada054a2007-08-14 01:30:57 +00001470 else {
1471 PHINode *OrigPN = cast<PHINode>(InverseMap[PN]);
Devang Patel9b03daa2008-02-14 23:18:47 +00001472 Value *V2 = NULL;
1473 // If loop header is also loop exiting block then
1474 // OrigPN is incoming value for B loop header.
1475 if (A_ExitingBlock == L->getHeader())
1476 V2 = OrigPN;
1477 else
1478 V2 = OrigPN->getIncomingValueForBlock(A_ExitingBlock);
Devang Patela8644e32007-08-22 19:33:29 +00001479 PN->addIncoming(V2, A_ExitingBlock);
Devang Patelada054a2007-08-14 01:30:57 +00001480 }
1481 } else
Devang Patel98147a32007-08-12 07:02:51 +00001482 break;
1483 }
Devang Patela8644e32007-08-22 19:33:29 +00001484 DT->changeImmediateDominator(B_Header, A_ExitingBlock);
1485 DF->changeImmediateDominator(B_Header, A_ExitingBlock, DT);
Devang Patel0b8e02b2007-08-21 21:12:02 +00001486
Devang Patela8644e32007-08-22 19:33:29 +00001487 // [*] Update BLoop's exit block. Its new predecessor is BLoop's exit
1488 // block. Remove incoming PHINode values from ALoop's exiting block.
1489 // Add new incoming values from BLoop's incoming exiting value.
1490 // Update BLoop exit block's dominator info..
1491 BasicBlock *B_ExitingBlock = cast<BasicBlock>(ValueMap[A_ExitingBlock]);
1492 for (BasicBlock::iterator BI = B_ExitBlock->begin(), BE = B_ExitBlock->end();
Devang Patelada054a2007-08-14 01:30:57 +00001493 BI != BE; ++BI) {
1494 if (PHINode *PN = dyn_cast<PHINode>(BI)) {
Devang Patela8644e32007-08-22 19:33:29 +00001495 PN->addIncoming(ValueMap[PN->getIncomingValueForBlock(A_ExitingBlock)],
1496 B_ExitingBlock);
1497 PN->removeIncomingValue(A_ExitingBlock);
Devang Patelada054a2007-08-14 01:30:57 +00001498 } else
1499 break;
1500 }
Devang Patel98147a32007-08-12 07:02:51 +00001501
Devang Patela8644e32007-08-22 19:33:29 +00001502 DT->changeImmediateDominator(B_ExitBlock, B_ExitingBlock);
1503 DF->changeImmediateDominator(B_ExitBlock, B_ExitingBlock, DT);
Devang Patelfc4c5f82007-08-13 22:13:24 +00001504
Devang Patela8644e32007-08-22 19:33:29 +00001505 //[*] Split ALoop's exit edge. This creates a new block which
1506 // serves two purposes. First one is to hold PHINode defnitions
1507 // to ensure that ALoop's LCSSA form. Second use it to act
1508 // as a preheader for BLoop.
1509 BasicBlock *A_ExitBlock = SplitEdge(A_ExitingBlock, B_Header, this);
Devang Patel423c8b22007-08-10 18:07:13 +00001510
Devang Patela8644e32007-08-22 19:33:29 +00001511 //[*] Preserve ALoop's LCSSA form. Create new forwarding PHINodes
1512 // in A_ExitBlock to redefine outgoing PHI definitions from ALoop.
1513 for(BasicBlock::iterator BI = B_Header->begin(), BE = B_Header->end();
Devang Patel60cbab42007-08-21 19:47:46 +00001514 BI != BE; ++BI) {
1515 if (PHINode *PN = dyn_cast<PHINode>(BI)) {
Devang Patela8644e32007-08-22 19:33:29 +00001516 Value *V1 = PN->getIncomingValueForBlock(A_ExitBlock);
Gabor Greif051a9502008-04-06 20:25:17 +00001517 PHINode *newPHI = PHINode::Create(PN->getType(), PN->getName());
Devang Patela8644e32007-08-22 19:33:29 +00001518 newPHI->addIncoming(V1, A_ExitingBlock);
1519 A_ExitBlock->getInstList().push_front(newPHI);
1520 PN->removeIncomingValue(A_ExitBlock);
1521 PN->addIncoming(newPHI, A_ExitBlock);
Devang Patel60cbab42007-08-21 19:47:46 +00001522 } else
1523 break;
1524 }
1525
Devang Patela8644e32007-08-22 19:33:29 +00001526 //[*] Eliminate split condition's inactive branch from ALoop.
1527 BasicBlock *A_SplitCondBlock = SD.SplitCondition->getParent();
1528 BranchInst *A_BR = cast<BranchInst>(A_SplitCondBlock->getTerminator());
Devang Patel4259fe32007-08-24 06:17:19 +00001529 BasicBlock *A_InactiveBranch = NULL;
1530 BasicBlock *A_ActiveBranch = NULL;
1531 if (SD.UseTrueBranchFirst) {
1532 A_ActiveBranch = A_BR->getSuccessor(0);
1533 A_InactiveBranch = A_BR->getSuccessor(1);
1534 } else {
1535 A_ActiveBranch = A_BR->getSuccessor(1);
1536 A_InactiveBranch = A_BR->getSuccessor(0);
1537 }
Devang Patel7097e9a2007-08-24 19:32:26 +00001538 A_BR->setUnconditionalDest(A_ActiveBranch);
Devang Patela8644e32007-08-22 19:33:29 +00001539 removeBlocks(A_InactiveBranch, L, A_ActiveBranch);
1540
1541 //[*] Eliminate split condition's inactive branch in from BLoop.
1542 BasicBlock *B_SplitCondBlock = cast<BasicBlock>(ValueMap[A_SplitCondBlock]);
1543 BranchInst *B_BR = cast<BranchInst>(B_SplitCondBlock->getTerminator());
Devang Patel4259fe32007-08-24 06:17:19 +00001544 BasicBlock *B_InactiveBranch = NULL;
1545 BasicBlock *B_ActiveBranch = NULL;
1546 if (SD.UseTrueBranchFirst) {
1547 B_ActiveBranch = B_BR->getSuccessor(1);
1548 B_InactiveBranch = B_BR->getSuccessor(0);
1549 } else {
1550 B_ActiveBranch = B_BR->getSuccessor(0);
1551 B_InactiveBranch = B_BR->getSuccessor(1);
1552 }
Devang Patel7097e9a2007-08-24 19:32:26 +00001553 B_BR->setUnconditionalDest(B_ActiveBranch);
Devang Patela8644e32007-08-22 19:33:29 +00001554 removeBlocks(B_InactiveBranch, BLoop, B_ActiveBranch);
1555
Devang Pateld79faee2007-08-25 02:39:24 +00001556 BasicBlock *A_Header = L->getHeader();
1557 if (A_ExitingBlock == A_Header)
1558 return true;
1559
1560 //[*] Move exit condition into split condition block to avoid
1561 // executing dead loop iteration.
1562 ICmpInst *B_ExitCondition = cast<ICmpInst>(ValueMap[ExitCondition]);
1563 Instruction *B_IndVarIncrement = cast<Instruction>(ValueMap[IndVarIncrement]);
1564 ICmpInst *B_SplitCondition = cast<ICmpInst>(ValueMap[SD.SplitCondition]);
1565
1566 moveExitCondition(A_SplitCondBlock, A_ActiveBranch, A_ExitBlock, ExitCondition,
Devang Patel4f12c5f2007-09-11 00:12:56 +00001567 cast<ICmpInst>(SD.SplitCondition), IndVar, IndVarIncrement,
1568 ALoop);
Devang Pateld79faee2007-08-25 02:39:24 +00001569
1570 moveExitCondition(B_SplitCondBlock, B_ActiveBranch, B_ExitBlock, B_ExitCondition,
1571 B_SplitCondition, B_IndVar, B_IndVarIncrement, BLoop);
1572
Devang Patel98147a32007-08-12 07:02:51 +00001573 return true;
Devang Patelfee76bd2007-08-07 00:25:56 +00001574}
Devang Pateld79faee2007-08-25 02:39:24 +00001575
1576// moveExitCondition - Move exit condition EC into split condition block CondBB.
1577void LoopIndexSplit::moveExitCondition(BasicBlock *CondBB, BasicBlock *ActiveBB,
1578 BasicBlock *ExitBB, ICmpInst *EC, ICmpInst *SC,
1579 PHINode *IV, Instruction *IVAdd, Loop *LP) {
1580
1581 BasicBlock *ExitingBB = EC->getParent();
1582 Instruction *CurrentBR = CondBB->getTerminator();
1583
1584 // Move exit condition into split condition block.
1585 EC->moveBefore(CurrentBR);
1586 EC->setOperand(ExitValueNum == 0 ? 1 : 0, IV);
1587
1588 // Move exiting block's branch into split condition block. Update its branch
1589 // destination.
1590 BranchInst *ExitingBR = cast<BranchInst>(ExitingBB->getTerminator());
1591 ExitingBR->moveBefore(CurrentBR);
Devang Patel23067df2008-02-13 22:06:36 +00001592 BasicBlock *OrigDestBB = NULL;
1593 if (ExitingBR->getSuccessor(0) == ExitBB) {
1594 OrigDestBB = ExitingBR->getSuccessor(1);
Devang Pateld79faee2007-08-25 02:39:24 +00001595 ExitingBR->setSuccessor(1, ActiveBB);
Devang Patel23067df2008-02-13 22:06:36 +00001596 }
1597 else {
1598 OrigDestBB = ExitingBR->getSuccessor(0);
Devang Pateld79faee2007-08-25 02:39:24 +00001599 ExitingBR->setSuccessor(0, ActiveBB);
Devang Patel23067df2008-02-13 22:06:36 +00001600 }
Devang Pateld79faee2007-08-25 02:39:24 +00001601
1602 // Remove split condition and current split condition branch.
1603 SC->eraseFromParent();
1604 CurrentBR->eraseFromParent();
1605
Devang Patel23067df2008-02-13 22:06:36 +00001606 // Connect exiting block to original destination.
Gabor Greif051a9502008-04-06 20:25:17 +00001607 BranchInst::Create(OrigDestBB, ExitingBB);
Devang Pateld79faee2007-08-25 02:39:24 +00001608
1609 // Update PHINodes
Devang Patelea069062008-02-13 22:23:07 +00001610 updatePHINodes(ExitBB, ExitingBB, CondBB, IV, IVAdd, LP);
Devang Pateld79faee2007-08-25 02:39:24 +00001611
1612 // Fix dominator info.
1613 // ExitBB is now dominated by CondBB
1614 DT->changeImmediateDominator(ExitBB, CondBB);
1615 DF->changeImmediateDominator(ExitBB, CondBB, DT);
1616
1617 // Basicblocks dominated by ActiveBB may have ExitingBB or
1618 // a basic block outside the loop in their DF list. If so,
1619 // replace it with CondBB.
1620 DomTreeNode *Node = DT->getNode(ActiveBB);
1621 for (df_iterator<DomTreeNode *> DI = df_begin(Node), DE = df_end(Node);
1622 DI != DE; ++DI) {
1623 BasicBlock *BB = DI->getBlock();
1624 DominanceFrontier::iterator BBDF = DF->find(BB);
1625 DominanceFrontier::DomSetType::iterator DomSetI = BBDF->second.begin();
1626 DominanceFrontier::DomSetType::iterator DomSetE = BBDF->second.end();
1627 while (DomSetI != DomSetE) {
1628 DominanceFrontier::DomSetType::iterator CurrentItr = DomSetI;
1629 ++DomSetI;
1630 BasicBlock *DFBB = *CurrentItr;
1631 if (DFBB == ExitingBB || !L->contains(DFBB)) {
1632 BBDF->second.erase(DFBB);
1633 BBDF->second.insert(CondBB);
1634 }
1635 }
1636 }
1637}
1638
1639/// updatePHINodes - CFG has been changed.
1640/// Before
1641/// - ExitBB's single predecessor was Latch
1642/// - Latch's second successor was Header
1643/// Now
Devang Patel82ada542008-02-08 22:49:13 +00001644/// - ExitBB's single predecessor is Header
1645/// - Latch's one and only successor is Header
Devang Pateld79faee2007-08-25 02:39:24 +00001646///
1647/// Update ExitBB PHINodes' to reflect this change.
1648void LoopIndexSplit::updatePHINodes(BasicBlock *ExitBB, BasicBlock *Latch,
1649 BasicBlock *Header,
Devang Patelea069062008-02-13 22:23:07 +00001650 PHINode *IV, Instruction *IVIncrement,
1651 Loop *LP) {
Devang Pateld79faee2007-08-25 02:39:24 +00001652
1653 for (BasicBlock::iterator BI = ExitBB->begin(), BE = ExitBB->end();
Devang Patel4a3c0ac2008-03-27 17:32:46 +00001654 BI != BE; ) {
Devang Pateld79faee2007-08-25 02:39:24 +00001655 PHINode *PN = dyn_cast<PHINode>(BI);
Devang Patel4a3c0ac2008-03-27 17:32:46 +00001656 ++BI;
Devang Pateld79faee2007-08-25 02:39:24 +00001657 if (!PN)
1658 break;
1659
1660 Value *V = PN->getIncomingValueForBlock(Latch);
1661 if (PHINode *PHV = dyn_cast<PHINode>(V)) {
Devang Patel82ada542008-02-08 22:49:13 +00001662 // PHV is in Latch. PHV has one use is in ExitBB PHINode. And one use
1663 // in Header which is new incoming value for PN.
Devang Pateld79faee2007-08-25 02:39:24 +00001664 Value *NewV = NULL;
1665 for (Value::use_iterator UI = PHV->use_begin(), E = PHV->use_end();
Devang Patel82ada542008-02-08 22:49:13 +00001666 UI != E; ++UI)
1667 if (PHINode *U = dyn_cast<PHINode>(*UI))
Devang Patelea069062008-02-13 22:23:07 +00001668 if (LP->contains(U->getParent())) {
Devang Patel82ada542008-02-08 22:49:13 +00001669 NewV = U;
1670 break;
1671 }
1672
Devang Patel60a12902008-03-24 20:16:14 +00001673 // Add incoming value from header only if PN has any use inside the loop.
1674 if (NewV)
1675 PN->addIncoming(NewV, Header);
Devang Pateld79faee2007-08-25 02:39:24 +00001676
1677 } else if (Instruction *PHI = dyn_cast<Instruction>(V)) {
1678 // If this instruction is IVIncrement then IV is new incoming value
1679 // from header otherwise this instruction must be incoming value from
1680 // header because loop is in LCSSA form.
1681 if (PHI == IVIncrement)
1682 PN->addIncoming(IV, Header);
1683 else
1684 PN->addIncoming(V, Header);
1685 } else
1686 // Otherwise this is an incoming value from header because loop is in
1687 // LCSSA form.
1688 PN->addIncoming(V, Header);
1689
1690 // Remove incoming value from Latch.
1691 PN->removeIncomingValue(Latch);
1692 }
1693}