Chris Lattner | 476e6df | 2001-12-03 17:28:42 +0000 | [diff] [blame] | 1 | //===- IndVarSimplify.cpp - Induction Variable Elimination ----------------===// |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by the LLVM research group and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 476e6df | 2001-12-03 17:28:42 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 10 | // This transformation analyzes and transforms the induction variables (and |
| 11 | // computations derived from them) into simpler forms suitable for subsequent |
| 12 | // analysis and transformation. |
| 13 | // |
| 14 | // This transformation make the following changes to each loop with an |
| 15 | // identifiable induction variable: |
| 16 | // 1. All loops are transformed to have a SINGLE canonical induction variable |
| 17 | // which starts at zero and steps by one. |
| 18 | // 2. The canonical induction variable is guaranteed to be the first PHI node |
| 19 | // in the loop header block. |
| 20 | // 3. Any pointer arithmetic recurrences are raised to use array subscripts. |
| 21 | // |
| 22 | // If the trip count of a loop is computable, this pass also makes the following |
| 23 | // changes: |
| 24 | // 1. The exit condition for the loop is canonicalized to compare the |
| 25 | // induction value against the exit value. This turns loops like: |
| 26 | // 'for (i = 7; i*i < 1000; ++i)' into 'for (i = 0; i != 25; ++i)' |
| 27 | // 2. Any use outside of the loop of an expression derived from the indvar |
| 28 | // is changed to compute the derived value outside of the loop, eliminating |
| 29 | // the dependence on the exit value of the induction variable. If the only |
| 30 | // purpose of the loop is to compute the exit value of some derived |
| 31 | // expression, this transformation will make the loop dead. |
| 32 | // |
| 33 | // This transformation should be followed by strength reduction after all of the |
| 34 | // desired loop transformations have been performed. Additionally, on targets |
| 35 | // where it is profitable, the loop could be transformed to count down to zero |
| 36 | // (the "do loop" optimization). |
Chris Lattner | 476e6df | 2001-12-03 17:28:42 +0000 | [diff] [blame] | 37 | // |
| 38 | //===----------------------------------------------------------------------===// |
| 39 | |
Chris Lattner | b4cfa7f | 2002-05-07 20:03:00 +0000 | [diff] [blame] | 40 | #include "llvm/Transforms/Scalar.h" |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 41 | #include "llvm/BasicBlock.h" |
Chris Lattner | 0cec5cb | 2004-04-15 15:21:43 +0000 | [diff] [blame] | 42 | #include "llvm/Constants.h" |
Chris Lattner | 6449dce | 2003-12-22 05:02:01 +0000 | [diff] [blame] | 43 | #include "llvm/Instructions.h" |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 44 | #include "llvm/Type.h" |
Chris Lattner | 0cec5cb | 2004-04-15 15:21:43 +0000 | [diff] [blame] | 45 | #include "llvm/Analysis/ScalarEvolutionExpressions.h" |
John Criswell | b22e9b4 | 2003-12-18 17:19:19 +0000 | [diff] [blame] | 46 | #include "llvm/Analysis/LoopInfo.h" |
Chris Lattner | 83d485b | 2002-02-12 22:39:50 +0000 | [diff] [blame] | 47 | #include "llvm/Support/CFG.h" |
John Criswell | b22e9b4 | 2003-12-18 17:19:19 +0000 | [diff] [blame] | 48 | #include "llvm/Transforms/Utils/Local.h" |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 49 | #include "Support/CommandLine.h" |
Chris Lattner | bf3a099 | 2002-10-01 22:38:41 +0000 | [diff] [blame] | 50 | #include "Support/Statistic.h" |
John Criswell | b22e9b4 | 2003-12-18 17:19:19 +0000 | [diff] [blame] | 51 | using namespace llvm; |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 52 | |
Chris Lattner | 4184bcc | 2002-09-10 05:24:05 +0000 | [diff] [blame] | 53 | namespace { |
Chris Lattner | bf3a099 | 2002-10-01 22:38:41 +0000 | [diff] [blame] | 54 | Statistic<> NumRemoved ("indvars", "Number of aux indvars removed"); |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 55 | Statistic<> NumPointer ("indvars", "Number of pointer indvars promoted"); |
Chris Lattner | 4e621cd | 2003-09-10 05:24:46 +0000 | [diff] [blame] | 56 | Statistic<> NumInserted("indvars", "Number of canonical indvars added"); |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 57 | Statistic<> NumReplaced("indvars", "Number of exit values replaced"); |
| 58 | Statistic<> NumLFTR ("indvars", "Number of loop exit tests replaced"); |
Chris Lattner | d3678bc | 2003-12-22 03:58:44 +0000 | [diff] [blame] | 59 | |
| 60 | class IndVarSimplify : public FunctionPass { |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 61 | LoopInfo *LI; |
| 62 | ScalarEvolution *SE; |
Chris Lattner | 7e755e4 | 2003-12-23 07:47:09 +0000 | [diff] [blame] | 63 | bool Changed; |
Chris Lattner | d3678bc | 2003-12-22 03:58:44 +0000 | [diff] [blame] | 64 | public: |
| 65 | virtual bool runOnFunction(Function &) { |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 66 | LI = &getAnalysis<LoopInfo>(); |
| 67 | SE = &getAnalysis<ScalarEvolution>(); |
Chris Lattner | 7e755e4 | 2003-12-23 07:47:09 +0000 | [diff] [blame] | 68 | Changed = false; |
| 69 | |
Chris Lattner | d3678bc | 2003-12-22 03:58:44 +0000 | [diff] [blame] | 70 | // Induction Variables live in the header nodes of loops |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 71 | for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I) |
Chris Lattner | 59d2d7f | 2004-01-08 00:09:44 +0000 | [diff] [blame] | 72 | runOnLoop(*I); |
Chris Lattner | d3678bc | 2003-12-22 03:58:44 +0000 | [diff] [blame] | 73 | return Changed; |
| 74 | } |
| 75 | |
Chris Lattner | d3678bc | 2003-12-22 03:58:44 +0000 | [diff] [blame] | 76 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
Chris Lattner | d3678bc | 2003-12-22 03:58:44 +0000 | [diff] [blame] | 77 | AU.addRequiredID(LoopSimplifyID); |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 78 | AU.addRequired<ScalarEvolution>(); |
| 79 | AU.addRequired<LoopInfo>(); |
Chris Lattner | d3678bc | 2003-12-22 03:58:44 +0000 | [diff] [blame] | 80 | AU.addPreservedID(LoopSimplifyID); |
| 81 | AU.setPreservesCFG(); |
| 82 | } |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 83 | private: |
| 84 | void runOnLoop(Loop *L); |
| 85 | void EliminatePointerRecurrence(PHINode *PN, BasicBlock *Preheader, |
| 86 | std::set<Instruction*> &DeadInsts); |
| 87 | void LinearFunctionTestReplace(Loop *L, SCEV *IterationCount, |
Chris Lattner | 0cec5cb | 2004-04-15 15:21:43 +0000 | [diff] [blame] | 88 | ScalarEvolutionRewriter &RW); |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 89 | void RewriteLoopExitValues(Loop *L); |
| 90 | |
| 91 | void DeleteTriviallyDeadInstructions(std::set<Instruction*> &Insts); |
Chris Lattner | d3678bc | 2003-12-22 03:58:44 +0000 | [diff] [blame] | 92 | }; |
| 93 | RegisterOpt<IndVarSimplify> X("indvars", "Canonicalize Induction Variables"); |
Chris Lattner | 4184bcc | 2002-09-10 05:24:05 +0000 | [diff] [blame] | 94 | } |
Chris Lattner | 91daaab | 2001-12-04 04:32:29 +0000 | [diff] [blame] | 95 | |
Chris Lattner | d3678bc | 2003-12-22 03:58:44 +0000 | [diff] [blame] | 96 | Pass *llvm::createIndVarSimplifyPass() { |
| 97 | return new IndVarSimplify(); |
Chris Lattner | 91daaab | 2001-12-04 04:32:29 +0000 | [diff] [blame] | 98 | } |
| 99 | |
Chris Lattner | d3678bc | 2003-12-22 03:58:44 +0000 | [diff] [blame] | 100 | |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 101 | /// DeleteTriviallyDeadInstructions - If any of the instructions is the |
| 102 | /// specified set are trivially dead, delete them and see if this makes any of |
| 103 | /// their operands subsequently dead. |
| 104 | void IndVarSimplify:: |
| 105 | DeleteTriviallyDeadInstructions(std::set<Instruction*> &Insts) { |
| 106 | while (!Insts.empty()) { |
| 107 | Instruction *I = *Insts.begin(); |
| 108 | Insts.erase(Insts.begin()); |
| 109 | if (isInstructionTriviallyDead(I)) { |
| 110 | for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) |
| 111 | if (Instruction *U = dyn_cast<Instruction>(I->getOperand(i))) |
| 112 | Insts.insert(U); |
| 113 | SE->deleteInstructionFromRecords(I); |
| 114 | I->getParent()->getInstList().erase(I); |
| 115 | Changed = true; |
| 116 | } |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | |
| 121 | /// EliminatePointerRecurrence - Check to see if this is a trivial GEP pointer |
| 122 | /// recurrence. If so, change it into an integer recurrence, permitting |
| 123 | /// analysis by the SCEV routines. |
| 124 | void IndVarSimplify::EliminatePointerRecurrence(PHINode *PN, |
| 125 | BasicBlock *Preheader, |
| 126 | std::set<Instruction*> &DeadInsts) { |
| 127 | assert(PN->getNumIncomingValues() == 2 && "Noncanonicalized loop!"); |
| 128 | unsigned PreheaderIdx = PN->getBasicBlockIndex(Preheader); |
| 129 | unsigned BackedgeIdx = PreheaderIdx^1; |
| 130 | if (GetElementPtrInst *GEPI = |
| 131 | dyn_cast<GetElementPtrInst>(PN->getIncomingValue(BackedgeIdx))) |
| 132 | if (GEPI->getOperand(0) == PN) { |
| 133 | assert(GEPI->getNumOperands() == 2 && "GEP types must mismatch!"); |
| 134 | |
| 135 | // Okay, we found a pointer recurrence. Transform this pointer |
| 136 | // recurrence into an integer recurrence. Compute the value that gets |
| 137 | // added to the pointer at every iteration. |
| 138 | Value *AddedVal = GEPI->getOperand(1); |
| 139 | |
| 140 | // Insert a new integer PHI node into the top of the block. |
| 141 | PHINode *NewPhi = new PHINode(AddedVal->getType(), |
| 142 | PN->getName()+".rec", PN); |
| 143 | NewPhi->addIncoming(Constant::getNullValue(NewPhi->getType()), |
| 144 | Preheader); |
| 145 | // Create the new add instruction. |
| 146 | Value *NewAdd = BinaryOperator::create(Instruction::Add, NewPhi, |
| 147 | AddedVal, |
| 148 | GEPI->getName()+".rec", GEPI); |
| 149 | NewPhi->addIncoming(NewAdd, PN->getIncomingBlock(BackedgeIdx)); |
| 150 | |
| 151 | // Update the existing GEP to use the recurrence. |
| 152 | GEPI->setOperand(0, PN->getIncomingValue(PreheaderIdx)); |
| 153 | |
| 154 | // Update the GEP to use the new recurrence we just inserted. |
| 155 | GEPI->setOperand(1, NewAdd); |
| 156 | |
| 157 | // Finally, if there are any other users of the PHI node, we must |
| 158 | // insert a new GEP instruction that uses the pre-incremented version |
| 159 | // of the induction amount. |
| 160 | if (!PN->use_empty()) { |
| 161 | BasicBlock::iterator InsertPos = PN; ++InsertPos; |
| 162 | while (isa<PHINode>(InsertPos)) ++InsertPos; |
| 163 | std::string Name = PN->getName(); PN->setName(""); |
| 164 | Value *PreInc = |
| 165 | new GetElementPtrInst(PN->getIncomingValue(PreheaderIdx), |
| 166 | std::vector<Value*>(1, NewPhi), Name, |
| 167 | InsertPos); |
| 168 | PN->replaceAllUsesWith(PreInc); |
| 169 | } |
| 170 | |
| 171 | // Delete the old PHI for sure, and the GEP if its otherwise unused. |
| 172 | DeadInsts.insert(PN); |
| 173 | |
| 174 | ++NumPointer; |
| 175 | Changed = true; |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | /// LinearFunctionTestReplace - This method rewrites the exit condition of the |
Chris Lattner | 0cec5cb | 2004-04-15 15:21:43 +0000 | [diff] [blame] | 180 | /// loop to be a canonical != comparison against the incremented loop induction |
| 181 | /// variable. This pass is able to rewrite the exit tests of any loop where the |
| 182 | /// SCEV analysis can determine a loop-invariant trip count of the loop, which |
| 183 | /// is actually a much broader range than just linear tests. |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 184 | void IndVarSimplify::LinearFunctionTestReplace(Loop *L, SCEV *IterationCount, |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 185 | ScalarEvolutionRewriter &RW) { |
| 186 | // Find the exit block for the loop. We can currently only handle loops with |
| 187 | // a single exit. |
| 188 | if (L->getExitBlocks().size() != 1) return; |
| 189 | BasicBlock *ExitBlock = L->getExitBlocks()[0]; |
| 190 | |
| 191 | // Make sure there is only one predecessor block in the loop. |
| 192 | BasicBlock *ExitingBlock = 0; |
| 193 | for (pred_iterator PI = pred_begin(ExitBlock), PE = pred_end(ExitBlock); |
| 194 | PI != PE; ++PI) |
| 195 | if (L->contains(*PI)) { |
| 196 | if (ExitingBlock == 0) |
| 197 | ExitingBlock = *PI; |
| 198 | else |
| 199 | return; // Multiple exits from loop to this block. |
| 200 | } |
| 201 | assert(ExitingBlock && "Loop info is broken"); |
| 202 | |
| 203 | if (!isa<BranchInst>(ExitingBlock->getTerminator())) |
| 204 | return; // Can't rewrite non-branch yet |
| 205 | BranchInst *BI = cast<BranchInst>(ExitingBlock->getTerminator()); |
| 206 | assert(BI->isConditional() && "Must be conditional to be part of loop!"); |
| 207 | |
| 208 | std::set<Instruction*> InstructionsToDelete; |
| 209 | if (Instruction *Cond = dyn_cast<Instruction>(BI->getCondition())) |
| 210 | InstructionsToDelete.insert(Cond); |
| 211 | |
Chris Lattner | d7a559e | 2004-04-15 20:26:22 +0000 | [diff] [blame] | 212 | // If the exiting block is not the same as the backedge block, we must compare |
| 213 | // against the preincremented value, otherwise we prefer to compare against |
| 214 | // the post-incremented value. |
| 215 | BasicBlock *Header = L->getHeader(); |
| 216 | pred_iterator HPI = pred_begin(Header); |
| 217 | assert(HPI != pred_end(Header) && "Loop with zero preds???"); |
| 218 | if (!L->contains(*HPI)) ++HPI; |
| 219 | assert(HPI != pred_end(Header) && L->contains(*HPI) && |
| 220 | "No backedge in loop?"); |
Chris Lattner | 0cec5cb | 2004-04-15 15:21:43 +0000 | [diff] [blame] | 221 | |
Chris Lattner | d7a559e | 2004-04-15 20:26:22 +0000 | [diff] [blame] | 222 | SCEVHandle TripCount = IterationCount; |
| 223 | Value *IndVar; |
| 224 | if (*HPI == ExitingBlock) { |
| 225 | // The IterationCount expression contains the number of times that the |
| 226 | // backedge actually branches to the loop header. This is one less than the |
| 227 | // number of times the loop executes, so add one to it. |
| 228 | Constant *OneC = ConstantInt::get(IterationCount->getType(), 1); |
| 229 | TripCount = SCEVAddExpr::get(IterationCount, SCEVUnknown::get(OneC)); |
| 230 | IndVar = L->getCanonicalInductionVariableIncrement(); |
| 231 | } else { |
| 232 | // We have to use the preincremented value... |
| 233 | IndVar = L->getCanonicalInductionVariable(); |
| 234 | } |
Chris Lattner | 0cec5cb | 2004-04-15 15:21:43 +0000 | [diff] [blame] | 235 | |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 236 | // Expand the code for the iteration count into the preheader of the loop. |
| 237 | BasicBlock *Preheader = L->getLoopPreheader(); |
Chris Lattner | 0cec5cb | 2004-04-15 15:21:43 +0000 | [diff] [blame] | 238 | Value *ExitCnt = RW.ExpandCodeFor(TripCount, Preheader->getTerminator(), |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 239 | IndVar->getType()); |
| 240 | |
| 241 | // Insert a new setne or seteq instruction before the branch. |
| 242 | Instruction::BinaryOps Opcode; |
| 243 | if (L->contains(BI->getSuccessor(0))) |
| 244 | Opcode = Instruction::SetNE; |
| 245 | else |
| 246 | Opcode = Instruction::SetEQ; |
| 247 | |
| 248 | Value *Cond = new SetCondInst(Opcode, IndVar, ExitCnt, "exitcond", BI); |
| 249 | BI->setCondition(Cond); |
| 250 | ++NumLFTR; |
| 251 | Changed = true; |
| 252 | |
| 253 | DeleteTriviallyDeadInstructions(InstructionsToDelete); |
| 254 | } |
| 255 | |
| 256 | |
| 257 | /// RewriteLoopExitValues - Check to see if this loop has a computable |
| 258 | /// loop-invariant execution count. If so, this means that we can compute the |
| 259 | /// final value of any expressions that are recurrent in the loop, and |
| 260 | /// substitute the exit values from the loop into any instructions outside of |
| 261 | /// the loop that use the final values of the current expressions. |
| 262 | void IndVarSimplify::RewriteLoopExitValues(Loop *L) { |
| 263 | BasicBlock *Preheader = L->getLoopPreheader(); |
| 264 | |
| 265 | // Scan all of the instructions in the loop, looking at those that have |
| 266 | // extra-loop users and which are recurrences. |
| 267 | ScalarEvolutionRewriter Rewriter(*SE, *LI); |
| 268 | |
| 269 | // We insert the code into the preheader of the loop if the loop contains |
| 270 | // multiple exit blocks, or in the exit block if there is exactly one. |
| 271 | BasicBlock *BlockToInsertInto; |
| 272 | if (L->getExitBlocks().size() == 1) |
| 273 | BlockToInsertInto = L->getExitBlocks()[0]; |
| 274 | else |
| 275 | BlockToInsertInto = Preheader; |
| 276 | BasicBlock::iterator InsertPt = BlockToInsertInto->begin(); |
| 277 | while (isa<PHINode>(InsertPt)) ++InsertPt; |
| 278 | |
| 279 | std::set<Instruction*> InstructionsToDelete; |
| 280 | |
| 281 | for (unsigned i = 0, e = L->getBlocks().size(); i != e; ++i) |
| 282 | if (LI->getLoopFor(L->getBlocks()[i]) == L) { // Not in a subloop... |
| 283 | BasicBlock *BB = L->getBlocks()[i]; |
| 284 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
| 285 | if (I->getType()->isInteger()) { // Is an integer instruction |
| 286 | SCEVHandle SH = SE->getSCEV(I); |
| 287 | if (SH->hasComputableLoopEvolution(L)) { // Varies predictably |
| 288 | // Find out if this predictably varying value is actually used |
| 289 | // outside of the loop. "extra" as opposed to "intra". |
| 290 | std::vector<User*> ExtraLoopUsers; |
| 291 | for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); |
| 292 | UI != E; ++UI) |
| 293 | if (!L->contains(cast<Instruction>(*UI)->getParent())) |
| 294 | ExtraLoopUsers.push_back(*UI); |
| 295 | if (!ExtraLoopUsers.empty()) { |
| 296 | // Okay, this instruction has a user outside of the current loop |
| 297 | // and varies predictably in this loop. Evaluate the value it |
| 298 | // contains when the loop exits, and insert code for it. |
| 299 | SCEVHandle ExitValue = SE->getSCEVAtScope(I,L->getParentLoop()); |
| 300 | if (!isa<SCEVCouldNotCompute>(ExitValue)) { |
| 301 | Changed = true; |
| 302 | ++NumReplaced; |
| 303 | Value *NewVal = Rewriter.ExpandCodeFor(ExitValue, InsertPt, |
| 304 | I->getType()); |
| 305 | |
| 306 | // Rewrite any users of the computed value outside of the loop |
| 307 | // with the newly computed value. |
| 308 | for (unsigned i = 0, e = ExtraLoopUsers.size(); i != e; ++i) |
| 309 | ExtraLoopUsers[i]->replaceUsesOfWith(I, NewVal); |
| 310 | |
| 311 | // If this instruction is dead now, schedule it to be removed. |
| 312 | if (I->use_empty()) |
| 313 | InstructionsToDelete.insert(I); |
| 314 | } |
| 315 | } |
| 316 | } |
| 317 | } |
| 318 | } |
| 319 | |
| 320 | DeleteTriviallyDeadInstructions(InstructionsToDelete); |
| 321 | } |
| 322 | |
| 323 | |
| 324 | void IndVarSimplify::runOnLoop(Loop *L) { |
| 325 | // First step. Check to see if there are any trivial GEP pointer recurrences. |
| 326 | // If there are, change them into integer recurrences, permitting analysis by |
| 327 | // the SCEV routines. |
| 328 | // |
| 329 | BasicBlock *Header = L->getHeader(); |
| 330 | BasicBlock *Preheader = L->getLoopPreheader(); |
| 331 | |
| 332 | std::set<Instruction*> DeadInsts; |
| 333 | for (BasicBlock::iterator I = Header->begin(); |
| 334 | PHINode *PN = dyn_cast<PHINode>(I); ++I) |
| 335 | if (isa<PointerType>(PN->getType())) |
| 336 | EliminatePointerRecurrence(PN, Preheader, DeadInsts); |
| 337 | |
| 338 | if (!DeadInsts.empty()) |
| 339 | DeleteTriviallyDeadInstructions(DeadInsts); |
| 340 | |
| 341 | |
| 342 | // Next, transform all loops nesting inside of this loop. |
| 343 | for (LoopInfo::iterator I = L->begin(), E = L->end(); I != E; ++I) |
Chris Lattner | 59d2d7f | 2004-01-08 00:09:44 +0000 | [diff] [blame] | 344 | runOnLoop(*I); |
Chris Lattner | d3678bc | 2003-12-22 03:58:44 +0000 | [diff] [blame] | 345 | |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 346 | // Check to see if this loop has a computable loop-invariant execution count. |
| 347 | // If so, this means that we can compute the final value of any expressions |
| 348 | // that are recurrent in the loop, and substitute the exit values from the |
| 349 | // loop into any instructions outside of the loop that use the final values of |
| 350 | // the current expressions. |
Chris Lattner | 0b18c1d | 2002-05-10 15:38:35 +0000 | [diff] [blame] | 351 | // |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 352 | SCEVHandle IterationCount = SE->getIterationCount(L); |
| 353 | if (!isa<SCEVCouldNotCompute>(IterationCount)) |
| 354 | RewriteLoopExitValues(L); |
Chris Lattner | 476e6df | 2001-12-03 17:28:42 +0000 | [diff] [blame] | 355 | |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 356 | // Next, analyze all of the induction variables in the loop, canonicalizing |
| 357 | // auxillary induction variables. |
| 358 | std::vector<std::pair<PHINode*, SCEVHandle> > IndVars; |
| 359 | |
| 360 | for (BasicBlock::iterator I = Header->begin(); |
| 361 | PHINode *PN = dyn_cast<PHINode>(I); ++I) |
| 362 | if (PN->getType()->isInteger()) { // FIXME: when we have fast-math, enable! |
| 363 | SCEVHandle SCEV = SE->getSCEV(PN); |
| 364 | if (SCEV->hasComputableLoopEvolution(L)) |
| 365 | if (SE->shouldSubstituteIndVar(SCEV)) // HACK! |
| 366 | IndVars.push_back(std::make_pair(PN, SCEV)); |
| 367 | } |
| 368 | |
| 369 | // If there are no induction variables in the loop, there is nothing more to |
| 370 | // do. |
Chris Lattner | 7e755e4 | 2003-12-23 07:47:09 +0000 | [diff] [blame] | 371 | if (IndVars.empty()) return; |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 372 | |
| 373 | // Compute the type of the largest recurrence expression. |
Chris Lattner | 476e6df | 2001-12-03 17:28:42 +0000 | [diff] [blame] | 374 | // |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 375 | const Type *LargestType = IndVars[0].first->getType(); |
| 376 | bool DifferingSizes = false; |
| 377 | for (unsigned i = 1, e = IndVars.size(); i != e; ++i) { |
| 378 | const Type *Ty = IndVars[i].first->getType(); |
| 379 | DifferingSizes |= Ty->getPrimitiveSize() != LargestType->getPrimitiveSize(); |
| 380 | if (Ty->getPrimitiveSize() > LargestType->getPrimitiveSize()) |
| 381 | LargestType = Ty; |
Chris Lattner | 476e6df | 2001-12-03 17:28:42 +0000 | [diff] [blame] | 382 | } |
| 383 | |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 384 | // Create a rewriter object which we'll use to transform the code with. |
| 385 | ScalarEvolutionRewriter Rewriter(*SE, *LI); |
Chris Lattner | 7e755e4 | 2003-12-23 07:47:09 +0000 | [diff] [blame] | 386 | |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 387 | // Now that we know the largest of of the induction variables in this loop, |
| 388 | // insert a canonical induction variable of the largest size. |
Chris Lattner | 9e9b2b7 | 2004-04-16 06:03:17 +0000 | [diff] [blame] | 389 | LargestType = LargestType->getUnsignedVersion(); |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 390 | Value *IndVar = Rewriter.GetOrInsertCanonicalInductionVariable(L,LargestType); |
| 391 | ++NumInserted; |
| 392 | Changed = true; |
Chris Lattner | 7e755e4 | 2003-12-23 07:47:09 +0000 | [diff] [blame] | 393 | |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 394 | if (!isa<SCEVCouldNotCompute>(IterationCount)) |
Chris Lattner | 0cec5cb | 2004-04-15 15:21:43 +0000 | [diff] [blame] | 395 | LinearFunctionTestReplace(L, IterationCount, Rewriter); |
Chris Lattner | 7e755e4 | 2003-12-23 07:47:09 +0000 | [diff] [blame] | 396 | |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 397 | #if 0 |
| 398 | // If there were induction variables of other sizes, cast the primary |
| 399 | // induction variable to the right size for them, avoiding the need for the |
| 400 | // code evaluation methods to insert induction variables of different sizes. |
| 401 | // FIXME! |
| 402 | if (DifferingSizes) { |
| 403 | std::map<unsigned, Value*> InsertedSizes; |
| 404 | for (unsigned i = 0, e = IndVars.size(); i != e; ++i) { |
| 405 | } |
Chris Lattner | 7e755e4 | 2003-12-23 07:47:09 +0000 | [diff] [blame] | 406 | } |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 407 | #endif |
Chris Lattner | 7e755e4 | 2003-12-23 07:47:09 +0000 | [diff] [blame] | 408 | |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 409 | // Now that we have a canonical induction variable, we can rewrite any |
| 410 | // recurrences in terms of the induction variable. Start with the auxillary |
| 411 | // induction variables, and recursively rewrite any of their uses. |
| 412 | BasicBlock::iterator InsertPt = Header->begin(); |
| 413 | while (isa<PHINode>(InsertPt)) ++InsertPt; |
Chris Lattner | 476e6df | 2001-12-03 17:28:42 +0000 | [diff] [blame] | 414 | |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 415 | while (!IndVars.empty()) { |
| 416 | PHINode *PN = IndVars.back().first; |
| 417 | Value *NewVal = Rewriter.ExpandCodeFor(IndVars.back().second, InsertPt, |
| 418 | PN->getType()); |
| 419 | // Replace the old PHI Node with the inserted computation. |
| 420 | PN->replaceAllUsesWith(NewVal); |
| 421 | DeadInsts.insert(PN); |
| 422 | IndVars.pop_back(); |
| 423 | ++NumRemoved; |
Chris Lattner | 6743940 | 2001-12-05 19:41:33 +0000 | [diff] [blame] | 424 | Changed = true; |
Chris Lattner | 91daaab | 2001-12-04 04:32:29 +0000 | [diff] [blame] | 425 | } |
| 426 | |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 427 | DeleteTriviallyDeadInstructions(DeadInsts); |
Chris Lattner | 91daaab | 2001-12-04 04:32:29 +0000 | [diff] [blame] | 428 | |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 429 | // TODO: In the future we could replace all instructions in the loop body with |
| 430 | // simpler expressions. It's not clear how useful this would be though or if |
| 431 | // the code expansion cost would be worth it! We probably shouldn't do this |
| 432 | // until we have a way to reuse expressions already in the code. |
| 433 | #if 0 |
| 434 | for (unsigned i = 0, e = L->getBlocks().size(); i != e; ++i) |
| 435 | if (LI->getLoopFor(L->getBlocks()[i]) == L) { // Not in a subloop... |
| 436 | BasicBlock *BB = L->getBlocks()[i]; |
| 437 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
| 438 | if (I->getType()->isInteger() && // Is an integer instruction |
| 439 | !Rewriter.isInsertedInstruction(I)) { |
| 440 | SCEVHandle SH = SE->getSCEV(I); |
| 441 | } |
Chris Lattner | 91daaab | 2001-12-04 04:32:29 +0000 | [diff] [blame] | 442 | } |
Chris Lattner | e61b67d | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 443 | #endif |
Chris Lattner | 476e6df | 2001-12-03 17:28:42 +0000 | [diff] [blame] | 444 | } |