Chris Lattner | 6148c02 | 2001-12-03 17:28:42 +0000 | [diff] [blame] | 1 | //===- IndVarSimplify.cpp - Induction Variable Elimination ----------------===// |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 6148c02 | 2001-12-03 17:28:42 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | 40bf8b4 | 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 | // |
Reid Spencer | 47a53ac | 2006-08-18 09:01:07 +0000 | [diff] [blame] | 14 | // This transformation makes the following changes to each loop with an |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 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 | 6148c02 | 2001-12-03 17:28:42 +0000 | [diff] [blame] | 37 | // |
| 38 | //===----------------------------------------------------------------------===// |
| 39 | |
Chris Lattner | 0e5f499 | 2006-12-19 21:40:18 +0000 | [diff] [blame] | 40 | #define DEBUG_TYPE "indvars" |
Chris Lattner | 022103b | 2002-05-07 20:03:00 +0000 | [diff] [blame] | 41 | #include "llvm/Transforms/Scalar.h" |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 42 | #include "llvm/BasicBlock.h" |
Chris Lattner | 59fdaee | 2004-04-15 15:21:43 +0000 | [diff] [blame] | 43 | #include "llvm/Constants.h" |
Chris Lattner | 18b3c97 | 2003-12-22 05:02:01 +0000 | [diff] [blame] | 44 | #include "llvm/Instructions.h" |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 45 | #include "llvm/Type.h" |
Nate Begeman | 36f891b | 2005-07-30 00:12:19 +0000 | [diff] [blame] | 46 | #include "llvm/Analysis/ScalarEvolutionExpander.h" |
John Criswell | 47df12d | 2003-12-18 17:19:19 +0000 | [diff] [blame] | 47 | #include "llvm/Analysis/LoopInfo.h" |
Devang Patel | 5ee9997 | 2007-03-07 06:39:01 +0000 | [diff] [blame] | 48 | #include "llvm/Analysis/LoopPass.h" |
Chris Lattner | 455889a | 2002-02-12 22:39:50 +0000 | [diff] [blame] | 49 | #include "llvm/Support/CFG.h" |
Reid Spencer | 9133fe2 | 2007-02-05 23:32:05 +0000 | [diff] [blame] | 50 | #include "llvm/Support/Compiler.h" |
Chris Lattner | ee4f13a | 2007-01-07 01:14:12 +0000 | [diff] [blame] | 51 | #include "llvm/Support/Debug.h" |
Chris Lattner | a4b9c78 | 2004-10-11 23:06:50 +0000 | [diff] [blame] | 52 | #include "llvm/Support/GetElementPtrTypeIterator.h" |
John Criswell | 47df12d | 2003-12-18 17:19:19 +0000 | [diff] [blame] | 53 | #include "llvm/Transforms/Utils/Local.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 54 | #include "llvm/Support/CommandLine.h" |
Reid Spencer | a54b7cb | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 55 | #include "llvm/ADT/SmallVector.h" |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 56 | #include "llvm/ADT/SetVector.h" |
Chris Lattner | 1a6111f | 2008-11-16 07:17:51 +0000 | [diff] [blame] | 57 | #include "llvm/ADT/SmallPtrSet.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 58 | #include "llvm/ADT/Statistic.h" |
John Criswell | 47df12d | 2003-12-18 17:19:19 +0000 | [diff] [blame] | 59 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 60 | |
Chris Lattner | 0e5f499 | 2006-12-19 21:40:18 +0000 | [diff] [blame] | 61 | STATISTIC(NumRemoved , "Number of aux indvars removed"); |
Chris Lattner | 0e5f499 | 2006-12-19 21:40:18 +0000 | [diff] [blame] | 62 | STATISTIC(NumInserted, "Number of canonical indvars added"); |
| 63 | STATISTIC(NumReplaced, "Number of exit values replaced"); |
| 64 | STATISTIC(NumLFTR , "Number of loop exit tests replaced"); |
Chris Lattner | 3324e71 | 2003-12-22 03:58:44 +0000 | [diff] [blame] | 65 | |
Chris Lattner | 0e5f499 | 2006-12-19 21:40:18 +0000 | [diff] [blame] | 66 | namespace { |
Devang Patel | 5ee9997 | 2007-03-07 06:39:01 +0000 | [diff] [blame] | 67 | class VISIBILITY_HIDDEN IndVarSimplify : public LoopPass { |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 68 | LoopInfo *LI; |
| 69 | ScalarEvolution *SE; |
Chris Lattner | 15cad75 | 2003-12-23 07:47:09 +0000 | [diff] [blame] | 70 | bool Changed; |
Chris Lattner | 3324e71 | 2003-12-22 03:58:44 +0000 | [diff] [blame] | 71 | public: |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 72 | |
Nick Lewycky | ecd94c8 | 2007-05-06 13:37:16 +0000 | [diff] [blame] | 73 | static char ID; // Pass identification, replacement for typeid |
Dan Gohman | ae73dc1 | 2008-09-04 17:05:41 +0000 | [diff] [blame] | 74 | IndVarSimplify() : LoopPass(&ID) {} |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 75 | |
Dan Gohman | 60f8a63 | 2009-02-17 20:49:49 +0000 | [diff] [blame] | 76 | virtual bool runOnLoop(Loop *L, LPPassManager &LPM); |
| 77 | |
Devang Patel | 5ee9997 | 2007-03-07 06:39:01 +0000 | [diff] [blame] | 78 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
Devang Patel | bc533cd | 2007-09-10 18:08:23 +0000 | [diff] [blame] | 79 | AU.addRequired<ScalarEvolution>(); |
Devang Patel | 5ee9997 | 2007-03-07 06:39:01 +0000 | [diff] [blame] | 80 | AU.addRequiredID(LCSSAID); |
| 81 | AU.addRequiredID(LoopSimplifyID); |
Devang Patel | 5ee9997 | 2007-03-07 06:39:01 +0000 | [diff] [blame] | 82 | AU.addRequired<LoopInfo>(); |
Dan Gohman | 474cecf | 2009-02-23 16:29:41 +0000 | [diff] [blame] | 83 | AU.addPreserved<ScalarEvolution>(); |
Devang Patel | 5ee9997 | 2007-03-07 06:39:01 +0000 | [diff] [blame] | 84 | AU.addPreservedID(LoopSimplifyID); |
| 85 | AU.addPreservedID(LCSSAID); |
| 86 | AU.setPreservesCFG(); |
| 87 | } |
Chris Lattner | 15cad75 | 2003-12-23 07:47:09 +0000 | [diff] [blame] | 88 | |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 89 | private: |
Devang Patel | 5ee9997 | 2007-03-07 06:39:01 +0000 | [diff] [blame] | 90 | |
Dan Gohman | 60f8a63 | 2009-02-17 20:49:49 +0000 | [diff] [blame] | 91 | void RewriteNonIntegerIVs(Loop *L); |
| 92 | |
Dan Gohman | 46bdfb0 | 2009-02-24 18:55:53 +0000 | [diff] [blame] | 93 | void LinearFunctionTestReplace(Loop *L, SCEVHandle BackedgeTakenCount, |
Dan Gohman | a575871 | 2009-02-17 15:57:39 +0000 | [diff] [blame] | 94 | Value *IndVar, |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 95 | BasicBlock *ExitingBlock, |
| 96 | BranchInst *BI, |
Dan Gohman | 15cab28 | 2009-02-23 23:20:35 +0000 | [diff] [blame] | 97 | SCEVExpander &Rewriter); |
Dan Gohman | 890f92b | 2009-04-18 17:56:28 +0000 | [diff] [blame] | 98 | void RewriteLoopExitValues(Loop *L, const SCEV *BackedgeTakenCount); |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 99 | |
Chris Lattner | 1a6111f | 2008-11-16 07:17:51 +0000 | [diff] [blame] | 100 | void DeleteTriviallyDeadInstructions(SmallPtrSet<Instruction*, 16> &Insts); |
Devang Patel | d22a849 | 2008-09-09 21:41:07 +0000 | [diff] [blame] | 101 | |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 102 | void HandleFloatingPointIV(Loop *L, PHINode *PH, |
Devang Patel | 84e3515 | 2008-11-17 21:32:02 +0000 | [diff] [blame] | 103 | SmallPtrSet<Instruction*, 16> &DeadInsts); |
Chris Lattner | 3324e71 | 2003-12-22 03:58:44 +0000 | [diff] [blame] | 104 | }; |
Chris Lattner | 5e76140 | 2002-09-10 05:24:05 +0000 | [diff] [blame] | 105 | } |
Chris Lattner | 394437f | 2001-12-04 04:32:29 +0000 | [diff] [blame] | 106 | |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 107 | char IndVarSimplify::ID = 0; |
| 108 | static RegisterPass<IndVarSimplify> |
| 109 | X("indvars", "Canonicalize Induction Variables"); |
| 110 | |
Daniel Dunbar | 394f044 | 2008-10-22 23:32:42 +0000 | [diff] [blame] | 111 | Pass *llvm::createIndVarSimplifyPass() { |
Chris Lattner | 3324e71 | 2003-12-22 03:58:44 +0000 | [diff] [blame] | 112 | return new IndVarSimplify(); |
Chris Lattner | 394437f | 2001-12-04 04:32:29 +0000 | [diff] [blame] | 113 | } |
| 114 | |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 115 | /// DeleteTriviallyDeadInstructions - If any of the instructions is the |
| 116 | /// specified set are trivially dead, delete them and see if this makes any of |
| 117 | /// their operands subsequently dead. |
| 118 | void IndVarSimplify:: |
Chris Lattner | 1a6111f | 2008-11-16 07:17:51 +0000 | [diff] [blame] | 119 | DeleteTriviallyDeadInstructions(SmallPtrSet<Instruction*, 16> &Insts) { |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 120 | while (!Insts.empty()) { |
| 121 | Instruction *I = *Insts.begin(); |
Chris Lattner | 1a6111f | 2008-11-16 07:17:51 +0000 | [diff] [blame] | 122 | Insts.erase(I); |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 123 | if (isInstructionTriviallyDead(I)) { |
| 124 | for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) |
| 125 | if (Instruction *U = dyn_cast<Instruction>(I->getOperand(i))) |
| 126 | Insts.insert(U); |
Chris Lattner | ee4f13a | 2007-01-07 01:14:12 +0000 | [diff] [blame] | 127 | DOUT << "INDVARS: Deleting: " << *I; |
Chris Lattner | a4b9c78 | 2004-10-11 23:06:50 +0000 | [diff] [blame] | 128 | I->eraseFromParent(); |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 129 | Changed = true; |
| 130 | } |
| 131 | } |
| 132 | } |
| 133 | |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 134 | /// LinearFunctionTestReplace - This method rewrites the exit condition of the |
Chris Lattner | 59fdaee | 2004-04-15 15:21:43 +0000 | [diff] [blame] | 135 | /// loop to be a canonical != comparison against the incremented loop induction |
| 136 | /// variable. This pass is able to rewrite the exit tests of any loop where the |
| 137 | /// SCEV analysis can determine a loop-invariant trip count of the loop, which |
| 138 | /// is actually a much broader range than just linear tests. |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 139 | void IndVarSimplify::LinearFunctionTestReplace(Loop *L, |
Dan Gohman | 46bdfb0 | 2009-02-24 18:55:53 +0000 | [diff] [blame] | 140 | SCEVHandle BackedgeTakenCount, |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 141 | Value *IndVar, |
| 142 | BasicBlock *ExitingBlock, |
| 143 | BranchInst *BI, |
Dan Gohman | 15cab28 | 2009-02-23 23:20:35 +0000 | [diff] [blame] | 144 | SCEVExpander &Rewriter) { |
Chris Lattner | d244057 | 2004-04-15 20:26:22 +0000 | [diff] [blame] | 145 | // If the exiting block is not the same as the backedge block, we must compare |
| 146 | // against the preincremented value, otherwise we prefer to compare against |
| 147 | // the post-incremented value. |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 148 | Value *CmpIndVar; |
Dan Gohman | 46bdfb0 | 2009-02-24 18:55:53 +0000 | [diff] [blame] | 149 | SCEVHandle RHS = BackedgeTakenCount; |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 150 | if (ExitingBlock == L->getLoopLatch()) { |
Dan Gohman | 46bdfb0 | 2009-02-24 18:55:53 +0000 | [diff] [blame] | 151 | // Add one to the "backedge-taken" count to get the trip count. |
| 152 | // If this addition may overflow, we have to be more pessimistic and |
| 153 | // cast the induction variable before doing the add. |
| 154 | SCEVHandle Zero = SE->getIntegerSCEV(0, BackedgeTakenCount->getType()); |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 155 | SCEVHandle N = |
Dan Gohman | 46bdfb0 | 2009-02-24 18:55:53 +0000 | [diff] [blame] | 156 | SE->getAddExpr(BackedgeTakenCount, |
| 157 | SE->getIntegerSCEV(1, BackedgeTakenCount->getType())); |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 158 | if ((isa<SCEVConstant>(N) && !N->isZero()) || |
| 159 | SE->isLoopGuardedByCond(L, ICmpInst::ICMP_NE, N, Zero)) { |
| 160 | // No overflow. Cast the sum. |
Dan Gohman | 46bdfb0 | 2009-02-24 18:55:53 +0000 | [diff] [blame] | 161 | RHS = SE->getTruncateOrZeroExtend(N, IndVar->getType()); |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 162 | } else { |
| 163 | // Potential overflow. Cast before doing the add. |
Dan Gohman | 46bdfb0 | 2009-02-24 18:55:53 +0000 | [diff] [blame] | 164 | RHS = SE->getTruncateOrZeroExtend(BackedgeTakenCount, |
| 165 | IndVar->getType()); |
| 166 | RHS = SE->getAddExpr(RHS, |
| 167 | SE->getIntegerSCEV(1, IndVar->getType())); |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 168 | } |
Chris Lattner | 59fdaee | 2004-04-15 15:21:43 +0000 | [diff] [blame] | 169 | |
Dan Gohman | 46bdfb0 | 2009-02-24 18:55:53 +0000 | [diff] [blame] | 170 | // The BackedgeTaken expression contains the number of times that the |
| 171 | // backedge branches to the loop header. This is one less than the |
| 172 | // number of times the loop executes, so use the incremented indvar. |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 173 | CmpIndVar = L->getCanonicalInductionVariableIncrement(); |
Chris Lattner | d244057 | 2004-04-15 20:26:22 +0000 | [diff] [blame] | 174 | } else { |
| 175 | // We have to use the preincremented value... |
Dan Gohman | 46bdfb0 | 2009-02-24 18:55:53 +0000 | [diff] [blame] | 176 | RHS = SE->getTruncateOrZeroExtend(BackedgeTakenCount, |
| 177 | IndVar->getType()); |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 178 | CmpIndVar = IndVar; |
Chris Lattner | d244057 | 2004-04-15 20:26:22 +0000 | [diff] [blame] | 179 | } |
Chris Lattner | 59fdaee | 2004-04-15 15:21:43 +0000 | [diff] [blame] | 180 | |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 181 | // Expand the code for the iteration count into the preheader of the loop. |
| 182 | BasicBlock *Preheader = L->getLoopPreheader(); |
Dan Gohman | 2d1be87 | 2009-04-16 03:18:22 +0000 | [diff] [blame] | 183 | Value *ExitCnt = Rewriter.expandCodeFor(RHS, IndVar->getType(), |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 184 | Preheader->getTerminator()); |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 185 | |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 186 | // Insert a new icmp_ne or icmp_eq instruction before the branch. |
| 187 | ICmpInst::Predicate Opcode; |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 188 | if (L->contains(BI->getSuccessor(0))) |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 189 | Opcode = ICmpInst::ICMP_NE; |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 190 | else |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 191 | Opcode = ICmpInst::ICMP_EQ; |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 192 | |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 193 | DOUT << "INDVARS: Rewriting loop exit condition to:\n" |
| 194 | << " LHS:" << *CmpIndVar // includes a newline |
| 195 | << " op:\t" |
Dan Gohman | f108e2e | 2009-02-14 02:26:50 +0000 | [diff] [blame] | 196 | << (Opcode == ICmpInst::ICMP_NE ? "!=" : "==") << "\n" |
Dan Gohman | 46bdfb0 | 2009-02-24 18:55:53 +0000 | [diff] [blame] | 197 | << " RHS:\t" << *RHS << "\n"; |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 198 | |
| 199 | Value *Cond = new ICmpInst(Opcode, CmpIndVar, ExitCnt, "exitcond", BI); |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 200 | BI->setCondition(Cond); |
| 201 | ++NumLFTR; |
| 202 | Changed = true; |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 203 | } |
| 204 | |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 205 | /// RewriteLoopExitValues - Check to see if this loop has a computable |
| 206 | /// loop-invariant execution count. If so, this means that we can compute the |
| 207 | /// final value of any expressions that are recurrent in the loop, and |
| 208 | /// substitute the exit values from the loop into any instructions outside of |
| 209 | /// the loop that use the final values of the current expressions. |
Dan Gohman | 890f92b | 2009-04-18 17:56:28 +0000 | [diff] [blame] | 210 | void IndVarSimplify::RewriteLoopExitValues(Loop *L, |
| 211 | const SCEV *BackedgeTakenCount) { |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 212 | BasicBlock *Preheader = L->getLoopPreheader(); |
| 213 | |
| 214 | // Scan all of the instructions in the loop, looking at those that have |
| 215 | // extra-loop users and which are recurrences. |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 216 | SCEVExpander Rewriter(*SE, *LI); |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 217 | |
| 218 | // We insert the code into the preheader of the loop if the loop contains |
| 219 | // multiple exit blocks, or in the exit block if there is exactly one. |
| 220 | BasicBlock *BlockToInsertInto; |
Devang Patel | b7211a2 | 2007-08-21 00:31:24 +0000 | [diff] [blame] | 221 | SmallVector<BasicBlock*, 8> ExitBlocks; |
Chris Lattner | 9f3d738 | 2007-03-04 03:43:23 +0000 | [diff] [blame] | 222 | L->getUniqueExitBlocks(ExitBlocks); |
Chris Lattner | f1ab4b4 | 2004-04-18 22:14:10 +0000 | [diff] [blame] | 223 | if (ExitBlocks.size() == 1) |
| 224 | BlockToInsertInto = ExitBlocks[0]; |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 225 | else |
| 226 | BlockToInsertInto = Preheader; |
Dan Gohman | 02dea8b | 2008-05-23 21:05:58 +0000 | [diff] [blame] | 227 | BasicBlock::iterator InsertPt = BlockToInsertInto->getFirstNonPHI(); |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 228 | |
Dan Gohman | 46bdfb0 | 2009-02-24 18:55:53 +0000 | [diff] [blame] | 229 | bool HasConstantItCount = isa<SCEVConstant>(BackedgeTakenCount); |
Chris Lattner | 20aa098 | 2004-04-17 18:44:09 +0000 | [diff] [blame] | 230 | |
Chris Lattner | 1a6111f | 2008-11-16 07:17:51 +0000 | [diff] [blame] | 231 | SmallPtrSet<Instruction*, 16> InstructionsToDelete; |
Chris Lattner | 9f3d738 | 2007-03-04 03:43:23 +0000 | [diff] [blame] | 232 | std::map<Instruction*, Value*> ExitValues; |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 233 | |
Chris Lattner | 9f3d738 | 2007-03-04 03:43:23 +0000 | [diff] [blame] | 234 | // Find all values that are computed inside the loop, but used outside of it. |
| 235 | // Because of LCSSA, these values will only occur in LCSSA PHI Nodes. Scan |
| 236 | // the exit blocks of the loop to find them. |
| 237 | for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) { |
| 238 | BasicBlock *ExitBB = ExitBlocks[i]; |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 239 | |
Chris Lattner | 9f3d738 | 2007-03-04 03:43:23 +0000 | [diff] [blame] | 240 | // If there are no PHI nodes in this exit block, then no values defined |
| 241 | // inside the loop are used on this path, skip it. |
| 242 | PHINode *PN = dyn_cast<PHINode>(ExitBB->begin()); |
| 243 | if (!PN) continue; |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 244 | |
Chris Lattner | 9f3d738 | 2007-03-04 03:43:23 +0000 | [diff] [blame] | 245 | unsigned NumPreds = PN->getNumIncomingValues(); |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 246 | |
Chris Lattner | 9f3d738 | 2007-03-04 03:43:23 +0000 | [diff] [blame] | 247 | // Iterate over all of the PHI nodes. |
| 248 | BasicBlock::iterator BBI = ExitBB->begin(); |
| 249 | while ((PN = dyn_cast<PHINode>(BBI++))) { |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 250 | |
Chris Lattner | 9f3d738 | 2007-03-04 03:43:23 +0000 | [diff] [blame] | 251 | // Iterate over all of the values in all the PHI nodes. |
| 252 | for (unsigned i = 0; i != NumPreds; ++i) { |
| 253 | // If the value being merged in is not integer or is not defined |
| 254 | // in the loop, skip it. |
| 255 | Value *InVal = PN->getIncomingValue(i); |
| 256 | if (!isa<Instruction>(InVal) || |
| 257 | // SCEV only supports integer expressions for now. |
Dan Gohman | 2d1be87 | 2009-04-16 03:18:22 +0000 | [diff] [blame] | 258 | (!isa<IntegerType>(InVal->getType()) && |
| 259 | !isa<PointerType>(InVal->getType()))) |
Chris Lattner | 9f3d738 | 2007-03-04 03:43:23 +0000 | [diff] [blame] | 260 | continue; |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 261 | |
Chris Lattner | 9f3d738 | 2007-03-04 03:43:23 +0000 | [diff] [blame] | 262 | // If this pred is for a subloop, not L itself, skip it. |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 263 | if (LI->getLoopFor(PN->getIncomingBlock(i)) != L) |
Chris Lattner | 9f3d738 | 2007-03-04 03:43:23 +0000 | [diff] [blame] | 264 | continue; // The Block is in a subloop, skip it. |
| 265 | |
| 266 | // Check that InVal is defined in the loop. |
| 267 | Instruction *Inst = cast<Instruction>(InVal); |
| 268 | if (!L->contains(Inst->getParent())) |
| 269 | continue; |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 270 | |
Chris Lattner | 9f3d738 | 2007-03-04 03:43:23 +0000 | [diff] [blame] | 271 | // We require that this value either have a computable evolution or that |
| 272 | // the loop have a constant iteration count. In the case where the loop |
| 273 | // has a constant iteration count, we can sometimes force evaluation of |
| 274 | // the exit value through brute force. |
| 275 | SCEVHandle SH = SE->getSCEV(Inst); |
| 276 | if (!SH->hasComputableLoopEvolution(L) && !HasConstantItCount) |
| 277 | continue; // Cannot get exit evolution for the loop value. |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 278 | |
Chris Lattner | 9f3d738 | 2007-03-04 03:43:23 +0000 | [diff] [blame] | 279 | // Okay, this instruction has a user outside of the current loop |
| 280 | // and varies predictably *inside* the loop. Evaluate the value it |
| 281 | // contains when the loop exits, if possible. |
| 282 | SCEVHandle ExitValue = SE->getSCEVAtScope(Inst, L->getParentLoop()); |
| 283 | if (isa<SCEVCouldNotCompute>(ExitValue) || |
| 284 | !ExitValue->isLoopInvariant(L)) |
| 285 | continue; |
Chris Lattner | 9caed54 | 2007-03-04 01:00:28 +0000 | [diff] [blame] | 286 | |
Chris Lattner | 9f3d738 | 2007-03-04 03:43:23 +0000 | [diff] [blame] | 287 | Changed = true; |
| 288 | ++NumReplaced; |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 289 | |
Chris Lattner | 9f3d738 | 2007-03-04 03:43:23 +0000 | [diff] [blame] | 290 | // See if we already computed the exit value for the instruction, if so, |
| 291 | // just reuse it. |
| 292 | Value *&ExitVal = ExitValues[Inst]; |
| 293 | if (!ExitVal) |
Dan Gohman | 2d1be87 | 2009-04-16 03:18:22 +0000 | [diff] [blame] | 294 | ExitVal = Rewriter.expandCodeFor(ExitValue, PN->getType(), InsertPt); |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 295 | |
Chris Lattner | 9f3d738 | 2007-03-04 03:43:23 +0000 | [diff] [blame] | 296 | DOUT << "INDVARS: RLEV: AfterLoopVal = " << *ExitVal |
| 297 | << " LoopVal = " << *Inst << "\n"; |
| 298 | |
| 299 | PN->setIncomingValue(i, ExitVal); |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 300 | |
Chris Lattner | 9f3d738 | 2007-03-04 03:43:23 +0000 | [diff] [blame] | 301 | // If this instruction is dead now, schedule it to be removed. |
| 302 | if (Inst->use_empty()) |
| 303 | InstructionsToDelete.insert(Inst); |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 304 | |
Chris Lattner | 9f3d738 | 2007-03-04 03:43:23 +0000 | [diff] [blame] | 305 | // See if this is a single-entry LCSSA PHI node. If so, we can (and |
| 306 | // have to) remove |
Chris Lattner | 9caed54 | 2007-03-04 01:00:28 +0000 | [diff] [blame] | 307 | // the PHI entirely. This is safe, because the NewVal won't be variant |
| 308 | // in the loop, so we don't need an LCSSA phi node anymore. |
Chris Lattner | 9f3d738 | 2007-03-04 03:43:23 +0000 | [diff] [blame] | 309 | if (NumPreds == 1) { |
| 310 | PN->replaceAllUsesWith(ExitVal); |
| 311 | PN->eraseFromParent(); |
| 312 | break; |
Chris Lattner | c9838f2 | 2007-03-03 22:48:48 +0000 | [diff] [blame] | 313 | } |
| 314 | } |
Chris Lattner | c9838f2 | 2007-03-03 22:48:48 +0000 | [diff] [blame] | 315 | } |
| 316 | } |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 317 | |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 318 | DeleteTriviallyDeadInstructions(InstructionsToDelete); |
| 319 | } |
| 320 | |
Dan Gohman | 60f8a63 | 2009-02-17 20:49:49 +0000 | [diff] [blame] | 321 | void IndVarSimplify::RewriteNonIntegerIVs(Loop *L) { |
Dan Gohman | 2d1be87 | 2009-04-16 03:18:22 +0000 | [diff] [blame] | 322 | // First step. Check to see if there are any floating-point recurrences. |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 323 | // If there are, change them into integer recurrences, permitting analysis by |
| 324 | // the SCEV routines. |
| 325 | // |
| 326 | BasicBlock *Header = L->getHeader(); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 327 | |
Chris Lattner | 1a6111f | 2008-11-16 07:17:51 +0000 | [diff] [blame] | 328 | SmallPtrSet<Instruction*, 16> DeadInsts; |
Reid Spencer | 2da5c3d | 2004-09-15 17:06:42 +0000 | [diff] [blame] | 329 | for (BasicBlock::iterator I = Header->begin(); isa<PHINode>(I); ++I) { |
| 330 | PHINode *PN = cast<PHINode>(I); |
Dan Gohman | 2d1be87 | 2009-04-16 03:18:22 +0000 | [diff] [blame] | 331 | HandleFloatingPointIV(L, PN, DeadInsts); |
Reid Spencer | 2da5c3d | 2004-09-15 17:06:42 +0000 | [diff] [blame] | 332 | } |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 333 | |
Dan Gohman | 2d1be87 | 2009-04-16 03:18:22 +0000 | [diff] [blame] | 334 | // If the loop previously had floating-point IV, ScalarEvolution |
Dan Gohman | 60f8a63 | 2009-02-17 20:49:49 +0000 | [diff] [blame] | 335 | // may not have been able to compute a trip count. Now that we've done some |
| 336 | // re-writing, the trip count may be computable. |
| 337 | if (Changed) |
Dan Gohman | 46bdfb0 | 2009-02-24 18:55:53 +0000 | [diff] [blame] | 338 | SE->forgetLoopBackedgeTakenCount(L); |
Dan Gohman | 60f8a63 | 2009-02-17 20:49:49 +0000 | [diff] [blame] | 339 | |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 340 | if (!DeadInsts.empty()) |
| 341 | DeleteTriviallyDeadInstructions(DeadInsts); |
Devang Patel | 5ee9997 | 2007-03-07 06:39:01 +0000 | [diff] [blame] | 342 | } |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 343 | |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 344 | /// getEffectiveIndvarType - Determine the widest type that the |
| 345 | /// induction-variable PHINode Phi is cast to. |
| 346 | /// |
Dan Gohman | 2d1be87 | 2009-04-16 03:18:22 +0000 | [diff] [blame] | 347 | static const Type *getEffectiveIndvarType(const PHINode *Phi, |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 348 | const ScalarEvolution *SE) { |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 349 | const Type *Ty = Phi->getType(); |
Chris Lattner | 3324e71 | 2003-12-22 03:58:44 +0000 | [diff] [blame] | 350 | |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 351 | for (Value::use_const_iterator UI = Phi->use_begin(), UE = Phi->use_end(); |
| 352 | UI != UE; ++UI) { |
| 353 | const Type *CandidateType = NULL; |
| 354 | if (const ZExtInst *ZI = dyn_cast<ZExtInst>(UI)) |
| 355 | CandidateType = ZI->getDestTy(); |
| 356 | else if (const SExtInst *SI = dyn_cast<SExtInst>(UI)) |
| 357 | CandidateType = SI->getDestTy(); |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 358 | else if (const IntToPtrInst *IP = dyn_cast<IntToPtrInst>(UI)) |
| 359 | CandidateType = IP->getDestTy(); |
| 360 | else if (const PtrToIntInst *PI = dyn_cast<PtrToIntInst>(UI)) |
| 361 | CandidateType = PI->getDestTy(); |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 362 | if (CandidateType && |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 363 | SE->isSCEVable(CandidateType) && |
| 364 | SE->getTypeSizeInBits(CandidateType) > SE->getTypeSizeInBits(Ty)) |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 365 | Ty = CandidateType; |
| 366 | } |
| 367 | |
| 368 | return Ty; |
| 369 | } |
| 370 | |
Dan Gohman | d908adf | 2009-04-27 22:12:34 +0000 | [diff] [blame] | 371 | /// TestOrigIVForWrap - Analyze the original induction variable that |
| 372 | /// controls the loop's iteration to determine whether it would ever |
| 373 | /// undergo signed or unsigned overflow. |
Dan Gohman | d2067fd | 2009-02-18 00:52:00 +0000 | [diff] [blame] | 374 | /// |
Dale Johannesen | dd1f9e4 | 2009-04-15 01:10:12 +0000 | [diff] [blame] | 375 | /// In addition to setting the NoSignedWrap and NoUnsignedWrap |
| 376 | /// variables to true when appropriate (they are not set to false here), |
| 377 | /// return the PHI for this induction variable. Also record the initial |
| 378 | /// and final values and the increment; these are not meaningful unless |
| 379 | /// either NoSignedWrap or NoUnsignedWrap is true, and are always meaningful |
| 380 | /// in that case, although the final value may be 0 indicating a nonconstant. |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 381 | /// |
| 382 | /// TODO: This duplicates a fair amount of ScalarEvolution logic. |
Dan Gohman | 46bdfb0 | 2009-02-24 18:55:53 +0000 | [diff] [blame] | 383 | /// Perhaps this can be merged with |
| 384 | /// ScalarEvolution::getBackedgeTakenCount |
Dan Gohman | aa03649 | 2009-02-14 02:31:09 +0000 | [diff] [blame] | 385 | /// and/or ScalarEvolution::get{Sign,Zero}ExtendExpr. |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 386 | /// |
Dan Gohman | d2067fd | 2009-02-18 00:52:00 +0000 | [diff] [blame] | 387 | static const PHINode *TestOrigIVForWrap(const Loop *L, |
| 388 | const BranchInst *BI, |
| 389 | const Instruction *OrigCond, |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 390 | const ScalarEvolution &SE, |
Dan Gohman | d2067fd | 2009-02-18 00:52:00 +0000 | [diff] [blame] | 391 | bool &NoSignedWrap, |
Dale Johannesen | dd1f9e4 | 2009-04-15 01:10:12 +0000 | [diff] [blame] | 392 | bool &NoUnsignedWrap, |
| 393 | const ConstantInt* &InitialVal, |
| 394 | const ConstantInt* &IncrVal, |
| 395 | const ConstantInt* &LimitVal) { |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 396 | // Verify that the loop is sane and find the exit condition. |
| 397 | const ICmpInst *Cmp = dyn_cast<ICmpInst>(OrigCond); |
Dan Gohman | d2067fd | 2009-02-18 00:52:00 +0000 | [diff] [blame] | 398 | if (!Cmp) return 0; |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 399 | |
Dan Gohman | aa03649 | 2009-02-14 02:31:09 +0000 | [diff] [blame] | 400 | const Value *CmpLHS = Cmp->getOperand(0); |
| 401 | const Value *CmpRHS = Cmp->getOperand(1); |
| 402 | const BasicBlock *TrueBB = BI->getSuccessor(0); |
| 403 | const BasicBlock *FalseBB = BI->getSuccessor(1); |
| 404 | ICmpInst::Predicate Pred = Cmp->getPredicate(); |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 405 | |
Dan Gohman | aa03649 | 2009-02-14 02:31:09 +0000 | [diff] [blame] | 406 | // Canonicalize a constant to the RHS. |
| 407 | if (isa<ConstantInt>(CmpLHS)) { |
| 408 | Pred = ICmpInst::getSwappedPredicate(Pred); |
| 409 | std::swap(CmpLHS, CmpRHS); |
| 410 | } |
| 411 | // Canonicalize SLE to SLT. |
| 412 | if (Pred == ICmpInst::ICMP_SLE) |
| 413 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(CmpRHS)) |
| 414 | if (!CI->getValue().isMaxSignedValue()) { |
| 415 | CmpRHS = ConstantInt::get(CI->getValue() + 1); |
| 416 | Pred = ICmpInst::ICMP_SLT; |
| 417 | } |
| 418 | // Canonicalize SGT to SGE. |
| 419 | if (Pred == ICmpInst::ICMP_SGT) |
| 420 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(CmpRHS)) |
| 421 | if (!CI->getValue().isMaxSignedValue()) { |
| 422 | CmpRHS = ConstantInt::get(CI->getValue() + 1); |
| 423 | Pred = ICmpInst::ICMP_SGE; |
| 424 | } |
| 425 | // Canonicalize SGE to SLT. |
| 426 | if (Pred == ICmpInst::ICMP_SGE) { |
| 427 | std::swap(TrueBB, FalseBB); |
| 428 | Pred = ICmpInst::ICMP_SLT; |
| 429 | } |
| 430 | // Canonicalize ULE to ULT. |
| 431 | if (Pred == ICmpInst::ICMP_ULE) |
| 432 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(CmpRHS)) |
| 433 | if (!CI->getValue().isMaxValue()) { |
| 434 | CmpRHS = ConstantInt::get(CI->getValue() + 1); |
| 435 | Pred = ICmpInst::ICMP_ULT; |
| 436 | } |
| 437 | // Canonicalize UGT to UGE. |
| 438 | if (Pred == ICmpInst::ICMP_UGT) |
| 439 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(CmpRHS)) |
| 440 | if (!CI->getValue().isMaxValue()) { |
| 441 | CmpRHS = ConstantInt::get(CI->getValue() + 1); |
| 442 | Pred = ICmpInst::ICMP_UGE; |
| 443 | } |
| 444 | // Canonicalize UGE to ULT. |
| 445 | if (Pred == ICmpInst::ICMP_UGE) { |
| 446 | std::swap(TrueBB, FalseBB); |
| 447 | Pred = ICmpInst::ICMP_ULT; |
| 448 | } |
| 449 | // For now, analyze only LT loops for signed overflow. |
| 450 | if (Pred != ICmpInst::ICMP_SLT && Pred != ICmpInst::ICMP_ULT) |
Dan Gohman | d2067fd | 2009-02-18 00:52:00 +0000 | [diff] [blame] | 451 | return 0; |
Dan Gohman | aa03649 | 2009-02-14 02:31:09 +0000 | [diff] [blame] | 452 | |
| 453 | bool isSigned = Pred == ICmpInst::ICMP_SLT; |
| 454 | |
| 455 | // Get the increment instruction. Look past casts if we will |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 456 | // be able to prove that the original induction variable doesn't |
Dan Gohman | aa03649 | 2009-02-14 02:31:09 +0000 | [diff] [blame] | 457 | // undergo signed or unsigned overflow, respectively. |
Dale Johannesen | dd1f9e4 | 2009-04-15 01:10:12 +0000 | [diff] [blame] | 458 | const Value *IncrInst = CmpLHS; |
Dan Gohman | aa03649 | 2009-02-14 02:31:09 +0000 | [diff] [blame] | 459 | if (isSigned) { |
| 460 | if (const SExtInst *SI = dyn_cast<SExtInst>(CmpLHS)) { |
| 461 | if (!isa<ConstantInt>(CmpRHS) || |
| 462 | !cast<ConstantInt>(CmpRHS)->getValue() |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 463 | .isSignedIntN(SE.getTypeSizeInBits(IncrInst->getType()))) |
Dan Gohman | d2067fd | 2009-02-18 00:52:00 +0000 | [diff] [blame] | 464 | return 0; |
Dale Johannesen | dd1f9e4 | 2009-04-15 01:10:12 +0000 | [diff] [blame] | 465 | IncrInst = SI->getOperand(0); |
Dan Gohman | aa03649 | 2009-02-14 02:31:09 +0000 | [diff] [blame] | 466 | } |
| 467 | } else { |
| 468 | if (const ZExtInst *ZI = dyn_cast<ZExtInst>(CmpLHS)) { |
| 469 | if (!isa<ConstantInt>(CmpRHS) || |
| 470 | !cast<ConstantInt>(CmpRHS)->getValue() |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 471 | .isIntN(SE.getTypeSizeInBits(IncrInst->getType()))) |
Dan Gohman | d2067fd | 2009-02-18 00:52:00 +0000 | [diff] [blame] | 472 | return 0; |
Dale Johannesen | dd1f9e4 | 2009-04-15 01:10:12 +0000 | [diff] [blame] | 473 | IncrInst = ZI->getOperand(0); |
Dan Gohman | aa03649 | 2009-02-14 02:31:09 +0000 | [diff] [blame] | 474 | } |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 475 | } |
| 476 | |
| 477 | // For now, only analyze induction variables that have simple increments. |
Dale Johannesen | dd1f9e4 | 2009-04-15 01:10:12 +0000 | [diff] [blame] | 478 | const BinaryOperator *IncrOp = dyn_cast<BinaryOperator>(IncrInst); |
| 479 | if (!IncrOp || IncrOp->getOpcode() != Instruction::Add) |
| 480 | return 0; |
| 481 | IncrVal = dyn_cast<ConstantInt>(IncrOp->getOperand(1)); |
| 482 | if (!IncrVal) |
Dan Gohman | d2067fd | 2009-02-18 00:52:00 +0000 | [diff] [blame] | 483 | return 0; |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 484 | |
| 485 | // Make sure the PHI looks like a normal IV. |
| 486 | const PHINode *PN = dyn_cast<PHINode>(IncrOp->getOperand(0)); |
| 487 | if (!PN || PN->getNumIncomingValues() != 2) |
Dan Gohman | d2067fd | 2009-02-18 00:52:00 +0000 | [diff] [blame] | 488 | return 0; |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 489 | unsigned IncomingEdge = L->contains(PN->getIncomingBlock(0)); |
| 490 | unsigned BackEdge = !IncomingEdge; |
| 491 | if (!L->contains(PN->getIncomingBlock(BackEdge)) || |
| 492 | PN->getIncomingValue(BackEdge) != IncrOp) |
Dan Gohman | d2067fd | 2009-02-18 00:52:00 +0000 | [diff] [blame] | 493 | return 0; |
Dan Gohman | aa03649 | 2009-02-14 02:31:09 +0000 | [diff] [blame] | 494 | if (!L->contains(TrueBB)) |
Dan Gohman | d2067fd | 2009-02-18 00:52:00 +0000 | [diff] [blame] | 495 | return 0; |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 496 | |
| 497 | // For now, only analyze loops with a constant start value, so that |
Dan Gohman | aa03649 | 2009-02-14 02:31:09 +0000 | [diff] [blame] | 498 | // we can easily determine if the start value is not a maximum value |
| 499 | // which would wrap on the first iteration. |
Dale Johannesen | dd1f9e4 | 2009-04-15 01:10:12 +0000 | [diff] [blame] | 500 | InitialVal = dyn_cast<ConstantInt>(PN->getIncomingValue(IncomingEdge)); |
Dan Gohman | cad24c9 | 2009-02-18 16:54:33 +0000 | [diff] [blame] | 501 | if (!InitialVal) |
Dan Gohman | d2067fd | 2009-02-18 00:52:00 +0000 | [diff] [blame] | 502 | return 0; |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 503 | |
Dale Johannesen | dd1f9e4 | 2009-04-15 01:10:12 +0000 | [diff] [blame] | 504 | // The upper limit need not be a constant; we'll check later. |
| 505 | LimitVal = dyn_cast<ConstantInt>(CmpRHS); |
| 506 | |
| 507 | // We detect the impossibility of wrapping in two cases, both of |
| 508 | // which require starting with a non-max value: |
| 509 | // - The IV counts up by one, and the loop iterates only while it remains |
| 510 | // less than a limiting value (any) in the same type. |
| 511 | // - The IV counts up by a positive increment other than 1, and the |
| 512 | // constant limiting value + the increment is less than the max value |
| 513 | // (computed as max-increment to avoid overflow) |
Dan Gohman | f5a309e | 2009-02-18 17:22:41 +0000 | [diff] [blame] | 514 | if (isSigned && !InitialVal->getValue().isMaxSignedValue()) { |
Dale Johannesen | dd1f9e4 | 2009-04-15 01:10:12 +0000 | [diff] [blame] | 515 | if (IncrVal->equalsInt(1)) |
| 516 | NoSignedWrap = true; // LimitVal need not be constant |
| 517 | else if (LimitVal) { |
| 518 | uint64_t numBits = LimitVal->getValue().getBitWidth(); |
| 519 | if (IncrVal->getValue().sgt(APInt::getNullValue(numBits)) && |
| 520 | (APInt::getSignedMaxValue(numBits) - IncrVal->getValue()) |
| 521 | .sgt(LimitVal->getValue())) |
| 522 | NoSignedWrap = true; |
| 523 | } |
| 524 | } else if (!isSigned && !InitialVal->getValue().isMaxValue()) { |
| 525 | if (IncrVal->equalsInt(1)) |
| 526 | NoUnsignedWrap = true; // LimitVal need not be constant |
| 527 | else if (LimitVal) { |
| 528 | uint64_t numBits = LimitVal->getValue().getBitWidth(); |
| 529 | if (IncrVal->getValue().ugt(APInt::getNullValue(numBits)) && |
| 530 | (APInt::getMaxValue(numBits) - IncrVal->getValue()) |
| 531 | .ugt(LimitVal->getValue())) |
| 532 | NoUnsignedWrap = true; |
| 533 | } |
| 534 | } |
Dan Gohman | d2067fd | 2009-02-18 00:52:00 +0000 | [diff] [blame] | 535 | return PN; |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 536 | } |
| 537 | |
Dale Johannesen | dd1f9e4 | 2009-04-15 01:10:12 +0000 | [diff] [blame] | 538 | static Value *getSignExtendedTruncVar(const SCEVAddRecExpr *AR, |
| 539 | ScalarEvolution *SE, |
| 540 | const Type *LargestType, Loop *L, |
| 541 | const Type *myType, |
Dan Gohman | 752ec7d | 2009-04-23 15:16:49 +0000 | [diff] [blame] | 542 | SCEVExpander &Rewriter) { |
Dale Johannesen | dd1f9e4 | 2009-04-15 01:10:12 +0000 | [diff] [blame] | 543 | SCEVHandle ExtendedStart = |
| 544 | SE->getSignExtendExpr(AR->getStart(), LargestType); |
| 545 | SCEVHandle ExtendedStep = |
| 546 | SE->getSignExtendExpr(AR->getStepRecurrence(*SE), LargestType); |
| 547 | SCEVHandle ExtendedAddRec = |
| 548 | SE->getAddRecExpr(ExtendedStart, ExtendedStep, L); |
| 549 | if (LargestType != myType) |
| 550 | ExtendedAddRec = SE->getTruncateExpr(ExtendedAddRec, myType); |
Dan Gohman | 752ec7d | 2009-04-23 15:16:49 +0000 | [diff] [blame] | 551 | return Rewriter.expandCodeFor(ExtendedAddRec, myType); |
Dale Johannesen | dd1f9e4 | 2009-04-15 01:10:12 +0000 | [diff] [blame] | 552 | } |
| 553 | |
| 554 | static Value *getZeroExtendedTruncVar(const SCEVAddRecExpr *AR, |
| 555 | ScalarEvolution *SE, |
| 556 | const Type *LargestType, Loop *L, |
| 557 | const Type *myType, |
Dan Gohman | 752ec7d | 2009-04-23 15:16:49 +0000 | [diff] [blame] | 558 | SCEVExpander &Rewriter) { |
Dale Johannesen | dd1f9e4 | 2009-04-15 01:10:12 +0000 | [diff] [blame] | 559 | SCEVHandle ExtendedStart = |
| 560 | SE->getZeroExtendExpr(AR->getStart(), LargestType); |
| 561 | SCEVHandle ExtendedStep = |
| 562 | SE->getZeroExtendExpr(AR->getStepRecurrence(*SE), LargestType); |
| 563 | SCEVHandle ExtendedAddRec = |
| 564 | SE->getAddRecExpr(ExtendedStart, ExtendedStep, L); |
| 565 | if (LargestType != myType) |
| 566 | ExtendedAddRec = SE->getTruncateExpr(ExtendedAddRec, myType); |
Dan Gohman | 752ec7d | 2009-04-23 15:16:49 +0000 | [diff] [blame] | 567 | return Rewriter.expandCodeFor(ExtendedAddRec, myType); |
Dale Johannesen | dd1f9e4 | 2009-04-15 01:10:12 +0000 | [diff] [blame] | 568 | } |
| 569 | |
Dale Johannesen | c671d89 | 2009-04-15 23:31:51 +0000 | [diff] [blame] | 570 | /// allUsesAreSameTyped - See whether all Uses of I are instructions |
| 571 | /// with the same Opcode and the same type. |
| 572 | static bool allUsesAreSameTyped(unsigned int Opcode, Instruction *I) { |
| 573 | const Type* firstType = NULL; |
| 574 | for (Value::use_iterator UI = I->use_begin(), UE = I->use_end(); |
| 575 | UI != UE; ++UI) { |
| 576 | Instruction *II = dyn_cast<Instruction>(*UI); |
| 577 | if (!II || II->getOpcode() != Opcode) |
| 578 | return false; |
| 579 | if (!firstType) |
| 580 | firstType = II->getType(); |
| 581 | else if (firstType != II->getType()) |
| 582 | return false; |
| 583 | } |
| 584 | return true; |
| 585 | } |
| 586 | |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 587 | bool IndVarSimplify::runOnLoop(Loop *L, LPPassManager &LPM) { |
Devang Patel | 5ee9997 | 2007-03-07 06:39:01 +0000 | [diff] [blame] | 588 | LI = &getAnalysis<LoopInfo>(); |
| 589 | SE = &getAnalysis<ScalarEvolution>(); |
Devang Patel | 5ee9997 | 2007-03-07 06:39:01 +0000 | [diff] [blame] | 590 | Changed = false; |
Dan Gohman | 60f8a63 | 2009-02-17 20:49:49 +0000 | [diff] [blame] | 591 | |
Dan Gohman | 2d1be87 | 2009-04-16 03:18:22 +0000 | [diff] [blame] | 592 | // If there are any floating-point recurrences, attempt to |
Dan Gohman | 60f8a63 | 2009-02-17 20:49:49 +0000 | [diff] [blame] | 593 | // transform them to use integer recurrences. |
| 594 | RewriteNonIntegerIVs(L); |
| 595 | |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 596 | BasicBlock *Header = L->getHeader(); |
| 597 | BasicBlock *ExitingBlock = L->getExitingBlock(); |
Chris Lattner | 1a6111f | 2008-11-16 07:17:51 +0000 | [diff] [blame] | 598 | SmallPtrSet<Instruction*, 16> DeadInsts; |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 599 | |
Chris Lattner | 9caed54 | 2007-03-04 01:00:28 +0000 | [diff] [blame] | 600 | // Verify the input to the pass in already in LCSSA form. |
| 601 | assert(L->isLCSSAForm()); |
| 602 | |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 603 | // Check to see if this loop has a computable loop-invariant execution count. |
| 604 | // If so, this means that we can compute the final value of any expressions |
| 605 | // that are recurrent in the loop, and substitute the exit values from the |
| 606 | // loop into any instructions outside of the loop that use the final values of |
| 607 | // the current expressions. |
Chris Lattner | 3dec1f2 | 2002-05-10 15:38:35 +0000 | [diff] [blame] | 608 | // |
Dan Gohman | 46bdfb0 | 2009-02-24 18:55:53 +0000 | [diff] [blame] | 609 | SCEVHandle BackedgeTakenCount = SE->getBackedgeTakenCount(L); |
| 610 | if (!isa<SCEVCouldNotCompute>(BackedgeTakenCount)) |
| 611 | RewriteLoopExitValues(L, BackedgeTakenCount); |
Chris Lattner | 6148c02 | 2001-12-03 17:28:42 +0000 | [diff] [blame] | 612 | |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 613 | // Next, analyze all of the induction variables in the loop, canonicalizing |
| 614 | // auxillary induction variables. |
| 615 | std::vector<std::pair<PHINode*, SCEVHandle> > IndVars; |
| 616 | |
Reid Spencer | 2da5c3d | 2004-09-15 17:06:42 +0000 | [diff] [blame] | 617 | for (BasicBlock::iterator I = Header->begin(); isa<PHINode>(I); ++I) { |
| 618 | PHINode *PN = cast<PHINode>(I); |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 619 | if (SE->isSCEVable(PN->getType())) { |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 620 | SCEVHandle SCEV = SE->getSCEV(PN); |
Dan Gohman | cd3eb9b | 2009-02-14 02:25:19 +0000 | [diff] [blame] | 621 | // FIXME: It is an extremely bad idea to indvar substitute anything more |
| 622 | // complex than affine induction variables. Doing so will put expensive |
| 623 | // polynomial evaluations inside of the loop, and the str reduction pass |
| 624 | // currently can only reduce affine polynomials. For now just disable |
| 625 | // indvar subst on anything more complex than an affine addrec. |
Dan Gohman | 890f92b | 2009-04-18 17:56:28 +0000 | [diff] [blame] | 626 | if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(SCEV)) |
Dan Gohman | cd3eb9b | 2009-02-14 02:25:19 +0000 | [diff] [blame] | 627 | if (AR->getLoop() == L && AR->isAffine()) |
| 628 | IndVars.push_back(std::make_pair(PN, SCEV)); |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 629 | } |
Reid Spencer | 2da5c3d | 2004-09-15 17:06:42 +0000 | [diff] [blame] | 630 | } |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 631 | |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 632 | // Compute the type of the largest recurrence expression, and collect |
| 633 | // the set of the types of the other recurrence expressions. |
| 634 | const Type *LargestType = 0; |
| 635 | SmallSetVector<const Type *, 4> SizesToInsert; |
Dan Gohman | 46bdfb0 | 2009-02-24 18:55:53 +0000 | [diff] [blame] | 636 | if (!isa<SCEVCouldNotCompute>(BackedgeTakenCount)) { |
| 637 | LargestType = BackedgeTakenCount->getType(); |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 638 | LargestType = SE->getEffectiveSCEVType(LargestType); |
Dan Gohman | 2d1be87 | 2009-04-16 03:18:22 +0000 | [diff] [blame] | 639 | SizesToInsert.insert(LargestType); |
Chris Lattner | f50af08 | 2004-04-17 18:08:33 +0000 | [diff] [blame] | 640 | } |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 641 | for (unsigned i = 0, e = IndVars.size(); i != e; ++i) { |
| 642 | const PHINode *PN = IndVars[i].first; |
Dan Gohman | 2d1be87 | 2009-04-16 03:18:22 +0000 | [diff] [blame] | 643 | const Type *PNTy = PN->getType(); |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 644 | PNTy = SE->getEffectiveSCEVType(PNTy); |
Dan Gohman | 2d1be87 | 2009-04-16 03:18:22 +0000 | [diff] [blame] | 645 | SizesToInsert.insert(PNTy); |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 646 | const Type *EffTy = getEffectiveIndvarType(PN, SE); |
| 647 | EffTy = SE->getEffectiveSCEVType(EffTy); |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 648 | SizesToInsert.insert(EffTy); |
| 649 | if (!LargestType || |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 650 | SE->getTypeSizeInBits(EffTy) > |
| 651 | SE->getTypeSizeInBits(LargestType)) |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 652 | LargestType = EffTy; |
Chris Lattner | 6148c02 | 2001-12-03 17:28:42 +0000 | [diff] [blame] | 653 | } |
| 654 | |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 655 | // Create a rewriter object which we'll use to transform the code with. |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 656 | SCEVExpander Rewriter(*SE, *LI); |
Chris Lattner | 15cad75 | 2003-12-23 07:47:09 +0000 | [diff] [blame] | 657 | |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 658 | // Now that we know the largest of of the induction variables in this loop, |
| 659 | // insert a canonical induction variable of the largest size. |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 660 | Value *IndVar = 0; |
| 661 | if (!SizesToInsert.empty()) { |
| 662 | IndVar = Rewriter.getOrInsertCanonicalInductionVariable(L,LargestType); |
| 663 | ++NumInserted; |
| 664 | Changed = true; |
| 665 | DOUT << "INDVARS: New CanIV: " << *IndVar; |
Dan Gohman | d19534a | 2007-06-15 14:38:12 +0000 | [diff] [blame] | 666 | } |
Chris Lattner | 15cad75 | 2003-12-23 07:47:09 +0000 | [diff] [blame] | 667 | |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 668 | // If we have a trip count expression, rewrite the loop's exit condition |
| 669 | // using it. We can currently only handle loops with a single exit. |
Dan Gohman | aa03649 | 2009-02-14 02:31:09 +0000 | [diff] [blame] | 670 | bool NoSignedWrap = false; |
| 671 | bool NoUnsignedWrap = false; |
Dale Johannesen | dd1f9e4 | 2009-04-15 01:10:12 +0000 | [diff] [blame] | 672 | const ConstantInt* InitialVal, * IncrVal, * LimitVal; |
Dan Gohman | d2067fd | 2009-02-18 00:52:00 +0000 | [diff] [blame] | 673 | const PHINode *OrigControllingPHI = 0; |
Dan Gohman | 46bdfb0 | 2009-02-24 18:55:53 +0000 | [diff] [blame] | 674 | if (!isa<SCEVCouldNotCompute>(BackedgeTakenCount) && ExitingBlock) |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 675 | // Can't rewrite non-branch yet. |
| 676 | if (BranchInst *BI = dyn_cast<BranchInst>(ExitingBlock->getTerminator())) { |
| 677 | if (Instruction *OrigCond = dyn_cast<Instruction>(BI->getCondition())) { |
Dan Gohman | aa03649 | 2009-02-14 02:31:09 +0000 | [diff] [blame] | 678 | // Determine if the OrigIV will ever undergo overflow. |
Dan Gohman | d2067fd | 2009-02-18 00:52:00 +0000 | [diff] [blame] | 679 | OrigControllingPHI = |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 680 | TestOrigIVForWrap(L, BI, OrigCond, *SE, |
Dale Johannesen | dd1f9e4 | 2009-04-15 01:10:12 +0000 | [diff] [blame] | 681 | NoSignedWrap, NoUnsignedWrap, |
| 682 | InitialVal, IncrVal, LimitVal); |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 683 | |
| 684 | // We'll be replacing the original condition, so it'll be dead. |
| 685 | DeadInsts.insert(OrigCond); |
| 686 | } |
| 687 | |
Dan Gohman | 46bdfb0 | 2009-02-24 18:55:53 +0000 | [diff] [blame] | 688 | LinearFunctionTestReplace(L, BackedgeTakenCount, IndVar, |
Dan Gohman | 15cab28 | 2009-02-23 23:20:35 +0000 | [diff] [blame] | 689 | ExitingBlock, BI, Rewriter); |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 690 | } |
| 691 | |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 692 | // Now that we have a canonical induction variable, we can rewrite any |
| 693 | // recurrences in terms of the induction variable. Start with the auxillary |
| 694 | // induction variables, and recursively rewrite any of their uses. |
Dan Gohman | 02dea8b | 2008-05-23 21:05:58 +0000 | [diff] [blame] | 695 | BasicBlock::iterator InsertPt = Header->getFirstNonPHI(); |
Dan Gohman | 752ec7d | 2009-04-23 15:16:49 +0000 | [diff] [blame] | 696 | Rewriter.setInsertionPoint(InsertPt); |
Chris Lattner | 6148c02 | 2001-12-03 17:28:42 +0000 | [diff] [blame] | 697 | |
Chris Lattner | 5d461d2 | 2004-04-21 22:22:01 +0000 | [diff] [blame] | 698 | // If there were induction variables of other sizes, cast the primary |
| 699 | // induction variable to the right size for them, avoiding the need for the |
| 700 | // code evaluation methods to insert induction variables of different sizes. |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 701 | for (unsigned i = 0, e = SizesToInsert.size(); i != e; ++i) { |
| 702 | const Type *Ty = SizesToInsert[i]; |
| 703 | if (Ty != LargestType) { |
| 704 | Instruction *New = new TruncInst(IndVar, Ty, "indvar", InsertPt); |
| 705 | Rewriter.addInsertedValue(New, SE->getSCEV(New)); |
| 706 | DOUT << "INDVARS: Made trunc IV for type " << *Ty << ": " |
| 707 | << *New << "\n"; |
Reid Spencer | a54b7cb | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 708 | } |
Chris Lattner | fcb81f5 | 2004-04-22 14:59:40 +0000 | [diff] [blame] | 709 | } |
| 710 | |
Chris Lattner | ee4f13a | 2007-01-07 01:14:12 +0000 | [diff] [blame] | 711 | // Rewrite all induction variables in terms of the canonical induction |
| 712 | // variable. |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 713 | while (!IndVars.empty()) { |
| 714 | PHINode *PN = IndVars.back().first; |
Dan Gohman | 890f92b | 2009-04-18 17:56:28 +0000 | [diff] [blame] | 715 | const SCEVAddRecExpr *AR = cast<SCEVAddRecExpr>(IndVars.back().second); |
Dan Gohman | 752ec7d | 2009-04-23 15:16:49 +0000 | [diff] [blame] | 716 | Value *NewVal = Rewriter.expandCodeFor(AR, PN->getType()); |
Dan Gohman | 1a5e936 | 2009-02-17 00:10:53 +0000 | [diff] [blame] | 717 | DOUT << "INDVARS: Rewrote IV '" << *AR << "' " << *PN |
Chris Lattner | ee4f13a | 2007-01-07 01:14:12 +0000 | [diff] [blame] | 718 | << " into = " << *NewVal << "\n"; |
Chris Lattner | 6934a04 | 2007-02-11 01:23:03 +0000 | [diff] [blame] | 719 | NewVal->takeName(PN); |
Chris Lattner | 5d461d2 | 2004-04-21 22:22:01 +0000 | [diff] [blame] | 720 | |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 721 | /// If the new canonical induction variable is wider than the original, |
| 722 | /// and the original has uses that are casts to wider types, see if the |
| 723 | /// truncate and extend can be omitted. |
Dan Gohman | d2067fd | 2009-02-18 00:52:00 +0000 | [diff] [blame] | 724 | if (PN == OrigControllingPHI && PN->getType() != LargestType) |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 725 | for (Value::use_iterator UI = PN->use_begin(), UE = PN->use_end(); |
Dan Gohman | aa03649 | 2009-02-14 02:31:09 +0000 | [diff] [blame] | 726 | UI != UE; ++UI) { |
Dale Johannesen | d3325d28 | 2009-04-15 20:41:02 +0000 | [diff] [blame] | 727 | Instruction *UInst = dyn_cast<Instruction>(*UI); |
| 728 | if (UInst && isa<SExtInst>(UInst) && NoSignedWrap) { |
Dale Johannesen | dd1f9e4 | 2009-04-15 01:10:12 +0000 | [diff] [blame] | 729 | Value *TruncIndVar = getSignExtendedTruncVar(AR, SE, LargestType, L, |
Dan Gohman | 752ec7d | 2009-04-23 15:16:49 +0000 | [diff] [blame] | 730 | UInst->getType(), Rewriter); |
Dale Johannesen | d3325d28 | 2009-04-15 20:41:02 +0000 | [diff] [blame] | 731 | UInst->replaceAllUsesWith(TruncIndVar); |
| 732 | DeadInsts.insert(UInst); |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 733 | } |
Dale Johannesen | dd1f9e4 | 2009-04-15 01:10:12 +0000 | [diff] [blame] | 734 | // See if we can figure out sext(i+constant) doesn't wrap, so we can |
| 735 | // use a larger add. This is common in subscripting. |
Dale Johannesen | dd1f9e4 | 2009-04-15 01:10:12 +0000 | [diff] [blame] | 736 | if (UInst && UInst->getOpcode()==Instruction::Add && |
Evan Cheng | a8d4d7f | 2009-04-22 23:09:16 +0000 | [diff] [blame] | 737 | !UInst->use_empty() && |
Dale Johannesen | c671d89 | 2009-04-15 23:31:51 +0000 | [diff] [blame] | 738 | allUsesAreSameTyped(Instruction::SExt, UInst) && |
Dale Johannesen | dd1f9e4 | 2009-04-15 01:10:12 +0000 | [diff] [blame] | 739 | isa<ConstantInt>(UInst->getOperand(1)) && |
Dale Johannesen | d3325d28 | 2009-04-15 20:41:02 +0000 | [diff] [blame] | 740 | NoSignedWrap && LimitVal) { |
| 741 | uint64_t oldBitSize = LimitVal->getValue().getBitWidth(); |
| 742 | uint64_t newBitSize = LargestType->getPrimitiveSizeInBits(); |
| 743 | ConstantInt* AddRHS = dyn_cast<ConstantInt>(UInst->getOperand(1)); |
| 744 | if (((APInt::getSignedMaxValue(oldBitSize) - IncrVal->getValue()) - |
| 745 | AddRHS->getValue()).sgt(LimitVal->getValue())) { |
| 746 | // We've determined this is (i+constant) and it won't overflow. |
| 747 | if (isa<SExtInst>(UInst->use_begin())) { |
| 748 | SExtInst* oldSext = dyn_cast<SExtInst>(UInst->use_begin()); |
Evan Cheng | 9c15949 | 2009-04-22 23:39:28 +0000 | [diff] [blame] | 749 | uint64_t truncSize = oldSext->getType()->getPrimitiveSizeInBits(); |
Dale Johannesen | d3325d28 | 2009-04-15 20:41:02 +0000 | [diff] [blame] | 750 | Value *TruncIndVar = getSignExtendedTruncVar(AR, SE, LargestType, |
Dan Gohman | 752ec7d | 2009-04-23 15:16:49 +0000 | [diff] [blame] | 751 | L, oldSext->getType(), Rewriter); |
Evan Cheng | 9c15949 | 2009-04-22 23:39:28 +0000 | [diff] [blame] | 752 | APInt APnewAddRHS = APInt(AddRHS->getValue()).sext(newBitSize); |
| 753 | if (newBitSize > truncSize) |
| 754 | APnewAddRHS = APnewAddRHS.trunc(truncSize); |
| 755 | ConstantInt* newAddRHS =ConstantInt::get(APnewAddRHS); |
Dale Johannesen | d3325d28 | 2009-04-15 20:41:02 +0000 | [diff] [blame] | 756 | Value *NewAdd = |
| 757 | BinaryOperator::CreateAdd(TruncIndVar, newAddRHS, |
| 758 | UInst->getName()+".nosex", UInst); |
Dale Johannesen | c671d89 | 2009-04-15 23:31:51 +0000 | [diff] [blame] | 759 | for (Value::use_iterator UI2 = UInst->use_begin(), |
| 760 | UE2 = UInst->use_end(); UI2 != UE2; ++UI2) { |
| 761 | Instruction *II = dyn_cast<Instruction>(UI2); |
| 762 | II->replaceAllUsesWith(NewAdd); |
| 763 | DeadInsts.insert(II); |
| 764 | } |
Dale Johannesen | d3325d28 | 2009-04-15 20:41:02 +0000 | [diff] [blame] | 765 | DeadInsts.insert(UInst); |
| 766 | } |
Dale Johannesen | dd1f9e4 | 2009-04-15 01:10:12 +0000 | [diff] [blame] | 767 | } |
| 768 | } |
Dale Johannesen | c671d89 | 2009-04-15 23:31:51 +0000 | [diff] [blame] | 769 | // Try for sext(i | constant). This is safe as long as the |
| 770 | // high bit of the constant is not set. |
| 771 | if (UInst && UInst->getOpcode()==Instruction::Or && |
Evan Cheng | a8d4d7f | 2009-04-22 23:09:16 +0000 | [diff] [blame] | 772 | !UInst->use_empty() && |
Dale Johannesen | c671d89 | 2009-04-15 23:31:51 +0000 | [diff] [blame] | 773 | allUsesAreSameTyped(Instruction::SExt, UInst) && NoSignedWrap && |
| 774 | isa<ConstantInt>(UInst->getOperand(1))) { |
| 775 | ConstantInt* RHS = dyn_cast<ConstantInt>(UInst->getOperand(1)); |
| 776 | if (!RHS->getValue().isNegative()) { |
| 777 | uint64_t newBitSize = LargestType->getPrimitiveSizeInBits(); |
| 778 | SExtInst* oldSext = dyn_cast<SExtInst>(UInst->use_begin()); |
Evan Cheng | 9c15949 | 2009-04-22 23:39:28 +0000 | [diff] [blame] | 779 | uint64_t truncSize = oldSext->getType()->getPrimitiveSizeInBits(); |
Dale Johannesen | c671d89 | 2009-04-15 23:31:51 +0000 | [diff] [blame] | 780 | Value *TruncIndVar = getSignExtendedTruncVar(AR, SE, LargestType, |
Dan Gohman | 752ec7d | 2009-04-23 15:16:49 +0000 | [diff] [blame] | 781 | L, oldSext->getType(), Rewriter); |
Evan Cheng | 9c15949 | 2009-04-22 23:39:28 +0000 | [diff] [blame] | 782 | APInt APnewOrRHS = APInt(RHS->getValue()).sext(newBitSize); |
| 783 | if (newBitSize > truncSize) |
| 784 | APnewOrRHS = APnewOrRHS.trunc(truncSize); |
| 785 | ConstantInt* newOrRHS =ConstantInt::get(APnewOrRHS); |
| 786 | Value *NewOr = |
| 787 | BinaryOperator::CreateOr(TruncIndVar, newOrRHS, |
Dale Johannesen | c671d89 | 2009-04-15 23:31:51 +0000 | [diff] [blame] | 788 | UInst->getName()+".nosex", UInst); |
| 789 | for (Value::use_iterator UI2 = UInst->use_begin(), |
| 790 | UE2 = UInst->use_end(); UI2 != UE2; ++UI2) { |
| 791 | Instruction *II = dyn_cast<Instruction>(UI2); |
Evan Cheng | 9c15949 | 2009-04-22 23:39:28 +0000 | [diff] [blame] | 792 | II->replaceAllUsesWith(NewOr); |
Dale Johannesen | c671d89 | 2009-04-15 23:31:51 +0000 | [diff] [blame] | 793 | DeadInsts.insert(II); |
| 794 | } |
| 795 | DeadInsts.insert(UInst); |
| 796 | } |
| 797 | } |
| 798 | // A zext of a signed variable known not to overflow is still safe. |
| 799 | if (UInst && isa<ZExtInst>(UInst) && (NoUnsignedWrap || NoSignedWrap)) { |
Dale Johannesen | dd1f9e4 | 2009-04-15 01:10:12 +0000 | [diff] [blame] | 800 | Value *TruncIndVar = getZeroExtendedTruncVar(AR, SE, LargestType, L, |
Dan Gohman | 752ec7d | 2009-04-23 15:16:49 +0000 | [diff] [blame] | 801 | UInst->getType(), Rewriter); |
Dale Johannesen | d3325d28 | 2009-04-15 20:41:02 +0000 | [diff] [blame] | 802 | UInst->replaceAllUsesWith(TruncIndVar); |
| 803 | DeadInsts.insert(UInst); |
| 804 | } |
Dale Johannesen | c671d89 | 2009-04-15 23:31:51 +0000 | [diff] [blame] | 805 | // If we have zext(i&constant), it's always safe to use the larger |
| 806 | // variable. This is not common but is a bottleneck in Openssl. |
Dale Johannesen | d3325d28 | 2009-04-15 20:41:02 +0000 | [diff] [blame] | 807 | // (RHS doesn't have to be constant. There should be a better approach |
| 808 | // than bottom-up pattern matching for this...) |
| 809 | if (UInst && UInst->getOpcode()==Instruction::And && |
Evan Cheng | 1abe646 | 2009-04-22 22:45:37 +0000 | [diff] [blame] | 810 | !UInst->use_empty() && |
Dale Johannesen | c671d89 | 2009-04-15 23:31:51 +0000 | [diff] [blame] | 811 | allUsesAreSameTyped(Instruction::ZExt, UInst) && |
| 812 | isa<ConstantInt>(UInst->getOperand(1))) { |
Dale Johannesen | d3325d28 | 2009-04-15 20:41:02 +0000 | [diff] [blame] | 813 | uint64_t newBitSize = LargestType->getPrimitiveSizeInBits(); |
| 814 | ConstantInt* AndRHS = dyn_cast<ConstantInt>(UInst->getOperand(1)); |
| 815 | ZExtInst* oldZext = dyn_cast<ZExtInst>(UInst->use_begin()); |
Evan Cheng | 9c15949 | 2009-04-22 23:39:28 +0000 | [diff] [blame] | 816 | uint64_t truncSize = oldZext->getType()->getPrimitiveSizeInBits(); |
Dale Johannesen | d3325d28 | 2009-04-15 20:41:02 +0000 | [diff] [blame] | 817 | Value *TruncIndVar = getSignExtendedTruncVar(AR, SE, LargestType, |
Dan Gohman | 752ec7d | 2009-04-23 15:16:49 +0000 | [diff] [blame] | 818 | L, oldZext->getType(), Rewriter); |
Evan Cheng | 9c15949 | 2009-04-22 23:39:28 +0000 | [diff] [blame] | 819 | APInt APnewAndRHS = APInt(AndRHS->getValue()).zext(newBitSize); |
| 820 | if (newBitSize > truncSize) |
| 821 | APnewAndRHS = APnewAndRHS.trunc(truncSize); |
| 822 | ConstantInt* newAndRHS = ConstantInt::get(APnewAndRHS); |
Dale Johannesen | d3325d28 | 2009-04-15 20:41:02 +0000 | [diff] [blame] | 823 | Value *NewAnd = |
| 824 | BinaryOperator::CreateAnd(TruncIndVar, newAndRHS, |
| 825 | UInst->getName()+".nozex", UInst); |
Dale Johannesen | c671d89 | 2009-04-15 23:31:51 +0000 | [diff] [blame] | 826 | for (Value::use_iterator UI2 = UInst->use_begin(), |
| 827 | UE2 = UInst->use_end(); UI2 != UE2; ++UI2) { |
| 828 | Instruction *II = dyn_cast<Instruction>(UI2); |
| 829 | II->replaceAllUsesWith(NewAnd); |
| 830 | DeadInsts.insert(II); |
| 831 | } |
Dale Johannesen | d3325d28 | 2009-04-15 20:41:02 +0000 | [diff] [blame] | 832 | DeadInsts.insert(UInst); |
| 833 | } |
| 834 | // If we have zext((i+constant)&constant), we can use the larger |
| 835 | // variable even if the add does overflow. This works whenever the |
| 836 | // constant being ANDed is the same size as i, which it presumably is. |
| 837 | // We don't need to restrict the expression being and'ed to i+const, |
| 838 | // but we have to promote everything in it, so it's convenient. |
Dale Johannesen | c671d89 | 2009-04-15 23:31:51 +0000 | [diff] [blame] | 839 | // zext((i | constant)&constant) is also valid and accepted here. |
| 840 | if (UInst && (UInst->getOpcode()==Instruction::Add || |
| 841 | UInst->getOpcode()==Instruction::Or) && |
Dale Johannesen | d3325d28 | 2009-04-15 20:41:02 +0000 | [diff] [blame] | 842 | UInst->hasOneUse() && |
| 843 | isa<ConstantInt>(UInst->getOperand(1))) { |
| 844 | uint64_t newBitSize = LargestType->getPrimitiveSizeInBits(); |
| 845 | ConstantInt* AddRHS = dyn_cast<ConstantInt>(UInst->getOperand(1)); |
| 846 | Instruction *UInst2 = dyn_cast<Instruction>(UInst->use_begin()); |
| 847 | if (UInst2 && UInst2->getOpcode() == Instruction::And && |
Evan Cheng | a8d4d7f | 2009-04-22 23:09:16 +0000 | [diff] [blame] | 848 | !UInst2->use_empty() && |
Dale Johannesen | c671d89 | 2009-04-15 23:31:51 +0000 | [diff] [blame] | 849 | allUsesAreSameTyped(Instruction::ZExt, UInst2) && |
| 850 | isa<ConstantInt>(UInst2->getOperand(1))) { |
Dale Johannesen | d3325d28 | 2009-04-15 20:41:02 +0000 | [diff] [blame] | 851 | ZExtInst* oldZext = dyn_cast<ZExtInst>(UInst2->use_begin()); |
Evan Cheng | 9c15949 | 2009-04-22 23:39:28 +0000 | [diff] [blame] | 852 | uint64_t truncSize = oldZext->getType()->getPrimitiveSizeInBits(); |
Dale Johannesen | d3325d28 | 2009-04-15 20:41:02 +0000 | [diff] [blame] | 853 | Value *TruncIndVar = getSignExtendedTruncVar(AR, SE, LargestType, |
Dan Gohman | 752ec7d | 2009-04-23 15:16:49 +0000 | [diff] [blame] | 854 | L, oldZext->getType(), Rewriter); |
Dale Johannesen | d3325d28 | 2009-04-15 20:41:02 +0000 | [diff] [blame] | 855 | ConstantInt* AndRHS = dyn_cast<ConstantInt>(UInst2->getOperand(1)); |
Evan Cheng | 9c15949 | 2009-04-22 23:39:28 +0000 | [diff] [blame] | 856 | APInt APnewAddRHS = APInt(AddRHS->getValue()).zext(newBitSize); |
| 857 | if (newBitSize > truncSize) |
| 858 | APnewAddRHS = APnewAddRHS.trunc(truncSize); |
| 859 | ConstantInt* newAddRHS = ConstantInt::get(APnewAddRHS); |
Dale Johannesen | c671d89 | 2009-04-15 23:31:51 +0000 | [diff] [blame] | 860 | Value *NewAdd = ((UInst->getOpcode()==Instruction::Add) ? |
Dale Johannesen | d3325d28 | 2009-04-15 20:41:02 +0000 | [diff] [blame] | 861 | BinaryOperator::CreateAdd(TruncIndVar, newAddRHS, |
Dale Johannesen | c671d89 | 2009-04-15 23:31:51 +0000 | [diff] [blame] | 862 | UInst->getName()+".nozex", UInst2) : |
| 863 | BinaryOperator::CreateOr(TruncIndVar, newAddRHS, |
| 864 | UInst->getName()+".nozex", UInst2)); |
Dale Johannesen | d3325d28 | 2009-04-15 20:41:02 +0000 | [diff] [blame] | 865 | APInt APcopy2 = APInt(AndRHS->getValue()); |
| 866 | ConstantInt* newAndRHS = ConstantInt::get(APcopy2.zext(newBitSize)); |
| 867 | Value *NewAnd = |
| 868 | BinaryOperator::CreateAnd(NewAdd, newAndRHS, |
| 869 | UInst->getName()+".nozex", UInst2); |
Dale Johannesen | c671d89 | 2009-04-15 23:31:51 +0000 | [diff] [blame] | 870 | for (Value::use_iterator UI2 = UInst2->use_begin(), |
| 871 | UE2 = UInst2->use_end(); UI2 != UE2; ++UI2) { |
| 872 | Instruction *II = dyn_cast<Instruction>(UI2); |
| 873 | II->replaceAllUsesWith(NewAnd); |
| 874 | DeadInsts.insert(II); |
| 875 | } |
Dale Johannesen | d3325d28 | 2009-04-15 20:41:02 +0000 | [diff] [blame] | 876 | DeadInsts.insert(UInst); |
| 877 | DeadInsts.insert(UInst2); |
| 878 | } |
Dan Gohman | aa03649 | 2009-02-14 02:31:09 +0000 | [diff] [blame] | 879 | } |
| 880 | } |
Dan Gohman | c2390b1 | 2009-02-12 22:19:27 +0000 | [diff] [blame] | 881 | |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 882 | // Replace the old PHI Node with the inserted computation. |
Chris Lattner | fcb81f5 | 2004-04-22 14:59:40 +0000 | [diff] [blame] | 883 | PN->replaceAllUsesWith(NewVal); |
Chris Lattner | 40bf8b4 | 2004-04-02 20:24:31 +0000 | [diff] [blame] | 884 | DeadInsts.insert(PN); |
| 885 | IndVars.pop_back(); |
| 886 | ++NumRemoved; |
Chris Lattner | 4753bf2 | 2001-12-05 19:41:33 +0000 | [diff] [blame] | 887 | Changed = true; |
Chris Lattner | 394437f | 2001-12-04 04:32:29 +0000 | [diff] [blame] | 888 | } |
| 889 | |
Chris Lattner | 1363e85 | 2004-04-21 23:36:08 +0000 | [diff] [blame] | 890 | DeleteTriviallyDeadInstructions(DeadInsts); |
Chris Lattner | 9caed54 | 2007-03-04 01:00:28 +0000 | [diff] [blame] | 891 | assert(L->isLCSSAForm()); |
Devang Patel | 5ee9997 | 2007-03-07 06:39:01 +0000 | [diff] [blame] | 892 | return Changed; |
Chris Lattner | 6148c02 | 2001-12-03 17:28:42 +0000 | [diff] [blame] | 893 | } |
Devang Patel | d22a849 | 2008-09-09 21:41:07 +0000 | [diff] [blame] | 894 | |
Devang Patel | 13877bf | 2008-11-18 00:40:02 +0000 | [diff] [blame] | 895 | /// Return true if it is OK to use SIToFPInst for an inducation variable |
| 896 | /// with given inital and exit values. |
| 897 | static bool useSIToFPInst(ConstantFP &InitV, ConstantFP &ExitV, |
| 898 | uint64_t intIV, uint64_t intEV) { |
| 899 | |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 900 | if (InitV.getValueAPF().isNegative() || ExitV.getValueAPF().isNegative()) |
Devang Patel | 13877bf | 2008-11-18 00:40:02 +0000 | [diff] [blame] | 901 | return true; |
| 902 | |
| 903 | // If the iteration range can be handled by SIToFPInst then use it. |
| 904 | APInt Max = APInt::getSignedMaxValue(32); |
Bill Wendling | 9bef706 | 2008-11-18 10:57:27 +0000 | [diff] [blame] | 905 | if (Max.getZExtValue() > static_cast<uint64_t>(abs(intEV - intIV))) |
Devang Patel | 13877bf | 2008-11-18 00:40:02 +0000 | [diff] [blame] | 906 | return true; |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 907 | |
Devang Patel | 13877bf | 2008-11-18 00:40:02 +0000 | [diff] [blame] | 908 | return false; |
| 909 | } |
| 910 | |
| 911 | /// convertToInt - Convert APF to an integer, if possible. |
Devang Patel | cd40233 | 2008-11-17 23:27:13 +0000 | [diff] [blame] | 912 | static bool convertToInt(const APFloat &APF, uint64_t *intVal) { |
| 913 | |
| 914 | bool isExact = false; |
Evan Cheng | 794a7db | 2008-11-26 01:11:57 +0000 | [diff] [blame] | 915 | if (&APF.getSemantics() == &APFloat::PPCDoubleDouble) |
| 916 | return false; |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 917 | if (APF.convertToInteger(intVal, 32, APF.isNegative(), |
Devang Patel | cd40233 | 2008-11-17 23:27:13 +0000 | [diff] [blame] | 918 | APFloat::rmTowardZero, &isExact) |
| 919 | != APFloat::opOK) |
| 920 | return false; |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 921 | if (!isExact) |
Devang Patel | cd40233 | 2008-11-17 23:27:13 +0000 | [diff] [blame] | 922 | return false; |
| 923 | return true; |
| 924 | |
| 925 | } |
| 926 | |
Devang Patel | 58d43d4 | 2008-11-03 18:32:19 +0000 | [diff] [blame] | 927 | /// HandleFloatingPointIV - If the loop has floating induction variable |
| 928 | /// then insert corresponding integer induction variable if possible. |
Devang Patel | 84e3515 | 2008-11-17 21:32:02 +0000 | [diff] [blame] | 929 | /// For example, |
| 930 | /// for(double i = 0; i < 10000; ++i) |
| 931 | /// bar(i) |
| 932 | /// is converted into |
| 933 | /// for(int i = 0; i < 10000; ++i) |
| 934 | /// bar((double)i); |
| 935 | /// |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 936 | void IndVarSimplify::HandleFloatingPointIV(Loop *L, PHINode *PH, |
Devang Patel | 84e3515 | 2008-11-17 21:32:02 +0000 | [diff] [blame] | 937 | SmallPtrSet<Instruction*, 16> &DeadInsts) { |
Devang Patel | 58d43d4 | 2008-11-03 18:32:19 +0000 | [diff] [blame] | 938 | |
Devang Patel | 84e3515 | 2008-11-17 21:32:02 +0000 | [diff] [blame] | 939 | unsigned IncomingEdge = L->contains(PH->getIncomingBlock(0)); |
| 940 | unsigned BackEdge = IncomingEdge^1; |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 941 | |
Devang Patel | 84e3515 | 2008-11-17 21:32:02 +0000 | [diff] [blame] | 942 | // Check incoming value. |
Devang Patel | cd40233 | 2008-11-17 23:27:13 +0000 | [diff] [blame] | 943 | ConstantFP *InitValue = dyn_cast<ConstantFP>(PH->getIncomingValue(IncomingEdge)); |
| 944 | if (!InitValue) return; |
| 945 | uint64_t newInitValue = Type::Int32Ty->getPrimitiveSizeInBits(); |
| 946 | if (!convertToInt(InitValue->getValueAPF(), &newInitValue)) |
| 947 | return; |
| 948 | |
| 949 | // Check IV increment. Reject this PH if increement operation is not |
| 950 | // an add or increment value can not be represented by an integer. |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 951 | BinaryOperator *Incr = |
Devang Patel | 84e3515 | 2008-11-17 21:32:02 +0000 | [diff] [blame] | 952 | dyn_cast<BinaryOperator>(PH->getIncomingValue(BackEdge)); |
| 953 | if (!Incr) return; |
| 954 | if (Incr->getOpcode() != Instruction::Add) return; |
| 955 | ConstantFP *IncrValue = NULL; |
| 956 | unsigned IncrVIndex = 1; |
| 957 | if (Incr->getOperand(1) == PH) |
| 958 | IncrVIndex = 0; |
| 959 | IncrValue = dyn_cast<ConstantFP>(Incr->getOperand(IncrVIndex)); |
| 960 | if (!IncrValue) return; |
Devang Patel | cd40233 | 2008-11-17 23:27:13 +0000 | [diff] [blame] | 961 | uint64_t newIncrValue = Type::Int32Ty->getPrimitiveSizeInBits(); |
| 962 | if (!convertToInt(IncrValue->getValueAPF(), &newIncrValue)) |
| 963 | return; |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 964 | |
Devang Patel | cd40233 | 2008-11-17 23:27:13 +0000 | [diff] [blame] | 965 | // Check Incr uses. One user is PH and the other users is exit condition used |
| 966 | // by the conditional terminator. |
Devang Patel | 84e3515 | 2008-11-17 21:32:02 +0000 | [diff] [blame] | 967 | Value::use_iterator IncrUse = Incr->use_begin(); |
| 968 | Instruction *U1 = cast<Instruction>(IncrUse++); |
| 969 | if (IncrUse == Incr->use_end()) return; |
| 970 | Instruction *U2 = cast<Instruction>(IncrUse++); |
| 971 | if (IncrUse != Incr->use_end()) return; |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 972 | |
Devang Patel | 84e3515 | 2008-11-17 21:32:02 +0000 | [diff] [blame] | 973 | // Find exit condition. |
| 974 | FCmpInst *EC = dyn_cast<FCmpInst>(U1); |
| 975 | if (!EC) |
| 976 | EC = dyn_cast<FCmpInst>(U2); |
| 977 | if (!EC) return; |
| 978 | |
| 979 | if (BranchInst *BI = dyn_cast<BranchInst>(EC->getParent()->getTerminator())) { |
| 980 | if (!BI->isConditional()) return; |
| 981 | if (BI->getCondition() != EC) return; |
Devang Patel | 58d43d4 | 2008-11-03 18:32:19 +0000 | [diff] [blame] | 982 | } |
Devang Patel | 58d43d4 | 2008-11-03 18:32:19 +0000 | [diff] [blame] | 983 | |
Devang Patel | cd40233 | 2008-11-17 23:27:13 +0000 | [diff] [blame] | 984 | // Find exit value. If exit value can not be represented as an interger then |
| 985 | // do not handle this floating point PH. |
Devang Patel | 84e3515 | 2008-11-17 21:32:02 +0000 | [diff] [blame] | 986 | ConstantFP *EV = NULL; |
| 987 | unsigned EVIndex = 1; |
| 988 | if (EC->getOperand(1) == Incr) |
| 989 | EVIndex = 0; |
| 990 | EV = dyn_cast<ConstantFP>(EC->getOperand(EVIndex)); |
| 991 | if (!EV) return; |
Devang Patel | 84e3515 | 2008-11-17 21:32:02 +0000 | [diff] [blame] | 992 | uint64_t intEV = Type::Int32Ty->getPrimitiveSizeInBits(); |
Devang Patel | cd40233 | 2008-11-17 23:27:13 +0000 | [diff] [blame] | 993 | if (!convertToInt(EV->getValueAPF(), &intEV)) |
Devang Patel | 84e3515 | 2008-11-17 21:32:02 +0000 | [diff] [blame] | 994 | return; |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 995 | |
Devang Patel | 84e3515 | 2008-11-17 21:32:02 +0000 | [diff] [blame] | 996 | // Find new predicate for integer comparison. |
| 997 | CmpInst::Predicate NewPred = CmpInst::BAD_ICMP_PREDICATE; |
| 998 | switch (EC->getPredicate()) { |
| 999 | case CmpInst::FCMP_OEQ: |
| 1000 | case CmpInst::FCMP_UEQ: |
| 1001 | NewPred = CmpInst::ICMP_EQ; |
| 1002 | break; |
| 1003 | case CmpInst::FCMP_OGT: |
| 1004 | case CmpInst::FCMP_UGT: |
| 1005 | NewPred = CmpInst::ICMP_UGT; |
| 1006 | break; |
| 1007 | case CmpInst::FCMP_OGE: |
| 1008 | case CmpInst::FCMP_UGE: |
| 1009 | NewPred = CmpInst::ICMP_UGE; |
| 1010 | break; |
| 1011 | case CmpInst::FCMP_OLT: |
| 1012 | case CmpInst::FCMP_ULT: |
| 1013 | NewPred = CmpInst::ICMP_ULT; |
| 1014 | break; |
| 1015 | case CmpInst::FCMP_OLE: |
| 1016 | case CmpInst::FCMP_ULE: |
| 1017 | NewPred = CmpInst::ICMP_ULE; |
| 1018 | break; |
| 1019 | default: |
| 1020 | break; |
Devang Patel | 58d43d4 | 2008-11-03 18:32:19 +0000 | [diff] [blame] | 1021 | } |
Devang Patel | 84e3515 | 2008-11-17 21:32:02 +0000 | [diff] [blame] | 1022 | if (NewPred == CmpInst::BAD_ICMP_PREDICATE) return; |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 1023 | |
Devang Patel | 84e3515 | 2008-11-17 21:32:02 +0000 | [diff] [blame] | 1024 | // Insert new integer induction variable. |
| 1025 | PHINode *NewPHI = PHINode::Create(Type::Int32Ty, |
| 1026 | PH->getName()+".int", PH); |
Devang Patel | cd40233 | 2008-11-17 23:27:13 +0000 | [diff] [blame] | 1027 | NewPHI->addIncoming(ConstantInt::get(Type::Int32Ty, newInitValue), |
Devang Patel | 84e3515 | 2008-11-17 21:32:02 +0000 | [diff] [blame] | 1028 | PH->getIncomingBlock(IncomingEdge)); |
| 1029 | |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 1030 | Value *NewAdd = BinaryOperator::CreateAdd(NewPHI, |
| 1031 | ConstantInt::get(Type::Int32Ty, |
Devang Patel | cd40233 | 2008-11-17 23:27:13 +0000 | [diff] [blame] | 1032 | newIncrValue), |
Devang Patel | 84e3515 | 2008-11-17 21:32:02 +0000 | [diff] [blame] | 1033 | Incr->getName()+".int", Incr); |
| 1034 | NewPHI->addIncoming(NewAdd, PH->getIncomingBlock(BackEdge)); |
| 1035 | |
Dale Johannesen | 617d108 | 2009-04-27 21:03:15 +0000 | [diff] [blame] | 1036 | // The back edge is edge 1 of newPHI, whatever it may have been in the |
| 1037 | // original PHI. |
Devang Patel | 84e3515 | 2008-11-17 21:32:02 +0000 | [diff] [blame] | 1038 | ConstantInt *NewEV = ConstantInt::get(Type::Int32Ty, intEV); |
Dale Johannesen | 617d108 | 2009-04-27 21:03:15 +0000 | [diff] [blame] | 1039 | Value *LHS = (EVIndex == 1 ? NewPHI->getIncomingValue(1) : NewEV); |
| 1040 | Value *RHS = (EVIndex == 1 ? NewEV : NewPHI->getIncomingValue(1)); |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 1041 | ICmpInst *NewEC = new ICmpInst(NewPred, LHS, RHS, EC->getNameStart(), |
Devang Patel | 84e3515 | 2008-11-17 21:32:02 +0000 | [diff] [blame] | 1042 | EC->getParent()->getTerminator()); |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 1043 | |
Devang Patel | 84e3515 | 2008-11-17 21:32:02 +0000 | [diff] [blame] | 1044 | // Delete old, floating point, exit comparision instruction. |
| 1045 | EC->replaceAllUsesWith(NewEC); |
| 1046 | DeadInsts.insert(EC); |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 1047 | |
Devang Patel | 84e3515 | 2008-11-17 21:32:02 +0000 | [diff] [blame] | 1048 | // Delete old, floating point, increment instruction. |
| 1049 | Incr->replaceAllUsesWith(UndefValue::get(Incr->getType())); |
| 1050 | DeadInsts.insert(Incr); |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 1051 | |
Devang Patel | 13877bf | 2008-11-18 00:40:02 +0000 | [diff] [blame] | 1052 | // Replace floating induction variable. Give SIToFPInst preference over |
| 1053 | // UIToFPInst because it is faster on platforms that are widely used. |
| 1054 | if (useSIToFPInst(*InitValue, *EV, newInitValue, intEV)) { |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 1055 | SIToFPInst *Conv = new SIToFPInst(NewPHI, PH->getType(), "indvar.conv", |
Devang Patel | cd40233 | 2008-11-17 23:27:13 +0000 | [diff] [blame] | 1056 | PH->getParent()->getFirstNonPHI()); |
| 1057 | PH->replaceAllUsesWith(Conv); |
| 1058 | } else { |
Dan Gohman | cafb813 | 2009-02-17 19:13:57 +0000 | [diff] [blame] | 1059 | UIToFPInst *Conv = new UIToFPInst(NewPHI, PH->getType(), "indvar.conv", |
Devang Patel | cd40233 | 2008-11-17 23:27:13 +0000 | [diff] [blame] | 1060 | PH->getParent()->getFirstNonPHI()); |
| 1061 | PH->replaceAllUsesWith(Conv); |
| 1062 | } |
Devang Patel | 84e3515 | 2008-11-17 21:32:02 +0000 | [diff] [blame] | 1063 | DeadInsts.insert(PH); |
Devang Patel | 58d43d4 | 2008-11-03 18:32:19 +0000 | [diff] [blame] | 1064 | } |
| 1065 | |