blob: 1fcc45a3a4b0554cd2ad3293109e08100da755c1 [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"
22#include "llvm/Type.h"
Jeff Cohena2c59b72005-03-04 04:04:26 +000023#include "llvm/DerivedTypes.h"
Nate Begemanb18121e2004-10-18 21:08:22 +000024#include "llvm/Analysis/Dominators.h"
25#include "llvm/Analysis/LoopInfo.h"
Nate Begemane68bcd12005-07-30 00:15:07 +000026#include "llvm/Analysis/ScalarEvolutionExpander.h"
Nate Begemanb18121e2004-10-18 21:08:22 +000027#include "llvm/Support/CFG.h"
Nate Begemane68bcd12005-07-30 00:15:07 +000028#include "llvm/Support/GetElementPtrTypeIterator.h"
Nate Begemanb18121e2004-10-18 21:08:22 +000029#include "llvm/Transforms/Utils/Local.h"
Jeff Cohena2c59b72005-03-04 04:04:26 +000030#include "llvm/Target/TargetData.h"
Nate Begemanb18121e2004-10-18 21:08:22 +000031#include "llvm/ADT/Statistic.h"
Nate Begemane68bcd12005-07-30 00:15:07 +000032#include "llvm/Support/Debug.h"
Jeff Cohenc5009912005-07-30 18:22:27 +000033#include <algorithm>
Nate Begemanb18121e2004-10-18 21:08:22 +000034#include <set>
35using namespace llvm;
36
37namespace {
38 Statistic<> NumReduced ("loop-reduce", "Number of GEPs strength reduced");
Chris Lattner45f8b6e2005-08-04 22:34:05 +000039 Statistic<> NumInserted("loop-reduce", "Number of PHIs inserted");
Nate Begemanb18121e2004-10-18 21:08:22 +000040
Chris Lattner430d0022005-08-03 22:21:05 +000041 /// IVStrideUse - Keep track of one use of a strided induction variable, where
42 /// the stride is stored externally. The Offset member keeps track of the
43 /// offset from the IV, User is the actual user of the operand, and 'Operand'
44 /// is the operand # of the User that is the use.
45 struct IVStrideUse {
46 SCEVHandle Offset;
47 Instruction *User;
48 Value *OperandValToReplace;
Chris Lattner9bfa6f82005-08-08 05:28:22 +000049
50 // isUseOfPostIncrementedValue - True if this should use the
51 // post-incremented version of this IV, not the preincremented version.
52 // This can only be set in special cases, such as the terminating setcc
53 // instruction for a loop.
54 bool isUseOfPostIncrementedValue;
Chris Lattner430d0022005-08-03 22:21:05 +000055
56 IVStrideUse(const SCEVHandle &Offs, Instruction *U, Value *O)
Chris Lattner9bfa6f82005-08-08 05:28:22 +000057 : Offset(Offs), User(U), OperandValToReplace(O),
58 isUseOfPostIncrementedValue(false) {}
Chris Lattner430d0022005-08-03 22:21:05 +000059 };
60
61 /// IVUsersOfOneStride - This structure keeps track of all instructions that
62 /// have an operand that is based on the trip count multiplied by some stride.
63 /// The stride for all of these users is common and kept external to this
64 /// structure.
65 struct IVUsersOfOneStride {
Nate Begemane68bcd12005-07-30 00:15:07 +000066 /// Users - Keep track of all of the users of this stride as well as the
Chris Lattner430d0022005-08-03 22:21:05 +000067 /// initial value and the operand that uses the IV.
68 std::vector<IVStrideUse> Users;
69
70 void addUser(const SCEVHandle &Offset,Instruction *User, Value *Operand) {
71 Users.push_back(IVStrideUse(Offset, User, Operand));
Nate Begemane68bcd12005-07-30 00:15:07 +000072 }
73 };
74
75
Nate Begemanb18121e2004-10-18 21:08:22 +000076 class LoopStrengthReduce : public FunctionPass {
77 LoopInfo *LI;
78 DominatorSet *DS;
Nate Begemane68bcd12005-07-30 00:15:07 +000079 ScalarEvolution *SE;
80 const TargetData *TD;
81 const Type *UIntPtrTy;
Nate Begemanb18121e2004-10-18 21:08:22 +000082 bool Changed;
Chris Lattner75a44e12005-08-02 02:52:02 +000083
84 /// MaxTargetAMSize - This is the maximum power-of-two scale value that the
85 /// target can handle for free with its addressing modes.
Jeff Cohena2c59b72005-03-04 04:04:26 +000086 unsigned MaxTargetAMSize;
Nate Begemane68bcd12005-07-30 00:15:07 +000087
88 /// IVUsesByStride - Keep track of all uses of induction variables that we
89 /// are interested in. The key of the map is the stride of the access.
Chris Lattner430d0022005-08-03 22:21:05 +000090 std::map<Value*, IVUsersOfOneStride> IVUsesByStride;
Nate Begemane68bcd12005-07-30 00:15:07 +000091
Chris Lattner6f286b72005-08-04 01:19:13 +000092 /// CastedValues - As we need to cast values to uintptr_t, this keeps track
93 /// of the casted version of each value. This is accessed by
94 /// getCastedVersionOf.
95 std::map<Value*, Value*> CastedPointers;
Nate Begemane68bcd12005-07-30 00:15:07 +000096
97 /// DeadInsts - Keep track of instructions we may have made dead, so that
98 /// we can remove them after we are done working.
99 std::set<Instruction*> DeadInsts;
Nate Begemanb18121e2004-10-18 21:08:22 +0000100 public:
Jeff Cohena2c59b72005-03-04 04:04:26 +0000101 LoopStrengthReduce(unsigned MTAMS = 1)
102 : MaxTargetAMSize(MTAMS) {
103 }
104
Nate Begemanb18121e2004-10-18 21:08:22 +0000105 virtual bool runOnFunction(Function &) {
106 LI = &getAnalysis<LoopInfo>();
107 DS = &getAnalysis<DominatorSet>();
Nate Begemane68bcd12005-07-30 00:15:07 +0000108 SE = &getAnalysis<ScalarEvolution>();
109 TD = &getAnalysis<TargetData>();
110 UIntPtrTy = TD->getIntPtrType();
Nate Begemanb18121e2004-10-18 21:08:22 +0000111 Changed = false;
112
113 for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I)
114 runOnLoop(*I);
Chris Lattner6f286b72005-08-04 01:19:13 +0000115
Nate Begemanb18121e2004-10-18 21:08:22 +0000116 return Changed;
117 }
118
119 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
120 AU.setPreservesCFG();
Jeff Cohen39751c32005-02-27 19:37:07 +0000121 AU.addRequiredID(LoopSimplifyID);
Nate Begemanb18121e2004-10-18 21:08:22 +0000122 AU.addRequired<LoopInfo>();
123 AU.addRequired<DominatorSet>();
Jeff Cohena2c59b72005-03-04 04:04:26 +0000124 AU.addRequired<TargetData>();
Nate Begemane68bcd12005-07-30 00:15:07 +0000125 AU.addRequired<ScalarEvolution>();
Nate Begemanb18121e2004-10-18 21:08:22 +0000126 }
Chris Lattner6f286b72005-08-04 01:19:13 +0000127
128 /// getCastedVersionOf - Return the specified value casted to uintptr_t.
129 ///
130 Value *getCastedVersionOf(Value *V);
131private:
Nate Begemanb18121e2004-10-18 21:08:22 +0000132 void runOnLoop(Loop *L);
Chris Lattnereaf24722005-08-04 17:40:30 +0000133 bool AddUsersIfInteresting(Instruction *I, Loop *L,
134 std::set<Instruction*> &Processed);
135 SCEVHandle GetExpressionSCEV(Instruction *E, Loop *L);
136
Chris Lattner9bfa6f82005-08-08 05:28:22 +0000137 void OptimizeIndvars(Loop *L);
Nate Begemane68bcd12005-07-30 00:15:07 +0000138
Chris Lattner430d0022005-08-03 22:21:05 +0000139 void StrengthReduceStridedIVUsers(Value *Stride, IVUsersOfOneStride &Uses,
140 Loop *L, bool isOnlyStride);
Nate Begemanb18121e2004-10-18 21:08:22 +0000141 void DeleteTriviallyDeadInstructions(std::set<Instruction*> &Insts);
142 };
Misha Brukmanb1c93172005-04-21 23:48:37 +0000143 RegisterOpt<LoopStrengthReduce> X("loop-reduce",
Nate Begemanb18121e2004-10-18 21:08:22 +0000144 "Strength Reduce GEP Uses of Ind. Vars");
145}
146
Jeff Cohena2c59b72005-03-04 04:04:26 +0000147FunctionPass *llvm::createLoopStrengthReducePass(unsigned MaxTargetAMSize) {
148 return new LoopStrengthReduce(MaxTargetAMSize);
Nate Begemanb18121e2004-10-18 21:08:22 +0000149}
150
Chris Lattner6f286b72005-08-04 01:19:13 +0000151/// getCastedVersionOf - Return the specified value casted to uintptr_t.
152///
153Value *LoopStrengthReduce::getCastedVersionOf(Value *V) {
154 if (V->getType() == UIntPtrTy) return V;
155 if (Constant *CB = dyn_cast<Constant>(V))
156 return ConstantExpr::getCast(CB, UIntPtrTy);
157
158 Value *&New = CastedPointers[V];
159 if (New) return New;
160
161 BasicBlock::iterator InsertPt;
162 if (Argument *Arg = dyn_cast<Argument>(V)) {
163 // Insert into the entry of the function, after any allocas.
164 InsertPt = Arg->getParent()->begin()->begin();
165 while (isa<AllocaInst>(InsertPt)) ++InsertPt;
166 } else {
167 if (InvokeInst *II = dyn_cast<InvokeInst>(V)) {
168 InsertPt = II->getNormalDest()->begin();
169 } else {
170 InsertPt = cast<Instruction>(V);
171 ++InsertPt;
172 }
173
174 // Do not insert casts into the middle of PHI node blocks.
175 while (isa<PHINode>(InsertPt)) ++InsertPt;
176 }
Chris Lattneracc42c42005-08-04 19:08:16 +0000177
178 New = new CastInst(V, UIntPtrTy, V->getName(), InsertPt);
179 DeadInsts.insert(cast<Instruction>(New));
180 return New;
Chris Lattner6f286b72005-08-04 01:19:13 +0000181}
182
183
Nate Begemanb18121e2004-10-18 21:08:22 +0000184/// DeleteTriviallyDeadInstructions - If any of the instructions is the
185/// specified set are trivially dead, delete them and see if this makes any of
186/// their operands subsequently dead.
187void LoopStrengthReduce::
188DeleteTriviallyDeadInstructions(std::set<Instruction*> &Insts) {
189 while (!Insts.empty()) {
190 Instruction *I = *Insts.begin();
191 Insts.erase(Insts.begin());
192 if (isInstructionTriviallyDead(I)) {
Jeff Cohen8ea6f9e2005-03-01 03:46:11 +0000193 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
194 if (Instruction *U = dyn_cast<Instruction>(I->getOperand(i)))
195 Insts.insert(U);
Chris Lattner84e9baa2005-08-03 21:36:09 +0000196 SE->deleteInstructionFromRecords(I);
197 I->eraseFromParent();
Nate Begemanb18121e2004-10-18 21:08:22 +0000198 Changed = true;
199 }
200 }
201}
202
Jeff Cohen39751c32005-02-27 19:37:07 +0000203
Chris Lattnereaf24722005-08-04 17:40:30 +0000204/// GetExpressionSCEV - Compute and return the SCEV for the specified
205/// instruction.
206SCEVHandle LoopStrengthReduce::GetExpressionSCEV(Instruction *Exp, Loop *L) {
207 GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Exp);
208 if (!GEP)
209 return SE->getSCEV(Exp);
210
Nate Begemane68bcd12005-07-30 00:15:07 +0000211 // Analyze all of the subscripts of this getelementptr instruction, looking
212 // for uses that are determined by the trip count of L. First, skip all
213 // operands the are not dependent on the IV.
214
215 // Build up the base expression. Insert an LLVM cast of the pointer to
216 // uintptr_t first.
Chris Lattnereaf24722005-08-04 17:40:30 +0000217 SCEVHandle GEPVal = SCEVUnknown::get(getCastedVersionOf(GEP->getOperand(0)));
Nate Begemane68bcd12005-07-30 00:15:07 +0000218
219 gep_type_iterator GTI = gep_type_begin(GEP);
Chris Lattnereaf24722005-08-04 17:40:30 +0000220
221 for (unsigned i = 1, e = GEP->getNumOperands(); i != e; ++i, ++GTI) {
Nate Begemane68bcd12005-07-30 00:15:07 +0000222 // If this is a use of a recurrence that we can analyze, and it comes before
223 // Op does in the GEP operand list, we will handle this when we process this
224 // operand.
225 if (const StructType *STy = dyn_cast<StructType>(*GTI)) {
226 const StructLayout *SL = TD->getStructLayout(STy);
227 unsigned Idx = cast<ConstantUInt>(GEP->getOperand(i))->getValue();
228 uint64_t Offset = SL->MemberOffsets[Idx];
Chris Lattnereaf24722005-08-04 17:40:30 +0000229 GEPVal = SCEVAddExpr::get(GEPVal,
230 SCEVUnknown::getIntegerSCEV(Offset, UIntPtrTy));
Nate Begemane68bcd12005-07-30 00:15:07 +0000231 } else {
Chris Lattneracc42c42005-08-04 19:08:16 +0000232 Value *OpVal = getCastedVersionOf(GEP->getOperand(i));
233 SCEVHandle Idx = SE->getSCEV(OpVal);
234
Chris Lattnereaf24722005-08-04 17:40:30 +0000235 uint64_t TypeSize = TD->getTypeSize(GTI.getIndexedType());
236 if (TypeSize != 1)
237 Idx = SCEVMulExpr::get(Idx,
238 SCEVConstant::get(ConstantUInt::get(UIntPtrTy,
239 TypeSize)));
240 GEPVal = SCEVAddExpr::get(GEPVal, Idx);
Nate Begemane68bcd12005-07-30 00:15:07 +0000241 }
242 }
243
Chris Lattnereaf24722005-08-04 17:40:30 +0000244 return GEPVal;
Nate Begemane68bcd12005-07-30 00:15:07 +0000245}
246
Chris Lattneracc42c42005-08-04 19:08:16 +0000247/// getSCEVStartAndStride - Compute the start and stride of this expression,
248/// returning false if the expression is not a start/stride pair, or true if it
249/// is. The stride must be a loop invariant expression, but the start may be
250/// a mix of loop invariant and loop variant expressions.
251static bool getSCEVStartAndStride(const SCEVHandle &SH, Loop *L,
252 SCEVHandle &Start, Value *&Stride) {
253 SCEVHandle TheAddRec = Start; // Initialize to zero.
254
255 // If the outer level is an AddExpr, the operands are all start values except
256 // for a nested AddRecExpr.
257 if (SCEVAddExpr *AE = dyn_cast<SCEVAddExpr>(SH)) {
258 for (unsigned i = 0, e = AE->getNumOperands(); i != e; ++i)
259 if (SCEVAddRecExpr *AddRec =
260 dyn_cast<SCEVAddRecExpr>(AE->getOperand(i))) {
261 if (AddRec->getLoop() == L)
262 TheAddRec = SCEVAddExpr::get(AddRec, TheAddRec);
263 else
264 return false; // Nested IV of some sort?
265 } else {
266 Start = SCEVAddExpr::get(Start, AE->getOperand(i));
267 }
268
269 } else if (SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(SH)) {
270 TheAddRec = SH;
271 } else {
272 return false; // not analyzable.
273 }
274
275 SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(TheAddRec);
276 if (!AddRec || AddRec->getLoop() != L) return false;
277
278 // FIXME: Generalize to non-affine IV's.
279 if (!AddRec->isAffine()) return false;
280
281 Start = SCEVAddExpr::get(Start, AddRec->getOperand(0));
282
283 // FIXME: generalize to IV's with more complex strides (must emit stride
284 // expression outside of loop!)
285 if (!isa<SCEVConstant>(AddRec->getOperand(1)))
286 return false;
287
288 SCEVConstant *StrideC = cast<SCEVConstant>(AddRec->getOperand(1));
289 Stride = StrideC->getValue();
290
291 assert(Stride->getType()->isUnsigned() &&
292 "Constants should be canonicalized to unsigned!");
293 return true;
294}
295
Nate Begemane68bcd12005-07-30 00:15:07 +0000296/// AddUsersIfInteresting - Inspect the specified instruction. If it is a
297/// reducible SCEV, recursively add its users to the IVUsesByStride set and
298/// return true. Otherwise, return false.
Chris Lattnereaf24722005-08-04 17:40:30 +0000299bool LoopStrengthReduce::AddUsersIfInteresting(Instruction *I, Loop *L,
300 std::set<Instruction*> &Processed) {
Nate Begeman17a0e2af2005-07-30 00:21:31 +0000301 if (I->getType() == Type::VoidTy) return false;
Chris Lattnereaf24722005-08-04 17:40:30 +0000302 if (!Processed.insert(I).second)
303 return true; // Instruction already handled.
304
Chris Lattneracc42c42005-08-04 19:08:16 +0000305 // Get the symbolic expression for this instruction.
Chris Lattnereaf24722005-08-04 17:40:30 +0000306 SCEVHandle ISE = GetExpressionSCEV(I, L);
Chris Lattneracc42c42005-08-04 19:08:16 +0000307 if (isa<SCEVCouldNotCompute>(ISE)) return false;
Chris Lattnereaf24722005-08-04 17:40:30 +0000308
Chris Lattneracc42c42005-08-04 19:08:16 +0000309 // Get the start and stride for this expression.
310 SCEVHandle Start = SCEVUnknown::getIntegerSCEV(0, ISE->getType());
311 Value *Stride = 0;
312 if (!getSCEVStartAndStride(ISE, L, Start, Stride))
313 return false; // Non-reducible symbolic expression, bail out.
314
Nate Begemane68bcd12005-07-30 00:15:07 +0000315 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E;++UI){
316 Instruction *User = cast<Instruction>(*UI);
317
318 // Do not infinitely recurse on PHI nodes.
319 if (isa<PHINode>(User) && User->getParent() == L->getHeader())
320 continue;
321
322 // If this is an instruction defined in a nested loop, or outside this loop,
Chris Lattnera0102fb2005-08-04 00:14:11 +0000323 // don't recurse into it.
Chris Lattneracc42c42005-08-04 19:08:16 +0000324 bool AddUserToIVUsers = false;
Chris Lattnera0102fb2005-08-04 00:14:11 +0000325 if (LI->getLoopFor(User->getParent()) != L) {
326 DEBUG(std::cerr << "FOUND USER in nested loop: " << *User
327 << " OF SCEV: " << *ISE << "\n");
Chris Lattneracc42c42005-08-04 19:08:16 +0000328 AddUserToIVUsers = true;
Chris Lattnereaf24722005-08-04 17:40:30 +0000329 } else if (!AddUsersIfInteresting(User, L, Processed)) {
Chris Lattner65107492005-08-04 00:40:47 +0000330 DEBUG(std::cerr << "FOUND USER: " << *User
331 << " OF SCEV: " << *ISE << "\n");
Chris Lattneracc42c42005-08-04 19:08:16 +0000332 AddUserToIVUsers = true;
333 }
Nate Begemane68bcd12005-07-30 00:15:07 +0000334
Chris Lattneracc42c42005-08-04 19:08:16 +0000335 if (AddUserToIVUsers) {
Chris Lattner65107492005-08-04 00:40:47 +0000336 // Okay, we found a user that we cannot reduce. Analyze the instruction
337 // and decide what to do with it.
Chris Lattneracc42c42005-08-04 19:08:16 +0000338 IVUsesByStride[Stride].addUser(Start, User, I);
Nate Begemane68bcd12005-07-30 00:15:07 +0000339 }
340 }
341 return true;
342}
343
344namespace {
345 /// BasedUser - For a particular base value, keep information about how we've
346 /// partitioned the expression so far.
347 struct BasedUser {
Chris Lattner37c24cc2005-08-08 22:56:21 +0000348 /// Base - The Base value for the PHI node that needs to be inserted for
349 /// this use. As the use is processed, information gets moved from this
350 /// field to the Imm field (below). BasedUser values are sorted by this
351 /// field.
352 SCEVHandle Base;
353
Nate Begemane68bcd12005-07-30 00:15:07 +0000354 /// Inst - The instruction using the induction variable.
355 Instruction *Inst;
356
Chris Lattner430d0022005-08-03 22:21:05 +0000357 /// OperandValToReplace - The operand value of Inst to replace with the
358 /// EmittedBase.
359 Value *OperandValToReplace;
Nate Begemane68bcd12005-07-30 00:15:07 +0000360
361 /// Imm - The immediate value that should be added to the base immediately
362 /// before Inst, because it will be folded into the imm field of the
363 /// instruction.
364 SCEVHandle Imm;
365
366 /// EmittedBase - The actual value* to use for the base value of this
367 /// operation. This is null if we should just use zero so far.
368 Value *EmittedBase;
369
Chris Lattner9bfa6f82005-08-08 05:28:22 +0000370 // isUseOfPostIncrementedValue - True if this should use the
371 // post-incremented version of this IV, not the preincremented version.
372 // This can only be set in special cases, such as the terminating setcc
373 // instruction for a loop.
374 bool isUseOfPostIncrementedValue;
Chris Lattner37c24cc2005-08-08 22:56:21 +0000375
376 BasedUser(IVStrideUse &IVSU)
377 : Base(IVSU.Offset), Inst(IVSU.User),
378 OperandValToReplace(IVSU.OperandValToReplace),
379 Imm(SCEVUnknown::getIntegerSCEV(0, Base->getType())), EmittedBase(0),
380 isUseOfPostIncrementedValue(IVSU.isUseOfPostIncrementedValue) {}
Nate Begemane68bcd12005-07-30 00:15:07 +0000381
Chris Lattnera6d7c352005-08-04 20:03:32 +0000382 // Once we rewrite the code to insert the new IVs we want, update the
383 // operands of Inst to use the new expression 'NewBase', with 'Imm' added
384 // to it.
Chris Lattnera091ff12005-08-09 00:18:09 +0000385 void RewriteInstructionToUseNewBase(const SCEVHandle &NewBase,
386 SCEVExpander &Rewriter);
Nate Begemane68bcd12005-07-30 00:15:07 +0000387
Chris Lattner37c24cc2005-08-08 22:56:21 +0000388 // Sort by the Base field.
389 bool operator<(const BasedUser &BU) const { return Base < BU.Base; }
Nate Begemane68bcd12005-07-30 00:15:07 +0000390
391 void dump() const;
392 };
393}
394
395void BasedUser::dump() const {
Chris Lattner37c24cc2005-08-08 22:56:21 +0000396 std::cerr << " Base=" << *Base;
Nate Begemane68bcd12005-07-30 00:15:07 +0000397 std::cerr << " Imm=" << *Imm;
398 if (EmittedBase)
399 std::cerr << " EB=" << *EmittedBase;
400
401 std::cerr << " Inst: " << *Inst;
402}
403
Chris Lattnera6d7c352005-08-04 20:03:32 +0000404// Once we rewrite the code to insert the new IVs we want, update the
405// operands of Inst to use the new expression 'NewBase', with 'Imm' added
406// to it.
Chris Lattnera091ff12005-08-09 00:18:09 +0000407void BasedUser::RewriteInstructionToUseNewBase(const SCEVHandle &NewBase,
Chris Lattnera6d7c352005-08-04 20:03:32 +0000408 SCEVExpander &Rewriter) {
409 if (!isa<PHINode>(Inst)) {
Chris Lattnera091ff12005-08-09 00:18:09 +0000410 SCEVHandle NewValSCEV = SCEVAddExpr::get(NewBase, Imm);
Chris Lattnera6d7c352005-08-04 20:03:32 +0000411 Value *NewVal = Rewriter.expandCodeFor(NewValSCEV, Inst,
412 OperandValToReplace->getType());
413
414 // Replace the use of the operand Value with the new Phi we just created.
415 Inst->replaceUsesOfWith(OperandValToReplace, NewVal);
416 DEBUG(std::cerr << " CHANGED: IMM =" << *Imm << " Inst = " << *Inst);
417 return;
418 }
419
420 // PHI nodes are more complex. We have to insert one copy of the NewBase+Imm
421 // expression into each operand block that uses it.
422 PHINode *PN = cast<PHINode>(Inst);
423 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
424 if (PN->getIncomingValue(i) == OperandValToReplace) {
425 // FIXME: this should split any critical edges.
426
427 // Insert the code into the end of the predecessor block.
428 BasicBlock::iterator InsertPt = PN->getIncomingBlock(i)->getTerminator();
429
Chris Lattnera091ff12005-08-09 00:18:09 +0000430 SCEVHandle NewValSCEV = SCEVAddExpr::get(NewBase, Imm);
Chris Lattnera6d7c352005-08-04 20:03:32 +0000431 Value *NewVal = Rewriter.expandCodeFor(NewValSCEV, InsertPt,
432 OperandValToReplace->getType());
433
434 // Replace the use of the operand Value with the new Phi we just created.
435 PN->setIncomingValue(i, NewVal);
436 Rewriter.clear();
437 }
438 }
439 DEBUG(std::cerr << " CHANGED: IMM =" << *Imm << " Inst = " << *Inst);
440}
441
442
Nate Begemane68bcd12005-07-30 00:15:07 +0000443/// isTargetConstant - Return true if the following can be referenced by the
444/// immediate field of a target instruction.
445static bool isTargetConstant(const SCEVHandle &V) {
Jeff Cohen546fd592005-07-30 18:33:25 +0000446
Nate Begemane68bcd12005-07-30 00:15:07 +0000447 // FIXME: Look at the target to decide if &GV is a legal constant immediate.
Chris Lattner14203e82005-08-08 06:25:50 +0000448 if (SCEVConstant *SC = dyn_cast<SCEVConstant>(V)) {
449 // PPC allows a sign-extended 16-bit immediate field.
450 if ((int64_t)SC->getValue()->getRawValue() > -(1 << 16) &&
451 (int64_t)SC->getValue()->getRawValue() < (1 << 16)-1)
452 return true;
453 return false;
454 }
Jeff Cohen546fd592005-07-30 18:33:25 +0000455
Nate Begemane68bcd12005-07-30 00:15:07 +0000456 return false; // ENABLE this for x86
Jeff Cohen546fd592005-07-30 18:33:25 +0000457
Nate Begemane68bcd12005-07-30 00:15:07 +0000458 if (SCEVUnknown *SU = dyn_cast<SCEVUnknown>(V))
459 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(SU->getValue()))
460 if (CE->getOpcode() == Instruction::Cast)
461 if (isa<GlobalValue>(CE->getOperand(0)))
462 // FIXME: should check to see that the dest is uintptr_t!
463 return true;
464 return false;
465}
466
Chris Lattner37ed8952005-08-08 22:32:34 +0000467/// MoveLoopVariantsToImediateField - Move any subexpressions from Val that are
468/// loop varying to the Imm operand.
469static void MoveLoopVariantsToImediateField(SCEVHandle &Val, SCEVHandle &Imm,
470 Loop *L) {
471 if (Val->isLoopInvariant(L)) return; // Nothing to do.
472
473 if (SCEVAddExpr *SAE = dyn_cast<SCEVAddExpr>(Val)) {
474 std::vector<SCEVHandle> NewOps;
475 NewOps.reserve(SAE->getNumOperands());
476
477 for (unsigned i = 0; i != SAE->getNumOperands(); ++i)
478 if (!SAE->getOperand(i)->isLoopInvariant(L)) {
479 // If this is a loop-variant expression, it must stay in the immediate
480 // field of the expression.
481 Imm = SCEVAddExpr::get(Imm, SAE->getOperand(i));
482 } else {
483 NewOps.push_back(SAE->getOperand(i));
484 }
485
486 if (NewOps.empty())
487 Val = SCEVUnknown::getIntegerSCEV(0, Val->getType());
488 else
489 Val = SCEVAddExpr::get(NewOps);
490 } else if (SCEVAddRecExpr *SARE = dyn_cast<SCEVAddRecExpr>(Val)) {
491 // Try to pull immediates out of the start value of nested addrec's.
492 SCEVHandle Start = SARE->getStart();
493 MoveLoopVariantsToImediateField(Start, Imm, L);
494
495 std::vector<SCEVHandle> Ops(SARE->op_begin(), SARE->op_end());
496 Ops[0] = Start;
497 Val = SCEVAddRecExpr::get(Ops, SARE->getLoop());
498 } else {
499 // Otherwise, all of Val is variant, move the whole thing over.
500 Imm = SCEVAddExpr::get(Imm, Val);
501 Val = SCEVUnknown::getIntegerSCEV(0, Val->getType());
502 }
503}
504
505
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000506/// MoveImmediateValues - Look at Val, and pull out any additions of constants
Nate Begemane68bcd12005-07-30 00:15:07 +0000507/// that can fit into the immediate field of instructions in the target.
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000508/// Accumulate these immediate values into the Imm value.
509static void MoveImmediateValues(SCEVHandle &Val, SCEVHandle &Imm,
510 bool isAddress, Loop *L) {
Chris Lattnerfc624702005-08-03 23:44:42 +0000511 if (SCEVAddExpr *SAE = dyn_cast<SCEVAddExpr>(Val)) {
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000512 std::vector<SCEVHandle> NewOps;
513 NewOps.reserve(SAE->getNumOperands());
514
515 for (unsigned i = 0; i != SAE->getNumOperands(); ++i)
Chris Lattneracc42c42005-08-04 19:08:16 +0000516 if (isAddress && isTargetConstant(SAE->getOperand(i))) {
517 Imm = SCEVAddExpr::get(Imm, SAE->getOperand(i));
518 } else if (!SAE->getOperand(i)->isLoopInvariant(L)) {
519 // If this is a loop-variant expression, it must stay in the immediate
520 // field of the expression.
521 Imm = SCEVAddExpr::get(Imm, SAE->getOperand(i));
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000522 } else {
523 NewOps.push_back(SAE->getOperand(i));
Nate Begemane68bcd12005-07-30 00:15:07 +0000524 }
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000525
526 if (NewOps.empty())
527 Val = SCEVUnknown::getIntegerSCEV(0, Val->getType());
528 else
529 Val = SCEVAddExpr::get(NewOps);
530 return;
Chris Lattnerfc624702005-08-03 23:44:42 +0000531 } else if (SCEVAddRecExpr *SARE = dyn_cast<SCEVAddRecExpr>(Val)) {
532 // Try to pull immediates out of the start value of nested addrec's.
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000533 SCEVHandle Start = SARE->getStart();
534 MoveImmediateValues(Start, Imm, isAddress, L);
535
536 if (Start != SARE->getStart()) {
537 std::vector<SCEVHandle> Ops(SARE->op_begin(), SARE->op_end());
538 Ops[0] = Start;
539 Val = SCEVAddRecExpr::get(Ops, SARE->getLoop());
540 }
541 return;
Nate Begemane68bcd12005-07-30 00:15:07 +0000542 }
543
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000544 // Loop-variant expressions must stay in the immediate field of the
545 // expression.
546 if ((isAddress && isTargetConstant(Val)) ||
547 !Val->isLoopInvariant(L)) {
548 Imm = SCEVAddExpr::get(Imm, Val);
549 Val = SCEVUnknown::getIntegerSCEV(0, Val->getType());
550 return;
Chris Lattner0f7c0fa2005-08-04 19:26:19 +0000551 }
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000552
553 // Otherwise, no immediates to move.
Nate Begemane68bcd12005-07-30 00:15:07 +0000554}
555
Chris Lattnera091ff12005-08-09 00:18:09 +0000556/// RemoveCommonExpressionsFromUseBases - Look through all of the uses in Bases,
557/// removing any common subexpressions from it. Anything truly common is
558/// removed, accumulated, and returned. This looks for things like (a+b+c) and
559/// (a+c+d) -> (a+c). The common expression is *removed* from the Bases.
560static SCEVHandle
561RemoveCommonExpressionsFromUseBases(std::vector<BasedUser> &Uses) {
562 unsigned NumUses = Uses.size();
563
564 // Only one use? Use its base, regardless of what it is!
565 SCEVHandle Zero = SCEVUnknown::getIntegerSCEV(0, Uses[0].Base->getType());
566 SCEVHandle Result = Zero;
567 if (NumUses == 1) {
568 std::swap(Result, Uses[0].Base);
569 return Result;
570 }
571
572 // To find common subexpressions, count how many of Uses use each expression.
573 // If any subexpressions are used Uses.size() times, they are common.
574 std::map<SCEVHandle, unsigned> SubExpressionUseCounts;
575
576 for (unsigned i = 0; i != NumUses; ++i)
577 if (SCEVAddExpr *AE = dyn_cast<SCEVAddExpr>(Uses[i].Base)) {
578 for (unsigned j = 0, e = AE->getNumOperands(); j != e; ++j)
579 SubExpressionUseCounts[AE->getOperand(j)]++;
580 } else {
581 // If the base is zero (which is common), return zero now, there are no
582 // CSEs we can find.
583 if (Uses[i].Base == Zero) return Result;
584 SubExpressionUseCounts[Uses[i].Base]++;
585 }
586
587 // Now that we know how many times each is used, build Result.
588 for (std::map<SCEVHandle, unsigned>::iterator I =
589 SubExpressionUseCounts.begin(), E = SubExpressionUseCounts.end();
590 I != E; )
591 if (I->second == NumUses) { // Found CSE!
592 Result = SCEVAddExpr::get(Result, I->first);
593 ++I;
594 } else {
595 // Remove non-cse's from SubExpressionUseCounts.
596 SubExpressionUseCounts.erase(I++);
597 }
598
599 // If we found no CSE's, return now.
600 if (Result == Zero) return Result;
601
602 // Otherwise, remove all of the CSE's we found from each of the base values.
603 for (unsigned i = 0; i != NumUses; ++i)
604 if (SCEVAddExpr *AE = dyn_cast<SCEVAddExpr>(Uses[i].Base)) {
605 std::vector<SCEVHandle> NewOps;
606
607 // Remove all of the values that are now in SubExpressionUseCounts.
608 for (unsigned j = 0, e = AE->getNumOperands(); j != e; ++j)
609 if (!SubExpressionUseCounts.count(AE->getOperand(j)))
610 NewOps.push_back(AE->getOperand(j));
Chris Lattner02742712005-08-09 01:13:47 +0000611 if (NewOps.size() == 0)
612 Uses[i].Base = Zero;
613 else
614 Uses[i].Base = SCEVAddExpr::get(NewOps);
Chris Lattnera091ff12005-08-09 00:18:09 +0000615 } else {
616 // If the base is zero (which is common), return zero now, there are no
617 // CSEs we can find.
618 assert(Uses[i].Base == Result);
619 Uses[i].Base = Zero;
620 }
621
622 return Result;
623}
624
625
Nate Begemane68bcd12005-07-30 00:15:07 +0000626/// StrengthReduceStridedIVUsers - Strength reduce all of the users of a single
627/// stride of IV. All of the users may have different starting values, and this
628/// may not be the only stride (we know it is if isOnlyStride is true).
629void LoopStrengthReduce::StrengthReduceStridedIVUsers(Value *Stride,
Chris Lattner430d0022005-08-03 22:21:05 +0000630 IVUsersOfOneStride &Uses,
631 Loop *L,
Nate Begemane68bcd12005-07-30 00:15:07 +0000632 bool isOnlyStride) {
633 // Transform our list of users and offsets to a bit more complex table. In
Chris Lattner37c24cc2005-08-08 22:56:21 +0000634 // this new vector, each 'BasedUser' contains 'Base' the base of the
635 // strided accessas well as the old information from Uses. We progressively
636 // move information from the Base field to the Imm field, until we eventually
637 // have the full access expression to rewrite the use.
638 std::vector<BasedUser> UsersToProcess;
Nate Begemane68bcd12005-07-30 00:15:07 +0000639 UsersToProcess.reserve(Uses.Users.size());
Chris Lattner37c24cc2005-08-08 22:56:21 +0000640 for (unsigned i = 0, e = Uses.Users.size(); i != e; ++i) {
641 UsersToProcess.push_back(Uses.Users[i]);
642
643 // Move any loop invariant operands from the offset field to the immediate
644 // field of the use, so that we don't try to use something before it is
645 // computed.
646 MoveLoopVariantsToImediateField(UsersToProcess.back().Base,
647 UsersToProcess.back().Imm, L);
648 assert(UsersToProcess.back().Base->isLoopInvariant(L) &&
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000649 "Base value is not loop invariant!");
Nate Begemane68bcd12005-07-30 00:15:07 +0000650 }
Chris Lattner37ed8952005-08-08 22:32:34 +0000651
Chris Lattnera091ff12005-08-09 00:18:09 +0000652 // We now have a whole bunch of uses of like-strided induction variables, but
653 // they might all have different bases. We want to emit one PHI node for this
654 // stride which we fold as many common expressions (between the IVs) into as
655 // possible. Start by identifying the common expressions in the base values
656 // for the strides (e.g. if we have "A+C+B" and "A+B+D" as our bases, find
657 // "A+B"), emit it to the preheader, then remove the expression from the
658 // UsersToProcess base values.
659 SCEVHandle CommonExprs = RemoveCommonExpressionsFromUseBases(UsersToProcess);
660
Chris Lattner37ed8952005-08-08 22:32:34 +0000661 // Next, figure out what we can represent in the immediate fields of
662 // instructions. If we can represent anything there, move it to the imm
Chris Lattnera091ff12005-08-09 00:18:09 +0000663 // fields of the BasedUsers. We do this so that it increases the commonality
664 // of the remaining uses.
Chris Lattner37ed8952005-08-08 22:32:34 +0000665 for (unsigned i = 0, e = UsersToProcess.size(); i != e; ++i) {
666 // Addressing modes can be folded into loads and stores. Be careful that
667 // the store is through the expression, not of the expression though.
Chris Lattner37c24cc2005-08-08 22:56:21 +0000668 bool isAddress = isa<LoadInst>(UsersToProcess[i].Inst);
669 if (StoreInst *SI = dyn_cast<StoreInst>(UsersToProcess[i].Inst))
670 if (SI->getOperand(1) == UsersToProcess[i].OperandValToReplace)
Chris Lattner37ed8952005-08-08 22:32:34 +0000671 isAddress = true;
672
Chris Lattner37c24cc2005-08-08 22:56:21 +0000673 MoveImmediateValues(UsersToProcess[i].Base, UsersToProcess[i].Imm,
Chris Lattner37ed8952005-08-08 22:32:34 +0000674 isAddress, L);
675 }
676
Chris Lattnera091ff12005-08-09 00:18:09 +0000677 // Now that we know what we need to do, insert the PHI node itself.
678 //
679 DEBUG(std::cerr << "INSERTING IV of STRIDE " << *Stride << " and BASE "
680 << *CommonExprs << " :\n");
681
682 SCEVExpander Rewriter(*SE, *LI);
683 SCEVExpander PreheaderRewriter(*SE, *LI);
Chris Lattner37ed8952005-08-08 22:32:34 +0000684
Chris Lattnera091ff12005-08-09 00:18:09 +0000685 BasicBlock *Preheader = L->getLoopPreheader();
686 Instruction *PreInsertPt = Preheader->getTerminator();
687 Instruction *PhiInsertBefore = L->getHeader()->begin();
Chris Lattner37ed8952005-08-08 22:32:34 +0000688
Chris Lattnera091ff12005-08-09 00:18:09 +0000689 assert(isa<PHINode>(PhiInsertBefore) &&
690 "How could this loop have IV's without any phis?");
691 PHINode *SomeLoopPHI = cast<PHINode>(PhiInsertBefore);
692 assert(SomeLoopPHI->getNumIncomingValues() == 2 &&
693 "This loop isn't canonicalized right");
694 BasicBlock *LatchBlock =
695 SomeLoopPHI->getIncomingBlock(SomeLoopPHI->getIncomingBlock(0) == Preheader);
Chris Lattnerbb78c972005-08-03 23:30:08 +0000696
Chris Lattnera091ff12005-08-09 00:18:09 +0000697 // Create a new Phi for this base, and stick it in the loop header.
698 const Type *ReplacedTy = CommonExprs->getType();
699 PHINode *NewPHI = new PHINode(ReplacedTy, "iv.", PhiInsertBefore);
700 ++NumInserted;
701
702 // Emit the initial base value into the loop preheader, and add it to the
703 // Phi node.
704 Value *PHIBaseV = PreheaderRewriter.expandCodeFor(CommonExprs, PreInsertPt,
705 ReplacedTy);
706 NewPHI->addIncoming(PHIBaseV, Preheader);
707
708 // Emit the increment of the base value before the terminator of the loop
709 // latch block, and add it to the Phi node.
710 SCEVHandle IncExp = SCEVAddExpr::get(SCEVUnknown::get(NewPHI),
711 SCEVUnknown::get(Stride));
712
713 Value *IncV = Rewriter.expandCodeFor(IncExp, LatchBlock->getTerminator(),
714 ReplacedTy);
715 IncV->setName(NewPHI->getName()+".inc");
716 NewPHI->addIncoming(IncV, LatchBlock);
717
Chris Lattnerdb23c742005-08-03 22:51:21 +0000718 // Sort by the base value, so that all IVs with identical bases are next to
Chris Lattnera091ff12005-08-09 00:18:09 +0000719 // each other.
Chris Lattnerdb23c742005-08-03 22:51:21 +0000720 std::sort(UsersToProcess.begin(), UsersToProcess.end());
Nate Begemane68bcd12005-07-30 00:15:07 +0000721 while (!UsersToProcess.empty()) {
Chris Lattner37c24cc2005-08-08 22:56:21 +0000722 SCEVHandle Base = UsersToProcess.front().Base;
Chris Lattnerbb78c972005-08-03 23:30:08 +0000723
Chris Lattnera091ff12005-08-09 00:18:09 +0000724 DEBUG(std::cerr << " INSERTING code for BASE = " << *Base << ":\n");
Chris Lattnerbb78c972005-08-03 23:30:08 +0000725
Chris Lattnera091ff12005-08-09 00:18:09 +0000726 // Emit the code for Base into the preheader.
Chris Lattnerc70bbc02005-08-08 05:47:49 +0000727 Value *BaseV = PreheaderRewriter.expandCodeFor(Base, PreInsertPt,
728 ReplacedTy);
Chris Lattnera091ff12005-08-09 00:18:09 +0000729
730 // If BaseV is a constant other than 0, make sure that it gets inserted into
731 // the preheader, instead of being forward substituted into the uses. We do
732 // this by forcing a noop cast to be inserted into the preheader in this
733 // case.
734 if (Constant *C = dyn_cast<Constant>(BaseV))
735 if (!C->isNullValue()) {
736 // We want this constant emitted into the preheader!
737 BaseV = new CastInst(BaseV, BaseV->getType(), "preheaderinsert",
738 PreInsertPt);
739 }
740
Nate Begemane68bcd12005-07-30 00:15:07 +0000741 // Emit the code to add the immediate offset to the Phi value, just before
Chris Lattnerdb23c742005-08-03 22:51:21 +0000742 // the instructions that we identified as using this stride and base.
Chris Lattner37c24cc2005-08-08 22:56:21 +0000743 while (!UsersToProcess.empty() && UsersToProcess.front().Base == Base) {
744 BasedUser &User = UsersToProcess.front();
Jeff Cohen546fd592005-07-30 18:33:25 +0000745
Chris Lattnera091ff12005-08-09 00:18:09 +0000746 // If this instruction wants to use the post-incremented value, move it
747 // after the post-inc and use its value instead of the PHI.
748 Value *RewriteOp = NewPHI;
749 if (User.isUseOfPostIncrementedValue) {
750 RewriteOp = IncV;
751 User.Inst->moveBefore(LatchBlock->getTerminator());
752 }
753 SCEVHandle RewriteExpr = SCEVUnknown::get(RewriteOp);
754
Chris Lattnerdb23c742005-08-03 22:51:21 +0000755 // Clear the SCEVExpander's expression map so that we are guaranteed
756 // to have the code emitted where we expect it.
757 Rewriter.clear();
Chris Lattnera091ff12005-08-09 00:18:09 +0000758
Chris Lattnera6d7c352005-08-04 20:03:32 +0000759 // Now that we know what we need to do, insert code before User for the
760 // immediate and any loop-variant expressions.
Chris Lattnera091ff12005-08-09 00:18:09 +0000761 if (!isa<ConstantInt>(BaseV) || !cast<ConstantInt>(BaseV)->isNullValue())
762 // Add BaseV to the PHI value if needed.
763 RewriteExpr = SCEVAddExpr::get(RewriteExpr, SCEVUnknown::get(BaseV));
764
765 User.RewriteInstructionToUseNewBase(RewriteExpr, Rewriter);
Jeff Cohen546fd592005-07-30 18:33:25 +0000766
Chris Lattnerdb23c742005-08-03 22:51:21 +0000767 // Mark old value we replaced as possibly dead, so that it is elminated
768 // if we just replaced the last use of that value.
Chris Lattnera6d7c352005-08-04 20:03:32 +0000769 DeadInsts.insert(cast<Instruction>(User.OperandValToReplace));
Nate Begemane68bcd12005-07-30 00:15:07 +0000770
Chris Lattnerdb23c742005-08-03 22:51:21 +0000771 UsersToProcess.erase(UsersToProcess.begin());
772 ++NumReduced;
773 }
Nate Begemane68bcd12005-07-30 00:15:07 +0000774 // TODO: Next, find out which base index is the most common, pull it out.
775 }
776
777 // IMPORTANT TODO: Figure out how to partition the IV's with this stride, but
778 // different starting values, into different PHIs.
Nate Begemane68bcd12005-07-30 00:15:07 +0000779}
780
Chris Lattner9bfa6f82005-08-08 05:28:22 +0000781// OptimizeIndvars - Now that IVUsesByStride is set up with all of the indvar
782// uses in the loop, look to see if we can eliminate some, in favor of using
783// common indvars for the different uses.
784void LoopStrengthReduce::OptimizeIndvars(Loop *L) {
785 // TODO: implement optzns here.
786
787
788
789
790 // Finally, get the terminating condition for the loop if possible. If we
791 // can, we want to change it to use a post-incremented version of its
792 // induction variable, to allow coallescing the live ranges for the IV into
793 // one register value.
794 PHINode *SomePHI = cast<PHINode>(L->getHeader()->begin());
795 BasicBlock *Preheader = L->getLoopPreheader();
796 BasicBlock *LatchBlock =
797 SomePHI->getIncomingBlock(SomePHI->getIncomingBlock(0) == Preheader);
798 BranchInst *TermBr = dyn_cast<BranchInst>(LatchBlock->getTerminator());
799 if (!TermBr || TermBr->isUnconditional() ||
800 !isa<SetCondInst>(TermBr->getCondition()))
801 return;
802 SetCondInst *Cond = cast<SetCondInst>(TermBr->getCondition());
803
804 // Search IVUsesByStride to find Cond's IVUse if there is one.
805 IVStrideUse *CondUse = 0;
806 Value *CondStride = 0;
807
808 for (std::map<Value*, IVUsersOfOneStride>::iterator I =IVUsesByStride.begin(),
809 E = IVUsesByStride.end(); I != E && !CondUse; ++I)
810 for (std::vector<IVStrideUse>::iterator UI = I->second.Users.begin(),
811 E = I->second.Users.end(); UI != E; ++UI)
812 if (UI->User == Cond) {
813 CondUse = &*UI;
814 CondStride = I->first;
815 // NOTE: we could handle setcc instructions with multiple uses here, but
816 // InstCombine does it as well for simple uses, it's not clear that it
817 // occurs enough in real life to handle.
818 break;
819 }
820 if (!CondUse) return; // setcc doesn't use the IV.
821
822 // setcc stride is complex, don't mess with users.
823 if (!isa<ConstantInt>(CondStride)) return;
824
825 // It's possible for the setcc instruction to be anywhere in the loop, and
826 // possible for it to have multiple users. If it is not immediately before
827 // the latch block branch, move it.
828 if (&*++BasicBlock::iterator(Cond) != (Instruction*)TermBr) {
829 if (Cond->hasOneUse()) { // Condition has a single use, just move it.
830 Cond->moveBefore(TermBr);
831 } else {
832 // Otherwise, clone the terminating condition and insert into the loopend.
833 Cond = cast<SetCondInst>(Cond->clone());
834 Cond->setName(L->getHeader()->getName() + ".termcond");
835 LatchBlock->getInstList().insert(TermBr, Cond);
836
837 // Clone the IVUse, as the old use still exists!
838 IVUsesByStride[CondStride].addUser(CondUse->Offset, Cond,
839 CondUse->OperandValToReplace);
840 CondUse = &IVUsesByStride[CondStride].Users.back();
841 }
842 }
843
844 // If we get to here, we know that we can transform the setcc instruction to
845 // use the post-incremented version of the IV, allowing us to coallesce the
846 // live ranges for the IV correctly.
847 CondUse->Offset = SCEV::getMinusSCEV(CondUse->Offset,
848 SCEVUnknown::get(CondStride));
849 CondUse->isUseOfPostIncrementedValue = true;
850}
Nate Begemane68bcd12005-07-30 00:15:07 +0000851
Nate Begemanb18121e2004-10-18 21:08:22 +0000852void LoopStrengthReduce::runOnLoop(Loop *L) {
853 // First step, transform all loops nesting inside of this loop.
854 for (LoopInfo::iterator I = L->begin(), E = L->end(); I != E; ++I)
855 runOnLoop(*I);
856
Nate Begemane68bcd12005-07-30 00:15:07 +0000857 // Next, find all uses of induction variables in this loop, and catagorize
858 // them by stride. Start by finding all of the PHI nodes in the header for
859 // this loop. If they are induction variables, inspect their uses.
Chris Lattnereaf24722005-08-04 17:40:30 +0000860 std::set<Instruction*> Processed; // Don't reprocess instructions.
Nate Begemane68bcd12005-07-30 00:15:07 +0000861 for (BasicBlock::iterator I = L->getHeader()->begin(); isa<PHINode>(I); ++I)
Chris Lattnereaf24722005-08-04 17:40:30 +0000862 AddUsersIfInteresting(I, L, Processed);
Nate Begemanb18121e2004-10-18 21:08:22 +0000863
Nate Begemane68bcd12005-07-30 00:15:07 +0000864 // If we have nothing to do, return.
Chris Lattner9bfa6f82005-08-08 05:28:22 +0000865 if (IVUsesByStride.empty()) return;
866
867 // Optimize induction variables. Some indvar uses can be transformed to use
868 // strides that will be needed for other purposes. A common example of this
869 // is the exit test for the loop, which can often be rewritten to use the
870 // computation of some other indvar to decide when to terminate the loop.
871 OptimizeIndvars(L);
872
Misha Brukmanb1c93172005-04-21 23:48:37 +0000873
Nate Begemane68bcd12005-07-30 00:15:07 +0000874 // FIXME: We can widen subreg IV's here for RISC targets. e.g. instead of
875 // doing computation in byte values, promote to 32-bit values if safe.
876
877 // FIXME: Attempt to reuse values across multiple IV's. In particular, we
878 // could have something like "for(i) { foo(i*8); bar(i*16) }", which should be
879 // codegened as "for (j = 0;; j+=8) { foo(j); bar(j+j); }" on X86/PPC. Need
880 // to be careful that IV's are all the same type. Only works for intptr_t
881 // indvars.
882
883 // If we only have one stride, we can more aggressively eliminate some things.
884 bool HasOneStride = IVUsesByStride.size() == 1;
885
Chris Lattnera091ff12005-08-09 00:18:09 +0000886 // Note: this processes each stride/type pair individually. All users passed
887 // into StrengthReduceStridedIVUsers have the same type AND stride.
Chris Lattner430d0022005-08-03 22:21:05 +0000888 for (std::map<Value*, IVUsersOfOneStride>::iterator SI
889 = IVUsesByStride.begin(), E = IVUsesByStride.end(); SI != E; ++SI)
Nate Begemane68bcd12005-07-30 00:15:07 +0000890 StrengthReduceStridedIVUsers(SI->first, SI->second, L, HasOneStride);
Nate Begemanb18121e2004-10-18 21:08:22 +0000891
892 // Clean up after ourselves
893 if (!DeadInsts.empty()) {
894 DeleteTriviallyDeadInstructions(DeadInsts);
895
Nate Begemane68bcd12005-07-30 00:15:07 +0000896 BasicBlock::iterator I = L->getHeader()->begin();
897 PHINode *PN;
Chris Lattnerdcce49e2005-08-02 02:44:31 +0000898 while ((PN = dyn_cast<PHINode>(I))) {
Chris Lattner564900e2005-08-02 00:41:11 +0000899 ++I; // Preincrement iterator to avoid invalidating it when deleting PN.
900
Nate Begemane68bcd12005-07-30 00:15:07 +0000901 // At this point, we know that we have killed one or more GEP instructions.
902 // It is worth checking to see if the cann indvar is also dead, so that we
903 // can remove it as well. The requirements for the cann indvar to be
904 // considered dead are:
905 // 1. the cann indvar has one use
906 // 2. the use is an add instruction
907 // 3. the add has one use
908 // 4. the add is used by the cann indvar
909 // If all four cases above are true, then we can remove both the add and
910 // the cann indvar.
911 // FIXME: this needs to eliminate an induction variable even if it's being
912 // compared against some value to decide loop termination.
913 if (PN->hasOneUse()) {
914 BinaryOperator *BO = dyn_cast<BinaryOperator>(*(PN->use_begin()));
Chris Lattner75a44e12005-08-02 02:52:02 +0000915 if (BO && BO->hasOneUse()) {
916 if (PN == *(BO->use_begin())) {
917 DeadInsts.insert(BO);
918 // Break the cycle, then delete the PHI.
919 PN->replaceAllUsesWith(UndefValue::get(PN->getType()));
Chris Lattner84e9baa2005-08-03 21:36:09 +0000920 SE->deleteInstructionFromRecords(PN);
Chris Lattner75a44e12005-08-02 02:52:02 +0000921 PN->eraseFromParent();
Nate Begemanb18121e2004-10-18 21:08:22 +0000922 }
Chris Lattner75a44e12005-08-02 02:52:02 +0000923 }
Nate Begemane68bcd12005-07-30 00:15:07 +0000924 }
Nate Begemanb18121e2004-10-18 21:08:22 +0000925 }
Nate Begemane68bcd12005-07-30 00:15:07 +0000926 DeleteTriviallyDeadInstructions(DeadInsts);
Nate Begemanb18121e2004-10-18 21:08:22 +0000927 }
Nate Begemane68bcd12005-07-30 00:15:07 +0000928
Chris Lattner11e7a5e2005-08-05 01:30:11 +0000929 CastedPointers.clear();
Nate Begemane68bcd12005-07-30 00:15:07 +0000930 IVUsesByStride.clear();
931 return;
Nate Begemanb18121e2004-10-18 21:08:22 +0000932}