blob: 7d4a1041dac70632fbed23cdbec90b84183ceb16 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- LoopStrengthReduce.cpp - Strength Reduce GEPs in Loops -------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This pass performs a strength reduction on array references inside loops that
11// have as one or more of their components the loop induction variable. This is
12// accomplished by creating a new Value to hold the initial value of the array
13// access for the first iteration, and then creating a new GEP instruction in
14// the loop to increment the value by the appropriate amount.
15//
16//===----------------------------------------------------------------------===//
17
18#define DEBUG_TYPE "loop-reduce"
19#include "llvm/Transforms/Scalar.h"
20#include "llvm/Constants.h"
21#include "llvm/Instructions.h"
22#include "llvm/IntrinsicInst.h"
23#include "llvm/Type.h"
24#include "llvm/DerivedTypes.h"
25#include "llvm/Analysis/Dominators.h"
26#include "llvm/Analysis/LoopInfo.h"
27#include "llvm/Analysis/LoopPass.h"
28#include "llvm/Analysis/ScalarEvolutionExpander.h"
29#include "llvm/Support/CFG.h"
30#include "llvm/Support/GetElementPtrTypeIterator.h"
31#include "llvm/Transforms/Utils/BasicBlockUtils.h"
32#include "llvm/Transforms/Utils/Local.h"
33#include "llvm/Target/TargetData.h"
Evan Chengc9684fa2008-06-16 21:08:17 +000034#include "llvm/ADT/SetVector.h"
Evan Cheng635b8f82007-10-26 23:08:19 +000035#include "llvm/ADT/SmallPtrSet.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036#include "llvm/ADT/Statistic.h"
37#include "llvm/Support/Debug.h"
38#include "llvm/Support/Compiler.h"
39#include "llvm/Target/TargetLowering.h"
40#include <algorithm>
41#include <set>
42using namespace llvm;
43
Evan Cheng335d87d2007-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 Patelc1fc0fc2008-08-27 17:50:18 +000047STATISTIC(NumEliminated, "Number of strides eliminated");
48STATISTIC(NumShadow, "Number of Shadow IVs optimized");
Dan Gohmanf17a25c2007-07-18 16:29:46 +000049
50namespace {
51
52 struct BasedUser;
53
54 /// 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 Gohman3e749e92007-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.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000058 struct VISIBILITY_HIDDEN IVStrideUse {
59 SCEVHandle Offset;
60 Instruction *User;
61 Value *OperandValToReplace;
62
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
66 // instruction for a loop or uses dominated by the loop.
67 bool isUseOfPostIncrementedValue;
68
69 IVStrideUse(const SCEVHandle &Offs, Instruction *U, Value *O)
70 : Offset(Offs), User(U), OperandValToReplace(O),
71 isUseOfPostIncrementedValue(false) {}
72 };
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.
78 struct VISIBILITY_HIDDEN IVUsersOfOneStride {
79 /// Users - Keep track of all of the users of this stride as well as the
80 /// 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));
85 }
86 };
87
88 /// IVInfo - This structure keeps track of one IV expression inserted during
89 /// StrengthReduceStridedIVUsers. It contains the stride, the common base, as
90 /// well as the PHI node and increment value created for rewrite.
91 struct VISIBILITY_HIDDEN IVExpr {
92 SCEVHandle Stride;
93 SCEVHandle Base;
94 PHINode *PHI;
95 Value *IncV;
96
Dan Gohmanf17a25c2007-07-18 16:29:46 +000097 IVExpr(const SCEVHandle &stride, const SCEVHandle &base, PHINode *phi,
98 Value *incv)
99 : Stride(stride), Base(base), PHI(phi), IncV(incv) {}
100 };
101
102 /// IVsOfOneStride - This structure keeps track of all IV expression inserted
103 /// during StrengthReduceStridedIVUsers for a particular stride of the IV.
104 struct VISIBILITY_HIDDEN IVsOfOneStride {
105 std::vector<IVExpr> IVs;
106
107 void addIV(const SCEVHandle &Stride, const SCEVHandle &Base, PHINode *PHI,
108 Value *IncV) {
109 IVs.push_back(IVExpr(Stride, Base, PHI, IncV));
110 }
111 };
112
113 class VISIBILITY_HIDDEN LoopStrengthReduce : public LoopPass {
114 LoopInfo *LI;
115 DominatorTree *DT;
116 ScalarEvolution *SE;
117 const TargetData *TD;
118 const Type *UIntPtrTy;
119 bool Changed;
120
121 /// 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.
123 std::map<SCEVHandle, IVUsersOfOneStride> IVUsesByStride;
124
125 /// IVsByStride - Keep track of all IVs that have been inserted for a
126 /// particular stride.
127 std::map<SCEVHandle, IVsOfOneStride> IVsByStride;
128
129 /// 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 Chengd7ea7002007-10-30 22:27:26 +0000132 SmallVector<SCEVHandle, 16> StrideOrder;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000133
134 /// 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 Chengd7ea7002007-10-30 22:27:26 +0000137 DenseMap<Value*, Value*> CastedPointers;
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Chengc9684fa2008-06-16 21:08:17 +0000141 SetVector<Instruction*> DeadInsts;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000142
143 /// TLI - Keep a pointer of a TargetLowering to consult for determining
144 /// transformation profitability.
145 const TargetLowering *TLI;
146
147 public:
148 static char ID; // Pass ID, replacement for typeid
Dan Gohman34c280e2007-08-01 15:32:29 +0000149 explicit LoopStrengthReduce(const TargetLowering *tli = NULL) :
Dan Gohman26f8c272008-09-04 17:05:41 +0000150 LoopPass(&ID), TLI(tli) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000151 }
152
153 bool runOnLoop(Loop *L, LPPassManager &LPM);
154
155 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
156 // 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>();
160 AU.addPreserved<DominanceFrontier>();
161 AU.addPreserved<DominatorTree>();
162
163 AU.addRequiredID(LoopSimplifyID);
164 AU.addRequired<LoopInfo>();
165 AU.addRequired<DominatorTree>();
166 AU.addRequired<TargetData>();
167 AU.addRequired<ScalarEvolution>();
Devang Patele4a78772008-08-26 17:57:54 +0000168 AU.addPreserved<ScalarEvolution>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000169 }
170
171 /// getCastedVersionOf - Return the specified value casted to uintptr_t.
172 ///
173 Value *getCastedVersionOf(Instruction::CastOps opcode, Value *V);
174private:
175 bool AddUsersIfInteresting(Instruction *I, Loop *L,
Evan Cheng635b8f82007-10-26 23:08:19 +0000176 SmallPtrSet<Instruction*,16> &Processed);
Dan Gohman5c740ec2007-10-29 19:31:25 +0000177 SCEVHandle GetExpressionSCEV(Instruction *E);
Evan Cheng335d87d2007-10-25 09:11:16 +0000178 ICmpInst *ChangeCompareStride(Loop *L, ICmpInst *Cond,
179 IVStrideUse* &CondUse,
180 const SCEVHandle* &CondStride);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000181 void OptimizeIndvars(Loop *L);
Devang Patele4a78772008-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 Gohman156bf982008-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 Patel7983eaa2008-08-13 20:31:11 +0000192 bool FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse,
Devang Patele4a78772008-08-26 17:57:54 +0000193 const SCEVHandle *&CondStride);
Evan Cheng5385ab72007-10-25 22:45:20 +0000194 bool RequiresTypeConversion(const Type *Ty, const Type *NewTy);
Evan Cheng27a820a2007-10-26 01:56:11 +0000195 unsigned CheckForIVReuse(bool, bool, const SCEVHandle&,
Dan Gohman5766ac72007-10-22 20:40:42 +0000196 IVExpr&, const Type*,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000197 const std::vector<BasedUser>& UsersToProcess);
Dan Gohman5766ac72007-10-22 20:40:42 +0000198 bool ValidStride(bool, int64_t,
199 const std::vector<BasedUser>& UsersToProcess);
Evan Cheng5385ab72007-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);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000205 void StrengthReduceStridedIVUsers(const SCEVHandle &Stride,
206 IVUsersOfOneStride &Uses,
207 Loop *L, bool isOnlyStride);
Evan Chengc9684fa2008-06-16 21:08:17 +0000208 void DeleteTriviallyDeadInstructions(SetVector<Instruction*> &Insts);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000209 };
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000210}
211
Dan Gohman089efff2008-05-13 00:00:25 +0000212char LoopStrengthReduce::ID = 0;
213static RegisterPass<LoopStrengthReduce>
214X("loop-reduce", "Loop Strength Reduction");
215
Daniel Dunbar163555a2008-10-22 23:32:42 +0000216Pass *llvm::createLoopStrengthReducePass(const TargetLowering *TLI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000217 return new LoopStrengthReduce(TLI);
218}
219
220/// getCastedVersionOf - Return the specified value casted to uintptr_t. This
221/// assumes that the Value* V is of integer or pointer type only.
222///
223Value *LoopStrengthReduce::getCastedVersionOf(Instruction::CastOps opcode,
224 Value *V) {
225 if (V->getType() == UIntPtrTy) return V;
226 if (Constant *CB = dyn_cast<Constant>(V))
227 return ConstantExpr::getCast(opcode, CB, UIntPtrTy);
228
229 Value *&New = CastedPointers[V];
230 if (New) return New;
231
232 New = SCEVExpander::InsertCastOfTo(opcode, V, UIntPtrTy);
233 DeadInsts.insert(cast<Instruction>(New));
234 return New;
235}
236
237
238/// 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 Chengc9684fa2008-06-16 21:08:17 +0000242DeleteTriviallyDeadInstructions(SetVector<Instruction*> &Insts) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000243 while (!Insts.empty()) {
Evan Chengc9684fa2008-06-16 21:08:17 +0000244 Instruction *I = Insts.back();
245 Insts.pop_back();
Evan Chengf7ef8852007-10-30 23:45:15 +0000246
Chris Lattner2757a1d2008-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 Wendlinge7e59722008-11-29 03:43:04 +0000256 Insts.insert(U);
Bill Wendlinge7e59722008-11-29 03:43:04 +0000257 }
258 }
Chris Lattner2757a1d2008-12-01 06:11:32 +0000259
260 I->eraseFromParent();
261 Changed = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000262 }
263}
264
265
266/// GetExpressionSCEV - Compute and return the SCEV for the specified
267/// instruction.
Dan Gohman5c740ec2007-10-29 19:31:25 +0000268SCEVHandle LoopStrengthReduce::GetExpressionSCEV(Instruction *Exp) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Gohman5c740ec2007-10-29 19:31:25 +0000274 SCEVHandle R = GetExpressionSCEV(cast<Instruction>(BCI->getOperand(0)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000275 SE->setSCEV(BCI, R);
276 return R;
277 }
278
279 // 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.
283 GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Exp);
284 if (!GEP || SE->hasSCEV(GEP))
285 return SE->getSCEV(Exp);
286
287 // Analyze all of the subscripts of this getelementptr instruction, looking
Dan Gohman5c740ec2007-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.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000290
291 // Build up the base expression. Insert an LLVM cast of the pointer to
292 // uintptr_t first.
Dan Gohman89f85052007-10-22 18:31:58 +0000293 SCEVHandle GEPVal = SE->getUnknown(
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000294 getCastedVersionOf(Instruction::PtrToInt, GEP->getOperand(0)));
295
296 gep_type_iterator GTI = gep_type_begin(GEP);
297
Gabor Greif5e42ba12008-06-11 21:38:51 +0000298 for (User::op_iterator i = GEP->op_begin() + 1, e = GEP->op_end();
299 i != e; ++i, ++GTI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Greif5e42ba12008-06-11 21:38:51 +0000305 unsigned Idx = cast<ConstantInt>(*i)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000306 uint64_t Offset = SL->getElementOffset(Idx);
Dan Gohman89f85052007-10-22 18:31:58 +0000307 GEPVal = SE->getAddExpr(GEPVal,
308 SE->getIntegerSCEV(Offset, UIntPtrTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000309 } else {
310 unsigned GEPOpiBits =
Gabor Greif5e42ba12008-06-11 21:38:51 +0000311 (*i)->getType()->getPrimitiveSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000312 unsigned IntPtrBits = UIntPtrTy->getPrimitiveSizeInBits();
313 Instruction::CastOps opcode = (GEPOpiBits < IntPtrBits ?
314 Instruction::SExt : (GEPOpiBits > IntPtrBits ? Instruction::Trunc :
315 Instruction::BitCast));
Gabor Greif5e42ba12008-06-11 21:38:51 +0000316 Value *OpVal = getCastedVersionOf(opcode, *i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000317 SCEVHandle Idx = SE->getSCEV(OpVal);
318
Dale Johannesen5ec2e732007-10-01 23:08:35 +0000319 uint64_t TypeSize = TD->getABITypeSize(GTI.getIndexedType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000320 if (TypeSize != 1)
Dan Gohman89f85052007-10-22 18:31:58 +0000321 Idx = SE->getMulExpr(Idx,
322 SE->getConstant(ConstantInt::get(UIntPtrTy,
323 TypeSize)));
324 GEPVal = SE->getAddExpr(GEPVal, Idx);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000325 }
326 }
327
328 SE->setSCEV(GEP, GEPVal);
329 return GEPVal;
330}
331
332/// 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 Gohman89f85052007-10-22 18:31:58 +0000337 SCEVHandle &Start, SCEVHandle &Stride,
338 ScalarEvolution *SE) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Gohman89f85052007-10-22 18:31:58 +0000348 TheAddRec = SE->getAddExpr(AddRec, TheAddRec);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000349 else
350 return false; // Nested IV of some sort?
351 } else {
Dan Gohman89f85052007-10-22 18:31:58 +0000352 Start = SE->getAddExpr(Start, AE->getOperand(i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000353 }
354
355 } else if (isa<SCEVAddRecExpr>(SH)) {
356 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 Gohman89f85052007-10-22 18:31:58 +0000367 Start = SE->getAddExpr(Start, AddRec->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000368
369 if (!isa<SCEVConstant>(AddRec->getOperand(1)))
370 DOUT << "[" << L->getHeader()->getName()
371 << "] Variable stride: " << *AddRec << "\n";
372
373 Stride = AddRec->getOperand(1);
374 return true;
375}
376
377/// 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 Chengf7ef8852007-10-30 23:45:15 +0000386 Loop *L, DominatorTree *DT, Pass *P,
Evan Chengc9684fa2008-06-16 21:08:17 +0000387 SetVector<Instruction*> &DeadInsts){
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000388 // If the user is in the loop, use the preinc value.
389 if (L->contains(User->getParent())) return false;
390
391 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.
395 if (DT->dominates(LatchBlock, User->getParent()))
396 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;
412 if (!DT->dominates(LatchBlock, PN->getIncomingBlock(i)))
413 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 Chengd7ea7002007-10-30 22:27:26 +0000421 SplitCriticalEdge(PN->getIncomingBlock(i), PN->getParent(), P, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000422 // Splitting the critical edge can reduce the number of entries in this
423 // PHI.
424 e = PN->getNumIncomingValues();
425 if (--NumUses == 0) break;
426 }
Evan Chengf7ef8852007-10-30 23:45:15 +0000427
428 // PHI node might have become a constant value after SplitCriticalEdge.
429 DeadInsts.insert(User);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000430
431 return true;
432}
433
434
435
436/// 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.
439bool LoopStrengthReduce::AddUsersIfInteresting(Instruction *I, Loop *L,
Evan Cheng635b8f82007-10-26 23:08:19 +0000440 SmallPtrSet<Instruction*,16> &Processed) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000441 if (!I->getType()->isInteger() && !isa<PointerType>(I->getType()))
Dan Gohman5de363f2008-04-14 18:26:16 +0000442 return false; // Void and FP expressions cannot be reduced.
Evan Cheng635b8f82007-10-26 23:08:19 +0000443 if (!Processed.insert(I))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000444 return true; // Instruction already handled.
445
446 // Get the symbolic expression for this instruction.
Dan Gohman5c740ec2007-10-29 19:31:25 +0000447 SCEVHandle ISE = GetExpressionSCEV(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000448 if (isa<SCEVCouldNotCompute>(ISE)) return false;
449
450 // Get the start and stride for this expression.
Dan Gohman89f85052007-10-22 18:31:58 +0000451 SCEVHandle Start = SE->getIntegerSCEV(0, ISE->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000452 SCEVHandle Stride = Start;
Dan Gohman89f85052007-10-22 18:31:58 +0000453 if (!getSCEVStartAndStride(ISE, L, Start, Stride, SE))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000454 return false; // Non-reducible symbolic expression, bail out.
455
456 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));
461
462 for (unsigned iused_index = 0, iused_size = IUsers.size();
463 iused_index != iused_size; ++iused_index) {
464
465 Instruction *User = IUsers[iused_index];
466
467 // Do not infinitely recurse on PHI nodes.
468 if (isa<PHINode>(User) && Processed.count(User))
469 continue;
470
471 // If this is an instruction defined in a nested loop, or outside this loop,
472 // don't recurse into it.
473 bool AddUserToIVUsers = false;
474 if (LI->getLoopFor(User->getParent()) != L) {
475 DOUT << "FOUND USER in other loop: " << *User
476 << " OF SCEV: " << *ISE << "\n";
477 AddUserToIVUsers = true;
478 } else if (!AddUsersIfInteresting(User, L, Processed)) {
479 DOUT << "FOUND USER: " << *User
480 << " OF SCEV: " << *ISE << "\n";
481 AddUserToIVUsers = true;
482 }
483
484 if (AddUserToIVUsers) {
485 IVUsersOfOneStride &StrideUses = IVUsesByStride[Stride];
486 if (StrideUses.Users.empty()) // First occurance of this stride?
487 StrideOrder.push_back(Stride);
488
489 // Okay, we found a user that we cannot reduce. Analyze the instruction
490 // 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 Chengf7ef8852007-10-30 23:45:15 +0000492 if (IVUseShouldUsePostIncValue(User, I, L, DT, this, DeadInsts)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000493 // The value used will be incremented by the stride more than we are
494 // expecting, so subtract this off.
Dan Gohman89f85052007-10-22 18:31:58 +0000495 SCEVHandle NewStart = SE->getMinusSCEV(Start, Stride);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000496 StrideUses.addUser(NewStart, User, I);
497 StrideUses.Users.back().isUseOfPostIncrementedValue = true;
498 DOUT << " USING POSTINC SCEV, START=" << *NewStart<< "\n";
499 } else {
500 StrideUses.addUser(Start, User, I);
501 }
502 }
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 Gohman89f85052007-10-22 18:31:58 +0000511 /// SE - The current ScalarEvolution object.
512 ScalarEvolution *SE;
513
Dan Gohmanf17a25c2007-07-18 16:29:46 +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
520 /// Inst - The instruction using the induction variable.
521 Instruction *Inst;
522
523 /// OperandValToReplace - The operand value of Inst to replace with the
524 /// EmittedBase.
525 Value *OperandValToReplace;
526
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
536 // 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
539 // instruction for a loop and uses outside the loop that are dominated by
540 // the loop.
541 bool isUseOfPostIncrementedValue;
542
Dan Gohman89f85052007-10-22 18:31:58 +0000543 BasedUser(IVStrideUse &IVSU, ScalarEvolution *se)
544 : SE(se), Base(IVSU.Offset), Inst(IVSU.User),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000545 OperandValToReplace(IVSU.OperandValToReplace),
Dan Gohman89f85052007-10-22 18:31:58 +0000546 Imm(SE->getIntegerSCEV(0, Base->getType())), EmittedBase(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000547 isUseOfPostIncrementedValue(IVSU.isUseOfPostIncrementedValue) {}
548
549 // 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.
552 void RewriteInstructionToUseNewBase(const SCEVHandle &NewBase,
Dan Gohmana78c8752008-05-15 23:26:57 +0000553 Instruction *InsertPt,
Evan Chengf7ef8852007-10-30 23:45:15 +0000554 SCEVExpander &Rewriter, Loop *L, Pass *P,
Evan Chengc9684fa2008-06-16 21:08:17 +0000555 SetVector<Instruction*> &DeadInsts);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000556
557 Value *InsertCodeForBaseAtPosition(const SCEVHandle &NewBase,
558 SCEVExpander &Rewriter,
559 Instruction *IP, Loop *L);
560 void dump() const;
561 };
562}
563
564void BasedUser::dump() const {
565 cerr << " Base=" << *Base;
566 cerr << " Imm=" << *Imm;
567 if (EmittedBase)
568 cerr << " EB=" << *EmittedBase;
569
570 cerr << " Inst: " << *Inst;
571}
572
573Value *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 Gohman7b560c42008-06-18 16:23:07 +0000594 if (Imm->isZero())
595 return Rewriter.expandCodeFor(NewBase, BaseInsertPt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000596
597 Value *Base = Rewriter.expandCodeFor(NewBase, BaseInsertPt);
598
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();
603
604 // Always emit the immediate (if non-zero) into the same block as the user.
Dan Gohman89f85052007-10-22 18:31:58 +0000605 SCEVHandle NewValSCEV = SE->getAddExpr(SE->getUnknown(Base), Imm);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000606 return Rewriter.expandCodeFor(NewValSCEV, IP);
607
608}
609
610
611// 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 Gohmana78c8752008-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//
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000617void BasedUser::RewriteInstructionToUseNewBase(const SCEVHandle &NewBase,
Dan Gohmana78c8752008-05-15 23:26:57 +0000618 Instruction *NewBasePt,
Evan Chengf7ef8852007-10-30 23:45:15 +0000619 SCEVExpander &Rewriter, Loop *L, Pass *P,
Evan Chengc9684fa2008-06-16 21:08:17 +0000620 SetVector<Instruction*> &DeadInsts) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000621 if (!isa<PHINode>(Inst)) {
622 // 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 Gohman50b570a2008-05-20 03:01:48 +0000634 if (NewBasePt && isa<PHINode>(OperandValToReplace)) {
Dan Gohmana78c8752008-05-15 23:26:57 +0000635 InsertPt = NewBasePt;
636 ++InsertPt;
Gabor Greif5e42ba12008-06-11 21:38:51 +0000637 } else if (Instruction *OpInst
638 = dyn_cast<Instruction>(OperandValToReplace)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000639 InsertPt = OpInst;
640 while (isa<PHINode>(InsertPt)) ++InsertPt;
641 }
642 }
643 Value *NewVal = InsertCodeForBaseAtPosition(NewBase, Rewriter, InsertPt, L);
Dan Gohman5d1dd952007-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 Gohmanf17a25c2007-07-18 16:29:46 +0000647 if (isa<PointerType>(OperandValToReplace->getType())) {
Dan Gohman5d1dd952007-07-31 17:22:27 +0000648 NewVal = SCEVExpander::InsertCastOfTo(Instruction::IntToPtr,
649 NewVal,
650 OperandValToReplace->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000651 }
652 // Replace the use of the operand Value with the new Phi we just created.
653 Inst->replaceUsesOfWith(OperandValToReplace, NewVal);
654 DOUT << " CHANGED: IMM =" << *Imm;
655 DOUT << " \tNEWBASE =" << *NewBase;
656 DOUT << " \tInst = " << *Inst;
657 return;
658 }
659
660 // PHI nodes are more complex. We have to insert one copy of the NewBase+Imm
661 // 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 Chengd7ea7002007-10-30 22:27:26 +0000665 DenseMap<BasicBlock*, Value*> InsertedCode;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000666 PHINode *PN = cast<PHINode>(Inst);
667 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
668 if (PN->getIncomingValue(i) == OperandValToReplace) {
669 // If this is a critical edge, split the edge so that we do not insert the
670 // 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.
673 BasicBlock *PHIPred = PN->getIncomingBlock(i);
674 if (e != 1 && PHIPred->getTerminator()->getNumSuccessors() > 1 &&
675 (PN->getParent() != L->getHeader() || !L->contains(PHIPred))) {
676
677 // First step, split the critical edge.
Evan Chengd7ea7002007-10-30 22:27:26 +0000678 SplitCriticalEdge(PHIPred, PN->getParent(), P, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000679
680 // 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.
684 if (L->contains(PHIPred) && !L->contains(PN->getParent())) {
685 BasicBlock *NewBB = PN->getIncomingBlock(i);
686 NewBB->moveBefore(PN->getParent());
687 }
688
689 // Splitting the edge can reduce the number of PHI entries we have.
690 e = PN->getNumIncomingValues();
691 }
692
693 Value *&Code = InsertedCode[PN->getIncomingBlock(i)];
694 if (!Code) {
695 // Insert the code into the end of the predecessor block.
696 Instruction *InsertPt = PN->getIncomingBlock(i)->getTerminator();
697 Code = InsertCodeForBaseAtPosition(NewBase, Rewriter, InsertPt, L);
698
Chris Lattner03dc7d72007-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 Gohmanf17a25c2007-07-18 16:29:46 +0000703 if (isa<PointerType>(PN->getType())) {
Dan Gohman5d1dd952007-07-31 17:22:27 +0000704 Code = SCEVExpander::InsertCastOfTo(Instruction::IntToPtr,
705 Code,
706 PN->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000707 }
708 }
709
710 // Replace the use of the operand Value with the new Phi we just created.
711 PN->setIncomingValue(i, Code);
712 Rewriter.clear();
713 }
714 }
Evan Chengf7ef8852007-10-30 23:45:15 +0000715
716 // PHI node might have become a constant value after SplitCriticalEdge.
717 DeadInsts.insert(Inst);
718
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000719 DOUT << " CHANGED: IMM =" << *Imm << " Inst = " << *Inst;
720}
721
722
723/// isTargetConstant - Return true if the following can be referenced by the
724/// immediate field of a target instruction.
725static bool isTargetConstant(const SCEVHandle &V, const Type *UseTy,
726 const TargetLowering *TLI) {
727 if (SCEVConstant *SC = dyn_cast<SCEVConstant>(V)) {
728 int64_t VC = SC->getValue()->getSExtValue();
729 if (TLI) {
730 TargetLowering::AddrMode AM;
731 AM.BaseOffs = VC;
732 return TLI->isLegalAddressingMode(AM, UseTy);
733 } else {
734 // Defaults to PPC. PPC allows a sign-extended 16-bit immediate field.
735 return (VC > -(1 << 16) && VC < (1 << 16)-1);
736 }
737 }
738
739 if (SCEVUnknown *SU = dyn_cast<SCEVUnknown>(V))
740 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(SU->getValue()))
741 if (TLI && CE->getOpcode() == Instruction::PtrToInt) {
742 Constant *Op0 = CE->getOperand(0);
743 if (GlobalValue *GV = dyn_cast<GlobalValue>(Op0)) {
744 TargetLowering::AddrMode AM;
745 AM.BaseGV = GV;
746 return TLI->isLegalAddressingMode(AM, UseTy);
747 }
748 }
749 return false;
750}
751
752/// MoveLoopVariantsToImediateField - Move any subexpressions from Val that are
753/// loop varying to the Imm operand.
754static void MoveLoopVariantsToImediateField(SCEVHandle &Val, SCEVHandle &Imm,
Dan Gohman89f85052007-10-22 18:31:58 +0000755 Loop *L, ScalarEvolution *SE) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Gohman89f85052007-10-22 18:31:58 +0000766 Imm = SE->getAddExpr(Imm, SAE->getOperand(i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000767 } else {
768 NewOps.push_back(SAE->getOperand(i));
769 }
770
771 if (NewOps.empty())
Dan Gohman89f85052007-10-22 18:31:58 +0000772 Val = SE->getIntegerSCEV(0, Val->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000773 else
Dan Gohman89f85052007-10-22 18:31:58 +0000774 Val = SE->getAddExpr(NewOps);
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Gohman89f85052007-10-22 18:31:58 +0000778 MoveLoopVariantsToImediateField(Start, Imm, L, SE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000779
780 std::vector<SCEVHandle> Ops(SARE->op_begin(), SARE->op_end());
781 Ops[0] = Start;
Dan Gohman89f85052007-10-22 18:31:58 +0000782 Val = SE->getAddRecExpr(Ops, SARE->getLoop());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000783 } else {
784 // Otherwise, all of Val is variant, move the whole thing over.
Dan Gohman89f85052007-10-22 18:31:58 +0000785 Imm = SE->getAddExpr(Imm, Val);
786 Val = SE->getIntegerSCEV(0, Val->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000787 }
788}
789
790
791/// MoveImmediateValues - Look at Val, and pull out any additions of constants
792/// that can fit into the immediate field of instructions in the target.
793/// Accumulate these immediate values into the Imm value.
794static void MoveImmediateValues(const TargetLowering *TLI,
795 Instruction *User,
796 SCEVHandle &Val, SCEVHandle &Imm,
Dan Gohman89f85052007-10-22 18:31:58 +0000797 bool isAddress, Loop *L,
798 ScalarEvolution *SE) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000799 const Type *UseTy = User->getType();
800 if (StoreInst *SI = dyn_cast<StoreInst>(User))
801 UseTy = SI->getOperand(0)->getType();
802
803 if (SCEVAddExpr *SAE = dyn_cast<SCEVAddExpr>(Val)) {
804 std::vector<SCEVHandle> NewOps;
805 NewOps.reserve(SAE->getNumOperands());
806
807 for (unsigned i = 0; i != SAE->getNumOperands(); ++i) {
808 SCEVHandle NewOp = SAE->getOperand(i);
Dan Gohman89f85052007-10-22 18:31:58 +0000809 MoveImmediateValues(TLI, User, NewOp, Imm, isAddress, L, SE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000810
811 if (!NewOp->isLoopInvariant(L)) {
812 // If this is a loop-variant expression, it must stay in the immediate
813 // field of the expression.
Dan Gohman89f85052007-10-22 18:31:58 +0000814 Imm = SE->getAddExpr(Imm, NewOp);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000815 } else {
816 NewOps.push_back(NewOp);
817 }
818 }
819
820 if (NewOps.empty())
Dan Gohman89f85052007-10-22 18:31:58 +0000821 Val = SE->getIntegerSCEV(0, Val->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000822 else
Dan Gohman89f85052007-10-22 18:31:58 +0000823 Val = SE->getAddExpr(NewOps);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000824 return;
825 } else if (SCEVAddRecExpr *SARE = dyn_cast<SCEVAddRecExpr>(Val)) {
826 // Try to pull immediates out of the start value of nested addrec's.
827 SCEVHandle Start = SARE->getStart();
Dan Gohman89f85052007-10-22 18:31:58 +0000828 MoveImmediateValues(TLI, User, Start, Imm, isAddress, L, SE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000829
830 if (Start != SARE->getStart()) {
831 std::vector<SCEVHandle> Ops(SARE->op_begin(), SARE->op_end());
832 Ops[0] = Start;
Dan Gohman89f85052007-10-22 18:31:58 +0000833 Val = SE->getAddRecExpr(Ops, SARE->getLoop());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000834 }
835 return;
836 } else if (SCEVMulExpr *SME = dyn_cast<SCEVMulExpr>(Val)) {
837 // Transform "8 * (4 + v)" -> "32 + 8*V" if "32" fits in the immed field.
838 if (isAddress && isTargetConstant(SME->getOperand(0), UseTy, TLI) &&
839 SME->getNumOperands() == 2 && SME->isLoopInvariant(L)) {
840
Dan Gohman89f85052007-10-22 18:31:58 +0000841 SCEVHandle SubImm = SE->getIntegerSCEV(0, Val->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000842 SCEVHandle NewOp = SME->getOperand(1);
Dan Gohman89f85052007-10-22 18:31:58 +0000843 MoveImmediateValues(TLI, User, NewOp, SubImm, isAddress, L, SE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Gohman89f85052007-10-22 18:31:58 +0000850 SubImm = SE->getMulExpr(SubImm, SME->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000851 if (isTargetConstant(SubImm, UseTy, TLI)) {
852 // Accumulate the immediate.
Dan Gohman89f85052007-10-22 18:31:58 +0000853 Imm = SE->getAddExpr(Imm, SubImm);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000854
855 // Update what is left of 'Val'.
Dan Gohman89f85052007-10-22 18:31:58 +0000856 Val = SE->getMulExpr(SME->getOperand(0), NewOp);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000857 return;
858 }
859 }
860 }
861 }
862
863 // Loop-variant expressions must stay in the immediate field of the
864 // expression.
865 if ((isAddress && isTargetConstant(Val, UseTy, TLI)) ||
866 !Val->isLoopInvariant(L)) {
Dan Gohman89f85052007-10-22 18:31:58 +0000867 Imm = SE->getAddExpr(Imm, Val);
868 Val = SE->getIntegerSCEV(0, Val->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000869 return;
870 }
871
872 // Otherwise, no immediates to move.
873}
874
875
876/// 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.
879static void SeparateSubExprs(std::vector<SCEVHandle> &SubExprs,
Dan Gohman89f85052007-10-22 18:31:58 +0000880 SCEVHandle Expr,
881 ScalarEvolution *SE) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000882 if (SCEVAddExpr *AE = dyn_cast<SCEVAddExpr>(Expr)) {
883 for (unsigned j = 0, e = AE->getNumOperands(); j != e; ++j)
Dan Gohman89f85052007-10-22 18:31:58 +0000884 SeparateSubExprs(SubExprs, AE->getOperand(j), SE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000885 } else if (SCEVAddRecExpr *SARE = dyn_cast<SCEVAddRecExpr>(Expr)) {
Dan Gohman89f85052007-10-22 18:31:58 +0000886 SCEVHandle Zero = SE->getIntegerSCEV(0, Expr->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Gohman89f85052007-10-22 18:31:58 +0000893 SubExprs.push_back(SE->getAddRecExpr(Ops, SARE->getLoop()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000894
895
Dan Gohman89f85052007-10-22 18:31:58 +0000896 SeparateSubExprs(SubExprs, SARE->getOperand(0), SE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000897 }
Dan Gohman7b560c42008-06-18 16:23:07 +0000898 } else if (!Expr->isZero()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000899 // Do not add zero.
900 SubExprs.push_back(Expr);
901 }
902}
903
904
905/// 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 Gohman89f85052007-10-22 18:31:58 +0000910RemoveCommonExpressionsFromUseBases(std::vector<BasedUser> &Uses,
911 ScalarEvolution *SE) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000912 unsigned NumUses = Uses.size();
913
914 // Only one use? Use its base, regardless of what it is!
Dan Gohman89f85052007-10-22 18:31:58 +0000915 SCEVHandle Zero = SE->getIntegerSCEV(0, Uses[0].Base->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +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
926 // UniqueSubExprs - Keep track of all of the subexpressions we see in the
927 // order we see them.
928 std::vector<SCEVHandle> UniqueSubExprs;
929
930 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 Gohman89f85052007-10-22 18:31:58 +0000937 SeparateSubExprs(SubExprs, Uses[i].Base, SE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000938 // Add one to SubExpressionUseCounts for each subexpr present.
939 for (unsigned j = 0, e = SubExprs.size(); j != e; ++j)
940 if (++SubExpressionUseCounts[SubExprs[j]] == 1)
941 UniqueSubExprs.push_back(SubExprs[j]);
942 SubExprs.clear();
943 }
944
945 // 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?");
951 if (I->second == NumUses) { // Found CSE!
Dan Gohman89f85052007-10-22 18:31:58 +0000952 Result = SE->getAddExpr(Result, I->first);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000953 } else {
954 // Remove non-cse's from SubExpressionUseCounts.
955 SubExpressionUseCounts.erase(I);
956 }
957 }
958
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.
963 for (unsigned i = 0; i != NumUses; ++i) {
964 // Split the expression into subexprs.
Dan Gohman89f85052007-10-22 18:31:58 +0000965 SeparateSubExprs(SubExprs, Uses[i].Base, SE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +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())
976 Uses[i].Base = Zero;
977 else
Dan Gohman89f85052007-10-22 18:31:58 +0000978 Uses[i].Base = SE->getAddExpr(SubExprs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000979 SubExprs.clear();
980 }
981
982 return Result;
983}
984
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000985/// ValidStride - Check whether the given Scale is valid for all loads and
986/// stores in UsersToProcess.
987///
Dan Gohman5766ac72007-10-22 20:40:42 +0000988bool LoopStrengthReduce::ValidStride(bool HasBaseReg,
989 int64_t Scale,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000990 const std::vector<BasedUser>& UsersToProcess) {
Evan Chengb1ed4cd2007-12-19 23:33:23 +0000991 if (!TLI)
992 return true;
993
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000994 for (unsigned i=0, e = UsersToProcess.size(); i!=e; ++i) {
995 // 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 Chengce9bbb32008-03-19 22:02:26 +00001001 else if (isa<PHINode>(UsersToProcess[i].Inst))
1002 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001003
1004 TargetLowering::AddrMode AM;
1005 if (SCEVConstant *SC = dyn_cast<SCEVConstant>(UsersToProcess[i].Imm))
1006 AM.BaseOffs = SC->getValue()->getSExtValue();
Dan Gohman7b560c42008-06-18 16:23:07 +00001007 AM.HasBaseReg = HasBaseReg || !UsersToProcess[i].Base->isZero();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001008 AM.Scale = Scale;
1009
1010 // If load[imm+r*scale] is illegal, bail out.
Evan Chengb1ed4cd2007-12-19 23:33:23 +00001011 if (!TLI->isLegalAddressingMode(AM, AccessTy))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001012 return false;
1013 }
1014 return true;
1015}
1016
Evan Cheng5385ab72007-10-25 22:45:20 +00001017/// RequiresTypeConversion - Returns true if converting Ty to NewTy is not
1018/// a nop.
Evan Cheng27a820a2007-10-26 01:56:11 +00001019bool LoopStrengthReduce::RequiresTypeConversion(const Type *Ty1,
1020 const Type *Ty2) {
1021 if (Ty1 == Ty2)
Evan Cheng5385ab72007-10-25 22:45:20 +00001022 return false;
Evan Cheng27a820a2007-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 Cheng5385ab72007-10-25 22:45:20 +00001030}
1031
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Gohman5766ac72007-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 Cheng27a820a2007-10-26 01:56:11 +00001038 bool AllUsesAreAddresses,
Dan Gohman5766ac72007-10-22 20:40:42 +00001039 const SCEVHandle &Stride,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001040 IVExpr &IV, const Type *Ty,
1041 const std::vector<BasedUser>& UsersToProcess) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001042 if (SCEVConstant *SC = dyn_cast<SCEVConstant>(Stride)) {
1043 int64_t SInt = SC->getValue()->getSExtValue();
Dale Johannesend92fe9f2007-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;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001050 int64_t SSInt = cast<SCEVConstant>(SI->first)->getValue()->getSExtValue();
Evan Cheng27a820a2007-10-26 01:56:11 +00001051 if (SI->first != Stride &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001052 (unsigned(abs(SInt)) < SSInt || (SInt % SSInt) != 0))
1053 continue;
1054 int64_t Scale = SInt / SSInt;
1055 // 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 Gohman55113942007-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)))
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Gohman7b560c42008-06-18 16:23:07 +00001067 if (II->Base->isZero() &&
Evan Cheng27a820a2007-10-26 01:56:11 +00001068 !RequiresTypeConversion(II->Base->getType(), Ty)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001069 IV = *II;
1070 return Scale;
1071 }
1072 }
1073 }
1074 return 0;
1075}
1076
1077/// 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}
1082
Dan Gohman5de363f2008-04-14 18:26:16 +00001083/// isNonConstantNegative - Return true if the specified scev is negated, but
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Chengb1ed4cd2007-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 Chengb1ed4cd2007-12-19 23:33:23 +00001120 }
1121 }
1122 return isAddress;
1123}
1124
Evan Cheng5385ab72007-10-25 22:45:20 +00001125// CollectIVUsers - Transform our list of users and offsets to a bit more
Dan Gohmanb607e402008-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 Cheng5385ab72007-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) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001135 UsersToProcess.reserve(Uses.Users.size());
1136 for (unsigned i = 0, e = Uses.Users.size(); i != e; ++i) {
Dan Gohman89f85052007-10-22 18:31:58 +00001137 UsersToProcess.push_back(BasedUser(Uses.Users[i], SE));
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Gohman89f85052007-10-22 18:31:58 +00001143 UsersToProcess.back().Imm, L, SE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001144 assert(UsersToProcess.back().Base->isLoopInvariant(L) &&
1145 "Base value is not loop invariant!");
1146 }
1147
1148 // 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.
1155 SCEVHandle CommonExprs =
Dan Gohman89f85052007-10-22 18:31:58 +00001156 RemoveCommonExpressionsFromUseBases(UsersToProcess, SE);
Dan Gohman5766ac72007-10-22 20:40:42 +00001157
Dan Gohmanf17a25c2007-07-18 16:29:46 +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
1160 // fields of the BasedUsers. We do this so that it increases the commonality
1161 // of the remaining uses.
Evan Cheng82366ed2007-12-20 02:20:53 +00001162 unsigned NumPHI = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001163 for (unsigned i = 0, e = UsersToProcess.size(); i != e; ++i) {
1164 // 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 Gohman89f85052007-10-22 18:31:58 +00001168 UsersToProcess[i].Imm = SE->getAddExpr(UsersToProcess[i].Imm,
1169 UsersToProcess[i].Base);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001170 UsersToProcess[i].Base =
Dan Gohman89f85052007-10-22 18:31:58 +00001171 SE->getIntegerSCEV(0, UsersToProcess[i].Base->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Cheng82366ed2007-12-20 02:20:53 +00001176 bool isPHI = false;
Evan Chengb1ed4cd2007-12-19 23:33:23 +00001177 bool isAddress = isAddressUse(UsersToProcess[i].Inst,
1178 UsersToProcess[i].OperandValToReplace);
1179 if (isa<PHINode>(UsersToProcess[i].Inst)) {
Evan Cheng82366ed2007-12-20 02:20:53 +00001180 isPHI = true;
1181 ++NumPHI;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001182 }
Dan Gohman5766ac72007-10-22 20:40:42 +00001183
1184 // If this use isn't an address, then not all uses are addresses.
Evan Chengce9bbb32008-03-19 22:02:26 +00001185 if (!isAddress && !isPHI)
Dan Gohman5766ac72007-10-22 20:40:42 +00001186 AllUsesAreAddresses = false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001187
1188 MoveImmediateValues(TLI, UsersToProcess[i].Inst, UsersToProcess[i].Base,
Dan Gohman89f85052007-10-22 18:31:58 +00001189 UsersToProcess[i].Imm, isAddress, L, SE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001190 }
1191 }
1192
Evan Cheng82366ed2007-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 Cheng5385ab72007-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 Gohman301f4052008-01-29 13:02:09 +00001210 if (Uses.Users.empty())
Evan Cheng5385ab72007-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 Gohman7b560c42008-06-18 16:23:07 +00001231 bool HaveCommonExprs = !CommonExprs->isZero();
Evan Cheng5385ab72007-10-25 22:45:20 +00001232
Dan Gohman5766ac72007-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.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001238 PHINode *NewPHI = NULL;
1239 Value *IncV = NULL;
Dan Gohman89f85052007-10-22 18:31:58 +00001240 IVExpr ReuseIV(SE->getIntegerSCEV(0, Type::Int32Ty),
1241 SE->getIntegerSCEV(0, Type::Int32Ty),
1242 0, 0);
Dan Gohman5766ac72007-10-22 20:40:42 +00001243 unsigned RewriteFactor = 0;
Evan Cheng27a820a2007-10-26 01:56:11 +00001244 RewriteFactor = CheckForIVReuse(HaveCommonExprs, AllUsesAreAddresses,
1245 Stride, ReuseIV, CommonExprs->getType(),
1246 UsersToProcess);
Dan Gohmanf17a25c2007-07-18 16:29:46 +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
1254 const Type *ReplacedTy = CommonExprs->getType();
1255
1256 // Now that we know what we need to do, insert the PHI node itself.
1257 //
1258 DOUT << "INSERTING IV of TYPE " << *ReplacedTy << " of STRIDE "
1259 << *Stride << " and BASE " << *CommonExprs << ": ";
1260
1261 SCEVExpander Rewriter(*SE, *LI);
1262 SCEVExpander PreheaderRewriter(*SE, *LI);
1263
1264 BasicBlock *Preheader = L->getLoopPreheader();
1265 Instruction *PreInsertPt = Preheader->getTerminator();
1266 Instruction *PhiInsertBefore = L->getHeader()->begin();
1267
1268 BasicBlock *LatchBlock = L->getLoopLatch();
1269
1270
1271 // Emit the initial base value into the loop preheader.
1272 Value *CommonBaseV
1273 = PreheaderRewriter.expandCodeFor(CommonExprs, PreInsertPt);
1274
1275 if (RewriteFactor == 0) {
1276 // Create a new Phi for this base, and stick it in the loop header.
Gabor Greifd6da1d02008-04-06 20:25:17 +00001277 NewPHI = PHINode::Create(ReplacedTy, "iv.", PhiInsertBefore);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001278 ++NumInserted;
1279
1280 // Add common base to the new Phi node.
1281 NewPHI->addIncoming(CommonBaseV, Preheader);
1282
1283 // 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 Gohman89f85052007-10-22 18:31:58 +00001288 IncAmount = SE->getNegativeSCEV(Stride);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001289
1290 // Insert the stride into the preheader.
1291 Value *StrideV = PreheaderRewriter.expandCodeFor(IncAmount, PreInsertPt);
1292 if (!isa<ConstantInt>(StrideV)) ++NumVariable;
1293
1294 // Emit the increment of the base value before the terminator of the loop
1295 // latch block, and add it to the Phi node.
Dan Gohman89f85052007-10-22 18:31:58 +00001296 SCEVHandle IncExp = SE->getUnknown(StrideV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001297 if (isNegative)
Dan Gohman89f85052007-10-22 18:31:58 +00001298 IncExp = SE->getNegativeSCEV(IncExp);
1299 IncExp = SE->getAddExpr(SE->getUnknown(NewPHI), IncExp);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001300
1301 IncV = Rewriter.expandCodeFor(IncExp, LatchBlock->getTerminator());
1302 IncV->setName(NewPHI->getName()+".inc");
1303 NewPHI->addIncoming(IncV, LatchBlock);
1304
1305 // Remember this in case a later stride is multiple of this.
1306 IVsByStride[Stride].addIV(Stride, CommonExprs, NewPHI, IncV);
1307
1308 DOUT << " IV=%" << NewPHI->getNameStr() << " INC=%" << IncV->getNameStr();
1309 } else {
1310 Constant *C = dyn_cast<Constant>(CommonBaseV);
1311 if (!C ||
1312 (!C->isNullValue() &&
Dan Gohman89f85052007-10-22 18:31:58 +00001313 !isTargetConstant(SE->getUnknown(CommonBaseV), ReplacedTy, TLI)))
Dan Gohmanf17a25c2007-07-18 16:29:46 +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);
1318 }
1319 DOUT << "\n";
1320
1321 // 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 Chengd7ea7002007-10-30 22:27:26 +00001342 // Compact everything with this base to be consequtive with this one.
Dan Gohmanf17a25c2007-07-18 16:29:46 +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.
1353 while (!UsersToProcess.empty()) {
1354 SCEVHandle Base = UsersToProcess.back().Base;
1355
1356 // Emit the code for Base into the preheader.
1357 Value *BaseV = PreheaderRewriter.expandCodeFor(Base, PreInsertPt);
1358
1359 DOUT << " INSERTING code for BASE = " << *Base << ":";
1360 if (BaseV->hasName())
1361 DOUT << " Result value name = %" << BaseV->getNameStr();
1362 DOUT << "\n";
1363
1364 // 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
1366 // this by forcing a BitCast (noop cast) to be inserted into the preheader
1367 // in this case.
1368 if (Constant *C = dyn_cast<Constant>(BaseV)) {
1369 if (!C->isNullValue() && !isTargetConstant(Base, ReplacedTy, TLI)) {
1370 // 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 Gohman5de363f2008-04-14 18:26:16 +00001373 PreInsertPt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001374 }
1375 }
1376
1377 // Emit the code to add the immediate offset to the Phi value, just before
1378 // the instructions that we identified as using this stride and base.
1379 do {
1380 // FIXME: Use emitted users to emit other users.
1381 BasedUser &User = UsersToProcess.back();
1382
1383 // 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;
1388
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());
1393 }
1394 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 }
1401
Dan Gohman89f85052007-10-22 18:31:58 +00001402 SCEVHandle RewriteExpr = SE->getUnknown(RewriteOp);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001403
Dan Gohmana78c8752008-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 Gohman50b570a2008-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 Gohmana78c8752008-05-15 23:26:57 +00001411 Instruction *NewBasePt = dyn_cast<Instruction>(RewriteOp);
1412 if (RewriteOp == NewPHI) NewBasePt = 0;
1413
Dan Gohmanf17a25c2007-07-18 16:29:46 +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();
1417
1418 // If we are reusing the iv, then it must be multiplied by a constant
1419 // factor take advantage of addressing mode scale component.
1420 if (RewriteFactor != 0) {
Evan Chengd7ea7002007-10-30 22:27:26 +00001421 RewriteExpr = SE->getMulExpr(SE->getIntegerSCEV(RewriteFactor,
1422 RewriteExpr->getType()),
1423 RewriteExpr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +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) ||
1429 !cast<ConstantInt>(CommonBaseV)->isZero())
Dan Gohman89f85052007-10-22 18:31:58 +00001430 RewriteExpr = SE->getAddExpr(RewriteExpr,
1431 SE->getUnknown(CommonBaseV));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001432 }
1433
1434 // Now that we know what we need to do, insert code before User for the
1435 // immediate and any loop-variant expressions.
1436 if (!isa<ConstantInt>(BaseV) || !cast<ConstantInt>(BaseV)->isZero())
1437 // Add BaseV to the PHI value if needed.
Dan Gohman89f85052007-10-22 18:31:58 +00001438 RewriteExpr = SE->getAddExpr(RewriteExpr, SE->getUnknown(BaseV));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001439
Dan Gohmana78c8752008-05-15 23:26:57 +00001440 User.RewriteInstructionToUseNewBase(RewriteExpr, NewBasePt,
1441 Rewriter, L, this,
Evan Chengf7ef8852007-10-30 23:45:15 +00001442 DeadInsts);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001443
1444 // Mark old value we replaced as possibly dead, so that it is elminated
1445 // if we just replaced the last use of that value.
1446 DeadInsts.insert(cast<Instruction>(User.OperandValToReplace));
1447
1448 UsersToProcess.pop_back();
1449 ++NumReduced;
1450
1451 // 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.
1453 } while (!UsersToProcess.empty() && UsersToProcess.back().Base == Base);
1454 // 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.
1459}
1460
Devang Patel7983eaa2008-08-13 20:31:11 +00001461/// FindIVUserForCond - If Cond has an operand that is an expression of an IV,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001462/// set the IV user and stride information and return true, otherwise return
1463/// false.
Devang Patel7983eaa2008-08-13 20:31:11 +00001464bool LoopStrengthReduce::FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse,
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Cheng335d87d2007-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 Chengf7ef8852007-10-30 23:45:15 +00001526 IVStrideUse* &CondUse,
Evan Cheng335d87d2007-10-25 09:11:16 +00001527 const SCEVHandle* &CondStride) {
1528 if (StrideOrder.size() < 2 ||
1529 IVUsesByStride[*CondStride].Users.size() != 1)
1530 return Cond;
Evan Cheng335d87d2007-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 Cheng335d87d2007-10-25 09:11:16 +00001537 int64_t CmpSSInt = SC->getValue()->getSExtValue();
1538 int64_t CmpVal = C->getValue().getSExtValue();
Evan Cheng635b8f82007-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 Cheng0ae1de62007-10-29 22:07:18 +00001543 unsigned TyBits = CmpTy->getPrimitiveSizeInBits();
1544 unsigned NewTyBits = 0;
Evan Cheng335d87d2007-10-25 09:11:16 +00001545 int64_t NewCmpVal = CmpVal;
1546 SCEVHandle *NewStride = NULL;
1547 Value *NewIncV = NULL;
1548 int64_t Scale = 1;
Evan Cheng335d87d2007-10-25 09:11:16 +00001549
Devang Patelb6ccbce2008-08-13 02:05:14 +00001550 // Check stride constant and the comparision constant signs to detect
1551 // overflow.
Devang Patelc80bf092008-09-09 20:54:34 +00001552 if ((CmpVal & SignBit) != (CmpSSInt & SignBit))
Devang Patelb6ccbce2008-08-13 02:05:14 +00001553 return Cond;
1554
Evan Cheng335d87d2007-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 Cheng635b8f82007-10-26 23:08:19 +00001563 if (abs(SSInt) <= abs(CmpSSInt) || (SSInt % CmpSSInt) != 0)
Evan Cheng335d87d2007-10-25 09:11:16 +00001564 continue;
1565
Evan Cheng635b8f82007-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 Cheng335d87d2007-10-25 09:11:16 +00001571 NewCmpVal = CmpVal;
Evan Cheng635b8f82007-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 Cheng335d87d2007-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 Cheng335d87d2007-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 Cheng335d87d2007-10-25 09:11:16 +00001594 NewCmpTy = NewIncV->getType();
Evan Cheng0ae1de62007-10-29 22:07:18 +00001595 NewTyBits = isa<PointerType>(NewCmpTy)
1596 ? UIntPtrTy->getPrimitiveSizeInBits()
1597 : NewCmpTy->getPrimitiveSizeInBits();
1598 if (RequiresTypeConversion(NewCmpTy, CmpTy)) {
Gabor Greif5e42ba12008-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 Cheng0ae1de62007-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 Cheng5385ab72007-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 Gohman7b560c42008-06-18 16:23:07 +00001632 ValidStride(!CommonExprs->isZero(), Scale, UsersToProcess)) {
Evan Cheng335d87d2007-10-25 09:11:16 +00001633 NewCmpVal = CmpVal;
1634 continue;
1635 }
1636
Evan Cheng2a28cc02008-08-06 18:04:43 +00001637 // If scale is negative, use swapped predicate unless it's testing
Evan Cheng335d87d2007-10-25 09:11:16 +00001638 // for equality.
1639 if (Scale < 0 && !Cond->isEquality())
Evan Cheng2a28cc02008-08-06 18:04:43 +00001640 Predicate = ICmpInst::getSwappedPredicate(Predicate);
Evan Cheng335d87d2007-10-25 09:11:16 +00001641
1642 NewStride = &StrideOrder[i];
1643 break;
1644 }
1645 }
1646
Dan Gohmancb387ac2008-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 Patelb6ccbce2008-08-13 02:05:14 +00001653 if (!Cond->hasOneUse()) {
Dan Gohmancb387ac2008-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 Patelb6ccbce2008-08-13 02:05:14 +00001658 }
Dan Gohmancb387ac2008-06-16 22:34:15 +00001659
Evan Cheng335d87d2007-10-25 09:11:16 +00001660 if (NewCmpVal != CmpVal) {
1661 // Create a new compare instruction using new stride / iv.
1662 ICmpInst *OldCond = Cond;
Evan Cheng0ae1de62007-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 Cheng335d87d2007-10-25 09:11:16 +00001669 }
Evan Cheng635b8f82007-10-26 23:08:19 +00001670 // Insert new compare instruction.
Dan Gohman87bc2f12008-06-13 21:43:41 +00001671 Cond = new ICmpInst(Predicate, NewIncV, RHS,
1672 L->getHeader()->getName() + ".termcond",
1673 OldCond);
Evan Cheng635b8f82007-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 Cheng635b8f82007-10-26 23:08:19 +00001677 SE->deleteValueFromRecords(OldCond);
Dan Gohman3dfab2b2008-05-21 00:54:12 +00001678 OldCond->replaceAllUsesWith(Cond);
Evan Cheng335d87d2007-10-25 09:11:16 +00001679 OldCond->eraseFromParent();
Evan Cheng635b8f82007-10-26 23:08:19 +00001680
Evan Cheng335d87d2007-10-25 09:11:16 +00001681 IVUsesByStride[*CondStride].Users.pop_back();
Evan Cheng0ae1de62007-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 Cheng335d87d2007-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 Gohman156bf982008-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 Gohmana9a6f172008-10-01 02:02:03 +00001799 SE->deleteValueFromRecords(Cond);
Dan Gohman156bf982008-09-15 21:22:06 +00001800 Cond->replaceAllUsesWith(NewCond);
1801 Cond->eraseFromParent();
Dan Gohman156bf982008-09-15 21:22:06 +00001802 Instruction *Cmp = cast<Instruction>(Sel->getOperand(0));
Dan Gohman156bf982008-09-15 21:22:06 +00001803 SE->deleteValueFromRecords(Sel);
Dan Gohmana9a6f172008-10-01 02:02:03 +00001804 Sel->eraseFromParent();
Dan Gohman156bf982008-09-15 21:22:06 +00001805 if (Cmp->use_empty()) {
Dan Gohman156bf982008-09-15 21:22:06 +00001806 SE->deleteValueFromRecords(Cmp);
Dan Gohmana9a6f172008-10-01 02:02:03 +00001807 Cmp->eraseFromParent();
Dan Gohman156bf982008-09-15 21:22:06 +00001808 }
1809 CondUse->User = NewCond;
1810 return NewCond;
1811}
1812
Devang Patele4a78772008-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 Patelc1fc0fc2008-08-27 17:50:18 +00001832 ++UI;
Devang Patele4a78772008-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 Patelc1fc0fc2008-08-27 17:50:18 +00001837 to eliminate this cast.
Devang Patele4a78772008-08-26 17:57:54 +00001838
1839 for (unsigned i = 0; i < n; ++i)
1840 foo((double)i);
1841
Devang Patelc1fc0fc2008-08-27 17:50:18 +00001842 is transformed into
Devang Patele4a78772008-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 Patelc1fc0fc2008-08-27 17:50:18 +00001848 if (UIToFPInst *UCast = dyn_cast<UIToFPInst>(CandidateUI->User))
Devang Patele4a78772008-08-26 17:57:54 +00001849 DestTy = UCast->getDestTy();
Devang Patelc1fc0fc2008-08-27 17:50:18 +00001850 else if (SIToFPInst *SCast = dyn_cast<SIToFPInst>(CandidateUI->User))
Devang Patele4a78772008-08-26 17:57:54 +00001851 DestTy = SCast->getDestTy();
Devang Patel704c5252008-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 Patele4a78772008-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 Patelc1fc0fc2008-08-27 17:50:18 +00001905 /* create new increment. '++d' in above example. */
Devang Patele4a78772008-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
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Patele4a78772008-08-26 17:57:54 +00001931 OptimizeShadowIV(L);
1932
Dan Gohmanf17a25c2007-07-18 16:29:46 +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
1935 // induction variable, to allow coalescing the live ranges for the IV into
1936 // 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());
1942 if (!TermBr || TermBr->isUnconditional() ||
1943 !isa<ICmpInst>(TermBr->getCondition()))
1944 return;
1945 ICmpInst *Cond = cast<ICmpInst>(TermBr->getCondition());
1946
1947 // Search IVUsesByStride to find Cond's IVUse if there is one.
1948 IVStrideUse *CondUse = 0;
1949 const SCEVHandle *CondStride = 0;
1950
Devang Patel7983eaa2008-08-13 20:31:11 +00001951 if (!FindIVUserForCond(Cond, CondUse, CondStride))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001952 return; // setcc doesn't use the IV.
Evan Cheng335d87d2007-10-25 09:11:16 +00001953
Dan Gohman156bf982008-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 Cheng335d87d2007-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);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001962
1963 // 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.
1971 Cond = cast<ICmpInst>(Cond->clone());
1972 Cond->setName(L->getHeader()->getName() + ".termcond");
1973 LatchBlock->getInstList().insert(TermBr, Cond);
1974
1975 // Clone the IVUse, as the old use still exists!
1976 IVUsesByStride[*CondStride].addUser(CondUse->Offset, Cond,
1977 CondUse->OperandValToReplace);
1978 CondUse = &IVUsesByStride[*CondStride].Users.back();
1979 }
1980 }
1981
1982 // If we get to here, we know that we can transform the setcc instruction to
1983 // use the post-incremented version of the IV, allowing us to coalesce the
1984 // live ranges for the IV correctly.
Dan Gohman89f85052007-10-22 18:31:58 +00001985 CondUse->Offset = SE->getMinusSCEV(CondUse->Offset, *CondStride);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001986 CondUse->isUseOfPostIncrementedValue = true;
Evan Cheng5af5ad52008-07-07 19:51:32 +00001987 Changed = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001988}
1989
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001990bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager &LPM) {
1991
1992 LI = &getAnalysis<LoopInfo>();
1993 DT = &getAnalysis<DominatorTree>();
1994 SE = &getAnalysis<ScalarEvolution>();
1995 TD = &getAnalysis<TargetData>();
1996 UIntPtrTy = TD->getIntPtrType();
Dan Gohman5fc2bf42008-07-14 17:55:01 +00001997 Changed = false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001998
1999 // Find all uses of induction variables in this loop, and catagorize
2000 // 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 Cheng635b8f82007-10-26 23:08:19 +00002002 SmallPtrSet<Instruction*,16> Processed; // Don't reprocess instructions.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002003 for (BasicBlock::iterator I = L->getHeader()->begin(); isa<PHINode>(I); ++I)
2004 AddUsersIfInteresting(I, L, Processed);
2005
Evan Cheng5af5ad52008-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);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002012
Evan Cheng5af5ad52008-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.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002015
Evan Cheng5af5ad52008-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.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002021
Evan Cheng5af5ad52008-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;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002025
2026#ifndef NDEBUG
Evan Cheng5af5ad52008-07-07 19:51:32 +00002027 DOUT << "\nLSR on ";
2028 DEBUG(L->dump());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002029#endif
2030
Evan Cheng5af5ad52008-07-07 19:51:32 +00002031 // IVsByStride keeps IVs for one particular loop.
2032 assert(IVsByStride.empty() && "Stale entries in IVsByStride?");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002033
Evan Cheng5af5ad52008-07-07 19:51:32 +00002034 // Sort the StrideOrder so we process larger strides first.
2035 std::stable_sort(StrideOrder.begin(), StrideOrder.end(), StrideCompare());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002036
Evan Cheng5af5ad52008-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 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002048 }
2049
Dan Gohman3dfab2b2008-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
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002056 // Clean up after ourselves
2057 if (!DeadInsts.empty()) {
2058 DeleteTriviallyDeadInstructions(DeadInsts);
2059
2060 BasicBlock::iterator I = L->getHeader()->begin();
Dan Gohman8e46c9e2008-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 Lattner2757a1d2008-12-01 06:11:32 +00002063 // It is worth checking to see if the cannonical indvar is also
Dan Gohman8e46c9e2008-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 //
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002070 // FIXME: this needs to eliminate an induction variable even if it's being
2071 // compared against some value to decide loop termination.
Chris Lattnera7e72b62008-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;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002087 }
Chris Lattnera7e72b62008-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;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002092 }
2093 }
2094 DeleteTriviallyDeadInstructions(DeadInsts);
2095 }
Evan Cheng5af5ad52008-07-07 19:51:32 +00002096 return Changed;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002097}