Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 1 | //===- 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 Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 16 | #include "llvm/Transforms/Scalar.h" |
| 17 | #include "llvm/Analysis/LoopPass.h" |
| 18 | #include "llvm/Analysis/ScalarEvolutionExpander.h" |
Devang Patel | 95fd717 | 2007-08-08 21:39:47 +0000 | [diff] [blame] | 19 | #include "llvm/Analysis/Dominators.h" |
Devang Patel | 901f67e | 2007-08-10 18:07:13 +0000 | [diff] [blame] | 20 | #include "llvm/Transforms/Utils/BasicBlockUtils.h" |
| 21 | #include "llvm/Transforms/Utils/Cloning.h" |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 22 | #include "llvm/Support/Compiler.h" |
Devang Patel | f427712 | 2007-08-15 03:31:47 +0000 | [diff] [blame] | 23 | #include "llvm/ADT/DepthFirstIterator.h" |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/Statistic.h" |
| 25 | |
| 26 | using namespace llvm; |
| 27 | |
| 28 | STATISTIC(NumIndexSplit, "Number of loops index split"); |
| 29 | |
| 30 | namespace { |
| 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 Patel | 901f67e | 2007-08-10 18:07:13 +0000 | [diff] [blame] | 46 | AU.addRequired<LoopInfo>(); |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 47 | AU.addPreserved<LoopInfo>(); |
| 48 | AU.addRequiredID(LoopSimplifyID); |
| 49 | AU.addPreservedID(LoopSimplifyID); |
Devang Patel | 0aaeb17 | 2007-08-08 22:25:28 +0000 | [diff] [blame] | 50 | AU.addRequired<DominatorTree>(); |
Devang Patel | f427712 | 2007-08-15 03:31:47 +0000 | [diff] [blame] | 51 | AU.addRequired<DominanceFrontier>(); |
Devang Patel | 95fd717 | 2007-08-08 21:39:47 +0000 | [diff] [blame] | 52 | AU.addPreserved<DominatorTree>(); |
| 53 | AU.addPreserved<DominanceFrontier>(); |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | private: |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 57 | |
| 58 | class SplitInfo { |
| 59 | public: |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 60 | SplitInfo() : SplitValue(NULL), SplitCondition(NULL) {} |
Devang Patel | 2545f7b | 2007-08-09 01:39:01 +0000 | [diff] [blame] | 61 | |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 62 | // Induction variable's range is split at this value. |
| 63 | Value *SplitValue; |
| 64 | |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 65 | // This compare instruction compares IndVar against SplitValue. |
| 66 | ICmpInst *SplitCondition; |
| 67 | |
Devang Patel | 3169633 | 2007-08-08 21:18:27 +0000 | [diff] [blame] | 68 | // Clear split info. |
| 69 | void clear() { |
Devang Patel | 3169633 | 2007-08-08 21:18:27 +0000 | [diff] [blame] | 70 | SplitValue = NULL; |
Devang Patel | 3169633 | 2007-08-08 21:18:27 +0000 | [diff] [blame] | 71 | SplitCondition = NULL; |
Devang Patel | 3169633 | 2007-08-08 21:18:27 +0000 | [diff] [blame] | 72 | } |
Devang Patel | 2545f7b | 2007-08-09 01:39:01 +0000 | [diff] [blame] | 73 | |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 74 | }; |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 75 | |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 76 | private: |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 77 | /// Find condition inside a loop that is suitable candidate for index split. |
| 78 | void findSplitCondition(); |
| 79 | |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 80 | /// 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 Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 86 | /// 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 Patel | 901f67e | 2007-08-10 18:07:13 +0000 | [diff] [blame] | 91 | bool processOneIterationLoop(SplitInfo &SD); |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 92 | |
Devang Patel | 0aaeb17 | 2007-08-08 22:25:28 +0000 | [diff] [blame] | 93 | /// If loop header includes loop variant instruction operands then |
| 94 | /// this loop may not be eliminated. |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 95 | bool safeHeader(SplitInfo &SD, BasicBlock *BB); |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 96 | |
Devang Patel | 0aaeb17 | 2007-08-08 22:25:28 +0000 | [diff] [blame] | 97 | /// If Exit block includes loop variant instructions then this |
| 98 | /// loop may not be eliminated. |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 99 | bool safeExitBlock(SplitInfo &SD, BasicBlock *BB); |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 100 | |
Devang Patel | 60a94c7 | 2007-08-14 18:35:57 +0000 | [diff] [blame] | 101 | /// 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 Patel | 6a2d6ef | 2007-08-12 07:02:51 +0000 | [diff] [blame] | 105 | |
Devang Patel | 0aaeb17 | 2007-08-08 22:25:28 +0000 | [diff] [blame] | 106 | /// Find cost of spliting loop L. |
| 107 | unsigned findSplitCost(Loop *L, SplitInfo &SD); |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 108 | bool splitLoop(SplitInfo &SD); |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 109 | |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 110 | void initialize() { |
| 111 | IndVar = NULL; |
| 112 | IndVarIncrement = NULL; |
| 113 | ExitCondition = NULL; |
Devang Patel | 6a2d6ef | 2007-08-12 07:02:51 +0000 | [diff] [blame] | 114 | StartValue = NULL; |
| 115 | ExitValueNum = 0; |
| 116 | SplitData.clear(); |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 117 | } |
| 118 | |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 119 | private: |
| 120 | |
| 121 | // Current Loop. |
| 122 | Loop *L; |
Devang Patel | 901f67e | 2007-08-10 18:07:13 +0000 | [diff] [blame] | 123 | LPPassManager *LPM; |
| 124 | LoopInfo *LI; |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 125 | ScalarEvolution *SE; |
Devang Patel | 0aaeb17 | 2007-08-08 22:25:28 +0000 | [diff] [blame] | 126 | DominatorTree *DT; |
Devang Patel | b763961 | 2007-08-13 22:13:24 +0000 | [diff] [blame] | 127 | DominanceFrontier *DF; |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 128 | SmallVector<SplitInfo, 4> SplitData; |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 129 | |
| 130 | // Induction variable whose range is being split by this transformation. |
| 131 | PHINode *IndVar; |
| 132 | Instruction *IndVarIncrement; |
| 133 | |
| 134 | // Loop exit condition. |
| 135 | ICmpInst *ExitCondition; |
| 136 | |
| 137 | // Induction variable's initial value. |
| 138 | Value *StartValue; |
| 139 | |
Devang Patel | 6a2d6ef | 2007-08-12 07:02:51 +0000 | [diff] [blame] | 140 | // Induction variable's final loop exit value operand number in exit condition.. |
| 141 | unsigned ExitValueNum; |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 142 | }; |
| 143 | |
| 144 | char LoopIndexSplit::ID = 0; |
| 145 | RegisterPass<LoopIndexSplit> X ("loop-index-split", "Index Split Loops"); |
| 146 | } |
| 147 | |
| 148 | LoopPass *llvm::createLoopIndexSplitPass() { |
| 149 | return new LoopIndexSplit(); |
| 150 | } |
| 151 | |
| 152 | // Index split Loop L. Return true if loop is split. |
Devang Patel | 901f67e | 2007-08-10 18:07:13 +0000 | [diff] [blame] | 153 | bool LoopIndexSplit::runOnLoop(Loop *IncomingLoop, LPPassManager &LPM_Ref) { |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 154 | bool Changed = false; |
| 155 | L = IncomingLoop; |
Devang Patel | 901f67e | 2007-08-10 18:07:13 +0000 | [diff] [blame] | 156 | LPM = &LPM_Ref; |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 157 | |
Devang Patel | 81fcdfb | 2007-08-15 02:14:55 +0000 | [diff] [blame] | 158 | // FIXME - Nested loops make dominator info updates tricky. |
Devang Patel | 79276b3 | 2007-08-14 23:53:57 +0000 | [diff] [blame] | 159 | if (!L->getSubLoops().empty()) |
| 160 | return false; |
| 161 | |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 162 | SE = &getAnalysis<ScalarEvolution>(); |
Devang Patel | 0aaeb17 | 2007-08-08 22:25:28 +0000 | [diff] [blame] | 163 | DT = &getAnalysis<DominatorTree>(); |
Devang Patel | 901f67e | 2007-08-10 18:07:13 +0000 | [diff] [blame] | 164 | LI = &getAnalysis<LoopInfo>(); |
Devang Patel | 2190f17 | 2007-08-15 03:34:53 +0000 | [diff] [blame] | 165 | DF = &getAnalysis<DominanceFrontier>(); |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 166 | |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 167 | initialize(); |
| 168 | |
| 169 | findLoopConditionals(); |
| 170 | |
| 171 | if (!ExitCondition) |
| 172 | return false; |
| 173 | |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 174 | findSplitCondition(); |
| 175 | |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 176 | if (SplitData.empty()) |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 177 | return false; |
| 178 | |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 179 | // First see if it is possible to eliminate loop itself or not. |
| 180 | for (SmallVector<SplitInfo, 4>::iterator SI = SplitData.begin(), |
| 181 | E = SplitData.end(); SI != E; ++SI) { |
| 182 | SplitInfo &SD = *SI; |
| 183 | if (SD.SplitCondition->getPredicate() == ICmpInst::ICMP_EQ) { |
Devang Patel | 901f67e | 2007-08-10 18:07:13 +0000 | [diff] [blame] | 184 | Changed = processOneIterationLoop(SD); |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 185 | if (Changed) { |
| 186 | ++NumIndexSplit; |
| 187 | // If is loop is eliminated then nothing else to do here. |
| 188 | return Changed; |
| 189 | } |
| 190 | } |
| 191 | } |
| 192 | |
Devang Patel | 0aaeb17 | 2007-08-08 22:25:28 +0000 | [diff] [blame] | 193 | unsigned MaxCost = 99; |
| 194 | unsigned Index = 0; |
| 195 | unsigned MostProfitableSDIndex = 0; |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 196 | for (SmallVector<SplitInfo, 4>::iterator SI = SplitData.begin(), |
Devang Patel | 0aaeb17 | 2007-08-08 22:25:28 +0000 | [diff] [blame] | 197 | E = SplitData.end(); SI != E; ++SI, ++Index) { |
| 198 | SplitInfo SD = *SI; |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 199 | |
| 200 | // ICM_EQs are already handled above. |
Devang Patel | 0aaeb17 | 2007-08-08 22:25:28 +0000 | [diff] [blame] | 201 | if (SD.SplitCondition->getPredicate() == ICmpInst::ICMP_EQ) |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 202 | continue; |
Devang Patel | 0aaeb17 | 2007-08-08 22:25:28 +0000 | [diff] [blame] | 203 | |
| 204 | unsigned Cost = findSplitCost(L, SD); |
| 205 | if (Cost < MaxCost) |
| 206 | MostProfitableSDIndex = Index; |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 207 | } |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 208 | |
Devang Patel | 0aaeb17 | 2007-08-08 22:25:28 +0000 | [diff] [blame] | 209 | // Split most profitiable condition. |
| 210 | Changed = splitLoop(SplitData[MostProfitableSDIndex]); |
| 211 | |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 212 | if (Changed) |
| 213 | ++NumIndexSplit; |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 214 | |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 215 | return Changed; |
| 216 | } |
| 217 | |
Devang Patel | 2545f7b | 2007-08-09 01:39:01 +0000 | [diff] [blame] | 218 | /// Return true if V is a induction variable or induction variable's |
| 219 | /// increment for loop L. |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 220 | void LoopIndexSplit::findIndVar(Value *V, Loop *L) { |
Devang Patel | 2545f7b | 2007-08-09 01:39:01 +0000 | [diff] [blame] | 221 | |
| 222 | Instruction *I = dyn_cast<Instruction>(V); |
| 223 | if (!I) |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 224 | return; |
Devang Patel | 2545f7b | 2007-08-09 01:39:01 +0000 | [diff] [blame] | 225 | |
| 226 | // Check if I is a phi node from loop header or not. |
| 227 | if (PHINode *PN = dyn_cast<PHINode>(V)) { |
| 228 | if (PN->getParent() == L->getHeader()) { |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 229 | IndVar = PN; |
| 230 | return; |
Devang Patel | 2545f7b | 2007-08-09 01:39:01 +0000 | [diff] [blame] | 231 | } |
| 232 | } |
| 233 | |
| 234 | // Check if I is a add instruction whose one operand is |
| 235 | // phi node from loop header and second operand is constant. |
| 236 | if (I->getOpcode() != Instruction::Add) |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 237 | return; |
Devang Patel | 2545f7b | 2007-08-09 01:39:01 +0000 | [diff] [blame] | 238 | |
| 239 | Value *Op0 = I->getOperand(0); |
| 240 | Value *Op1 = I->getOperand(1); |
| 241 | |
| 242 | if (PHINode *PN = dyn_cast<PHINode>(Op0)) { |
| 243 | if (PN->getParent() == L->getHeader() |
| 244 | && isa<ConstantInt>(Op1)) { |
| 245 | IndVar = PN; |
| 246 | IndVarIncrement = I; |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 247 | return; |
Devang Patel | 2545f7b | 2007-08-09 01:39:01 +0000 | [diff] [blame] | 248 | } |
| 249 | } |
| 250 | |
| 251 | if (PHINode *PN = dyn_cast<PHINode>(Op1)) { |
| 252 | if (PN->getParent() == L->getHeader() |
| 253 | && isa<ConstantInt>(Op0)) { |
| 254 | IndVar = PN; |
| 255 | IndVarIncrement = I; |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 256 | return; |
Devang Patel | 2545f7b | 2007-08-09 01:39:01 +0000 | [diff] [blame] | 257 | } |
| 258 | } |
| 259 | |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 260 | return; |
| 261 | } |
| 262 | |
| 263 | // Find loop's exit condition and associated induction variable. |
| 264 | void LoopIndexSplit::findLoopConditionals() { |
| 265 | |
| 266 | BasicBlock *ExitBlock = NULL; |
| 267 | |
| 268 | for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); |
| 269 | I != E; ++I) { |
| 270 | BasicBlock *BB = *I; |
| 271 | if (!L->isLoopExit(BB)) |
| 272 | continue; |
| 273 | if (ExitBlock) |
| 274 | return; |
| 275 | ExitBlock = BB; |
| 276 | } |
| 277 | |
| 278 | if (!ExitBlock) |
| 279 | return; |
| 280 | |
| 281 | // If exit block's terminator is conditional branch inst then we have found |
| 282 | // exit condition. |
| 283 | BranchInst *BR = dyn_cast<BranchInst>(ExitBlock->getTerminator()); |
| 284 | 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 Patel | 6a2d6ef | 2007-08-12 07:02:51 +0000 | [diff] [blame] | 302 | ExitValueNum = 0; |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 303 | findIndVar(V1, L); |
| 304 | } |
| 305 | else if (SH1->isLoopInvariant(L) && isa<SCEVAddRecExpr>(SH0)) { |
Devang Patel | 6a2d6ef | 2007-08-12 07:02:51 +0000 | [diff] [blame] | 306 | ExitValueNum = 1; |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 307 | findIndVar(V0, L); |
| 308 | } |
| 309 | |
Devang Patel | 6a2d6ef | 2007-08-12 07:02:51 +0000 | [diff] [blame] | 310 | if (!IndVar) |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 311 | ExitCondition = NULL; |
| 312 | else if (IndVar) { |
| 313 | BasicBlock *Preheader = L->getLoopPreheader(); |
| 314 | StartValue = IndVar->getIncomingValueForBlock(Preheader); |
| 315 | } |
Devang Patel | 2545f7b | 2007-08-09 01:39:01 +0000 | [diff] [blame] | 316 | } |
| 317 | |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 318 | /// Find condition inside a loop that is suitable candidate for index split. |
| 319 | void LoopIndexSplit::findSplitCondition() { |
| 320 | |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 321 | SplitInfo SD; |
Devang Patel | 2545f7b | 2007-08-09 01:39:01 +0000 | [diff] [blame] | 322 | // Check all basic block's terminators. |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 323 | |
Devang Patel | 2545f7b | 2007-08-09 01:39:01 +0000 | [diff] [blame] | 324 | for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); |
| 325 | I != E; ++I) { |
| 326 | BasicBlock *BB = *I; |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 327 | |
Devang Patel | 2545f7b | 2007-08-09 01:39:01 +0000 | [diff] [blame] | 328 | // 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 Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 335 | continue; |
| 336 | |
Devang Patel | 2545f7b | 2007-08-09 01:39:01 +0000 | [diff] [blame] | 337 | ICmpInst *CI = dyn_cast<ICmpInst>(BR->getCondition()); |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 338 | if (!CI || CI == ExitCondition) |
Devang Patel | 2545f7b | 2007-08-09 01:39:01 +0000 | [diff] [blame] | 339 | return; |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 340 | |
Devang Patel | 2545f7b | 2007-08-09 01:39:01 +0000 | [diff] [blame] | 341 | // 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 Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 352 | 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 Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 360 | } |
Devang Patel | 2545f7b | 2007-08-09 01:39:01 +0000 | [diff] [blame] | 361 | else if (SH1->isLoopInvariant(L) && isa<SCEVAddRecExpr>(SH0)) { |
| 362 | SD.SplitValue = V1; |
| 363 | SD.SplitCondition = CI; |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 364 | 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 Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 372 | } |
| 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 Patel | 901f67e | 2007-08-10 18:07:13 +0000 | [diff] [blame] | 391 | bool LoopIndexSplit::processOneIterationLoop(SplitInfo &SD) { |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 392 | |
| 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 Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 400 | if (SD.SplitCondition->getParent() != Header) |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 401 | return false; |
| 402 | |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 403 | // If loop header includes loop variant instruction operands then |
| 404 | // this loop may not be eliminated. |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 405 | if (!safeHeader(SD, Header)) |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 406 | return false; |
| 407 | |
| 408 | // If Exit block includes loop variant instructions then this |
| 409 | // loop may not be eliminated. |
Devang Patel | bfa5eba | 2007-08-10 00:59:03 +0000 | [diff] [blame] | 410 | if (!safeExitBlock(SD, ExitCondition->getParent())) |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 411 | return false; |
| 412 | |
Devang Patel | 2bcb501 | 2007-08-08 01:51:27 +0000 | [diff] [blame] | 413 | // Update CFG. |
| 414 | |
| 415 | // As a first step to break this loop, remove Latch to Header edge. |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 416 | BasicBlock *Latch = L->getLoopLatch(); |
Devang Patel | 2bcb501 | 2007-08-08 01:51:27 +0000 | [diff] [blame] | 417 | BasicBlock *LatchSucc = NULL; |
| 418 | BranchInst *BR = dyn_cast<BranchInst>(Latch->getTerminator()); |
| 419 | if (!BR) |
| 420 | return false; |
| 421 | Header->removePredecessor(Latch); |
| 422 | for (succ_iterator SI = succ_begin(Latch), E = succ_end(Latch); |
| 423 | SI != E; ++SI) { |
| 424 | if (Header != *SI) |
| 425 | LatchSucc = *SI; |
| 426 | } |
| 427 | BR->setUnconditionalDest(LatchSucc); |
| 428 | |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 429 | Instruction *Terminator = Header->getTerminator(); |
Devang Patel | 59e0c06 | 2007-08-14 01:30:57 +0000 | [diff] [blame] | 430 | Value *ExitValue = ExitCondition->getOperand(ExitValueNum); |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 431 | |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 432 | // Replace split condition in header. |
| 433 | // Transform |
| 434 | // SplitCondition : icmp eq i32 IndVar, SplitValue |
| 435 | // into |
| 436 | // c1 = icmp uge i32 SplitValue, StartValue |
| 437 | // c2 = icmp ult i32 vSplitValue, ExitValue |
| 438 | // and i32 c1, c2 |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 439 | bool SignedPredicate = ExitCondition->isSignedPredicate(); |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 440 | Instruction *C1 = new ICmpInst(SignedPredicate ? |
| 441 | ICmpInst::ICMP_SGE : ICmpInst::ICMP_UGE, |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 442 | SD.SplitValue, StartValue, "lisplit", |
| 443 | Terminator); |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 444 | Instruction *C2 = new ICmpInst(SignedPredicate ? |
| 445 | ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT, |
Devang Patel | 59e0c06 | 2007-08-14 01:30:57 +0000 | [diff] [blame] | 446 | SD.SplitValue, ExitValue, "lisplit", |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 447 | Terminator); |
| 448 | Instruction *NSplitCond = BinaryOperator::createAnd(C1, C2, "lisplit", |
| 449 | Terminator); |
| 450 | SD.SplitCondition->replaceAllUsesWith(NSplitCond); |
| 451 | SD.SplitCondition->eraseFromParent(); |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 452 | |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 453 | // Now, clear latch block. Remove instructions that are responsible |
| 454 | // to increment induction variable. |
| 455 | Instruction *LTerminator = Latch->getTerminator(); |
| 456 | for (BasicBlock::iterator LB = Latch->begin(), LE = Latch->end(); |
| 457 | LB != LE; ) { |
| 458 | Instruction *I = LB; |
| 459 | ++LB; |
| 460 | if (isa<PHINode>(I) || I == LTerminator) |
| 461 | continue; |
| 462 | |
Devang Patel | 59e0c06 | 2007-08-14 01:30:57 +0000 | [diff] [blame] | 463 | if (I == IndVarIncrement) |
| 464 | I->replaceAllUsesWith(ExitValue); |
| 465 | else |
| 466 | I->replaceAllUsesWith(UndefValue::get(I->getType())); |
Devang Patel | 0d75c29 | 2007-08-07 17:45:35 +0000 | [diff] [blame] | 467 | I->eraseFromParent(); |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 468 | } |
| 469 | |
Devang Patel | 901f67e | 2007-08-10 18:07:13 +0000 | [diff] [blame] | 470 | LPM->deleteLoopFromQueue(L); |
Devang Patel | 95fd717 | 2007-08-08 21:39:47 +0000 | [diff] [blame] | 471 | |
| 472 | // Update Dominator Info. |
| 473 | // Only CFG change done is to remove Latch to Header edge. This |
| 474 | // does not change dominator tree because Latch did not dominate |
| 475 | // Header. |
Devang Patel | b763961 | 2007-08-13 22:13:24 +0000 | [diff] [blame] | 476 | if (DF) { |
Devang Patel | 95fd717 | 2007-08-08 21:39:47 +0000 | [diff] [blame] | 477 | DominanceFrontier::iterator HeaderDF = DF->find(Header); |
| 478 | if (HeaderDF != DF->end()) |
| 479 | DF->removeFromFrontier(HeaderDF, Header); |
| 480 | |
| 481 | DominanceFrontier::iterator LatchDF = DF->find(Latch); |
| 482 | if (LatchDF != DF->end()) |
| 483 | DF->removeFromFrontier(LatchDF, Header); |
| 484 | } |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 485 | return true; |
| 486 | } |
| 487 | |
| 488 | // If loop header includes loop variant instruction operands then |
| 489 | // this loop can not be eliminated. This is used by processOneIterationLoop(). |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 490 | bool LoopIndexSplit::safeHeader(SplitInfo &SD, BasicBlock *Header) { |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 491 | |
| 492 | Instruction *Terminator = Header->getTerminator(); |
| 493 | for(BasicBlock::iterator BI = Header->begin(), BE = Header->end(); |
| 494 | BI != BE; ++BI) { |
| 495 | Instruction *I = BI; |
| 496 | |
Devang Patel | 59e0c06 | 2007-08-14 01:30:57 +0000 | [diff] [blame] | 497 | // PHI Nodes are OK. |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 498 | if (isa<PHINode>(I)) |
| 499 | continue; |
| 500 | |
| 501 | // SplitCondition itself is OK. |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 502 | if (I == SD.SplitCondition) |
Devang Patel | 2bcb501 | 2007-08-08 01:51:27 +0000 | [diff] [blame] | 503 | continue; |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 504 | |
Devang Patel | 2545f7b | 2007-08-09 01:39:01 +0000 | [diff] [blame] | 505 | // Induction variable is OK. |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 506 | if (I == IndVar) |
Devang Patel | 2545f7b | 2007-08-09 01:39:01 +0000 | [diff] [blame] | 507 | continue; |
| 508 | |
| 509 | // Induction variable increment is OK. |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 510 | if (I == IndVarIncrement) |
Devang Patel | 2545f7b | 2007-08-09 01:39:01 +0000 | [diff] [blame] | 511 | continue; |
| 512 | |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 513 | // Terminator is also harmless. |
| 514 | if (I == Terminator) |
| 515 | continue; |
| 516 | |
| 517 | // Otherwise we have a instruction that may not be safe. |
| 518 | return false; |
| 519 | } |
| 520 | |
| 521 | return true; |
| 522 | } |
| 523 | |
| 524 | // If Exit block includes loop variant instructions then this |
| 525 | // loop may not be eliminated. This is used by processOneIterationLoop(). |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 526 | bool LoopIndexSplit::safeExitBlock(SplitInfo &SD, BasicBlock *ExitBlock) { |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 527 | |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 528 | for (BasicBlock::iterator BI = ExitBlock->begin(), BE = ExitBlock->end(); |
| 529 | BI != BE; ++BI) { |
| 530 | Instruction *I = BI; |
| 531 | |
Devang Patel | 59e0c06 | 2007-08-14 01:30:57 +0000 | [diff] [blame] | 532 | // PHI Nodes are OK. |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 533 | if (isa<PHINode>(I)) |
| 534 | continue; |
| 535 | |
Devang Patel | 2545f7b | 2007-08-09 01:39:01 +0000 | [diff] [blame] | 536 | // Induction variable increment is OK. |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 537 | if (IndVarIncrement && IndVarIncrement == I) |
Devang Patel | 2545f7b | 2007-08-09 01:39:01 +0000 | [diff] [blame] | 538 | continue; |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 539 | |
Devang Patel | 2545f7b | 2007-08-09 01:39:01 +0000 | [diff] [blame] | 540 | // Check if I is induction variable increment instruction. |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 541 | if (!IndVarIncrement && I->getOpcode() == Instruction::Add) { |
Devang Patel | 2545f7b | 2007-08-09 01:39:01 +0000 | [diff] [blame] | 542 | |
| 543 | Value *Op0 = I->getOperand(0); |
| 544 | Value *Op1 = I->getOperand(1); |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 545 | PHINode *PN = NULL; |
| 546 | ConstantInt *CI = NULL; |
| 547 | |
| 548 | if ((PN = dyn_cast<PHINode>(Op0))) { |
| 549 | if ((CI = dyn_cast<ConstantInt>(Op1))) |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 550 | IndVarIncrement = I; |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 551 | } else |
| 552 | if ((PN = dyn_cast<PHINode>(Op1))) { |
| 553 | if ((CI = dyn_cast<ConstantInt>(Op0))) |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 554 | IndVarIncrement = I; |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 555 | } |
| 556 | |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 557 | if (IndVarIncrement && PN == IndVar && CI->isOne()) |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 558 | continue; |
| 559 | } |
Devang Patel | 2bcb501 | 2007-08-08 01:51:27 +0000 | [diff] [blame] | 560 | |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 561 | // I is an Exit condition if next instruction is block terminator. |
| 562 | // Exit condition is OK if it compares loop invariant exit value, |
| 563 | // which is checked below. |
Devang Patel | 3719d4f | 2007-08-07 23:17:52 +0000 | [diff] [blame] | 564 | else if (ICmpInst *EC = dyn_cast<ICmpInst>(I)) { |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 565 | if (EC == ExitCondition) |
Devang Patel | 2bcb501 | 2007-08-08 01:51:27 +0000 | [diff] [blame] | 566 | continue; |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 567 | } |
| 568 | |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 569 | if (I == ExitBlock->getTerminator()) |
| 570 | continue; |
| 571 | |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 572 | // Otherwise we have instruction that may not be safe. |
| 573 | return false; |
| 574 | } |
| 575 | |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 576 | // We could not find any reason to consider ExitBlock unsafe. |
| 577 | return true; |
| 578 | } |
| 579 | |
Devang Patel | 0aaeb17 | 2007-08-08 22:25:28 +0000 | [diff] [blame] | 580 | /// Find cost of spliting loop L. Cost is measured in terms of size growth. |
| 581 | /// Size is growth is calculated based on amount of code duplicated in second |
| 582 | /// loop. |
| 583 | unsigned LoopIndexSplit::findSplitCost(Loop *L, SplitInfo &SD) { |
| 584 | |
| 585 | unsigned Cost = 0; |
| 586 | BasicBlock *SDBlock = SD.SplitCondition->getParent(); |
| 587 | for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); |
| 588 | I != E; ++I) { |
| 589 | BasicBlock *BB = *I; |
| 590 | // If a block is not dominated by split condition block then |
| 591 | // it must be duplicated in both loops. |
| 592 | if (!DT->dominates(SDBlock, BB)) |
| 593 | Cost += BB->size(); |
| 594 | } |
| 595 | |
| 596 | return Cost; |
| 597 | } |
| 598 | |
Devang Patel | 60a94c7 | 2007-08-14 18:35:57 +0000 | [diff] [blame] | 599 | /// removeBlocks - Remove basic block DeadBB and all blocks dominated by DeadBB. |
| 600 | /// This routine is used to remove split condition's dead branch, dominated by |
| 601 | /// DeadBB. LiveBB dominates split conidition's other branch. |
| 602 | void LoopIndexSplit::removeBlocks(BasicBlock *DeadBB, Loop *LP, |
| 603 | BasicBlock *LiveBB) { |
Devang Patel | 6a2d6ef | 2007-08-12 07:02:51 +0000 | [diff] [blame] | 604 | |
Devang Patel | f427712 | 2007-08-15 03:31:47 +0000 | [diff] [blame] | 605 | // First update DeadBB's dominance frontier. |
Devang Patel | 9cee7a0 | 2007-08-17 21:59:16 +0000 | [diff] [blame] | 606 | SmallVector<BasicBlock *, 8> FrontierBBs; |
Devang Patel | f427712 | 2007-08-15 03:31:47 +0000 | [diff] [blame] | 607 | DominanceFrontier::iterator DeadBBDF = DF->find(DeadBB); |
| 608 | if (DeadBBDF != DF->end()) { |
| 609 | SmallVector<BasicBlock *, 8> PredBlocks; |
| 610 | |
| 611 | DominanceFrontier::DomSetType DeadBBSet = DeadBBDF->second; |
| 612 | for (DominanceFrontier::DomSetType::iterator DeadBBSetI = DeadBBSet.begin(), |
| 613 | DeadBBSetE = DeadBBSet.end(); DeadBBSetI != DeadBBSetE; ++DeadBBSetI) { |
| 614 | BasicBlock *FrontierBB = *DeadBBSetI; |
Devang Patel | 9cee7a0 | 2007-08-17 21:59:16 +0000 | [diff] [blame] | 615 | FrontierBBs.push_back(FrontierBB); |
| 616 | |
Devang Patel | f427712 | 2007-08-15 03:31:47 +0000 | [diff] [blame] | 617 | // Rremove any PHI incoming edge from blocks dominated by DeadBB. |
| 618 | PredBlocks.clear(); |
| 619 | for(pred_iterator PI = pred_begin(FrontierBB), PE = pred_end(FrontierBB); |
| 620 | PI != PE; ++PI) { |
| 621 | BasicBlock *P = *PI; |
| 622 | if (P == DeadBB || DT->dominates(DeadBB, P)) |
| 623 | PredBlocks.push_back(P); |
Devang Patel | b763961 | 2007-08-13 22:13:24 +0000 | [diff] [blame] | 624 | } |
Devang Patel | 9cee7a0 | 2007-08-17 21:59:16 +0000 | [diff] [blame] | 625 | |
| 626 | BasicBlock *NewDominator = NULL; |
Devang Patel | f427712 | 2007-08-15 03:31:47 +0000 | [diff] [blame] | 627 | for(BasicBlock::iterator FBI = FrontierBB->begin(), FBE = FrontierBB->end(); |
| 628 | FBI != FBE; ++FBI) { |
| 629 | if (PHINode *PN = dyn_cast<PHINode>(FBI)) { |
| 630 | for(SmallVector<BasicBlock *, 8>::iterator PI = PredBlocks.begin(), |
| 631 | PE = PredBlocks.end(); PI != PE; ++PI) { |
| 632 | BasicBlock *P = *PI; |
| 633 | PN->removeIncomingValue(P); |
| 634 | } |
Devang Patel | 9cee7a0 | 2007-08-17 21:59:16 +0000 | [diff] [blame] | 635 | // If we have not identified new dominator then see if we can identify |
| 636 | // one based on remaining incoming PHINode values. |
| 637 | if (NewDominator == NULL && PN->getNumIncomingValues() == 1) |
| 638 | NewDominator = PN->getIncomingBlock(0); |
Devang Patel | f427712 | 2007-08-15 03:31:47 +0000 | [diff] [blame] | 639 | } |
| 640 | else |
| 641 | break; |
Devang Patel | 9cee7a0 | 2007-08-17 21:59:16 +0000 | [diff] [blame] | 642 | } |
Devang Patel | 6a2d6ef | 2007-08-12 07:02:51 +0000 | [diff] [blame] | 643 | } |
Devang Patel | 6a2d6ef | 2007-08-12 07:02:51 +0000 | [diff] [blame] | 644 | } |
Devang Patel | f427712 | 2007-08-15 03:31:47 +0000 | [diff] [blame] | 645 | |
| 646 | // Now remove DeadBB and all nodes dominated by DeadBB in df order. |
| 647 | SmallVector<BasicBlock *, 32> WorkList; |
| 648 | DomTreeNode *DN = DT->getNode(DeadBB); |
| 649 | for (df_iterator<DomTreeNode*> DI = df_begin(DN), |
| 650 | E = df_end(DN); DI != E; ++DI) { |
| 651 | BasicBlock *BB = DI->getBlock(); |
| 652 | WorkList.push_back(BB); |
Devang Patel | 9cee7a0 | 2007-08-17 21:59:16 +0000 | [diff] [blame] | 653 | BB->replaceAllUsesWith(UndefValue::get(Type::LabelTy)); |
Devang Patel | f427712 | 2007-08-15 03:31:47 +0000 | [diff] [blame] | 654 | } |
| 655 | |
| 656 | while (!WorkList.empty()) { |
| 657 | BasicBlock *BB = WorkList.back(); WorkList.pop_back(); |
| 658 | for(BasicBlock::iterator BBI = BB->begin(), BBE = BB->end(); |
| 659 | BBI != BBE; ++BBI) { |
| 660 | Instruction *I = BBI; |
| 661 | I->replaceAllUsesWith(UndefValue::get(I->getType())); |
| 662 | I->eraseFromParent(); |
| 663 | } |
| 664 | LPM->deleteSimpleAnalysisValue(BB, LP); |
| 665 | DT->eraseNode(BB); |
| 666 | DF->removeBlock(BB); |
| 667 | LI->removeBlock(BB); |
| 668 | BB->eraseFromParent(); |
| 669 | } |
Devang Patel | 9cee7a0 | 2007-08-17 21:59:16 +0000 | [diff] [blame] | 670 | |
| 671 | // Update Frontier BBs' dominator info. |
| 672 | while (!FrontierBBs.empty()) { |
| 673 | BasicBlock *FBB = FrontierBBs.back(); FrontierBBs.pop_back(); |
| 674 | BasicBlock *NewDominator = FBB->getSinglePredecessor(); |
| 675 | if (!NewDominator) { |
| 676 | pred_iterator PI = pred_begin(FBB), PE = pred_end(FBB); |
| 677 | NewDominator = *PI; |
| 678 | ++PI; |
| 679 | if (NewDominator != LiveBB) { |
| 680 | for(; PI != PE; ++PI) { |
| 681 | BasicBlock *P = *PI; |
| 682 | if (P == LiveBB) { |
| 683 | NewDominator = LiveBB; |
| 684 | break; |
| 685 | } |
| 686 | NewDominator = DT->findNearestCommonDominator(NewDominator, P); |
| 687 | } |
| 688 | } |
| 689 | } |
| 690 | assert (NewDominator && "Unable to fix dominator info."); |
| 691 | DT->changeImmediateDominator(FBB, NewDominator); |
| 692 | DF->changeImmediateDominator(FBB, NewDominator, DT); |
| 693 | } |
| 694 | |
Devang Patel | 6a2d6ef | 2007-08-12 07:02:51 +0000 | [diff] [blame] | 695 | } |
| 696 | |
Devang Patel | c8dadbf | 2007-08-08 21:02:17 +0000 | [diff] [blame] | 697 | bool LoopIndexSplit::splitLoop(SplitInfo &SD) { |
Devang Patel | f824fb4 | 2007-08-10 00:53:35 +0000 | [diff] [blame] | 698 | |
| 699 | BasicBlock *Preheader = L->getLoopPreheader(); |
Devang Patel | 81fcdfb | 2007-08-15 02:14:55 +0000 | [diff] [blame] | 700 | BasicBlock *SplitBlock = SD.SplitCondition->getParent(); |
| 701 | BasicBlock *Latch = L->getLoopLatch(); |
| 702 | BasicBlock *Header = L->getHeader(); |
| 703 | BranchInst *SplitTerminator = cast<BranchInst>(SplitBlock->getTerminator()); |
| 704 | |
| 705 | // FIXME - Unable to handle triange loops at the moment. |
| 706 | // In triangle loop, split condition is in header and one of the |
| 707 | // the split destination is loop latch. If split condition is EQ |
| 708 | // then such loops are already handle in processOneIterationLoop(). |
| 709 | if (Header == SplitBlock |
| 710 | && (Latch == SplitTerminator->getSuccessor(0) |
| 711 | || Latch == SplitTerminator->getSuccessor(1))) |
| 712 | return false; |
Devang Patel | f824fb4 | 2007-08-10 00:53:35 +0000 | [diff] [blame] | 713 | |
Devang Patel | 9cee7a0 | 2007-08-17 21:59:16 +0000 | [diff] [blame] | 714 | |
| 715 | BasicBlock *Succ0 = SplitTerminator->getSuccessor(0); |
| 716 | BasicBlock *Succ1 = SplitTerminator->getSuccessor(1); |
| 717 | if (DT->dominates(Succ0, Latch) || DT->dominates(Succ1, Latch)) |
| 718 | return false; |
| 719 | |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 720 | // True loop is original loop. False loop is cloned loop. |
Devang Patel | f824fb4 | 2007-08-10 00:53:35 +0000 | [diff] [blame] | 721 | |
| 722 | bool SignedPredicate = ExitCondition->isSignedPredicate(); |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 723 | //[*] Calculate True loop's new Exit Value in loop preheader. |
Devang Patel | f824fb4 | 2007-08-10 00:53:35 +0000 | [diff] [blame] | 724 | // TLExitValue = min(SplitValue, ExitValue) |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 725 | //[*] Calculate False loop's new Start Value in loop preheader. |
Devang Patel | f824fb4 | 2007-08-10 00:53:35 +0000 | [diff] [blame] | 726 | // FLStartValue = min(SplitValue, TrueLoop.StartValue) |
| 727 | Value *TLExitValue = NULL; |
| 728 | Value *FLStartValue = NULL; |
| 729 | if (isa<ConstantInt>(SD.SplitValue)) { |
| 730 | TLExitValue = SD.SplitValue; |
| 731 | FLStartValue = SD.SplitValue; |
| 732 | } |
| 733 | else { |
| 734 | Value *C1 = new ICmpInst(SignedPredicate ? |
| 735 | ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT, |
Devang Patel | 6a2d6ef | 2007-08-12 07:02:51 +0000 | [diff] [blame] | 736 | SD.SplitValue, |
| 737 | ExitCondition->getOperand(ExitValueNum), |
| 738 | "lsplit.ev", |
Devang Patel | f824fb4 | 2007-08-10 00:53:35 +0000 | [diff] [blame] | 739 | Preheader->getTerminator()); |
Devang Patel | 6a2d6ef | 2007-08-12 07:02:51 +0000 | [diff] [blame] | 740 | TLExitValue = new SelectInst(C1, SD.SplitValue, |
| 741 | ExitCondition->getOperand(ExitValueNum), |
Devang Patel | f824fb4 | 2007-08-10 00:53:35 +0000 | [diff] [blame] | 742 | "lsplit.ev", Preheader->getTerminator()); |
| 743 | |
| 744 | Value *C2 = new ICmpInst(SignedPredicate ? |
| 745 | ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT, |
| 746 | SD.SplitValue, StartValue, "lsplit.sv", |
| 747 | Preheader->getTerminator()); |
| 748 | FLStartValue = new SelectInst(C2, SD.SplitValue, StartValue, |
| 749 | "lsplit.sv", Preheader->getTerminator()); |
| 750 | } |
Devang Patel | 901f67e | 2007-08-10 18:07:13 +0000 | [diff] [blame] | 751 | |
Devang Patel | 6a2d6ef | 2007-08-12 07:02:51 +0000 | [diff] [blame] | 752 | //[*] Clone loop. Avoid true destination of split condition and |
| 753 | // the blocks dominated by true destination. |
| 754 | DenseMap<const Value *, Value *> ValueMap; |
| 755 | Loop *FalseLoop = CloneLoop(L, LPM, LI, ValueMap, this); |
| 756 | BasicBlock *FalseHeader = FalseLoop->getHeader(); |
| 757 | |
| 758 | //[*] True loop's exit edge enters False loop. |
| 759 | PHINode *IndVarClone = cast<PHINode>(ValueMap[IndVar]); |
Devang Patel | 901f67e | 2007-08-10 18:07:13 +0000 | [diff] [blame] | 760 | BasicBlock *ExitBlock = ExitCondition->getParent(); |
| 761 | BranchInst *ExitInsn = dyn_cast<BranchInst>(ExitBlock->getTerminator()); |
| 762 | assert (ExitInsn && "Unable to find suitable loop exit branch"); |
| 763 | BasicBlock *ExitDest = ExitInsn->getSuccessor(1); |
Devang Patel | 6a2d6ef | 2007-08-12 07:02:51 +0000 | [diff] [blame] | 764 | |
Devang Patel | 59e0c06 | 2007-08-14 01:30:57 +0000 | [diff] [blame] | 765 | if (L->contains(ExitDest)) { |
| 766 | ExitDest = ExitInsn->getSuccessor(0); |
| 767 | ExitInsn->setSuccessor(0, FalseHeader); |
| 768 | } else |
| 769 | ExitInsn->setSuccessor(1, FalseHeader); |
| 770 | |
| 771 | // Collect inverse map of Header PHINodes. |
| 772 | DenseMap<Value *, Value *> InverseMap; |
| 773 | for (BasicBlock::iterator BI = L->getHeader()->begin(), |
| 774 | BE = L->getHeader()->end(); BI != BE; ++BI) { |
| 775 | if (PHINode *PN = dyn_cast<PHINode>(BI)) { |
| 776 | PHINode *PNClone = cast<PHINode>(ValueMap[PN]); |
| 777 | InverseMap[PNClone] = PN; |
| 778 | } else |
| 779 | break; |
| 780 | } |
| 781 | |
| 782 | // Update False loop's header |
Devang Patel | 6a2d6ef | 2007-08-12 07:02:51 +0000 | [diff] [blame] | 783 | for (BasicBlock::iterator BI = FalseHeader->begin(), BE = FalseHeader->end(); |
| 784 | BI != BE; ++BI) { |
| 785 | if (PHINode *PN = dyn_cast<PHINode>(BI)) { |
| 786 | PN->removeIncomingValue(Preheader); |
| 787 | if (PN == IndVarClone) |
| 788 | PN->addIncoming(FLStartValue, ExitBlock); |
Devang Patel | 59e0c06 | 2007-08-14 01:30:57 +0000 | [diff] [blame] | 789 | else { |
| 790 | PHINode *OrigPN = cast<PHINode>(InverseMap[PN]); |
| 791 | Value *V2 = OrigPN->getIncomingValueForBlock(ExitBlock); |
| 792 | PN->addIncoming(V2, ExitBlock); |
| 793 | } |
| 794 | } else |
Devang Patel | 6a2d6ef | 2007-08-12 07:02:51 +0000 | [diff] [blame] | 795 | break; |
| 796 | } |
| 797 | |
Devang Patel | 59e0c06 | 2007-08-14 01:30:57 +0000 | [diff] [blame] | 798 | // Update ExitDest. Now it's predecessor is False loop's exit block. |
| 799 | BasicBlock *ExitBlockClone = cast<BasicBlock>(ValueMap[ExitBlock]); |
| 800 | for (BasicBlock::iterator BI = ExitDest->begin(), BE = ExitDest->end(); |
| 801 | BI != BE; ++BI) { |
| 802 | if (PHINode *PN = dyn_cast<PHINode>(BI)) { |
| 803 | PN->addIncoming(ValueMap[PN->getIncomingValueForBlock(ExitBlock)], ExitBlockClone); |
| 804 | PN->removeIncomingValue(ExitBlock); |
| 805 | } else |
| 806 | break; |
| 807 | } |
Devang Patel | 6a2d6ef | 2007-08-12 07:02:51 +0000 | [diff] [blame] | 808 | |
Devang Patel | b763961 | 2007-08-13 22:13:24 +0000 | [diff] [blame] | 809 | if (DT) { |
| 810 | DT->changeImmediateDominator(FalseHeader, ExitBlock); |
| 811 | DT->changeImmediateDominator(ExitDest, cast<BasicBlock>(ValueMap[ExitBlock])); |
| 812 | } |
| 813 | |
Devang Patel | 901f67e | 2007-08-10 18:07:13 +0000 | [diff] [blame] | 814 | assert (!L->contains(ExitDest) && " Unable to find exit edge destination"); |
Devang Patel | 901f67e | 2007-08-10 18:07:13 +0000 | [diff] [blame] | 815 | |
Devang Patel | 6a2d6ef | 2007-08-12 07:02:51 +0000 | [diff] [blame] | 816 | //[*] Split Exit Edge. |
| 817 | SplitEdge(ExitBlock, FalseHeader, this); |
Devang Patel | 901f67e | 2007-08-10 18:07:13 +0000 | [diff] [blame] | 818 | |
Devang Patel | 61571ca | 2007-08-10 00:33:50 +0000 | [diff] [blame] | 819 | //[*] Eliminate split condition's false branch from True loop. |
Devang Patel | 6a2d6ef | 2007-08-12 07:02:51 +0000 | [diff] [blame] | 820 | BranchInst *BR = cast<BranchInst>(SplitBlock->getTerminator()); |
| 821 | BasicBlock *FBB = BR->getSuccessor(1); |
| 822 | BR->setUnconditionalDest(BR->getSuccessor(0)); |
Devang Patel | 60a94c7 | 2007-08-14 18:35:57 +0000 | [diff] [blame] | 823 | removeBlocks(FBB, L, BR->getSuccessor(0)); |
Devang Patel | 6a2d6ef | 2007-08-12 07:02:51 +0000 | [diff] [blame] | 824 | |
| 825 | //[*] Update True loop's exit value using new exit value. |
| 826 | ExitCondition->setOperand(ExitValueNum, TLExitValue); |
| 827 | |
| 828 | //[*] Eliminate split condition's true branch in False loop CFG. |
Devang Patel | 6a2d6ef | 2007-08-12 07:02:51 +0000 | [diff] [blame] | 829 | BasicBlock *FSplitBlock = cast<BasicBlock>(ValueMap[SplitBlock]); |
| 830 | BranchInst *FBR = cast<BranchInst>(FSplitBlock->getTerminator()); |
| 831 | BasicBlock *TBB = FBR->getSuccessor(0); |
| 832 | FBR->setUnconditionalDest(FBR->getSuccessor(1)); |
Devang Patel | 60a94c7 | 2007-08-14 18:35:57 +0000 | [diff] [blame] | 833 | removeBlocks(TBB, FalseLoop, cast<BasicBlock>(FBR->getSuccessor(0))); |
Devang Patel | 6a2d6ef | 2007-08-12 07:02:51 +0000 | [diff] [blame] | 834 | |
Devang Patel | 6a2d6ef | 2007-08-12 07:02:51 +0000 | [diff] [blame] | 835 | return true; |
Devang Patel | bc5fe63 | 2007-08-07 00:25:56 +0000 | [diff] [blame] | 836 | } |
Devang Patel | 6a2d6ef | 2007-08-12 07:02:51 +0000 | [diff] [blame] | 837 | |