blob: 7d4a1041dac70632fbed23cdbec90b84183ceb16 [file] [log] [blame]
Nate Begemaneaa13852004-10-18 21:08:22 +00001//===- LoopStrengthReduce.cpp - Strength Reduce GEPs in Loops -------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
Nate Begemaneaa13852004-10-18 21:08:22 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
Nate Begemaneaa13852004-10-18 21:08:22 +00008//===----------------------------------------------------------------------===//
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 Begemaneaa13852004-10-18 21:08:22 +000016//===----------------------------------------------------------------------===//
17
Chris Lattnerbe3e5212005-08-03 23:30:08 +000018#define DEBUG_TYPE "loop-reduce"
Nate Begemaneaa13852004-10-18 21:08:22 +000019#include "llvm/Transforms/Scalar.h"
20#include "llvm/Constants.h"
21#include "llvm/Instructions.h"
Dan Gohmane5b01be2007-05-04 14:59:09 +000022#include "llvm/IntrinsicInst.h"
Nate Begemaneaa13852004-10-18 21:08:22 +000023#include "llvm/Type.h"
Jeff Cohen2f3c9b72005-03-04 04:04:26 +000024#include "llvm/DerivedTypes.h"
Nate Begemaneaa13852004-10-18 21:08:22 +000025#include "llvm/Analysis/Dominators.h"
26#include "llvm/Analysis/LoopInfo.h"
Devang Patel0f54dcb2007-03-06 21:14:09 +000027#include "llvm/Analysis/LoopPass.h"
Nate Begeman16997482005-07-30 00:15:07 +000028#include "llvm/Analysis/ScalarEvolutionExpander.h"
Nate Begemaneaa13852004-10-18 21:08:22 +000029#include "llvm/Support/CFG.h"
Nate Begeman16997482005-07-30 00:15:07 +000030#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattnere0391be2005-08-12 22:06:11 +000031#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Nate Begemaneaa13852004-10-18 21:08:22 +000032#include "llvm/Transforms/Utils/Local.h"
Jeff Cohen2f3c9b72005-03-04 04:04:26 +000033#include "llvm/Target/TargetData.h"
Evan Cheng72b7b092008-06-16 21:08:17 +000034#include "llvm/ADT/SetVector.h"
Evan Cheng168a66b2007-10-26 23:08:19 +000035#include "llvm/ADT/SmallPtrSet.h"
Nate Begemaneaa13852004-10-18 21:08:22 +000036#include "llvm/ADT/Statistic.h"
Nate Begeman16997482005-07-30 00:15:07 +000037#include "llvm/Support/Debug.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000038#include "llvm/Support/Compiler.h"
Evan Chengd277f2c2006-03-13 23:14:23 +000039#include "llvm/Target/TargetLowering.h"
Jeff Cohencfb1d422005-07-30 18:22:27 +000040#include <algorithm>
Nate Begemaneaa13852004-10-18 21:08:22 +000041#include <set>
42using namespace llvm;
43
Evan Chengcdf43b12007-10-25 09:11:16 +000044STATISTIC(NumReduced , "Number of GEPs strength reduced");
45STATISTIC(NumInserted, "Number of PHIs inserted");
46STATISTIC(NumVariable, "Number of PHIs with variable strides");
Devang Patel54153272008-08-27 17:50:18 +000047STATISTIC(NumEliminated, "Number of strides eliminated");
48STATISTIC(NumShadow, "Number of Shadow IVs optimized");
Nate Begemaneaa13852004-10-18 21:08:22 +000049
Chris Lattner0e5f4992006-12-19 21:40:18 +000050namespace {
Dale Johannesendc42f482007-03-20 00:47:50 +000051
Jeff Cohenc01a5302007-03-20 20:43:18 +000052 struct BasedUser;
Dale Johannesendc42f482007-03-20 00:47:50 +000053
Chris Lattnerec3fb632005-08-03 22:21:05 +000054 /// IVStrideUse - Keep track of one use of a strided induction variable, where
55 /// the stride is stored externally. The Offset member keeps track of the
Dan Gohman9330c3a2007-10-29 19:32:39 +000056 /// offset from the IV, User is the actual user of the operand, and
57 /// 'OperandValToReplace' is the operand of the User that is the use.
Reid Spencer9133fe22007-02-05 23:32:05 +000058 struct VISIBILITY_HIDDEN IVStrideUse {
Chris Lattnerec3fb632005-08-03 22:21:05 +000059 SCEVHandle Offset;
60 Instruction *User;
61 Value *OperandValToReplace;
Chris Lattner010de252005-08-08 05:28:22 +000062
63 // isUseOfPostIncrementedValue - True if this should use the
64 // post-incremented version of this IV, not the preincremented version.
65 // This can only be set in special cases, such as the terminating setcc
Chris Lattnerc6bae652005-09-12 06:04:47 +000066 // instruction for a loop or uses dominated by the loop.
Chris Lattner010de252005-08-08 05:28:22 +000067 bool isUseOfPostIncrementedValue;
Chris Lattnerec3fb632005-08-03 22:21:05 +000068
69 IVStrideUse(const SCEVHandle &Offs, Instruction *U, Value *O)
Chris Lattner010de252005-08-08 05:28:22 +000070 : Offset(Offs), User(U), OperandValToReplace(O),
71 isUseOfPostIncrementedValue(false) {}
Chris Lattnerec3fb632005-08-03 22:21:05 +000072 };
73
74 /// IVUsersOfOneStride - This structure keeps track of all instructions that
75 /// have an operand that is based on the trip count multiplied by some stride.
76 /// The stride for all of these users is common and kept external to this
77 /// structure.
Reid Spencer9133fe22007-02-05 23:32:05 +000078 struct VISIBILITY_HIDDEN IVUsersOfOneStride {
Nate Begeman16997482005-07-30 00:15:07 +000079 /// Users - Keep track of all of the users of this stride as well as the
Chris Lattnerec3fb632005-08-03 22:21:05 +000080 /// initial value and the operand that uses the IV.
81 std::vector<IVStrideUse> Users;
82
83 void addUser(const SCEVHandle &Offset,Instruction *User, Value *Operand) {
84 Users.push_back(IVStrideUse(Offset, User, Operand));
Nate Begeman16997482005-07-30 00:15:07 +000085 }
86 };
87
Evan Chengd1d6b5c2006-03-16 21:53:05 +000088 /// IVInfo - This structure keeps track of one IV expression inserted during
Evan Cheng21495772006-03-18 08:03:12 +000089 /// StrengthReduceStridedIVUsers. It contains the stride, the common base, as
90 /// well as the PHI node and increment value created for rewrite.
Reid Spencer9133fe22007-02-05 23:32:05 +000091 struct VISIBILITY_HIDDEN IVExpr {
Evan Cheng21495772006-03-18 08:03:12 +000092 SCEVHandle Stride;
Evan Chengd1d6b5c2006-03-16 21:53:05 +000093 SCEVHandle Base;
94 PHINode *PHI;
95 Value *IncV;
96
Evan Cheng21495772006-03-18 08:03:12 +000097 IVExpr(const SCEVHandle &stride, const SCEVHandle &base, PHINode *phi,
98 Value *incv)
99 : Stride(stride), Base(base), PHI(phi), IncV(incv) {}
Evan Chengd1d6b5c2006-03-16 21:53:05 +0000100 };
101
102 /// IVsOfOneStride - This structure keeps track of all IV expression inserted
103 /// during StrengthReduceStridedIVUsers for a particular stride of the IV.
Reid Spencer9133fe22007-02-05 23:32:05 +0000104 struct VISIBILITY_HIDDEN IVsOfOneStride {
Evan Chengd1d6b5c2006-03-16 21:53:05 +0000105 std::vector<IVExpr> IVs;
106
Evan Cheng21495772006-03-18 08:03:12 +0000107 void addIV(const SCEVHandle &Stride, const SCEVHandle &Base, PHINode *PHI,
108 Value *IncV) {
109 IVs.push_back(IVExpr(Stride, Base, PHI, IncV));
Evan Chengd1d6b5c2006-03-16 21:53:05 +0000110 }
111 };
Nate Begeman16997482005-07-30 00:15:07 +0000112
Devang Patel0f54dcb2007-03-06 21:14:09 +0000113 class VISIBILITY_HIDDEN LoopStrengthReduce : public LoopPass {
Nate Begemaneaa13852004-10-18 21:08:22 +0000114 LoopInfo *LI;
Devang Patelb7d9dfc2007-06-07 21:42:15 +0000115 DominatorTree *DT;
Nate Begeman16997482005-07-30 00:15:07 +0000116 ScalarEvolution *SE;
117 const TargetData *TD;
118 const Type *UIntPtrTy;
Nate Begemaneaa13852004-10-18 21:08:22 +0000119 bool Changed;
Chris Lattner7e608bb2005-08-02 02:52:02 +0000120
Nate Begeman16997482005-07-30 00:15:07 +0000121 /// IVUsesByStride - Keep track of all uses of induction variables that we
122 /// are interested in. The key of the map is the stride of the access.
Chris Lattner50fad702005-08-10 00:45:21 +0000123 std::map<SCEVHandle, IVUsersOfOneStride> IVUsesByStride;
Nate Begeman16997482005-07-30 00:15:07 +0000124
Evan Chengd1d6b5c2006-03-16 21:53:05 +0000125 /// IVsByStride - Keep track of all IVs that have been inserted for a
126 /// particular stride.
127 std::map<SCEVHandle, IVsOfOneStride> IVsByStride;
128
Chris Lattner7305ae22005-10-09 06:20:55 +0000129 /// StrideOrder - An ordering of the keys in IVUsesByStride that is stable:
130 /// We use this to iterate over the IVUsesByStride collection without being
131 /// dependent on random ordering of pointers in the process.
Evan Cheng83927722007-10-30 22:27:26 +0000132 SmallVector<SCEVHandle, 16> StrideOrder;
Chris Lattner7305ae22005-10-09 06:20:55 +0000133
Chris Lattner49f72e62005-08-04 01:19:13 +0000134 /// CastedValues - As we need to cast values to uintptr_t, this keeps track
135 /// of the casted version of each value. This is accessed by
136 /// getCastedVersionOf.
Evan Cheng83927722007-10-30 22:27:26 +0000137 DenseMap<Value*, Value*> CastedPointers;
Nate Begeman16997482005-07-30 00:15:07 +0000138
139 /// DeadInsts - Keep track of instructions we may have made dead, so that
140 /// we can remove them after we are done working.
Evan Cheng72b7b092008-06-16 21:08:17 +0000141 SetVector<Instruction*> DeadInsts;
Evan Chengd277f2c2006-03-13 23:14:23 +0000142
143 /// TLI - Keep a pointer of a TargetLowering to consult for determining
144 /// transformation profitability.
145 const TargetLowering *TLI;
146
Nate Begemaneaa13852004-10-18 21:08:22 +0000147 public:
Devang Patel19974732007-05-03 01:11:54 +0000148 static char ID; // Pass ID, replacement for typeid
Dan Gohmanc2bbfc12007-08-01 15:32:29 +0000149 explicit LoopStrengthReduce(const TargetLowering *tli = NULL) :
Dan Gohmanae73dc12008-09-04 17:05:41 +0000150 LoopPass(&ID), TLI(tli) {
Jeff Cohen2f3c9b72005-03-04 04:04:26 +0000151 }
152
Devang Patel0f54dcb2007-03-06 21:14:09 +0000153 bool runOnLoop(Loop *L, LPPassManager &LPM);
Nate Begemaneaa13852004-10-18 21:08:22 +0000154
155 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattneraa96ae72005-08-17 06:35:16 +0000156 // We split critical edges, so we change the CFG. However, we do update
157 // many analyses if they are around.
158 AU.addPreservedID(LoopSimplifyID);
159 AU.addPreserved<LoopInfo>();
Chris Lattneraa96ae72005-08-17 06:35:16 +0000160 AU.addPreserved<DominanceFrontier>();
161 AU.addPreserved<DominatorTree>();
162
Jeff Cohenf465db62005-02-27 19:37:07 +0000163 AU.addRequiredID(LoopSimplifyID);
Nate Begemaneaa13852004-10-18 21:08:22 +0000164 AU.addRequired<LoopInfo>();
Devang Patelb7d9dfc2007-06-07 21:42:15 +0000165 AU.addRequired<DominatorTree>();
Jeff Cohen2f3c9b72005-03-04 04:04:26 +0000166 AU.addRequired<TargetData>();
Nate Begeman16997482005-07-30 00:15:07 +0000167 AU.addRequired<ScalarEvolution>();
Devang Patela0b39092008-08-26 17:57:54 +0000168 AU.addPreserved<ScalarEvolution>();
Nate Begemaneaa13852004-10-18 21:08:22 +0000169 }
Chris Lattner49f72e62005-08-04 01:19:13 +0000170
171 /// getCastedVersionOf - Return the specified value casted to uintptr_t.
172 ///
Reid Spencer3ba68b92006-12-13 08:06:42 +0000173 Value *getCastedVersionOf(Instruction::CastOps opcode, Value *V);
Chris Lattner49f72e62005-08-04 01:19:13 +0000174private:
Chris Lattner3416e5f2005-08-04 17:40:30 +0000175 bool AddUsersIfInteresting(Instruction *I, Loop *L,
Evan Cheng168a66b2007-10-26 23:08:19 +0000176 SmallPtrSet<Instruction*,16> &Processed);
Dan Gohman8480bc52007-10-29 19:31:25 +0000177 SCEVHandle GetExpressionSCEV(Instruction *E);
Evan Chengcdf43b12007-10-25 09:11:16 +0000178 ICmpInst *ChangeCompareStride(Loop *L, ICmpInst *Cond,
179 IVStrideUse* &CondUse,
180 const SCEVHandle* &CondStride);
Chris Lattner010de252005-08-08 05:28:22 +0000181 void OptimizeIndvars(Loop *L);
Devang Patela0b39092008-08-26 17:57:54 +0000182
183 /// OptimizeShadowIV - If IV is used in a int-to-float cast
184 /// inside the loop then try to eliminate the cast opeation.
185 void OptimizeShadowIV(Loop *L);
186
Dan Gohmanad7321f2008-09-15 21:22:06 +0000187 /// OptimizeSMax - Rewrite the loop's terminating condition
188 /// if it uses an smax computation.
189 ICmpInst *OptimizeSMax(Loop *L, ICmpInst *Cond,
190 IVStrideUse* &CondUse);
191
Devang Patelc677de22008-08-13 20:31:11 +0000192 bool FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse,
Devang Patela0b39092008-08-26 17:57:54 +0000193 const SCEVHandle *&CondStride);
Evan Cheng5f8ebaa2007-10-25 22:45:20 +0000194 bool RequiresTypeConversion(const Type *Ty, const Type *NewTy);
Evan Cheng2bd122c2007-10-26 01:56:11 +0000195 unsigned CheckForIVReuse(bool, bool, const SCEVHandle&,
Dan Gohman02e4fa72007-10-22 20:40:42 +0000196 IVExpr&, const Type*,
Dale Johannesendc42f482007-03-20 00:47:50 +0000197 const std::vector<BasedUser>& UsersToProcess);
Dan Gohman02e4fa72007-10-22 20:40:42 +0000198 bool ValidStride(bool, int64_t,
199 const std::vector<BasedUser>& UsersToProcess);
Evan Cheng5f8ebaa2007-10-25 22:45:20 +0000200 SCEVHandle CollectIVUsers(const SCEVHandle &Stride,
201 IVUsersOfOneStride &Uses,
202 Loop *L,
203 bool &AllUsesAreAddresses,
204 std::vector<BasedUser> &UsersToProcess);
Chris Lattner50fad702005-08-10 00:45:21 +0000205 void StrengthReduceStridedIVUsers(const SCEVHandle &Stride,
206 IVUsersOfOneStride &Uses,
Chris Lattnerec3fb632005-08-03 22:21:05 +0000207 Loop *L, bool isOnlyStride);
Evan Cheng72b7b092008-06-16 21:08:17 +0000208 void DeleteTriviallyDeadInstructions(SetVector<Instruction*> &Insts);
Nate Begemaneaa13852004-10-18 21:08:22 +0000209 };
Nate Begemaneaa13852004-10-18 21:08:22 +0000210}
211
Dan Gohman844731a2008-05-13 00:00:25 +0000212char LoopStrengthReduce::ID = 0;
213static RegisterPass<LoopStrengthReduce>
214X("loop-reduce", "Loop Strength Reduction");
215
Daniel Dunbar394f0442008-10-22 23:32:42 +0000216Pass *llvm::createLoopStrengthReducePass(const TargetLowering *TLI) {
Evan Chengd1d6b5c2006-03-16 21:53:05 +0000217 return new LoopStrengthReduce(TLI);
Nate Begemaneaa13852004-10-18 21:08:22 +0000218}
219
Reid Spencer4da49122006-12-12 05:05:00 +0000220/// getCastedVersionOf - Return the specified value casted to uintptr_t. This
221/// assumes that the Value* V is of integer or pointer type only.
Chris Lattner49f72e62005-08-04 01:19:13 +0000222///
Reid Spencer3ba68b92006-12-13 08:06:42 +0000223Value *LoopStrengthReduce::getCastedVersionOf(Instruction::CastOps opcode,
224 Value *V) {
Chris Lattner49f72e62005-08-04 01:19:13 +0000225 if (V->getType() == UIntPtrTy) return V;
226 if (Constant *CB = dyn_cast<Constant>(V))
Reid Spencer3ba68b92006-12-13 08:06:42 +0000227 return ConstantExpr::getCast(opcode, CB, UIntPtrTy);
Chris Lattner49f72e62005-08-04 01:19:13 +0000228
229 Value *&New = CastedPointers[V];
230 if (New) return New;
231
Reid Spencer3ba68b92006-12-13 08:06:42 +0000232 New = SCEVExpander::InsertCastOfTo(opcode, V, UIntPtrTy);
Chris Lattner7db543f2005-08-04 19:08:16 +0000233 DeadInsts.insert(cast<Instruction>(New));
234 return New;
Chris Lattner49f72e62005-08-04 01:19:13 +0000235}
236
237
Nate Begemaneaa13852004-10-18 21:08:22 +0000238/// DeleteTriviallyDeadInstructions - If any of the instructions is the
239/// specified set are trivially dead, delete them and see if this makes any of
240/// their operands subsequently dead.
241void LoopStrengthReduce::
Evan Cheng72b7b092008-06-16 21:08:17 +0000242DeleteTriviallyDeadInstructions(SetVector<Instruction*> &Insts) {
Nate Begemaneaa13852004-10-18 21:08:22 +0000243 while (!Insts.empty()) {
Evan Cheng72b7b092008-06-16 21:08:17 +0000244 Instruction *I = Insts.back();
245 Insts.pop_back();
Evan Cheng0e0014d2007-10-30 23:45:15 +0000246
Chris Lattnerbfcee362008-12-01 06:11:32 +0000247 if (!isInstructionTriviallyDead(I))
248 continue;
249
250 SE->deleteValueFromRecords(I);
251
252 for (User::op_iterator i = I->op_begin(), e = I->op_end(); i != e; ++i) {
253 if (Instruction *U = dyn_cast<Instruction>(*i)) {
254 *i = 0;
255 if (U->use_empty())
Bill Wendling411052b2008-11-29 03:43:04 +0000256 Insts.insert(U);
Bill Wendling411052b2008-11-29 03:43:04 +0000257 }
258 }
Chris Lattnerbfcee362008-12-01 06:11:32 +0000259
260 I->eraseFromParent();
261 Changed = true;
Nate Begemaneaa13852004-10-18 21:08:22 +0000262 }
263}
264
Jeff Cohenf465db62005-02-27 19:37:07 +0000265
Chris Lattner3416e5f2005-08-04 17:40:30 +0000266/// GetExpressionSCEV - Compute and return the SCEV for the specified
267/// instruction.
Dan Gohman8480bc52007-10-29 19:31:25 +0000268SCEVHandle LoopStrengthReduce::GetExpressionSCEV(Instruction *Exp) {
Dale Johannesenda91f492007-03-26 03:01:27 +0000269 // Pointer to pointer bitcast instructions return the same value as their
270 // operand.
271 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Exp)) {
272 if (SE->hasSCEV(BCI) || !isa<Instruction>(BCI->getOperand(0)))
273 return SE->getSCEV(BCI);
Dan Gohman8480bc52007-10-29 19:31:25 +0000274 SCEVHandle R = GetExpressionSCEV(cast<Instruction>(BCI->getOperand(0)));
Dale Johannesenda91f492007-03-26 03:01:27 +0000275 SE->setSCEV(BCI, R);
276 return R;
277 }
278
Chris Lattner87265ab2005-08-09 23:39:36 +0000279 // Scalar Evolutions doesn't know how to compute SCEV's for GEP instructions.
280 // If this is a GEP that SE doesn't know about, compute it now and insert it.
281 // If this is not a GEP, or if we have already done this computation, just let
282 // SE figure it out.
Chris Lattner3416e5f2005-08-04 17:40:30 +0000283 GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Exp);
Chris Lattner87265ab2005-08-09 23:39:36 +0000284 if (!GEP || SE->hasSCEV(GEP))
Chris Lattner3416e5f2005-08-04 17:40:30 +0000285 return SE->getSCEV(Exp);
286
Nate Begeman16997482005-07-30 00:15:07 +0000287 // Analyze all of the subscripts of this getelementptr instruction, looking
Dan Gohman8480bc52007-10-29 19:31:25 +0000288 // for uses that are determined by the trip count of the loop. First, skip
289 // all operands the are not dependent on the IV.
Nate Begeman16997482005-07-30 00:15:07 +0000290
291 // Build up the base expression. Insert an LLVM cast of the pointer to
292 // uintptr_t first.
Dan Gohman246b2562007-10-22 18:31:58 +0000293 SCEVHandle GEPVal = SE->getUnknown(
Reid Spencer3ba68b92006-12-13 08:06:42 +0000294 getCastedVersionOf(Instruction::PtrToInt, GEP->getOperand(0)));
Nate Begeman16997482005-07-30 00:15:07 +0000295
296 gep_type_iterator GTI = gep_type_begin(GEP);
Chris Lattner3416e5f2005-08-04 17:40:30 +0000297
Gabor Greif6725cb52008-06-11 21:38:51 +0000298 for (User::op_iterator i = GEP->op_begin() + 1, e = GEP->op_end();
299 i != e; ++i, ++GTI) {
Nate Begeman16997482005-07-30 00:15:07 +0000300 // If this is a use of a recurrence that we can analyze, and it comes before
301 // Op does in the GEP operand list, we will handle this when we process this
302 // operand.
303 if (const StructType *STy = dyn_cast<StructType>(*GTI)) {
304 const StructLayout *SL = TD->getStructLayout(STy);
Gabor Greif6725cb52008-06-11 21:38:51 +0000305 unsigned Idx = cast<ConstantInt>(*i)->getZExtValue();
Chris Lattnerb1919e22007-02-10 19:55:17 +0000306 uint64_t Offset = SL->getElementOffset(Idx);
Dan Gohman246b2562007-10-22 18:31:58 +0000307 GEPVal = SE->getAddExpr(GEPVal,
308 SE->getIntegerSCEV(Offset, UIntPtrTy));
Nate Begeman16997482005-07-30 00:15:07 +0000309 } else {
Reid Spencer3ba68b92006-12-13 08:06:42 +0000310 unsigned GEPOpiBits =
Gabor Greif6725cb52008-06-11 21:38:51 +0000311 (*i)->getType()->getPrimitiveSizeInBits();
Reid Spencer3ba68b92006-12-13 08:06:42 +0000312 unsigned IntPtrBits = UIntPtrTy->getPrimitiveSizeInBits();
313 Instruction::CastOps opcode = (GEPOpiBits < IntPtrBits ?
314 Instruction::SExt : (GEPOpiBits > IntPtrBits ? Instruction::Trunc :
315 Instruction::BitCast));
Gabor Greif6725cb52008-06-11 21:38:51 +0000316 Value *OpVal = getCastedVersionOf(opcode, *i);
Chris Lattner7db543f2005-08-04 19:08:16 +0000317 SCEVHandle Idx = SE->getSCEV(OpVal);
318
Dale Johannesena7ac2bd2007-10-01 23:08:35 +0000319 uint64_t TypeSize = TD->getABITypeSize(GTI.getIndexedType());
Chris Lattner3416e5f2005-08-04 17:40:30 +0000320 if (TypeSize != 1)
Dan Gohman246b2562007-10-22 18:31:58 +0000321 Idx = SE->getMulExpr(Idx,
322 SE->getConstant(ConstantInt::get(UIntPtrTy,
323 TypeSize)));
324 GEPVal = SE->getAddExpr(GEPVal, Idx);
Nate Begeman16997482005-07-30 00:15:07 +0000325 }
326 }
327
Chris Lattner87265ab2005-08-09 23:39:36 +0000328 SE->setSCEV(GEP, GEPVal);
Chris Lattner3416e5f2005-08-04 17:40:30 +0000329 return GEPVal;
Nate Begeman16997482005-07-30 00:15:07 +0000330}
331
Chris Lattner7db543f2005-08-04 19:08:16 +0000332/// getSCEVStartAndStride - Compute the start and stride of this expression,
333/// returning false if the expression is not a start/stride pair, or true if it
334/// is. The stride must be a loop invariant expression, but the start may be
335/// a mix of loop invariant and loop variant expressions.
336static bool getSCEVStartAndStride(const SCEVHandle &SH, Loop *L,
Dan Gohman246b2562007-10-22 18:31:58 +0000337 SCEVHandle &Start, SCEVHandle &Stride,
338 ScalarEvolution *SE) {
Chris Lattner7db543f2005-08-04 19:08:16 +0000339 SCEVHandle TheAddRec = Start; // Initialize to zero.
340
341 // If the outer level is an AddExpr, the operands are all start values except
342 // for a nested AddRecExpr.
343 if (SCEVAddExpr *AE = dyn_cast<SCEVAddExpr>(SH)) {
344 for (unsigned i = 0, e = AE->getNumOperands(); i != e; ++i)
345 if (SCEVAddRecExpr *AddRec =
346 dyn_cast<SCEVAddRecExpr>(AE->getOperand(i))) {
347 if (AddRec->getLoop() == L)
Dan Gohman246b2562007-10-22 18:31:58 +0000348 TheAddRec = SE->getAddExpr(AddRec, TheAddRec);
Chris Lattner7db543f2005-08-04 19:08:16 +0000349 else
350 return false; // Nested IV of some sort?
351 } else {
Dan Gohman246b2562007-10-22 18:31:58 +0000352 Start = SE->getAddExpr(Start, AE->getOperand(i));
Chris Lattner7db543f2005-08-04 19:08:16 +0000353 }
354
Reid Spencer3ed469c2006-11-02 20:25:50 +0000355 } else if (isa<SCEVAddRecExpr>(SH)) {
Chris Lattner7db543f2005-08-04 19:08:16 +0000356 TheAddRec = SH;
357 } else {
358 return false; // not analyzable.
359 }
360
361 SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(TheAddRec);
362 if (!AddRec || AddRec->getLoop() != L) return false;
363
364 // FIXME: Generalize to non-affine IV's.
365 if (!AddRec->isAffine()) return false;
366
Dan Gohman246b2562007-10-22 18:31:58 +0000367 Start = SE->getAddExpr(Start, AddRec->getOperand(0));
Chris Lattner7db543f2005-08-04 19:08:16 +0000368
Chris Lattner7db543f2005-08-04 19:08:16 +0000369 if (!isa<SCEVConstant>(AddRec->getOperand(1)))
Bill Wendlingb7427032006-11-26 09:46:52 +0000370 DOUT << "[" << L->getHeader()->getName()
371 << "] Variable stride: " << *AddRec << "\n";
Chris Lattner7db543f2005-08-04 19:08:16 +0000372
Chris Lattner50fad702005-08-10 00:45:21 +0000373 Stride = AddRec->getOperand(1);
Chris Lattner7db543f2005-08-04 19:08:16 +0000374 return true;
375}
376
Chris Lattner0ae33eb2005-10-03 01:04:44 +0000377/// IVUseShouldUsePostIncValue - We have discovered a "User" of an IV expression
378/// and now we need to decide whether the user should use the preinc or post-inc
379/// value. If this user should use the post-inc version of the IV, return true.
380///
381/// Choosing wrong here can break dominance properties (if we choose to use the
382/// post-inc value when we cannot) or it can end up adding extra live-ranges to
383/// the loop, resulting in reg-reg copies (if we use the pre-inc value when we
384/// should use the post-inc value).
385static bool IVUseShouldUsePostIncValue(Instruction *User, Instruction *IV,
Evan Cheng0e0014d2007-10-30 23:45:15 +0000386 Loop *L, DominatorTree *DT, Pass *P,
Evan Cheng72b7b092008-06-16 21:08:17 +0000387 SetVector<Instruction*> &DeadInsts){
Chris Lattner0ae33eb2005-10-03 01:04:44 +0000388 // If the user is in the loop, use the preinc value.
389 if (L->contains(User->getParent())) return false;
390
Chris Lattner5e8ca662005-10-03 02:50:05 +0000391 BasicBlock *LatchBlock = L->getLoopLatch();
392
393 // Ok, the user is outside of the loop. If it is dominated by the latch
394 // block, use the post-inc value.
Devang Patelb7d9dfc2007-06-07 21:42:15 +0000395 if (DT->dominates(LatchBlock, User->getParent()))
Chris Lattner5e8ca662005-10-03 02:50:05 +0000396 return true;
397
398 // There is one case we have to be careful of: PHI nodes. These little guys
399 // can live in blocks that do not dominate the latch block, but (since their
400 // uses occur in the predecessor block, not the block the PHI lives in) should
401 // still use the post-inc value. Check for this case now.
402 PHINode *PN = dyn_cast<PHINode>(User);
403 if (!PN) return false; // not a phi, not dominated by latch block.
404
405 // Look at all of the uses of IV by the PHI node. If any use corresponds to
406 // a block that is not dominated by the latch block, give up and use the
407 // preincremented value.
408 unsigned NumUses = 0;
409 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
410 if (PN->getIncomingValue(i) == IV) {
411 ++NumUses;
Devang Patelb7d9dfc2007-06-07 21:42:15 +0000412 if (!DT->dominates(LatchBlock, PN->getIncomingBlock(i)))
Chris Lattner5e8ca662005-10-03 02:50:05 +0000413 return false;
414 }
415
416 // Okay, all uses of IV by PN are in predecessor blocks that really are
417 // dominated by the latch block. Split the critical edges and use the
418 // post-incremented value.
419 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
420 if (PN->getIncomingValue(i) == IV) {
Evan Cheng83927722007-10-30 22:27:26 +0000421 SplitCriticalEdge(PN->getIncomingBlock(i), PN->getParent(), P, false);
Chris Lattner1b9c8e72006-10-28 00:59:20 +0000422 // Splitting the critical edge can reduce the number of entries in this
423 // PHI.
424 e = PN->getNumIncomingValues();
Chris Lattner5e8ca662005-10-03 02:50:05 +0000425 if (--NumUses == 0) break;
426 }
Evan Cheng0e0014d2007-10-30 23:45:15 +0000427
428 // PHI node might have become a constant value after SplitCriticalEdge.
429 DeadInsts.insert(User);
Chris Lattner5e8ca662005-10-03 02:50:05 +0000430
431 return true;
Chris Lattner0ae33eb2005-10-03 01:04:44 +0000432}
433
434
435
Nate Begeman16997482005-07-30 00:15:07 +0000436/// AddUsersIfInteresting - Inspect the specified instruction. If it is a
437/// reducible SCEV, recursively add its users to the IVUsesByStride set and
438/// return true. Otherwise, return false.
Chris Lattner3416e5f2005-08-04 17:40:30 +0000439bool LoopStrengthReduce::AddUsersIfInteresting(Instruction *I, Loop *L,
Evan Cheng168a66b2007-10-26 23:08:19 +0000440 SmallPtrSet<Instruction*,16> &Processed) {
Chris Lattner42a75512007-01-15 02:27:26 +0000441 if (!I->getType()->isInteger() && !isa<PointerType>(I->getType()))
Dan Gohman4a9a3e52008-04-14 18:26:16 +0000442 return false; // Void and FP expressions cannot be reduced.
Evan Cheng168a66b2007-10-26 23:08:19 +0000443 if (!Processed.insert(I))
Chris Lattner3416e5f2005-08-04 17:40:30 +0000444 return true; // Instruction already handled.
445
Chris Lattner7db543f2005-08-04 19:08:16 +0000446 // Get the symbolic expression for this instruction.
Dan Gohman8480bc52007-10-29 19:31:25 +0000447 SCEVHandle ISE = GetExpressionSCEV(I);
Chris Lattner7db543f2005-08-04 19:08:16 +0000448 if (isa<SCEVCouldNotCompute>(ISE)) return false;
Chris Lattner3416e5f2005-08-04 17:40:30 +0000449
Chris Lattner7db543f2005-08-04 19:08:16 +0000450 // Get the start and stride for this expression.
Dan Gohman246b2562007-10-22 18:31:58 +0000451 SCEVHandle Start = SE->getIntegerSCEV(0, ISE->getType());
Chris Lattner50fad702005-08-10 00:45:21 +0000452 SCEVHandle Stride = Start;
Dan Gohman246b2562007-10-22 18:31:58 +0000453 if (!getSCEVStartAndStride(ISE, L, Start, Stride, SE))
Chris Lattner7db543f2005-08-04 19:08:16 +0000454 return false; // Non-reducible symbolic expression, bail out.
Devang Patel4fe26582007-03-09 21:19:53 +0000455
Devang Patel2a5fa182007-04-23 22:42:03 +0000456 std::vector<Instruction *> IUsers;
457 // Collect all I uses now because IVUseShouldUsePostIncValue may
458 // invalidate use_iterator.
459 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
460 IUsers.push_back(cast<Instruction>(*UI));
Nate Begeman16997482005-07-30 00:15:07 +0000461
Devang Patel2a5fa182007-04-23 22:42:03 +0000462 for (unsigned iused_index = 0, iused_size = IUsers.size();
463 iused_index != iused_size; ++iused_index) {
464
465 Instruction *User = IUsers[iused_index];
Devang Patel4fe26582007-03-09 21:19:53 +0000466
Nate Begeman16997482005-07-30 00:15:07 +0000467 // Do not infinitely recurse on PHI nodes.
Chris Lattner396b2ba2005-09-13 02:09:55 +0000468 if (isa<PHINode>(User) && Processed.count(User))
Nate Begeman16997482005-07-30 00:15:07 +0000469 continue;
470
471 // If this is an instruction defined in a nested loop, or outside this loop,
Chris Lattnerf9186592005-08-04 00:14:11 +0000472 // don't recurse into it.
Chris Lattner7db543f2005-08-04 19:08:16 +0000473 bool AddUserToIVUsers = false;
Chris Lattnerf9186592005-08-04 00:14:11 +0000474 if (LI->getLoopFor(User->getParent()) != L) {
Bill Wendlingb7427032006-11-26 09:46:52 +0000475 DOUT << "FOUND USER in other loop: " << *User
476 << " OF SCEV: " << *ISE << "\n";
Chris Lattner7db543f2005-08-04 19:08:16 +0000477 AddUserToIVUsers = true;
Chris Lattner3416e5f2005-08-04 17:40:30 +0000478 } else if (!AddUsersIfInteresting(User, L, Processed)) {
Bill Wendlingb7427032006-11-26 09:46:52 +0000479 DOUT << "FOUND USER: " << *User
480 << " OF SCEV: " << *ISE << "\n";
Chris Lattner7db543f2005-08-04 19:08:16 +0000481 AddUserToIVUsers = true;
482 }
Nate Begeman16997482005-07-30 00:15:07 +0000483
Chris Lattner7db543f2005-08-04 19:08:16 +0000484 if (AddUserToIVUsers) {
Chris Lattner7305ae22005-10-09 06:20:55 +0000485 IVUsersOfOneStride &StrideUses = IVUsesByStride[Stride];
486 if (StrideUses.Users.empty()) // First occurance of this stride?
487 StrideOrder.push_back(Stride);
488
Chris Lattnera4479ad2005-08-04 00:40:47 +0000489 // Okay, we found a user that we cannot reduce. Analyze the instruction
Chris Lattnerc6bae652005-09-12 06:04:47 +0000490 // and decide what to do with it. If we are a use inside of the loop, use
491 // the value before incrementation, otherwise use it after incrementation.
Evan Cheng0e0014d2007-10-30 23:45:15 +0000492 if (IVUseShouldUsePostIncValue(User, I, L, DT, this, DeadInsts)) {
Chris Lattnerc6bae652005-09-12 06:04:47 +0000493 // The value used will be incremented by the stride more than we are
494 // expecting, so subtract this off.
Dan Gohman246b2562007-10-22 18:31:58 +0000495 SCEVHandle NewStart = SE->getMinusSCEV(Start, Stride);
Chris Lattner7305ae22005-10-09 06:20:55 +0000496 StrideUses.addUser(NewStart, User, I);
497 StrideUses.Users.back().isUseOfPostIncrementedValue = true;
Bill Wendlingb7427032006-11-26 09:46:52 +0000498 DOUT << " USING POSTINC SCEV, START=" << *NewStart<< "\n";
Chris Lattner0ae33eb2005-10-03 01:04:44 +0000499 } else {
Chris Lattner7305ae22005-10-09 06:20:55 +0000500 StrideUses.addUser(Start, User, I);
Chris Lattnerc6bae652005-09-12 06:04:47 +0000501 }
Nate Begeman16997482005-07-30 00:15:07 +0000502 }
503 }
504 return true;
505}
506
507namespace {
508 /// BasedUser - For a particular base value, keep information about how we've
509 /// partitioned the expression so far.
510 struct BasedUser {
Dan Gohman246b2562007-10-22 18:31:58 +0000511 /// SE - The current ScalarEvolution object.
512 ScalarEvolution *SE;
513
Chris Lattnera553b0c2005-08-08 22:56:21 +0000514 /// Base - The Base value for the PHI node that needs to be inserted for
515 /// this use. As the use is processed, information gets moved from this
516 /// field to the Imm field (below). BasedUser values are sorted by this
517 /// field.
518 SCEVHandle Base;
519
Nate Begeman16997482005-07-30 00:15:07 +0000520 /// Inst - The instruction using the induction variable.
521 Instruction *Inst;
522
Chris Lattnerec3fb632005-08-03 22:21:05 +0000523 /// OperandValToReplace - The operand value of Inst to replace with the
524 /// EmittedBase.
525 Value *OperandValToReplace;
Nate Begeman16997482005-07-30 00:15:07 +0000526
527 /// Imm - The immediate value that should be added to the base immediately
528 /// before Inst, because it will be folded into the imm field of the
529 /// instruction.
530 SCEVHandle Imm;
531
532 /// EmittedBase - The actual value* to use for the base value of this
533 /// operation. This is null if we should just use zero so far.
534 Value *EmittedBase;
535
Chris Lattner010de252005-08-08 05:28:22 +0000536 // isUseOfPostIncrementedValue - True if this should use the
537 // post-incremented version of this IV, not the preincremented version.
538 // This can only be set in special cases, such as the terminating setcc
Chris Lattnerc6bae652005-09-12 06:04:47 +0000539 // instruction for a loop and uses outside the loop that are dominated by
540 // the loop.
Chris Lattner010de252005-08-08 05:28:22 +0000541 bool isUseOfPostIncrementedValue;
Chris Lattnera553b0c2005-08-08 22:56:21 +0000542
Dan Gohman246b2562007-10-22 18:31:58 +0000543 BasedUser(IVStrideUse &IVSU, ScalarEvolution *se)
544 : SE(se), Base(IVSU.Offset), Inst(IVSU.User),
Chris Lattnera553b0c2005-08-08 22:56:21 +0000545 OperandValToReplace(IVSU.OperandValToReplace),
Dan Gohman246b2562007-10-22 18:31:58 +0000546 Imm(SE->getIntegerSCEV(0, Base->getType())), EmittedBase(0),
Chris Lattnera553b0c2005-08-08 22:56:21 +0000547 isUseOfPostIncrementedValue(IVSU.isUseOfPostIncrementedValue) {}
Nate Begeman16997482005-07-30 00:15:07 +0000548
Chris Lattner2114b272005-08-04 20:03:32 +0000549 // Once we rewrite the code to insert the new IVs we want, update the
550 // operands of Inst to use the new expression 'NewBase', with 'Imm' added
551 // to it.
Chris Lattner1bbae0c2005-08-09 00:18:09 +0000552 void RewriteInstructionToUseNewBase(const SCEVHandle &NewBase,
Dan Gohmanf20d70d2008-05-15 23:26:57 +0000553 Instruction *InsertPt,
Evan Cheng0e0014d2007-10-30 23:45:15 +0000554 SCEVExpander &Rewriter, Loop *L, Pass *P,
Evan Cheng72b7b092008-06-16 21:08:17 +0000555 SetVector<Instruction*> &DeadInsts);
Chris Lattner221fc3c2006-02-04 07:36:50 +0000556
557 Value *InsertCodeForBaseAtPosition(const SCEVHandle &NewBase,
558 SCEVExpander &Rewriter,
559 Instruction *IP, Loop *L);
Nate Begeman16997482005-07-30 00:15:07 +0000560 void dump() const;
561 };
562}
563
564void BasedUser::dump() const {
Bill Wendlinge8156192006-12-07 01:30:32 +0000565 cerr << " Base=" << *Base;
566 cerr << " Imm=" << *Imm;
Nate Begeman16997482005-07-30 00:15:07 +0000567 if (EmittedBase)
Bill Wendlinge8156192006-12-07 01:30:32 +0000568 cerr << " EB=" << *EmittedBase;
Nate Begeman16997482005-07-30 00:15:07 +0000569
Bill Wendlinge8156192006-12-07 01:30:32 +0000570 cerr << " Inst: " << *Inst;
Nate Begeman16997482005-07-30 00:15:07 +0000571}
572
Chris Lattner221fc3c2006-02-04 07:36:50 +0000573Value *BasedUser::InsertCodeForBaseAtPosition(const SCEVHandle &NewBase,
574 SCEVExpander &Rewriter,
575 Instruction *IP, Loop *L) {
576 // Figure out where we *really* want to insert this code. In particular, if
577 // the user is inside of a loop that is nested inside of L, we really don't
578 // want to insert this expression before the user, we'd rather pull it out as
579 // many loops as possible.
580 LoopInfo &LI = Rewriter.getLoopInfo();
581 Instruction *BaseInsertPt = IP;
582
583 // Figure out the most-nested loop that IP is in.
584 Loop *InsertLoop = LI.getLoopFor(IP->getParent());
585
586 // If InsertLoop is not L, and InsertLoop is nested inside of L, figure out
587 // the preheader of the outer-most loop where NewBase is not loop invariant.
588 while (InsertLoop && NewBase->isLoopInvariant(InsertLoop)) {
589 BaseInsertPt = InsertLoop->getLoopPreheader()->getTerminator();
590 InsertLoop = InsertLoop->getParentLoop();
591 }
592
593 // If there is no immediate value, skip the next part.
Dan Gohmancfeb6a42008-06-18 16:23:07 +0000594 if (Imm->isZero())
595 return Rewriter.expandCodeFor(NewBase, BaseInsertPt);
Chris Lattner221fc3c2006-02-04 07:36:50 +0000596
597 Value *Base = Rewriter.expandCodeFor(NewBase, BaseInsertPt);
Chris Lattnerb47f6122007-06-06 01:23:55 +0000598
599 // If we are inserting the base and imm values in the same block, make sure to
600 // adjust the IP position if insertion reused a result.
601 if (IP == BaseInsertPt)
602 IP = Rewriter.getInsertionPoint();
Chris Lattner221fc3c2006-02-04 07:36:50 +0000603
604 // Always emit the immediate (if non-zero) into the same block as the user.
Dan Gohman246b2562007-10-22 18:31:58 +0000605 SCEVHandle NewValSCEV = SE->getAddExpr(SE->getUnknown(Base), Imm);
Dan Gohmand19534a2007-06-15 14:38:12 +0000606 return Rewriter.expandCodeFor(NewValSCEV, IP);
Chris Lattnerb47f6122007-06-06 01:23:55 +0000607
Chris Lattner221fc3c2006-02-04 07:36:50 +0000608}
609
610
Chris Lattner2114b272005-08-04 20:03:32 +0000611// Once we rewrite the code to insert the new IVs we want, update the
612// operands of Inst to use the new expression 'NewBase', with 'Imm' added
Dan Gohmanf20d70d2008-05-15 23:26:57 +0000613// to it. NewBasePt is the last instruction which contributes to the
614// value of NewBase in the case that it's a diffferent instruction from
615// the PHI that NewBase is computed from, or null otherwise.
616//
Chris Lattner1bbae0c2005-08-09 00:18:09 +0000617void BasedUser::RewriteInstructionToUseNewBase(const SCEVHandle &NewBase,
Dan Gohmanf20d70d2008-05-15 23:26:57 +0000618 Instruction *NewBasePt,
Evan Cheng0e0014d2007-10-30 23:45:15 +0000619 SCEVExpander &Rewriter, Loop *L, Pass *P,
Evan Cheng72b7b092008-06-16 21:08:17 +0000620 SetVector<Instruction*> &DeadInsts) {
Chris Lattner2114b272005-08-04 20:03:32 +0000621 if (!isa<PHINode>(Inst)) {
Chris Lattnerc5494af2007-04-13 20:42:26 +0000622 // By default, insert code at the user instruction.
623 BasicBlock::iterator InsertPt = Inst;
624
625 // However, if the Operand is itself an instruction, the (potentially
626 // complex) inserted code may be shared by many users. Because of this, we
627 // want to emit code for the computation of the operand right before its old
628 // computation. This is usually safe, because we obviously used to use the
629 // computation when it was computed in its current block. However, in some
630 // cases (e.g. use of a post-incremented induction variable) the NewBase
631 // value will be pinned to live somewhere after the original computation.
632 // In this case, we have to back off.
633 if (!isUseOfPostIncrementedValue) {
Dan Gohmanca756ae2008-05-20 03:01:48 +0000634 if (NewBasePt && isa<PHINode>(OperandValToReplace)) {
Dan Gohmanf20d70d2008-05-15 23:26:57 +0000635 InsertPt = NewBasePt;
636 ++InsertPt;
Gabor Greif6725cb52008-06-11 21:38:51 +0000637 } else if (Instruction *OpInst
638 = dyn_cast<Instruction>(OperandValToReplace)) {
Chris Lattnerc5494af2007-04-13 20:42:26 +0000639 InsertPt = OpInst;
640 while (isa<PHINode>(InsertPt)) ++InsertPt;
641 }
642 }
Chris Lattnerc5494af2007-04-13 20:42:26 +0000643 Value *NewVal = InsertCodeForBaseAtPosition(NewBase, Rewriter, InsertPt, L);
Dan Gohmana9cfed72007-07-31 17:22:27 +0000644 // Adjust the type back to match the Inst. Note that we can't use InsertPt
645 // here because the SCEVExpander may have inserted the instructions after
646 // that point, in its efforts to avoid inserting redundant expressions.
Dan Gohmand19534a2007-06-15 14:38:12 +0000647 if (isa<PointerType>(OperandValToReplace->getType())) {
Dan Gohmana9cfed72007-07-31 17:22:27 +0000648 NewVal = SCEVExpander::InsertCastOfTo(Instruction::IntToPtr,
649 NewVal,
650 OperandValToReplace->getType());
Dan Gohmand19534a2007-06-15 14:38:12 +0000651 }
Chris Lattner2114b272005-08-04 20:03:32 +0000652 // Replace the use of the operand Value with the new Phi we just created.
653 Inst->replaceUsesOfWith(OperandValToReplace, NewVal);
Chris Lattner7d8ed8a2007-05-11 22:40:34 +0000654 DOUT << " CHANGED: IMM =" << *Imm;
655 DOUT << " \tNEWBASE =" << *NewBase;
656 DOUT << " \tInst = " << *Inst;
Chris Lattner2114b272005-08-04 20:03:32 +0000657 return;
658 }
659
660 // PHI nodes are more complex. We have to insert one copy of the NewBase+Imm
Chris Lattnerc41e3452005-08-10 00:35:32 +0000661 // expression into each operand block that uses it. Note that PHI nodes can
662 // have multiple entries for the same predecessor. We use a map to make sure
663 // that a PHI node only has a single Value* for each predecessor (which also
664 // prevents us from inserting duplicate code in some blocks).
Evan Cheng83927722007-10-30 22:27:26 +0000665 DenseMap<BasicBlock*, Value*> InsertedCode;
Chris Lattner2114b272005-08-04 20:03:32 +0000666 PHINode *PN = cast<PHINode>(Inst);
667 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
668 if (PN->getIncomingValue(i) == OperandValToReplace) {
Chris Lattnere0391be2005-08-12 22:06:11 +0000669 // If this is a critical edge, split the edge so that we do not insert the
Chris Lattner396b2ba2005-09-13 02:09:55 +0000670 // code on all predecessor/successor paths. We do this unless this is the
671 // canonical backedge for this loop, as this can make some inserted code
672 // be in an illegal position.
Chris Lattner37edbf02005-10-03 00:31:52 +0000673 BasicBlock *PHIPred = PN->getIncomingBlock(i);
674 if (e != 1 && PHIPred->getTerminator()->getNumSuccessors() > 1 &&
675 (PN->getParent() != L->getHeader() || !L->contains(PHIPred))) {
Chris Lattner37edbf02005-10-03 00:31:52 +0000676
Chris Lattneraa96ae72005-08-17 06:35:16 +0000677 // First step, split the critical edge.
Evan Cheng83927722007-10-30 22:27:26 +0000678 SplitCriticalEdge(PHIPred, PN->getParent(), P, false);
Chris Lattnerc60fb082005-08-12 22:22:17 +0000679
Chris Lattneraa96ae72005-08-17 06:35:16 +0000680 // Next step: move the basic block. In particular, if the PHI node
681 // is outside of the loop, and PredTI is in the loop, we want to
682 // move the block to be immediately before the PHI block, not
683 // immediately after PredTI.
Chris Lattner37edbf02005-10-03 00:31:52 +0000684 if (L->contains(PHIPred) && !L->contains(PN->getParent())) {
Chris Lattneraa96ae72005-08-17 06:35:16 +0000685 BasicBlock *NewBB = PN->getIncomingBlock(i);
686 NewBB->moveBefore(PN->getParent());
Chris Lattnere0391be2005-08-12 22:06:11 +0000687 }
Chris Lattner1b9c8e72006-10-28 00:59:20 +0000688
689 // Splitting the edge can reduce the number of PHI entries we have.
690 e = PN->getNumIncomingValues();
Chris Lattnere0391be2005-08-12 22:06:11 +0000691 }
Chris Lattner2114b272005-08-04 20:03:32 +0000692
Chris Lattnerc41e3452005-08-10 00:35:32 +0000693 Value *&Code = InsertedCode[PN->getIncomingBlock(i)];
694 if (!Code) {
695 // Insert the code into the end of the predecessor block.
Chris Lattner221fc3c2006-02-04 07:36:50 +0000696 Instruction *InsertPt = PN->getIncomingBlock(i)->getTerminator();
697 Code = InsertCodeForBaseAtPosition(NewBase, Rewriter, InsertPt, L);
Dan Gohmand19534a2007-06-15 14:38:12 +0000698
Chris Lattner684b22d2007-08-02 16:53:43 +0000699 // Adjust the type back to match the PHI. Note that we can't use
700 // InsertPt here because the SCEVExpander may have inserted its
701 // instructions after that point, in its efforts to avoid inserting
702 // redundant expressions.
Dan Gohmand19534a2007-06-15 14:38:12 +0000703 if (isa<PointerType>(PN->getType())) {
Dan Gohmana9cfed72007-07-31 17:22:27 +0000704 Code = SCEVExpander::InsertCastOfTo(Instruction::IntToPtr,
705 Code,
706 PN->getType());
Dan Gohmand19534a2007-06-15 14:38:12 +0000707 }
Chris Lattnerc41e3452005-08-10 00:35:32 +0000708 }
Chris Lattner2114b272005-08-04 20:03:32 +0000709
710 // Replace the use of the operand Value with the new Phi we just created.
Chris Lattnerc41e3452005-08-10 00:35:32 +0000711 PN->setIncomingValue(i, Code);
Chris Lattner2114b272005-08-04 20:03:32 +0000712 Rewriter.clear();
713 }
714 }
Evan Cheng0e0014d2007-10-30 23:45:15 +0000715
716 // PHI node might have become a constant value after SplitCriticalEdge.
717 DeadInsts.insert(Inst);
718
Bill Wendlingb7427032006-11-26 09:46:52 +0000719 DOUT << " CHANGED: IMM =" << *Imm << " Inst = " << *Inst;
Chris Lattner2114b272005-08-04 20:03:32 +0000720}
721
722
Nate Begeman16997482005-07-30 00:15:07 +0000723/// isTargetConstant - Return true if the following can be referenced by the
724/// immediate field of a target instruction.
Evan Cheng1d958162007-03-13 20:34:37 +0000725static bool isTargetConstant(const SCEVHandle &V, const Type *UseTy,
726 const TargetLowering *TLI) {
Chris Lattner3821e472005-08-08 06:25:50 +0000727 if (SCEVConstant *SC = dyn_cast<SCEVConstant>(V)) {
Evan Cheng5eef2d22007-03-12 23:27:37 +0000728 int64_t VC = SC->getValue()->getSExtValue();
Chris Lattner579633c2007-04-09 22:20:14 +0000729 if (TLI) {
730 TargetLowering::AddrMode AM;
731 AM.BaseOffs = VC;
732 return TLI->isLegalAddressingMode(AM, UseTy);
733 } else {
Evan Chengd277f2c2006-03-13 23:14:23 +0000734 // Defaults to PPC. PPC allows a sign-extended 16-bit immediate field.
Evan Cheng5eef2d22007-03-12 23:27:37 +0000735 return (VC > -(1 << 16) && VC < (1 << 16)-1);
Chris Lattner579633c2007-04-09 22:20:14 +0000736 }
Chris Lattner3821e472005-08-08 06:25:50 +0000737 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +0000738
Nate Begeman16997482005-07-30 00:15:07 +0000739 if (SCEVUnknown *SU = dyn_cast<SCEVUnknown>(V))
740 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(SU->getValue()))
Chris Lattner579633c2007-04-09 22:20:14 +0000741 if (TLI && CE->getOpcode() == Instruction::PtrToInt) {
Evan Chengd277f2c2006-03-13 23:14:23 +0000742 Constant *Op0 = CE->getOperand(0);
Chris Lattner579633c2007-04-09 22:20:14 +0000743 if (GlobalValue *GV = dyn_cast<GlobalValue>(Op0)) {
744 TargetLowering::AddrMode AM;
745 AM.BaseGV = GV;
746 return TLI->isLegalAddressingMode(AM, UseTy);
747 }
Evan Chengd277f2c2006-03-13 23:14:23 +0000748 }
Nate Begeman16997482005-07-30 00:15:07 +0000749 return false;
750}
751
Chris Lattner44b807e2005-08-08 22:32:34 +0000752/// MoveLoopVariantsToImediateField - Move any subexpressions from Val that are
753/// loop varying to the Imm operand.
754static void MoveLoopVariantsToImediateField(SCEVHandle &Val, SCEVHandle &Imm,
Dan Gohman246b2562007-10-22 18:31:58 +0000755 Loop *L, ScalarEvolution *SE) {
Chris Lattner44b807e2005-08-08 22:32:34 +0000756 if (Val->isLoopInvariant(L)) return; // Nothing to do.
757
758 if (SCEVAddExpr *SAE = dyn_cast<SCEVAddExpr>(Val)) {
759 std::vector<SCEVHandle> NewOps;
760 NewOps.reserve(SAE->getNumOperands());
761
762 for (unsigned i = 0; i != SAE->getNumOperands(); ++i)
763 if (!SAE->getOperand(i)->isLoopInvariant(L)) {
764 // If this is a loop-variant expression, it must stay in the immediate
765 // field of the expression.
Dan Gohman246b2562007-10-22 18:31:58 +0000766 Imm = SE->getAddExpr(Imm, SAE->getOperand(i));
Chris Lattner44b807e2005-08-08 22:32:34 +0000767 } else {
768 NewOps.push_back(SAE->getOperand(i));
769 }
770
771 if (NewOps.empty())
Dan Gohman246b2562007-10-22 18:31:58 +0000772 Val = SE->getIntegerSCEV(0, Val->getType());
Chris Lattner44b807e2005-08-08 22:32:34 +0000773 else
Dan Gohman246b2562007-10-22 18:31:58 +0000774 Val = SE->getAddExpr(NewOps);
Chris Lattner44b807e2005-08-08 22:32:34 +0000775 } else if (SCEVAddRecExpr *SARE = dyn_cast<SCEVAddRecExpr>(Val)) {
776 // Try to pull immediates out of the start value of nested addrec's.
777 SCEVHandle Start = SARE->getStart();
Dan Gohman246b2562007-10-22 18:31:58 +0000778 MoveLoopVariantsToImediateField(Start, Imm, L, SE);
Chris Lattner44b807e2005-08-08 22:32:34 +0000779
780 std::vector<SCEVHandle> Ops(SARE->op_begin(), SARE->op_end());
781 Ops[0] = Start;
Dan Gohman246b2562007-10-22 18:31:58 +0000782 Val = SE->getAddRecExpr(Ops, SARE->getLoop());
Chris Lattner44b807e2005-08-08 22:32:34 +0000783 } else {
784 // Otherwise, all of Val is variant, move the whole thing over.
Dan Gohman246b2562007-10-22 18:31:58 +0000785 Imm = SE->getAddExpr(Imm, Val);
786 Val = SE->getIntegerSCEV(0, Val->getType());
Chris Lattner44b807e2005-08-08 22:32:34 +0000787 }
788}
789
790
Chris Lattner26d91f12005-08-04 22:34:05 +0000791/// MoveImmediateValues - Look at Val, and pull out any additions of constants
Nate Begeman16997482005-07-30 00:15:07 +0000792/// that can fit into the immediate field of instructions in the target.
Chris Lattner26d91f12005-08-04 22:34:05 +0000793/// Accumulate these immediate values into the Imm value.
Evan Chengd277f2c2006-03-13 23:14:23 +0000794static void MoveImmediateValues(const TargetLowering *TLI,
Evan Cheng1d958162007-03-13 20:34:37 +0000795 Instruction *User,
Evan Chengd277f2c2006-03-13 23:14:23 +0000796 SCEVHandle &Val, SCEVHandle &Imm,
Dan Gohman246b2562007-10-22 18:31:58 +0000797 bool isAddress, Loop *L,
798 ScalarEvolution *SE) {
Evan Cheng1d958162007-03-13 20:34:37 +0000799 const Type *UseTy = User->getType();
800 if (StoreInst *SI = dyn_cast<StoreInst>(User))
801 UseTy = SI->getOperand(0)->getType();
802
Chris Lattner7a658392005-08-03 23:44:42 +0000803 if (SCEVAddExpr *SAE = dyn_cast<SCEVAddExpr>(Val)) {
Chris Lattner26d91f12005-08-04 22:34:05 +0000804 std::vector<SCEVHandle> NewOps;
805 NewOps.reserve(SAE->getNumOperands());
806
Chris Lattner221fc3c2006-02-04 07:36:50 +0000807 for (unsigned i = 0; i != SAE->getNumOperands(); ++i) {
808 SCEVHandle NewOp = SAE->getOperand(i);
Dan Gohman246b2562007-10-22 18:31:58 +0000809 MoveImmediateValues(TLI, User, NewOp, Imm, isAddress, L, SE);
Chris Lattner221fc3c2006-02-04 07:36:50 +0000810
811 if (!NewOp->isLoopInvariant(L)) {
Chris Lattner7db543f2005-08-04 19:08:16 +0000812 // If this is a loop-variant expression, it must stay in the immediate
813 // field of the expression.
Dan Gohman246b2562007-10-22 18:31:58 +0000814 Imm = SE->getAddExpr(Imm, NewOp);
Chris Lattner26d91f12005-08-04 22:34:05 +0000815 } else {
Chris Lattner221fc3c2006-02-04 07:36:50 +0000816 NewOps.push_back(NewOp);
Nate Begeman16997482005-07-30 00:15:07 +0000817 }
Chris Lattner221fc3c2006-02-04 07:36:50 +0000818 }
Chris Lattner26d91f12005-08-04 22:34:05 +0000819
820 if (NewOps.empty())
Dan Gohman246b2562007-10-22 18:31:58 +0000821 Val = SE->getIntegerSCEV(0, Val->getType());
Chris Lattner26d91f12005-08-04 22:34:05 +0000822 else
Dan Gohman246b2562007-10-22 18:31:58 +0000823 Val = SE->getAddExpr(NewOps);
Chris Lattner26d91f12005-08-04 22:34:05 +0000824 return;
Chris Lattner7a658392005-08-03 23:44:42 +0000825 } else if (SCEVAddRecExpr *SARE = dyn_cast<SCEVAddRecExpr>(Val)) {
826 // Try to pull immediates out of the start value of nested addrec's.
Chris Lattner26d91f12005-08-04 22:34:05 +0000827 SCEVHandle Start = SARE->getStart();
Dan Gohman246b2562007-10-22 18:31:58 +0000828 MoveImmediateValues(TLI, User, Start, Imm, isAddress, L, SE);
Chris Lattner26d91f12005-08-04 22:34:05 +0000829
830 if (Start != SARE->getStart()) {
831 std::vector<SCEVHandle> Ops(SARE->op_begin(), SARE->op_end());
832 Ops[0] = Start;
Dan Gohman246b2562007-10-22 18:31:58 +0000833 Val = SE->getAddRecExpr(Ops, SARE->getLoop());
Chris Lattner26d91f12005-08-04 22:34:05 +0000834 }
835 return;
Chris Lattner221fc3c2006-02-04 07:36:50 +0000836 } else if (SCEVMulExpr *SME = dyn_cast<SCEVMulExpr>(Val)) {
837 // Transform "8 * (4 + v)" -> "32 + 8*V" if "32" fits in the immed field.
Evan Cheng1d958162007-03-13 20:34:37 +0000838 if (isAddress && isTargetConstant(SME->getOperand(0), UseTy, TLI) &&
Chris Lattner221fc3c2006-02-04 07:36:50 +0000839 SME->getNumOperands() == 2 && SME->isLoopInvariant(L)) {
840
Dan Gohman246b2562007-10-22 18:31:58 +0000841 SCEVHandle SubImm = SE->getIntegerSCEV(0, Val->getType());
Chris Lattner221fc3c2006-02-04 07:36:50 +0000842 SCEVHandle NewOp = SME->getOperand(1);
Dan Gohman246b2562007-10-22 18:31:58 +0000843 MoveImmediateValues(TLI, User, NewOp, SubImm, isAddress, L, SE);
Chris Lattner221fc3c2006-02-04 07:36:50 +0000844
845 // If we extracted something out of the subexpressions, see if we can
846 // simplify this!
847 if (NewOp != SME->getOperand(1)) {
848 // Scale SubImm up by "8". If the result is a target constant, we are
849 // good.
Dan Gohman246b2562007-10-22 18:31:58 +0000850 SubImm = SE->getMulExpr(SubImm, SME->getOperand(0));
Evan Cheng1d958162007-03-13 20:34:37 +0000851 if (isTargetConstant(SubImm, UseTy, TLI)) {
Chris Lattner221fc3c2006-02-04 07:36:50 +0000852 // Accumulate the immediate.
Dan Gohman246b2562007-10-22 18:31:58 +0000853 Imm = SE->getAddExpr(Imm, SubImm);
Chris Lattner221fc3c2006-02-04 07:36:50 +0000854
855 // Update what is left of 'Val'.
Dan Gohman246b2562007-10-22 18:31:58 +0000856 Val = SE->getMulExpr(SME->getOperand(0), NewOp);
Chris Lattner221fc3c2006-02-04 07:36:50 +0000857 return;
858 }
859 }
860 }
Nate Begeman16997482005-07-30 00:15:07 +0000861 }
862
Chris Lattner26d91f12005-08-04 22:34:05 +0000863 // Loop-variant expressions must stay in the immediate field of the
864 // expression.
Evan Cheng1d958162007-03-13 20:34:37 +0000865 if ((isAddress && isTargetConstant(Val, UseTy, TLI)) ||
Chris Lattner26d91f12005-08-04 22:34:05 +0000866 !Val->isLoopInvariant(L)) {
Dan Gohman246b2562007-10-22 18:31:58 +0000867 Imm = SE->getAddExpr(Imm, Val);
868 Val = SE->getIntegerSCEV(0, Val->getType());
Chris Lattner26d91f12005-08-04 22:34:05 +0000869 return;
Chris Lattner7a2ca562005-08-04 19:26:19 +0000870 }
Chris Lattner26d91f12005-08-04 22:34:05 +0000871
872 // Otherwise, no immediates to move.
Nate Begeman16997482005-07-30 00:15:07 +0000873}
874
Chris Lattner934520a2005-08-13 07:27:18 +0000875
Chris Lattner7e79b382006-08-03 06:34:50 +0000876/// SeparateSubExprs - Decompose Expr into all of the subexpressions that are
877/// added together. This is used to reassociate common addition subexprs
878/// together for maximal sharing when rewriting bases.
Chris Lattner934520a2005-08-13 07:27:18 +0000879static void SeparateSubExprs(std::vector<SCEVHandle> &SubExprs,
Dan Gohman246b2562007-10-22 18:31:58 +0000880 SCEVHandle Expr,
881 ScalarEvolution *SE) {
Chris Lattner934520a2005-08-13 07:27:18 +0000882 if (SCEVAddExpr *AE = dyn_cast<SCEVAddExpr>(Expr)) {
883 for (unsigned j = 0, e = AE->getNumOperands(); j != e; ++j)
Dan Gohman246b2562007-10-22 18:31:58 +0000884 SeparateSubExprs(SubExprs, AE->getOperand(j), SE);
Chris Lattner934520a2005-08-13 07:27:18 +0000885 } else if (SCEVAddRecExpr *SARE = dyn_cast<SCEVAddRecExpr>(Expr)) {
Dan Gohman246b2562007-10-22 18:31:58 +0000886 SCEVHandle Zero = SE->getIntegerSCEV(0, Expr->getType());
Chris Lattner934520a2005-08-13 07:27:18 +0000887 if (SARE->getOperand(0) == Zero) {
888 SubExprs.push_back(Expr);
889 } else {
890 // Compute the addrec with zero as its base.
891 std::vector<SCEVHandle> Ops(SARE->op_begin(), SARE->op_end());
892 Ops[0] = Zero; // Start with zero base.
Dan Gohman246b2562007-10-22 18:31:58 +0000893 SubExprs.push_back(SE->getAddRecExpr(Ops, SARE->getLoop()));
Chris Lattner934520a2005-08-13 07:27:18 +0000894
895
Dan Gohman246b2562007-10-22 18:31:58 +0000896 SeparateSubExprs(SubExprs, SARE->getOperand(0), SE);
Chris Lattner934520a2005-08-13 07:27:18 +0000897 }
Dan Gohmancfeb6a42008-06-18 16:23:07 +0000898 } else if (!Expr->isZero()) {
Chris Lattner934520a2005-08-13 07:27:18 +0000899 // Do not add zero.
900 SubExprs.push_back(Expr);
901 }
902}
903
904
Chris Lattner1bbae0c2005-08-09 00:18:09 +0000905/// RemoveCommonExpressionsFromUseBases - Look through all of the uses in Bases,
906/// removing any common subexpressions from it. Anything truly common is
907/// removed, accumulated, and returned. This looks for things like (a+b+c) and
908/// (a+c+d) -> (a+c). The common expression is *removed* from the Bases.
909static SCEVHandle
Dan Gohman246b2562007-10-22 18:31:58 +0000910RemoveCommonExpressionsFromUseBases(std::vector<BasedUser> &Uses,
911 ScalarEvolution *SE) {
Chris Lattner1bbae0c2005-08-09 00:18:09 +0000912 unsigned NumUses = Uses.size();
913
914 // Only one use? Use its base, regardless of what it is!
Dan Gohman246b2562007-10-22 18:31:58 +0000915 SCEVHandle Zero = SE->getIntegerSCEV(0, Uses[0].Base->getType());
Chris Lattner1bbae0c2005-08-09 00:18:09 +0000916 SCEVHandle Result = Zero;
917 if (NumUses == 1) {
918 std::swap(Result, Uses[0].Base);
919 return Result;
920 }
921
922 // To find common subexpressions, count how many of Uses use each expression.
923 // If any subexpressions are used Uses.size() times, they are common.
924 std::map<SCEVHandle, unsigned> SubExpressionUseCounts;
925
Chris Lattnerd6155e92005-10-11 18:41:04 +0000926 // UniqueSubExprs - Keep track of all of the subexpressions we see in the
927 // order we see them.
928 std::vector<SCEVHandle> UniqueSubExprs;
929
Chris Lattner934520a2005-08-13 07:27:18 +0000930 std::vector<SCEVHandle> SubExprs;
931 for (unsigned i = 0; i != NumUses; ++i) {
932 // If the base is zero (which is common), return zero now, there are no
933 // CSEs we can find.
934 if (Uses[i].Base == Zero) return Zero;
935
936 // Split the expression into subexprs.
Dan Gohman246b2562007-10-22 18:31:58 +0000937 SeparateSubExprs(SubExprs, Uses[i].Base, SE);
Chris Lattner934520a2005-08-13 07:27:18 +0000938 // Add one to SubExpressionUseCounts for each subexpr present.
939 for (unsigned j = 0, e = SubExprs.size(); j != e; ++j)
Chris Lattnerd6155e92005-10-11 18:41:04 +0000940 if (++SubExpressionUseCounts[SubExprs[j]] == 1)
941 UniqueSubExprs.push_back(SubExprs[j]);
Chris Lattner934520a2005-08-13 07:27:18 +0000942 SubExprs.clear();
943 }
944
Chris Lattnerd6155e92005-10-11 18:41:04 +0000945 // Now that we know how many times each is used, build Result. Iterate over
946 // UniqueSubexprs so that we have a stable ordering.
947 for (unsigned i = 0, e = UniqueSubExprs.size(); i != e; ++i) {
948 std::map<SCEVHandle, unsigned>::iterator I =
949 SubExpressionUseCounts.find(UniqueSubExprs[i]);
950 assert(I != SubExpressionUseCounts.end() && "Entry not found?");
Chris Lattner1bbae0c2005-08-09 00:18:09 +0000951 if (I->second == NumUses) { // Found CSE!
Dan Gohman246b2562007-10-22 18:31:58 +0000952 Result = SE->getAddExpr(Result, I->first);
Chris Lattner1bbae0c2005-08-09 00:18:09 +0000953 } else {
954 // Remove non-cse's from SubExpressionUseCounts.
Chris Lattnerd6155e92005-10-11 18:41:04 +0000955 SubExpressionUseCounts.erase(I);
Chris Lattner1bbae0c2005-08-09 00:18:09 +0000956 }
Chris Lattnerd6155e92005-10-11 18:41:04 +0000957 }
Chris Lattner1bbae0c2005-08-09 00:18:09 +0000958
959 // If we found no CSE's, return now.
960 if (Result == Zero) return Result;
961
962 // Otherwise, remove all of the CSE's we found from each of the base values.
Chris Lattner934520a2005-08-13 07:27:18 +0000963 for (unsigned i = 0; i != NumUses; ++i) {
964 // Split the expression into subexprs.
Dan Gohman246b2562007-10-22 18:31:58 +0000965 SeparateSubExprs(SubExprs, Uses[i].Base, SE);
Chris Lattner934520a2005-08-13 07:27:18 +0000966
967 // Remove any common subexpressions.
968 for (unsigned j = 0, e = SubExprs.size(); j != e; ++j)
969 if (SubExpressionUseCounts.count(SubExprs[j])) {
970 SubExprs.erase(SubExprs.begin()+j);
971 --j; --e;
972 }
973
974 // Finally, the non-shared expressions together.
975 if (SubExprs.empty())
Chris Lattner1bbae0c2005-08-09 00:18:09 +0000976 Uses[i].Base = Zero;
Chris Lattner934520a2005-08-13 07:27:18 +0000977 else
Dan Gohman246b2562007-10-22 18:31:58 +0000978 Uses[i].Base = SE->getAddExpr(SubExprs);
Chris Lattner27e51422005-08-13 07:42:01 +0000979 SubExprs.clear();
Chris Lattner934520a2005-08-13 07:27:18 +0000980 }
Chris Lattner1bbae0c2005-08-09 00:18:09 +0000981
982 return Result;
983}
984
Dale Johannesendc42f482007-03-20 00:47:50 +0000985/// ValidStride - Check whether the given Scale is valid for all loads and
Chris Lattner579633c2007-04-09 22:20:14 +0000986/// stores in UsersToProcess.
Dale Johannesendc42f482007-03-20 00:47:50 +0000987///
Dan Gohman02e4fa72007-10-22 20:40:42 +0000988bool LoopStrengthReduce::ValidStride(bool HasBaseReg,
989 int64_t Scale,
Dale Johannesendc42f482007-03-20 00:47:50 +0000990 const std::vector<BasedUser>& UsersToProcess) {
Evan Chengd6b62a52007-12-19 23:33:23 +0000991 if (!TLI)
992 return true;
993
Dale Johannesen8e59e162007-03-20 21:54:54 +0000994 for (unsigned i=0, e = UsersToProcess.size(); i!=e; ++i) {
Chris Lattner1ebd89e2007-04-02 06:34:44 +0000995 // If this is a load or other access, pass the type of the access in.
996 const Type *AccessTy = Type::VoidTy;
997 if (StoreInst *SI = dyn_cast<StoreInst>(UsersToProcess[i].Inst))
998 AccessTy = SI->getOperand(0)->getType();
999 else if (LoadInst *LI = dyn_cast<LoadInst>(UsersToProcess[i].Inst))
1000 AccessTy = LI->getType();
Evan Cheng55e641b2008-03-19 22:02:26 +00001001 else if (isa<PHINode>(UsersToProcess[i].Inst))
1002 continue;
Chris Lattner1ebd89e2007-04-02 06:34:44 +00001003
Chris Lattner579633c2007-04-09 22:20:14 +00001004 TargetLowering::AddrMode AM;
1005 if (SCEVConstant *SC = dyn_cast<SCEVConstant>(UsersToProcess[i].Imm))
1006 AM.BaseOffs = SC->getValue()->getSExtValue();
Dan Gohmancfeb6a42008-06-18 16:23:07 +00001007 AM.HasBaseReg = HasBaseReg || !UsersToProcess[i].Base->isZero();
Chris Lattner579633c2007-04-09 22:20:14 +00001008 AM.Scale = Scale;
1009
1010 // If load[imm+r*scale] is illegal, bail out.
Evan Chengd6b62a52007-12-19 23:33:23 +00001011 if (!TLI->isLegalAddressingMode(AM, AccessTy))
Dale Johannesendc42f482007-03-20 00:47:50 +00001012 return false;
Dale Johannesen8e59e162007-03-20 21:54:54 +00001013 }
Dale Johannesendc42f482007-03-20 00:47:50 +00001014 return true;
1015}
Chris Lattner1bbae0c2005-08-09 00:18:09 +00001016
Evan Cheng5f8ebaa2007-10-25 22:45:20 +00001017/// RequiresTypeConversion - Returns true if converting Ty to NewTy is not
1018/// a nop.
Evan Cheng2bd122c2007-10-26 01:56:11 +00001019bool LoopStrengthReduce::RequiresTypeConversion(const Type *Ty1,
1020 const Type *Ty2) {
1021 if (Ty1 == Ty2)
Evan Cheng5f8ebaa2007-10-25 22:45:20 +00001022 return false;
Evan Cheng2bd122c2007-10-26 01:56:11 +00001023 if (TLI && TLI->isTruncateFree(Ty1, Ty2))
1024 return false;
1025 return (!Ty1->canLosslesslyBitCastTo(Ty2) &&
1026 !(isa<PointerType>(Ty2) &&
1027 Ty1->canLosslesslyBitCastTo(UIntPtrTy)) &&
1028 !(isa<PointerType>(Ty1) &&
1029 Ty2->canLosslesslyBitCastTo(UIntPtrTy)));
Evan Cheng5f8ebaa2007-10-25 22:45:20 +00001030}
1031
Evan Chengeb8f9e22006-03-17 19:52:23 +00001032/// CheckForIVReuse - Returns the multiple if the stride is the multiple
1033/// of a previous stride and it is a legal value for the target addressing
Dan Gohman02e4fa72007-10-22 20:40:42 +00001034/// mode scale component and optional base reg. This allows the users of
1035/// this stride to be rewritten as prev iv * factor. It returns 0 if no
1036/// reuse is possible.
1037unsigned LoopStrengthReduce::CheckForIVReuse(bool HasBaseReg,
Evan Cheng2bd122c2007-10-26 01:56:11 +00001038 bool AllUsesAreAddresses,
Dan Gohman02e4fa72007-10-22 20:40:42 +00001039 const SCEVHandle &Stride,
Dale Johannesendc42f482007-03-20 00:47:50 +00001040 IVExpr &IV, const Type *Ty,
1041 const std::vector<BasedUser>& UsersToProcess) {
Evan Chengeb8f9e22006-03-17 19:52:23 +00001042 if (SCEVConstant *SC = dyn_cast<SCEVConstant>(Stride)) {
Reid Spencer502db932007-03-02 23:37:53 +00001043 int64_t SInt = SC->getValue()->getSExtValue();
Dale Johannesenb51b4b52007-11-17 02:48:01 +00001044 for (unsigned NewStride = 0, e = StrideOrder.size(); NewStride != e;
1045 ++NewStride) {
1046 std::map<SCEVHandle, IVsOfOneStride>::iterator SI =
1047 IVsByStride.find(StrideOrder[NewStride]);
1048 if (SI == IVsByStride.end())
1049 continue;
Evan Cheng5eef2d22007-03-12 23:27:37 +00001050 int64_t SSInt = cast<SCEVConstant>(SI->first)->getValue()->getSExtValue();
Evan Cheng2bd122c2007-10-26 01:56:11 +00001051 if (SI->first != Stride &&
Chris Lattner1d312902007-04-02 22:51:58 +00001052 (unsigned(abs(SInt)) < SSInt || (SInt % SSInt) != 0))
Evan Chengeb8f9e22006-03-17 19:52:23 +00001053 continue;
Evan Cheng5eef2d22007-03-12 23:27:37 +00001054 int64_t Scale = SInt / SSInt;
Dale Johannesendc42f482007-03-20 00:47:50 +00001055 // Check that this stride is valid for all the types used for loads and
1056 // stores; if it can be used for some and not others, we might as well use
1057 // the original stride everywhere, since we have to create the IV for it
Dan Gohmanaa343312007-10-29 19:23:53 +00001058 // anyway. If the scale is 1, then we don't need to worry about folding
1059 // multiplications.
1060 if (Scale == 1 ||
1061 (AllUsesAreAddresses &&
1062 ValidStride(HasBaseReg, Scale, UsersToProcess)))
Evan Cheng5eef2d22007-03-12 23:27:37 +00001063 for (std::vector<IVExpr>::iterator II = SI->second.IVs.begin(),
1064 IE = SI->second.IVs.end(); II != IE; ++II)
1065 // FIXME: Only handle base == 0 for now.
1066 // Only reuse previous IV if it would not require a type conversion.
Dan Gohmancfeb6a42008-06-18 16:23:07 +00001067 if (II->Base->isZero() &&
Evan Cheng2bd122c2007-10-26 01:56:11 +00001068 !RequiresTypeConversion(II->Base->getType(), Ty)) {
Evan Cheng5eef2d22007-03-12 23:27:37 +00001069 IV = *II;
1070 return Scale;
1071 }
Evan Chengeb8f9e22006-03-17 19:52:23 +00001072 }
1073 }
Evan Cheng21495772006-03-18 08:03:12 +00001074 return 0;
Evan Chengeb8f9e22006-03-17 19:52:23 +00001075}
1076
Chris Lattner7e79b382006-08-03 06:34:50 +00001077/// PartitionByIsUseOfPostIncrementedValue - Simple boolean predicate that
1078/// returns true if Val's isUseOfPostIncrementedValue is true.
1079static bool PartitionByIsUseOfPostIncrementedValue(const BasedUser &Val) {
1080 return Val.isUseOfPostIncrementedValue;
1081}
Evan Chengeb8f9e22006-03-17 19:52:23 +00001082
Dan Gohman4a9a3e52008-04-14 18:26:16 +00001083/// isNonConstantNegative - Return true if the specified scev is negated, but
Chris Lattnerfb3e1192007-05-19 01:22:21 +00001084/// not a constant.
1085static bool isNonConstantNegative(const SCEVHandle &Expr) {
1086 SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(Expr);
1087 if (!Mul) return false;
1088
1089 // If there is a constant factor, it will be first.
1090 SCEVConstant *SC = dyn_cast<SCEVConstant>(Mul->getOperand(0));
1091 if (!SC) return false;
1092
1093 // Return true if the value is negative, this matches things like (-42 * V).
1094 return SC->getValue()->getValue().isNegative();
1095}
1096
Evan Chengd6b62a52007-12-19 23:33:23 +00001097/// isAddress - Returns true if the specified instruction is using the
1098/// specified value as an address.
1099static bool isAddressUse(Instruction *Inst, Value *OperandVal) {
1100 bool isAddress = isa<LoadInst>(Inst);
1101 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
1102 if (SI->getOperand(1) == OperandVal)
1103 isAddress = true;
1104 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
1105 // Addressing modes can also be folded into prefetches and a variety
1106 // of intrinsics.
1107 switch (II->getIntrinsicID()) {
1108 default: break;
1109 case Intrinsic::prefetch:
1110 case Intrinsic::x86_sse2_loadu_dq:
1111 case Intrinsic::x86_sse2_loadu_pd:
1112 case Intrinsic::x86_sse_loadu_ps:
1113 case Intrinsic::x86_sse_storeu_ps:
1114 case Intrinsic::x86_sse2_storeu_pd:
1115 case Intrinsic::x86_sse2_storeu_dq:
1116 case Intrinsic::x86_sse2_storel_dq:
1117 if (II->getOperand(1) == OperandVal)
1118 isAddress = true;
1119 break;
Evan Chengd6b62a52007-12-19 23:33:23 +00001120 }
1121 }
1122 return isAddress;
1123}
1124
Evan Cheng5f8ebaa2007-10-25 22:45:20 +00001125// CollectIVUsers - Transform our list of users and offsets to a bit more
Dan Gohman73b43b92008-06-23 22:11:52 +00001126// complex table. In this new vector, each 'BasedUser' contains 'Base', the base
1127// of the strided accesses, as well as the old information from Uses. We
Evan Cheng5f8ebaa2007-10-25 22:45:20 +00001128// progressively move information from the Base field to the Imm field, until
1129// we eventually have the full access expression to rewrite the use.
1130SCEVHandle LoopStrengthReduce::CollectIVUsers(const SCEVHandle &Stride,
1131 IVUsersOfOneStride &Uses,
1132 Loop *L,
1133 bool &AllUsesAreAddresses,
1134 std::vector<BasedUser> &UsersToProcess) {
Nate Begeman16997482005-07-30 00:15:07 +00001135 UsersToProcess.reserve(Uses.Users.size());
Chris Lattnera553b0c2005-08-08 22:56:21 +00001136 for (unsigned i = 0, e = Uses.Users.size(); i != e; ++i) {
Dan Gohman246b2562007-10-22 18:31:58 +00001137 UsersToProcess.push_back(BasedUser(Uses.Users[i], SE));
Chris Lattnera553b0c2005-08-08 22:56:21 +00001138
1139 // Move any loop invariant operands from the offset field to the immediate
1140 // field of the use, so that we don't try to use something before it is
1141 // computed.
1142 MoveLoopVariantsToImediateField(UsersToProcess.back().Base,
Dan Gohman246b2562007-10-22 18:31:58 +00001143 UsersToProcess.back().Imm, L, SE);
Chris Lattnera553b0c2005-08-08 22:56:21 +00001144 assert(UsersToProcess.back().Base->isLoopInvariant(L) &&
Chris Lattner26d91f12005-08-04 22:34:05 +00001145 "Base value is not loop invariant!");
Nate Begeman16997482005-07-30 00:15:07 +00001146 }
Evan Chengeb8f9e22006-03-17 19:52:23 +00001147
Chris Lattner1bbae0c2005-08-09 00:18:09 +00001148 // We now have a whole bunch of uses of like-strided induction variables, but
1149 // they might all have different bases. We want to emit one PHI node for this
1150 // stride which we fold as many common expressions (between the IVs) into as
1151 // possible. Start by identifying the common expressions in the base values
1152 // for the strides (e.g. if we have "A+C+B" and "A+B+D" as our bases, find
1153 // "A+B"), emit it to the preheader, then remove the expression from the
1154 // UsersToProcess base values.
Evan Chengd1d6b5c2006-03-16 21:53:05 +00001155 SCEVHandle CommonExprs =
Dan Gohman246b2562007-10-22 18:31:58 +00001156 RemoveCommonExpressionsFromUseBases(UsersToProcess, SE);
Dan Gohman02e4fa72007-10-22 20:40:42 +00001157
Chris Lattner44b807e2005-08-08 22:32:34 +00001158 // Next, figure out what we can represent in the immediate fields of
1159 // instructions. If we can represent anything there, move it to the imm
Chris Lattner1bbae0c2005-08-09 00:18:09 +00001160 // fields of the BasedUsers. We do this so that it increases the commonality
1161 // of the remaining uses.
Evan Cheng32e4c7c2007-12-20 02:20:53 +00001162 unsigned NumPHI = 0;
Chris Lattner44b807e2005-08-08 22:32:34 +00001163 for (unsigned i = 0, e = UsersToProcess.size(); i != e; ++i) {
Chris Lattner80b32b32005-08-16 00:38:11 +00001164 // If the user is not in the current loop, this means it is using the exit
1165 // value of the IV. Do not put anything in the base, make sure it's all in
1166 // the immediate field to allow as much factoring as possible.
1167 if (!L->contains(UsersToProcess[i].Inst->getParent())) {
Dan Gohman246b2562007-10-22 18:31:58 +00001168 UsersToProcess[i].Imm = SE->getAddExpr(UsersToProcess[i].Imm,
1169 UsersToProcess[i].Base);
Chris Lattner8385e512005-08-17 21:22:41 +00001170 UsersToProcess[i].Base =
Dan Gohman246b2562007-10-22 18:31:58 +00001171 SE->getIntegerSCEV(0, UsersToProcess[i].Base->getType());
Chris Lattner80b32b32005-08-16 00:38:11 +00001172 } else {
1173
1174 // Addressing modes can be folded into loads and stores. Be careful that
1175 // the store is through the expression, not of the expression though.
Evan Cheng32e4c7c2007-12-20 02:20:53 +00001176 bool isPHI = false;
Evan Chengd6b62a52007-12-19 23:33:23 +00001177 bool isAddress = isAddressUse(UsersToProcess[i].Inst,
1178 UsersToProcess[i].OperandValToReplace);
1179 if (isa<PHINode>(UsersToProcess[i].Inst)) {
Evan Cheng32e4c7c2007-12-20 02:20:53 +00001180 isPHI = true;
1181 ++NumPHI;
Dan Gohman2acc7602007-05-03 23:20:33 +00001182 }
Dan Gohman02e4fa72007-10-22 20:40:42 +00001183
1184 // If this use isn't an address, then not all uses are addresses.
Evan Cheng55e641b2008-03-19 22:02:26 +00001185 if (!isAddress && !isPHI)
Dan Gohman02e4fa72007-10-22 20:40:42 +00001186 AllUsesAreAddresses = false;
Chris Lattner80b32b32005-08-16 00:38:11 +00001187
Evan Cheng1d958162007-03-13 20:34:37 +00001188 MoveImmediateValues(TLI, UsersToProcess[i].Inst, UsersToProcess[i].Base,
Dan Gohman246b2562007-10-22 18:31:58 +00001189 UsersToProcess[i].Imm, isAddress, L, SE);
Chris Lattner80b32b32005-08-16 00:38:11 +00001190 }
Chris Lattner44b807e2005-08-08 22:32:34 +00001191 }
Evan Chengd1d6b5c2006-03-16 21:53:05 +00001192
Evan Cheng32e4c7c2007-12-20 02:20:53 +00001193 // If one of the use if a PHI node and all other uses are addresses, still
1194 // allow iv reuse. Essentially we are trading one constant multiplication
1195 // for one fewer iv.
1196 if (NumPHI > 1)
1197 AllUsesAreAddresses = false;
1198
Evan Cheng5f8ebaa2007-10-25 22:45:20 +00001199 return CommonExprs;
1200}
1201
1202/// StrengthReduceStridedIVUsers - Strength reduce all of the users of a single
1203/// stride of IV. All of the users may have different starting values, and this
1204/// may not be the only stride (we know it is if isOnlyStride is true).
1205void LoopStrengthReduce::StrengthReduceStridedIVUsers(const SCEVHandle &Stride,
1206 IVUsersOfOneStride &Uses,
1207 Loop *L,
1208 bool isOnlyStride) {
1209 // If all the users are moved to another stride, then there is nothing to do.
Dan Gohman30359592008-01-29 13:02:09 +00001210 if (Uses.Users.empty())
Evan Cheng5f8ebaa2007-10-25 22:45:20 +00001211 return;
1212
1213 // Keep track if every use in UsersToProcess is an address. If they all are,
1214 // we may be able to rewrite the entire collection of them in terms of a
1215 // smaller-stride IV.
1216 bool AllUsesAreAddresses = true;
1217
1218 // Transform our list of users and offsets to a bit more complex table. In
1219 // this new vector, each 'BasedUser' contains 'Base' the base of the
1220 // strided accessas well as the old information from Uses. We progressively
1221 // move information from the Base field to the Imm field, until we eventually
1222 // have the full access expression to rewrite the use.
1223 std::vector<BasedUser> UsersToProcess;
1224 SCEVHandle CommonExprs = CollectIVUsers(Stride, Uses, L, AllUsesAreAddresses,
1225 UsersToProcess);
1226
1227 // If we managed to find some expressions in common, we'll need to carry
1228 // their value in a register and add it in for each use. This will take up
1229 // a register operand, which potentially restricts what stride values are
1230 // valid.
Dan Gohmancfeb6a42008-06-18 16:23:07 +00001231 bool HaveCommonExprs = !CommonExprs->isZero();
Evan Cheng5f8ebaa2007-10-25 22:45:20 +00001232
Dan Gohman02e4fa72007-10-22 20:40:42 +00001233 // If all uses are addresses, check if it is possible to reuse an IV with a
1234 // stride that is a factor of this stride. And that the multiple is a number
1235 // that can be encoded in the scale field of the target addressing mode. And
1236 // that we will have a valid instruction after this substition, including the
1237 // immediate field, if any.
Dale Johannesen8e59e162007-03-20 21:54:54 +00001238 PHINode *NewPHI = NULL;
1239 Value *IncV = NULL;
Dan Gohman246b2562007-10-22 18:31:58 +00001240 IVExpr ReuseIV(SE->getIntegerSCEV(0, Type::Int32Ty),
1241 SE->getIntegerSCEV(0, Type::Int32Ty),
1242 0, 0);
Dan Gohman02e4fa72007-10-22 20:40:42 +00001243 unsigned RewriteFactor = 0;
Evan Cheng2bd122c2007-10-26 01:56:11 +00001244 RewriteFactor = CheckForIVReuse(HaveCommonExprs, AllUsesAreAddresses,
1245 Stride, ReuseIV, CommonExprs->getType(),
1246 UsersToProcess);
Dale Johannesen8e59e162007-03-20 21:54:54 +00001247 if (RewriteFactor != 0) {
1248 DOUT << "BASED ON IV of STRIDE " << *ReuseIV.Stride
1249 << " and BASE " << *ReuseIV.Base << " :\n";
1250 NewPHI = ReuseIV.PHI;
1251 IncV = ReuseIV.IncV;
1252 }
1253
Chris Lattnerfe355552007-04-01 22:21:39 +00001254 const Type *ReplacedTy = CommonExprs->getType();
1255
Chris Lattner1bbae0c2005-08-09 00:18:09 +00001256 // Now that we know what we need to do, insert the PHI node itself.
1257 //
Chris Lattnerfe355552007-04-01 22:21:39 +00001258 DOUT << "INSERTING IV of TYPE " << *ReplacedTy << " of STRIDE "
Chris Lattner7d8ed8a2007-05-11 22:40:34 +00001259 << *Stride << " and BASE " << *CommonExprs << ": ";
Evan Chengd1d6b5c2006-03-16 21:53:05 +00001260
Chris Lattner1bbae0c2005-08-09 00:18:09 +00001261 SCEVExpander Rewriter(*SE, *LI);
1262 SCEVExpander PreheaderRewriter(*SE, *LI);
Chris Lattner44b807e2005-08-08 22:32:34 +00001263
Chris Lattner1bbae0c2005-08-09 00:18:09 +00001264 BasicBlock *Preheader = L->getLoopPreheader();
1265 Instruction *PreInsertPt = Preheader->getTerminator();
1266 Instruction *PhiInsertBefore = L->getHeader()->begin();
Chris Lattner44b807e2005-08-08 22:32:34 +00001267
Chris Lattner12b50412005-09-12 17:11:27 +00001268 BasicBlock *LatchBlock = L->getLoopLatch();
Evan Chengd1d6b5c2006-03-16 21:53:05 +00001269
Evan Chengeb8f9e22006-03-17 19:52:23 +00001270
1271 // Emit the initial base value into the loop preheader.
1272 Value *CommonBaseV
Dan Gohmand19534a2007-06-15 14:38:12 +00001273 = PreheaderRewriter.expandCodeFor(CommonExprs, PreInsertPt);
Evan Chengeb8f9e22006-03-17 19:52:23 +00001274
Evan Cheng21495772006-03-18 08:03:12 +00001275 if (RewriteFactor == 0) {
Evan Chengd1d6b5c2006-03-16 21:53:05 +00001276 // Create a new Phi for this base, and stick it in the loop header.
Gabor Greif051a9502008-04-06 20:25:17 +00001277 NewPHI = PHINode::Create(ReplacedTy, "iv.", PhiInsertBefore);
Evan Chengd1d6b5c2006-03-16 21:53:05 +00001278 ++NumInserted;
Chris Lattner1bbae0c2005-08-09 00:18:09 +00001279
Evan Chengeb8f9e22006-03-17 19:52:23 +00001280 // Add common base to the new Phi node.
1281 NewPHI->addIncoming(CommonBaseV, Preheader);
1282
Chris Lattnerfb3e1192007-05-19 01:22:21 +00001283 // If the stride is negative, insert a sub instead of an add for the
1284 // increment.
1285 bool isNegative = isNonConstantNegative(Stride);
1286 SCEVHandle IncAmount = Stride;
1287 if (isNegative)
Dan Gohman246b2562007-10-22 18:31:58 +00001288 IncAmount = SE->getNegativeSCEV(Stride);
Chris Lattnerfb3e1192007-05-19 01:22:21 +00001289
Evan Chengd1d6b5c2006-03-16 21:53:05 +00001290 // Insert the stride into the preheader.
Dan Gohmand19534a2007-06-15 14:38:12 +00001291 Value *StrideV = PreheaderRewriter.expandCodeFor(IncAmount, PreInsertPt);
Evan Chengd1d6b5c2006-03-16 21:53:05 +00001292 if (!isa<ConstantInt>(StrideV)) ++NumVariable;
Chris Lattner50fad702005-08-10 00:45:21 +00001293
Evan Chengd1d6b5c2006-03-16 21:53:05 +00001294 // Emit the increment of the base value before the terminator of the loop
1295 // latch block, and add it to the Phi node.
Dan Gohman246b2562007-10-22 18:31:58 +00001296 SCEVHandle IncExp = SE->getUnknown(StrideV);
Chris Lattnerfb3e1192007-05-19 01:22:21 +00001297 if (isNegative)
Dan Gohman246b2562007-10-22 18:31:58 +00001298 IncExp = SE->getNegativeSCEV(IncExp);
1299 IncExp = SE->getAddExpr(SE->getUnknown(NewPHI), IncExp);
Chris Lattner1bbae0c2005-08-09 00:18:09 +00001300
Dan Gohmand19534a2007-06-15 14:38:12 +00001301 IncV = Rewriter.expandCodeFor(IncExp, LatchBlock->getTerminator());
Evan Chengd1d6b5c2006-03-16 21:53:05 +00001302 IncV->setName(NewPHI->getName()+".inc");
1303 NewPHI->addIncoming(IncV, LatchBlock);
1304
Evan Chengeb8f9e22006-03-17 19:52:23 +00001305 // Remember this in case a later stride is multiple of this.
Evan Cheng21495772006-03-18 08:03:12 +00001306 IVsByStride[Stride].addIV(Stride, CommonExprs, NewPHI, IncV);
Chris Lattner7d8ed8a2007-05-11 22:40:34 +00001307
1308 DOUT << " IV=%" << NewPHI->getNameStr() << " INC=%" << IncV->getNameStr();
Evan Chengeb8f9e22006-03-17 19:52:23 +00001309 } else {
1310 Constant *C = dyn_cast<Constant>(CommonBaseV);
1311 if (!C ||
1312 (!C->isNullValue() &&
Dan Gohman246b2562007-10-22 18:31:58 +00001313 !isTargetConstant(SE->getUnknown(CommonBaseV), ReplacedTy, TLI)))
Reid Spencer3da59db2006-11-27 01:05:10 +00001314 // We want the common base emitted into the preheader! This is just
1315 // using cast as a copy so BitCast (no-op cast) is appropriate
1316 CommonBaseV = new BitCastInst(CommonBaseV, CommonBaseV->getType(),
1317 "commonbase", PreInsertPt);
Evan Chengd1d6b5c2006-03-16 21:53:05 +00001318 }
Chris Lattner7d8ed8a2007-05-11 22:40:34 +00001319 DOUT << "\n";
Chris Lattner1bbae0c2005-08-09 00:18:09 +00001320
Chris Lattner7e79b382006-08-03 06:34:50 +00001321 // We want to emit code for users inside the loop first. To do this, we
1322 // rearrange BasedUser so that the entries at the end have
1323 // isUseOfPostIncrementedValue = false, because we pop off the end of the
1324 // vector (so we handle them first).
1325 std::partition(UsersToProcess.begin(), UsersToProcess.end(),
1326 PartitionByIsUseOfPostIncrementedValue);
1327
1328 // Sort this by base, so that things with the same base are handled
1329 // together. By partitioning first and stable-sorting later, we are
1330 // guaranteed that within each base we will pop off users from within the
1331 // loop before users outside of the loop with a particular base.
1332 //
1333 // We would like to use stable_sort here, but we can't. The problem is that
1334 // SCEVHandle's don't have a deterministic ordering w.r.t to each other, so
1335 // we don't have anything to do a '<' comparison on. Because we think the
1336 // number of uses is small, do a horrible bubble sort which just relies on
1337 // ==.
1338 for (unsigned i = 0, e = UsersToProcess.size(); i != e; ++i) {
1339 // Get a base value.
1340 SCEVHandle Base = UsersToProcess[i].Base;
1341
Evan Cheng83927722007-10-30 22:27:26 +00001342 // Compact everything with this base to be consequtive with this one.
Chris Lattner7e79b382006-08-03 06:34:50 +00001343 for (unsigned j = i+1; j != e; ++j) {
1344 if (UsersToProcess[j].Base == Base) {
1345 std::swap(UsersToProcess[i+1], UsersToProcess[j]);
1346 ++i;
1347 }
1348 }
1349 }
1350
1351 // Process all the users now. This outer loop handles all bases, the inner
1352 // loop handles all users of a particular base.
Nate Begeman16997482005-07-30 00:15:07 +00001353 while (!UsersToProcess.empty()) {
Chris Lattner7b445c52005-10-11 18:30:57 +00001354 SCEVHandle Base = UsersToProcess.back().Base;
Chris Lattnerbe3e5212005-08-03 23:30:08 +00001355
Chris Lattner1bbae0c2005-08-09 00:18:09 +00001356 // Emit the code for Base into the preheader.
Dan Gohmand19534a2007-06-15 14:38:12 +00001357 Value *BaseV = PreheaderRewriter.expandCodeFor(Base, PreInsertPt);
Chris Lattner7d8ed8a2007-05-11 22:40:34 +00001358
1359 DOUT << " INSERTING code for BASE = " << *Base << ":";
1360 if (BaseV->hasName())
1361 DOUT << " Result value name = %" << BaseV->getNameStr();
1362 DOUT << "\n";
1363
Chris Lattner1bbae0c2005-08-09 00:18:09 +00001364 // If BaseV is a constant other than 0, make sure that it gets inserted into
1365 // the preheader, instead of being forward substituted into the uses. We do
Reid Spencer3da59db2006-11-27 01:05:10 +00001366 // this by forcing a BitCast (noop cast) to be inserted into the preheader
1367 // in this case.
Chris Lattner7e79b382006-08-03 06:34:50 +00001368 if (Constant *C = dyn_cast<Constant>(BaseV)) {
Evan Cheng1d958162007-03-13 20:34:37 +00001369 if (!C->isNullValue() && !isTargetConstant(Base, ReplacedTy, TLI)) {
Reid Spencer3da59db2006-11-27 01:05:10 +00001370 // We want this constant emitted into the preheader! This is just
1371 // using cast as a copy so BitCast (no-op cast) is appropriate
1372 BaseV = new BitCastInst(BaseV, BaseV->getType(), "preheaderinsert",
Dan Gohman4a9a3e52008-04-14 18:26:16 +00001373 PreInsertPt);
Chris Lattner1bbae0c2005-08-09 00:18:09 +00001374 }
Chris Lattner7e79b382006-08-03 06:34:50 +00001375 }
1376
Nate Begeman16997482005-07-30 00:15:07 +00001377 // Emit the code to add the immediate offset to the Phi value, just before
Chris Lattner2351aba2005-08-03 22:51:21 +00001378 // the instructions that we identified as using this stride and base.
Chris Lattner7b445c52005-10-11 18:30:57 +00001379 do {
Chris Lattner7e79b382006-08-03 06:34:50 +00001380 // FIXME: Use emitted users to emit other users.
Chris Lattner7b445c52005-10-11 18:30:57 +00001381 BasedUser &User = UsersToProcess.back();
Jeff Cohend29b6aa2005-07-30 18:33:25 +00001382
Chris Lattner1bbae0c2005-08-09 00:18:09 +00001383 // If this instruction wants to use the post-incremented value, move it
1384 // after the post-inc and use its value instead of the PHI.
1385 Value *RewriteOp = NewPHI;
1386 if (User.isUseOfPostIncrementedValue) {
1387 RewriteOp = IncV;
Chris Lattnerc6bae652005-09-12 06:04:47 +00001388
1389 // If this user is in the loop, make sure it is the last thing in the
1390 // loop to ensure it is dominated by the increment.
1391 if (L->contains(User.Inst->getParent()))
1392 User.Inst->moveBefore(LatchBlock->getTerminator());
Chris Lattner1bbae0c2005-08-09 00:18:09 +00001393 }
Reid Spencer3ba68b92006-12-13 08:06:42 +00001394 if (RewriteOp->getType() != ReplacedTy) {
1395 Instruction::CastOps opcode = Instruction::Trunc;
1396 if (ReplacedTy->getPrimitiveSizeInBits() ==
1397 RewriteOp->getType()->getPrimitiveSizeInBits())
1398 opcode = Instruction::BitCast;
1399 RewriteOp = SCEVExpander::InsertCastOfTo(opcode, RewriteOp, ReplacedTy);
1400 }
Evan Cheng86c75d32006-06-09 00:12:42 +00001401
Dan Gohman246b2562007-10-22 18:31:58 +00001402 SCEVHandle RewriteExpr = SE->getUnknown(RewriteOp);
Chris Lattner1bbae0c2005-08-09 00:18:09 +00001403
Dan Gohmanf20d70d2008-05-15 23:26:57 +00001404 // If we had to insert new instrutions for RewriteOp, we have to
1405 // consider that they may not have been able to end up immediately
1406 // next to RewriteOp, because non-PHI instructions may never precede
1407 // PHI instructions in a block. In this case, remember where the last
Dan Gohmanca756ae2008-05-20 03:01:48 +00001408 // instruction was inserted so that if we're replacing a different
1409 // PHI node, we can use the later point to expand the final
1410 // RewriteExpr.
Dan Gohmanf20d70d2008-05-15 23:26:57 +00001411 Instruction *NewBasePt = dyn_cast<Instruction>(RewriteOp);
1412 if (RewriteOp == NewPHI) NewBasePt = 0;
1413
Chris Lattner2351aba2005-08-03 22:51:21 +00001414 // Clear the SCEVExpander's expression map so that we are guaranteed
1415 // to have the code emitted where we expect it.
1416 Rewriter.clear();
Evan Chengd1d6b5c2006-03-16 21:53:05 +00001417
1418 // If we are reusing the iv, then it must be multiplied by a constant
1419 // factor take advantage of addressing mode scale component.
Evan Cheng21495772006-03-18 08:03:12 +00001420 if (RewriteFactor != 0) {
Evan Cheng83927722007-10-30 22:27:26 +00001421 RewriteExpr = SE->getMulExpr(SE->getIntegerSCEV(RewriteFactor,
1422 RewriteExpr->getType()),
1423 RewriteExpr);
Evan Chengeb8f9e22006-03-17 19:52:23 +00001424
1425 // The common base is emitted in the loop preheader. But since we
1426 // are reusing an IV, it has not been used to initialize the PHI node.
1427 // Add it to the expression used to rewrite the uses.
1428 if (!isa<ConstantInt>(CommonBaseV) ||
Reid Spencerbee0f662007-03-02 23:51:25 +00001429 !cast<ConstantInt>(CommonBaseV)->isZero())
Dan Gohman246b2562007-10-22 18:31:58 +00001430 RewriteExpr = SE->getAddExpr(RewriteExpr,
1431 SE->getUnknown(CommonBaseV));
Evan Chengeb8f9e22006-03-17 19:52:23 +00001432 }
Evan Chengd1d6b5c2006-03-16 21:53:05 +00001433
Chris Lattner2114b272005-08-04 20:03:32 +00001434 // Now that we know what we need to do, insert code before User for the
1435 // immediate and any loop-variant expressions.
Reid Spencerbee0f662007-03-02 23:51:25 +00001436 if (!isa<ConstantInt>(BaseV) || !cast<ConstantInt>(BaseV)->isZero())
Chris Lattner1bbae0c2005-08-09 00:18:09 +00001437 // Add BaseV to the PHI value if needed.
Dan Gohman246b2562007-10-22 18:31:58 +00001438 RewriteExpr = SE->getAddExpr(RewriteExpr, SE->getUnknown(BaseV));
Evan Chengd1d6b5c2006-03-16 21:53:05 +00001439
Dan Gohmanf20d70d2008-05-15 23:26:57 +00001440 User.RewriteInstructionToUseNewBase(RewriteExpr, NewBasePt,
1441 Rewriter, L, this,
Evan Cheng0e0014d2007-10-30 23:45:15 +00001442 DeadInsts);
Jeff Cohend29b6aa2005-07-30 18:33:25 +00001443
Chris Lattner2351aba2005-08-03 22:51:21 +00001444 // Mark old value we replaced as possibly dead, so that it is elminated
1445 // if we just replaced the last use of that value.
Chris Lattner2114b272005-08-04 20:03:32 +00001446 DeadInsts.insert(cast<Instruction>(User.OperandValToReplace));
Nate Begeman16997482005-07-30 00:15:07 +00001447
Chris Lattner7b445c52005-10-11 18:30:57 +00001448 UsersToProcess.pop_back();
Chris Lattner2351aba2005-08-03 22:51:21 +00001449 ++NumReduced;
Chris Lattner7b445c52005-10-11 18:30:57 +00001450
Chris Lattner7e79b382006-08-03 06:34:50 +00001451 // If there are any more users to process with the same base, process them
1452 // now. We sorted by base above, so we just have to check the last elt.
Chris Lattner7b445c52005-10-11 18:30:57 +00001453 } while (!UsersToProcess.empty() && UsersToProcess.back().Base == Base);
Nate Begeman16997482005-07-30 00:15:07 +00001454 // TODO: Next, find out which base index is the most common, pull it out.
1455 }
1456
1457 // IMPORTANT TODO: Figure out how to partition the IV's with this stride, but
1458 // different starting values, into different PHIs.
Nate Begeman16997482005-07-30 00:15:07 +00001459}
1460
Devang Patelc677de22008-08-13 20:31:11 +00001461/// FindIVUserForCond - If Cond has an operand that is an expression of an IV,
Chris Lattneraed01d12007-04-03 05:11:24 +00001462/// set the IV user and stride information and return true, otherwise return
1463/// false.
Devang Patelc677de22008-08-13 20:31:11 +00001464bool LoopStrengthReduce::FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse,
Chris Lattneraed01d12007-04-03 05:11:24 +00001465 const SCEVHandle *&CondStride) {
1466 for (unsigned Stride = 0, e = StrideOrder.size(); Stride != e && !CondUse;
1467 ++Stride) {
1468 std::map<SCEVHandle, IVUsersOfOneStride>::iterator SI =
1469 IVUsesByStride.find(StrideOrder[Stride]);
1470 assert(SI != IVUsesByStride.end() && "Stride doesn't exist!");
1471
1472 for (std::vector<IVStrideUse>::iterator UI = SI->second.Users.begin(),
1473 E = SI->second.Users.end(); UI != E; ++UI)
1474 if (UI->User == Cond) {
1475 // NOTE: we could handle setcc instructions with multiple uses here, but
1476 // InstCombine does it as well for simple uses, it's not clear that it
1477 // occurs enough in real life to handle.
1478 CondUse = &*UI;
1479 CondStride = &SI->first;
1480 return true;
1481 }
1482 }
1483 return false;
1484}
1485
Evan Chengcdf43b12007-10-25 09:11:16 +00001486namespace {
1487 // Constant strides come first which in turns are sorted by their absolute
1488 // values. If absolute values are the same, then positive strides comes first.
1489 // e.g.
1490 // 4, -1, X, 1, 2 ==> 1, -1, 2, 4, X
1491 struct StrideCompare {
1492 bool operator()(const SCEVHandle &LHS, const SCEVHandle &RHS) {
1493 SCEVConstant *LHSC = dyn_cast<SCEVConstant>(LHS);
1494 SCEVConstant *RHSC = dyn_cast<SCEVConstant>(RHS);
1495 if (LHSC && RHSC) {
1496 int64_t LV = LHSC->getValue()->getSExtValue();
1497 int64_t RV = RHSC->getValue()->getSExtValue();
1498 uint64_t ALV = (LV < 0) ? -LV : LV;
1499 uint64_t ARV = (RV < 0) ? -RV : RV;
1500 if (ALV == ARV)
1501 return LV > RV;
1502 else
1503 return ALV < ARV;
1504 }
1505 return (LHSC && !RHSC);
1506 }
1507 };
1508}
1509
1510/// ChangeCompareStride - If a loop termination compare instruction is the
1511/// only use of its stride, and the compaison is against a constant value,
1512/// try eliminate the stride by moving the compare instruction to another
1513/// stride and change its constant operand accordingly. e.g.
1514///
1515/// loop:
1516/// ...
1517/// v1 = v1 + 3
1518/// v2 = v2 + 1
1519/// if (v2 < 10) goto loop
1520/// =>
1521/// loop:
1522/// ...
1523/// v1 = v1 + 3
1524/// if (v1 < 30) goto loop
1525ICmpInst *LoopStrengthReduce::ChangeCompareStride(Loop *L, ICmpInst *Cond,
Evan Cheng0e0014d2007-10-30 23:45:15 +00001526 IVStrideUse* &CondUse,
Evan Chengcdf43b12007-10-25 09:11:16 +00001527 const SCEVHandle* &CondStride) {
1528 if (StrideOrder.size() < 2 ||
1529 IVUsesByStride[*CondStride].Users.size() != 1)
1530 return Cond;
Evan Chengcdf43b12007-10-25 09:11:16 +00001531 const SCEVConstant *SC = dyn_cast<SCEVConstant>(*CondStride);
1532 if (!SC) return Cond;
1533 ConstantInt *C = dyn_cast<ConstantInt>(Cond->getOperand(1));
1534 if (!C) return Cond;
1535
1536 ICmpInst::Predicate Predicate = Cond->getPredicate();
Evan Chengcdf43b12007-10-25 09:11:16 +00001537 int64_t CmpSSInt = SC->getValue()->getSExtValue();
1538 int64_t CmpVal = C->getValue().getSExtValue();
Evan Cheng168a66b2007-10-26 23:08:19 +00001539 unsigned BitWidth = C->getValue().getBitWidth();
1540 uint64_t SignBit = 1ULL << (BitWidth-1);
1541 const Type *CmpTy = C->getType();
1542 const Type *NewCmpTy = NULL;
Evan Chengaf62c092007-10-29 22:07:18 +00001543 unsigned TyBits = CmpTy->getPrimitiveSizeInBits();
1544 unsigned NewTyBits = 0;
Evan Chengcdf43b12007-10-25 09:11:16 +00001545 int64_t NewCmpVal = CmpVal;
1546 SCEVHandle *NewStride = NULL;
1547 Value *NewIncV = NULL;
1548 int64_t Scale = 1;
Evan Chengcdf43b12007-10-25 09:11:16 +00001549
Devang Pateld16aba22008-08-13 02:05:14 +00001550 // Check stride constant and the comparision constant signs to detect
1551 // overflow.
Devang Patel4b3f08b2008-09-09 20:54:34 +00001552 if ((CmpVal & SignBit) != (CmpSSInt & SignBit))
Devang Pateld16aba22008-08-13 02:05:14 +00001553 return Cond;
1554
Evan Chengcdf43b12007-10-25 09:11:16 +00001555 // Look for a suitable stride / iv as replacement.
1556 std::stable_sort(StrideOrder.begin(), StrideOrder.end(), StrideCompare());
1557 for (unsigned i = 0, e = StrideOrder.size(); i != e; ++i) {
1558 std::map<SCEVHandle, IVUsersOfOneStride>::iterator SI =
1559 IVUsesByStride.find(StrideOrder[i]);
1560 if (!isa<SCEVConstant>(SI->first))
1561 continue;
1562 int64_t SSInt = cast<SCEVConstant>(SI->first)->getValue()->getSExtValue();
Evan Cheng168a66b2007-10-26 23:08:19 +00001563 if (abs(SSInt) <= abs(CmpSSInt) || (SSInt % CmpSSInt) != 0)
Evan Chengcdf43b12007-10-25 09:11:16 +00001564 continue;
1565
Evan Cheng168a66b2007-10-26 23:08:19 +00001566 Scale = SSInt / CmpSSInt;
1567 NewCmpVal = CmpVal * Scale;
1568 APInt Mul = APInt(BitWidth, NewCmpVal);
1569 // Check for overflow.
1570 if (Mul.getSExtValue() != NewCmpVal) {
Evan Chengcdf43b12007-10-25 09:11:16 +00001571 NewCmpVal = CmpVal;
Evan Cheng168a66b2007-10-26 23:08:19 +00001572 continue;
1573 }
1574
1575 // Watch out for overflow.
1576 if (ICmpInst::isSignedPredicate(Predicate) &&
1577 (CmpVal & SignBit) != (NewCmpVal & SignBit))
1578 NewCmpVal = CmpVal;
1579
Evan Chengcdf43b12007-10-25 09:11:16 +00001580 if (NewCmpVal != CmpVal) {
1581 // Pick the best iv to use trying to avoid a cast.
1582 NewIncV = NULL;
1583 for (std::vector<IVStrideUse>::iterator UI = SI->second.Users.begin(),
1584 E = SI->second.Users.end(); UI != E; ++UI) {
Evan Chengcdf43b12007-10-25 09:11:16 +00001585 NewIncV = UI->OperandValToReplace;
1586 if (NewIncV->getType() == CmpTy)
1587 break;
1588 }
1589 if (!NewIncV) {
1590 NewCmpVal = CmpVal;
1591 continue;
1592 }
1593
Evan Chengcdf43b12007-10-25 09:11:16 +00001594 NewCmpTy = NewIncV->getType();
Evan Chengaf62c092007-10-29 22:07:18 +00001595 NewTyBits = isa<PointerType>(NewCmpTy)
1596 ? UIntPtrTy->getPrimitiveSizeInBits()
1597 : NewCmpTy->getPrimitiveSizeInBits();
1598 if (RequiresTypeConversion(NewCmpTy, CmpTy)) {
Gabor Greif6725cb52008-06-11 21:38:51 +00001599 // Check if it is possible to rewrite it using
1600 // an iv / stride of a smaller integer type.
Evan Chengaf62c092007-10-29 22:07:18 +00001601 bool TruncOk = false;
1602 if (NewCmpTy->isInteger()) {
1603 unsigned Bits = NewTyBits;
1604 if (ICmpInst::isSignedPredicate(Predicate))
1605 --Bits;
1606 uint64_t Mask = (1ULL << Bits) - 1;
1607 if (((uint64_t)NewCmpVal & Mask) == (uint64_t)NewCmpVal)
1608 TruncOk = true;
1609 }
1610 if (!TruncOk) {
1611 NewCmpVal = CmpVal;
1612 continue;
1613 }
1614 }
1615
1616 // Don't rewrite if use offset is non-constant and the new type is
1617 // of a different type.
1618 // FIXME: too conservative?
1619 if (NewTyBits != TyBits && !isa<SCEVConstant>(CondUse->Offset)) {
Evan Cheng5f8ebaa2007-10-25 22:45:20 +00001620 NewCmpVal = CmpVal;
1621 continue;
1622 }
1623
1624 bool AllUsesAreAddresses = true;
1625 std::vector<BasedUser> UsersToProcess;
1626 SCEVHandle CommonExprs = CollectIVUsers(SI->first, SI->second, L,
1627 AllUsesAreAddresses,
1628 UsersToProcess);
1629 // Avoid rewriting the compare instruction with an iv of new stride
1630 // if it's likely the new stride uses will be rewritten using the
1631 if (AllUsesAreAddresses &&
Dan Gohmancfeb6a42008-06-18 16:23:07 +00001632 ValidStride(!CommonExprs->isZero(), Scale, UsersToProcess)) {
Evan Chengcdf43b12007-10-25 09:11:16 +00001633 NewCmpVal = CmpVal;
1634 continue;
1635 }
1636
Evan Chengf5e25f32008-08-06 18:04:43 +00001637 // If scale is negative, use swapped predicate unless it's testing
Evan Chengcdf43b12007-10-25 09:11:16 +00001638 // for equality.
1639 if (Scale < 0 && !Cond->isEquality())
Evan Chengf5e25f32008-08-06 18:04:43 +00001640 Predicate = ICmpInst::getSwappedPredicate(Predicate);
Evan Chengcdf43b12007-10-25 09:11:16 +00001641
1642 NewStride = &StrideOrder[i];
1643 break;
1644 }
1645 }
1646
Dan Gohman9b93dd12008-06-16 22:34:15 +00001647 // Forgo this transformation if it the increment happens to be
1648 // unfortunately positioned after the condition, and the condition
1649 // has multiple uses which prevent it from being moved immediately
1650 // before the branch. See
1651 // test/Transforms/LoopStrengthReduce/change-compare-stride-trickiness-*.ll
1652 // for an example of this situation.
Devang Pateld16aba22008-08-13 02:05:14 +00001653 if (!Cond->hasOneUse()) {
Dan Gohman9b93dd12008-06-16 22:34:15 +00001654 for (BasicBlock::iterator I = Cond, E = Cond->getParent()->end();
1655 I != E; ++I)
1656 if (I == NewIncV)
1657 return Cond;
Devang Pateld16aba22008-08-13 02:05:14 +00001658 }
Dan Gohman9b93dd12008-06-16 22:34:15 +00001659
Evan Chengcdf43b12007-10-25 09:11:16 +00001660 if (NewCmpVal != CmpVal) {
1661 // Create a new compare instruction using new stride / iv.
1662 ICmpInst *OldCond = Cond;
Evan Chengaf62c092007-10-29 22:07:18 +00001663 Value *RHS;
1664 if (!isa<PointerType>(NewCmpTy))
1665 RHS = ConstantInt::get(NewCmpTy, NewCmpVal);
1666 else {
1667 RHS = ConstantInt::get(UIntPtrTy, NewCmpVal);
1668 RHS = SCEVExpander::InsertCastOfTo(Instruction::IntToPtr, RHS, NewCmpTy);
Evan Chengcdf43b12007-10-25 09:11:16 +00001669 }
Evan Cheng168a66b2007-10-26 23:08:19 +00001670 // Insert new compare instruction.
Dan Gohmane562b172008-06-13 21:43:41 +00001671 Cond = new ICmpInst(Predicate, NewIncV, RHS,
1672 L->getHeader()->getName() + ".termcond",
1673 OldCond);
Evan Cheng168a66b2007-10-26 23:08:19 +00001674
1675 // Remove the old compare instruction. The old indvar is probably dead too.
1676 DeadInsts.insert(cast<Instruction>(CondUse->OperandValToReplace));
Evan Cheng168a66b2007-10-26 23:08:19 +00001677 SE->deleteValueFromRecords(OldCond);
Dan Gohman010ee2d2008-05-21 00:54:12 +00001678 OldCond->replaceAllUsesWith(Cond);
Evan Chengcdf43b12007-10-25 09:11:16 +00001679 OldCond->eraseFromParent();
Evan Cheng168a66b2007-10-26 23:08:19 +00001680
Evan Chengcdf43b12007-10-25 09:11:16 +00001681 IVUsesByStride[*CondStride].Users.pop_back();
Evan Chengaf62c092007-10-29 22:07:18 +00001682 SCEVHandle NewOffset = TyBits == NewTyBits
1683 ? SE->getMulExpr(CondUse->Offset,
1684 SE->getConstant(ConstantInt::get(CmpTy, Scale)))
1685 : SE->getConstant(ConstantInt::get(NewCmpTy,
1686 cast<SCEVConstant>(CondUse->Offset)->getValue()->getSExtValue()*Scale));
Evan Chengcdf43b12007-10-25 09:11:16 +00001687 IVUsesByStride[*NewStride].addUser(NewOffset, Cond, NewIncV);
1688 CondUse = &IVUsesByStride[*NewStride].Users.back();
1689 CondStride = NewStride;
1690 ++NumEliminated;
1691 }
1692
1693 return Cond;
1694}
1695
Dan Gohmanad7321f2008-09-15 21:22:06 +00001696/// OptimizeSMax - Rewrite the loop's terminating condition if it uses
1697/// an smax computation.
1698///
1699/// This is a narrow solution to a specific, but acute, problem. For loops
1700/// like this:
1701///
1702/// i = 0;
1703/// do {
1704/// p[i] = 0.0;
1705/// } while (++i < n);
1706///
1707/// where the comparison is signed, the trip count isn't just 'n', because
1708/// 'n' could be negative. And unfortunately this can come up even for loops
1709/// where the user didn't use a C do-while loop. For example, seemingly
1710/// well-behaved top-test loops will commonly be lowered like this:
1711//
1712/// if (n > 0) {
1713/// i = 0;
1714/// do {
1715/// p[i] = 0.0;
1716/// } while (++i < n);
1717/// }
1718///
1719/// and then it's possible for subsequent optimization to obscure the if
1720/// test in such a way that indvars can't find it.
1721///
1722/// When indvars can't find the if test in loops like this, it creates a
1723/// signed-max expression, which allows it to give the loop a canonical
1724/// induction variable:
1725///
1726/// i = 0;
1727/// smax = n < 1 ? 1 : n;
1728/// do {
1729/// p[i] = 0.0;
1730/// } while (++i != smax);
1731///
1732/// Canonical induction variables are necessary because the loop passes
1733/// are designed around them. The most obvious example of this is the
1734/// LoopInfo analysis, which doesn't remember trip count values. It
1735/// expects to be able to rediscover the trip count each time it is
1736/// needed, and it does this using a simple analyis that only succeeds if
1737/// the loop has a canonical induction variable.
1738///
1739/// However, when it comes time to generate code, the maximum operation
1740/// can be quite costly, especially if it's inside of an outer loop.
1741///
1742/// This function solves this problem by detecting this type of loop and
1743/// rewriting their conditions from ICMP_NE back to ICMP_SLT, and deleting
1744/// the instructions for the maximum computation.
1745///
1746ICmpInst *LoopStrengthReduce::OptimizeSMax(Loop *L, ICmpInst *Cond,
1747 IVStrideUse* &CondUse) {
1748 // Check that the loop matches the pattern we're looking for.
1749 if (Cond->getPredicate() != CmpInst::ICMP_EQ &&
1750 Cond->getPredicate() != CmpInst::ICMP_NE)
1751 return Cond;
1752
1753 SelectInst *Sel = dyn_cast<SelectInst>(Cond->getOperand(1));
1754 if (!Sel || !Sel->hasOneUse()) return Cond;
1755
1756 SCEVHandle IterationCount = SE->getIterationCount(L);
1757 if (isa<SCEVCouldNotCompute>(IterationCount))
1758 return Cond;
1759 SCEVHandle One = SE->getIntegerSCEV(1, IterationCount->getType());
1760
1761 // Adjust for an annoying getIterationCount quirk.
1762 IterationCount = SE->getAddExpr(IterationCount, One);
1763
1764 // Check for a max calculation that matches the pattern.
1765 SCEVSMaxExpr *SMax = dyn_cast<SCEVSMaxExpr>(IterationCount);
1766 if (!SMax || SMax != SE->getSCEV(Sel)) return Cond;
1767
1768 SCEVHandle SMaxLHS = SMax->getOperand(0);
1769 SCEVHandle SMaxRHS = SMax->getOperand(1);
1770 if (!SMaxLHS || SMaxLHS != One) return Cond;
1771
1772 // Check the relevant induction variable for conformance to
1773 // the pattern.
1774 SCEVHandle IV = SE->getSCEV(Cond->getOperand(0));
1775 SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(IV);
1776 if (!AR || !AR->isAffine() ||
1777 AR->getStart() != One ||
1778 AR->getStepRecurrence(*SE) != One)
1779 return Cond;
1780
1781 // Check the right operand of the select, and remember it, as it will
1782 // be used in the new comparison instruction.
1783 Value *NewRHS = 0;
1784 if (SE->getSCEV(Sel->getOperand(1)) == SMaxRHS)
1785 NewRHS = Sel->getOperand(1);
1786 else if (SE->getSCEV(Sel->getOperand(2)) == SMaxRHS)
1787 NewRHS = Sel->getOperand(2);
1788 if (!NewRHS) return Cond;
1789
1790 // Ok, everything looks ok to change the condition into an SLT or SGE and
1791 // delete the max calculation.
1792 ICmpInst *NewCond =
1793 new ICmpInst(Cond->getPredicate() == CmpInst::ICMP_NE ?
1794 CmpInst::ICMP_SLT :
1795 CmpInst::ICMP_SGE,
1796 Cond->getOperand(0), NewRHS, "scmp", Cond);
1797
1798 // Delete the max calculation instructions.
Dan Gohman586b7b72008-10-01 02:02:03 +00001799 SE->deleteValueFromRecords(Cond);
Dan Gohmanad7321f2008-09-15 21:22:06 +00001800 Cond->replaceAllUsesWith(NewCond);
1801 Cond->eraseFromParent();
Dan Gohmanad7321f2008-09-15 21:22:06 +00001802 Instruction *Cmp = cast<Instruction>(Sel->getOperand(0));
Dan Gohmanad7321f2008-09-15 21:22:06 +00001803 SE->deleteValueFromRecords(Sel);
Dan Gohman586b7b72008-10-01 02:02:03 +00001804 Sel->eraseFromParent();
Dan Gohmanad7321f2008-09-15 21:22:06 +00001805 if (Cmp->use_empty()) {
Dan Gohmanad7321f2008-09-15 21:22:06 +00001806 SE->deleteValueFromRecords(Cmp);
Dan Gohman586b7b72008-10-01 02:02:03 +00001807 Cmp->eraseFromParent();
Dan Gohmanad7321f2008-09-15 21:22:06 +00001808 }
1809 CondUse->User = NewCond;
1810 return NewCond;
1811}
1812
Devang Patela0b39092008-08-26 17:57:54 +00001813/// OptimizeShadowIV - If IV is used in a int-to-float cast
1814/// inside the loop then try to eliminate the cast opeation.
1815void LoopStrengthReduce::OptimizeShadowIV(Loop *L) {
1816
1817 SCEVHandle IterationCount = SE->getIterationCount(L);
1818 if (isa<SCEVCouldNotCompute>(IterationCount))
1819 return;
1820
1821 for (unsigned Stride = 0, e = StrideOrder.size(); Stride != e;
1822 ++Stride) {
1823 std::map<SCEVHandle, IVUsersOfOneStride>::iterator SI =
1824 IVUsesByStride.find(StrideOrder[Stride]);
1825 assert(SI != IVUsesByStride.end() && "Stride doesn't exist!");
1826 if (!isa<SCEVConstant>(SI->first))
1827 continue;
1828
1829 for (std::vector<IVStrideUse>::iterator UI = SI->second.Users.begin(),
1830 E = SI->second.Users.end(); UI != E; /* empty */) {
1831 std::vector<IVStrideUse>::iterator CandidateUI = UI;
Devang Patel54153272008-08-27 17:50:18 +00001832 ++UI;
Devang Patela0b39092008-08-26 17:57:54 +00001833 Instruction *ShadowUse = CandidateUI->User;
1834 const Type *DestTy = NULL;
1835
1836 /* If shadow use is a int->float cast then insert a second IV
Devang Patel54153272008-08-27 17:50:18 +00001837 to eliminate this cast.
Devang Patela0b39092008-08-26 17:57:54 +00001838
1839 for (unsigned i = 0; i < n; ++i)
1840 foo((double)i);
1841
Devang Patel54153272008-08-27 17:50:18 +00001842 is transformed into
Devang Patela0b39092008-08-26 17:57:54 +00001843
1844 double d = 0.0;
1845 for (unsigned i = 0; i < n; ++i, ++d)
1846 foo(d);
1847 */
Devang Patel54153272008-08-27 17:50:18 +00001848 if (UIToFPInst *UCast = dyn_cast<UIToFPInst>(CandidateUI->User))
Devang Patela0b39092008-08-26 17:57:54 +00001849 DestTy = UCast->getDestTy();
Devang Patel54153272008-08-27 17:50:18 +00001850 else if (SIToFPInst *SCast = dyn_cast<SIToFPInst>(CandidateUI->User))
Devang Patela0b39092008-08-26 17:57:54 +00001851 DestTy = SCast->getDestTy();
Devang Patel18bb2782008-08-27 20:55:23 +00001852 if (!DestTy) continue;
1853
1854 if (TLI) {
1855 /* If target does not support DestTy natively then do not apply
1856 this transformation. */
1857 MVT DVT = TLI->getValueType(DestTy);
1858 if (!TLI->isTypeLegal(DVT)) continue;
1859 }
1860
Devang Patela0b39092008-08-26 17:57:54 +00001861 PHINode *PH = dyn_cast<PHINode>(ShadowUse->getOperand(0));
1862 if (!PH) continue;
1863 if (PH->getNumIncomingValues() != 2) continue;
1864
1865 const Type *SrcTy = PH->getType();
1866 int Mantissa = DestTy->getFPMantissaWidth();
1867 if (Mantissa == -1) continue;
1868 if ((int)TD->getTypeSizeInBits(SrcTy) > Mantissa)
1869 continue;
1870
1871 unsigned Entry, Latch;
1872 if (PH->getIncomingBlock(0) == L->getLoopPreheader()) {
1873 Entry = 0;
1874 Latch = 1;
1875 } else {
1876 Entry = 1;
1877 Latch = 0;
1878 }
1879
1880 ConstantInt *Init = dyn_cast<ConstantInt>(PH->getIncomingValue(Entry));
1881 if (!Init) continue;
1882 ConstantFP *NewInit = ConstantFP::get(DestTy, Init->getZExtValue());
1883
1884 BinaryOperator *Incr =
1885 dyn_cast<BinaryOperator>(PH->getIncomingValue(Latch));
1886 if (!Incr) continue;
1887 if (Incr->getOpcode() != Instruction::Add
1888 && Incr->getOpcode() != Instruction::Sub)
1889 continue;
1890
1891 /* Initialize new IV, double d = 0.0 in above example. */
1892 ConstantInt *C = NULL;
1893 if (Incr->getOperand(0) == PH)
1894 C = dyn_cast<ConstantInt>(Incr->getOperand(1));
1895 else if (Incr->getOperand(1) == PH)
1896 C = dyn_cast<ConstantInt>(Incr->getOperand(0));
1897 else
1898 continue;
1899
1900 if (!C) continue;
1901
1902 /* Add new PHINode. */
1903 PHINode *NewPH = PHINode::Create(DestTy, "IV.S.", PH);
1904
Devang Patel54153272008-08-27 17:50:18 +00001905 /* create new increment. '++d' in above example. */
Devang Patela0b39092008-08-26 17:57:54 +00001906 ConstantFP *CFP = ConstantFP::get(DestTy, C->getZExtValue());
1907 BinaryOperator *NewIncr =
1908 BinaryOperator::Create(Incr->getOpcode(),
1909 NewPH, CFP, "IV.S.next.", Incr);
1910
1911 NewPH->addIncoming(NewInit, PH->getIncomingBlock(Entry));
1912 NewPH->addIncoming(NewIncr, PH->getIncomingBlock(Latch));
1913
1914 /* Remove cast operation */
1915 SE->deleteValueFromRecords(ShadowUse);
1916 ShadowUse->replaceAllUsesWith(NewPH);
1917 ShadowUse->eraseFromParent();
1918 SI->second.Users.erase(CandidateUI);
1919 NumShadow++;
1920 break;
1921 }
1922 }
1923}
1924
Chris Lattner010de252005-08-08 05:28:22 +00001925// OptimizeIndvars - Now that IVUsesByStride is set up with all of the indvar
1926// uses in the loop, look to see if we can eliminate some, in favor of using
1927// common indvars for the different uses.
1928void LoopStrengthReduce::OptimizeIndvars(Loop *L) {
1929 // TODO: implement optzns here.
1930
Devang Patela0b39092008-08-26 17:57:54 +00001931 OptimizeShadowIV(L);
1932
Chris Lattner010de252005-08-08 05:28:22 +00001933 // Finally, get the terminating condition for the loop if possible. If we
1934 // can, we want to change it to use a post-incremented version of its
Chris Lattner98d98112006-03-24 07:14:34 +00001935 // induction variable, to allow coalescing the live ranges for the IV into
Chris Lattner010de252005-08-08 05:28:22 +00001936 // one register value.
1937 PHINode *SomePHI = cast<PHINode>(L->getHeader()->begin());
1938 BasicBlock *Preheader = L->getLoopPreheader();
1939 BasicBlock *LatchBlock =
1940 SomePHI->getIncomingBlock(SomePHI->getIncomingBlock(0) == Preheader);
1941 BranchInst *TermBr = dyn_cast<BranchInst>(LatchBlock->getTerminator());
Reid Spencere4d87aa2006-12-23 06:05:41 +00001942 if (!TermBr || TermBr->isUnconditional() ||
1943 !isa<ICmpInst>(TermBr->getCondition()))
Chris Lattner010de252005-08-08 05:28:22 +00001944 return;
Reid Spencere4d87aa2006-12-23 06:05:41 +00001945 ICmpInst *Cond = cast<ICmpInst>(TermBr->getCondition());
Chris Lattner010de252005-08-08 05:28:22 +00001946
1947 // Search IVUsesByStride to find Cond's IVUse if there is one.
1948 IVStrideUse *CondUse = 0;
Chris Lattner50fad702005-08-10 00:45:21 +00001949 const SCEVHandle *CondStride = 0;
Chris Lattner010de252005-08-08 05:28:22 +00001950
Devang Patelc677de22008-08-13 20:31:11 +00001951 if (!FindIVUserForCond(Cond, CondUse, CondStride))
Chris Lattneraed01d12007-04-03 05:11:24 +00001952 return; // setcc doesn't use the IV.
Evan Chengcdf43b12007-10-25 09:11:16 +00001953
Dan Gohmanad7321f2008-09-15 21:22:06 +00001954 // If the trip count is computed in terms of an smax (due to ScalarEvolution
1955 // being unable to find a sufficient guard, for example), change the loop
1956 // comparison to use SLT instead of NE.
1957 Cond = OptimizeSMax(L, Cond, CondUse);
1958
Evan Chengcdf43b12007-10-25 09:11:16 +00001959 // If possible, change stride and operands of the compare instruction to
1960 // eliminate one stride.
1961 Cond = ChangeCompareStride(L, Cond, CondUse, CondStride);
Chris Lattner010de252005-08-08 05:28:22 +00001962
Chris Lattner010de252005-08-08 05:28:22 +00001963 // It's possible for the setcc instruction to be anywhere in the loop, and
1964 // possible for it to have multiple users. If it is not immediately before
1965 // the latch block branch, move it.
1966 if (&*++BasicBlock::iterator(Cond) != (Instruction*)TermBr) {
1967 if (Cond->hasOneUse()) { // Condition has a single use, just move it.
1968 Cond->moveBefore(TermBr);
1969 } else {
1970 // Otherwise, clone the terminating condition and insert into the loopend.
Reid Spencere4d87aa2006-12-23 06:05:41 +00001971 Cond = cast<ICmpInst>(Cond->clone());
Chris Lattner010de252005-08-08 05:28:22 +00001972 Cond->setName(L->getHeader()->getName() + ".termcond");
1973 LatchBlock->getInstList().insert(TermBr, Cond);
1974
1975 // Clone the IVUse, as the old use still exists!
Chris Lattner50fad702005-08-10 00:45:21 +00001976 IVUsesByStride[*CondStride].addUser(CondUse->Offset, Cond,
Chris Lattner010de252005-08-08 05:28:22 +00001977 CondUse->OperandValToReplace);
Chris Lattner50fad702005-08-10 00:45:21 +00001978 CondUse = &IVUsesByStride[*CondStride].Users.back();
Chris Lattner010de252005-08-08 05:28:22 +00001979 }
1980 }
1981
1982 // If we get to here, we know that we can transform the setcc instruction to
Chris Lattner98d98112006-03-24 07:14:34 +00001983 // use the post-incremented version of the IV, allowing us to coalesce the
Chris Lattner010de252005-08-08 05:28:22 +00001984 // live ranges for the IV correctly.
Dan Gohman246b2562007-10-22 18:31:58 +00001985 CondUse->Offset = SE->getMinusSCEV(CondUse->Offset, *CondStride);
Chris Lattner010de252005-08-08 05:28:22 +00001986 CondUse->isUseOfPostIncrementedValue = true;
Evan Cheng1ce75dc2008-07-07 19:51:32 +00001987 Changed = true;
Chris Lattner010de252005-08-08 05:28:22 +00001988}
Nate Begeman16997482005-07-30 00:15:07 +00001989
Devang Patel0f54dcb2007-03-06 21:14:09 +00001990bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager &LPM) {
Nate Begemaneaa13852004-10-18 21:08:22 +00001991
Devang Patel0f54dcb2007-03-06 21:14:09 +00001992 LI = &getAnalysis<LoopInfo>();
Devang Patelb7d9dfc2007-06-07 21:42:15 +00001993 DT = &getAnalysis<DominatorTree>();
Devang Patel0f54dcb2007-03-06 21:14:09 +00001994 SE = &getAnalysis<ScalarEvolution>();
1995 TD = &getAnalysis<TargetData>();
1996 UIntPtrTy = TD->getIntPtrType();
Dan Gohman3fea6432008-07-14 17:55:01 +00001997 Changed = false;
Devang Patel0f54dcb2007-03-06 21:14:09 +00001998
1999 // Find all uses of induction variables in this loop, and catagorize
Nate Begeman16997482005-07-30 00:15:07 +00002000 // them by stride. Start by finding all of the PHI nodes in the header for
2001 // this loop. If they are induction variables, inspect their uses.
Evan Cheng168a66b2007-10-26 23:08:19 +00002002 SmallPtrSet<Instruction*,16> Processed; // Don't reprocess instructions.
Nate Begeman16997482005-07-30 00:15:07 +00002003 for (BasicBlock::iterator I = L->getHeader()->begin(); isa<PHINode>(I); ++I)
Chris Lattner3416e5f2005-08-04 17:40:30 +00002004 AddUsersIfInteresting(I, L, Processed);
Nate Begemaneaa13852004-10-18 21:08:22 +00002005
Evan Cheng1ce75dc2008-07-07 19:51:32 +00002006 if (!IVUsesByStride.empty()) {
2007 // Optimize induction variables. Some indvar uses can be transformed to use
2008 // strides that will be needed for other purposes. A common example of this
2009 // is the exit test for the loop, which can often be rewritten to use the
2010 // computation of some other indvar to decide when to terminate the loop.
2011 OptimizeIndvars(L);
Chris Lattner010de252005-08-08 05:28:22 +00002012
Evan Cheng1ce75dc2008-07-07 19:51:32 +00002013 // FIXME: We can widen subreg IV's here for RISC targets. e.g. instead of
2014 // doing computation in byte values, promote to 32-bit values if safe.
Chris Lattner010de252005-08-08 05:28:22 +00002015
Evan Cheng1ce75dc2008-07-07 19:51:32 +00002016 // FIXME: Attempt to reuse values across multiple IV's. In particular, we
2017 // could have something like "for(i) { foo(i*8); bar(i*16) }", which should
2018 // be codegened as "for (j = 0;; j+=8) { foo(j); bar(j+j); }" on X86/PPC.
2019 // Need to be careful that IV's are all the same type. Only works for
2020 // intptr_t indvars.
Misha Brukmanfd939082005-04-21 23:48:37 +00002021
Evan Cheng1ce75dc2008-07-07 19:51:32 +00002022 // If we only have one stride, we can more aggressively eliminate some
2023 // things.
2024 bool HasOneStride = IVUsesByStride.size() == 1;
Evan Chengd1d6b5c2006-03-16 21:53:05 +00002025
2026#ifndef NDEBUG
Evan Cheng1ce75dc2008-07-07 19:51:32 +00002027 DOUT << "\nLSR on ";
2028 DEBUG(L->dump());
Evan Chengd1d6b5c2006-03-16 21:53:05 +00002029#endif
2030
Evan Cheng1ce75dc2008-07-07 19:51:32 +00002031 // IVsByStride keeps IVs for one particular loop.
2032 assert(IVsByStride.empty() && "Stale entries in IVsByStride?");
Evan Chengd1d6b5c2006-03-16 21:53:05 +00002033
Evan Cheng1ce75dc2008-07-07 19:51:32 +00002034 // Sort the StrideOrder so we process larger strides first.
2035 std::stable_sort(StrideOrder.begin(), StrideOrder.end(), StrideCompare());
Evan Cheng4496a502006-03-18 00:44:49 +00002036
Evan Cheng1ce75dc2008-07-07 19:51:32 +00002037 // Note: this processes each stride/type pair individually. All users
2038 // passed into StrengthReduceStridedIVUsers have the same type AND stride.
2039 // Also, note that we iterate over IVUsesByStride indirectly by using
2040 // StrideOrder. This extra layer of indirection makes the ordering of
2041 // strides deterministic - not dependent on map order.
2042 for (unsigned Stride = 0, e = StrideOrder.size(); Stride != e; ++Stride) {
2043 std::map<SCEVHandle, IVUsersOfOneStride>::iterator SI =
2044 IVUsesByStride.find(StrideOrder[Stride]);
2045 assert(SI != IVUsesByStride.end() && "Stride doesn't exist!");
2046 StrengthReduceStridedIVUsers(SI->first, SI->second, L, HasOneStride);
2047 }
Chris Lattner7305ae22005-10-09 06:20:55 +00002048 }
Nate Begemaneaa13852004-10-18 21:08:22 +00002049
Dan Gohman010ee2d2008-05-21 00:54:12 +00002050 // We're done analyzing this loop; release all the state we built up for it.
2051 CastedPointers.clear();
2052 IVUsesByStride.clear();
2053 IVsByStride.clear();
2054 StrideOrder.clear();
2055
Nate Begemaneaa13852004-10-18 21:08:22 +00002056 // Clean up after ourselves
2057 if (!DeadInsts.empty()) {
2058 DeleteTriviallyDeadInstructions(DeadInsts);
2059
Nate Begeman16997482005-07-30 00:15:07 +00002060 BasicBlock::iterator I = L->getHeader()->begin();
Dan Gohmancbfe5bb2008-06-22 20:44:02 +00002061 while (PHINode *PN = dyn_cast<PHINode>(I++)) {
2062 // At this point, we know that we have killed one or more IV users.
Chris Lattnerbfcee362008-12-01 06:11:32 +00002063 // It is worth checking to see if the cannonical indvar is also
Dan Gohmancbfe5bb2008-06-22 20:44:02 +00002064 // dead, so that we can remove it as well.
2065 //
2066 // We can remove a PHI if it is on a cycle in the def-use graph
2067 // where each node in the cycle has degree one, i.e. only one use,
2068 // and is an instruction with no side effects.
2069 //
Nate Begeman16997482005-07-30 00:15:07 +00002070 // FIXME: this needs to eliminate an induction variable even if it's being
2071 // compared against some value to decide loop termination.
Chris Lattnera0d44862008-11-27 23:00:20 +00002072 if (!PN->hasOneUse())
2073 continue;
2074
2075 SmallPtrSet<PHINode *, 4> PHIs;
2076 for (Instruction *J = dyn_cast<Instruction>(*PN->use_begin());
2077 J && J->hasOneUse() && !J->mayWriteToMemory();
2078 J = dyn_cast<Instruction>(*J->use_begin())) {
2079 // If we find the original PHI, we've discovered a cycle.
2080 if (J == PN) {
2081 // Break the cycle and mark the PHI for deletion.
2082 SE->deleteValueFromRecords(PN);
2083 PN->replaceAllUsesWith(UndefValue::get(PN->getType()));
2084 DeadInsts.insert(PN);
2085 Changed = true;
2086 break;
Chris Lattner7e608bb2005-08-02 02:52:02 +00002087 }
Chris Lattnera0d44862008-11-27 23:00:20 +00002088 // If we find a PHI more than once, we're on a cycle that
2089 // won't prove fruitful.
2090 if (isa<PHINode>(J) && !PHIs.insert(cast<PHINode>(J)))
2091 break;
Nate Begeman16997482005-07-30 00:15:07 +00002092 }
Nate Begemaneaa13852004-10-18 21:08:22 +00002093 }
Nate Begeman16997482005-07-30 00:15:07 +00002094 DeleteTriviallyDeadInstructions(DeadInsts);
Nate Begemaneaa13852004-10-18 21:08:22 +00002095 }
Evan Cheng1ce75dc2008-07-07 19:51:32 +00002096 return Changed;
Nate Begemaneaa13852004-10-18 21:08:22 +00002097}