blob: 6b69ecefef038f9564912e3ef27fbe0728a9187a [file] [log] [blame]
Devang Patelbc5fe632007-08-07 00:25:56 +00001//===- LoopIndexSplit.cpp - Loop Index Splitting Pass ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Devang Patel and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements Loop Index Splitting Pass.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "loop-index-split"
15
Devang Patelbc5fe632007-08-07 00:25:56 +000016#include "llvm/Transforms/Scalar.h"
17#include "llvm/Analysis/LoopPass.h"
18#include "llvm/Analysis/ScalarEvolutionExpander.h"
Devang Patel95fd7172007-08-08 21:39:47 +000019#include "llvm/Analysis/Dominators.h"
Devang Patel901f67e2007-08-10 18:07:13 +000020#include "llvm/Transforms/Utils/BasicBlockUtils.h"
21#include "llvm/Transforms/Utils/Cloning.h"
Devang Patelbc5fe632007-08-07 00:25:56 +000022#include "llvm/Support/Compiler.h"
Devang Patelf4277122007-08-15 03:31:47 +000023#include "llvm/ADT/DepthFirstIterator.h"
Devang Patelbc5fe632007-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 Patel901f67e2007-08-10 18:07:13 +000046 AU.addRequired<LoopInfo>();
Devang Patelbc5fe632007-08-07 00:25:56 +000047 AU.addPreserved<LoopInfo>();
48 AU.addRequiredID(LoopSimplifyID);
49 AU.addPreservedID(LoopSimplifyID);
Devang Patel0aaeb172007-08-08 22:25:28 +000050 AU.addRequired<DominatorTree>();
Devang Patelf4277122007-08-15 03:31:47 +000051 AU.addRequired<DominanceFrontier>();
Devang Patel95fd7172007-08-08 21:39:47 +000052 AU.addPreserved<DominatorTree>();
53 AU.addPreserved<DominanceFrontier>();
Devang Patelbc5fe632007-08-07 00:25:56 +000054 }
55
56 private:
Devang Patelc8dadbf2007-08-08 21:02:17 +000057
58 class SplitInfo {
59 public:
Devang Patel61571ca2007-08-10 00:33:50 +000060 SplitInfo() : SplitValue(NULL), SplitCondition(NULL) {}
Devang Patel2545f7b2007-08-09 01:39:01 +000061
Devang Patelc8dadbf2007-08-08 21:02:17 +000062 // Induction variable's range is split at this value.
63 Value *SplitValue;
64
Devang Patelc8dadbf2007-08-08 21:02:17 +000065 // This compare instruction compares IndVar against SplitValue.
66 ICmpInst *SplitCondition;
67
Devang Patel31696332007-08-08 21:18:27 +000068 // Clear split info.
69 void clear() {
Devang Patel31696332007-08-08 21:18:27 +000070 SplitValue = NULL;
Devang Patel31696332007-08-08 21:18:27 +000071 SplitCondition = NULL;
Devang Patel31696332007-08-08 21:18:27 +000072 }
Devang Patel2545f7b2007-08-09 01:39:01 +000073
Devang Patelc8dadbf2007-08-08 21:02:17 +000074 };
Devang Patel61571ca2007-08-10 00:33:50 +000075
Devang Patelc8dadbf2007-08-08 21:02:17 +000076 private:
Devang Patelbc5fe632007-08-07 00:25:56 +000077 /// Find condition inside a loop that is suitable candidate for index split.
78 void findSplitCondition();
79
Devang Patel61571ca2007-08-10 00:33:50 +000080 /// Find loop's exit condition.
81 void findLoopConditionals();
82
83 /// Return induction variable associated with value V.
84 void findIndVar(Value *V, Loop *L);
85
Devang Patelbc5fe632007-08-07 00:25:56 +000086 /// processOneIterationLoop - Current loop L contains compare instruction
87 /// that compares induction variable, IndVar, agains loop invariant. If
88 /// entire (i.e. meaningful) loop body is dominated by this compare
89 /// instruction then loop body is executed only for one iteration. In
90 /// such case eliminate loop structure surrounding this loop body. For
Devang Patel901f67e2007-08-10 18:07:13 +000091 bool processOneIterationLoop(SplitInfo &SD);
Devang Patelbc5fe632007-08-07 00:25:56 +000092
Devang Patel0aaeb172007-08-08 22:25:28 +000093 /// If loop header includes loop variant instruction operands then
94 /// this loop may not be eliminated.
Devang Patelc8dadbf2007-08-08 21:02:17 +000095 bool safeHeader(SplitInfo &SD, BasicBlock *BB);
Devang Patelbc5fe632007-08-07 00:25:56 +000096
Devang Patel9263fc32007-08-20 23:51:18 +000097 /// If Exiting block includes loop variant instructions then this
Devang Patel0aaeb172007-08-08 22:25:28 +000098 /// loop may not be eliminated.
Devang Patel9263fc32007-08-20 23:51:18 +000099 bool safeExitingBlock(SplitInfo &SD, BasicBlock *BB);
Devang Patelbc5fe632007-08-07 00:25:56 +0000100
Devang Patel60a94c72007-08-14 18:35:57 +0000101 /// removeBlocks - Remove basic block DeadBB and all blocks dominated by DeadBB.
102 /// This routine is used to remove split condition's dead branch, dominated by
103 /// DeadBB. LiveBB dominates split conidition's other branch.
104 void removeBlocks(BasicBlock *DeadBB, Loop *LP, BasicBlock *LiveBB);
Devang Patel6a2d6ef2007-08-12 07:02:51 +0000105
Devang Pateld662ace2007-08-22 18:27:01 +0000106 /// safeSplitCondition - Return true if it is possible to
107 /// split loop using given split condition.
108 bool safeSplitCondition(SplitInfo &SD);
109
110 /// splitLoop - Split current loop L in two loops using split information
111 /// SD. Update dominator information. Maintain LCSSA form.
Devang Patelc8dadbf2007-08-08 21:02:17 +0000112 bool splitLoop(SplitInfo &SD);
Devang Patelbc5fe632007-08-07 00:25:56 +0000113
Devang Patel61571ca2007-08-10 00:33:50 +0000114 void initialize() {
115 IndVar = NULL;
116 IndVarIncrement = NULL;
117 ExitCondition = NULL;
Devang Patel6a2d6ef2007-08-12 07:02:51 +0000118 StartValue = NULL;
119 ExitValueNum = 0;
120 SplitData.clear();
Devang Patel61571ca2007-08-10 00:33:50 +0000121 }
122
Devang Patelbc5fe632007-08-07 00:25:56 +0000123 private:
124
125 // Current Loop.
126 Loop *L;
Devang Patel901f67e2007-08-10 18:07:13 +0000127 LPPassManager *LPM;
128 LoopInfo *LI;
Devang Patelbc5fe632007-08-07 00:25:56 +0000129 ScalarEvolution *SE;
Devang Patel0aaeb172007-08-08 22:25:28 +0000130 DominatorTree *DT;
Devang Patelb7639612007-08-13 22:13:24 +0000131 DominanceFrontier *DF;
Devang Patelc8dadbf2007-08-08 21:02:17 +0000132 SmallVector<SplitInfo, 4> SplitData;
Devang Patel61571ca2007-08-10 00:33:50 +0000133
134 // Induction variable whose range is being split by this transformation.
135 PHINode *IndVar;
136 Instruction *IndVarIncrement;
137
138 // Loop exit condition.
139 ICmpInst *ExitCondition;
140
141 // Induction variable's initial value.
142 Value *StartValue;
143
Devang Patel6a2d6ef2007-08-12 07:02:51 +0000144 // Induction variable's final loop exit value operand number in exit condition..
145 unsigned ExitValueNum;
Devang Patelbc5fe632007-08-07 00:25:56 +0000146 };
147
148 char LoopIndexSplit::ID = 0;
149 RegisterPass<LoopIndexSplit> X ("loop-index-split", "Index Split Loops");
150}
151
152LoopPass *llvm::createLoopIndexSplitPass() {
153 return new LoopIndexSplit();
154}
155
156// Index split Loop L. Return true if loop is split.
Devang Patel901f67e2007-08-10 18:07:13 +0000157bool LoopIndexSplit::runOnLoop(Loop *IncomingLoop, LPPassManager &LPM_Ref) {
Devang Patelbc5fe632007-08-07 00:25:56 +0000158 bool Changed = false;
159 L = IncomingLoop;
Devang Patel901f67e2007-08-10 18:07:13 +0000160 LPM = &LPM_Ref;
Devang Patelc8dadbf2007-08-08 21:02:17 +0000161
Devang Patel81fcdfb2007-08-15 02:14:55 +0000162 // FIXME - Nested loops make dominator info updates tricky.
Devang Patel79276b32007-08-14 23:53:57 +0000163 if (!L->getSubLoops().empty())
164 return false;
165
Devang Patelbc5fe632007-08-07 00:25:56 +0000166 SE = &getAnalysis<ScalarEvolution>();
Devang Patel0aaeb172007-08-08 22:25:28 +0000167 DT = &getAnalysis<DominatorTree>();
Devang Patel901f67e2007-08-10 18:07:13 +0000168 LI = &getAnalysis<LoopInfo>();
Devang Patel2190f172007-08-15 03:34:53 +0000169 DF = &getAnalysis<DominanceFrontier>();
Devang Patelbc5fe632007-08-07 00:25:56 +0000170
Devang Patel61571ca2007-08-10 00:33:50 +0000171 initialize();
172
173 findLoopConditionals();
174
175 if (!ExitCondition)
176 return false;
177
Devang Patelbc5fe632007-08-07 00:25:56 +0000178 findSplitCondition();
179
Devang Patelc8dadbf2007-08-08 21:02:17 +0000180 if (SplitData.empty())
Devang Patelbc5fe632007-08-07 00:25:56 +0000181 return false;
182
Devang Patelc8dadbf2007-08-08 21:02:17 +0000183 // First see if it is possible to eliminate loop itself or not.
184 for (SmallVector<SplitInfo, 4>::iterator SI = SplitData.begin(),
Devang Patel49fbf5a2007-08-20 20:24:15 +0000185 E = SplitData.end(); SI != E;) {
Devang Patelc8dadbf2007-08-08 21:02:17 +0000186 SplitInfo &SD = *SI;
187 if (SD.SplitCondition->getPredicate() == ICmpInst::ICMP_EQ) {
Devang Patel901f67e2007-08-10 18:07:13 +0000188 Changed = processOneIterationLoop(SD);
Devang Patelc8dadbf2007-08-08 21:02:17 +0000189 if (Changed) {
190 ++NumIndexSplit;
191 // If is loop is eliminated then nothing else to do here.
192 return Changed;
Devang Patel49fbf5a2007-08-20 20:24:15 +0000193 } else {
194 SmallVector<SplitInfo, 4>::iterator Delete_SI = SI;
195 ++SI;
196 SplitData.erase(Delete_SI);
Devang Patelc8dadbf2007-08-08 21:02:17 +0000197 }
Devang Patel49fbf5a2007-08-20 20:24:15 +0000198 } else
199 ++SI;
Devang Patelc8dadbf2007-08-08 21:02:17 +0000200 }
201
Devang Patel0aaeb172007-08-08 22:25:28 +0000202 // Split most profitiable condition.
Devang Patel33085702007-08-24 05:21:13 +0000203 // FIXME : Implement cost analysis.
204 unsigned MostProfitableSDIndex = 0;
205 Changed = splitLoop(SplitData[MostProfitableSDIndex]);
Devang Patel0aaeb172007-08-08 22:25:28 +0000206
Devang Patelbc5fe632007-08-07 00:25:56 +0000207 if (Changed)
208 ++NumIndexSplit;
Devang Patelc8dadbf2007-08-08 21:02:17 +0000209
Devang Patelbc5fe632007-08-07 00:25:56 +0000210 return Changed;
211}
212
Devang Patel2545f7b2007-08-09 01:39:01 +0000213/// Return true if V is a induction variable or induction variable's
214/// increment for loop L.
Devang Patel61571ca2007-08-10 00:33:50 +0000215void LoopIndexSplit::findIndVar(Value *V, Loop *L) {
Devang Patel2545f7b2007-08-09 01:39:01 +0000216
217 Instruction *I = dyn_cast<Instruction>(V);
218 if (!I)
Devang Patel61571ca2007-08-10 00:33:50 +0000219 return;
Devang Patel2545f7b2007-08-09 01:39:01 +0000220
221 // Check if I is a phi node from loop header or not.
222 if (PHINode *PN = dyn_cast<PHINode>(V)) {
223 if (PN->getParent() == L->getHeader()) {
Devang Patel61571ca2007-08-10 00:33:50 +0000224 IndVar = PN;
225 return;
Devang Patel2545f7b2007-08-09 01:39:01 +0000226 }
227 }
228
229 // Check if I is a add instruction whose one operand is
230 // phi node from loop header and second operand is constant.
231 if (I->getOpcode() != Instruction::Add)
Devang Patel61571ca2007-08-10 00:33:50 +0000232 return;
Devang Patel2545f7b2007-08-09 01:39:01 +0000233
234 Value *Op0 = I->getOperand(0);
235 Value *Op1 = I->getOperand(1);
236
237 if (PHINode *PN = dyn_cast<PHINode>(Op0)) {
238 if (PN->getParent() == L->getHeader()
239 && isa<ConstantInt>(Op1)) {
240 IndVar = PN;
241 IndVarIncrement = I;
Devang Patel61571ca2007-08-10 00:33:50 +0000242 return;
Devang Patel2545f7b2007-08-09 01:39:01 +0000243 }
244 }
245
246 if (PHINode *PN = dyn_cast<PHINode>(Op1)) {
247 if (PN->getParent() == L->getHeader()
248 && isa<ConstantInt>(Op0)) {
249 IndVar = PN;
250 IndVarIncrement = I;
Devang Patel61571ca2007-08-10 00:33:50 +0000251 return;
Devang Patel2545f7b2007-08-09 01:39:01 +0000252 }
253 }
254
Devang Patel61571ca2007-08-10 00:33:50 +0000255 return;
256}
257
258// Find loop's exit condition and associated induction variable.
259void LoopIndexSplit::findLoopConditionals() {
260
Devang Patel9263fc32007-08-20 23:51:18 +0000261 BasicBlock *ExitingBlock = NULL;
Devang Patel61571ca2007-08-10 00:33:50 +0000262
263 for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
264 I != E; ++I) {
265 BasicBlock *BB = *I;
266 if (!L->isLoopExit(BB))
267 continue;
Devang Patel9263fc32007-08-20 23:51:18 +0000268 if (ExitingBlock)
Devang Patel61571ca2007-08-10 00:33:50 +0000269 return;
Devang Patel9263fc32007-08-20 23:51:18 +0000270 ExitingBlock = BB;
Devang Patel61571ca2007-08-10 00:33:50 +0000271 }
272
Devang Patel9263fc32007-08-20 23:51:18 +0000273 if (!ExitingBlock)
Devang Patel61571ca2007-08-10 00:33:50 +0000274 return;
Devang Patel4e2075d2007-08-24 05:36:56 +0000275
276 // If exiting block is neither loop header nor loop latch then this loop is
277 // not suitable.
278 if (ExitingBlock != L->getHeader() && ExitingBlock != L->getLoopLatch())
279 return;
280
Devang Patel61571ca2007-08-10 00:33:50 +0000281 // If exit block's terminator is conditional branch inst then we have found
282 // exit condition.
Devang Patel9263fc32007-08-20 23:51:18 +0000283 BranchInst *BR = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
Devang Patel61571ca2007-08-10 00:33:50 +0000284 if (!BR || BR->isUnconditional())
285 return;
286
287 ICmpInst *CI = dyn_cast<ICmpInst>(BR->getCondition());
288 if (!CI)
289 return;
290
291 ExitCondition = CI;
292
293 // Exit condition's one operand is loop invariant exit value and second
294 // operand is SCEVAddRecExpr based on induction variable.
295 Value *V0 = CI->getOperand(0);
296 Value *V1 = CI->getOperand(1);
297
298 SCEVHandle SH0 = SE->getSCEV(V0);
299 SCEVHandle SH1 = SE->getSCEV(V1);
300
301 if (SH0->isLoopInvariant(L) && isa<SCEVAddRecExpr>(SH1)) {
Devang Patel6a2d6ef2007-08-12 07:02:51 +0000302 ExitValueNum = 0;
Devang Patel61571ca2007-08-10 00:33:50 +0000303 findIndVar(V1, L);
304 }
305 else if (SH1->isLoopInvariant(L) && isa<SCEVAddRecExpr>(SH0)) {
Devang Patel6a2d6ef2007-08-12 07:02:51 +0000306 ExitValueNum = 1;
Devang Patel61571ca2007-08-10 00:33:50 +0000307 findIndVar(V0, L);
308 }
309
Devang Patel6a2d6ef2007-08-12 07:02:51 +0000310 if (!IndVar)
Devang Patel61571ca2007-08-10 00:33:50 +0000311 ExitCondition = NULL;
312 else if (IndVar) {
313 BasicBlock *Preheader = L->getLoopPreheader();
314 StartValue = IndVar->getIncomingValueForBlock(Preheader);
315 }
Devang Patel2545f7b2007-08-09 01:39:01 +0000316}
317
Devang Patelbc5fe632007-08-07 00:25:56 +0000318/// Find condition inside a loop that is suitable candidate for index split.
319void LoopIndexSplit::findSplitCondition() {
320
Devang Patelc8dadbf2007-08-08 21:02:17 +0000321 SplitInfo SD;
Devang Patel2545f7b2007-08-09 01:39:01 +0000322 // Check all basic block's terminators.
Devang Patelbc5fe632007-08-07 00:25:56 +0000323
Devang Patel2545f7b2007-08-09 01:39:01 +0000324 for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
325 I != E; ++I) {
326 BasicBlock *BB = *I;
Devang Patelbc5fe632007-08-07 00:25:56 +0000327
Devang Patel2545f7b2007-08-09 01:39:01 +0000328 // If this basic block does not terminate in a conditional branch
329 // then terminator is not a suitable split condition.
330 BranchInst *BR = dyn_cast<BranchInst>(BB->getTerminator());
331 if (!BR)
332 continue;
333
334 if (BR->isUnconditional())
Devang Patelbc5fe632007-08-07 00:25:56 +0000335 continue;
336
Devang Patel2545f7b2007-08-09 01:39:01 +0000337 ICmpInst *CI = dyn_cast<ICmpInst>(BR->getCondition());
Devang Patel61571ca2007-08-10 00:33:50 +0000338 if (!CI || CI == ExitCondition)
Devang Patel2545f7b2007-08-09 01:39:01 +0000339 return;
Devang Patelbc5fe632007-08-07 00:25:56 +0000340
Devang Patel2545f7b2007-08-09 01:39:01 +0000341 // If one operand is loop invariant and second operand is SCEVAddRecExpr
342 // based on induction variable then CI is a candidate split condition.
343 Value *V0 = CI->getOperand(0);
344 Value *V1 = CI->getOperand(1);
345
346 SCEVHandle SH0 = SE->getSCEV(V0);
347 SCEVHandle SH1 = SE->getSCEV(V1);
348
349 if (SH0->isLoopInvariant(L) && isa<SCEVAddRecExpr>(SH1)) {
350 SD.SplitValue = V0;
351 SD.SplitCondition = CI;
Devang Patel61571ca2007-08-10 00:33:50 +0000352 if (PHINode *PN = dyn_cast<PHINode>(V1)) {
353 if (PN == IndVar)
354 SplitData.push_back(SD);
355 }
356 else if (Instruction *Insn = dyn_cast<Instruction>(V1)) {
357 if (IndVarIncrement && IndVarIncrement == Insn)
358 SplitData.push_back(SD);
359 }
Devang Patelbc5fe632007-08-07 00:25:56 +0000360 }
Devang Patel2545f7b2007-08-09 01:39:01 +0000361 else if (SH1->isLoopInvariant(L) && isa<SCEVAddRecExpr>(SH0)) {
362 SD.SplitValue = V1;
363 SD.SplitCondition = CI;
Devang Patel61571ca2007-08-10 00:33:50 +0000364 if (PHINode *PN = dyn_cast<PHINode>(V0)) {
365 if (PN == IndVar)
366 SplitData.push_back(SD);
367 }
368 else if (Instruction *Insn = dyn_cast<Instruction>(V0)) {
369 if (IndVarIncrement && IndVarIncrement == Insn)
370 SplitData.push_back(SD);
371 }
Devang Patelbc5fe632007-08-07 00:25:56 +0000372 }
373 }
374}
375
376/// processOneIterationLoop - Current loop L contains compare instruction
377/// that compares induction variable, IndVar, against loop invariant. If
378/// entire (i.e. meaningful) loop body is dominated by this compare
379/// instruction then loop body is executed only once. In such case eliminate
380/// loop structure surrounding this loop body. For example,
381/// for (int i = start; i < end; ++i) {
382/// if ( i == somevalue) {
383/// loop_body
384/// }
385/// }
386/// can be transformed into
387/// if (somevalue >= start && somevalue < end) {
388/// i = somevalue;
389/// loop_body
390/// }
Devang Patel901f67e2007-08-10 18:07:13 +0000391bool LoopIndexSplit::processOneIterationLoop(SplitInfo &SD) {
Devang Patelbc5fe632007-08-07 00:25:56 +0000392
393 BasicBlock *Header = L->getHeader();
394
395 // First of all, check if SplitCondition dominates entire loop body
396 // or not.
397
398 // If SplitCondition is not in loop header then this loop is not suitable
399 // for this transformation.
Devang Patelc8dadbf2007-08-08 21:02:17 +0000400 if (SD.SplitCondition->getParent() != Header)
Devang Patelbc5fe632007-08-07 00:25:56 +0000401 return false;
402
Devang Patelbc5fe632007-08-07 00:25:56 +0000403 // If loop header includes loop variant instruction operands then
404 // this loop may not be eliminated.
Devang Patelc8dadbf2007-08-08 21:02:17 +0000405 if (!safeHeader(SD, Header))
Devang Patelbc5fe632007-08-07 00:25:56 +0000406 return false;
407
Devang Patel9263fc32007-08-20 23:51:18 +0000408 // If Exiting block includes loop variant instructions then this
Devang Patelbc5fe632007-08-07 00:25:56 +0000409 // loop may not be eliminated.
Devang Patel9263fc32007-08-20 23:51:18 +0000410 if (!safeExitingBlock(SD, ExitCondition->getParent()))
Devang Patelbc5fe632007-08-07 00:25:56 +0000411 return false;
412
Devang Patel2bcb5012007-08-08 01:51:27 +0000413 // Update CFG.
414
Devang Patelc166b952007-08-20 20:49:01 +0000415 // Replace index variable with split value in loop body. Loop body is executed
416 // only when index variable is equal to split value.
417 IndVar->replaceAllUsesWith(SD.SplitValue);
418
419 // Remove Latch to Header edge.
Devang Patelbc5fe632007-08-07 00:25:56 +0000420 BasicBlock *Latch = L->getLoopLatch();
Devang Patel2bcb5012007-08-08 01:51:27 +0000421 BasicBlock *LatchSucc = NULL;
422 BranchInst *BR = dyn_cast<BranchInst>(Latch->getTerminator());
423 if (!BR)
424 return false;
425 Header->removePredecessor(Latch);
426 for (succ_iterator SI = succ_begin(Latch), E = succ_end(Latch);
427 SI != E; ++SI) {
428 if (Header != *SI)
429 LatchSucc = *SI;
430 }
431 BR->setUnconditionalDest(LatchSucc);
432
Devang Patelbc5fe632007-08-07 00:25:56 +0000433 Instruction *Terminator = Header->getTerminator();
Devang Patel59e0c062007-08-14 01:30:57 +0000434 Value *ExitValue = ExitCondition->getOperand(ExitValueNum);
Devang Patelbc5fe632007-08-07 00:25:56 +0000435
Devang Patelbc5fe632007-08-07 00:25:56 +0000436 // Replace split condition in header.
437 // Transform
438 // SplitCondition : icmp eq i32 IndVar, SplitValue
439 // into
440 // c1 = icmp uge i32 SplitValue, StartValue
441 // c2 = icmp ult i32 vSplitValue, ExitValue
442 // and i32 c1, c2
Devang Patel61571ca2007-08-10 00:33:50 +0000443 bool SignedPredicate = ExitCondition->isSignedPredicate();
Devang Patelbc5fe632007-08-07 00:25:56 +0000444 Instruction *C1 = new ICmpInst(SignedPredicate ?
445 ICmpInst::ICMP_SGE : ICmpInst::ICMP_UGE,
Devang Patelc8dadbf2007-08-08 21:02:17 +0000446 SD.SplitValue, StartValue, "lisplit",
447 Terminator);
Devang Patelbc5fe632007-08-07 00:25:56 +0000448 Instruction *C2 = new ICmpInst(SignedPredicate ?
449 ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
Devang Patel59e0c062007-08-14 01:30:57 +0000450 SD.SplitValue, ExitValue, "lisplit",
Devang Patelc8dadbf2007-08-08 21:02:17 +0000451 Terminator);
452 Instruction *NSplitCond = BinaryOperator::createAnd(C1, C2, "lisplit",
453 Terminator);
454 SD.SplitCondition->replaceAllUsesWith(NSplitCond);
455 SD.SplitCondition->eraseFromParent();
Devang Patelbc5fe632007-08-07 00:25:56 +0000456
Devang Patelbc5fe632007-08-07 00:25:56 +0000457 // Now, clear latch block. Remove instructions that are responsible
458 // to increment induction variable.
459 Instruction *LTerminator = Latch->getTerminator();
460 for (BasicBlock::iterator LB = Latch->begin(), LE = Latch->end();
461 LB != LE; ) {
462 Instruction *I = LB;
463 ++LB;
464 if (isa<PHINode>(I) || I == LTerminator)
465 continue;
466
Devang Patel59e0c062007-08-14 01:30:57 +0000467 if (I == IndVarIncrement)
468 I->replaceAllUsesWith(ExitValue);
469 else
470 I->replaceAllUsesWith(UndefValue::get(I->getType()));
Devang Patel0d75c292007-08-07 17:45:35 +0000471 I->eraseFromParent();
Devang Patelbc5fe632007-08-07 00:25:56 +0000472 }
473
Devang Patel901f67e2007-08-10 18:07:13 +0000474 LPM->deleteLoopFromQueue(L);
Devang Patel95fd7172007-08-08 21:39:47 +0000475
476 // Update Dominator Info.
477 // Only CFG change done is to remove Latch to Header edge. This
478 // does not change dominator tree because Latch did not dominate
479 // Header.
Devang Patelb7639612007-08-13 22:13:24 +0000480 if (DF) {
Devang Patel95fd7172007-08-08 21:39:47 +0000481 DominanceFrontier::iterator HeaderDF = DF->find(Header);
482 if (HeaderDF != DF->end())
483 DF->removeFromFrontier(HeaderDF, Header);
484
485 DominanceFrontier::iterator LatchDF = DF->find(Latch);
486 if (LatchDF != DF->end())
487 DF->removeFromFrontier(LatchDF, Header);
488 }
Devang Patelbc5fe632007-08-07 00:25:56 +0000489 return true;
490}
491
492// If loop header includes loop variant instruction operands then
493// this loop can not be eliminated. This is used by processOneIterationLoop().
Devang Patelc8dadbf2007-08-08 21:02:17 +0000494bool LoopIndexSplit::safeHeader(SplitInfo &SD, BasicBlock *Header) {
Devang Patelbc5fe632007-08-07 00:25:56 +0000495
496 Instruction *Terminator = Header->getTerminator();
497 for(BasicBlock::iterator BI = Header->begin(), BE = Header->end();
498 BI != BE; ++BI) {
499 Instruction *I = BI;
500
Devang Patel59e0c062007-08-14 01:30:57 +0000501 // PHI Nodes are OK.
Devang Patelbc5fe632007-08-07 00:25:56 +0000502 if (isa<PHINode>(I))
503 continue;
504
505 // SplitCondition itself is OK.
Devang Patelc8dadbf2007-08-08 21:02:17 +0000506 if (I == SD.SplitCondition)
Devang Patel2bcb5012007-08-08 01:51:27 +0000507 continue;
Devang Patelbc5fe632007-08-07 00:25:56 +0000508
Devang Patel2545f7b2007-08-09 01:39:01 +0000509 // Induction variable is OK.
Devang Patel61571ca2007-08-10 00:33:50 +0000510 if (I == IndVar)
Devang Patel2545f7b2007-08-09 01:39:01 +0000511 continue;
512
513 // Induction variable increment is OK.
Devang Patel61571ca2007-08-10 00:33:50 +0000514 if (I == IndVarIncrement)
Devang Patel2545f7b2007-08-09 01:39:01 +0000515 continue;
516
Devang Patelbc5fe632007-08-07 00:25:56 +0000517 // Terminator is also harmless.
518 if (I == Terminator)
519 continue;
520
521 // Otherwise we have a instruction that may not be safe.
522 return false;
523 }
524
525 return true;
526}
527
Devang Patel9263fc32007-08-20 23:51:18 +0000528// If Exiting block includes loop variant instructions then this
Devang Patelbc5fe632007-08-07 00:25:56 +0000529// loop may not be eliminated. This is used by processOneIterationLoop().
Devang Patel9263fc32007-08-20 23:51:18 +0000530bool LoopIndexSplit::safeExitingBlock(SplitInfo &SD,
531 BasicBlock *ExitingBlock) {
Devang Patelbc5fe632007-08-07 00:25:56 +0000532
Devang Patel9263fc32007-08-20 23:51:18 +0000533 for (BasicBlock::iterator BI = ExitingBlock->begin(),
534 BE = ExitingBlock->end(); BI != BE; ++BI) {
Devang Patelbc5fe632007-08-07 00:25:56 +0000535 Instruction *I = BI;
536
Devang Patel59e0c062007-08-14 01:30:57 +0000537 // PHI Nodes are OK.
Devang Patelbc5fe632007-08-07 00:25:56 +0000538 if (isa<PHINode>(I))
539 continue;
540
Devang Patel2545f7b2007-08-09 01:39:01 +0000541 // Induction variable increment is OK.
Devang Patel61571ca2007-08-10 00:33:50 +0000542 if (IndVarIncrement && IndVarIncrement == I)
Devang Patel2545f7b2007-08-09 01:39:01 +0000543 continue;
Devang Patelbc5fe632007-08-07 00:25:56 +0000544
Devang Patel2545f7b2007-08-09 01:39:01 +0000545 // Check if I is induction variable increment instruction.
Devang Patel61571ca2007-08-10 00:33:50 +0000546 if (!IndVarIncrement && I->getOpcode() == Instruction::Add) {
Devang Patel2545f7b2007-08-09 01:39:01 +0000547
548 Value *Op0 = I->getOperand(0);
549 Value *Op1 = I->getOperand(1);
Devang Patelbc5fe632007-08-07 00:25:56 +0000550 PHINode *PN = NULL;
551 ConstantInt *CI = NULL;
552
553 if ((PN = dyn_cast<PHINode>(Op0))) {
554 if ((CI = dyn_cast<ConstantInt>(Op1)))
Devang Patel61571ca2007-08-10 00:33:50 +0000555 IndVarIncrement = I;
Devang Patelbc5fe632007-08-07 00:25:56 +0000556 } else
557 if ((PN = dyn_cast<PHINode>(Op1))) {
558 if ((CI = dyn_cast<ConstantInt>(Op0)))
Devang Patel61571ca2007-08-10 00:33:50 +0000559 IndVarIncrement = I;
Devang Patelbc5fe632007-08-07 00:25:56 +0000560 }
561
Devang Patel61571ca2007-08-10 00:33:50 +0000562 if (IndVarIncrement && PN == IndVar && CI->isOne())
Devang Patelbc5fe632007-08-07 00:25:56 +0000563 continue;
564 }
Devang Patel2bcb5012007-08-08 01:51:27 +0000565
Devang Patelbc5fe632007-08-07 00:25:56 +0000566 // I is an Exit condition if next instruction is block terminator.
567 // Exit condition is OK if it compares loop invariant exit value,
568 // which is checked below.
Devang Patel3719d4f2007-08-07 23:17:52 +0000569 else if (ICmpInst *EC = dyn_cast<ICmpInst>(I)) {
Devang Patel61571ca2007-08-10 00:33:50 +0000570 if (EC == ExitCondition)
Devang Patel2bcb5012007-08-08 01:51:27 +0000571 continue;
Devang Patelbc5fe632007-08-07 00:25:56 +0000572 }
573
Devang Patel9263fc32007-08-20 23:51:18 +0000574 if (I == ExitingBlock->getTerminator())
Devang Patel61571ca2007-08-10 00:33:50 +0000575 continue;
576
Devang Patelbc5fe632007-08-07 00:25:56 +0000577 // Otherwise we have instruction that may not be safe.
578 return false;
579 }
580
Devang Patel9263fc32007-08-20 23:51:18 +0000581 // We could not find any reason to consider ExitingBlock unsafe.
Devang Patelbc5fe632007-08-07 00:25:56 +0000582 return true;
583}
584
Devang Patel60a94c72007-08-14 18:35:57 +0000585/// removeBlocks - Remove basic block DeadBB and all blocks dominated by DeadBB.
586/// This routine is used to remove split condition's dead branch, dominated by
587/// DeadBB. LiveBB dominates split conidition's other branch.
588void LoopIndexSplit::removeBlocks(BasicBlock *DeadBB, Loop *LP,
589 BasicBlock *LiveBB) {
Devang Patel6a2d6ef2007-08-12 07:02:51 +0000590
Devang Patelf4277122007-08-15 03:31:47 +0000591 // First update DeadBB's dominance frontier.
Devang Patel9cee7a02007-08-17 21:59:16 +0000592 SmallVector<BasicBlock *, 8> FrontierBBs;
Devang Patelf4277122007-08-15 03:31:47 +0000593 DominanceFrontier::iterator DeadBBDF = DF->find(DeadBB);
594 if (DeadBBDF != DF->end()) {
595 SmallVector<BasicBlock *, 8> PredBlocks;
596
597 DominanceFrontier::DomSetType DeadBBSet = DeadBBDF->second;
598 for (DominanceFrontier::DomSetType::iterator DeadBBSetI = DeadBBSet.begin(),
599 DeadBBSetE = DeadBBSet.end(); DeadBBSetI != DeadBBSetE; ++DeadBBSetI) {
600 BasicBlock *FrontierBB = *DeadBBSetI;
Devang Patel9cee7a02007-08-17 21:59:16 +0000601 FrontierBBs.push_back(FrontierBB);
602
Devang Patelf4277122007-08-15 03:31:47 +0000603 // Rremove any PHI incoming edge from blocks dominated by DeadBB.
604 PredBlocks.clear();
605 for(pred_iterator PI = pred_begin(FrontierBB), PE = pred_end(FrontierBB);
606 PI != PE; ++PI) {
607 BasicBlock *P = *PI;
608 if (P == DeadBB || DT->dominates(DeadBB, P))
609 PredBlocks.push_back(P);
Devang Patelb7639612007-08-13 22:13:24 +0000610 }
Devang Patel9cee7a02007-08-17 21:59:16 +0000611
Devang Patelf4277122007-08-15 03:31:47 +0000612 for(BasicBlock::iterator FBI = FrontierBB->begin(), FBE = FrontierBB->end();
613 FBI != FBE; ++FBI) {
614 if (PHINode *PN = dyn_cast<PHINode>(FBI)) {
615 for(SmallVector<BasicBlock *, 8>::iterator PI = PredBlocks.begin(),
616 PE = PredBlocks.end(); PI != PE; ++PI) {
617 BasicBlock *P = *PI;
618 PN->removeIncomingValue(P);
619 }
620 }
621 else
622 break;
Devang Patel9cee7a02007-08-17 21:59:16 +0000623 }
Devang Patel6a2d6ef2007-08-12 07:02:51 +0000624 }
Devang Patel6a2d6ef2007-08-12 07:02:51 +0000625 }
Devang Patelf4277122007-08-15 03:31:47 +0000626
627 // Now remove DeadBB and all nodes dominated by DeadBB in df order.
628 SmallVector<BasicBlock *, 32> WorkList;
629 DomTreeNode *DN = DT->getNode(DeadBB);
630 for (df_iterator<DomTreeNode*> DI = df_begin(DN),
631 E = df_end(DN); DI != E; ++DI) {
632 BasicBlock *BB = DI->getBlock();
633 WorkList.push_back(BB);
Devang Patel9cee7a02007-08-17 21:59:16 +0000634 BB->replaceAllUsesWith(UndefValue::get(Type::LabelTy));
Devang Patelf4277122007-08-15 03:31:47 +0000635 }
636
637 while (!WorkList.empty()) {
638 BasicBlock *BB = WorkList.back(); WorkList.pop_back();
639 for(BasicBlock::iterator BBI = BB->begin(), BBE = BB->end();
640 BBI != BBE; ++BBI) {
641 Instruction *I = BBI;
642 I->replaceAllUsesWith(UndefValue::get(I->getType()));
643 I->eraseFromParent();
644 }
645 LPM->deleteSimpleAnalysisValue(BB, LP);
646 DT->eraseNode(BB);
647 DF->removeBlock(BB);
648 LI->removeBlock(BB);
649 BB->eraseFromParent();
650 }
Devang Patel9cee7a02007-08-17 21:59:16 +0000651
652 // Update Frontier BBs' dominator info.
653 while (!FrontierBBs.empty()) {
654 BasicBlock *FBB = FrontierBBs.back(); FrontierBBs.pop_back();
655 BasicBlock *NewDominator = FBB->getSinglePredecessor();
656 if (!NewDominator) {
657 pred_iterator PI = pred_begin(FBB), PE = pred_end(FBB);
658 NewDominator = *PI;
659 ++PI;
660 if (NewDominator != LiveBB) {
661 for(; PI != PE; ++PI) {
662 BasicBlock *P = *PI;
663 if (P == LiveBB) {
664 NewDominator = LiveBB;
665 break;
666 }
667 NewDominator = DT->findNearestCommonDominator(NewDominator, P);
668 }
669 }
670 }
671 assert (NewDominator && "Unable to fix dominator info.");
672 DT->changeImmediateDominator(FBB, NewDominator);
673 DF->changeImmediateDominator(FBB, NewDominator, DT);
674 }
675
Devang Patel6a2d6ef2007-08-12 07:02:51 +0000676}
677
Devang Pateld662ace2007-08-22 18:27:01 +0000678/// safeSplitCondition - Return true if it is possible to
679/// split loop using given split condition.
680bool LoopIndexSplit::safeSplitCondition(SplitInfo &SD) {
Devang Patelf824fb42007-08-10 00:53:35 +0000681
Devang Pateld662ace2007-08-22 18:27:01 +0000682 BasicBlock *SplitCondBlock = SD.SplitCondition->getParent();
Devang Patel2a24ff32007-08-21 21:12:02 +0000683
Devang Pateld662ace2007-08-22 18:27:01 +0000684 // Unable to handle triange loops at the moment.
Devang Patel81fcdfb2007-08-15 02:14:55 +0000685 // In triangle loop, split condition is in header and one of the
686 // the split destination is loop latch. If split condition is EQ
687 // then such loops are already handle in processOneIterationLoop().
Devang Pateld662ace2007-08-22 18:27:01 +0000688 BasicBlock *Latch = L->getLoopLatch();
689 BranchInst *SplitTerminator =
690 cast<BranchInst>(SplitCondBlock->getTerminator());
691 BasicBlock *Succ0 = SplitTerminator->getSuccessor(0);
692 BasicBlock *Succ1 = SplitTerminator->getSuccessor(1);
693 if (L->getHeader() == SplitCondBlock
694 && (Latch == Succ0 || Latch == Succ1))
Devang Patel81fcdfb2007-08-15 02:14:55 +0000695 return false;
Devang Patel2a24ff32007-08-21 21:12:02 +0000696
Devang Patel9cba64e2007-08-18 00:00:32 +0000697 // If one of the split condition branch is post dominating other then loop
698 // index split is not appropriate.
Devang Pateld662ace2007-08-22 18:27:01 +0000699 if (DT->dominates(Succ0, Latch) || DT->dominates(Succ1, Latch))
Devang Patel9cee7a02007-08-17 21:59:16 +0000700 return false;
Devang Patel2a24ff32007-08-21 21:12:02 +0000701
Devang Patel9cba64e2007-08-18 00:00:32 +0000702 // If one of the split condition branch is a predecessor of the other
703 // split condition branch head then do not split loop on this condition.
Devang Patel2a24ff32007-08-21 21:12:02 +0000704 for(pred_iterator PI = pred_begin(Succ0), PE = pred_end(Succ0);
705 PI != PE; ++PI)
Devang Patel9cba64e2007-08-18 00:00:32 +0000706 if (Succ1 == *PI)
707 return false;
Devang Patel2a24ff32007-08-21 21:12:02 +0000708 for(pred_iterator PI = pred_begin(Succ1), PE = pred_end(Succ1);
709 PI != PE; ++PI)
Devang Patel9cba64e2007-08-18 00:00:32 +0000710 if (Succ0 == *PI)
711 return false;
712
Devang Patel4e2075d2007-08-24 05:36:56 +0000713 // Finally this split condition is safe only if merge point for
714 // split condition branch is loop latch. This check along with previous
715 // check, to ensure that exit condition is in either loop latch or header,
716 // filters all loops with non-empty loop body between merge point
717 // and exit condition.
718 DominanceFrontier::iterator Succ0DF = DF->find(Succ0);
719 assert (Succ0DF != DF->end() && "Unable to find Succ0 dominance frontier");
720 if (Succ0DF->second.count(Latch))
721 return true;
722
723 DominanceFrontier::iterator Succ1DF = DF->find(Succ1);
724 assert (Succ1DF != DF->end() && "Unable to find Succ1 dominance frontier");
725 if (Succ1DF->second.count(Latch))
726 return true;
727
728 return false;
Devang Pateld662ace2007-08-22 18:27:01 +0000729}
730
731/// splitLoop - Split current loop L in two loops using split information
732/// SD. Update dominator information. Maintain LCSSA form.
733bool LoopIndexSplit::splitLoop(SplitInfo &SD) {
734
735 if (!safeSplitCondition(SD))
736 return false;
737
Devang Patela0ac7262007-08-22 19:33:29 +0000738 // After loop is cloned there are two loops.
739 //
740 // First loop, referred as ALoop, executes first part of loop's iteration
741 // space split. Second loop, referred as BLoop, executes remaining
742 // part of loop's iteration space.
743 //
744 // ALoop's exit edge enters BLoop's header through a forwarding block which
745 // acts as a BLoop's preheader.
Devang Pateld662ace2007-08-22 18:27:01 +0000746
Devang Patela0ac7262007-08-22 19:33:29 +0000747 //[*] Calculate ALoop induction variable's new exiting value and
748 // BLoop induction variable's new starting value. Calculuate these
749 // values in original loop's preheader.
750 // A_ExitValue = min(SplitValue, OrignalLoopExitValue)
751 // B_StartValue = max(SplitValue, OriginalLoopStartValue)
752 Value *A_ExitValue = NULL;
753 Value *B_StartValue = NULL;
Devang Patelf824fb42007-08-10 00:53:35 +0000754 if (isa<ConstantInt>(SD.SplitValue)) {
Devang Patela0ac7262007-08-22 19:33:29 +0000755 A_ExitValue = SD.SplitValue;
756 B_StartValue = SD.SplitValue;
Devang Patelf824fb42007-08-10 00:53:35 +0000757 }
758 else {
Devang Patela0ac7262007-08-22 19:33:29 +0000759 BasicBlock *Preheader = L->getLoopPreheader();
760 Instruction *PHTerminator = Preheader->getTerminator();
761 bool SignedPredicate = ExitCondition->isSignedPredicate();
Devang Patelf824fb42007-08-10 00:53:35 +0000762 Value *C1 = new ICmpInst(SignedPredicate ?
763 ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
Devang Patel6a2d6ef2007-08-12 07:02:51 +0000764 SD.SplitValue,
765 ExitCondition->getOperand(ExitValueNum),
Devang Patela0ac7262007-08-22 19:33:29 +0000766 "lsplit.ev", PHTerminator);
767 A_ExitValue = new SelectInst(C1, SD.SplitValue,
Devang Patel6a2d6ef2007-08-12 07:02:51 +0000768 ExitCondition->getOperand(ExitValueNum),
Devang Patela0ac7262007-08-22 19:33:29 +0000769 "lsplit.ev", PHTerminator);
Devang Patelf824fb42007-08-10 00:53:35 +0000770
771 Value *C2 = new ICmpInst(SignedPredicate ?
772 ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
773 SD.SplitValue, StartValue, "lsplit.sv",
Devang Patela0ac7262007-08-22 19:33:29 +0000774 PHTerminator);
775 B_StartValue = new SelectInst(C2, StartValue, SD.SplitValue,
776 "lsplit.sv", PHTerminator);
Devang Patelf824fb42007-08-10 00:53:35 +0000777 }
Devang Patel901f67e2007-08-10 18:07:13 +0000778
Devang Patela0ac7262007-08-22 19:33:29 +0000779 //[*] Clone loop.
Devang Patel6a2d6ef2007-08-12 07:02:51 +0000780 DenseMap<const Value *, Value *> ValueMap;
Devang Patela0ac7262007-08-22 19:33:29 +0000781 Loop *BLoop = CloneLoop(L, LPM, LI, ValueMap, this);
782 BasicBlock *B_Header = BLoop->getHeader();
Devang Patel6a2d6ef2007-08-12 07:02:51 +0000783
Devang Patela0ac7262007-08-22 19:33:29 +0000784 //[*] ALoop's exiting edge BLoop's header.
785 // ALoop's original exit block becomes BLoop's exit block.
786 PHINode *B_IndVar = cast<PHINode>(ValueMap[IndVar]);
787 BasicBlock *A_ExitingBlock = ExitCondition->getParent();
788 BranchInst *A_ExitInsn =
789 dyn_cast<BranchInst>(A_ExitingBlock->getTerminator());
790 assert (A_ExitInsn && "Unable to find suitable loop exit branch");
791 BasicBlock *B_ExitBlock = A_ExitInsn->getSuccessor(1);
792 if (L->contains(B_ExitBlock)) {
793 B_ExitBlock = A_ExitInsn->getSuccessor(0);
794 A_ExitInsn->setSuccessor(0, B_Header);
Devang Patel59e0c062007-08-14 01:30:57 +0000795 } else
Devang Patela0ac7262007-08-22 19:33:29 +0000796 A_ExitInsn->setSuccessor(1, B_Header);
797
798 //[*] Update ALoop's exit value using new exit value.
799 ExitCondition->setOperand(ExitValueNum, A_ExitValue);
Devang Patel2a24ff32007-08-21 21:12:02 +0000800
Devang Patela0ac7262007-08-22 19:33:29 +0000801 // [*] Update BLoop's header phi nodes. Remove incoming PHINode's from
802 // original loop's preheader. Add incoming PHINode values from
803 // ALoop's exiting block. Update BLoop header's domiantor info.
804
Devang Patel59e0c062007-08-14 01:30:57 +0000805 // Collect inverse map of Header PHINodes.
806 DenseMap<Value *, Value *> InverseMap;
807 for (BasicBlock::iterator BI = L->getHeader()->begin(),
808 BE = L->getHeader()->end(); BI != BE; ++BI) {
809 if (PHINode *PN = dyn_cast<PHINode>(BI)) {
810 PHINode *PNClone = cast<PHINode>(ValueMap[PN]);
811 InverseMap[PNClone] = PN;
812 } else
813 break;
814 }
Devang Patela0ac7262007-08-22 19:33:29 +0000815 BasicBlock *Preheader = L->getLoopPreheader();
816 for (BasicBlock::iterator BI = B_Header->begin(), BE = B_Header->end();
Devang Patel6a2d6ef2007-08-12 07:02:51 +0000817 BI != BE; ++BI) {
818 if (PHINode *PN = dyn_cast<PHINode>(BI)) {
Devang Patela0ac7262007-08-22 19:33:29 +0000819 // Remove incoming value from original preheader.
820 PN->removeIncomingValue(Preheader);
821
822 // Add incoming value from A_ExitingBlock.
823 if (PN == B_IndVar)
824 PN->addIncoming(B_StartValue, A_ExitingBlock);
Devang Patel59e0c062007-08-14 01:30:57 +0000825 else {
826 PHINode *OrigPN = cast<PHINode>(InverseMap[PN]);
Devang Patela0ac7262007-08-22 19:33:29 +0000827 Value *V2 = OrigPN->getIncomingValueForBlock(A_ExitingBlock);
828 PN->addIncoming(V2, A_ExitingBlock);
Devang Patel59e0c062007-08-14 01:30:57 +0000829 }
830 } else
Devang Patel6a2d6ef2007-08-12 07:02:51 +0000831 break;
832 }
Devang Patela0ac7262007-08-22 19:33:29 +0000833 DT->changeImmediateDominator(B_Header, A_ExitingBlock);
834 DF->changeImmediateDominator(B_Header, A_ExitingBlock, DT);
Devang Patel2a24ff32007-08-21 21:12:02 +0000835
Devang Patela0ac7262007-08-22 19:33:29 +0000836 // [*] Update BLoop's exit block. Its new predecessor is BLoop's exit
837 // block. Remove incoming PHINode values from ALoop's exiting block.
838 // Add new incoming values from BLoop's incoming exiting value.
839 // Update BLoop exit block's dominator info..
840 BasicBlock *B_ExitingBlock = cast<BasicBlock>(ValueMap[A_ExitingBlock]);
841 for (BasicBlock::iterator BI = B_ExitBlock->begin(), BE = B_ExitBlock->end();
Devang Patel59e0c062007-08-14 01:30:57 +0000842 BI != BE; ++BI) {
843 if (PHINode *PN = dyn_cast<PHINode>(BI)) {
Devang Patela0ac7262007-08-22 19:33:29 +0000844 PN->addIncoming(ValueMap[PN->getIncomingValueForBlock(A_ExitingBlock)],
845 B_ExitingBlock);
846 PN->removeIncomingValue(A_ExitingBlock);
Devang Patel59e0c062007-08-14 01:30:57 +0000847 } else
848 break;
849 }
Devang Patel6a2d6ef2007-08-12 07:02:51 +0000850
Devang Patela0ac7262007-08-22 19:33:29 +0000851 DT->changeImmediateDominator(B_ExitBlock, B_ExitingBlock);
852 DF->changeImmediateDominator(B_ExitBlock, B_ExitingBlock, DT);
Devang Patelb7639612007-08-13 22:13:24 +0000853
Devang Patela0ac7262007-08-22 19:33:29 +0000854 //[*] Split ALoop's exit edge. This creates a new block which
855 // serves two purposes. First one is to hold PHINode defnitions
856 // to ensure that ALoop's LCSSA form. Second use it to act
857 // as a preheader for BLoop.
858 BasicBlock *A_ExitBlock = SplitEdge(A_ExitingBlock, B_Header, this);
Devang Patel901f67e2007-08-10 18:07:13 +0000859
Devang Patela0ac7262007-08-22 19:33:29 +0000860 //[*] Preserve ALoop's LCSSA form. Create new forwarding PHINodes
861 // in A_ExitBlock to redefine outgoing PHI definitions from ALoop.
862 for(BasicBlock::iterator BI = B_Header->begin(), BE = B_Header->end();
Devang Patel7ef89b82007-08-21 19:47:46 +0000863 BI != BE; ++BI) {
864 if (PHINode *PN = dyn_cast<PHINode>(BI)) {
Devang Patela0ac7262007-08-22 19:33:29 +0000865 Value *V1 = PN->getIncomingValueForBlock(A_ExitBlock);
Devang Patel7ef89b82007-08-21 19:47:46 +0000866 PHINode *newPHI = new PHINode(PN->getType(), PN->getName());
Devang Patela0ac7262007-08-22 19:33:29 +0000867 newPHI->addIncoming(V1, A_ExitingBlock);
868 A_ExitBlock->getInstList().push_front(newPHI);
869 PN->removeIncomingValue(A_ExitBlock);
870 PN->addIncoming(newPHI, A_ExitBlock);
Devang Patel7ef89b82007-08-21 19:47:46 +0000871 } else
872 break;
873 }
874
Devang Patela0ac7262007-08-22 19:33:29 +0000875 //[*] Eliminate split condition's inactive branch from ALoop.
876 BasicBlock *A_SplitCondBlock = SD.SplitCondition->getParent();
877 BranchInst *A_BR = cast<BranchInst>(A_SplitCondBlock->getTerminator());
878 BasicBlock *A_InactiveBranch = A_BR->getSuccessor(1);
Devang Patel45db4bc2007-08-22 20:55:18 +0000879 BasicBlock *A_ActiveBranch = A_BR->getSuccessor(0);
Devang Patela0ac7262007-08-22 19:33:29 +0000880 A_BR->setUnconditionalDest(A_BR->getSuccessor(0));
881 removeBlocks(A_InactiveBranch, L, A_ActiveBranch);
882
883 //[*] Eliminate split condition's inactive branch in from BLoop.
884 BasicBlock *B_SplitCondBlock = cast<BasicBlock>(ValueMap[A_SplitCondBlock]);
885 BranchInst *B_BR = cast<BranchInst>(B_SplitCondBlock->getTerminator());
886 BasicBlock *B_InactiveBranch = B_BR->getSuccessor(0);
887 BasicBlock *B_ActiveBranch = B_BR->getSuccessor(1);
888 B_BR->setUnconditionalDest(B_BR->getSuccessor(1));
889 removeBlocks(B_InactiveBranch, BLoop, B_ActiveBranch);
890
Devang Patel6a2d6ef2007-08-12 07:02:51 +0000891 return true;
Devang Patelbc5fe632007-08-07 00:25:56 +0000892}