Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 1 | //===- LoopStrengthReduce.cpp - Strength Reduce GEPs in Loops -------------===// |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by Nate Begeman and is distributed under the |
| 6 | // University of Illinois Open Source License. See LICENSE.TXT for details. |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This pass performs a strength reduction on array references inside loops that |
| 11 | // have as one or more of their components the loop induction variable. This is |
| 12 | // accomplished by creating a new Value to hold the initial value of the array |
| 13 | // access for the first iteration, and then creating a new GEP instruction in |
| 14 | // the loop to increment the value by the appropriate amount. |
| 15 | // |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 16 | //===----------------------------------------------------------------------===// |
| 17 | |
Chris Lattner | bb78c97 | 2005-08-03 23:30:08 +0000 | [diff] [blame] | 18 | #define DEBUG_TYPE "loop-reduce" |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 19 | #include "llvm/Transforms/Scalar.h" |
| 20 | #include "llvm/Constants.h" |
| 21 | #include "llvm/Instructions.h" |
| 22 | #include "llvm/Type.h" |
Jeff Cohen | a2c59b7 | 2005-03-04 04:04:26 +0000 | [diff] [blame] | 23 | #include "llvm/DerivedTypes.h" |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 24 | #include "llvm/Analysis/Dominators.h" |
| 25 | #include "llvm/Analysis/LoopInfo.h" |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 26 | #include "llvm/Analysis/ScalarEvolutionExpander.h" |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 27 | #include "llvm/Support/CFG.h" |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 28 | #include "llvm/Support/GetElementPtrTypeIterator.h" |
Chris Lattner | 4fec86d | 2005-08-12 22:06:11 +0000 | [diff] [blame] | 29 | #include "llvm/Transforms/Utils/BasicBlockUtils.h" |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 30 | #include "llvm/Transforms/Utils/Local.h" |
Jeff Cohen | a2c59b7 | 2005-03-04 04:04:26 +0000 | [diff] [blame] | 31 | #include "llvm/Target/TargetData.h" |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 32 | #include "llvm/ADT/Statistic.h" |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 33 | #include "llvm/Support/Debug.h" |
Evan Cheng | c567c4e | 2006-03-13 23:14:23 +0000 | [diff] [blame] | 34 | #include "llvm/Target/TargetLowering.h" |
Jeff Cohen | c500991 | 2005-07-30 18:22:27 +0000 | [diff] [blame] | 35 | #include <algorithm> |
Chris Lattner | c597b8a | 2006-01-22 23:32:06 +0000 | [diff] [blame] | 36 | #include <iostream> |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 37 | #include <set> |
| 38 | using namespace llvm; |
| 39 | |
| 40 | namespace { |
| 41 | Statistic<> NumReduced ("loop-reduce", "Number of GEPs strength reduced"); |
Chris Lattner | 45f8b6e | 2005-08-04 22:34:05 +0000 | [diff] [blame] | 42 | Statistic<> NumInserted("loop-reduce", "Number of PHIs inserted"); |
Chris Lattner | edff91a | 2005-08-10 00:45:21 +0000 | [diff] [blame] | 43 | Statistic<> NumVariable("loop-reduce","Number of PHIs with variable strides"); |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 44 | |
Chris Lattner | 430d002 | 2005-08-03 22:21:05 +0000 | [diff] [blame] | 45 | /// IVStrideUse - Keep track of one use of a strided induction variable, where |
| 46 | /// the stride is stored externally. The Offset member keeps track of the |
| 47 | /// offset from the IV, User is the actual user of the operand, and 'Operand' |
| 48 | /// is the operand # of the User that is the use. |
| 49 | struct IVStrideUse { |
| 50 | SCEVHandle Offset; |
| 51 | Instruction *User; |
| 52 | Value *OperandValToReplace; |
Chris Lattner | 9bfa6f8 | 2005-08-08 05:28:22 +0000 | [diff] [blame] | 53 | |
| 54 | // isUseOfPostIncrementedValue - True if this should use the |
| 55 | // post-incremented version of this IV, not the preincremented version. |
| 56 | // This can only be set in special cases, such as the terminating setcc |
Chris Lattner | a676483 | 2005-09-12 06:04:47 +0000 | [diff] [blame] | 57 | // instruction for a loop or uses dominated by the loop. |
Chris Lattner | 9bfa6f8 | 2005-08-08 05:28:22 +0000 | [diff] [blame] | 58 | bool isUseOfPostIncrementedValue; |
Chris Lattner | 430d002 | 2005-08-03 22:21:05 +0000 | [diff] [blame] | 59 | |
| 60 | IVStrideUse(const SCEVHandle &Offs, Instruction *U, Value *O) |
Chris Lattner | 9bfa6f8 | 2005-08-08 05:28:22 +0000 | [diff] [blame] | 61 | : Offset(Offs), User(U), OperandValToReplace(O), |
| 62 | isUseOfPostIncrementedValue(false) {} |
Chris Lattner | 430d002 | 2005-08-03 22:21:05 +0000 | [diff] [blame] | 63 | }; |
| 64 | |
| 65 | /// IVUsersOfOneStride - This structure keeps track of all instructions that |
| 66 | /// have an operand that is based on the trip count multiplied by some stride. |
| 67 | /// The stride for all of these users is common and kept external to this |
| 68 | /// structure. |
| 69 | struct IVUsersOfOneStride { |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 70 | /// Users - Keep track of all of the users of this stride as well as the |
Chris Lattner | 430d002 | 2005-08-03 22:21:05 +0000 | [diff] [blame] | 71 | /// initial value and the operand that uses the IV. |
| 72 | std::vector<IVStrideUse> Users; |
| 73 | |
| 74 | void addUser(const SCEVHandle &Offset,Instruction *User, Value *Operand) { |
| 75 | Users.push_back(IVStrideUse(Offset, User, Operand)); |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 76 | } |
| 77 | }; |
| 78 | |
Evan Cheng | 3df447d | 2006-03-16 21:53:05 +0000 | [diff] [blame] | 79 | /// IVInfo - This structure keeps track of one IV expression inserted during |
| 80 | /// StrengthReduceStridedIVUsers. It contains the base value, as well as the |
| 81 | /// PHI node and increment value created for rewrite. |
| 82 | struct IVExpr { |
| 83 | SCEVHandle Base; |
| 84 | PHINode *PHI; |
| 85 | Value *IncV; |
| 86 | |
| 87 | IVExpr(const SCEVHandle &base, PHINode *phi, Value *incv) |
| 88 | : Base(base), PHI(phi), IncV(incv) {} |
| 89 | }; |
| 90 | |
| 91 | /// IVsOfOneStride - This structure keeps track of all IV expression inserted |
| 92 | /// during StrengthReduceStridedIVUsers for a particular stride of the IV. |
| 93 | struct IVsOfOneStride { |
| 94 | std::vector<IVExpr> IVs; |
| 95 | |
| 96 | void addIV(const SCEVHandle &Base, PHINode *PHI, Value *IncV) { |
| 97 | IVs.push_back(IVExpr(Base, PHI, IncV)); |
| 98 | } |
| 99 | }; |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 100 | |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 101 | class LoopStrengthReduce : public FunctionPass { |
| 102 | LoopInfo *LI; |
Chris Lattner | cb36710 | 2006-01-11 05:10:20 +0000 | [diff] [blame] | 103 | ETForest *EF; |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 104 | ScalarEvolution *SE; |
| 105 | const TargetData *TD; |
| 106 | const Type *UIntPtrTy; |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 107 | bool Changed; |
Chris Lattner | 75a44e1 | 2005-08-02 02:52:02 +0000 | [diff] [blame] | 108 | |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 109 | /// IVUsesByStride - Keep track of all uses of induction variables that we |
| 110 | /// are interested in. The key of the map is the stride of the access. |
Chris Lattner | edff91a | 2005-08-10 00:45:21 +0000 | [diff] [blame] | 111 | std::map<SCEVHandle, IVUsersOfOneStride> IVUsesByStride; |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 112 | |
Evan Cheng | 3df447d | 2006-03-16 21:53:05 +0000 | [diff] [blame] | 113 | /// IVsByStride - Keep track of all IVs that have been inserted for a |
| 114 | /// particular stride. |
| 115 | std::map<SCEVHandle, IVsOfOneStride> IVsByStride; |
| 116 | |
Chris Lattner | 4ea0a3e | 2005-10-09 06:20:55 +0000 | [diff] [blame] | 117 | /// StrideOrder - An ordering of the keys in IVUsesByStride that is stable: |
| 118 | /// We use this to iterate over the IVUsesByStride collection without being |
| 119 | /// dependent on random ordering of pointers in the process. |
| 120 | std::vector<SCEVHandle> StrideOrder; |
| 121 | |
Chris Lattner | 6f286b7 | 2005-08-04 01:19:13 +0000 | [diff] [blame] | 122 | /// CastedValues - As we need to cast values to uintptr_t, this keeps track |
| 123 | /// of the casted version of each value. This is accessed by |
| 124 | /// getCastedVersionOf. |
| 125 | std::map<Value*, Value*> CastedPointers; |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 126 | |
| 127 | /// DeadInsts - Keep track of instructions we may have made dead, so that |
| 128 | /// we can remove them after we are done working. |
| 129 | std::set<Instruction*> DeadInsts; |
Evan Cheng | c567c4e | 2006-03-13 23:14:23 +0000 | [diff] [blame] | 130 | |
| 131 | /// TLI - Keep a pointer of a TargetLowering to consult for determining |
| 132 | /// transformation profitability. |
| 133 | const TargetLowering *TLI; |
| 134 | |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 135 | public: |
Evan Cheng | 3df447d | 2006-03-16 21:53:05 +0000 | [diff] [blame] | 136 | LoopStrengthReduce(const TargetLowering *tli = NULL) |
| 137 | : TLI(tli) { |
Jeff Cohen | a2c59b7 | 2005-03-04 04:04:26 +0000 | [diff] [blame] | 138 | } |
| 139 | |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 140 | virtual bool runOnFunction(Function &) { |
| 141 | LI = &getAnalysis<LoopInfo>(); |
Chris Lattner | cb36710 | 2006-01-11 05:10:20 +0000 | [diff] [blame] | 142 | EF = &getAnalysis<ETForest>(); |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 143 | SE = &getAnalysis<ScalarEvolution>(); |
| 144 | TD = &getAnalysis<TargetData>(); |
| 145 | UIntPtrTy = TD->getIntPtrType(); |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 146 | Changed = false; |
| 147 | |
| 148 | for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I) |
| 149 | runOnLoop(*I); |
Chris Lattner | 6f286b7 | 2005-08-04 01:19:13 +0000 | [diff] [blame] | 150 | |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 151 | return Changed; |
| 152 | } |
| 153 | |
| 154 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
Chris Lattner | 2bf7cb5 | 2005-08-17 06:35:16 +0000 | [diff] [blame] | 155 | // We split critical edges, so we change the CFG. However, we do update |
| 156 | // many analyses if they are around. |
| 157 | AU.addPreservedID(LoopSimplifyID); |
| 158 | AU.addPreserved<LoopInfo>(); |
| 159 | AU.addPreserved<DominatorSet>(); |
Chris Lattner | cb36710 | 2006-01-11 05:10:20 +0000 | [diff] [blame] | 160 | AU.addPreserved<ETForest>(); |
Chris Lattner | 2bf7cb5 | 2005-08-17 06:35:16 +0000 | [diff] [blame] | 161 | AU.addPreserved<ImmediateDominators>(); |
| 162 | AU.addPreserved<DominanceFrontier>(); |
| 163 | AU.addPreserved<DominatorTree>(); |
| 164 | |
Jeff Cohen | 39751c3 | 2005-02-27 19:37:07 +0000 | [diff] [blame] | 165 | AU.addRequiredID(LoopSimplifyID); |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 166 | AU.addRequired<LoopInfo>(); |
Chris Lattner | cb36710 | 2006-01-11 05:10:20 +0000 | [diff] [blame] | 167 | AU.addRequired<ETForest>(); |
Jeff Cohen | a2c59b7 | 2005-03-04 04:04:26 +0000 | [diff] [blame] | 168 | AU.addRequired<TargetData>(); |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 169 | AU.addRequired<ScalarEvolution>(); |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 170 | } |
Chris Lattner | 6f286b7 | 2005-08-04 01:19:13 +0000 | [diff] [blame] | 171 | |
| 172 | /// getCastedVersionOf - Return the specified value casted to uintptr_t. |
| 173 | /// |
| 174 | Value *getCastedVersionOf(Value *V); |
| 175 | private: |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 176 | void runOnLoop(Loop *L); |
Chris Lattner | eaf2472 | 2005-08-04 17:40:30 +0000 | [diff] [blame] | 177 | bool AddUsersIfInteresting(Instruction *I, Loop *L, |
| 178 | std::set<Instruction*> &Processed); |
| 179 | SCEVHandle GetExpressionSCEV(Instruction *E, Loop *L); |
| 180 | |
Chris Lattner | 9bfa6f8 | 2005-08-08 05:28:22 +0000 | [diff] [blame] | 181 | void OptimizeIndvars(Loop *L); |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 182 | |
Evan Cheng | 4520698 | 2006-03-17 19:52:23 +0000 | [diff] [blame^] | 183 | unsigned CheckForIVReuse(const SCEVHandle &Stride, IVExpr &IV); |
| 184 | |
Chris Lattner | edff91a | 2005-08-10 00:45:21 +0000 | [diff] [blame] | 185 | void StrengthReduceStridedIVUsers(const SCEVHandle &Stride, |
| 186 | IVUsersOfOneStride &Uses, |
Chris Lattner | 430d002 | 2005-08-03 22:21:05 +0000 | [diff] [blame] | 187 | Loop *L, bool isOnlyStride); |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 188 | void DeleteTriviallyDeadInstructions(std::set<Instruction*> &Insts); |
| 189 | }; |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 190 | RegisterOpt<LoopStrengthReduce> X("loop-reduce", |
Chris Lattner | 92233d2 | 2005-09-27 21:10:32 +0000 | [diff] [blame] | 191 | "Loop Strength Reduction"); |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 192 | } |
| 193 | |
Evan Cheng | 3df447d | 2006-03-16 21:53:05 +0000 | [diff] [blame] | 194 | FunctionPass *llvm::createLoopStrengthReducePass(const TargetLowering *TLI) { |
| 195 | return new LoopStrengthReduce(TLI); |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 196 | } |
| 197 | |
Chris Lattner | 6f286b7 | 2005-08-04 01:19:13 +0000 | [diff] [blame] | 198 | /// getCastedVersionOf - Return the specified value casted to uintptr_t. |
| 199 | /// |
| 200 | Value *LoopStrengthReduce::getCastedVersionOf(Value *V) { |
| 201 | if (V->getType() == UIntPtrTy) return V; |
| 202 | if (Constant *CB = dyn_cast<Constant>(V)) |
| 203 | return ConstantExpr::getCast(CB, UIntPtrTy); |
| 204 | |
| 205 | Value *&New = CastedPointers[V]; |
| 206 | if (New) return New; |
| 207 | |
Chris Lattner | d30c499 | 2006-02-04 09:52:43 +0000 | [diff] [blame] | 208 | New = SCEVExpander::InsertCastOfTo(V, UIntPtrTy); |
Chris Lattner | acc42c4 | 2005-08-04 19:08:16 +0000 | [diff] [blame] | 209 | DeadInsts.insert(cast<Instruction>(New)); |
| 210 | return New; |
Chris Lattner | 6f286b7 | 2005-08-04 01:19:13 +0000 | [diff] [blame] | 211 | } |
| 212 | |
| 213 | |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 214 | /// DeleteTriviallyDeadInstructions - If any of the instructions is the |
| 215 | /// specified set are trivially dead, delete them and see if this makes any of |
| 216 | /// their operands subsequently dead. |
| 217 | void LoopStrengthReduce:: |
| 218 | DeleteTriviallyDeadInstructions(std::set<Instruction*> &Insts) { |
| 219 | while (!Insts.empty()) { |
| 220 | Instruction *I = *Insts.begin(); |
| 221 | Insts.erase(Insts.begin()); |
| 222 | if (isInstructionTriviallyDead(I)) { |
Jeff Cohen | 8ea6f9e | 2005-03-01 03:46:11 +0000 | [diff] [blame] | 223 | for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) |
| 224 | if (Instruction *U = dyn_cast<Instruction>(I->getOperand(i))) |
| 225 | Insts.insert(U); |
Chris Lattner | 84e9baa | 2005-08-03 21:36:09 +0000 | [diff] [blame] | 226 | SE->deleteInstructionFromRecords(I); |
| 227 | I->eraseFromParent(); |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 228 | Changed = true; |
| 229 | } |
| 230 | } |
| 231 | } |
| 232 | |
Jeff Cohen | 39751c3 | 2005-02-27 19:37:07 +0000 | [diff] [blame] | 233 | |
Chris Lattner | eaf2472 | 2005-08-04 17:40:30 +0000 | [diff] [blame] | 234 | /// GetExpressionSCEV - Compute and return the SCEV for the specified |
| 235 | /// instruction. |
| 236 | SCEVHandle LoopStrengthReduce::GetExpressionSCEV(Instruction *Exp, Loop *L) { |
Chris Lattner | c6c4d99 | 2005-08-09 23:39:36 +0000 | [diff] [blame] | 237 | // Scalar Evolutions doesn't know how to compute SCEV's for GEP instructions. |
| 238 | // If this is a GEP that SE doesn't know about, compute it now and insert it. |
| 239 | // If this is not a GEP, or if we have already done this computation, just let |
| 240 | // SE figure it out. |
Chris Lattner | eaf2472 | 2005-08-04 17:40:30 +0000 | [diff] [blame] | 241 | GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Exp); |
Chris Lattner | c6c4d99 | 2005-08-09 23:39:36 +0000 | [diff] [blame] | 242 | if (!GEP || SE->hasSCEV(GEP)) |
Chris Lattner | eaf2472 | 2005-08-04 17:40:30 +0000 | [diff] [blame] | 243 | return SE->getSCEV(Exp); |
| 244 | |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 245 | // Analyze all of the subscripts of this getelementptr instruction, looking |
| 246 | // for uses that are determined by the trip count of L. First, skip all |
| 247 | // operands the are not dependent on the IV. |
| 248 | |
| 249 | // Build up the base expression. Insert an LLVM cast of the pointer to |
| 250 | // uintptr_t first. |
Chris Lattner | eaf2472 | 2005-08-04 17:40:30 +0000 | [diff] [blame] | 251 | SCEVHandle GEPVal = SCEVUnknown::get(getCastedVersionOf(GEP->getOperand(0))); |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 252 | |
| 253 | gep_type_iterator GTI = gep_type_begin(GEP); |
Chris Lattner | eaf2472 | 2005-08-04 17:40:30 +0000 | [diff] [blame] | 254 | |
| 255 | for (unsigned i = 1, e = GEP->getNumOperands(); i != e; ++i, ++GTI) { |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 256 | // If this is a use of a recurrence that we can analyze, and it comes before |
| 257 | // Op does in the GEP operand list, we will handle this when we process this |
| 258 | // operand. |
| 259 | if (const StructType *STy = dyn_cast<StructType>(*GTI)) { |
| 260 | const StructLayout *SL = TD->getStructLayout(STy); |
| 261 | unsigned Idx = cast<ConstantUInt>(GEP->getOperand(i))->getValue(); |
| 262 | uint64_t Offset = SL->MemberOffsets[Idx]; |
Chris Lattner | eaf2472 | 2005-08-04 17:40:30 +0000 | [diff] [blame] | 263 | GEPVal = SCEVAddExpr::get(GEPVal, |
| 264 | SCEVUnknown::getIntegerSCEV(Offset, UIntPtrTy)); |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 265 | } else { |
Chris Lattner | acc42c4 | 2005-08-04 19:08:16 +0000 | [diff] [blame] | 266 | Value *OpVal = getCastedVersionOf(GEP->getOperand(i)); |
| 267 | SCEVHandle Idx = SE->getSCEV(OpVal); |
| 268 | |
Chris Lattner | eaf2472 | 2005-08-04 17:40:30 +0000 | [diff] [blame] | 269 | uint64_t TypeSize = TD->getTypeSize(GTI.getIndexedType()); |
| 270 | if (TypeSize != 1) |
| 271 | Idx = SCEVMulExpr::get(Idx, |
| 272 | SCEVConstant::get(ConstantUInt::get(UIntPtrTy, |
| 273 | TypeSize))); |
| 274 | GEPVal = SCEVAddExpr::get(GEPVal, Idx); |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 275 | } |
| 276 | } |
| 277 | |
Chris Lattner | c6c4d99 | 2005-08-09 23:39:36 +0000 | [diff] [blame] | 278 | SE->setSCEV(GEP, GEPVal); |
Chris Lattner | eaf2472 | 2005-08-04 17:40:30 +0000 | [diff] [blame] | 279 | return GEPVal; |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 280 | } |
| 281 | |
Chris Lattner | acc42c4 | 2005-08-04 19:08:16 +0000 | [diff] [blame] | 282 | /// getSCEVStartAndStride - Compute the start and stride of this expression, |
| 283 | /// returning false if the expression is not a start/stride pair, or true if it |
| 284 | /// is. The stride must be a loop invariant expression, but the start may be |
| 285 | /// a mix of loop invariant and loop variant expressions. |
| 286 | static bool getSCEVStartAndStride(const SCEVHandle &SH, Loop *L, |
Chris Lattner | edff91a | 2005-08-10 00:45:21 +0000 | [diff] [blame] | 287 | SCEVHandle &Start, SCEVHandle &Stride) { |
Chris Lattner | acc42c4 | 2005-08-04 19:08:16 +0000 | [diff] [blame] | 288 | SCEVHandle TheAddRec = Start; // Initialize to zero. |
| 289 | |
| 290 | // If the outer level is an AddExpr, the operands are all start values except |
| 291 | // for a nested AddRecExpr. |
| 292 | if (SCEVAddExpr *AE = dyn_cast<SCEVAddExpr>(SH)) { |
| 293 | for (unsigned i = 0, e = AE->getNumOperands(); i != e; ++i) |
| 294 | if (SCEVAddRecExpr *AddRec = |
| 295 | dyn_cast<SCEVAddRecExpr>(AE->getOperand(i))) { |
| 296 | if (AddRec->getLoop() == L) |
| 297 | TheAddRec = SCEVAddExpr::get(AddRec, TheAddRec); |
| 298 | else |
| 299 | return false; // Nested IV of some sort? |
| 300 | } else { |
| 301 | Start = SCEVAddExpr::get(Start, AE->getOperand(i)); |
| 302 | } |
| 303 | |
| 304 | } else if (SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(SH)) { |
| 305 | TheAddRec = SH; |
| 306 | } else { |
| 307 | return false; // not analyzable. |
| 308 | } |
| 309 | |
| 310 | SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(TheAddRec); |
| 311 | if (!AddRec || AddRec->getLoop() != L) return false; |
| 312 | |
| 313 | // FIXME: Generalize to non-affine IV's. |
| 314 | if (!AddRec->isAffine()) return false; |
| 315 | |
| 316 | Start = SCEVAddExpr::get(Start, AddRec->getOperand(0)); |
| 317 | |
Chris Lattner | acc42c4 | 2005-08-04 19:08:16 +0000 | [diff] [blame] | 318 | if (!isa<SCEVConstant>(AddRec->getOperand(1))) |
Chris Lattner | edff91a | 2005-08-10 00:45:21 +0000 | [diff] [blame] | 319 | DEBUG(std::cerr << "[" << L->getHeader()->getName() |
| 320 | << "] Variable stride: " << *AddRec << "\n"); |
Chris Lattner | acc42c4 | 2005-08-04 19:08:16 +0000 | [diff] [blame] | 321 | |
Chris Lattner | edff91a | 2005-08-10 00:45:21 +0000 | [diff] [blame] | 322 | Stride = AddRec->getOperand(1); |
| 323 | // Check that all constant strides are the unsigned type, we don't want to |
| 324 | // have two IV's one of signed stride 4 and one of unsigned stride 4 to not be |
| 325 | // merged. |
| 326 | assert((!isa<SCEVConstant>(Stride) || Stride->getType()->isUnsigned()) && |
Chris Lattner | acc42c4 | 2005-08-04 19:08:16 +0000 | [diff] [blame] | 327 | "Constants should be canonicalized to unsigned!"); |
Chris Lattner | edff91a | 2005-08-10 00:45:21 +0000 | [diff] [blame] | 328 | |
Chris Lattner | acc42c4 | 2005-08-04 19:08:16 +0000 | [diff] [blame] | 329 | return true; |
| 330 | } |
| 331 | |
Chris Lattner | e4ed42a | 2005-10-03 01:04:44 +0000 | [diff] [blame] | 332 | /// IVUseShouldUsePostIncValue - We have discovered a "User" of an IV expression |
| 333 | /// and now we need to decide whether the user should use the preinc or post-inc |
| 334 | /// value. If this user should use the post-inc version of the IV, return true. |
| 335 | /// |
| 336 | /// Choosing wrong here can break dominance properties (if we choose to use the |
| 337 | /// post-inc value when we cannot) or it can end up adding extra live-ranges to |
| 338 | /// the loop, resulting in reg-reg copies (if we use the pre-inc value when we |
| 339 | /// should use the post-inc value). |
| 340 | static bool IVUseShouldUsePostIncValue(Instruction *User, Instruction *IV, |
Chris Lattner | cb36710 | 2006-01-11 05:10:20 +0000 | [diff] [blame] | 341 | Loop *L, ETForest *EF, Pass *P) { |
Chris Lattner | e4ed42a | 2005-10-03 01:04:44 +0000 | [diff] [blame] | 342 | // If the user is in the loop, use the preinc value. |
| 343 | if (L->contains(User->getParent())) return false; |
| 344 | |
Chris Lattner | f07a587 | 2005-10-03 02:50:05 +0000 | [diff] [blame] | 345 | BasicBlock *LatchBlock = L->getLoopLatch(); |
| 346 | |
| 347 | // Ok, the user is outside of the loop. If it is dominated by the latch |
| 348 | // block, use the post-inc value. |
Chris Lattner | cb36710 | 2006-01-11 05:10:20 +0000 | [diff] [blame] | 349 | if (EF->dominates(LatchBlock, User->getParent())) |
Chris Lattner | f07a587 | 2005-10-03 02:50:05 +0000 | [diff] [blame] | 350 | return true; |
| 351 | |
| 352 | // There is one case we have to be careful of: PHI nodes. These little guys |
| 353 | // can live in blocks that do not dominate the latch block, but (since their |
| 354 | // uses occur in the predecessor block, not the block the PHI lives in) should |
| 355 | // still use the post-inc value. Check for this case now. |
| 356 | PHINode *PN = dyn_cast<PHINode>(User); |
| 357 | if (!PN) return false; // not a phi, not dominated by latch block. |
| 358 | |
| 359 | // Look at all of the uses of IV by the PHI node. If any use corresponds to |
| 360 | // a block that is not dominated by the latch block, give up and use the |
| 361 | // preincremented value. |
| 362 | unsigned NumUses = 0; |
| 363 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) |
| 364 | if (PN->getIncomingValue(i) == IV) { |
| 365 | ++NumUses; |
Chris Lattner | cb36710 | 2006-01-11 05:10:20 +0000 | [diff] [blame] | 366 | if (!EF->dominates(LatchBlock, PN->getIncomingBlock(i))) |
Chris Lattner | f07a587 | 2005-10-03 02:50:05 +0000 | [diff] [blame] | 367 | return false; |
| 368 | } |
| 369 | |
| 370 | // Okay, all uses of IV by PN are in predecessor blocks that really are |
| 371 | // dominated by the latch block. Split the critical edges and use the |
| 372 | // post-incremented value. |
| 373 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) |
| 374 | if (PN->getIncomingValue(i) == IV) { |
| 375 | SplitCriticalEdge(PN->getIncomingBlock(i), PN->getParent(), P); |
| 376 | if (--NumUses == 0) break; |
| 377 | } |
| 378 | |
| 379 | return true; |
Chris Lattner | e4ed42a | 2005-10-03 01:04:44 +0000 | [diff] [blame] | 380 | } |
| 381 | |
| 382 | |
| 383 | |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 384 | /// AddUsersIfInteresting - Inspect the specified instruction. If it is a |
| 385 | /// reducible SCEV, recursively add its users to the IVUsesByStride set and |
| 386 | /// return true. Otherwise, return false. |
Chris Lattner | eaf2472 | 2005-08-04 17:40:30 +0000 | [diff] [blame] | 387 | bool LoopStrengthReduce::AddUsersIfInteresting(Instruction *I, Loop *L, |
| 388 | std::set<Instruction*> &Processed) { |
Chris Lattner | 5df0e36 | 2005-10-21 05:45:41 +0000 | [diff] [blame] | 389 | if (!I->getType()->isInteger() && !isa<PointerType>(I->getType())) |
| 390 | return false; // Void and FP expressions cannot be reduced. |
Chris Lattner | eaf2472 | 2005-08-04 17:40:30 +0000 | [diff] [blame] | 391 | if (!Processed.insert(I).second) |
| 392 | return true; // Instruction already handled. |
| 393 | |
Chris Lattner | acc42c4 | 2005-08-04 19:08:16 +0000 | [diff] [blame] | 394 | // Get the symbolic expression for this instruction. |
Chris Lattner | eaf2472 | 2005-08-04 17:40:30 +0000 | [diff] [blame] | 395 | SCEVHandle ISE = GetExpressionSCEV(I, L); |
Chris Lattner | acc42c4 | 2005-08-04 19:08:16 +0000 | [diff] [blame] | 396 | if (isa<SCEVCouldNotCompute>(ISE)) return false; |
Chris Lattner | eaf2472 | 2005-08-04 17:40:30 +0000 | [diff] [blame] | 397 | |
Chris Lattner | acc42c4 | 2005-08-04 19:08:16 +0000 | [diff] [blame] | 398 | // Get the start and stride for this expression. |
| 399 | SCEVHandle Start = SCEVUnknown::getIntegerSCEV(0, ISE->getType()); |
Chris Lattner | edff91a | 2005-08-10 00:45:21 +0000 | [diff] [blame] | 400 | SCEVHandle Stride = Start; |
Chris Lattner | acc42c4 | 2005-08-04 19:08:16 +0000 | [diff] [blame] | 401 | if (!getSCEVStartAndStride(ISE, L, Start, Stride)) |
| 402 | return false; // Non-reducible symbolic expression, bail out. |
| 403 | |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 404 | for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E;++UI){ |
| 405 | Instruction *User = cast<Instruction>(*UI); |
| 406 | |
| 407 | // Do not infinitely recurse on PHI nodes. |
Chris Lattner | fd018c8 | 2005-09-13 02:09:55 +0000 | [diff] [blame] | 408 | if (isa<PHINode>(User) && Processed.count(User)) |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 409 | continue; |
| 410 | |
| 411 | // If this is an instruction defined in a nested loop, or outside this loop, |
Chris Lattner | a0102fb | 2005-08-04 00:14:11 +0000 | [diff] [blame] | 412 | // don't recurse into it. |
Chris Lattner | acc42c4 | 2005-08-04 19:08:16 +0000 | [diff] [blame] | 413 | bool AddUserToIVUsers = false; |
Chris Lattner | a0102fb | 2005-08-04 00:14:11 +0000 | [diff] [blame] | 414 | if (LI->getLoopFor(User->getParent()) != L) { |
Chris Lattner | fd018c8 | 2005-09-13 02:09:55 +0000 | [diff] [blame] | 415 | DEBUG(std::cerr << "FOUND USER in other loop: " << *User |
Chris Lattner | a0102fb | 2005-08-04 00:14:11 +0000 | [diff] [blame] | 416 | << " OF SCEV: " << *ISE << "\n"); |
Chris Lattner | acc42c4 | 2005-08-04 19:08:16 +0000 | [diff] [blame] | 417 | AddUserToIVUsers = true; |
Chris Lattner | eaf2472 | 2005-08-04 17:40:30 +0000 | [diff] [blame] | 418 | } else if (!AddUsersIfInteresting(User, L, Processed)) { |
Chris Lattner | 6510749 | 2005-08-04 00:40:47 +0000 | [diff] [blame] | 419 | DEBUG(std::cerr << "FOUND USER: " << *User |
| 420 | << " OF SCEV: " << *ISE << "\n"); |
Chris Lattner | acc42c4 | 2005-08-04 19:08:16 +0000 | [diff] [blame] | 421 | AddUserToIVUsers = true; |
| 422 | } |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 423 | |
Chris Lattner | acc42c4 | 2005-08-04 19:08:16 +0000 | [diff] [blame] | 424 | if (AddUserToIVUsers) { |
Chris Lattner | 4ea0a3e | 2005-10-09 06:20:55 +0000 | [diff] [blame] | 425 | IVUsersOfOneStride &StrideUses = IVUsesByStride[Stride]; |
| 426 | if (StrideUses.Users.empty()) // First occurance of this stride? |
| 427 | StrideOrder.push_back(Stride); |
| 428 | |
Chris Lattner | 6510749 | 2005-08-04 00:40:47 +0000 | [diff] [blame] | 429 | // Okay, we found a user that we cannot reduce. Analyze the instruction |
Chris Lattner | a676483 | 2005-09-12 06:04:47 +0000 | [diff] [blame] | 430 | // and decide what to do with it. If we are a use inside of the loop, use |
| 431 | // the value before incrementation, otherwise use it after incrementation. |
Chris Lattner | cb36710 | 2006-01-11 05:10:20 +0000 | [diff] [blame] | 432 | if (IVUseShouldUsePostIncValue(User, I, L, EF, this)) { |
Chris Lattner | a676483 | 2005-09-12 06:04:47 +0000 | [diff] [blame] | 433 | // The value used will be incremented by the stride more than we are |
| 434 | // expecting, so subtract this off. |
| 435 | SCEVHandle NewStart = SCEV::getMinusSCEV(Start, Stride); |
Chris Lattner | 4ea0a3e | 2005-10-09 06:20:55 +0000 | [diff] [blame] | 436 | StrideUses.addUser(NewStart, User, I); |
| 437 | StrideUses.Users.back().isUseOfPostIncrementedValue = true; |
Chris Lattner | f07a587 | 2005-10-03 02:50:05 +0000 | [diff] [blame] | 438 | DEBUG(std::cerr << " USING POSTINC SCEV, START=" << *NewStart<< "\n"); |
Chris Lattner | e4ed42a | 2005-10-03 01:04:44 +0000 | [diff] [blame] | 439 | } else { |
Chris Lattner | 4ea0a3e | 2005-10-09 06:20:55 +0000 | [diff] [blame] | 440 | StrideUses.addUser(Start, User, I); |
Chris Lattner | a676483 | 2005-09-12 06:04:47 +0000 | [diff] [blame] | 441 | } |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 442 | } |
| 443 | } |
| 444 | return true; |
| 445 | } |
| 446 | |
| 447 | namespace { |
| 448 | /// BasedUser - For a particular base value, keep information about how we've |
| 449 | /// partitioned the expression so far. |
| 450 | struct BasedUser { |
Chris Lattner | 37c24cc | 2005-08-08 22:56:21 +0000 | [diff] [blame] | 451 | /// Base - The Base value for the PHI node that needs to be inserted for |
| 452 | /// this use. As the use is processed, information gets moved from this |
| 453 | /// field to the Imm field (below). BasedUser values are sorted by this |
| 454 | /// field. |
| 455 | SCEVHandle Base; |
| 456 | |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 457 | /// Inst - The instruction using the induction variable. |
| 458 | Instruction *Inst; |
| 459 | |
Chris Lattner | 430d002 | 2005-08-03 22:21:05 +0000 | [diff] [blame] | 460 | /// OperandValToReplace - The operand value of Inst to replace with the |
| 461 | /// EmittedBase. |
| 462 | Value *OperandValToReplace; |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 463 | |
| 464 | /// Imm - The immediate value that should be added to the base immediately |
| 465 | /// before Inst, because it will be folded into the imm field of the |
| 466 | /// instruction. |
| 467 | SCEVHandle Imm; |
| 468 | |
| 469 | /// EmittedBase - The actual value* to use for the base value of this |
| 470 | /// operation. This is null if we should just use zero so far. |
| 471 | Value *EmittedBase; |
| 472 | |
Chris Lattner | 9bfa6f8 | 2005-08-08 05:28:22 +0000 | [diff] [blame] | 473 | // isUseOfPostIncrementedValue - True if this should use the |
| 474 | // post-incremented version of this IV, not the preincremented version. |
| 475 | // This can only be set in special cases, such as the terminating setcc |
Chris Lattner | a676483 | 2005-09-12 06:04:47 +0000 | [diff] [blame] | 476 | // instruction for a loop and uses outside the loop that are dominated by |
| 477 | // the loop. |
Chris Lattner | 9bfa6f8 | 2005-08-08 05:28:22 +0000 | [diff] [blame] | 478 | bool isUseOfPostIncrementedValue; |
Chris Lattner | 37c24cc | 2005-08-08 22:56:21 +0000 | [diff] [blame] | 479 | |
| 480 | BasedUser(IVStrideUse &IVSU) |
| 481 | : Base(IVSU.Offset), Inst(IVSU.User), |
| 482 | OperandValToReplace(IVSU.OperandValToReplace), |
| 483 | Imm(SCEVUnknown::getIntegerSCEV(0, Base->getType())), EmittedBase(0), |
| 484 | isUseOfPostIncrementedValue(IVSU.isUseOfPostIncrementedValue) {} |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 485 | |
Chris Lattner | a6d7c35 | 2005-08-04 20:03:32 +0000 | [diff] [blame] | 486 | // Once we rewrite the code to insert the new IVs we want, update the |
| 487 | // operands of Inst to use the new expression 'NewBase', with 'Imm' added |
| 488 | // to it. |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 489 | void RewriteInstructionToUseNewBase(const SCEVHandle &NewBase, |
Chris Lattner | 8447b49 | 2005-08-12 22:22:17 +0000 | [diff] [blame] | 490 | SCEVExpander &Rewriter, Loop *L, |
| 491 | Pass *P); |
Chris Lattner | 2959f00 | 2006-02-04 07:36:50 +0000 | [diff] [blame] | 492 | |
| 493 | Value *InsertCodeForBaseAtPosition(const SCEVHandle &NewBase, |
| 494 | SCEVExpander &Rewriter, |
| 495 | Instruction *IP, Loop *L); |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 496 | void dump() const; |
| 497 | }; |
| 498 | } |
| 499 | |
| 500 | void BasedUser::dump() const { |
Chris Lattner | 37c24cc | 2005-08-08 22:56:21 +0000 | [diff] [blame] | 501 | std::cerr << " Base=" << *Base; |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 502 | std::cerr << " Imm=" << *Imm; |
| 503 | if (EmittedBase) |
| 504 | std::cerr << " EB=" << *EmittedBase; |
| 505 | |
| 506 | std::cerr << " Inst: " << *Inst; |
| 507 | } |
| 508 | |
Chris Lattner | 2959f00 | 2006-02-04 07:36:50 +0000 | [diff] [blame] | 509 | Value *BasedUser::InsertCodeForBaseAtPosition(const SCEVHandle &NewBase, |
| 510 | SCEVExpander &Rewriter, |
| 511 | Instruction *IP, Loop *L) { |
| 512 | // Figure out where we *really* want to insert this code. In particular, if |
| 513 | // the user is inside of a loop that is nested inside of L, we really don't |
| 514 | // want to insert this expression before the user, we'd rather pull it out as |
| 515 | // many loops as possible. |
| 516 | LoopInfo &LI = Rewriter.getLoopInfo(); |
| 517 | Instruction *BaseInsertPt = IP; |
| 518 | |
| 519 | // Figure out the most-nested loop that IP is in. |
| 520 | Loop *InsertLoop = LI.getLoopFor(IP->getParent()); |
| 521 | |
| 522 | // If InsertLoop is not L, and InsertLoop is nested inside of L, figure out |
| 523 | // the preheader of the outer-most loop where NewBase is not loop invariant. |
| 524 | while (InsertLoop && NewBase->isLoopInvariant(InsertLoop)) { |
| 525 | BaseInsertPt = InsertLoop->getLoopPreheader()->getTerminator(); |
| 526 | InsertLoop = InsertLoop->getParentLoop(); |
| 527 | } |
| 528 | |
| 529 | // If there is no immediate value, skip the next part. |
| 530 | if (SCEVConstant *SC = dyn_cast<SCEVConstant>(Imm)) |
| 531 | if (SC->getValue()->isNullValue()) |
| 532 | return Rewriter.expandCodeFor(NewBase, BaseInsertPt, |
| 533 | OperandValToReplace->getType()); |
| 534 | |
| 535 | Value *Base = Rewriter.expandCodeFor(NewBase, BaseInsertPt); |
| 536 | |
| 537 | // Always emit the immediate (if non-zero) into the same block as the user. |
| 538 | SCEVHandle NewValSCEV = SCEVAddExpr::get(SCEVUnknown::get(Base), Imm); |
| 539 | return Rewriter.expandCodeFor(NewValSCEV, IP, |
| 540 | OperandValToReplace->getType()); |
| 541 | } |
| 542 | |
| 543 | |
Chris Lattner | a6d7c35 | 2005-08-04 20:03:32 +0000 | [diff] [blame] | 544 | // Once we rewrite the code to insert the new IVs we want, update the |
| 545 | // operands of Inst to use the new expression 'NewBase', with 'Imm' added |
| 546 | // to it. |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 547 | void BasedUser::RewriteInstructionToUseNewBase(const SCEVHandle &NewBase, |
Chris Lattner | 4fec86d | 2005-08-12 22:06:11 +0000 | [diff] [blame] | 548 | SCEVExpander &Rewriter, |
Chris Lattner | 8447b49 | 2005-08-12 22:22:17 +0000 | [diff] [blame] | 549 | Loop *L, Pass *P) { |
Chris Lattner | a6d7c35 | 2005-08-04 20:03:32 +0000 | [diff] [blame] | 550 | if (!isa<PHINode>(Inst)) { |
Chris Lattner | 2959f00 | 2006-02-04 07:36:50 +0000 | [diff] [blame] | 551 | Value *NewVal = InsertCodeForBaseAtPosition(NewBase, Rewriter, Inst, L); |
Chris Lattner | a6d7c35 | 2005-08-04 20:03:32 +0000 | [diff] [blame] | 552 | // Replace the use of the operand Value with the new Phi we just created. |
| 553 | Inst->replaceUsesOfWith(OperandValToReplace, NewVal); |
| 554 | DEBUG(std::cerr << " CHANGED: IMM =" << *Imm << " Inst = " << *Inst); |
| 555 | return; |
| 556 | } |
| 557 | |
| 558 | // PHI nodes are more complex. We have to insert one copy of the NewBase+Imm |
Chris Lattner | dde7dc5 | 2005-08-10 00:35:32 +0000 | [diff] [blame] | 559 | // expression into each operand block that uses it. Note that PHI nodes can |
| 560 | // have multiple entries for the same predecessor. We use a map to make sure |
| 561 | // that a PHI node only has a single Value* for each predecessor (which also |
| 562 | // prevents us from inserting duplicate code in some blocks). |
| 563 | std::map<BasicBlock*, Value*> InsertedCode; |
Chris Lattner | a6d7c35 | 2005-08-04 20:03:32 +0000 | [diff] [blame] | 564 | PHINode *PN = cast<PHINode>(Inst); |
| 565 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) { |
| 566 | if (PN->getIncomingValue(i) == OperandValToReplace) { |
Chris Lattner | 4fec86d | 2005-08-12 22:06:11 +0000 | [diff] [blame] | 567 | // If this is a critical edge, split the edge so that we do not insert the |
Chris Lattner | fd018c8 | 2005-09-13 02:09:55 +0000 | [diff] [blame] | 568 | // code on all predecessor/successor paths. We do this unless this is the |
| 569 | // canonical backedge for this loop, as this can make some inserted code |
| 570 | // be in an illegal position. |
Chris Lattner | 8fcce17 | 2005-10-03 00:31:52 +0000 | [diff] [blame] | 571 | BasicBlock *PHIPred = PN->getIncomingBlock(i); |
| 572 | if (e != 1 && PHIPred->getTerminator()->getNumSuccessors() > 1 && |
| 573 | (PN->getParent() != L->getHeader() || !L->contains(PHIPred))) { |
Chris Lattner | 8fcce17 | 2005-10-03 00:31:52 +0000 | [diff] [blame] | 574 | |
Chris Lattner | 2bf7cb5 | 2005-08-17 06:35:16 +0000 | [diff] [blame] | 575 | // First step, split the critical edge. |
Chris Lattner | 8fcce17 | 2005-10-03 00:31:52 +0000 | [diff] [blame] | 576 | SplitCriticalEdge(PHIPred, PN->getParent(), P); |
Chris Lattner | 8447b49 | 2005-08-12 22:22:17 +0000 | [diff] [blame] | 577 | |
Chris Lattner | 2bf7cb5 | 2005-08-17 06:35:16 +0000 | [diff] [blame] | 578 | // Next step: move the basic block. In particular, if the PHI node |
| 579 | // is outside of the loop, and PredTI is in the loop, we want to |
| 580 | // move the block to be immediately before the PHI block, not |
| 581 | // immediately after PredTI. |
Chris Lattner | 8fcce17 | 2005-10-03 00:31:52 +0000 | [diff] [blame] | 582 | if (L->contains(PHIPred) && !L->contains(PN->getParent())) { |
Chris Lattner | 2bf7cb5 | 2005-08-17 06:35:16 +0000 | [diff] [blame] | 583 | BasicBlock *NewBB = PN->getIncomingBlock(i); |
| 584 | NewBB->moveBefore(PN->getParent()); |
Chris Lattner | 4fec86d | 2005-08-12 22:06:11 +0000 | [diff] [blame] | 585 | } |
| 586 | } |
Chris Lattner | a6d7c35 | 2005-08-04 20:03:32 +0000 | [diff] [blame] | 587 | |
Chris Lattner | dde7dc5 | 2005-08-10 00:35:32 +0000 | [diff] [blame] | 588 | Value *&Code = InsertedCode[PN->getIncomingBlock(i)]; |
| 589 | if (!Code) { |
| 590 | // Insert the code into the end of the predecessor block. |
Chris Lattner | 2959f00 | 2006-02-04 07:36:50 +0000 | [diff] [blame] | 591 | Instruction *InsertPt = PN->getIncomingBlock(i)->getTerminator(); |
| 592 | Code = InsertCodeForBaseAtPosition(NewBase, Rewriter, InsertPt, L); |
Chris Lattner | dde7dc5 | 2005-08-10 00:35:32 +0000 | [diff] [blame] | 593 | } |
Chris Lattner | a6d7c35 | 2005-08-04 20:03:32 +0000 | [diff] [blame] | 594 | |
| 595 | // Replace the use of the operand Value with the new Phi we just created. |
Chris Lattner | dde7dc5 | 2005-08-10 00:35:32 +0000 | [diff] [blame] | 596 | PN->setIncomingValue(i, Code); |
Chris Lattner | a6d7c35 | 2005-08-04 20:03:32 +0000 | [diff] [blame] | 597 | Rewriter.clear(); |
| 598 | } |
| 599 | } |
| 600 | DEBUG(std::cerr << " CHANGED: IMM =" << *Imm << " Inst = " << *Inst); |
| 601 | } |
| 602 | |
| 603 | |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 604 | /// isTargetConstant - Return true if the following can be referenced by the |
| 605 | /// immediate field of a target instruction. |
Evan Cheng | c567c4e | 2006-03-13 23:14:23 +0000 | [diff] [blame] | 606 | static bool isTargetConstant(const SCEVHandle &V, const TargetLowering *TLI) { |
Chris Lattner | 14203e8 | 2005-08-08 06:25:50 +0000 | [diff] [blame] | 607 | if (SCEVConstant *SC = dyn_cast<SCEVConstant>(V)) { |
Chris Lattner | 0772007 | 2005-12-05 18:23:57 +0000 | [diff] [blame] | 608 | int64_t V = SC->getValue()->getSExtValue(); |
Evan Cheng | c567c4e | 2006-03-13 23:14:23 +0000 | [diff] [blame] | 609 | if (TLI) |
| 610 | return TLI->isLegalAddressImmediate(V); |
| 611 | else |
| 612 | // Defaults to PPC. PPC allows a sign-extended 16-bit immediate field. |
| 613 | return (V > -(1 << 16) && V < (1 << 16)-1); |
Chris Lattner | 14203e8 | 2005-08-08 06:25:50 +0000 | [diff] [blame] | 614 | } |
Jeff Cohen | 546fd59 | 2005-07-30 18:33:25 +0000 | [diff] [blame] | 615 | |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 616 | if (SCEVUnknown *SU = dyn_cast<SCEVUnknown>(V)) |
| 617 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(SU->getValue())) |
Evan Cheng | c567c4e | 2006-03-13 23:14:23 +0000 | [diff] [blame] | 618 | if (CE->getOpcode() == Instruction::Cast) { |
| 619 | Constant *Op0 = CE->getOperand(0); |
| 620 | if (isa<GlobalValue>(Op0) && |
| 621 | TLI && |
| 622 | TLI->isLegalAddressImmediate(cast<GlobalValue>(Op0))) |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 623 | return true; |
Evan Cheng | c567c4e | 2006-03-13 23:14:23 +0000 | [diff] [blame] | 624 | } |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 625 | return false; |
| 626 | } |
| 627 | |
Chris Lattner | 37ed895 | 2005-08-08 22:32:34 +0000 | [diff] [blame] | 628 | /// MoveLoopVariantsToImediateField - Move any subexpressions from Val that are |
| 629 | /// loop varying to the Imm operand. |
| 630 | static void MoveLoopVariantsToImediateField(SCEVHandle &Val, SCEVHandle &Imm, |
| 631 | Loop *L) { |
| 632 | if (Val->isLoopInvariant(L)) return; // Nothing to do. |
| 633 | |
| 634 | if (SCEVAddExpr *SAE = dyn_cast<SCEVAddExpr>(Val)) { |
| 635 | std::vector<SCEVHandle> NewOps; |
| 636 | NewOps.reserve(SAE->getNumOperands()); |
| 637 | |
| 638 | for (unsigned i = 0; i != SAE->getNumOperands(); ++i) |
| 639 | if (!SAE->getOperand(i)->isLoopInvariant(L)) { |
| 640 | // If this is a loop-variant expression, it must stay in the immediate |
| 641 | // field of the expression. |
| 642 | Imm = SCEVAddExpr::get(Imm, SAE->getOperand(i)); |
| 643 | } else { |
| 644 | NewOps.push_back(SAE->getOperand(i)); |
| 645 | } |
| 646 | |
| 647 | if (NewOps.empty()) |
| 648 | Val = SCEVUnknown::getIntegerSCEV(0, Val->getType()); |
| 649 | else |
| 650 | Val = SCEVAddExpr::get(NewOps); |
| 651 | } else if (SCEVAddRecExpr *SARE = dyn_cast<SCEVAddRecExpr>(Val)) { |
| 652 | // Try to pull immediates out of the start value of nested addrec's. |
| 653 | SCEVHandle Start = SARE->getStart(); |
| 654 | MoveLoopVariantsToImediateField(Start, Imm, L); |
| 655 | |
| 656 | std::vector<SCEVHandle> Ops(SARE->op_begin(), SARE->op_end()); |
| 657 | Ops[0] = Start; |
| 658 | Val = SCEVAddRecExpr::get(Ops, SARE->getLoop()); |
| 659 | } else { |
| 660 | // Otherwise, all of Val is variant, move the whole thing over. |
| 661 | Imm = SCEVAddExpr::get(Imm, Val); |
| 662 | Val = SCEVUnknown::getIntegerSCEV(0, Val->getType()); |
| 663 | } |
| 664 | } |
| 665 | |
| 666 | |
Chris Lattner | 45f8b6e | 2005-08-04 22:34:05 +0000 | [diff] [blame] | 667 | /// MoveImmediateValues - Look at Val, and pull out any additions of constants |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 668 | /// that can fit into the immediate field of instructions in the target. |
Chris Lattner | 45f8b6e | 2005-08-04 22:34:05 +0000 | [diff] [blame] | 669 | /// Accumulate these immediate values into the Imm value. |
Evan Cheng | c567c4e | 2006-03-13 23:14:23 +0000 | [diff] [blame] | 670 | static void MoveImmediateValues(const TargetLowering *TLI, |
| 671 | SCEVHandle &Val, SCEVHandle &Imm, |
Chris Lattner | 45f8b6e | 2005-08-04 22:34:05 +0000 | [diff] [blame] | 672 | bool isAddress, Loop *L) { |
Chris Lattner | fc62470 | 2005-08-03 23:44:42 +0000 | [diff] [blame] | 673 | if (SCEVAddExpr *SAE = dyn_cast<SCEVAddExpr>(Val)) { |
Chris Lattner | 45f8b6e | 2005-08-04 22:34:05 +0000 | [diff] [blame] | 674 | std::vector<SCEVHandle> NewOps; |
| 675 | NewOps.reserve(SAE->getNumOperands()); |
| 676 | |
Chris Lattner | 2959f00 | 2006-02-04 07:36:50 +0000 | [diff] [blame] | 677 | for (unsigned i = 0; i != SAE->getNumOperands(); ++i) { |
| 678 | SCEVHandle NewOp = SAE->getOperand(i); |
Evan Cheng | c567c4e | 2006-03-13 23:14:23 +0000 | [diff] [blame] | 679 | MoveImmediateValues(TLI, NewOp, Imm, isAddress, L); |
Chris Lattner | 2959f00 | 2006-02-04 07:36:50 +0000 | [diff] [blame] | 680 | |
| 681 | if (!NewOp->isLoopInvariant(L)) { |
Chris Lattner | acc42c4 | 2005-08-04 19:08:16 +0000 | [diff] [blame] | 682 | // If this is a loop-variant expression, it must stay in the immediate |
| 683 | // field of the expression. |
Chris Lattner | 2959f00 | 2006-02-04 07:36:50 +0000 | [diff] [blame] | 684 | Imm = SCEVAddExpr::get(Imm, NewOp); |
Chris Lattner | 45f8b6e | 2005-08-04 22:34:05 +0000 | [diff] [blame] | 685 | } else { |
Chris Lattner | 2959f00 | 2006-02-04 07:36:50 +0000 | [diff] [blame] | 686 | NewOps.push_back(NewOp); |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 687 | } |
Chris Lattner | 2959f00 | 2006-02-04 07:36:50 +0000 | [diff] [blame] | 688 | } |
Chris Lattner | 45f8b6e | 2005-08-04 22:34:05 +0000 | [diff] [blame] | 689 | |
| 690 | if (NewOps.empty()) |
| 691 | Val = SCEVUnknown::getIntegerSCEV(0, Val->getType()); |
| 692 | else |
| 693 | Val = SCEVAddExpr::get(NewOps); |
| 694 | return; |
Chris Lattner | fc62470 | 2005-08-03 23:44:42 +0000 | [diff] [blame] | 695 | } else if (SCEVAddRecExpr *SARE = dyn_cast<SCEVAddRecExpr>(Val)) { |
| 696 | // Try to pull immediates out of the start value of nested addrec's. |
Chris Lattner | 45f8b6e | 2005-08-04 22:34:05 +0000 | [diff] [blame] | 697 | SCEVHandle Start = SARE->getStart(); |
Evan Cheng | c567c4e | 2006-03-13 23:14:23 +0000 | [diff] [blame] | 698 | MoveImmediateValues(TLI, Start, Imm, isAddress, L); |
Chris Lattner | 45f8b6e | 2005-08-04 22:34:05 +0000 | [diff] [blame] | 699 | |
| 700 | if (Start != SARE->getStart()) { |
| 701 | std::vector<SCEVHandle> Ops(SARE->op_begin(), SARE->op_end()); |
| 702 | Ops[0] = Start; |
| 703 | Val = SCEVAddRecExpr::get(Ops, SARE->getLoop()); |
| 704 | } |
| 705 | return; |
Chris Lattner | 2959f00 | 2006-02-04 07:36:50 +0000 | [diff] [blame] | 706 | } else if (SCEVMulExpr *SME = dyn_cast<SCEVMulExpr>(Val)) { |
| 707 | // Transform "8 * (4 + v)" -> "32 + 8*V" if "32" fits in the immed field. |
Evan Cheng | c567c4e | 2006-03-13 23:14:23 +0000 | [diff] [blame] | 708 | if (isAddress && isTargetConstant(SME->getOperand(0), TLI) && |
Chris Lattner | 2959f00 | 2006-02-04 07:36:50 +0000 | [diff] [blame] | 709 | SME->getNumOperands() == 2 && SME->isLoopInvariant(L)) { |
| 710 | |
| 711 | SCEVHandle SubImm = SCEVUnknown::getIntegerSCEV(0, Val->getType()); |
| 712 | SCEVHandle NewOp = SME->getOperand(1); |
Evan Cheng | c567c4e | 2006-03-13 23:14:23 +0000 | [diff] [blame] | 713 | MoveImmediateValues(TLI, NewOp, SubImm, isAddress, L); |
Chris Lattner | 2959f00 | 2006-02-04 07:36:50 +0000 | [diff] [blame] | 714 | |
| 715 | // If we extracted something out of the subexpressions, see if we can |
| 716 | // simplify this! |
| 717 | if (NewOp != SME->getOperand(1)) { |
| 718 | // Scale SubImm up by "8". If the result is a target constant, we are |
| 719 | // good. |
| 720 | SubImm = SCEVMulExpr::get(SubImm, SME->getOperand(0)); |
Evan Cheng | c567c4e | 2006-03-13 23:14:23 +0000 | [diff] [blame] | 721 | if (isTargetConstant(SubImm, TLI)) { |
Chris Lattner | 2959f00 | 2006-02-04 07:36:50 +0000 | [diff] [blame] | 722 | // Accumulate the immediate. |
| 723 | Imm = SCEVAddExpr::get(Imm, SubImm); |
| 724 | |
| 725 | // Update what is left of 'Val'. |
| 726 | Val = SCEVMulExpr::get(SME->getOperand(0), NewOp); |
| 727 | return; |
| 728 | } |
| 729 | } |
| 730 | } |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 731 | } |
| 732 | |
Chris Lattner | 45f8b6e | 2005-08-04 22:34:05 +0000 | [diff] [blame] | 733 | // Loop-variant expressions must stay in the immediate field of the |
| 734 | // expression. |
Evan Cheng | c567c4e | 2006-03-13 23:14:23 +0000 | [diff] [blame] | 735 | if ((isAddress && isTargetConstant(Val, TLI)) || |
Chris Lattner | 45f8b6e | 2005-08-04 22:34:05 +0000 | [diff] [blame] | 736 | !Val->isLoopInvariant(L)) { |
| 737 | Imm = SCEVAddExpr::get(Imm, Val); |
| 738 | Val = SCEVUnknown::getIntegerSCEV(0, Val->getType()); |
| 739 | return; |
Chris Lattner | 0f7c0fa | 2005-08-04 19:26:19 +0000 | [diff] [blame] | 740 | } |
Chris Lattner | 45f8b6e | 2005-08-04 22:34:05 +0000 | [diff] [blame] | 741 | |
| 742 | // Otherwise, no immediates to move. |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 743 | } |
| 744 | |
Chris Lattner | 5949d49 | 2005-08-13 07:27:18 +0000 | [diff] [blame] | 745 | |
| 746 | /// IncrementAddExprUses - Decompose the specified expression into its added |
| 747 | /// subexpressions, and increment SubExpressionUseCounts for each of these |
| 748 | /// decomposed parts. |
| 749 | static void SeparateSubExprs(std::vector<SCEVHandle> &SubExprs, |
| 750 | SCEVHandle Expr) { |
| 751 | if (SCEVAddExpr *AE = dyn_cast<SCEVAddExpr>(Expr)) { |
| 752 | for (unsigned j = 0, e = AE->getNumOperands(); j != e; ++j) |
| 753 | SeparateSubExprs(SubExprs, AE->getOperand(j)); |
| 754 | } else if (SCEVAddRecExpr *SARE = dyn_cast<SCEVAddRecExpr>(Expr)) { |
| 755 | SCEVHandle Zero = SCEVUnknown::getIntegerSCEV(0, Expr->getType()); |
| 756 | if (SARE->getOperand(0) == Zero) { |
| 757 | SubExprs.push_back(Expr); |
| 758 | } else { |
| 759 | // Compute the addrec with zero as its base. |
| 760 | std::vector<SCEVHandle> Ops(SARE->op_begin(), SARE->op_end()); |
| 761 | Ops[0] = Zero; // Start with zero base. |
| 762 | SubExprs.push_back(SCEVAddRecExpr::get(Ops, SARE->getLoop())); |
| 763 | |
| 764 | |
| 765 | SeparateSubExprs(SubExprs, SARE->getOperand(0)); |
| 766 | } |
| 767 | } else if (!isa<SCEVConstant>(Expr) || |
| 768 | !cast<SCEVConstant>(Expr)->getValue()->isNullValue()) { |
| 769 | // Do not add zero. |
| 770 | SubExprs.push_back(Expr); |
| 771 | } |
| 772 | } |
| 773 | |
| 774 | |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 775 | /// RemoveCommonExpressionsFromUseBases - Look through all of the uses in Bases, |
| 776 | /// removing any common subexpressions from it. Anything truly common is |
| 777 | /// removed, accumulated, and returned. This looks for things like (a+b+c) and |
| 778 | /// (a+c+d) -> (a+c). The common expression is *removed* from the Bases. |
| 779 | static SCEVHandle |
| 780 | RemoveCommonExpressionsFromUseBases(std::vector<BasedUser> &Uses) { |
| 781 | unsigned NumUses = Uses.size(); |
| 782 | |
| 783 | // Only one use? Use its base, regardless of what it is! |
| 784 | SCEVHandle Zero = SCEVUnknown::getIntegerSCEV(0, Uses[0].Base->getType()); |
| 785 | SCEVHandle Result = Zero; |
| 786 | if (NumUses == 1) { |
| 787 | std::swap(Result, Uses[0].Base); |
| 788 | return Result; |
| 789 | } |
| 790 | |
| 791 | // To find common subexpressions, count how many of Uses use each expression. |
| 792 | // If any subexpressions are used Uses.size() times, they are common. |
| 793 | std::map<SCEVHandle, unsigned> SubExpressionUseCounts; |
| 794 | |
Chris Lattner | 192cd18 | 2005-10-11 18:41:04 +0000 | [diff] [blame] | 795 | // UniqueSubExprs - Keep track of all of the subexpressions we see in the |
| 796 | // order we see them. |
| 797 | std::vector<SCEVHandle> UniqueSubExprs; |
| 798 | |
Chris Lattner | 5949d49 | 2005-08-13 07:27:18 +0000 | [diff] [blame] | 799 | std::vector<SCEVHandle> SubExprs; |
| 800 | for (unsigned i = 0; i != NumUses; ++i) { |
| 801 | // If the base is zero (which is common), return zero now, there are no |
| 802 | // CSEs we can find. |
| 803 | if (Uses[i].Base == Zero) return Zero; |
| 804 | |
| 805 | // Split the expression into subexprs. |
| 806 | SeparateSubExprs(SubExprs, Uses[i].Base); |
| 807 | // Add one to SubExpressionUseCounts for each subexpr present. |
| 808 | for (unsigned j = 0, e = SubExprs.size(); j != e; ++j) |
Chris Lattner | 192cd18 | 2005-10-11 18:41:04 +0000 | [diff] [blame] | 809 | if (++SubExpressionUseCounts[SubExprs[j]] == 1) |
| 810 | UniqueSubExprs.push_back(SubExprs[j]); |
Chris Lattner | 5949d49 | 2005-08-13 07:27:18 +0000 | [diff] [blame] | 811 | SubExprs.clear(); |
| 812 | } |
| 813 | |
Chris Lattner | 192cd18 | 2005-10-11 18:41:04 +0000 | [diff] [blame] | 814 | // Now that we know how many times each is used, build Result. Iterate over |
| 815 | // UniqueSubexprs so that we have a stable ordering. |
| 816 | for (unsigned i = 0, e = UniqueSubExprs.size(); i != e; ++i) { |
| 817 | std::map<SCEVHandle, unsigned>::iterator I = |
| 818 | SubExpressionUseCounts.find(UniqueSubExprs[i]); |
| 819 | assert(I != SubExpressionUseCounts.end() && "Entry not found?"); |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 820 | if (I->second == NumUses) { // Found CSE! |
| 821 | Result = SCEVAddExpr::get(Result, I->first); |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 822 | } else { |
| 823 | // Remove non-cse's from SubExpressionUseCounts. |
Chris Lattner | 192cd18 | 2005-10-11 18:41:04 +0000 | [diff] [blame] | 824 | SubExpressionUseCounts.erase(I); |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 825 | } |
Chris Lattner | 192cd18 | 2005-10-11 18:41:04 +0000 | [diff] [blame] | 826 | } |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 827 | |
| 828 | // If we found no CSE's, return now. |
| 829 | if (Result == Zero) return Result; |
| 830 | |
| 831 | // Otherwise, remove all of the CSE's we found from each of the base values. |
Chris Lattner | 5949d49 | 2005-08-13 07:27:18 +0000 | [diff] [blame] | 832 | for (unsigned i = 0; i != NumUses; ++i) { |
| 833 | // Split the expression into subexprs. |
| 834 | SeparateSubExprs(SubExprs, Uses[i].Base); |
| 835 | |
| 836 | // Remove any common subexpressions. |
| 837 | for (unsigned j = 0, e = SubExprs.size(); j != e; ++j) |
| 838 | if (SubExpressionUseCounts.count(SubExprs[j])) { |
| 839 | SubExprs.erase(SubExprs.begin()+j); |
| 840 | --j; --e; |
| 841 | } |
| 842 | |
| 843 | // Finally, the non-shared expressions together. |
| 844 | if (SubExprs.empty()) |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 845 | Uses[i].Base = Zero; |
Chris Lattner | 5949d49 | 2005-08-13 07:27:18 +0000 | [diff] [blame] | 846 | else |
| 847 | Uses[i].Base = SCEVAddExpr::get(SubExprs); |
Chris Lattner | 47d3ec3 | 2005-08-13 07:42:01 +0000 | [diff] [blame] | 848 | SubExprs.clear(); |
Chris Lattner | 5949d49 | 2005-08-13 07:27:18 +0000 | [diff] [blame] | 849 | } |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 850 | |
| 851 | return Result; |
| 852 | } |
| 853 | |
Evan Cheng | 3df447d | 2006-03-16 21:53:05 +0000 | [diff] [blame] | 854 | /// isZero - returns true if the scalar evolution expression is zero. |
| 855 | /// |
| 856 | static bool isZero(SCEVHandle &V) { |
| 857 | if (SCEVConstant *SC = dyn_cast<SCEVConstant>(V)) |
| 858 | return SC->getValue()->getRawValue() == 0; |
| 859 | return false; |
| 860 | } |
| 861 | |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 862 | |
Evan Cheng | 4520698 | 2006-03-17 19:52:23 +0000 | [diff] [blame^] | 863 | /// CheckForIVReuse - Returns the multiple if the stride is the multiple |
| 864 | /// of a previous stride and it is a legal value for the target addressing |
| 865 | /// mode scale component. This allows the users of this stride to be rewritten |
| 866 | /// as prev iv * factor. It returns 1 if no reuse is possible. |
| 867 | unsigned LoopStrengthReduce::CheckForIVReuse(const SCEVHandle &Stride, |
| 868 | IVExpr &IV) { |
| 869 | if (!TLI) |
| 870 | return 1; |
| 871 | |
| 872 | if (SCEVConstant *SC = dyn_cast<SCEVConstant>(Stride)) { |
| 873 | unsigned SInt = SC->getValue()->getRawValue(); |
| 874 | if (SInt == 1) |
| 875 | return 1; |
| 876 | |
| 877 | for (TargetLowering::legal_am_scale_iterator |
| 878 | I = TLI->legal_am_scale_begin(), E = TLI->legal_am_scale_end(); |
| 879 | I != E; ++I) { |
| 880 | unsigned Scale = *I; |
| 881 | if (SInt >= Scale && (SInt % Scale) != 0) |
| 882 | continue; |
| 883 | std::map<SCEVHandle, IVsOfOneStride>::iterator SI = |
| 884 | IVsByStride.find(SCEVUnknown::getIntegerSCEV(SInt/Scale, Type::UIntTy)); |
| 885 | if (SI == IVsByStride.end()) |
| 886 | continue; |
| 887 | for (std::vector<IVExpr>::iterator II = SI->second.IVs.begin(), |
| 888 | IE = SI->second.IVs.end(); II != IE; ++II) |
| 889 | // FIXME: Only handle base == 0 for now. |
| 890 | if (isZero(II->Base)) { |
| 891 | IV = *II; |
| 892 | return Scale; |
| 893 | } |
| 894 | } |
| 895 | } |
| 896 | |
| 897 | return 1; |
| 898 | } |
| 899 | |
| 900 | |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 901 | /// StrengthReduceStridedIVUsers - Strength reduce all of the users of a single |
| 902 | /// stride of IV. All of the users may have different starting values, and this |
| 903 | /// may not be the only stride (we know it is if isOnlyStride is true). |
Chris Lattner | edff91a | 2005-08-10 00:45:21 +0000 | [diff] [blame] | 904 | void LoopStrengthReduce::StrengthReduceStridedIVUsers(const SCEVHandle &Stride, |
Chris Lattner | 430d002 | 2005-08-03 22:21:05 +0000 | [diff] [blame] | 905 | IVUsersOfOneStride &Uses, |
| 906 | Loop *L, |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 907 | bool isOnlyStride) { |
| 908 | // Transform our list of users and offsets to a bit more complex table. In |
Chris Lattner | 37c24cc | 2005-08-08 22:56:21 +0000 | [diff] [blame] | 909 | // this new vector, each 'BasedUser' contains 'Base' the base of the |
| 910 | // strided accessas well as the old information from Uses. We progressively |
| 911 | // move information from the Base field to the Imm field, until we eventually |
| 912 | // have the full access expression to rewrite the use. |
| 913 | std::vector<BasedUser> UsersToProcess; |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 914 | UsersToProcess.reserve(Uses.Users.size()); |
Chris Lattner | 37c24cc | 2005-08-08 22:56:21 +0000 | [diff] [blame] | 915 | for (unsigned i = 0, e = Uses.Users.size(); i != e; ++i) { |
| 916 | UsersToProcess.push_back(Uses.Users[i]); |
| 917 | |
| 918 | // Move any loop invariant operands from the offset field to the immediate |
| 919 | // field of the use, so that we don't try to use something before it is |
| 920 | // computed. |
| 921 | MoveLoopVariantsToImediateField(UsersToProcess.back().Base, |
| 922 | UsersToProcess.back().Imm, L); |
| 923 | assert(UsersToProcess.back().Base->isLoopInvariant(L) && |
Chris Lattner | 45f8b6e | 2005-08-04 22:34:05 +0000 | [diff] [blame] | 924 | "Base value is not loop invariant!"); |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 925 | } |
Evan Cheng | 4520698 | 2006-03-17 19:52:23 +0000 | [diff] [blame^] | 926 | |
| 927 | // Check if it is possible to reuse a IV with stride that is factor of this |
| 928 | // stride. And the multiple is a number that can be encoded in the scale |
| 929 | // field of the target addressing mode. |
| 930 | PHINode *NewPHI = NULL; |
| 931 | Value *IncV = NULL; |
| 932 | IVExpr ReuseIV(Stride, NULL, NULL); |
| 933 | unsigned RewriteFactor = CheckForIVReuse(Stride, ReuseIV); |
| 934 | if (RewriteFactor > 1) { |
| 935 | NewPHI = ReuseIV.PHI; |
| 936 | IncV = ReuseIV.IncV; |
| 937 | } |
| 938 | |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 939 | // We now have a whole bunch of uses of like-strided induction variables, but |
| 940 | // they might all have different bases. We want to emit one PHI node for this |
| 941 | // stride which we fold as many common expressions (between the IVs) into as |
| 942 | // possible. Start by identifying the common expressions in the base values |
| 943 | // for the strides (e.g. if we have "A+C+B" and "A+B+D" as our bases, find |
| 944 | // "A+B"), emit it to the preheader, then remove the expression from the |
| 945 | // UsersToProcess base values. |
Evan Cheng | 3df447d | 2006-03-16 21:53:05 +0000 | [diff] [blame] | 946 | SCEVHandle CommonExprs = |
| 947 | RemoveCommonExpressionsFromUseBases(UsersToProcess); |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 948 | |
Chris Lattner | 37ed895 | 2005-08-08 22:32:34 +0000 | [diff] [blame] | 949 | // Next, figure out what we can represent in the immediate fields of |
| 950 | // instructions. If we can represent anything there, move it to the imm |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 951 | // fields of the BasedUsers. We do this so that it increases the commonality |
| 952 | // of the remaining uses. |
Chris Lattner | 37ed895 | 2005-08-08 22:32:34 +0000 | [diff] [blame] | 953 | for (unsigned i = 0, e = UsersToProcess.size(); i != e; ++i) { |
Chris Lattner | 5cf983e | 2005-08-16 00:38:11 +0000 | [diff] [blame] | 954 | // If the user is not in the current loop, this means it is using the exit |
| 955 | // value of the IV. Do not put anything in the base, make sure it's all in |
| 956 | // the immediate field to allow as much factoring as possible. |
| 957 | if (!L->contains(UsersToProcess[i].Inst->getParent())) { |
Chris Lattner | ea7dfd5 | 2005-08-17 21:22:41 +0000 | [diff] [blame] | 958 | UsersToProcess[i].Imm = SCEVAddExpr::get(UsersToProcess[i].Imm, |
| 959 | UsersToProcess[i].Base); |
| 960 | UsersToProcess[i].Base = |
| 961 | SCEVUnknown::getIntegerSCEV(0, UsersToProcess[i].Base->getType()); |
Chris Lattner | 5cf983e | 2005-08-16 00:38:11 +0000 | [diff] [blame] | 962 | } else { |
| 963 | |
| 964 | // Addressing modes can be folded into loads and stores. Be careful that |
| 965 | // the store is through the expression, not of the expression though. |
| 966 | bool isAddress = isa<LoadInst>(UsersToProcess[i].Inst); |
| 967 | if (StoreInst *SI = dyn_cast<StoreInst>(UsersToProcess[i].Inst)) |
| 968 | if (SI->getOperand(1) == UsersToProcess[i].OperandValToReplace) |
| 969 | isAddress = true; |
| 970 | |
Evan Cheng | c567c4e | 2006-03-13 23:14:23 +0000 | [diff] [blame] | 971 | MoveImmediateValues(TLI, UsersToProcess[i].Base, UsersToProcess[i].Imm, |
Chris Lattner | 5cf983e | 2005-08-16 00:38:11 +0000 | [diff] [blame] | 972 | isAddress, L); |
| 973 | } |
Chris Lattner | 37ed895 | 2005-08-08 22:32:34 +0000 | [diff] [blame] | 974 | } |
Evan Cheng | 3df447d | 2006-03-16 21:53:05 +0000 | [diff] [blame] | 975 | |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 976 | // Now that we know what we need to do, insert the PHI node itself. |
| 977 | // |
| 978 | DEBUG(std::cerr << "INSERTING IV of STRIDE " << *Stride << " and BASE " |
| 979 | << *CommonExprs << " :\n"); |
Evan Cheng | 3df447d | 2006-03-16 21:53:05 +0000 | [diff] [blame] | 980 | |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 981 | SCEVExpander Rewriter(*SE, *LI); |
| 982 | SCEVExpander PreheaderRewriter(*SE, *LI); |
Chris Lattner | 37ed895 | 2005-08-08 22:32:34 +0000 | [diff] [blame] | 983 | |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 984 | BasicBlock *Preheader = L->getLoopPreheader(); |
| 985 | Instruction *PreInsertPt = Preheader->getTerminator(); |
| 986 | Instruction *PhiInsertBefore = L->getHeader()->begin(); |
Chris Lattner | 37ed895 | 2005-08-08 22:32:34 +0000 | [diff] [blame] | 987 | |
Chris Lattner | 8048b85 | 2005-09-12 17:11:27 +0000 | [diff] [blame] | 988 | BasicBlock *LatchBlock = L->getLoopLatch(); |
Evan Cheng | 3df447d | 2006-03-16 21:53:05 +0000 | [diff] [blame] | 989 | |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 990 | const Type *ReplacedTy = CommonExprs->getType(); |
Evan Cheng | 4520698 | 2006-03-17 19:52:23 +0000 | [diff] [blame^] | 991 | |
| 992 | // Emit the initial base value into the loop preheader. |
| 993 | Value *CommonBaseV |
| 994 | = PreheaderRewriter.expandCodeFor(CommonExprs, PreInsertPt, |
| 995 | ReplacedTy); |
| 996 | |
Evan Cheng | 3df447d | 2006-03-16 21:53:05 +0000 | [diff] [blame] | 997 | if (RewriteFactor == 1) { |
| 998 | // Create a new Phi for this base, and stick it in the loop header. |
| 999 | NewPHI = new PHINode(ReplacedTy, "iv.", PhiInsertBefore); |
| 1000 | ++NumInserted; |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 1001 | |
Evan Cheng | 4520698 | 2006-03-17 19:52:23 +0000 | [diff] [blame^] | 1002 | // Add common base to the new Phi node. |
| 1003 | NewPHI->addIncoming(CommonBaseV, Preheader); |
| 1004 | |
Evan Cheng | 3df447d | 2006-03-16 21:53:05 +0000 | [diff] [blame] | 1005 | // Insert the stride into the preheader. |
| 1006 | Value *StrideV = PreheaderRewriter.expandCodeFor(Stride, PreInsertPt, |
| 1007 | ReplacedTy); |
| 1008 | if (!isa<ConstantInt>(StrideV)) ++NumVariable; |
Chris Lattner | edff91a | 2005-08-10 00:45:21 +0000 | [diff] [blame] | 1009 | |
Evan Cheng | 3df447d | 2006-03-16 21:53:05 +0000 | [diff] [blame] | 1010 | // Emit the increment of the base value before the terminator of the loop |
| 1011 | // latch block, and add it to the Phi node. |
| 1012 | SCEVHandle IncExp = SCEVAddExpr::get(SCEVUnknown::get(NewPHI), |
| 1013 | SCEVUnknown::get(StrideV)); |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 1014 | |
Evan Cheng | 3df447d | 2006-03-16 21:53:05 +0000 | [diff] [blame] | 1015 | IncV = Rewriter.expandCodeFor(IncExp, LatchBlock->getTerminator(), |
| 1016 | ReplacedTy); |
| 1017 | IncV->setName(NewPHI->getName()+".inc"); |
| 1018 | NewPHI->addIncoming(IncV, LatchBlock); |
| 1019 | |
Evan Cheng | 4520698 | 2006-03-17 19:52:23 +0000 | [diff] [blame^] | 1020 | // Remember this in case a later stride is multiple of this. |
Evan Cheng | 3df447d | 2006-03-16 21:53:05 +0000 | [diff] [blame] | 1021 | IVsByStride[Stride].addIV(CommonExprs, NewPHI, IncV); |
Evan Cheng | 4520698 | 2006-03-17 19:52:23 +0000 | [diff] [blame^] | 1022 | } else { |
| 1023 | Constant *C = dyn_cast<Constant>(CommonBaseV); |
| 1024 | if (!C || |
| 1025 | (!C->isNullValue() && |
| 1026 | !isTargetConstant(SCEVUnknown::get(CommonBaseV), TLI))) |
| 1027 | // We want the common base emitted into the preheader! |
| 1028 | CommonBaseV = new CastInst(CommonBaseV, CommonBaseV->getType(), |
| 1029 | "commonbase", PreInsertPt); |
Evan Cheng | 3df447d | 2006-03-16 21:53:05 +0000 | [diff] [blame] | 1030 | } |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 1031 | |
Chris Lattner | db23c74 | 2005-08-03 22:51:21 +0000 | [diff] [blame] | 1032 | // Sort by the base value, so that all IVs with identical bases are next to |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 1033 | // each other. |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 1034 | while (!UsersToProcess.empty()) { |
Chris Lattner | 5c9d63d | 2005-10-11 18:30:57 +0000 | [diff] [blame] | 1035 | SCEVHandle Base = UsersToProcess.back().Base; |
Chris Lattner | bb78c97 | 2005-08-03 23:30:08 +0000 | [diff] [blame] | 1036 | |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 1037 | DEBUG(std::cerr << " INSERTING code for BASE = " << *Base << ":\n"); |
Chris Lattner | bb78c97 | 2005-08-03 23:30:08 +0000 | [diff] [blame] | 1038 | |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 1039 | // Emit the code for Base into the preheader. |
Chris Lattner | c70bbc0 | 2005-08-08 05:47:49 +0000 | [diff] [blame] | 1040 | Value *BaseV = PreheaderRewriter.expandCodeFor(Base, PreInsertPt, |
| 1041 | ReplacedTy); |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 1042 | |
| 1043 | // If BaseV is a constant other than 0, make sure that it gets inserted into |
| 1044 | // the preheader, instead of being forward substituted into the uses. We do |
| 1045 | // this by forcing a noop cast to be inserted into the preheader in this |
| 1046 | // case. |
| 1047 | if (Constant *C = dyn_cast<Constant>(BaseV)) |
Evan Cheng | c567c4e | 2006-03-13 23:14:23 +0000 | [diff] [blame] | 1048 | if (!C->isNullValue() && !isTargetConstant(Base, TLI)) { |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 1049 | // We want this constant emitted into the preheader! |
| 1050 | BaseV = new CastInst(BaseV, BaseV->getType(), "preheaderinsert", |
| 1051 | PreInsertPt); |
| 1052 | } |
| 1053 | |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 1054 | // Emit the code to add the immediate offset to the Phi value, just before |
Chris Lattner | db23c74 | 2005-08-03 22:51:21 +0000 | [diff] [blame] | 1055 | // the instructions that we identified as using this stride and base. |
Chris Lattner | 5c9d63d | 2005-10-11 18:30:57 +0000 | [diff] [blame] | 1056 | unsigned ScanPos = 0; |
| 1057 | do { |
| 1058 | BasedUser &User = UsersToProcess.back(); |
Jeff Cohen | 546fd59 | 2005-07-30 18:33:25 +0000 | [diff] [blame] | 1059 | |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 1060 | // If this instruction wants to use the post-incremented value, move it |
| 1061 | // after the post-inc and use its value instead of the PHI. |
| 1062 | Value *RewriteOp = NewPHI; |
| 1063 | if (User.isUseOfPostIncrementedValue) { |
| 1064 | RewriteOp = IncV; |
Chris Lattner | a676483 | 2005-09-12 06:04:47 +0000 | [diff] [blame] | 1065 | |
| 1066 | // If this user is in the loop, make sure it is the last thing in the |
| 1067 | // loop to ensure it is dominated by the increment. |
| 1068 | if (L->contains(User.Inst->getParent())) |
| 1069 | User.Inst->moveBefore(LatchBlock->getTerminator()); |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 1070 | } |
| 1071 | SCEVHandle RewriteExpr = SCEVUnknown::get(RewriteOp); |
| 1072 | |
Chris Lattner | db23c74 | 2005-08-03 22:51:21 +0000 | [diff] [blame] | 1073 | // Clear the SCEVExpander's expression map so that we are guaranteed |
| 1074 | // to have the code emitted where we expect it. |
| 1075 | Rewriter.clear(); |
Evan Cheng | 3df447d | 2006-03-16 21:53:05 +0000 | [diff] [blame] | 1076 | |
| 1077 | // If we are reusing the iv, then it must be multiplied by a constant |
| 1078 | // factor take advantage of addressing mode scale component. |
Evan Cheng | 4520698 | 2006-03-17 19:52:23 +0000 | [diff] [blame^] | 1079 | if (RewriteFactor != 1) { |
Evan Cheng | 3df447d | 2006-03-16 21:53:05 +0000 | [diff] [blame] | 1080 | RewriteExpr = |
| 1081 | SCEVMulExpr::get(SCEVUnknown::getIntegerSCEV(RewriteFactor, |
Evan Cheng | 4520698 | 2006-03-17 19:52:23 +0000 | [diff] [blame^] | 1082 | RewriteExpr->getType()), |
| 1083 | RewriteExpr); |
| 1084 | |
| 1085 | // The common base is emitted in the loop preheader. But since we |
| 1086 | // are reusing an IV, it has not been used to initialize the PHI node. |
| 1087 | // Add it to the expression used to rewrite the uses. |
| 1088 | if (!isa<ConstantInt>(CommonBaseV) || |
| 1089 | !cast<ConstantInt>(CommonBaseV)->isNullValue()) |
| 1090 | RewriteExpr = SCEVAddExpr::get(RewriteExpr, |
| 1091 | SCEVUnknown::get(CommonBaseV)); |
| 1092 | } |
Evan Cheng | 3df447d | 2006-03-16 21:53:05 +0000 | [diff] [blame] | 1093 | |
Chris Lattner | a6d7c35 | 2005-08-04 20:03:32 +0000 | [diff] [blame] | 1094 | // Now that we know what we need to do, insert code before User for the |
| 1095 | // immediate and any loop-variant expressions. |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 1096 | if (!isa<ConstantInt>(BaseV) || !cast<ConstantInt>(BaseV)->isNullValue()) |
| 1097 | // Add BaseV to the PHI value if needed. |
| 1098 | RewriteExpr = SCEVAddExpr::get(RewriteExpr, SCEVUnknown::get(BaseV)); |
Evan Cheng | 3df447d | 2006-03-16 21:53:05 +0000 | [diff] [blame] | 1099 | |
Chris Lattner | 8447b49 | 2005-08-12 22:22:17 +0000 | [diff] [blame] | 1100 | User.RewriteInstructionToUseNewBase(RewriteExpr, Rewriter, L, this); |
Jeff Cohen | 546fd59 | 2005-07-30 18:33:25 +0000 | [diff] [blame] | 1101 | |
Chris Lattner | db23c74 | 2005-08-03 22:51:21 +0000 | [diff] [blame] | 1102 | // Mark old value we replaced as possibly dead, so that it is elminated |
| 1103 | // if we just replaced the last use of that value. |
Chris Lattner | a6d7c35 | 2005-08-04 20:03:32 +0000 | [diff] [blame] | 1104 | DeadInsts.insert(cast<Instruction>(User.OperandValToReplace)); |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 1105 | |
Chris Lattner | 5c9d63d | 2005-10-11 18:30:57 +0000 | [diff] [blame] | 1106 | UsersToProcess.pop_back(); |
Chris Lattner | db23c74 | 2005-08-03 22:51:21 +0000 | [diff] [blame] | 1107 | ++NumReduced; |
Chris Lattner | 5c9d63d | 2005-10-11 18:30:57 +0000 | [diff] [blame] | 1108 | |
| 1109 | // If there are any more users to process with the same base, move one of |
| 1110 | // them to the end of the list so that we will process it. |
| 1111 | if (!UsersToProcess.empty()) { |
| 1112 | for (unsigned e = UsersToProcess.size(); ScanPos != e; ++ScanPos) |
| 1113 | if (UsersToProcess[ScanPos].Base == Base) { |
| 1114 | std::swap(UsersToProcess[ScanPos], UsersToProcess.back()); |
| 1115 | break; |
| 1116 | } |
| 1117 | } |
| 1118 | } while (!UsersToProcess.empty() && UsersToProcess.back().Base == Base); |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 1119 | // TODO: Next, find out which base index is the most common, pull it out. |
| 1120 | } |
| 1121 | |
| 1122 | // IMPORTANT TODO: Figure out how to partition the IV's with this stride, but |
| 1123 | // different starting values, into different PHIs. |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 1124 | } |
| 1125 | |
Chris Lattner | 9bfa6f8 | 2005-08-08 05:28:22 +0000 | [diff] [blame] | 1126 | // OptimizeIndvars - Now that IVUsesByStride is set up with all of the indvar |
| 1127 | // uses in the loop, look to see if we can eliminate some, in favor of using |
| 1128 | // common indvars for the different uses. |
| 1129 | void LoopStrengthReduce::OptimizeIndvars(Loop *L) { |
| 1130 | // TODO: implement optzns here. |
| 1131 | |
| 1132 | |
| 1133 | |
| 1134 | |
| 1135 | // Finally, get the terminating condition for the loop if possible. If we |
| 1136 | // can, we want to change it to use a post-incremented version of its |
| 1137 | // induction variable, to allow coallescing the live ranges for the IV into |
| 1138 | // one register value. |
| 1139 | PHINode *SomePHI = cast<PHINode>(L->getHeader()->begin()); |
| 1140 | BasicBlock *Preheader = L->getLoopPreheader(); |
| 1141 | BasicBlock *LatchBlock = |
| 1142 | SomePHI->getIncomingBlock(SomePHI->getIncomingBlock(0) == Preheader); |
| 1143 | BranchInst *TermBr = dyn_cast<BranchInst>(LatchBlock->getTerminator()); |
| 1144 | if (!TermBr || TermBr->isUnconditional() || |
| 1145 | !isa<SetCondInst>(TermBr->getCondition())) |
| 1146 | return; |
| 1147 | SetCondInst *Cond = cast<SetCondInst>(TermBr->getCondition()); |
| 1148 | |
| 1149 | // Search IVUsesByStride to find Cond's IVUse if there is one. |
| 1150 | IVStrideUse *CondUse = 0; |
Chris Lattner | edff91a | 2005-08-10 00:45:21 +0000 | [diff] [blame] | 1151 | const SCEVHandle *CondStride = 0; |
Chris Lattner | 9bfa6f8 | 2005-08-08 05:28:22 +0000 | [diff] [blame] | 1152 | |
Chris Lattner | b7a3894 | 2005-10-11 18:17:57 +0000 | [diff] [blame] | 1153 | for (unsigned Stride = 0, e = StrideOrder.size(); Stride != e && !CondUse; |
| 1154 | ++Stride) { |
| 1155 | std::map<SCEVHandle, IVUsersOfOneStride>::iterator SI = |
| 1156 | IVUsesByStride.find(StrideOrder[Stride]); |
| 1157 | assert(SI != IVUsesByStride.end() && "Stride doesn't exist!"); |
| 1158 | |
| 1159 | for (std::vector<IVStrideUse>::iterator UI = SI->second.Users.begin(), |
| 1160 | E = SI->second.Users.end(); UI != E; ++UI) |
Chris Lattner | 9bfa6f8 | 2005-08-08 05:28:22 +0000 | [diff] [blame] | 1161 | if (UI->User == Cond) { |
| 1162 | CondUse = &*UI; |
Chris Lattner | b7a3894 | 2005-10-11 18:17:57 +0000 | [diff] [blame] | 1163 | CondStride = &SI->first; |
Chris Lattner | 9bfa6f8 | 2005-08-08 05:28:22 +0000 | [diff] [blame] | 1164 | // NOTE: we could handle setcc instructions with multiple uses here, but |
| 1165 | // InstCombine does it as well for simple uses, it's not clear that it |
| 1166 | // occurs enough in real life to handle. |
| 1167 | break; |
| 1168 | } |
Chris Lattner | b7a3894 | 2005-10-11 18:17:57 +0000 | [diff] [blame] | 1169 | } |
Chris Lattner | 9bfa6f8 | 2005-08-08 05:28:22 +0000 | [diff] [blame] | 1170 | if (!CondUse) return; // setcc doesn't use the IV. |
| 1171 | |
| 1172 | // setcc stride is complex, don't mess with users. |
Chris Lattner | edff91a | 2005-08-10 00:45:21 +0000 | [diff] [blame] | 1173 | // FIXME: Evaluate whether this is a good idea or not. |
| 1174 | if (!isa<SCEVConstant>(*CondStride)) return; |
Chris Lattner | 9bfa6f8 | 2005-08-08 05:28:22 +0000 | [diff] [blame] | 1175 | |
| 1176 | // It's possible for the setcc instruction to be anywhere in the loop, and |
| 1177 | // possible for it to have multiple users. If it is not immediately before |
| 1178 | // the latch block branch, move it. |
| 1179 | if (&*++BasicBlock::iterator(Cond) != (Instruction*)TermBr) { |
| 1180 | if (Cond->hasOneUse()) { // Condition has a single use, just move it. |
| 1181 | Cond->moveBefore(TermBr); |
| 1182 | } else { |
| 1183 | // Otherwise, clone the terminating condition and insert into the loopend. |
| 1184 | Cond = cast<SetCondInst>(Cond->clone()); |
| 1185 | Cond->setName(L->getHeader()->getName() + ".termcond"); |
| 1186 | LatchBlock->getInstList().insert(TermBr, Cond); |
| 1187 | |
| 1188 | // Clone the IVUse, as the old use still exists! |
Chris Lattner | edff91a | 2005-08-10 00:45:21 +0000 | [diff] [blame] | 1189 | IVUsesByStride[*CondStride].addUser(CondUse->Offset, Cond, |
Chris Lattner | 9bfa6f8 | 2005-08-08 05:28:22 +0000 | [diff] [blame] | 1190 | CondUse->OperandValToReplace); |
Chris Lattner | edff91a | 2005-08-10 00:45:21 +0000 | [diff] [blame] | 1191 | CondUse = &IVUsesByStride[*CondStride].Users.back(); |
Chris Lattner | 9bfa6f8 | 2005-08-08 05:28:22 +0000 | [diff] [blame] | 1192 | } |
| 1193 | } |
| 1194 | |
| 1195 | // If we get to here, we know that we can transform the setcc instruction to |
| 1196 | // use the post-incremented version of the IV, allowing us to coallesce the |
| 1197 | // live ranges for the IV correctly. |
Chris Lattner | edff91a | 2005-08-10 00:45:21 +0000 | [diff] [blame] | 1198 | CondUse->Offset = SCEV::getMinusSCEV(CondUse->Offset, *CondStride); |
Chris Lattner | 9bfa6f8 | 2005-08-08 05:28:22 +0000 | [diff] [blame] | 1199 | CondUse->isUseOfPostIncrementedValue = true; |
| 1200 | } |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 1201 | |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 1202 | void LoopStrengthReduce::runOnLoop(Loop *L) { |
| 1203 | // First step, transform all loops nesting inside of this loop. |
| 1204 | for (LoopInfo::iterator I = L->begin(), E = L->end(); I != E; ++I) |
| 1205 | runOnLoop(*I); |
| 1206 | |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 1207 | // Next, find all uses of induction variables in this loop, and catagorize |
| 1208 | // them by stride. Start by finding all of the PHI nodes in the header for |
| 1209 | // this loop. If they are induction variables, inspect their uses. |
Chris Lattner | eaf2472 | 2005-08-04 17:40:30 +0000 | [diff] [blame] | 1210 | std::set<Instruction*> Processed; // Don't reprocess instructions. |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 1211 | for (BasicBlock::iterator I = L->getHeader()->begin(); isa<PHINode>(I); ++I) |
Chris Lattner | eaf2472 | 2005-08-04 17:40:30 +0000 | [diff] [blame] | 1212 | AddUsersIfInteresting(I, L, Processed); |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 1213 | |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 1214 | // If we have nothing to do, return. |
Chris Lattner | 9bfa6f8 | 2005-08-08 05:28:22 +0000 | [diff] [blame] | 1215 | if (IVUsesByStride.empty()) return; |
| 1216 | |
| 1217 | // Optimize induction variables. Some indvar uses can be transformed to use |
| 1218 | // strides that will be needed for other purposes. A common example of this |
| 1219 | // is the exit test for the loop, which can often be rewritten to use the |
| 1220 | // computation of some other indvar to decide when to terminate the loop. |
| 1221 | OptimizeIndvars(L); |
| 1222 | |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1223 | |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 1224 | // FIXME: We can widen subreg IV's here for RISC targets. e.g. instead of |
| 1225 | // doing computation in byte values, promote to 32-bit values if safe. |
| 1226 | |
| 1227 | // FIXME: Attempt to reuse values across multiple IV's. In particular, we |
| 1228 | // could have something like "for(i) { foo(i*8); bar(i*16) }", which should be |
| 1229 | // codegened as "for (j = 0;; j+=8) { foo(j); bar(j+j); }" on X86/PPC. Need |
| 1230 | // to be careful that IV's are all the same type. Only works for intptr_t |
| 1231 | // indvars. |
| 1232 | |
| 1233 | // If we only have one stride, we can more aggressively eliminate some things. |
| 1234 | bool HasOneStride = IVUsesByStride.size() == 1; |
Evan Cheng | 3df447d | 2006-03-16 21:53:05 +0000 | [diff] [blame] | 1235 | |
| 1236 | #ifndef NDEBUG |
| 1237 | DEBUG(std::cerr << "\nLSR on "); |
| 1238 | DEBUG(L->dump()); |
| 1239 | #endif |
| 1240 | |
| 1241 | // IVsByStride keeps IVs for one particular loop. |
| 1242 | IVsByStride.clear(); |
| 1243 | |
Chris Lattner | a091ff1 | 2005-08-09 00:18:09 +0000 | [diff] [blame] | 1244 | // Note: this processes each stride/type pair individually. All users passed |
Chris Lattner | 4ea0a3e | 2005-10-09 06:20:55 +0000 | [diff] [blame] | 1245 | // into StrengthReduceStridedIVUsers have the same type AND stride. Also, |
| 1246 | // node that we iterate over IVUsesByStride indirectly by using StrideOrder. |
| 1247 | // This extra layer of indirection makes the ordering of strides deterministic |
| 1248 | // - not dependent on map order. |
| 1249 | for (unsigned Stride = 0, e = StrideOrder.size(); Stride != e; ++Stride) { |
| 1250 | std::map<SCEVHandle, IVUsersOfOneStride>::iterator SI = |
| 1251 | IVUsesByStride.find(StrideOrder[Stride]); |
| 1252 | assert(SI != IVUsesByStride.end() && "Stride doesn't exist!"); |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 1253 | StrengthReduceStridedIVUsers(SI->first, SI->second, L, HasOneStride); |
Chris Lattner | 4ea0a3e | 2005-10-09 06:20:55 +0000 | [diff] [blame] | 1254 | } |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 1255 | |
| 1256 | // Clean up after ourselves |
| 1257 | if (!DeadInsts.empty()) { |
| 1258 | DeleteTriviallyDeadInstructions(DeadInsts); |
| 1259 | |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 1260 | BasicBlock::iterator I = L->getHeader()->begin(); |
| 1261 | PHINode *PN; |
Chris Lattner | dcce49e | 2005-08-02 02:44:31 +0000 | [diff] [blame] | 1262 | while ((PN = dyn_cast<PHINode>(I))) { |
Chris Lattner | 564900e | 2005-08-02 00:41:11 +0000 | [diff] [blame] | 1263 | ++I; // Preincrement iterator to avoid invalidating it when deleting PN. |
| 1264 | |
Chris Lattner | c6c4d99 | 2005-08-09 23:39:36 +0000 | [diff] [blame] | 1265 | // At this point, we know that we have killed one or more GEP |
| 1266 | // instructions. It is worth checking to see if the cann indvar is also |
| 1267 | // dead, so that we can remove it as well. The requirements for the cann |
| 1268 | // indvar to be considered dead are: |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 1269 | // 1. the cann indvar has one use |
| 1270 | // 2. the use is an add instruction |
| 1271 | // 3. the add has one use |
| 1272 | // 4. the add is used by the cann indvar |
| 1273 | // If all four cases above are true, then we can remove both the add and |
| 1274 | // the cann indvar. |
| 1275 | // FIXME: this needs to eliminate an induction variable even if it's being |
| 1276 | // compared against some value to decide loop termination. |
| 1277 | if (PN->hasOneUse()) { |
| 1278 | BinaryOperator *BO = dyn_cast<BinaryOperator>(*(PN->use_begin())); |
Chris Lattner | 75a44e1 | 2005-08-02 02:52:02 +0000 | [diff] [blame] | 1279 | if (BO && BO->hasOneUse()) { |
| 1280 | if (PN == *(BO->use_begin())) { |
| 1281 | DeadInsts.insert(BO); |
| 1282 | // Break the cycle, then delete the PHI. |
| 1283 | PN->replaceAllUsesWith(UndefValue::get(PN->getType())); |
Chris Lattner | 84e9baa | 2005-08-03 21:36:09 +0000 | [diff] [blame] | 1284 | SE->deleteInstructionFromRecords(PN); |
Chris Lattner | 75a44e1 | 2005-08-02 02:52:02 +0000 | [diff] [blame] | 1285 | PN->eraseFromParent(); |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 1286 | } |
Chris Lattner | 75a44e1 | 2005-08-02 02:52:02 +0000 | [diff] [blame] | 1287 | } |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 1288 | } |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 1289 | } |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 1290 | DeleteTriviallyDeadInstructions(DeadInsts); |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 1291 | } |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 1292 | |
Chris Lattner | 11e7a5e | 2005-08-05 01:30:11 +0000 | [diff] [blame] | 1293 | CastedPointers.clear(); |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 1294 | IVUsesByStride.clear(); |
Chris Lattner | 4ea0a3e | 2005-10-09 06:20:55 +0000 | [diff] [blame] | 1295 | StrideOrder.clear(); |
Nate Begeman | e68bcd1 | 2005-07-30 00:15:07 +0000 | [diff] [blame] | 1296 | return; |
Nate Begeman | b18121e | 2004-10-18 21:08:22 +0000 | [diff] [blame] | 1297 | } |