blob: e7e9886e314fe329cdf1cac0e01322b8a93b1a84 [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 {
348 /// Inst - The instruction using the induction variable.
349 Instruction *Inst;
350
Chris Lattner430d0022005-08-03 22:21:05 +0000351 /// OperandValToReplace - The operand value of Inst to replace with the
352 /// EmittedBase.
353 Value *OperandValToReplace;
Nate Begemane68bcd12005-07-30 00:15:07 +0000354
355 /// Imm - The immediate value that should be added to the base immediately
356 /// before Inst, because it will be folded into the imm field of the
357 /// instruction.
358 SCEVHandle Imm;
359
360 /// EmittedBase - The actual value* to use for the base value of this
361 /// operation. This is null if we should just use zero so far.
362 Value *EmittedBase;
363
Chris Lattner9bfa6f82005-08-08 05:28:22 +0000364 // isUseOfPostIncrementedValue - True if this should use the
365 // post-incremented version of this IV, not the preincremented version.
366 // This can only be set in special cases, such as the terminating setcc
367 // instruction for a loop.
368 bool isUseOfPostIncrementedValue;
369
370 BasedUser(Instruction *I, Value *Op, const SCEVHandle &IMM, bool iUOPIV)
371 : Inst(I), OperandValToReplace(Op), Imm(IMM), EmittedBase(0),
372 isUseOfPostIncrementedValue(iUOPIV) {}
Nate Begemane68bcd12005-07-30 00:15:07 +0000373
Chris Lattnera6d7c352005-08-04 20:03:32 +0000374 // Once we rewrite the code to insert the new IVs we want, update the
375 // operands of Inst to use the new expression 'NewBase', with 'Imm' added
376 // to it.
377 void RewriteInstructionToUseNewBase(Value *NewBase, SCEVExpander &Rewriter);
Nate Begemane68bcd12005-07-30 00:15:07 +0000378
379 // No need to compare these.
380 bool operator<(const BasedUser &BU) const { return 0; }
381
382 void dump() const;
383 };
384}
385
386void BasedUser::dump() const {
387 std::cerr << " Imm=" << *Imm;
388 if (EmittedBase)
389 std::cerr << " EB=" << *EmittedBase;
390
391 std::cerr << " Inst: " << *Inst;
392}
393
Chris Lattnera6d7c352005-08-04 20:03:32 +0000394// Once we rewrite the code to insert the new IVs we want, update the
395// operands of Inst to use the new expression 'NewBase', with 'Imm' added
396// to it.
397void BasedUser::RewriteInstructionToUseNewBase(Value *NewBase,
398 SCEVExpander &Rewriter) {
399 if (!isa<PHINode>(Inst)) {
400 SCEVHandle NewValSCEV = SCEVAddExpr::get(SCEVUnknown::get(NewBase), Imm);
401 Value *NewVal = Rewriter.expandCodeFor(NewValSCEV, Inst,
402 OperandValToReplace->getType());
403
404 // Replace the use of the operand Value with the new Phi we just created.
405 Inst->replaceUsesOfWith(OperandValToReplace, NewVal);
406 DEBUG(std::cerr << " CHANGED: IMM =" << *Imm << " Inst = " << *Inst);
407 return;
408 }
409
410 // PHI nodes are more complex. We have to insert one copy of the NewBase+Imm
411 // expression into each operand block that uses it.
412 PHINode *PN = cast<PHINode>(Inst);
413 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
414 if (PN->getIncomingValue(i) == OperandValToReplace) {
415 // FIXME: this should split any critical edges.
416
417 // Insert the code into the end of the predecessor block.
418 BasicBlock::iterator InsertPt = PN->getIncomingBlock(i)->getTerminator();
419
420 SCEVHandle NewValSCEV = SCEVAddExpr::get(SCEVUnknown::get(NewBase), Imm);
421 Value *NewVal = Rewriter.expandCodeFor(NewValSCEV, InsertPt,
422 OperandValToReplace->getType());
423
424 // Replace the use of the operand Value with the new Phi we just created.
425 PN->setIncomingValue(i, NewVal);
426 Rewriter.clear();
427 }
428 }
429 DEBUG(std::cerr << " CHANGED: IMM =" << *Imm << " Inst = " << *Inst);
430}
431
432
Nate Begemane68bcd12005-07-30 00:15:07 +0000433/// isTargetConstant - Return true if the following can be referenced by the
434/// immediate field of a target instruction.
435static bool isTargetConstant(const SCEVHandle &V) {
Jeff Cohen546fd592005-07-30 18:33:25 +0000436
Nate Begemane68bcd12005-07-30 00:15:07 +0000437 // FIXME: Look at the target to decide if &GV is a legal constant immediate.
Chris Lattner14203e82005-08-08 06:25:50 +0000438 if (SCEVConstant *SC = dyn_cast<SCEVConstant>(V)) {
439 // PPC allows a sign-extended 16-bit immediate field.
440 if ((int64_t)SC->getValue()->getRawValue() > -(1 << 16) &&
441 (int64_t)SC->getValue()->getRawValue() < (1 << 16)-1)
442 return true;
443 return false;
444 }
Jeff Cohen546fd592005-07-30 18:33:25 +0000445
Nate Begemane68bcd12005-07-30 00:15:07 +0000446 return false; // ENABLE this for x86
Jeff Cohen546fd592005-07-30 18:33:25 +0000447
Nate Begemane68bcd12005-07-30 00:15:07 +0000448 if (SCEVUnknown *SU = dyn_cast<SCEVUnknown>(V))
449 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(SU->getValue()))
450 if (CE->getOpcode() == Instruction::Cast)
451 if (isa<GlobalValue>(CE->getOperand(0)))
452 // FIXME: should check to see that the dest is uintptr_t!
453 return true;
454 return false;
455}
456
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000457/// MoveImmediateValues - Look at Val, and pull out any additions of constants
Nate Begemane68bcd12005-07-30 00:15:07 +0000458/// that can fit into the immediate field of instructions in the target.
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000459/// Accumulate these immediate values into the Imm value.
460static void MoveImmediateValues(SCEVHandle &Val, SCEVHandle &Imm,
461 bool isAddress, Loop *L) {
Chris Lattnerfc624702005-08-03 23:44:42 +0000462 if (SCEVAddExpr *SAE = dyn_cast<SCEVAddExpr>(Val)) {
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000463 std::vector<SCEVHandle> NewOps;
464 NewOps.reserve(SAE->getNumOperands());
465
466 for (unsigned i = 0; i != SAE->getNumOperands(); ++i)
Chris Lattneracc42c42005-08-04 19:08:16 +0000467 if (isAddress && isTargetConstant(SAE->getOperand(i))) {
468 Imm = SCEVAddExpr::get(Imm, SAE->getOperand(i));
469 } else if (!SAE->getOperand(i)->isLoopInvariant(L)) {
470 // If this is a loop-variant expression, it must stay in the immediate
471 // field of the expression.
472 Imm = SCEVAddExpr::get(Imm, SAE->getOperand(i));
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000473 } else {
474 NewOps.push_back(SAE->getOperand(i));
Nate Begemane68bcd12005-07-30 00:15:07 +0000475 }
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000476
477 if (NewOps.empty())
478 Val = SCEVUnknown::getIntegerSCEV(0, Val->getType());
479 else
480 Val = SCEVAddExpr::get(NewOps);
481 return;
Chris Lattnerfc624702005-08-03 23:44:42 +0000482 } else if (SCEVAddRecExpr *SARE = dyn_cast<SCEVAddRecExpr>(Val)) {
483 // Try to pull immediates out of the start value of nested addrec's.
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000484 SCEVHandle Start = SARE->getStart();
485 MoveImmediateValues(Start, Imm, isAddress, L);
486
487 if (Start != SARE->getStart()) {
488 std::vector<SCEVHandle> Ops(SARE->op_begin(), SARE->op_end());
489 Ops[0] = Start;
490 Val = SCEVAddRecExpr::get(Ops, SARE->getLoop());
491 }
492 return;
Nate Begemane68bcd12005-07-30 00:15:07 +0000493 }
494
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000495 // Loop-variant expressions must stay in the immediate field of the
496 // expression.
497 if ((isAddress && isTargetConstant(Val)) ||
498 !Val->isLoopInvariant(L)) {
499 Imm = SCEVAddExpr::get(Imm, Val);
500 Val = SCEVUnknown::getIntegerSCEV(0, Val->getType());
501 return;
Chris Lattner0f7c0fa2005-08-04 19:26:19 +0000502 }
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000503
504 // Otherwise, no immediates to move.
Nate Begemane68bcd12005-07-30 00:15:07 +0000505}
506
507/// StrengthReduceStridedIVUsers - Strength reduce all of the users of a single
508/// stride of IV. All of the users may have different starting values, and this
509/// may not be the only stride (we know it is if isOnlyStride is true).
510void LoopStrengthReduce::StrengthReduceStridedIVUsers(Value *Stride,
Chris Lattner430d0022005-08-03 22:21:05 +0000511 IVUsersOfOneStride &Uses,
512 Loop *L,
Nate Begemane68bcd12005-07-30 00:15:07 +0000513 bool isOnlyStride) {
514 // Transform our list of users and offsets to a bit more complex table. In
515 // this new vector, the first entry for each element is the base of the
516 // strided access, and the second is the BasedUser object for the use. We
517 // progressively move information from the first to the second entry, until we
518 // eventually emit the object.
519 std::vector<std::pair<SCEVHandle, BasedUser> > UsersToProcess;
520 UsersToProcess.reserve(Uses.Users.size());
Jeff Cohen546fd592005-07-30 18:33:25 +0000521
522 SCEVHandle ZeroBase = SCEVUnknown::getIntegerSCEV(0,
Chris Lattner430d0022005-08-03 22:21:05 +0000523 Uses.Users[0].Offset->getType());
Nate Begemane68bcd12005-07-30 00:15:07 +0000524
525 for (unsigned i = 0, e = Uses.Users.size(); i != e; ++i)
Chris Lattner430d0022005-08-03 22:21:05 +0000526 UsersToProcess.push_back(std::make_pair(Uses.Users[i].Offset,
527 BasedUser(Uses.Users[i].User,
528 Uses.Users[i].OperandValToReplace,
Chris Lattner9bfa6f82005-08-08 05:28:22 +0000529 ZeroBase,
530 Uses.Users[i].isUseOfPostIncrementedValue)));
Nate Begemane68bcd12005-07-30 00:15:07 +0000531
532 // First pass, figure out what we can represent in the immediate fields of
533 // instructions. If we can represent anything there, move it to the imm
534 // fields of the BasedUsers.
535 for (unsigned i = 0, e = UsersToProcess.size(); i != e; ++i) {
Chris Lattneracc42c42005-08-04 19:08:16 +0000536 // Addressing modes can be folded into loads and stores. Be careful that
537 // the store is through the expression, not of the expression though.
538 bool isAddress = isa<LoadInst>(UsersToProcess[i].second.Inst);
539 if (StoreInst *SI = dyn_cast<StoreInst>(UsersToProcess[i].second.Inst))
540 if (SI->getOperand(1) == UsersToProcess[i].second.OperandValToReplace)
541 isAddress = true;
542
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000543 MoveImmediateValues(UsersToProcess[i].first, UsersToProcess[i].second.Imm,
544 isAddress, L);
Nate Begemane68bcd12005-07-30 00:15:07 +0000545
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000546 assert(UsersToProcess[i].first->isLoopInvariant(L) &&
547 "Base value is not loop invariant!");
Nate Begemane68bcd12005-07-30 00:15:07 +0000548 }
549
550 SCEVExpander Rewriter(*SE, *LI);
Chris Lattnerc70bbc02005-08-08 05:47:49 +0000551 SCEVExpander PreheaderRewriter(*SE, *LI);
552
Nate Begemane68bcd12005-07-30 00:15:07 +0000553 BasicBlock *Preheader = L->getLoopPreheader();
554 Instruction *PreInsertPt = Preheader->getTerminator();
555 Instruction *PhiInsertBefore = L->getHeader()->begin();
556
Jeff Cohen546fd592005-07-30 18:33:25 +0000557 assert(isa<PHINode>(PhiInsertBefore) &&
Nate Begemane68bcd12005-07-30 00:15:07 +0000558 "How could this loop have IV's without any phis?");
559 PHINode *SomeLoopPHI = cast<PHINode>(PhiInsertBefore);
560 assert(SomeLoopPHI->getNumIncomingValues() == 2 &&
561 "This loop isn't canonicalized right");
562 BasicBlock *LatchBlock =
563 SomeLoopPHI->getIncomingBlock(SomeLoopPHI->getIncomingBlock(0) == Preheader);
Jeff Cohen546fd592005-07-30 18:33:25 +0000564
Chris Lattnerbb78c972005-08-03 23:30:08 +0000565 DEBUG(std::cerr << "INSERTING IVs of STRIDE " << *Stride << ":\n");
566
Nate Begemane68bcd12005-07-30 00:15:07 +0000567 // FIXME: This loop needs increasing levels of intelligence.
Chris Lattnerdb23c742005-08-03 22:51:21 +0000568 // STAGE 0: just emit everything as its own base.
Nate Begemane68bcd12005-07-30 00:15:07 +0000569 // STAGE 1: factor out common vars from bases, and try and push resulting
Chris Lattnerdb23c742005-08-03 22:51:21 +0000570 // constants into Imm field. <-- We are here
Nate Begemane68bcd12005-07-30 00:15:07 +0000571 // STAGE 2: factor out large constants to try and make more constants
572 // acceptable for target loads and stores.
Nate Begemane68bcd12005-07-30 00:15:07 +0000573
Chris Lattnerdb23c742005-08-03 22:51:21 +0000574 // Sort by the base value, so that all IVs with identical bases are next to
575 // each other.
576 std::sort(UsersToProcess.begin(), UsersToProcess.end());
Nate Begemane68bcd12005-07-30 00:15:07 +0000577 while (!UsersToProcess.empty()) {
Chris Lattnerdb23c742005-08-03 22:51:21 +0000578 SCEVHandle Base = UsersToProcess.front().first;
Chris Lattnerbb78c972005-08-03 23:30:08 +0000579
580 DEBUG(std::cerr << " INSERTING PHI with BASE = " << *Base << ":\n");
581
Nate Begemane68bcd12005-07-30 00:15:07 +0000582 // Create a new Phi for this base, and stick it in the loop header.
Chris Lattnerdb23c742005-08-03 22:51:21 +0000583 const Type *ReplacedTy = Base->getType();
584 PHINode *NewPHI = new PHINode(ReplacedTy, "iv.", PhiInsertBefore);
Chris Lattner45f8b6e2005-08-04 22:34:05 +0000585 ++NumInserted;
Nate Begemane68bcd12005-07-30 00:15:07 +0000586
Jeff Cohen546fd592005-07-30 18:33:25 +0000587 // Emit the initial base value into the loop preheader, and add it to the
Nate Begemane68bcd12005-07-30 00:15:07 +0000588 // Phi node.
Chris Lattnerc70bbc02005-08-08 05:47:49 +0000589 Value *BaseV = PreheaderRewriter.expandCodeFor(Base, PreInsertPt,
590 ReplacedTy);
Nate Begemane68bcd12005-07-30 00:15:07 +0000591 NewPHI->addIncoming(BaseV, Preheader);
592
593 // Emit the increment of the base value before the terminator of the loop
594 // latch block, and add it to the Phi node.
595 SCEVHandle Inc = SCEVAddExpr::get(SCEVUnknown::get(NewPHI),
596 SCEVUnknown::get(Stride));
597
598 Value *IncV = Rewriter.expandCodeFor(Inc, LatchBlock->getTerminator(),
599 ReplacedTy);
600 IncV->setName(NewPHI->getName()+".inc");
601 NewPHI->addIncoming(IncV, LatchBlock);
602
603 // Emit the code to add the immediate offset to the Phi value, just before
Chris Lattnerdb23c742005-08-03 22:51:21 +0000604 // the instructions that we identified as using this stride and base.
605 while (!UsersToProcess.empty() && UsersToProcess.front().first == Base) {
606 BasedUser &User = UsersToProcess.front().second;
Jeff Cohen546fd592005-07-30 18:33:25 +0000607
Chris Lattnerdb23c742005-08-03 22:51:21 +0000608 // Clear the SCEVExpander's expression map so that we are guaranteed
609 // to have the code emitted where we expect it.
610 Rewriter.clear();
Chris Lattnera6d7c352005-08-04 20:03:32 +0000611
612 // Now that we know what we need to do, insert code before User for the
613 // immediate and any loop-variant expressions.
Chris Lattner9bfa6f82005-08-08 05:28:22 +0000614 Value *NewBase = NewPHI;
615
616 // If this instruction wants to use the post-incremented value, move it
617 // after the post-inc and use its value instead of the PHI.
618 if (User.isUseOfPostIncrementedValue) {
619 NewBase = IncV;
620 User.Inst->moveBefore(LatchBlock->getTerminator());
621 }
622 User.RewriteInstructionToUseNewBase(NewBase, Rewriter);
Jeff Cohen546fd592005-07-30 18:33:25 +0000623
Chris Lattnerdb23c742005-08-03 22:51:21 +0000624 // Mark old value we replaced as possibly dead, so that it is elminated
625 // if we just replaced the last use of that value.
Chris Lattnera6d7c352005-08-04 20:03:32 +0000626 DeadInsts.insert(cast<Instruction>(User.OperandValToReplace));
Nate Begemane68bcd12005-07-30 00:15:07 +0000627
Chris Lattnerdb23c742005-08-03 22:51:21 +0000628 UsersToProcess.erase(UsersToProcess.begin());
629 ++NumReduced;
630 }
Nate Begemane68bcd12005-07-30 00:15:07 +0000631 // TODO: Next, find out which base index is the most common, pull it out.
632 }
633
634 // IMPORTANT TODO: Figure out how to partition the IV's with this stride, but
635 // different starting values, into different PHIs.
Nate Begemane68bcd12005-07-30 00:15:07 +0000636}
637
Chris Lattner9bfa6f82005-08-08 05:28:22 +0000638// OptimizeIndvars - Now that IVUsesByStride is set up with all of the indvar
639// uses in the loop, look to see if we can eliminate some, in favor of using
640// common indvars for the different uses.
641void LoopStrengthReduce::OptimizeIndvars(Loop *L) {
642 // TODO: implement optzns here.
643
644
645
646
647 // Finally, get the terminating condition for the loop if possible. If we
648 // can, we want to change it to use a post-incremented version of its
649 // induction variable, to allow coallescing the live ranges for the IV into
650 // one register value.
651 PHINode *SomePHI = cast<PHINode>(L->getHeader()->begin());
652 BasicBlock *Preheader = L->getLoopPreheader();
653 BasicBlock *LatchBlock =
654 SomePHI->getIncomingBlock(SomePHI->getIncomingBlock(0) == Preheader);
655 BranchInst *TermBr = dyn_cast<BranchInst>(LatchBlock->getTerminator());
656 if (!TermBr || TermBr->isUnconditional() ||
657 !isa<SetCondInst>(TermBr->getCondition()))
658 return;
659 SetCondInst *Cond = cast<SetCondInst>(TermBr->getCondition());
660
661 // Search IVUsesByStride to find Cond's IVUse if there is one.
662 IVStrideUse *CondUse = 0;
663 Value *CondStride = 0;
664
665 for (std::map<Value*, IVUsersOfOneStride>::iterator I =IVUsesByStride.begin(),
666 E = IVUsesByStride.end(); I != E && !CondUse; ++I)
667 for (std::vector<IVStrideUse>::iterator UI = I->second.Users.begin(),
668 E = I->second.Users.end(); UI != E; ++UI)
669 if (UI->User == Cond) {
670 CondUse = &*UI;
671 CondStride = I->first;
672 // NOTE: we could handle setcc instructions with multiple uses here, but
673 // InstCombine does it as well for simple uses, it's not clear that it
674 // occurs enough in real life to handle.
675 break;
676 }
677 if (!CondUse) return; // setcc doesn't use the IV.
678
679 // setcc stride is complex, don't mess with users.
680 if (!isa<ConstantInt>(CondStride)) return;
681
682 // It's possible for the setcc instruction to be anywhere in the loop, and
683 // possible for it to have multiple users. If it is not immediately before
684 // the latch block branch, move it.
685 if (&*++BasicBlock::iterator(Cond) != (Instruction*)TermBr) {
686 if (Cond->hasOneUse()) { // Condition has a single use, just move it.
687 Cond->moveBefore(TermBr);
688 } else {
689 // Otherwise, clone the terminating condition and insert into the loopend.
690 Cond = cast<SetCondInst>(Cond->clone());
691 Cond->setName(L->getHeader()->getName() + ".termcond");
692 LatchBlock->getInstList().insert(TermBr, Cond);
693
694 // Clone the IVUse, as the old use still exists!
695 IVUsesByStride[CondStride].addUser(CondUse->Offset, Cond,
696 CondUse->OperandValToReplace);
697 CondUse = &IVUsesByStride[CondStride].Users.back();
698 }
699 }
700
701 // If we get to here, we know that we can transform the setcc instruction to
702 // use the post-incremented version of the IV, allowing us to coallesce the
703 // live ranges for the IV correctly.
704 CondUse->Offset = SCEV::getMinusSCEV(CondUse->Offset,
705 SCEVUnknown::get(CondStride));
706 CondUse->isUseOfPostIncrementedValue = true;
707}
Nate Begemane68bcd12005-07-30 00:15:07 +0000708
Nate Begemanb18121e2004-10-18 21:08:22 +0000709void LoopStrengthReduce::runOnLoop(Loop *L) {
710 // First step, transform all loops nesting inside of this loop.
711 for (LoopInfo::iterator I = L->begin(), E = L->end(); I != E; ++I)
712 runOnLoop(*I);
713
Nate Begemane68bcd12005-07-30 00:15:07 +0000714 // Next, find all uses of induction variables in this loop, and catagorize
715 // them by stride. Start by finding all of the PHI nodes in the header for
716 // this loop. If they are induction variables, inspect their uses.
Chris Lattnereaf24722005-08-04 17:40:30 +0000717 std::set<Instruction*> Processed; // Don't reprocess instructions.
Nate Begemane68bcd12005-07-30 00:15:07 +0000718 for (BasicBlock::iterator I = L->getHeader()->begin(); isa<PHINode>(I); ++I)
Chris Lattnereaf24722005-08-04 17:40:30 +0000719 AddUsersIfInteresting(I, L, Processed);
Nate Begemanb18121e2004-10-18 21:08:22 +0000720
Nate Begemane68bcd12005-07-30 00:15:07 +0000721 // If we have nothing to do, return.
Chris Lattner9bfa6f82005-08-08 05:28:22 +0000722 if (IVUsesByStride.empty()) return;
723
724 // Optimize induction variables. Some indvar uses can be transformed to use
725 // strides that will be needed for other purposes. A common example of this
726 // is the exit test for the loop, which can often be rewritten to use the
727 // computation of some other indvar to decide when to terminate the loop.
728 OptimizeIndvars(L);
729
Misha Brukmanb1c93172005-04-21 23:48:37 +0000730
Nate Begemane68bcd12005-07-30 00:15:07 +0000731 // FIXME: We can widen subreg IV's here for RISC targets. e.g. instead of
732 // doing computation in byte values, promote to 32-bit values if safe.
733
734 // FIXME: Attempt to reuse values across multiple IV's. In particular, we
735 // could have something like "for(i) { foo(i*8); bar(i*16) }", which should be
736 // codegened as "for (j = 0;; j+=8) { foo(j); bar(j+j); }" on X86/PPC. Need
737 // to be careful that IV's are all the same type. Only works for intptr_t
738 // indvars.
739
740 // If we only have one stride, we can more aggressively eliminate some things.
741 bool HasOneStride = IVUsesByStride.size() == 1;
742
Chris Lattner430d0022005-08-03 22:21:05 +0000743 for (std::map<Value*, IVUsersOfOneStride>::iterator SI
744 = IVUsesByStride.begin(), E = IVUsesByStride.end(); SI != E; ++SI)
Nate Begemane68bcd12005-07-30 00:15:07 +0000745 StrengthReduceStridedIVUsers(SI->first, SI->second, L, HasOneStride);
Nate Begemanb18121e2004-10-18 21:08:22 +0000746
747 // Clean up after ourselves
748 if (!DeadInsts.empty()) {
749 DeleteTriviallyDeadInstructions(DeadInsts);
750
Nate Begemane68bcd12005-07-30 00:15:07 +0000751 BasicBlock::iterator I = L->getHeader()->begin();
752 PHINode *PN;
Chris Lattnerdcce49e2005-08-02 02:44:31 +0000753 while ((PN = dyn_cast<PHINode>(I))) {
Chris Lattner564900e2005-08-02 00:41:11 +0000754 ++I; // Preincrement iterator to avoid invalidating it when deleting PN.
755
Nate Begemane68bcd12005-07-30 00:15:07 +0000756 // At this point, we know that we have killed one or more GEP instructions.
757 // It is worth checking to see if the cann indvar is also dead, so that we
758 // can remove it as well. The requirements for the cann indvar to be
759 // considered dead are:
760 // 1. the cann indvar has one use
761 // 2. the use is an add instruction
762 // 3. the add has one use
763 // 4. the add is used by the cann indvar
764 // If all four cases above are true, then we can remove both the add and
765 // the cann indvar.
766 // FIXME: this needs to eliminate an induction variable even if it's being
767 // compared against some value to decide loop termination.
768 if (PN->hasOneUse()) {
769 BinaryOperator *BO = dyn_cast<BinaryOperator>(*(PN->use_begin()));
Chris Lattner75a44e12005-08-02 02:52:02 +0000770 if (BO && BO->hasOneUse()) {
771 if (PN == *(BO->use_begin())) {
772 DeadInsts.insert(BO);
773 // Break the cycle, then delete the PHI.
774 PN->replaceAllUsesWith(UndefValue::get(PN->getType()));
Chris Lattner84e9baa2005-08-03 21:36:09 +0000775 SE->deleteInstructionFromRecords(PN);
Chris Lattner75a44e12005-08-02 02:52:02 +0000776 PN->eraseFromParent();
Nate Begemanb18121e2004-10-18 21:08:22 +0000777 }
Chris Lattner75a44e12005-08-02 02:52:02 +0000778 }
Nate Begemane68bcd12005-07-30 00:15:07 +0000779 }
Nate Begemanb18121e2004-10-18 21:08:22 +0000780 }
Nate Begemane68bcd12005-07-30 00:15:07 +0000781 DeleteTriviallyDeadInstructions(DeadInsts);
Nate Begemanb18121e2004-10-18 21:08:22 +0000782 }
Nate Begemane68bcd12005-07-30 00:15:07 +0000783
Chris Lattner11e7a5e2005-08-05 01:30:11 +0000784 CastedPointers.clear();
Nate Begemane68bcd12005-07-30 00:15:07 +0000785 IVUsesByStride.clear();
786 return;
Nate Begemanb18121e2004-10-18 21:08:22 +0000787}