blob: 08f023b712f131d3ae0c3b09544871c96f614f94 [file] [log] [blame]
Nate Begemanb18121e2004-10-18 21:08:22 +00001//===- LoopStrengthReduce.cpp - Strength Reduce GEPs in Loops -------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
Nate Begemanb18121e2004-10-18 21:08:22 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by Nate Begeman and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
Nate Begemanb18121e2004-10-18 21:08:22 +00008//===----------------------------------------------------------------------===//
9//
10// This pass performs a strength reduction on array references inside loops that
11// have as one or more of their components the loop induction variable. This is
12// accomplished by creating a new Value to hold the initial value of the array
13// access for the first iteration, and then creating a new GEP instruction in
14// the loop to increment the value by the appropriate amount.
15//
Nate Begemanb18121e2004-10-18 21:08:22 +000016//===----------------------------------------------------------------------===//
17
Chris Lattnerbb78c972005-08-03 23:30:08 +000018#define DEBUG_TYPE "loop-reduce"
Nate Begemanb18121e2004-10-18 21:08:22 +000019#include "llvm/Transforms/Scalar.h"
20#include "llvm/Constants.h"
21#include "llvm/Instructions.h"
Dan Gohman2bcbd5b2007-05-04 14:59:09 +000022#include "llvm/IntrinsicInst.h"
Nate Begemanb18121e2004-10-18 21:08:22 +000023#include "llvm/Type.h"
Jeff Cohena2c59b72005-03-04 04:04:26 +000024#include "llvm/DerivedTypes.h"
Nate Begemanb18121e2004-10-18 21:08:22 +000025#include "llvm/Analysis/Dominators.h"
26#include "llvm/Analysis/LoopInfo.h"
Devang Patelb0743b52007-03-06 21:14:09 +000027#include "llvm/Analysis/LoopPass.h"
Nate Begemane68bcd12005-07-30 00:15:07 +000028#include "llvm/Analysis/ScalarEvolutionExpander.h"
Nate Begemanb18121e2004-10-18 21:08:22 +000029#include "llvm/Support/CFG.h"
Nate Begemane68bcd12005-07-30 00:15:07 +000030#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattner4fec86d2005-08-12 22:06:11 +000031#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Nate Begemanb18121e2004-10-18 21:08:22 +000032#include "llvm/Transforms/Utils/Local.h"
Jeff Cohena2c59b72005-03-04 04:04:26 +000033#include "llvm/Target/TargetData.h"
Nate Begemanb18121e2004-10-18 21:08:22 +000034#include "llvm/ADT/Statistic.h"
Nate Begemane68bcd12005-07-30 00:15:07 +000035#include "llvm/Support/Debug.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000036#include "llvm/Support/Compiler.h"
Evan Chengc567c4e2006-03-13 23:14:23 +000037#include "llvm/Target/TargetLowering.h"
Jeff Cohenc5009912005-07-30 18:22:27 +000038#include <algorithm>
Nate Begemanb18121e2004-10-18 21:08:22 +000039#include <set>
40using namespace llvm;
41
Chris Lattner79a42ac2006-12-19 21:40:18 +000042STATISTIC(NumReduced , "Number of GEPs strength reduced");
43STATISTIC(NumInserted, "Number of PHIs inserted");
44STATISTIC(NumVariable, "Number of PHIs with variable strides");
Nate Begemanb18121e2004-10-18 21:08:22 +000045
Chris Lattner79a42ac2006-12-19 21:40:18 +000046namespace {
Dale Johannesene3a02be2007-03-20 00:47:50 +000047
Jeff Cohen1baf5c82007-03-20 20:43:18 +000048 struct BasedUser;
Dale Johannesene3a02be2007-03-20 00:47:50 +000049
Chris Lattner430d0022005-08-03 22:21:05 +000050 /// IVStrideUse - Keep track of one use of a strided induction variable, where
51 /// the stride is stored externally. The Offset member keeps track of the
52 /// offset from the IV, User is the actual user of the operand, and 'Operand'
53 /// is the operand # of the User that is the use.
Reid Spencer557ab152007-02-05 23:32:05 +000054 struct VISIBILITY_HIDDEN IVStrideUse {
Chris Lattner430d0022005-08-03 22:21:05 +000055 SCEVHandle Offset;
56 Instruction *User;
57 Value *OperandValToReplace;
Chris Lattner9bfa6f82005-08-08 05:28:22 +000058
59 // isUseOfPostIncrementedValue - True if this should use the
60 // post-incremented version of this IV, not the preincremented version.
61 // This can only be set in special cases, such as the terminating setcc
Chris Lattnera6764832005-09-12 06:04:47 +000062 // instruction for a loop or uses dominated by the loop.
Chris Lattner9bfa6f82005-08-08 05:28:22 +000063 bool isUseOfPostIncrementedValue;
Chris Lattner430d0022005-08-03 22:21:05 +000064
65 IVStrideUse(const SCEVHandle &Offs, Instruction *U, Value *O)
Chris Lattner9bfa6f82005-08-08 05:28:22 +000066 : Offset(Offs), User(U), OperandValToReplace(O),
67 isUseOfPostIncrementedValue(false) {}
Chris Lattner430d0022005-08-03 22:21:05 +000068 };
69
70 /// IVUsersOfOneStride - This structure keeps track of all instructions that
71 /// have an operand that is based on the trip count multiplied by some stride.
72 /// The stride for all of these users is common and kept external to this
73 /// structure.
Reid Spencer557ab152007-02-05 23:32:05 +000074 struct VISIBILITY_HIDDEN IVUsersOfOneStride {
Nate Begemane68bcd12005-07-30 00:15:07 +000075 /// Users - Keep track of all of the users of this stride as well as the
Chris Lattner430d0022005-08-03 22:21:05 +000076 /// initial value and the operand that uses the IV.
77 std::vector<IVStrideUse> Users;
78
79 void addUser(const SCEVHandle &Offset,Instruction *User, Value *Operand) {
80 Users.push_back(IVStrideUse(Offset, User, Operand));
Nate Begemane68bcd12005-07-30 00:15:07 +000081 }
82 };
83
Evan Cheng3df447d2006-03-16 21:53:05 +000084 /// IVInfo - This structure keeps track of one IV expression inserted during
Evan Chengc28282b2006-03-18 08:03:12 +000085 /// StrengthReduceStridedIVUsers. It contains the stride, the common base, as
86 /// well as the PHI node and increment value created for rewrite.
Reid Spencer557ab152007-02-05 23:32:05 +000087 struct VISIBILITY_HIDDEN IVExpr {
Evan Chengc28282b2006-03-18 08:03:12 +000088 SCEVHandle Stride;
Evan Cheng3df447d2006-03-16 21:53:05 +000089 SCEVHandle Base;
90 PHINode *PHI;
91 Value *IncV;
92
Evan Chengc28282b2006-03-18 08:03:12 +000093 IVExpr()
Reid Spencerc635f472006-12-31 05:48:39 +000094 : Stride(SCEVUnknown::getIntegerSCEV(0, Type::Int32Ty)),
95 Base (SCEVUnknown::getIntegerSCEV(0, Type::Int32Ty)) {}
Evan Chengc28282b2006-03-18 08:03:12 +000096 IVExpr(const SCEVHandle &stride, const SCEVHandle &base, PHINode *phi,
97 Value *incv)
98 : Stride(stride), Base(base), PHI(phi), IncV(incv) {}
Evan Cheng3df447d2006-03-16 21:53:05 +000099 };
100
101 /// IVsOfOneStride - This structure keeps track of all IV expression inserted
102 /// during StrengthReduceStridedIVUsers for a particular stride of the IV.
Reid Spencer557ab152007-02-05 23:32:05 +0000103 struct VISIBILITY_HIDDEN IVsOfOneStride {
Evan Cheng3df447d2006-03-16 21:53:05 +0000104 std::vector<IVExpr> IVs;
105
Evan Chengc28282b2006-03-18 08:03:12 +0000106 void addIV(const SCEVHandle &Stride, const SCEVHandle &Base, PHINode *PHI,
107 Value *IncV) {
108 IVs.push_back(IVExpr(Stride, Base, PHI, IncV));
Evan Cheng3df447d2006-03-16 21:53:05 +0000109 }
110 };
Nate Begemane68bcd12005-07-30 00:15:07 +0000111
Devang Patelb0743b52007-03-06 21:14:09 +0000112 class VISIBILITY_HIDDEN LoopStrengthReduce : public LoopPass {
Nate Begemanb18121e2004-10-18 21:08:22 +0000113 LoopInfo *LI;
Devang Pateldf6355c2007-06-07 21:42:15 +0000114 DominatorTree *DT;
Nate Begemane68bcd12005-07-30 00:15:07 +0000115 ScalarEvolution *SE;
116 const TargetData *TD;
117 const Type *UIntPtrTy;
Nate Begemanb18121e2004-10-18 21:08:22 +0000118 bool Changed;
Chris Lattner75a44e12005-08-02 02:52:02 +0000119
Nate Begemane68bcd12005-07-30 00:15:07 +0000120 /// IVUsesByStride - Keep track of all uses of induction variables that we
121 /// are interested in. The key of the map is the stride of the access.
Chris Lattneredff91a2005-08-10 00:45:21 +0000122 std::map<SCEVHandle, IVUsersOfOneStride> IVUsesByStride;
Nate Begemane68bcd12005-07-30 00:15:07 +0000123
Evan Cheng3df447d2006-03-16 21:53:05 +0000124 /// IVsByStride - Keep track of all IVs that have been inserted for a
125 /// particular stride.
126 std::map<SCEVHandle, IVsOfOneStride> IVsByStride;
127
Chris Lattner4ea0a3e2005-10-09 06:20:55 +0000128 /// StrideOrder - An ordering of the keys in IVUsesByStride that is stable:
129 /// We use this to iterate over the IVUsesByStride collection without being
130 /// dependent on random ordering of pointers in the process.
131 std::vector<SCEVHandle> StrideOrder;
132
Chris Lattner6f286b72005-08-04 01:19:13 +0000133 /// CastedValues - As we need to cast values to uintptr_t, this keeps track
134 /// of the casted version of each value. This is accessed by
135 /// getCastedVersionOf.
136 std::map<Value*, Value*> CastedPointers;
Nate Begemane68bcd12005-07-30 00:15:07 +0000137
138 /// DeadInsts - Keep track of instructions we may have made dead, so that
139 /// we can remove them after we are done working.
140 std::set<Instruction*> DeadInsts;
Evan Chengc567c4e2006-03-13 23:14:23 +0000141
142 /// TLI - Keep a pointer of a TargetLowering to consult for determining
143 /// transformation profitability.
144 const TargetLowering *TLI;
145
Nate Begemanb18121e2004-10-18 21:08:22 +0000146 public:
Devang Patel8c78a0b2007-05-03 01:11:54 +0000147 static char ID; // Pass ID, replacement for typeid
Dan Gohman34d442f2007-08-01 15:32:29 +0000148 explicit LoopStrengthReduce(const TargetLowering *tli = NULL) :
Devang Patel09f162c2007-05-01 21:15:47 +0000149 LoopPass((intptr_t)&ID), TLI(tli) {
Jeff Cohena2c59b72005-03-04 04:04:26 +0000150 }
151
Devang Patelb0743b52007-03-06 21:14:09 +0000152 bool runOnLoop(Loop *L, LPPassManager &LPM);
Nate Begemanb18121e2004-10-18 21:08:22 +0000153
154 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner2bf7cb52005-08-17 06:35:16 +0000155 // We split critical edges, so we change the CFG. However, we do update
156 // many analyses if they are around.
157 AU.addPreservedID(LoopSimplifyID);
158 AU.addPreserved<LoopInfo>();
Chris Lattner2bf7cb52005-08-17 06:35:16 +0000159 AU.addPreserved<DominanceFrontier>();
160 AU.addPreserved<DominatorTree>();
161
Jeff Cohen39751c32005-02-27 19:37:07 +0000162 AU.addRequiredID(LoopSimplifyID);
Nate Begemanb18121e2004-10-18 21:08:22 +0000163 AU.addRequired<LoopInfo>();
Devang Pateldf6355c2007-06-07 21:42:15 +0000164 AU.addRequired<DominatorTree>();
Jeff Cohena2c59b72005-03-04 04:04:26 +0000165 AU.addRequired<TargetData>();
Nate Begemane68bcd12005-07-30 00:15:07 +0000166 AU.addRequired<ScalarEvolution>();
Nate Begemanb18121e2004-10-18 21:08:22 +0000167 }
Chris Lattner6f286b72005-08-04 01:19:13 +0000168
169 /// getCastedVersionOf - Return the specified value casted to uintptr_t.
170 ///
Reid Spencerdf1f19a2006-12-13 08:06:42 +0000171 Value *getCastedVersionOf(Instruction::CastOps opcode, Value *V);
Chris Lattner6f286b72005-08-04 01:19:13 +0000172private:
Chris Lattnereaf24722005-08-04 17:40:30 +0000173 bool AddUsersIfInteresting(Instruction *I, Loop *L,
174 std::set<Instruction*> &Processed);
175 SCEVHandle GetExpressionSCEV(Instruction *E, Loop *L);
176
Chris Lattner9bfa6f82005-08-08 05:28:22 +0000177 void OptimizeIndvars(Loop *L);
Chris Lattner81e07072007-04-03 05:11:24 +0000178 bool FindIVForUser(ICmpInst *Cond, IVStrideUse *&CondUse,
179 const SCEVHandle *&CondStride);
Nate Begemane68bcd12005-07-30 00:15:07 +0000180
Dale Johannesene3a02be2007-03-20 00:47:50 +0000181 unsigned CheckForIVReuse(const SCEVHandle&, IVExpr&, const Type*,
182 const std::vector<BasedUser>& UsersToProcess);
183
184 bool ValidStride(int64_t, const std::vector<BasedUser>& UsersToProcess);
Evan Cheng45206982006-03-17 19:52:23 +0000185
Chris Lattneredff91a2005-08-10 00:45:21 +0000186 void StrengthReduceStridedIVUsers(const SCEVHandle &Stride,
187 IVUsersOfOneStride &Uses,
Chris Lattner430d0022005-08-03 22:21:05 +0000188 Loop *L, bool isOnlyStride);
Nate Begemanb18121e2004-10-18 21:08:22 +0000189 void DeleteTriviallyDeadInstructions(std::set<Instruction*> &Insts);
190 };
Devang Patel8c78a0b2007-05-03 01:11:54 +0000191 char LoopStrengthReduce::ID = 0;
Chris Lattnerc2d3d312006-08-27 22:42:52 +0000192 RegisterPass<LoopStrengthReduce> X("loop-reduce", "Loop Strength Reduction");
Nate Begemanb18121e2004-10-18 21:08:22 +0000193}
194
Devang Patelb0743b52007-03-06 21:14:09 +0000195LoopPass *llvm::createLoopStrengthReducePass(const TargetLowering *TLI) {
Evan Cheng3df447d2006-03-16 21:53:05 +0000196 return new LoopStrengthReduce(TLI);
Nate Begemanb18121e2004-10-18 21:08:22 +0000197}
198
Reid Spencerb341b082006-12-12 05:05:00 +0000199/// getCastedVersionOf - Return the specified value casted to uintptr_t. This
200/// assumes that the Value* V is of integer or pointer type only.
Chris Lattner6f286b72005-08-04 01:19:13 +0000201///
Reid Spencerdf1f19a2006-12-13 08:06:42 +0000202Value *LoopStrengthReduce::getCastedVersionOf(Instruction::CastOps opcode,
203 Value *V) {
Chris Lattner6f286b72005-08-04 01:19:13 +0000204 if (V->getType() == UIntPtrTy) return V;
205 if (Constant *CB = dyn_cast<Constant>(V))
Reid Spencerdf1f19a2006-12-13 08:06:42 +0000206 return ConstantExpr::getCast(opcode, CB, UIntPtrTy);
Chris Lattner6f286b72005-08-04 01:19:13 +0000207
208 Value *&New = CastedPointers[V];
209 if (New) return New;
210
Reid Spencerdf1f19a2006-12-13 08:06:42 +0000211 New = SCEVExpander::InsertCastOfTo(opcode, V, UIntPtrTy);
Chris Lattneracc42c42005-08-04 19:08:16 +0000212 DeadInsts.insert(cast<Instruction>(New));
213 return New;
Chris Lattner6f286b72005-08-04 01:19:13 +0000214}
215
216
Nate Begemanb18121e2004-10-18 21:08:22 +0000217/// DeleteTriviallyDeadInstructions - If any of the instructions is the
218/// specified set are trivially dead, delete them and see if this makes any of
219/// their operands subsequently dead.
220void LoopStrengthReduce::
221DeleteTriviallyDeadInstructions(std::set<Instruction*> &Insts) {
222 while (!Insts.empty()) {
223 Instruction *I = *Insts.begin();
224 Insts.erase(Insts.begin());
225 if (isInstructionTriviallyDead(I)) {
Jeff Cohen8ea6f9e2005-03-01 03:46:11 +0000226 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
227 if (Instruction *U = dyn_cast<Instruction>(I->getOperand(i)))
228 Insts.insert(U);
Dan Gohman32f53bb2007-06-19 14:28:31 +0000229 SE->deleteValueFromRecords(I);
Chris Lattner84e9baa2005-08-03 21:36:09 +0000230 I->eraseFromParent();
Nate Begemanb18121e2004-10-18 21:08:22 +0000231 Changed = true;
232 }
233 }
234}
235
Jeff Cohen39751c32005-02-27 19:37:07 +0000236
Chris Lattnereaf24722005-08-04 17:40:30 +0000237/// GetExpressionSCEV - Compute and return the SCEV for the specified
238/// instruction.
239SCEVHandle LoopStrengthReduce::GetExpressionSCEV(Instruction *Exp, Loop *L) {
Dale Johannesene5866e72007-03-26 03:01:27 +0000240 // Pointer to pointer bitcast instructions return the same value as their
241 // operand.
242 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Exp)) {
243 if (SE->hasSCEV(BCI) || !isa<Instruction>(BCI->getOperand(0)))
244 return SE->getSCEV(BCI);
245 SCEVHandle R = GetExpressionSCEV(cast<Instruction>(BCI->getOperand(0)), L);
246 SE->setSCEV(BCI, R);
247 return R;
248 }
249
Chris Lattnerc6c4d992005-08-09 23:39:36 +0000250 // Scalar Evolutions doesn't know how to compute SCEV's for GEP instructions.
251 // If this is a GEP that SE doesn't know about, compute it now and insert it.
252 // If this is not a GEP, or if we have already done this computation, just let
253 // SE figure it out.
Chris Lattnereaf24722005-08-04 17:40:30 +0000254 GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Exp);
Chris Lattnerc6c4d992005-08-09 23:39:36 +0000255 if (!GEP || SE->hasSCEV(GEP))
Chris Lattnereaf24722005-08-04 17:40:30 +0000256 return SE->getSCEV(Exp);
257
Nate Begemane68bcd12005-07-30 00:15:07 +0000258 // Analyze all of the subscripts of this getelementptr instruction, looking
259 // for uses that are determined by the trip count of L. First, skip all
260 // operands the are not dependent on the IV.
261
262 // Build up the base expression. Insert an LLVM cast of the pointer to
263 // uintptr_t first.
Reid Spencerdf1f19a2006-12-13 08:06:42 +0000264 SCEVHandle GEPVal = SCEVUnknown::get(
265 getCastedVersionOf(Instruction::PtrToInt, GEP->getOperand(0)));
Nate Begemane68bcd12005-07-30 00:15:07 +0000266
267 gep_type_iterator GTI = gep_type_begin(GEP);
Chris Lattnereaf24722005-08-04 17:40:30 +0000268
269 for (unsigned i = 1, e = GEP->getNumOperands(); i != e; ++i, ++GTI) {
Nate Begemane68bcd12005-07-30 00:15:07 +0000270 // If this is a use of a recurrence that we can analyze, and it comes before
271 // Op does in the GEP operand list, we will handle this when we process this
272 // operand.
273 if (const StructType *STy = dyn_cast<StructType>(*GTI)) {
274 const StructLayout *SL = TD->getStructLayout(STy);
Reid Spencere0fc4df2006-10-20 07:07:24 +0000275 unsigned Idx = cast<ConstantInt>(GEP->getOperand(i))->getZExtValue();
Chris Lattnerc473d8e2007-02-10 19:55:17 +0000276 uint64_t Offset = SL->getElementOffset(Idx);
Chris Lattnereaf24722005-08-04 17:40:30 +0000277 GEPVal = SCEVAddExpr::get(GEPVal,
278 SCEVUnknown::getIntegerSCEV(Offset, UIntPtrTy));
Nate Begemane68bcd12005-07-30 00:15:07 +0000279 } else {
Reid Spencerdf1f19a2006-12-13 08:06:42 +0000280 unsigned GEPOpiBits =
281 GEP->getOperand(i)->getType()->getPrimitiveSizeInBits();
282 unsigned IntPtrBits = UIntPtrTy->getPrimitiveSizeInBits();
283 Instruction::CastOps opcode = (GEPOpiBits < IntPtrBits ?
284 Instruction::SExt : (GEPOpiBits > IntPtrBits ? Instruction::Trunc :
285 Instruction::BitCast));
286 Value *OpVal = getCastedVersionOf(opcode, GEP->getOperand(i));
Chris Lattneracc42c42005-08-04 19:08:16 +0000287 SCEVHandle Idx = SE->getSCEV(OpVal);
288
Dale Johannesenb6c05b12007-10-01 23:08:35 +0000289 uint64_t TypeSize = TD->getABITypeSize(GTI.getIndexedType());
Chris Lattnereaf24722005-08-04 17:40:30 +0000290 if (TypeSize != 1)
291 Idx = SCEVMulExpr::get(Idx,
Reid Spencere0fc4df2006-10-20 07:07:24 +0000292 SCEVConstant::get(ConstantInt::get(UIntPtrTy,
Chris Lattnereaf24722005-08-04 17:40:30 +0000293 TypeSize)));
294 GEPVal = SCEVAddExpr::get(GEPVal, Idx);
Nate Begemane68bcd12005-07-30 00:15:07 +0000295 }
296 }
297
Chris Lattnerc6c4d992005-08-09 23:39:36 +0000298 SE->setSCEV(GEP, GEPVal);
Chris Lattnereaf24722005-08-04 17:40:30 +0000299 return GEPVal;
Nate Begemane68bcd12005-07-30 00:15:07 +0000300}
301
Chris Lattneracc42c42005-08-04 19:08:16 +0000302/// getSCEVStartAndStride - Compute the start and stride of this expression,
303/// returning false if the expression is not a start/stride pair, or true if it
304/// is. The stride must be a loop invariant expression, but the start may be
305/// a mix of loop invariant and loop variant expressions.
306static bool getSCEVStartAndStride(const SCEVHandle &SH, Loop *L,
Chris Lattneredff91a2005-08-10 00:45:21 +0000307 SCEVHandle &Start, SCEVHandle &Stride) {
Chris Lattneracc42c42005-08-04 19:08:16 +0000308 SCEVHandle TheAddRec = Start; // Initialize to zero.
309
310 // If the outer level is an AddExpr, the operands are all start values except
311 // for a nested AddRecExpr.
312 if (SCEVAddExpr *AE = dyn_cast<SCEVAddExpr>(SH)) {
313 for (unsigned i = 0, e = AE->getNumOperands(); i != e; ++i)
314 if (SCEVAddRecExpr *AddRec =
315 dyn_cast<SCEVAddRecExpr>(AE->getOperand(i))) {
316 if (AddRec->getLoop() == L)
317 TheAddRec = SCEVAddExpr::get(AddRec, TheAddRec);
318 else
319 return false; // Nested IV of some sort?
320 } else {
321 Start = SCEVAddExpr::get(Start, AE->getOperand(i));
322 }
323
Reid Spencerde46e482006-11-02 20:25:50 +0000324 } else if (isa<SCEVAddRecExpr>(SH)) {
Chris Lattneracc42c42005-08-04 19:08:16 +0000325 TheAddRec = SH;
326 } else {
327 return false; // not analyzable.
328 }
329
330 SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(TheAddRec);
331 if (!AddRec || AddRec->getLoop() != L) return false;
332
333 // FIXME: Generalize to non-affine IV's.
334 if (!AddRec->isAffine()) return false;
335
336 Start = SCEVAddExpr::get(Start, AddRec->getOperand(0));
337
Chris Lattneracc42c42005-08-04 19:08:16 +0000338 if (!isa<SCEVConstant>(AddRec->getOperand(1)))
Bill Wendling5dbf43c2006-11-26 09:46:52 +0000339 DOUT << "[" << L->getHeader()->getName()
340 << "] Variable stride: " << *AddRec << "\n";
Chris Lattneracc42c42005-08-04 19:08:16 +0000341
Chris Lattneredff91a2005-08-10 00:45:21 +0000342 Stride = AddRec->getOperand(1);
Chris Lattneracc42c42005-08-04 19:08:16 +0000343 return true;
344}
345
Chris Lattnere4ed42a2005-10-03 01:04:44 +0000346/// IVUseShouldUsePostIncValue - We have discovered a "User" of an IV expression
347/// and now we need to decide whether the user should use the preinc or post-inc
348/// value. If this user should use the post-inc version of the IV, return true.
349///
350/// Choosing wrong here can break dominance properties (if we choose to use the
351/// post-inc value when we cannot) or it can end up adding extra live-ranges to
352/// the loop, resulting in reg-reg copies (if we use the pre-inc value when we
353/// should use the post-inc value).
354static bool IVUseShouldUsePostIncValue(Instruction *User, Instruction *IV,
Devang Pateldf6355c2007-06-07 21:42:15 +0000355 Loop *L, DominatorTree *DT, Pass *P) {
Chris Lattnere4ed42a2005-10-03 01:04:44 +0000356 // If the user is in the loop, use the preinc value.
357 if (L->contains(User->getParent())) return false;
358
Chris Lattnerf07a5872005-10-03 02:50:05 +0000359 BasicBlock *LatchBlock = L->getLoopLatch();
360
361 // Ok, the user is outside of the loop. If it is dominated by the latch
362 // block, use the post-inc value.
Devang Pateldf6355c2007-06-07 21:42:15 +0000363 if (DT->dominates(LatchBlock, User->getParent()))
Chris Lattnerf07a5872005-10-03 02:50:05 +0000364 return true;
365
366 // There is one case we have to be careful of: PHI nodes. These little guys
367 // can live in blocks that do not dominate the latch block, but (since their
368 // uses occur in the predecessor block, not the block the PHI lives in) should
369 // still use the post-inc value. Check for this case now.
370 PHINode *PN = dyn_cast<PHINode>(User);
371 if (!PN) return false; // not a phi, not dominated by latch block.
372
373 // Look at all of the uses of IV by the PHI node. If any use corresponds to
374 // a block that is not dominated by the latch block, give up and use the
375 // preincremented value.
376 unsigned NumUses = 0;
377 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
378 if (PN->getIncomingValue(i) == IV) {
379 ++NumUses;
Devang Pateldf6355c2007-06-07 21:42:15 +0000380 if (!DT->dominates(LatchBlock, PN->getIncomingBlock(i)))
Chris Lattnerf07a5872005-10-03 02:50:05 +0000381 return false;
382 }
383
384 // Okay, all uses of IV by PN are in predecessor blocks that really are
385 // dominated by the latch block. Split the critical edges and use the
386 // post-incremented value.
387 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
388 if (PN->getIncomingValue(i) == IV) {
Chris Lattnera6eb7e02006-10-28 06:45:33 +0000389 SplitCriticalEdge(PN->getIncomingBlock(i), PN->getParent(), P,
390 true);
Chris Lattner5191c652006-10-28 00:59:20 +0000391 // Splitting the critical edge can reduce the number of entries in this
392 // PHI.
393 e = PN->getNumIncomingValues();
Chris Lattnerf07a5872005-10-03 02:50:05 +0000394 if (--NumUses == 0) break;
395 }
396
397 return true;
Chris Lattnere4ed42a2005-10-03 01:04:44 +0000398}
399
400
401
Nate Begemane68bcd12005-07-30 00:15:07 +0000402/// AddUsersIfInteresting - Inspect the specified instruction. If it is a
403/// reducible SCEV, recursively add its users to the IVUsesByStride set and
404/// return true. Otherwise, return false.
Chris Lattnereaf24722005-08-04 17:40:30 +0000405bool LoopStrengthReduce::AddUsersIfInteresting(Instruction *I, Loop *L,
406 std::set<Instruction*> &Processed) {
Chris Lattner03c49532007-01-15 02:27:26 +0000407 if (!I->getType()->isInteger() && !isa<PointerType>(I->getType()))
Chris Lattner5df0e362005-10-21 05:45:41 +0000408 return false; // Void and FP expressions cannot be reduced.
Chris Lattnereaf24722005-08-04 17:40:30 +0000409 if (!Processed.insert(I).second)
410 return true; // Instruction already handled.
411
Chris Lattneracc42c42005-08-04 19:08:16 +0000412 // Get the symbolic expression for this instruction.
Chris Lattnereaf24722005-08-04 17:40:30 +0000413 SCEVHandle ISE = GetExpressionSCEV(I, L);
Chris Lattneracc42c42005-08-04 19:08:16 +0000414 if (isa<SCEVCouldNotCompute>(ISE)) return false;
Chris Lattnereaf24722005-08-04 17:40:30 +0000415
Chris Lattneracc42c42005-08-04 19:08:16 +0000416 // Get the start and stride for this expression.
417 SCEVHandle Start = SCEVUnknown::getIntegerSCEV(0, ISE->getType());
Chris Lattneredff91a2005-08-10 00:45:21 +0000418 SCEVHandle Stride = Start;
Chris Lattneracc42c42005-08-04 19:08:16 +0000419 if (!getSCEVStartAndStride(ISE, L, Start, Stride))
420 return false; // Non-reducible symbolic expression, bail out.
Devang Patel58818c52007-03-09 21:19:53 +0000421
Devang Patel38bc86f2007-04-23 22:42:03 +0000422 std::vector<Instruction *> IUsers;
423 // Collect all I uses now because IVUseShouldUsePostIncValue may
424 // invalidate use_iterator.
425 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
426 IUsers.push_back(cast<Instruction>(*UI));
Nate Begemane68bcd12005-07-30 00:15:07 +0000427
Devang Patel38bc86f2007-04-23 22:42:03 +0000428 for (unsigned iused_index = 0, iused_size = IUsers.size();
429 iused_index != iused_size; ++iused_index) {
430
431 Instruction *User = IUsers[iused_index];
Devang Patel58818c52007-03-09 21:19:53 +0000432
Nate Begemane68bcd12005-07-30 00:15:07 +0000433 // Do not infinitely recurse on PHI nodes.
Chris Lattnerfd018c82005-09-13 02:09:55 +0000434 if (isa<PHINode>(User) && Processed.count(User))
Nate Begemane68bcd12005-07-30 00:15:07 +0000435 continue;
436
437 // If this is an instruction defined in a nested loop, or outside this loop,
Chris Lattnera0102fb2005-08-04 00:14:11 +0000438 // don't recurse into it.
Chris Lattneracc42c42005-08-04 19:08:16 +0000439 bool AddUserToIVUsers = false;
Chris Lattnera0102fb2005-08-04 00:14:11 +0000440 if (LI->getLoopFor(User->getParent()) != L) {
Bill Wendling5dbf43c2006-11-26 09:46:52 +0000441 DOUT << "FOUND USER in other loop: " << *User
442 << " OF SCEV: " << *ISE << "\n";
Chris Lattneracc42c42005-08-04 19:08:16 +0000443 AddUserToIVUsers = true;
Chris Lattnereaf24722005-08-04 17:40:30 +0000444 } else if (!AddUsersIfInteresting(User, L, Processed)) {
Bill Wendling5dbf43c2006-11-26 09:46:52 +0000445 DOUT << "FOUND USER: " << *User
446 << " OF SCEV: " << *ISE << "\n";
Chris Lattneracc42c42005-08-04 19:08:16 +0000447 AddUserToIVUsers = true;
448 }
Nate Begemane68bcd12005-07-30 00:15:07 +0000449
Chris Lattneracc42c42005-08-04 19:08:16 +0000450 if (AddUserToIVUsers) {
Chris Lattner4ea0a3e2005-10-09 06:20:55 +0000451 IVUsersOfOneStride &StrideUses = IVUsesByStride[Stride];
452 if (StrideUses.Users.empty()) // First occurance of this stride?
453 StrideOrder.push_back(Stride);
454
Chris Lattner65107492005-08-04 00:40:47 +0000455 // Okay, we found a user that we cannot reduce. Analyze the instruction
Chris Lattnera6764832005-09-12 06:04:47 +0000456 // and decide what to do with it. If we are a use inside of the loop, use
457 // the value before incrementation, otherwise use it after incrementation.
Devang Pateldf6355c2007-06-07 21:42:15 +0000458 if (IVUseShouldUsePostIncValue(User, I, L, DT, this)) {
Chris Lattnera6764832005-09-12 06:04:47 +0000459 // The value used will be incremented by the stride more than we are
460 // expecting, so subtract this off.
461 SCEVHandle NewStart = SCEV::getMinusSCEV(Start, Stride);
Chris Lattner4ea0a3e2005-10-09 06:20:55 +0000462 StrideUses.addUser(NewStart, User, I);
463 StrideUses.Users.back().isUseOfPostIncrementedValue = true;
Bill Wendling5dbf43c2006-11-26 09:46:52 +0000464 DOUT << " USING POSTINC SCEV, START=" << *NewStart<< "\n";
Chris Lattnere4ed42a2005-10-03 01:04:44 +0000465 } else {
Chris Lattner4ea0a3e2005-10-09 06:20:55 +0000466 StrideUses.addUser(Start, User, I);
Chris Lattnera6764832005-09-12 06:04:47 +0000467 }
Nate Begemane68bcd12005-07-30 00:15:07 +0000468 }
469 }
470 return true;
471}
472
473namespace {
474 /// BasedUser - For a particular base value, keep information about how we've
475 /// partitioned the expression so far.
476 struct BasedUser {
Chris Lattner37c24cc2005-08-08 22:56:21 +0000477 /// Base - The Base value for the PHI node that needs to be inserted for
478 /// this use. As the use is processed, information gets moved from this
479 /// field to the Imm field (below). BasedUser values are sorted by this
480 /// field.
481 SCEVHandle Base;
482
Nate Begemane68bcd12005-07-30 00:15:07 +0000483 /// Inst - The instruction using the induction variable.
484 Instruction *Inst;
485
Chris Lattner430d0022005-08-03 22:21:05 +0000486 /// OperandValToReplace - The operand value of Inst to replace with the
487 /// EmittedBase.
488 Value *OperandValToReplace;
Nate Begemane68bcd12005-07-30 00:15:07 +0000489
490 /// Imm - The immediate value that should be added to the base immediately
491 /// before Inst, because it will be folded into the imm field of the
492 /// instruction.
493 SCEVHandle Imm;
494
495 /// EmittedBase - The actual value* to use for the base value of this
496 /// operation. This is null if we should just use zero so far.
497 Value *EmittedBase;
498
Chris Lattner9bfa6f82005-08-08 05:28:22 +0000499 // isUseOfPostIncrementedValue - True if this should use the
500 // post-incremented version of this IV, not the preincremented version.
501 // This can only be set in special cases, such as the terminating setcc
Chris Lattnera6764832005-09-12 06:04:47 +0000502 // instruction for a loop and uses outside the loop that are dominated by
503 // the loop.
Chris Lattner9bfa6f82005-08-08 05:28:22 +0000504 bool isUseOfPostIncrementedValue;
Chris Lattner37c24cc2005-08-08 22:56:21 +0000505
506 BasedUser(IVStrideUse &IVSU)
507 : Base(IVSU.Offset), Inst(IVSU.User),
508 OperandValToReplace(IVSU.OperandValToReplace),
509 Imm(SCEVUnknown::getIntegerSCEV(0, Base->getType())), EmittedBase(0),
510 isUseOfPostIncrementedValue(IVSU.isUseOfPostIncrementedValue) {}
Nate Begemane68bcd12005-07-30 00:15:07 +0000511
Chris Lattnera6d7c352005-08-04 20:03:32 +0000512 // Once we rewrite the code to insert the new IVs we want, update the
513 // operands of Inst to use the new expression 'NewBase', with 'Imm' added
514 // to it.
Chris Lattnera091ff12005-08-09 00:18:09 +0000515 void RewriteInstructionToUseNewBase(const SCEVHandle &NewBase,
Chris Lattner8447b492005-08-12 22:22:17 +0000516 SCEVExpander &Rewriter, Loop *L,
517 Pass *P);
Chris Lattner2959f002006-02-04 07:36:50 +0000518
519 Value *InsertCodeForBaseAtPosition(const SCEVHandle &NewBase,
520 SCEVExpander &Rewriter,
521 Instruction *IP, Loop *L);
Nate Begemane68bcd12005-07-30 00:15:07 +0000522 void dump() const;
523 };
524}
525
526void BasedUser::dump() const {
Bill Wendlingf3baad32006-12-07 01:30:32 +0000527 cerr << " Base=" << *Base;
528 cerr << " Imm=" << *Imm;
Nate Begemane68bcd12005-07-30 00:15:07 +0000529 if (EmittedBase)
Bill Wendlingf3baad32006-12-07 01:30:32 +0000530 cerr << " EB=" << *EmittedBase;
Nate Begemane68bcd12005-07-30 00:15:07 +0000531
Bill Wendlingf3baad32006-12-07 01:30:32 +0000532 cerr << " Inst: " << *Inst;
Nate Begemane68bcd12005-07-30 00:15:07 +0000533}
534
Chris Lattner2959f002006-02-04 07:36:50 +0000535Value *BasedUser::InsertCodeForBaseAtPosition(const SCEVHandle &NewBase,
536 SCEVExpander &Rewriter,
537 Instruction *IP, Loop *L) {
538 // Figure out where we *really* want to insert this code. In particular, if
539 // the user is inside of a loop that is nested inside of L, we really don't
540 // want to insert this expression before the user, we'd rather pull it out as
541 // many loops as possible.
542 LoopInfo &LI = Rewriter.getLoopInfo();
543 Instruction *BaseInsertPt = IP;
544
545 // Figure out the most-nested loop that IP is in.
546 Loop *InsertLoop = LI.getLoopFor(IP->getParent());
547
548 // If InsertLoop is not L, and InsertLoop is nested inside of L, figure out
549 // the preheader of the outer-most loop where NewBase is not loop invariant.
550 while (InsertLoop && NewBase->isLoopInvariant(InsertLoop)) {
551 BaseInsertPt = InsertLoop->getLoopPreheader()->getTerminator();
552 InsertLoop = InsertLoop->getParentLoop();
553 }
554
555 // If there is no immediate value, skip the next part.
556 if (SCEVConstant *SC = dyn_cast<SCEVConstant>(Imm))
Reid Spencer53a37392007-03-02 23:51:25 +0000557 if (SC->getValue()->isZero())
Dan Gohmancb9e09a2007-06-15 14:38:12 +0000558 return Rewriter.expandCodeFor(NewBase, BaseInsertPt);
Chris Lattner2959f002006-02-04 07:36:50 +0000559
560 Value *Base = Rewriter.expandCodeFor(NewBase, BaseInsertPt);
Chris Lattner1b7b6e72007-06-06 01:23:55 +0000561
562 // If we are inserting the base and imm values in the same block, make sure to
563 // adjust the IP position if insertion reused a result.
564 if (IP == BaseInsertPt)
565 IP = Rewriter.getInsertionPoint();
Chris Lattner2959f002006-02-04 07:36:50 +0000566
567 // Always emit the immediate (if non-zero) into the same block as the user.
568 SCEVHandle NewValSCEV = SCEVAddExpr::get(SCEVUnknown::get(Base), Imm);
Dan Gohmancb9e09a2007-06-15 14:38:12 +0000569 return Rewriter.expandCodeFor(NewValSCEV, IP);
Chris Lattner1b7b6e72007-06-06 01:23:55 +0000570
Chris Lattner2959f002006-02-04 07:36:50 +0000571}
572
573
Chris Lattnera6d7c352005-08-04 20:03:32 +0000574// Once we rewrite the code to insert the new IVs we want, update the
575// operands of Inst to use the new expression 'NewBase', with 'Imm' added
576// to it.
Chris Lattnera091ff12005-08-09 00:18:09 +0000577void BasedUser::RewriteInstructionToUseNewBase(const SCEVHandle &NewBase,
Chris Lattner4fec86d2005-08-12 22:06:11 +0000578 SCEVExpander &Rewriter,
Chris Lattner8447b492005-08-12 22:22:17 +0000579 Loop *L, Pass *P) {
Chris Lattnera6d7c352005-08-04 20:03:32 +0000580 if (!isa<PHINode>(Inst)) {
Chris Lattnerefd30512007-04-13 20:42:26 +0000581 // By default, insert code at the user instruction.
582 BasicBlock::iterator InsertPt = Inst;
583
584 // However, if the Operand is itself an instruction, the (potentially
585 // complex) inserted code may be shared by many users. Because of this, we
586 // want to emit code for the computation of the operand right before its old
587 // computation. This is usually safe, because we obviously used to use the
588 // computation when it was computed in its current block. However, in some
589 // cases (e.g. use of a post-incremented induction variable) the NewBase
590 // value will be pinned to live somewhere after the original computation.
591 // In this case, we have to back off.
592 if (!isUseOfPostIncrementedValue) {
593 if (Instruction *OpInst = dyn_cast<Instruction>(OperandValToReplace)) {
594 InsertPt = OpInst;
595 while (isa<PHINode>(InsertPt)) ++InsertPt;
596 }
597 }
Chris Lattnerefd30512007-04-13 20:42:26 +0000598 Value *NewVal = InsertCodeForBaseAtPosition(NewBase, Rewriter, InsertPt, L);
Dan Gohman8c4da372007-07-31 17:22:27 +0000599 // Adjust the type back to match the Inst. Note that we can't use InsertPt
600 // here because the SCEVExpander may have inserted the instructions after
601 // that point, in its efforts to avoid inserting redundant expressions.
Dan Gohmancb9e09a2007-06-15 14:38:12 +0000602 if (isa<PointerType>(OperandValToReplace->getType())) {
Dan Gohman8c4da372007-07-31 17:22:27 +0000603 NewVal = SCEVExpander::InsertCastOfTo(Instruction::IntToPtr,
604 NewVal,
605 OperandValToReplace->getType());
Dan Gohmancb9e09a2007-06-15 14:38:12 +0000606 }
Chris Lattnera6d7c352005-08-04 20:03:32 +0000607 // Replace the use of the operand Value with the new Phi we just created.
608 Inst->replaceUsesOfWith(OperandValToReplace, NewVal);
Chris Lattner1480e162007-05-11 22:40:34 +0000609 DOUT << " CHANGED: IMM =" << *Imm;
610 DOUT << " \tNEWBASE =" << *NewBase;
611 DOUT << " \tInst = " << *Inst;
Chris Lattnera6d7c352005-08-04 20:03:32 +0000612 return;
613 }
614
615 // PHI nodes are more complex. We have to insert one copy of the NewBase+Imm
Chris Lattnerdde7dc52005-08-10 00:35:32 +0000616 // expression into each operand block that uses it. Note that PHI nodes can
617 // have multiple entries for the same predecessor. We use a map to make sure
618 // that a PHI node only has a single Value* for each predecessor (which also
619 // prevents us from inserting duplicate code in some blocks).
620 std::map<BasicBlock*, Value*> InsertedCode;
Chris Lattnera6d7c352005-08-04 20:03:32 +0000621 PHINode *PN = cast<PHINode>(Inst);
622 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
623 if (PN->getIncomingValue(i) == OperandValToReplace) {
Chris Lattner4fec86d2005-08-12 22:06:11 +0000624 // If this is a critical edge, split the edge so that we do not insert the
Chris Lattnerfd018c82005-09-13 02:09:55 +0000625 // code on all predecessor/successor paths. We do this unless this is the
626 // canonical backedge for this loop, as this can make some inserted code
627 // be in an illegal position.
Chris Lattner8fcce172005-10-03 00:31:52 +0000628 BasicBlock *PHIPred = PN->getIncomingBlock(i);
629 if (e != 1 && PHIPred->getTerminator()->getNumSuccessors() > 1 &&
630 (PN->getParent() != L->getHeader() || !L->contains(PHIPred))) {
Chris Lattner8fcce172005-10-03 00:31:52 +0000631
Chris Lattner2bf7cb52005-08-17 06:35:16 +0000632 // First step, split the critical edge.
Chris Lattnera6eb7e02006-10-28 06:45:33 +0000633 SplitCriticalEdge(PHIPred, PN->getParent(), P, true);
Chris Lattner8447b492005-08-12 22:22:17 +0000634
Chris Lattner2bf7cb52005-08-17 06:35:16 +0000635 // Next step: move the basic block. In particular, if the PHI node
636 // is outside of the loop, and PredTI is in the loop, we want to
637 // move the block to be immediately before the PHI block, not
638 // immediately after PredTI.
Chris Lattner8fcce172005-10-03 00:31:52 +0000639 if (L->contains(PHIPred) && !L->contains(PN->getParent())) {
Chris Lattner2bf7cb52005-08-17 06:35:16 +0000640 BasicBlock *NewBB = PN->getIncomingBlock(i);
641 NewBB->moveBefore(PN->getParent());
Chris Lattner4fec86d2005-08-12 22:06:11 +0000642 }
Chris Lattner5191c652006-10-28 00:59:20 +0000643
644 // Splitting the edge can reduce the number of PHI entries we have.
645 e = PN->getNumIncomingValues();
Chris Lattner4fec86d2005-08-12 22:06:11 +0000646 }
Chris Lattnera6d7c352005-08-04 20:03:32 +0000647
Chris Lattnerdde7dc52005-08-10 00:35:32 +0000648 Value *&Code = InsertedCode[PN->getIncomingBlock(i)];
649 if (!Code) {
650 // Insert the code into the end of the predecessor block.
Chris Lattner2959f002006-02-04 07:36:50 +0000651 Instruction *InsertPt = PN->getIncomingBlock(i)->getTerminator();
652 Code = InsertCodeForBaseAtPosition(NewBase, Rewriter, InsertPt, L);
Dan Gohmancb9e09a2007-06-15 14:38:12 +0000653
Chris Lattner27406942007-08-02 16:53:43 +0000654 // Adjust the type back to match the PHI. Note that we can't use
655 // InsertPt here because the SCEVExpander may have inserted its
656 // instructions after that point, in its efforts to avoid inserting
657 // redundant expressions.
Dan Gohmancb9e09a2007-06-15 14:38:12 +0000658 if (isa<PointerType>(PN->getType())) {
Dan Gohman8c4da372007-07-31 17:22:27 +0000659 Code = SCEVExpander::InsertCastOfTo(Instruction::IntToPtr,
660 Code,
661 PN->getType());
Dan Gohmancb9e09a2007-06-15 14:38:12 +0000662 }
Chris Lattnerdde7dc52005-08-10 00:35:32 +0000663 }
Chris Lattnera6d7c352005-08-04 20:03:32 +0000664
665 // Replace the use of the operand Value with the new Phi we just created.
Chris Lattnerdde7dc52005-08-10 00:35:32 +0000666 PN->setIncomingValue(i, Code);
Chris Lattnera6d7c352005-08-04 20:03:32 +0000667 Rewriter.clear();
668 }
669 }
Bill Wendling5dbf43c2006-11-26 09:46:52 +0000670 DOUT << " CHANGED: IMM =" << *Imm << " Inst = " << *Inst;
Chris Lattnera6d7c352005-08-04 20:03:32 +0000671}
672
673
Nate Begemane68bcd12005-07-30 00:15:07 +0000674/// isTargetConstant - Return true if the following can be referenced by the
675/// immediate field of a target instruction.
Evan Chengb5eb9322007-03-13 20:34:37 +0000676static bool isTargetConstant(const SCEVHandle &V, const Type *UseTy,
677 const TargetLowering *TLI) {
Chris Lattner14203e82005-08-08 06:25:50 +0000678 if (SCEVConstant *SC = dyn_cast<SCEVConstant>(V)) {
Evan Cheng720acdf2007-03-12 23:27:37 +0000679 int64_t VC = SC->getValue()->getSExtValue();
Chris Lattner780c0092007-04-09 22:20:14 +0000680 if (TLI) {
681 TargetLowering::AddrMode AM;
682 AM.BaseOffs = VC;
683 return TLI->isLegalAddressingMode(AM, UseTy);
684 } else {
Evan Chengc567c4e2006-03-13 23:14:23 +0000685 // Defaults to PPC. PPC allows a sign-extended 16-bit immediate field.
Evan Cheng720acdf2007-03-12 23:27:37 +0000686 return (VC > -(1 << 16) && VC < (1 << 16)-1);
Chris Lattner780c0092007-04-09 22:20:14 +0000687 }
Chris Lattner14203e82005-08-08 06:25:50 +0000688 }
Jeff Cohen546fd592005-07-30 18:33:25 +0000689
Nate Begemane68bcd12005-07-30 00:15:07 +0000690 if (SCEVUnknown *SU = dyn_cast<SCEVUnknown>(V))
691 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(SU->getValue()))
Chris Lattner780c0092007-04-09 22:20:14 +0000692 if (TLI && CE->getOpcode() == Instruction::PtrToInt) {
Evan Chengc567c4e2006-03-13 23:14:23 +0000693 Constant *Op0 = CE->getOperand(0);
Chris Lattner780c0092007-04-09 22:20:14 +0000694 if (GlobalValue *GV = dyn_cast<GlobalValue>(Op0)) {
695 TargetLowering::AddrMode AM;
696 AM.BaseGV = GV;
697 return TLI->isLegalAddressingMode(AM, UseTy);
698 }
Evan Chengc567c4e2006-03-13 23:14:23 +0000699 }
Nate Begemane68bcd12005-07-30 00:15:07 +0000700 return false;
701}
702
Chris Lattner37ed8952005-08-08 22:32:34 +0000703/// MoveLoopVariantsToImediateField - Move any subexpressions from Val that are
704/// loop varying to the Imm operand.
705static void MoveLoopVariantsToImediateField(SCEVHandle &Val, SCEVHandle &Imm,
706 Loop *L) {
707 if (Val->isLoopInvariant(L)) return; // Nothing to do.
708
709 if (SCEVAddExpr *SAE = dyn_cast<SCEVAddExpr>(Val)) {
710 std::vector<SCEVHandle> NewOps;
711 NewOps.reserve(SAE->getNumOperands());
712
713 for (unsigned i = 0; i != SAE->getNumOperands(); ++i)
714 if (!SAE->getOperand(i)->isLoopInvariant(L)) {
715 // If this is a loop-variant expression, it must stay in the immediate
716 // field of the expression.
717 Imm = SCEVAddExpr::get(Imm, SAE->getOperand(i));
718 } else {
719 NewOps.push_back(SAE->getOperand(i));
720 }
721
722 if (NewOps.empty())
723 Val = SCEVUnknown::getIntegerSCEV(0, Val->getType());
724 else
725 Val = SCEVAddExpr::get(NewOps);
726 } else if (SCEVAddRecExpr *SARE = dyn_cast<SCEVAddRecExpr>(Val)) {
727 // Try to pull immediates out of the start value of nested addrec's.
728 SCEVHandle Start = SARE->getStart();
729 MoveLoopVariantsToImediateField(Start, Imm, L);
730
731 std::vector<SCEVHandle> Ops(SARE->op_begin(), SARE->op_end());
732 Ops[0] = Start;
733 Val = SCEVAddRecExpr::get(Ops, SARE->getLoop());
734 } else {
735 // Otherwise, all of Val is variant, move the whole thing over.
736 Imm = SCEVAddExpr::get(Imm, Val);
737 Val = SCEVUnknown::getIntegerSCEV(0, Val->getType());
738 }
739}
740
741
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000742/// MoveImmediateValues - Look at Val, and pull out any additions of constants
Nate Begemane68bcd12005-07-30 00:15:07 +0000743/// that can fit into the immediate field of instructions in the target.
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000744/// Accumulate these immediate values into the Imm value.
Evan Chengc567c4e2006-03-13 23:14:23 +0000745static void MoveImmediateValues(const TargetLowering *TLI,
Evan Chengb5eb9322007-03-13 20:34:37 +0000746 Instruction *User,
Evan Chengc567c4e2006-03-13 23:14:23 +0000747 SCEVHandle &Val, SCEVHandle &Imm,
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000748 bool isAddress, Loop *L) {
Evan Chengb5eb9322007-03-13 20:34:37 +0000749 const Type *UseTy = User->getType();
750 if (StoreInst *SI = dyn_cast<StoreInst>(User))
751 UseTy = SI->getOperand(0)->getType();
752
Chris Lattnerfc624702005-08-03 23:44:42 +0000753 if (SCEVAddExpr *SAE = dyn_cast<SCEVAddExpr>(Val)) {
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000754 std::vector<SCEVHandle> NewOps;
755 NewOps.reserve(SAE->getNumOperands());
756
Chris Lattner2959f002006-02-04 07:36:50 +0000757 for (unsigned i = 0; i != SAE->getNumOperands(); ++i) {
758 SCEVHandle NewOp = SAE->getOperand(i);
Evan Chengb5eb9322007-03-13 20:34:37 +0000759 MoveImmediateValues(TLI, User, NewOp, Imm, isAddress, L);
Chris Lattner2959f002006-02-04 07:36:50 +0000760
761 if (!NewOp->isLoopInvariant(L)) {
Chris Lattneracc42c42005-08-04 19:08:16 +0000762 // If this is a loop-variant expression, it must stay in the immediate
763 // field of the expression.
Chris Lattner2959f002006-02-04 07:36:50 +0000764 Imm = SCEVAddExpr::get(Imm, NewOp);
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000765 } else {
Chris Lattner2959f002006-02-04 07:36:50 +0000766 NewOps.push_back(NewOp);
Nate Begemane68bcd12005-07-30 00:15:07 +0000767 }
Chris Lattner2959f002006-02-04 07:36:50 +0000768 }
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000769
770 if (NewOps.empty())
771 Val = SCEVUnknown::getIntegerSCEV(0, Val->getType());
772 else
773 Val = SCEVAddExpr::get(NewOps);
774 return;
Chris Lattnerfc624702005-08-03 23:44:42 +0000775 } else if (SCEVAddRecExpr *SARE = dyn_cast<SCEVAddRecExpr>(Val)) {
776 // Try to pull immediates out of the start value of nested addrec's.
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000777 SCEVHandle Start = SARE->getStart();
Evan Chengb5eb9322007-03-13 20:34:37 +0000778 MoveImmediateValues(TLI, User, Start, Imm, isAddress, L);
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000779
780 if (Start != SARE->getStart()) {
781 std::vector<SCEVHandle> Ops(SARE->op_begin(), SARE->op_end());
782 Ops[0] = Start;
783 Val = SCEVAddRecExpr::get(Ops, SARE->getLoop());
784 }
785 return;
Chris Lattner2959f002006-02-04 07:36:50 +0000786 } else if (SCEVMulExpr *SME = dyn_cast<SCEVMulExpr>(Val)) {
787 // Transform "8 * (4 + v)" -> "32 + 8*V" if "32" fits in the immed field.
Evan Chengb5eb9322007-03-13 20:34:37 +0000788 if (isAddress && isTargetConstant(SME->getOperand(0), UseTy, TLI) &&
Chris Lattner2959f002006-02-04 07:36:50 +0000789 SME->getNumOperands() == 2 && SME->isLoopInvariant(L)) {
790
791 SCEVHandle SubImm = SCEVUnknown::getIntegerSCEV(0, Val->getType());
792 SCEVHandle NewOp = SME->getOperand(1);
Evan Chengb5eb9322007-03-13 20:34:37 +0000793 MoveImmediateValues(TLI, User, NewOp, SubImm, isAddress, L);
Chris Lattner2959f002006-02-04 07:36:50 +0000794
795 // If we extracted something out of the subexpressions, see if we can
796 // simplify this!
797 if (NewOp != SME->getOperand(1)) {
798 // Scale SubImm up by "8". If the result is a target constant, we are
799 // good.
800 SubImm = SCEVMulExpr::get(SubImm, SME->getOperand(0));
Evan Chengb5eb9322007-03-13 20:34:37 +0000801 if (isTargetConstant(SubImm, UseTy, TLI)) {
Chris Lattner2959f002006-02-04 07:36:50 +0000802 // Accumulate the immediate.
803 Imm = SCEVAddExpr::get(Imm, SubImm);
804
805 // Update what is left of 'Val'.
806 Val = SCEVMulExpr::get(SME->getOperand(0), NewOp);
807 return;
808 }
809 }
810 }
Nate Begemane68bcd12005-07-30 00:15:07 +0000811 }
812
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000813 // Loop-variant expressions must stay in the immediate field of the
814 // expression.
Evan Chengb5eb9322007-03-13 20:34:37 +0000815 if ((isAddress && isTargetConstant(Val, UseTy, TLI)) ||
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000816 !Val->isLoopInvariant(L)) {
817 Imm = SCEVAddExpr::get(Imm, Val);
818 Val = SCEVUnknown::getIntegerSCEV(0, Val->getType());
819 return;
Chris Lattner0f7c0fa2005-08-04 19:26:19 +0000820 }
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000821
822 // Otherwise, no immediates to move.
Nate Begemane68bcd12005-07-30 00:15:07 +0000823}
824
Chris Lattner5949d492005-08-13 07:27:18 +0000825
Chris Lattner3ff62012006-08-03 06:34:50 +0000826/// SeparateSubExprs - Decompose Expr into all of the subexpressions that are
827/// added together. This is used to reassociate common addition subexprs
828/// together for maximal sharing when rewriting bases.
Chris Lattner5949d492005-08-13 07:27:18 +0000829static void SeparateSubExprs(std::vector<SCEVHandle> &SubExprs,
830 SCEVHandle Expr) {
831 if (SCEVAddExpr *AE = dyn_cast<SCEVAddExpr>(Expr)) {
832 for (unsigned j = 0, e = AE->getNumOperands(); j != e; ++j)
833 SeparateSubExprs(SubExprs, AE->getOperand(j));
834 } else if (SCEVAddRecExpr *SARE = dyn_cast<SCEVAddRecExpr>(Expr)) {
835 SCEVHandle Zero = SCEVUnknown::getIntegerSCEV(0, Expr->getType());
836 if (SARE->getOperand(0) == Zero) {
837 SubExprs.push_back(Expr);
838 } else {
839 // Compute the addrec with zero as its base.
840 std::vector<SCEVHandle> Ops(SARE->op_begin(), SARE->op_end());
841 Ops[0] = Zero; // Start with zero base.
842 SubExprs.push_back(SCEVAddRecExpr::get(Ops, SARE->getLoop()));
843
844
845 SeparateSubExprs(SubExprs, SARE->getOperand(0));
846 }
847 } else if (!isa<SCEVConstant>(Expr) ||
Reid Spencer53a37392007-03-02 23:51:25 +0000848 !cast<SCEVConstant>(Expr)->getValue()->isZero()) {
Chris Lattner5949d492005-08-13 07:27:18 +0000849 // Do not add zero.
850 SubExprs.push_back(Expr);
851 }
852}
853
854
Chris Lattnera091ff12005-08-09 00:18:09 +0000855/// RemoveCommonExpressionsFromUseBases - Look through all of the uses in Bases,
856/// removing any common subexpressions from it. Anything truly common is
857/// removed, accumulated, and returned. This looks for things like (a+b+c) and
858/// (a+c+d) -> (a+c). The common expression is *removed* from the Bases.
859static SCEVHandle
860RemoveCommonExpressionsFromUseBases(std::vector<BasedUser> &Uses) {
861 unsigned NumUses = Uses.size();
862
863 // Only one use? Use its base, regardless of what it is!
864 SCEVHandle Zero = SCEVUnknown::getIntegerSCEV(0, Uses[0].Base->getType());
865 SCEVHandle Result = Zero;
866 if (NumUses == 1) {
867 std::swap(Result, Uses[0].Base);
868 return Result;
869 }
870
871 // To find common subexpressions, count how many of Uses use each expression.
872 // If any subexpressions are used Uses.size() times, they are common.
873 std::map<SCEVHandle, unsigned> SubExpressionUseCounts;
874
Chris Lattner192cd182005-10-11 18:41:04 +0000875 // UniqueSubExprs - Keep track of all of the subexpressions we see in the
876 // order we see them.
877 std::vector<SCEVHandle> UniqueSubExprs;
878
Chris Lattner5949d492005-08-13 07:27:18 +0000879 std::vector<SCEVHandle> SubExprs;
880 for (unsigned i = 0; i != NumUses; ++i) {
881 // If the base is zero (which is common), return zero now, there are no
882 // CSEs we can find.
883 if (Uses[i].Base == Zero) return Zero;
884
885 // Split the expression into subexprs.
886 SeparateSubExprs(SubExprs, Uses[i].Base);
887 // Add one to SubExpressionUseCounts for each subexpr present.
888 for (unsigned j = 0, e = SubExprs.size(); j != e; ++j)
Chris Lattner192cd182005-10-11 18:41:04 +0000889 if (++SubExpressionUseCounts[SubExprs[j]] == 1)
890 UniqueSubExprs.push_back(SubExprs[j]);
Chris Lattner5949d492005-08-13 07:27:18 +0000891 SubExprs.clear();
892 }
893
Chris Lattner192cd182005-10-11 18:41:04 +0000894 // Now that we know how many times each is used, build Result. Iterate over
895 // UniqueSubexprs so that we have a stable ordering.
896 for (unsigned i = 0, e = UniqueSubExprs.size(); i != e; ++i) {
897 std::map<SCEVHandle, unsigned>::iterator I =
898 SubExpressionUseCounts.find(UniqueSubExprs[i]);
899 assert(I != SubExpressionUseCounts.end() && "Entry not found?");
Chris Lattnera091ff12005-08-09 00:18:09 +0000900 if (I->second == NumUses) { // Found CSE!
901 Result = SCEVAddExpr::get(Result, I->first);
Chris Lattnera091ff12005-08-09 00:18:09 +0000902 } else {
903 // Remove non-cse's from SubExpressionUseCounts.
Chris Lattner192cd182005-10-11 18:41:04 +0000904 SubExpressionUseCounts.erase(I);
Chris Lattnera091ff12005-08-09 00:18:09 +0000905 }
Chris Lattner192cd182005-10-11 18:41:04 +0000906 }
Chris Lattnera091ff12005-08-09 00:18:09 +0000907
908 // If we found no CSE's, return now.
909 if (Result == Zero) return Result;
910
911 // Otherwise, remove all of the CSE's we found from each of the base values.
Chris Lattner5949d492005-08-13 07:27:18 +0000912 for (unsigned i = 0; i != NumUses; ++i) {
913 // Split the expression into subexprs.
914 SeparateSubExprs(SubExprs, Uses[i].Base);
915
916 // Remove any common subexpressions.
917 for (unsigned j = 0, e = SubExprs.size(); j != e; ++j)
918 if (SubExpressionUseCounts.count(SubExprs[j])) {
919 SubExprs.erase(SubExprs.begin()+j);
920 --j; --e;
921 }
922
923 // Finally, the non-shared expressions together.
924 if (SubExprs.empty())
Chris Lattnera091ff12005-08-09 00:18:09 +0000925 Uses[i].Base = Zero;
Chris Lattner5949d492005-08-13 07:27:18 +0000926 else
927 Uses[i].Base = SCEVAddExpr::get(SubExprs);
Chris Lattner47d3ec32005-08-13 07:42:01 +0000928 SubExprs.clear();
Chris Lattner5949d492005-08-13 07:27:18 +0000929 }
Chris Lattnera091ff12005-08-09 00:18:09 +0000930
931 return Result;
932}
933
Evan Cheng3df447d2006-03-16 21:53:05 +0000934/// isZero - returns true if the scalar evolution expression is zero.
935///
936static bool isZero(SCEVHandle &V) {
937 if (SCEVConstant *SC = dyn_cast<SCEVConstant>(V))
Reid Spencer53a37392007-03-02 23:51:25 +0000938 return SC->getValue()->isZero();
Evan Cheng3df447d2006-03-16 21:53:05 +0000939 return false;
940}
941
Dale Johannesene3a02be2007-03-20 00:47:50 +0000942/// ValidStride - Check whether the given Scale is valid for all loads and
Chris Lattner780c0092007-04-09 22:20:14 +0000943/// stores in UsersToProcess.
Dale Johannesene3a02be2007-03-20 00:47:50 +0000944///
945bool LoopStrengthReduce::ValidStride(int64_t Scale,
946 const std::vector<BasedUser>& UsersToProcess) {
Dale Johannesenbacf4ac2007-03-20 21:54:54 +0000947 for (unsigned i=0, e = UsersToProcess.size(); i!=e; ++i) {
Chris Lattner28e0e4e2007-04-02 06:34:44 +0000948 // If this is a load or other access, pass the type of the access in.
949 const Type *AccessTy = Type::VoidTy;
950 if (StoreInst *SI = dyn_cast<StoreInst>(UsersToProcess[i].Inst))
951 AccessTy = SI->getOperand(0)->getType();
952 else if (LoadInst *LI = dyn_cast<LoadInst>(UsersToProcess[i].Inst))
953 AccessTy = LI->getType();
954
Chris Lattner780c0092007-04-09 22:20:14 +0000955 TargetLowering::AddrMode AM;
956 if (SCEVConstant *SC = dyn_cast<SCEVConstant>(UsersToProcess[i].Imm))
957 AM.BaseOffs = SC->getValue()->getSExtValue();
958 AM.Scale = Scale;
959
960 // If load[imm+r*scale] is illegal, bail out.
961 if (!TLI->isLegalAddressingMode(AM, AccessTy))
Dale Johannesene3a02be2007-03-20 00:47:50 +0000962 return false;
Dale Johannesenbacf4ac2007-03-20 21:54:54 +0000963 }
Dale Johannesene3a02be2007-03-20 00:47:50 +0000964 return true;
965}
Chris Lattnera091ff12005-08-09 00:18:09 +0000966
Evan Cheng45206982006-03-17 19:52:23 +0000967/// CheckForIVReuse - Returns the multiple if the stride is the multiple
968/// of a previous stride and it is a legal value for the target addressing
969/// mode scale component. This allows the users of this stride to be rewritten
Evan Chengc28282b2006-03-18 08:03:12 +0000970/// as prev iv * factor. It returns 0 if no reuse is possible.
Dale Johannesene3a02be2007-03-20 00:47:50 +0000971unsigned LoopStrengthReduce::CheckForIVReuse(const SCEVHandle &Stride,
972 IVExpr &IV, const Type *Ty,
973 const std::vector<BasedUser>& UsersToProcess) {
Evan Chengc28282b2006-03-18 08:03:12 +0000974 if (!TLI) return 0;
Evan Cheng45206982006-03-17 19:52:23 +0000975
976 if (SCEVConstant *SC = dyn_cast<SCEVConstant>(Stride)) {
Reid Spencerba547cb2007-03-02 23:37:53 +0000977 int64_t SInt = SC->getValue()->getSExtValue();
978 if (SInt == 1) return 0;
Evan Cheng45206982006-03-17 19:52:23 +0000979
Evan Cheng720acdf2007-03-12 23:27:37 +0000980 for (std::map<SCEVHandle, IVsOfOneStride>::iterator SI= IVsByStride.begin(),
981 SE = IVsByStride.end(); SI != SE; ++SI) {
982 int64_t SSInt = cast<SCEVConstant>(SI->first)->getValue()->getSExtValue();
Chris Lattnerf3197a72007-04-02 22:51:58 +0000983 if (SInt != -SSInt &&
984 (unsigned(abs(SInt)) < SSInt || (SInt % SSInt) != 0))
Evan Cheng45206982006-03-17 19:52:23 +0000985 continue;
Evan Cheng720acdf2007-03-12 23:27:37 +0000986 int64_t Scale = SInt / SSInt;
Dale Johannesene3a02be2007-03-20 00:47:50 +0000987 // Check that this stride is valid for all the types used for loads and
988 // stores; if it can be used for some and not others, we might as well use
989 // the original stride everywhere, since we have to create the IV for it
990 // anyway.
991 if (ValidStride(Scale, UsersToProcess))
Evan Cheng720acdf2007-03-12 23:27:37 +0000992 for (std::vector<IVExpr>::iterator II = SI->second.IVs.begin(),
993 IE = SI->second.IVs.end(); II != IE; ++II)
994 // FIXME: Only handle base == 0 for now.
995 // Only reuse previous IV if it would not require a type conversion.
996 if (isZero(II->Base) && II->Base->getType() == Ty) {
997 IV = *II;
998 return Scale;
999 }
Evan Cheng45206982006-03-17 19:52:23 +00001000 }
1001 }
Evan Chengc28282b2006-03-18 08:03:12 +00001002 return 0;
Evan Cheng45206982006-03-17 19:52:23 +00001003}
1004
Chris Lattner3ff62012006-08-03 06:34:50 +00001005/// PartitionByIsUseOfPostIncrementedValue - Simple boolean predicate that
1006/// returns true if Val's isUseOfPostIncrementedValue is true.
1007static bool PartitionByIsUseOfPostIncrementedValue(const BasedUser &Val) {
1008 return Val.isUseOfPostIncrementedValue;
1009}
Evan Cheng45206982006-03-17 19:52:23 +00001010
Chris Lattnere8bd53c2007-05-19 01:22:21 +00001011/// isNonConstantNegative - REturn true if the specified scev is negated, but
1012/// not a constant.
1013static bool isNonConstantNegative(const SCEVHandle &Expr) {
1014 SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(Expr);
1015 if (!Mul) return false;
1016
1017 // If there is a constant factor, it will be first.
1018 SCEVConstant *SC = dyn_cast<SCEVConstant>(Mul->getOperand(0));
1019 if (!SC) return false;
1020
1021 // Return true if the value is negative, this matches things like (-42 * V).
1022 return SC->getValue()->getValue().isNegative();
1023}
1024
Nate Begemane68bcd12005-07-30 00:15:07 +00001025/// StrengthReduceStridedIVUsers - Strength reduce all of the users of a single
1026/// stride of IV. All of the users may have different starting values, and this
1027/// may not be the only stride (we know it is if isOnlyStride is true).
Chris Lattneredff91a2005-08-10 00:45:21 +00001028void LoopStrengthReduce::StrengthReduceStridedIVUsers(const SCEVHandle &Stride,
Chris Lattner430d0022005-08-03 22:21:05 +00001029 IVUsersOfOneStride &Uses,
1030 Loop *L,
Nate Begemane68bcd12005-07-30 00:15:07 +00001031 bool isOnlyStride) {
1032 // Transform our list of users and offsets to a bit more complex table. In
Chris Lattner37c24cc2005-08-08 22:56:21 +00001033 // this new vector, each 'BasedUser' contains 'Base' the base of the
1034 // strided accessas well as the old information from Uses. We progressively
1035 // move information from the Base field to the Imm field, until we eventually
1036 // have the full access expression to rewrite the use.
1037 std::vector<BasedUser> UsersToProcess;
Nate Begemane68bcd12005-07-30 00:15:07 +00001038 UsersToProcess.reserve(Uses.Users.size());
Chris Lattner37c24cc2005-08-08 22:56:21 +00001039 for (unsigned i = 0, e = Uses.Users.size(); i != e; ++i) {
1040 UsersToProcess.push_back(Uses.Users[i]);
1041
1042 // Move any loop invariant operands from the offset field to the immediate
1043 // field of the use, so that we don't try to use something before it is
1044 // computed.
1045 MoveLoopVariantsToImediateField(UsersToProcess.back().Base,
1046 UsersToProcess.back().Imm, L);
1047 assert(UsersToProcess.back().Base->isLoopInvariant(L) &&
Chris Lattner45f8b6e2005-08-04 22:34:05 +00001048 "Base value is not loop invariant!");
Nate Begemane68bcd12005-07-30 00:15:07 +00001049 }
Evan Cheng45206982006-03-17 19:52:23 +00001050
Chris Lattnera091ff12005-08-09 00:18:09 +00001051 // We now have a whole bunch of uses of like-strided induction variables, but
1052 // they might all have different bases. We want to emit one PHI node for this
1053 // stride which we fold as many common expressions (between the IVs) into as
1054 // possible. Start by identifying the common expressions in the base values
1055 // for the strides (e.g. if we have "A+C+B" and "A+B+D" as our bases, find
1056 // "A+B"), emit it to the preheader, then remove the expression from the
1057 // UsersToProcess base values.
Evan Cheng3df447d2006-03-16 21:53:05 +00001058 SCEVHandle CommonExprs =
1059 RemoveCommonExpressionsFromUseBases(UsersToProcess);
Chris Lattnera091ff12005-08-09 00:18:09 +00001060
Chris Lattner37ed8952005-08-08 22:32:34 +00001061 // Next, figure out what we can represent in the immediate fields of
1062 // instructions. If we can represent anything there, move it to the imm
Chris Lattnera091ff12005-08-09 00:18:09 +00001063 // fields of the BasedUsers. We do this so that it increases the commonality
1064 // of the remaining uses.
Chris Lattner37ed8952005-08-08 22:32:34 +00001065 for (unsigned i = 0, e = UsersToProcess.size(); i != e; ++i) {
Chris Lattner5cf983e2005-08-16 00:38:11 +00001066 // If the user is not in the current loop, this means it is using the exit
1067 // value of the IV. Do not put anything in the base, make sure it's all in
1068 // the immediate field to allow as much factoring as possible.
1069 if (!L->contains(UsersToProcess[i].Inst->getParent())) {
Chris Lattnerea7dfd52005-08-17 21:22:41 +00001070 UsersToProcess[i].Imm = SCEVAddExpr::get(UsersToProcess[i].Imm,
1071 UsersToProcess[i].Base);
1072 UsersToProcess[i].Base =
1073 SCEVUnknown::getIntegerSCEV(0, UsersToProcess[i].Base->getType());
Chris Lattner5cf983e2005-08-16 00:38:11 +00001074 } else {
1075
1076 // Addressing modes can be folded into loads and stores. Be careful that
1077 // the store is through the expression, not of the expression though.
1078 bool isAddress = isa<LoadInst>(UsersToProcess[i].Inst);
Dan Gohman3fbb18d2007-05-03 23:20:33 +00001079 if (StoreInst *SI = dyn_cast<StoreInst>(UsersToProcess[i].Inst)) {
Chris Lattner5cf983e2005-08-16 00:38:11 +00001080 if (SI->getOperand(1) == UsersToProcess[i].OperandValToReplace)
1081 isAddress = true;
Dan Gohman2bcbd5b2007-05-04 14:59:09 +00001082 } else if (IntrinsicInst *II =
1083 dyn_cast<IntrinsicInst>(UsersToProcess[i].Inst)) {
Dan Gohman3fbb18d2007-05-03 23:20:33 +00001084 // Addressing modes can also be folded into prefetches.
Dan Gohman2bcbd5b2007-05-04 14:59:09 +00001085 if (II->getIntrinsicID() == Intrinsic::prefetch &&
1086 II->getOperand(1) == UsersToProcess[i].OperandValToReplace)
Dan Gohman3fbb18d2007-05-03 23:20:33 +00001087 isAddress = true;
1088 }
Chris Lattner5cf983e2005-08-16 00:38:11 +00001089
Evan Chengb5eb9322007-03-13 20:34:37 +00001090 MoveImmediateValues(TLI, UsersToProcess[i].Inst, UsersToProcess[i].Base,
1091 UsersToProcess[i].Imm, isAddress, L);
Chris Lattner5cf983e2005-08-16 00:38:11 +00001092 }
Chris Lattner37ed8952005-08-08 22:32:34 +00001093 }
Evan Cheng3df447d2006-03-16 21:53:05 +00001094
Dale Johannesenbacf4ac2007-03-20 21:54:54 +00001095 // Check if it is possible to reuse a IV with stride that is factor of this
1096 // stride. And the multiple is a number that can be encoded in the scale
1097 // field of the target addressing mode. And we will have a valid
1098 // instruction after this substition, including the immediate field, if any.
1099 PHINode *NewPHI = NULL;
1100 Value *IncV = NULL;
1101 IVExpr ReuseIV;
1102 unsigned RewriteFactor = CheckForIVReuse(Stride, ReuseIV,
1103 CommonExprs->getType(),
1104 UsersToProcess);
1105 if (RewriteFactor != 0) {
1106 DOUT << "BASED ON IV of STRIDE " << *ReuseIV.Stride
1107 << " and BASE " << *ReuseIV.Base << " :\n";
1108 NewPHI = ReuseIV.PHI;
1109 IncV = ReuseIV.IncV;
1110 }
1111
Chris Lattner8fe3cbe2007-04-01 22:21:39 +00001112 const Type *ReplacedTy = CommonExprs->getType();
1113
Chris Lattnera091ff12005-08-09 00:18:09 +00001114 // Now that we know what we need to do, insert the PHI node itself.
1115 //
Chris Lattner8fe3cbe2007-04-01 22:21:39 +00001116 DOUT << "INSERTING IV of TYPE " << *ReplacedTy << " of STRIDE "
Chris Lattner1480e162007-05-11 22:40:34 +00001117 << *Stride << " and BASE " << *CommonExprs << ": ";
Evan Cheng3df447d2006-03-16 21:53:05 +00001118
Chris Lattnera091ff12005-08-09 00:18:09 +00001119 SCEVExpander Rewriter(*SE, *LI);
1120 SCEVExpander PreheaderRewriter(*SE, *LI);
Chris Lattner37ed8952005-08-08 22:32:34 +00001121
Chris Lattnera091ff12005-08-09 00:18:09 +00001122 BasicBlock *Preheader = L->getLoopPreheader();
1123 Instruction *PreInsertPt = Preheader->getTerminator();
1124 Instruction *PhiInsertBefore = L->getHeader()->begin();
Chris Lattner37ed8952005-08-08 22:32:34 +00001125
Chris Lattner8048b852005-09-12 17:11:27 +00001126 BasicBlock *LatchBlock = L->getLoopLatch();
Evan Cheng3df447d2006-03-16 21:53:05 +00001127
Evan Cheng45206982006-03-17 19:52:23 +00001128
1129 // Emit the initial base value into the loop preheader.
1130 Value *CommonBaseV
Dan Gohmancb9e09a2007-06-15 14:38:12 +00001131 = PreheaderRewriter.expandCodeFor(CommonExprs, PreInsertPt);
Evan Cheng45206982006-03-17 19:52:23 +00001132
Evan Chengc28282b2006-03-18 08:03:12 +00001133 if (RewriteFactor == 0) {
Evan Cheng3df447d2006-03-16 21:53:05 +00001134 // Create a new Phi for this base, and stick it in the loop header.
1135 NewPHI = new PHINode(ReplacedTy, "iv.", PhiInsertBefore);
1136 ++NumInserted;
Chris Lattnera091ff12005-08-09 00:18:09 +00001137
Evan Cheng45206982006-03-17 19:52:23 +00001138 // Add common base to the new Phi node.
1139 NewPHI->addIncoming(CommonBaseV, Preheader);
1140
Chris Lattnere8bd53c2007-05-19 01:22:21 +00001141 // If the stride is negative, insert a sub instead of an add for the
1142 // increment.
1143 bool isNegative = isNonConstantNegative(Stride);
1144 SCEVHandle IncAmount = Stride;
1145 if (isNegative)
1146 IncAmount = SCEV::getNegativeSCEV(Stride);
1147
Evan Cheng3df447d2006-03-16 21:53:05 +00001148 // Insert the stride into the preheader.
Dan Gohmancb9e09a2007-06-15 14:38:12 +00001149 Value *StrideV = PreheaderRewriter.expandCodeFor(IncAmount, PreInsertPt);
Evan Cheng3df447d2006-03-16 21:53:05 +00001150 if (!isa<ConstantInt>(StrideV)) ++NumVariable;
Chris Lattneredff91a2005-08-10 00:45:21 +00001151
Evan Cheng3df447d2006-03-16 21:53:05 +00001152 // Emit the increment of the base value before the terminator of the loop
1153 // latch block, and add it to the Phi node.
Chris Lattnere8bd53c2007-05-19 01:22:21 +00001154 SCEVHandle IncExp = SCEVUnknown::get(StrideV);
1155 if (isNegative)
1156 IncExp = SCEV::getNegativeSCEV(IncExp);
1157 IncExp = SCEVAddExpr::get(SCEVUnknown::get(NewPHI), IncExp);
Chris Lattnera091ff12005-08-09 00:18:09 +00001158
Dan Gohmancb9e09a2007-06-15 14:38:12 +00001159 IncV = Rewriter.expandCodeFor(IncExp, LatchBlock->getTerminator());
Evan Cheng3df447d2006-03-16 21:53:05 +00001160 IncV->setName(NewPHI->getName()+".inc");
1161 NewPHI->addIncoming(IncV, LatchBlock);
1162
Evan Cheng45206982006-03-17 19:52:23 +00001163 // Remember this in case a later stride is multiple of this.
Evan Chengc28282b2006-03-18 08:03:12 +00001164 IVsByStride[Stride].addIV(Stride, CommonExprs, NewPHI, IncV);
Chris Lattner1480e162007-05-11 22:40:34 +00001165
1166 DOUT << " IV=%" << NewPHI->getNameStr() << " INC=%" << IncV->getNameStr();
Evan Cheng45206982006-03-17 19:52:23 +00001167 } else {
1168 Constant *C = dyn_cast<Constant>(CommonBaseV);
1169 if (!C ||
1170 (!C->isNullValue() &&
Evan Chengb5eb9322007-03-13 20:34:37 +00001171 !isTargetConstant(SCEVUnknown::get(CommonBaseV), ReplacedTy, TLI)))
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001172 // We want the common base emitted into the preheader! This is just
1173 // using cast as a copy so BitCast (no-op cast) is appropriate
1174 CommonBaseV = new BitCastInst(CommonBaseV, CommonBaseV->getType(),
1175 "commonbase", PreInsertPt);
Evan Cheng3df447d2006-03-16 21:53:05 +00001176 }
Chris Lattner1480e162007-05-11 22:40:34 +00001177 DOUT << "\n";
Chris Lattnera091ff12005-08-09 00:18:09 +00001178
Chris Lattner3ff62012006-08-03 06:34:50 +00001179 // We want to emit code for users inside the loop first. To do this, we
1180 // rearrange BasedUser so that the entries at the end have
1181 // isUseOfPostIncrementedValue = false, because we pop off the end of the
1182 // vector (so we handle them first).
1183 std::partition(UsersToProcess.begin(), UsersToProcess.end(),
1184 PartitionByIsUseOfPostIncrementedValue);
1185
1186 // Sort this by base, so that things with the same base are handled
1187 // together. By partitioning first and stable-sorting later, we are
1188 // guaranteed that within each base we will pop off users from within the
1189 // loop before users outside of the loop with a particular base.
1190 //
1191 // We would like to use stable_sort here, but we can't. The problem is that
1192 // SCEVHandle's don't have a deterministic ordering w.r.t to each other, so
1193 // we don't have anything to do a '<' comparison on. Because we think the
1194 // number of uses is small, do a horrible bubble sort which just relies on
1195 // ==.
1196 for (unsigned i = 0, e = UsersToProcess.size(); i != e; ++i) {
1197 // Get a base value.
1198 SCEVHandle Base = UsersToProcess[i].Base;
1199
1200 // Compact everything with this base to be consequetive with this one.
1201 for (unsigned j = i+1; j != e; ++j) {
1202 if (UsersToProcess[j].Base == Base) {
1203 std::swap(UsersToProcess[i+1], UsersToProcess[j]);
1204 ++i;
1205 }
1206 }
1207 }
1208
1209 // Process all the users now. This outer loop handles all bases, the inner
1210 // loop handles all users of a particular base.
Nate Begemane68bcd12005-07-30 00:15:07 +00001211 while (!UsersToProcess.empty()) {
Chris Lattner5c9d63d2005-10-11 18:30:57 +00001212 SCEVHandle Base = UsersToProcess.back().Base;
Chris Lattnerbb78c972005-08-03 23:30:08 +00001213
Chris Lattnera091ff12005-08-09 00:18:09 +00001214 // Emit the code for Base into the preheader.
Dan Gohmancb9e09a2007-06-15 14:38:12 +00001215 Value *BaseV = PreheaderRewriter.expandCodeFor(Base, PreInsertPt);
Chris Lattner1480e162007-05-11 22:40:34 +00001216
1217 DOUT << " INSERTING code for BASE = " << *Base << ":";
1218 if (BaseV->hasName())
1219 DOUT << " Result value name = %" << BaseV->getNameStr();
1220 DOUT << "\n";
1221
Chris Lattnera091ff12005-08-09 00:18:09 +00001222 // If BaseV is a constant other than 0, make sure that it gets inserted into
1223 // the preheader, instead of being forward substituted into the uses. We do
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001224 // this by forcing a BitCast (noop cast) to be inserted into the preheader
1225 // in this case.
Chris Lattner3ff62012006-08-03 06:34:50 +00001226 if (Constant *C = dyn_cast<Constant>(BaseV)) {
Evan Chengb5eb9322007-03-13 20:34:37 +00001227 if (!C->isNullValue() && !isTargetConstant(Base, ReplacedTy, TLI)) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001228 // We want this constant emitted into the preheader! This is just
1229 // using cast as a copy so BitCast (no-op cast) is appropriate
1230 BaseV = new BitCastInst(BaseV, BaseV->getType(), "preheaderinsert",
Chris Lattnera091ff12005-08-09 00:18:09 +00001231 PreInsertPt);
1232 }
Chris Lattner3ff62012006-08-03 06:34:50 +00001233 }
1234
Nate Begemane68bcd12005-07-30 00:15:07 +00001235 // Emit the code to add the immediate offset to the Phi value, just before
Chris Lattnerdb23c742005-08-03 22:51:21 +00001236 // the instructions that we identified as using this stride and base.
Chris Lattner5c9d63d2005-10-11 18:30:57 +00001237 do {
Chris Lattner3ff62012006-08-03 06:34:50 +00001238 // FIXME: Use emitted users to emit other users.
Chris Lattner5c9d63d2005-10-11 18:30:57 +00001239 BasedUser &User = UsersToProcess.back();
Jeff Cohen546fd592005-07-30 18:33:25 +00001240
Chris Lattnera091ff12005-08-09 00:18:09 +00001241 // If this instruction wants to use the post-incremented value, move it
1242 // after the post-inc and use its value instead of the PHI.
1243 Value *RewriteOp = NewPHI;
1244 if (User.isUseOfPostIncrementedValue) {
1245 RewriteOp = IncV;
Chris Lattnera6764832005-09-12 06:04:47 +00001246
1247 // If this user is in the loop, make sure it is the last thing in the
1248 // loop to ensure it is dominated by the increment.
1249 if (L->contains(User.Inst->getParent()))
1250 User.Inst->moveBefore(LatchBlock->getTerminator());
Chris Lattnera091ff12005-08-09 00:18:09 +00001251 }
Reid Spencerdf1f19a2006-12-13 08:06:42 +00001252 if (RewriteOp->getType() != ReplacedTy) {
1253 Instruction::CastOps opcode = Instruction::Trunc;
1254 if (ReplacedTy->getPrimitiveSizeInBits() ==
1255 RewriteOp->getType()->getPrimitiveSizeInBits())
1256 opcode = Instruction::BitCast;
1257 RewriteOp = SCEVExpander::InsertCastOfTo(opcode, RewriteOp, ReplacedTy);
1258 }
Evan Cheng398f7022006-06-09 00:12:42 +00001259
Chris Lattnera091ff12005-08-09 00:18:09 +00001260 SCEVHandle RewriteExpr = SCEVUnknown::get(RewriteOp);
1261
Chris Lattnerdb23c742005-08-03 22:51:21 +00001262 // Clear the SCEVExpander's expression map so that we are guaranteed
1263 // to have the code emitted where we expect it.
1264 Rewriter.clear();
Evan Cheng3df447d2006-03-16 21:53:05 +00001265
1266 // If we are reusing the iv, then it must be multiplied by a constant
1267 // factor take advantage of addressing mode scale component.
Evan Chengc28282b2006-03-18 08:03:12 +00001268 if (RewriteFactor != 0) {
Evan Cheng3df447d2006-03-16 21:53:05 +00001269 RewriteExpr =
1270 SCEVMulExpr::get(SCEVUnknown::getIntegerSCEV(RewriteFactor,
Evan Cheng45206982006-03-17 19:52:23 +00001271 RewriteExpr->getType()),
1272 RewriteExpr);
1273
1274 // The common base is emitted in the loop preheader. But since we
1275 // are reusing an IV, it has not been used to initialize the PHI node.
1276 // Add it to the expression used to rewrite the uses.
1277 if (!isa<ConstantInt>(CommonBaseV) ||
Reid Spencer53a37392007-03-02 23:51:25 +00001278 !cast<ConstantInt>(CommonBaseV)->isZero())
Evan Cheng45206982006-03-17 19:52:23 +00001279 RewriteExpr = SCEVAddExpr::get(RewriteExpr,
1280 SCEVUnknown::get(CommonBaseV));
1281 }
Evan Cheng3df447d2006-03-16 21:53:05 +00001282
Chris Lattnera6d7c352005-08-04 20:03:32 +00001283 // Now that we know what we need to do, insert code before User for the
1284 // immediate and any loop-variant expressions.
Reid Spencer53a37392007-03-02 23:51:25 +00001285 if (!isa<ConstantInt>(BaseV) || !cast<ConstantInt>(BaseV)->isZero())
Chris Lattnera091ff12005-08-09 00:18:09 +00001286 // Add BaseV to the PHI value if needed.
1287 RewriteExpr = SCEVAddExpr::get(RewriteExpr, SCEVUnknown::get(BaseV));
Evan Cheng3df447d2006-03-16 21:53:05 +00001288
Chris Lattner8447b492005-08-12 22:22:17 +00001289 User.RewriteInstructionToUseNewBase(RewriteExpr, Rewriter, L, this);
Jeff Cohen546fd592005-07-30 18:33:25 +00001290
Chris Lattnerdb23c742005-08-03 22:51:21 +00001291 // Mark old value we replaced as possibly dead, so that it is elminated
1292 // if we just replaced the last use of that value.
Chris Lattnera6d7c352005-08-04 20:03:32 +00001293 DeadInsts.insert(cast<Instruction>(User.OperandValToReplace));
Nate Begemane68bcd12005-07-30 00:15:07 +00001294
Chris Lattner5c9d63d2005-10-11 18:30:57 +00001295 UsersToProcess.pop_back();
Chris Lattnerdb23c742005-08-03 22:51:21 +00001296 ++NumReduced;
Chris Lattner5c9d63d2005-10-11 18:30:57 +00001297
Chris Lattner3ff62012006-08-03 06:34:50 +00001298 // If there are any more users to process with the same base, process them
1299 // now. We sorted by base above, so we just have to check the last elt.
Chris Lattner5c9d63d2005-10-11 18:30:57 +00001300 } while (!UsersToProcess.empty() && UsersToProcess.back().Base == Base);
Nate Begemane68bcd12005-07-30 00:15:07 +00001301 // TODO: Next, find out which base index is the most common, pull it out.
1302 }
1303
1304 // IMPORTANT TODO: Figure out how to partition the IV's with this stride, but
1305 // different starting values, into different PHIs.
Nate Begemane68bcd12005-07-30 00:15:07 +00001306}
1307
Chris Lattner81e07072007-04-03 05:11:24 +00001308/// FindIVForUser - If Cond has an operand that is an expression of an IV,
1309/// set the IV user and stride information and return true, otherwise return
1310/// false.
1311bool LoopStrengthReduce::FindIVForUser(ICmpInst *Cond, IVStrideUse *&CondUse,
1312 const SCEVHandle *&CondStride) {
1313 for (unsigned Stride = 0, e = StrideOrder.size(); Stride != e && !CondUse;
1314 ++Stride) {
1315 std::map<SCEVHandle, IVUsersOfOneStride>::iterator SI =
1316 IVUsesByStride.find(StrideOrder[Stride]);
1317 assert(SI != IVUsesByStride.end() && "Stride doesn't exist!");
1318
1319 for (std::vector<IVStrideUse>::iterator UI = SI->second.Users.begin(),
1320 E = SI->second.Users.end(); UI != E; ++UI)
1321 if (UI->User == Cond) {
1322 // NOTE: we could handle setcc instructions with multiple uses here, but
1323 // InstCombine does it as well for simple uses, it's not clear that it
1324 // occurs enough in real life to handle.
1325 CondUse = &*UI;
1326 CondStride = &SI->first;
1327 return true;
1328 }
1329 }
1330 return false;
1331}
1332
Chris Lattner9bfa6f82005-08-08 05:28:22 +00001333// OptimizeIndvars - Now that IVUsesByStride is set up with all of the indvar
1334// uses in the loop, look to see if we can eliminate some, in favor of using
1335// common indvars for the different uses.
1336void LoopStrengthReduce::OptimizeIndvars(Loop *L) {
1337 // TODO: implement optzns here.
1338
Chris Lattner9bfa6f82005-08-08 05:28:22 +00001339 // Finally, get the terminating condition for the loop if possible. If we
1340 // can, we want to change it to use a post-incremented version of its
Chris Lattnerf365f5f2006-03-24 07:14:34 +00001341 // induction variable, to allow coalescing the live ranges for the IV into
Chris Lattner9bfa6f82005-08-08 05:28:22 +00001342 // one register value.
1343 PHINode *SomePHI = cast<PHINode>(L->getHeader()->begin());
1344 BasicBlock *Preheader = L->getLoopPreheader();
1345 BasicBlock *LatchBlock =
1346 SomePHI->getIncomingBlock(SomePHI->getIncomingBlock(0) == Preheader);
1347 BranchInst *TermBr = dyn_cast<BranchInst>(LatchBlock->getTerminator());
Reid Spencer266e42b2006-12-23 06:05:41 +00001348 if (!TermBr || TermBr->isUnconditional() ||
1349 !isa<ICmpInst>(TermBr->getCondition()))
Chris Lattner9bfa6f82005-08-08 05:28:22 +00001350 return;
Reid Spencer266e42b2006-12-23 06:05:41 +00001351 ICmpInst *Cond = cast<ICmpInst>(TermBr->getCondition());
Chris Lattner9bfa6f82005-08-08 05:28:22 +00001352
1353 // Search IVUsesByStride to find Cond's IVUse if there is one.
1354 IVStrideUse *CondUse = 0;
Chris Lattneredff91a2005-08-10 00:45:21 +00001355 const SCEVHandle *CondStride = 0;
Chris Lattner9bfa6f82005-08-08 05:28:22 +00001356
Chris Lattner81e07072007-04-03 05:11:24 +00001357 if (!FindIVForUser(Cond, CondUse, CondStride))
1358 return; // setcc doesn't use the IV.
1359
Chris Lattner9bfa6f82005-08-08 05:28:22 +00001360
Chris Lattner9bfa6f82005-08-08 05:28:22 +00001361 // It's possible for the setcc instruction to be anywhere in the loop, and
1362 // possible for it to have multiple users. If it is not immediately before
1363 // the latch block branch, move it.
1364 if (&*++BasicBlock::iterator(Cond) != (Instruction*)TermBr) {
1365 if (Cond->hasOneUse()) { // Condition has a single use, just move it.
1366 Cond->moveBefore(TermBr);
1367 } else {
1368 // Otherwise, clone the terminating condition and insert into the loopend.
Reid Spencer266e42b2006-12-23 06:05:41 +00001369 Cond = cast<ICmpInst>(Cond->clone());
Chris Lattner9bfa6f82005-08-08 05:28:22 +00001370 Cond->setName(L->getHeader()->getName() + ".termcond");
1371 LatchBlock->getInstList().insert(TermBr, Cond);
1372
1373 // Clone the IVUse, as the old use still exists!
Chris Lattneredff91a2005-08-10 00:45:21 +00001374 IVUsesByStride[*CondStride].addUser(CondUse->Offset, Cond,
Chris Lattner9bfa6f82005-08-08 05:28:22 +00001375 CondUse->OperandValToReplace);
Chris Lattneredff91a2005-08-10 00:45:21 +00001376 CondUse = &IVUsesByStride[*CondStride].Users.back();
Chris Lattner9bfa6f82005-08-08 05:28:22 +00001377 }
1378 }
1379
1380 // If we get to here, we know that we can transform the setcc instruction to
Chris Lattnerf365f5f2006-03-24 07:14:34 +00001381 // use the post-incremented version of the IV, allowing us to coalesce the
Chris Lattner9bfa6f82005-08-08 05:28:22 +00001382 // live ranges for the IV correctly.
Chris Lattneredff91a2005-08-10 00:45:21 +00001383 CondUse->Offset = SCEV::getMinusSCEV(CondUse->Offset, *CondStride);
Chris Lattner9bfa6f82005-08-08 05:28:22 +00001384 CondUse->isUseOfPostIncrementedValue = true;
1385}
Nate Begemane68bcd12005-07-30 00:15:07 +00001386
Evan Chengf09f0eb2006-03-18 00:44:49 +00001387namespace {
1388 // Constant strides come first which in turns are sorted by their absolute
1389 // values. If absolute values are the same, then positive strides comes first.
1390 // e.g.
1391 // 4, -1, X, 1, 2 ==> 1, -1, 2, 4, X
1392 struct StrideCompare {
1393 bool operator()(const SCEVHandle &LHS, const SCEVHandle &RHS) {
1394 SCEVConstant *LHSC = dyn_cast<SCEVConstant>(LHS);
1395 SCEVConstant *RHSC = dyn_cast<SCEVConstant>(RHS);
1396 if (LHSC && RHSC) {
Reid Spencer197adfa2007-03-02 00:31:39 +00001397 int64_t LV = LHSC->getValue()->getSExtValue();
1398 int64_t RV = RHSC->getValue()->getSExtValue();
1399 uint64_t ALV = (LV < 0) ? -LV : LV;
1400 uint64_t ARV = (RV < 0) ? -RV : RV;
Evan Chengf09f0eb2006-03-18 00:44:49 +00001401 if (ALV == ARV)
Reid Spencer197adfa2007-03-02 00:31:39 +00001402 return LV > RV;
Evan Chengf09f0eb2006-03-18 00:44:49 +00001403 else
Reid Spencer197adfa2007-03-02 00:31:39 +00001404 return ALV < ARV;
Chris Lattner7d80b4f2006-03-22 17:27:24 +00001405 }
1406 return (LHSC && !RHSC);
Evan Chengf09f0eb2006-03-18 00:44:49 +00001407 }
1408 };
1409}
1410
Devang Patelb0743b52007-03-06 21:14:09 +00001411bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager &LPM) {
Nate Begemanb18121e2004-10-18 21:08:22 +00001412
Devang Patelb0743b52007-03-06 21:14:09 +00001413 LI = &getAnalysis<LoopInfo>();
Devang Pateldf6355c2007-06-07 21:42:15 +00001414 DT = &getAnalysis<DominatorTree>();
Devang Patelb0743b52007-03-06 21:14:09 +00001415 SE = &getAnalysis<ScalarEvolution>();
1416 TD = &getAnalysis<TargetData>();
1417 UIntPtrTy = TD->getIntPtrType();
1418
1419 // Find all uses of induction variables in this loop, and catagorize
Nate Begemane68bcd12005-07-30 00:15:07 +00001420 // them by stride. Start by finding all of the PHI nodes in the header for
1421 // this loop. If they are induction variables, inspect their uses.
Chris Lattnereaf24722005-08-04 17:40:30 +00001422 std::set<Instruction*> Processed; // Don't reprocess instructions.
Nate Begemane68bcd12005-07-30 00:15:07 +00001423 for (BasicBlock::iterator I = L->getHeader()->begin(); isa<PHINode>(I); ++I)
Chris Lattnereaf24722005-08-04 17:40:30 +00001424 AddUsersIfInteresting(I, L, Processed);
Nate Begemanb18121e2004-10-18 21:08:22 +00001425
Nate Begemane68bcd12005-07-30 00:15:07 +00001426 // If we have nothing to do, return.
Devang Patelb0743b52007-03-06 21:14:09 +00001427 if (IVUsesByStride.empty()) return false;
Chris Lattner9bfa6f82005-08-08 05:28:22 +00001428
1429 // Optimize induction variables. Some indvar uses can be transformed to use
1430 // strides that will be needed for other purposes. A common example of this
1431 // is the exit test for the loop, which can often be rewritten to use the
1432 // computation of some other indvar to decide when to terminate the loop.
1433 OptimizeIndvars(L);
1434
Misha Brukmanb1c93172005-04-21 23:48:37 +00001435
Nate Begemane68bcd12005-07-30 00:15:07 +00001436 // FIXME: We can widen subreg IV's here for RISC targets. e.g. instead of
1437 // doing computation in byte values, promote to 32-bit values if safe.
1438
1439 // FIXME: Attempt to reuse values across multiple IV's. In particular, we
1440 // could have something like "for(i) { foo(i*8); bar(i*16) }", which should be
1441 // codegened as "for (j = 0;; j+=8) { foo(j); bar(j+j); }" on X86/PPC. Need
1442 // to be careful that IV's are all the same type. Only works for intptr_t
1443 // indvars.
1444
1445 // If we only have one stride, we can more aggressively eliminate some things.
1446 bool HasOneStride = IVUsesByStride.size() == 1;
Evan Cheng3df447d2006-03-16 21:53:05 +00001447
1448#ifndef NDEBUG
Bill Wendling5dbf43c2006-11-26 09:46:52 +00001449 DOUT << "\nLSR on ";
Evan Cheng3df447d2006-03-16 21:53:05 +00001450 DEBUG(L->dump());
1451#endif
1452
1453 // IVsByStride keeps IVs for one particular loop.
1454 IVsByStride.clear();
1455
Evan Chengf09f0eb2006-03-18 00:44:49 +00001456 // Sort the StrideOrder so we process larger strides first.
1457 std::stable_sort(StrideOrder.begin(), StrideOrder.end(), StrideCompare());
1458
Chris Lattnera091ff12005-08-09 00:18:09 +00001459 // Note: this processes each stride/type pair individually. All users passed
Chris Lattner4ea0a3e2005-10-09 06:20:55 +00001460 // into StrengthReduceStridedIVUsers have the same type AND stride. Also,
1461 // node that we iterate over IVUsesByStride indirectly by using StrideOrder.
1462 // This extra layer of indirection makes the ordering of strides deterministic
1463 // - not dependent on map order.
1464 for (unsigned Stride = 0, e = StrideOrder.size(); Stride != e; ++Stride) {
1465 std::map<SCEVHandle, IVUsersOfOneStride>::iterator SI =
1466 IVUsesByStride.find(StrideOrder[Stride]);
1467 assert(SI != IVUsesByStride.end() && "Stride doesn't exist!");
Nate Begemane68bcd12005-07-30 00:15:07 +00001468 StrengthReduceStridedIVUsers(SI->first, SI->second, L, HasOneStride);
Chris Lattner4ea0a3e2005-10-09 06:20:55 +00001469 }
Nate Begemanb18121e2004-10-18 21:08:22 +00001470
1471 // Clean up after ourselves
1472 if (!DeadInsts.empty()) {
1473 DeleteTriviallyDeadInstructions(DeadInsts);
1474
Nate Begemane68bcd12005-07-30 00:15:07 +00001475 BasicBlock::iterator I = L->getHeader()->begin();
1476 PHINode *PN;
Chris Lattnerdcce49e2005-08-02 02:44:31 +00001477 while ((PN = dyn_cast<PHINode>(I))) {
Chris Lattner564900e2005-08-02 00:41:11 +00001478 ++I; // Preincrement iterator to avoid invalidating it when deleting PN.
1479
Chris Lattnerc6c4d992005-08-09 23:39:36 +00001480 // At this point, we know that we have killed one or more GEP
1481 // instructions. It is worth checking to see if the cann indvar is also
1482 // dead, so that we can remove it as well. The requirements for the cann
1483 // indvar to be considered dead are:
Nate Begemane68bcd12005-07-30 00:15:07 +00001484 // 1. the cann indvar has one use
1485 // 2. the use is an add instruction
1486 // 3. the add has one use
1487 // 4. the add is used by the cann indvar
1488 // If all four cases above are true, then we can remove both the add and
1489 // the cann indvar.
1490 // FIXME: this needs to eliminate an induction variable even if it's being
1491 // compared against some value to decide loop termination.
1492 if (PN->hasOneUse()) {
Reid Spencer266e42b2006-12-23 06:05:41 +00001493 Instruction *BO = dyn_cast<Instruction>(*PN->use_begin());
1494 if (BO && (isa<BinaryOperator>(BO) || isa<CmpInst>(BO))) {
1495 if (BO->hasOneUse() && PN == *(BO->use_begin())) {
Chris Lattner75a44e12005-08-02 02:52:02 +00001496 DeadInsts.insert(BO);
1497 // Break the cycle, then delete the PHI.
1498 PN->replaceAllUsesWith(UndefValue::get(PN->getType()));
Dan Gohman32f53bb2007-06-19 14:28:31 +00001499 SE->deleteValueFromRecords(PN);
Chris Lattner75a44e12005-08-02 02:52:02 +00001500 PN->eraseFromParent();
Nate Begemanb18121e2004-10-18 21:08:22 +00001501 }
Chris Lattner75a44e12005-08-02 02:52:02 +00001502 }
Nate Begemane68bcd12005-07-30 00:15:07 +00001503 }
Nate Begemanb18121e2004-10-18 21:08:22 +00001504 }
Nate Begemane68bcd12005-07-30 00:15:07 +00001505 DeleteTriviallyDeadInstructions(DeadInsts);
Nate Begemanb18121e2004-10-18 21:08:22 +00001506 }
Nate Begemane68bcd12005-07-30 00:15:07 +00001507
Chris Lattner11e7a5e2005-08-05 01:30:11 +00001508 CastedPointers.clear();
Nate Begemane68bcd12005-07-30 00:15:07 +00001509 IVUsesByStride.clear();
Chris Lattner4ea0a3e2005-10-09 06:20:55 +00001510 StrideOrder.clear();
Devang Patelb0743b52007-03-06 21:14:09 +00001511 return false;
Nate Begemanb18121e2004-10-18 21:08:22 +00001512}