blob: a72f58f64faecd231ffaf33c772a3360889d6225 [file] [log] [blame]
Nate Begeman36f891b2005-07-30 00:12:19 +00001//===- ScalarEvolutionExpander.cpp - Scalar Evolution Analysis --*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Nate Begeman36f891b2005-07-30 00:12:19 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the implementation of the scalar evolution expander,
11// which is used to generate the code corresponding to a given scalar evolution
12// expression.
13//
14//===----------------------------------------------------------------------===//
15
Nate Begeman36f891b2005-07-30 00:12:19 +000016#include "llvm/Analysis/ScalarEvolutionExpander.h"
Bill Wendlinge8156192006-12-07 01:30:32 +000017#include "llvm/Analysis/LoopInfo.h"
Owen Anderson76f600b2009-07-06 22:37:39 +000018#include "llvm/LLVMContext.h"
Dan Gohman5be18e82009-05-19 02:15:55 +000019#include "llvm/Target/TargetData.h"
Dan Gohman4d8414f2009-06-13 16:25:49 +000020#include "llvm/ADT/STLExtras.h"
Nate Begeman36f891b2005-07-30 00:12:19 +000021using namespace llvm;
22
Dan Gohman267a3852009-06-27 21:18:18 +000023/// InsertNoopCastOfTo - Insert a cast of V to the specified type,
24/// which must be possible with a noop cast, doing what we can to share
25/// the casts.
26Value *SCEVExpander::InsertNoopCastOfTo(Value *V, const Type *Ty) {
27 Instruction::CastOps Op = CastInst::getCastOpcode(V, false, Ty, false);
28 assert((Op == Instruction::BitCast ||
29 Op == Instruction::PtrToInt ||
30 Op == Instruction::IntToPtr) &&
31 "InsertNoopCastOfTo cannot perform non-noop casts!");
32 assert(SE.getTypeSizeInBits(V->getType()) == SE.getTypeSizeInBits(Ty) &&
33 "InsertNoopCastOfTo cannot change sizes!");
34
Dan Gohman2d1be872009-04-16 03:18:22 +000035 // Short-circuit unnecessary bitcasts.
Dan Gohman267a3852009-06-27 21:18:18 +000036 if (Op == Instruction::BitCast && V->getType() == Ty)
Dan Gohman2d1be872009-04-16 03:18:22 +000037 return V;
38
Dan Gohmanf04fa482009-04-16 15:52:57 +000039 // Short-circuit unnecessary inttoptr<->ptrtoint casts.
Dan Gohman267a3852009-06-27 21:18:18 +000040 if ((Op == Instruction::PtrToInt || Op == Instruction::IntToPtr) &&
Dan Gohman80dcdee2009-05-01 17:00:00 +000041 SE.getTypeSizeInBits(Ty) == SE.getTypeSizeInBits(V->getType())) {
Dan Gohmanaf79fb52009-04-21 01:07:12 +000042 if (CastInst *CI = dyn_cast<CastInst>(V))
43 if ((CI->getOpcode() == Instruction::PtrToInt ||
44 CI->getOpcode() == Instruction::IntToPtr) &&
45 SE.getTypeSizeInBits(CI->getType()) ==
46 SE.getTypeSizeInBits(CI->getOperand(0)->getType()))
47 return CI->getOperand(0);
Dan Gohman80dcdee2009-05-01 17:00:00 +000048 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V))
49 if ((CE->getOpcode() == Instruction::PtrToInt ||
50 CE->getOpcode() == Instruction::IntToPtr) &&
51 SE.getTypeSizeInBits(CE->getType()) ==
52 SE.getTypeSizeInBits(CE->getOperand(0)->getType()))
53 return CE->getOperand(0);
54 }
Dan Gohmanf04fa482009-04-16 15:52:57 +000055
Chris Lattnerca1a4be2006-02-04 09:51:53 +000056 if (Constant *C = dyn_cast<Constant>(V))
Owen Andersonbaf3c402009-07-29 18:55:55 +000057 return ConstantExpr::getCast(Op, C, Ty);
Dan Gohman4c0d5d52009-08-20 16:42:55 +000058
Chris Lattnerca1a4be2006-02-04 09:51:53 +000059 if (Argument *A = dyn_cast<Argument>(V)) {
60 // Check to see if there is already a cast!
61 for (Value::use_iterator UI = A->use_begin(), E = A->use_end();
Dan Gohman40a5a1b2009-06-24 01:18:18 +000062 UI != E; ++UI)
Chris Lattnerca1a4be2006-02-04 09:51:53 +000063 if ((*UI)->getType() == Ty)
Wojciech Matyjewicz39131872008-02-09 18:30:13 +000064 if (CastInst *CI = dyn_cast<CastInst>(cast<Instruction>(*UI)))
Dan Gohman267a3852009-06-27 21:18:18 +000065 if (CI->getOpcode() == Op) {
Wojciech Matyjewicz39131872008-02-09 18:30:13 +000066 // If the cast isn't the first instruction of the function, move it.
Dan Gohman40a5a1b2009-06-24 01:18:18 +000067 if (BasicBlock::iterator(CI) !=
Wojciech Matyjewicz39131872008-02-09 18:30:13 +000068 A->getParent()->getEntryBlock().begin()) {
Dan Gohman40a5a1b2009-06-24 01:18:18 +000069 // Recreate the cast at the beginning of the entry block.
70 // The old cast is left in place in case it is being used
71 // as an insert point.
72 Instruction *NewCI =
Dan Gohman267a3852009-06-27 21:18:18 +000073 CastInst::Create(Op, V, Ty, "",
Dan Gohman40a5a1b2009-06-24 01:18:18 +000074 A->getParent()->getEntryBlock().begin());
75 NewCI->takeName(CI);
76 CI->replaceAllUsesWith(NewCI);
77 return NewCI;
Wojciech Matyjewicz39131872008-02-09 18:30:13 +000078 }
79 return CI;
Chris Lattnerca1a4be2006-02-04 09:51:53 +000080 }
Dan Gohman40a5a1b2009-06-24 01:18:18 +000081
Dan Gohman267a3852009-06-27 21:18:18 +000082 Instruction *I = CastInst::Create(Op, V, Ty, V->getName(),
Dan Gohmancf5ab822009-05-01 17:13:31 +000083 A->getParent()->getEntryBlock().begin());
Dan Gohmana10756e2010-01-21 02:09:26 +000084 rememberInstruction(I);
Dan Gohmancf5ab822009-05-01 17:13:31 +000085 return I;
Chris Lattnerca1a4be2006-02-04 09:51:53 +000086 }
Wojciech Matyjewicz39131872008-02-09 18:30:13 +000087
Chris Lattnerca1a4be2006-02-04 09:51:53 +000088 Instruction *I = cast<Instruction>(V);
Wojciech Matyjewicz39131872008-02-09 18:30:13 +000089
Chris Lattnerca1a4be2006-02-04 09:51:53 +000090 // Check to see if there is already a cast. If there is, use it.
91 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
92 UI != E; ++UI) {
93 if ((*UI)->getType() == Ty)
Wojciech Matyjewicz39131872008-02-09 18:30:13 +000094 if (CastInst *CI = dyn_cast<CastInst>(cast<Instruction>(*UI)))
Dan Gohman267a3852009-06-27 21:18:18 +000095 if (CI->getOpcode() == Op) {
Wojciech Matyjewicz39131872008-02-09 18:30:13 +000096 BasicBlock::iterator It = I; ++It;
97 if (isa<InvokeInst>(I))
98 It = cast<InvokeInst>(I)->getNormalDest()->begin();
99 while (isa<PHINode>(It)) ++It;
100 if (It != BasicBlock::iterator(CI)) {
Dan Gohmanc37e3d52010-01-21 10:08:42 +0000101 // Recreate the cast after the user.
Dan Gohman40a5a1b2009-06-24 01:18:18 +0000102 // The old cast is left in place in case it is being used
103 // as an insert point.
Dan Gohman267a3852009-06-27 21:18:18 +0000104 Instruction *NewCI = CastInst::Create(Op, V, Ty, "", It);
Dan Gohman40a5a1b2009-06-24 01:18:18 +0000105 NewCI->takeName(CI);
106 CI->replaceAllUsesWith(NewCI);
Dan Gohmanc37e3d52010-01-21 10:08:42 +0000107 rememberInstruction(NewCI);
Dan Gohman40a5a1b2009-06-24 01:18:18 +0000108 return NewCI;
Wojciech Matyjewicz39131872008-02-09 18:30:13 +0000109 }
Dan Gohmanc37e3d52010-01-21 10:08:42 +0000110 rememberInstruction(CI);
Wojciech Matyjewicz39131872008-02-09 18:30:13 +0000111 return CI;
Chris Lattnerca1a4be2006-02-04 09:51:53 +0000112 }
Chris Lattnerca1a4be2006-02-04 09:51:53 +0000113 }
114 BasicBlock::iterator IP = I; ++IP;
115 if (InvokeInst *II = dyn_cast<InvokeInst>(I))
116 IP = II->getNormalDest()->begin();
117 while (isa<PHINode>(IP)) ++IP;
Dan Gohman267a3852009-06-27 21:18:18 +0000118 Instruction *CI = CastInst::Create(Op, V, Ty, V->getName(), IP);
Dan Gohmana10756e2010-01-21 02:09:26 +0000119 rememberInstruction(CI);
Dan Gohmancf5ab822009-05-01 17:13:31 +0000120 return CI;
Chris Lattnerca1a4be2006-02-04 09:51:53 +0000121}
122
Chris Lattner7fec90e2007-04-13 05:04:18 +0000123/// InsertBinop - Insert the specified binary operator, doing a small amount
124/// of work to avoid inserting an obviously redundant operation.
Dan Gohman267a3852009-06-27 21:18:18 +0000125Value *SCEVExpander::InsertBinop(Instruction::BinaryOps Opcode,
126 Value *LHS, Value *RHS) {
Dan Gohman0f0eb182007-06-15 19:21:55 +0000127 // Fold a binop with constant operands.
128 if (Constant *CLHS = dyn_cast<Constant>(LHS))
129 if (Constant *CRHS = dyn_cast<Constant>(RHS))
Owen Andersonbaf3c402009-07-29 18:55:55 +0000130 return ConstantExpr::get(Opcode, CLHS, CRHS);
Dan Gohman0f0eb182007-06-15 19:21:55 +0000131
Chris Lattner7fec90e2007-04-13 05:04:18 +0000132 // Do a quick scan to see if we have this binop nearby. If so, reuse it.
133 unsigned ScanLimit = 6;
Dan Gohman267a3852009-06-27 21:18:18 +0000134 BasicBlock::iterator BlockBegin = Builder.GetInsertBlock()->begin();
135 // Scanning starts from the last instruction before the insertion point.
136 BasicBlock::iterator IP = Builder.GetInsertPoint();
137 if (IP != BlockBegin) {
Wojciech Matyjewicz8a087692008-06-15 19:07:39 +0000138 --IP;
139 for (; ScanLimit; --IP, --ScanLimit) {
Dan Gohman5be18e82009-05-19 02:15:55 +0000140 if (IP->getOpcode() == (unsigned)Opcode && IP->getOperand(0) == LHS &&
141 IP->getOperand(1) == RHS)
142 return IP;
Wojciech Matyjewicz8a087692008-06-15 19:07:39 +0000143 if (IP == BlockBegin) break;
144 }
Chris Lattner7fec90e2007-04-13 05:04:18 +0000145 }
Dan Gohman267a3852009-06-27 21:18:18 +0000146
Wojciech Matyjewicz8a087692008-06-15 19:07:39 +0000147 // If we haven't found this binop, insert it.
Dan Gohman267a3852009-06-27 21:18:18 +0000148 Value *BO = Builder.CreateBinOp(Opcode, LHS, RHS, "tmp");
Dan Gohmana10756e2010-01-21 02:09:26 +0000149 rememberInstruction(BO);
Dan Gohmancf5ab822009-05-01 17:13:31 +0000150 return BO;
Chris Lattner7fec90e2007-04-13 05:04:18 +0000151}
152
Dan Gohman4a4f7672009-05-27 02:00:53 +0000153/// FactorOutConstant - Test if S is divisible by Factor, using signed
Dan Gohman453aa4f2009-05-24 18:06:31 +0000154/// division. If so, update S with Factor divided out and return true.
Dan Gohman4a4f7672009-05-27 02:00:53 +0000155/// S need not be evenly divisble if a reasonable remainder can be
156/// computed.
Dan Gohman453aa4f2009-05-24 18:06:31 +0000157/// TODO: When ScalarEvolution gets a SCEVSDivExpr, this can be made
158/// unnecessary; in its place, just signed-divide Ops[i] by the scale and
159/// check to see if the divide was folded.
Dan Gohman0bba49c2009-07-07 17:06:11 +0000160static bool FactorOutConstant(const SCEV *&S,
161 const SCEV *&Remainder,
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000162 const SCEV *Factor,
163 ScalarEvolution &SE,
164 const TargetData *TD) {
Dan Gohman453aa4f2009-05-24 18:06:31 +0000165 // Everything is divisible by one.
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000166 if (Factor->isOne())
Dan Gohman453aa4f2009-05-24 18:06:31 +0000167 return true;
168
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000169 // x/x == 1.
170 if (S == Factor) {
171 S = SE.getIntegerSCEV(1, S->getType());
172 return true;
173 }
174
Dan Gohman453aa4f2009-05-24 18:06:31 +0000175 // For a Constant, check for a multiple of the given factor.
Dan Gohman4a4f7672009-05-27 02:00:53 +0000176 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) {
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000177 // 0/x == 0.
178 if (C->isZero())
Dan Gohman453aa4f2009-05-24 18:06:31 +0000179 return true;
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000180 // Check for divisibility.
181 if (const SCEVConstant *FC = dyn_cast<SCEVConstant>(Factor)) {
182 ConstantInt *CI =
183 ConstantInt::get(SE.getContext(),
184 C->getValue()->getValue().sdiv(
185 FC->getValue()->getValue()));
186 // If the quotient is zero and the remainder is non-zero, reject
187 // the value at this scale. It will be considered for subsequent
188 // smaller scales.
189 if (!CI->isZero()) {
190 const SCEV *Div = SE.getConstant(CI);
191 S = Div;
192 Remainder =
193 SE.getAddExpr(Remainder,
194 SE.getConstant(C->getValue()->getValue().srem(
195 FC->getValue()->getValue())));
196 return true;
197 }
Dan Gohman453aa4f2009-05-24 18:06:31 +0000198 }
Dan Gohman4a4f7672009-05-27 02:00:53 +0000199 }
Dan Gohman453aa4f2009-05-24 18:06:31 +0000200
201 // In a Mul, check if there is a constant operand which is a multiple
202 // of the given factor.
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000203 if (const SCEVMulExpr *M = dyn_cast<SCEVMulExpr>(S)) {
204 if (TD) {
205 // With TargetData, the size is known. Check if there is a constant
206 // operand which is a multiple of the given factor. If so, we can
207 // factor it.
208 const SCEVConstant *FC = cast<SCEVConstant>(Factor);
209 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(M->getOperand(0)))
210 if (!C->getValue()->getValue().srem(FC->getValue()->getValue())) {
211 const SmallVectorImpl<const SCEV *> &MOperands = M->getOperands();
212 SmallVector<const SCEV *, 4> NewMulOps(MOperands.begin(),
213 MOperands.end());
214 NewMulOps[0] =
215 SE.getConstant(C->getValue()->getValue().sdiv(
216 FC->getValue()->getValue()));
217 S = SE.getMulExpr(NewMulOps);
218 return true;
219 }
220 } else {
221 // Without TargetData, check if Factor can be factored out of any of the
222 // Mul's operands. If so, we can just remove it.
223 for (unsigned i = 0, e = M->getNumOperands(); i != e; ++i) {
224 const SCEV *SOp = M->getOperand(i);
225 const SCEV *Remainder = SE.getIntegerSCEV(0, SOp->getType());
226 if (FactorOutConstant(SOp, Remainder, Factor, SE, TD) &&
227 Remainder->isZero()) {
228 const SmallVectorImpl<const SCEV *> &MOperands = M->getOperands();
229 SmallVector<const SCEV *, 4> NewMulOps(MOperands.begin(),
230 MOperands.end());
231 NewMulOps[i] = SOp;
232 S = SE.getMulExpr(NewMulOps);
233 return true;
234 }
Dan Gohman453aa4f2009-05-24 18:06:31 +0000235 }
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000236 }
237 }
Dan Gohman453aa4f2009-05-24 18:06:31 +0000238
239 // In an AddRec, check if both start and step are divisible.
240 if (const SCEVAddRecExpr *A = dyn_cast<SCEVAddRecExpr>(S)) {
Dan Gohman0bba49c2009-07-07 17:06:11 +0000241 const SCEV *Step = A->getStepRecurrence(SE);
242 const SCEV *StepRem = SE.getIntegerSCEV(0, Step->getType());
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000243 if (!FactorOutConstant(Step, StepRem, Factor, SE, TD))
Dan Gohman4a4f7672009-05-27 02:00:53 +0000244 return false;
245 if (!StepRem->isZero())
246 return false;
Dan Gohman0bba49c2009-07-07 17:06:11 +0000247 const SCEV *Start = A->getStart();
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000248 if (!FactorOutConstant(Start, Remainder, Factor, SE, TD))
Dan Gohman453aa4f2009-05-24 18:06:31 +0000249 return false;
250 S = SE.getAddRecExpr(Start, Step, A->getLoop());
251 return true;
252 }
253
254 return false;
255}
256
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000257/// SimplifyAddOperands - Sort and simplify a list of add operands. NumAddRecs
258/// is the number of SCEVAddRecExprs present, which are kept at the end of
259/// the list.
260///
261static void SimplifyAddOperands(SmallVectorImpl<const SCEV *> &Ops,
262 const Type *Ty,
263 ScalarEvolution &SE) {
264 unsigned NumAddRecs = 0;
265 for (unsigned i = Ops.size(); i > 0 && isa<SCEVAddRecExpr>(Ops[i-1]); --i)
266 ++NumAddRecs;
267 // Group Ops into non-addrecs and addrecs.
268 SmallVector<const SCEV *, 8> NoAddRecs(Ops.begin(), Ops.end() - NumAddRecs);
269 SmallVector<const SCEV *, 8> AddRecs(Ops.end() - NumAddRecs, Ops.end());
270 // Let ScalarEvolution sort and simplify the non-addrecs list.
271 const SCEV *Sum = NoAddRecs.empty() ?
272 SE.getIntegerSCEV(0, Ty) :
273 SE.getAddExpr(NoAddRecs);
274 // If it returned an add, use the operands. Otherwise it simplified
275 // the sum into a single value, so just use that.
276 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Sum))
277 Ops = Add->getOperands();
278 else {
279 Ops.clear();
280 if (!Sum->isZero())
281 Ops.push_back(Sum);
282 }
283 // Then append the addrecs.
284 Ops.insert(Ops.end(), AddRecs.begin(), AddRecs.end());
285}
286
287/// SplitAddRecs - Flatten a list of add operands, moving addrec start values
288/// out to the top level. For example, convert {a + b,+,c} to a, b, {0,+,d}.
289/// This helps expose more opportunities for folding parts of the expressions
290/// into GEP indices.
291///
292static void SplitAddRecs(SmallVectorImpl<const SCEV *> &Ops,
293 const Type *Ty,
294 ScalarEvolution &SE) {
295 // Find the addrecs.
296 SmallVector<const SCEV *, 8> AddRecs;
297 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
298 while (const SCEVAddRecExpr *A = dyn_cast<SCEVAddRecExpr>(Ops[i])) {
299 const SCEV *Start = A->getStart();
300 if (Start->isZero()) break;
301 const SCEV *Zero = SE.getIntegerSCEV(0, Ty);
302 AddRecs.push_back(SE.getAddRecExpr(Zero,
303 A->getStepRecurrence(SE),
304 A->getLoop()));
305 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Start)) {
306 Ops[i] = Zero;
307 Ops.insert(Ops.end(), Add->op_begin(), Add->op_end());
308 e += Add->getNumOperands();
309 } else {
310 Ops[i] = Start;
311 }
312 }
313 if (!AddRecs.empty()) {
314 // Add the addrecs onto the end of the list.
315 Ops.insert(Ops.end(), AddRecs.begin(), AddRecs.end());
316 // Resort the operand list, moving any constants to the front.
317 SimplifyAddOperands(Ops, Ty, SE);
318 }
319}
320
Dan Gohman4c0d5d52009-08-20 16:42:55 +0000321/// expandAddToGEP - Expand an addition expression with a pointer type into
322/// a GEP instead of using ptrtoint+arithmetic+inttoptr. This helps
323/// BasicAliasAnalysis and other passes analyze the result. See the rules
324/// for getelementptr vs. inttoptr in
325/// http://llvm.org/docs/LangRef.html#pointeraliasing
326/// for details.
Dan Gohman13c5e352009-07-20 17:44:17 +0000327///
Dan Gohman3abf9052010-01-19 22:26:02 +0000328/// Design note: The correctness of using getelementptr here depends on
Dan Gohman4c0d5d52009-08-20 16:42:55 +0000329/// ScalarEvolution not recognizing inttoptr and ptrtoint operators, as
330/// they may introduce pointer arithmetic which may not be safely converted
331/// into getelementptr.
Dan Gohman453aa4f2009-05-24 18:06:31 +0000332///
333/// Design note: It might seem desirable for this function to be more
334/// loop-aware. If some of the indices are loop-invariant while others
335/// aren't, it might seem desirable to emit multiple GEPs, keeping the
336/// loop-invariant portions of the overall computation outside the loop.
337/// However, there are a few reasons this is not done here. Hoisting simple
338/// arithmetic is a low-level optimization that often isn't very
339/// important until late in the optimization process. In fact, passes
340/// like InstructionCombining will combine GEPs, even if it means
341/// pushing loop-invariant computation down into loops, so even if the
342/// GEPs were split here, the work would quickly be undone. The
343/// LoopStrengthReduction pass, which is usually run quite late (and
344/// after the last InstructionCombining pass), takes care of hoisting
345/// loop-invariant portions of expressions, after considering what
346/// can be folded using target addressing modes.
347///
Dan Gohman0bba49c2009-07-07 17:06:11 +0000348Value *SCEVExpander::expandAddToGEP(const SCEV *const *op_begin,
349 const SCEV *const *op_end,
Dan Gohman5be18e82009-05-19 02:15:55 +0000350 const PointerType *PTy,
351 const Type *Ty,
352 Value *V) {
353 const Type *ElTy = PTy->getElementType();
354 SmallVector<Value *, 4> GepIndices;
Dan Gohman0bba49c2009-07-07 17:06:11 +0000355 SmallVector<const SCEV *, 8> Ops(op_begin, op_end);
Dan Gohman5be18e82009-05-19 02:15:55 +0000356 bool AnyNonZeroIndices = false;
Dan Gohman5be18e82009-05-19 02:15:55 +0000357
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000358 // Split AddRecs up into parts as either of the parts may be usable
359 // without the other.
360 SplitAddRecs(Ops, Ty, SE);
361
Bob Wilsoneb356992009-12-04 01:33:04 +0000362 // Descend down the pointer's type and attempt to convert the other
Dan Gohman5be18e82009-05-19 02:15:55 +0000363 // operands into GEP indices, at each level. The first index in a GEP
364 // indexes into the array implied by the pointer operand; the rest of
365 // the indices index into the element or field type selected by the
366 // preceding index.
367 for (;;) {
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000368 const SCEV *ElSize = SE.getAllocSizeExpr(ElTy);
369 // If the scale size is not 0, attempt to factor out a scale for
370 // array indexing.
Dan Gohman0bba49c2009-07-07 17:06:11 +0000371 SmallVector<const SCEV *, 8> ScaledOps;
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000372 if (ElTy->isSized() && !ElSize->isZero()) {
373 SmallVector<const SCEV *, 8> NewOps;
374 for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
Dan Gohman0bba49c2009-07-07 17:06:11 +0000375 const SCEV *Op = Ops[i];
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000376 const SCEV *Remainder = SE.getIntegerSCEV(0, Ty);
377 if (FactorOutConstant(Op, Remainder, ElSize, SE, SE.TD)) {
378 // Op now has ElSize factored out.
379 ScaledOps.push_back(Op);
380 if (!Remainder->isZero())
381 NewOps.push_back(Remainder);
382 AnyNonZeroIndices = true;
383 } else {
384 // The operand was not divisible, so add it to the list of operands
385 // we'll scan next iteration.
386 NewOps.push_back(Ops[i]);
Dan Gohman5be18e82009-05-19 02:15:55 +0000387 }
388 }
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000389 // If we made any changes, update Ops.
390 if (!ScaledOps.empty()) {
391 Ops = NewOps;
392 SimplifyAddOperands(Ops, Ty, SE);
393 }
Dan Gohman5be18e82009-05-19 02:15:55 +0000394 }
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000395
396 // Record the scaled array index for this level of the type. If
397 // we didn't find any operands that could be factored, tentatively
398 // assume that element zero was selected (since the zero offset
399 // would obviously be folded away).
Dan Gohman5be18e82009-05-19 02:15:55 +0000400 Value *Scaled = ScaledOps.empty() ?
Owen Andersona7235ea2009-07-31 20:28:14 +0000401 Constant::getNullValue(Ty) :
Dan Gohman5be18e82009-05-19 02:15:55 +0000402 expandCodeFor(SE.getAddExpr(ScaledOps), Ty);
403 GepIndices.push_back(Scaled);
404
405 // Collect struct field index operands.
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000406 while (const StructType *STy = dyn_cast<StructType>(ElTy)) {
407 bool FoundFieldNo = false;
408 // An empty struct has no fields.
409 if (STy->getNumElements() == 0) break;
410 if (SE.TD) {
411 // With TargetData, field offsets are known. See if a constant offset
412 // falls within any of the struct fields.
413 if (Ops.empty()) break;
Dan Gohman5be18e82009-05-19 02:15:55 +0000414 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(Ops[0]))
415 if (SE.getTypeSizeInBits(C->getType()) <= 64) {
416 const StructLayout &SL = *SE.TD->getStructLayout(STy);
417 uint64_t FullOffset = C->getValue()->getZExtValue();
418 if (FullOffset < SL.getSizeInBytes()) {
419 unsigned ElIdx = SL.getElementContainingOffset(FullOffset);
Owen Anderson1d0be152009-08-13 21:58:54 +0000420 GepIndices.push_back(
421 ConstantInt::get(Type::getInt32Ty(Ty->getContext()), ElIdx));
Dan Gohman5be18e82009-05-19 02:15:55 +0000422 ElTy = STy->getTypeAtIndex(ElIdx);
423 Ops[0] =
Dan Gohman6de29f82009-06-15 22:12:54 +0000424 SE.getConstant(Ty, FullOffset - SL.getElementOffset(ElIdx));
Dan Gohman5be18e82009-05-19 02:15:55 +0000425 AnyNonZeroIndices = true;
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000426 FoundFieldNo = true;
Dan Gohman5be18e82009-05-19 02:15:55 +0000427 }
428 }
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000429 } else {
430 // Without TargetData, just check for a SCEVFieldOffsetExpr of the
431 // appropriate struct type.
432 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
433 if (const SCEVFieldOffsetExpr *FO =
434 dyn_cast<SCEVFieldOffsetExpr>(Ops[i]))
435 if (FO->getStructType() == STy) {
436 unsigned FieldNo = FO->getFieldNo();
437 GepIndices.push_back(
438 ConstantInt::get(Type::getInt32Ty(Ty->getContext()),
439 FieldNo));
440 ElTy = STy->getTypeAtIndex(FieldNo);
441 Ops[i] = SE.getConstant(Ty, 0);
442 AnyNonZeroIndices = true;
443 FoundFieldNo = true;
444 break;
445 }
Dan Gohman5be18e82009-05-19 02:15:55 +0000446 }
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000447 // If no struct field offsets were found, tentatively assume that
448 // field zero was selected (since the zero offset would obviously
449 // be folded away).
450 if (!FoundFieldNo) {
451 ElTy = STy->getTypeAtIndex(0u);
452 GepIndices.push_back(
453 Constant::getNullValue(Type::getInt32Ty(Ty->getContext())));
454 }
Dan Gohman5be18e82009-05-19 02:15:55 +0000455 }
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000456
457 if (const ArrayType *ATy = dyn_cast<ArrayType>(ElTy))
458 ElTy = ATy->getElementType();
459 else
460 break;
Dan Gohman5be18e82009-05-19 02:15:55 +0000461 }
462
463 // If none of the operands were convertable to proper GEP indices, cast
464 // the base to i8* and do an ugly getelementptr with that. It's still
465 // better than ptrtoint+arithmetic+inttoptr at least.
466 if (!AnyNonZeroIndices) {
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000467 // Cast the base to i8*.
Dan Gohman5be18e82009-05-19 02:15:55 +0000468 V = InsertNoopCastOfTo(V,
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000469 Type::getInt8PtrTy(Ty->getContext(), PTy->getAddressSpace()));
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000470
471 // Expand the operands for a plain byte offset.
Dan Gohman92fcdca2009-06-09 17:18:38 +0000472 Value *Idx = expandCodeFor(SE.getAddExpr(Ops), Ty);
Dan Gohman5be18e82009-05-19 02:15:55 +0000473
474 // Fold a GEP with constant operands.
475 if (Constant *CLHS = dyn_cast<Constant>(V))
476 if (Constant *CRHS = dyn_cast<Constant>(Idx))
Owen Andersonbaf3c402009-07-29 18:55:55 +0000477 return ConstantExpr::getGetElementPtr(CLHS, &CRHS, 1);
Dan Gohman5be18e82009-05-19 02:15:55 +0000478
479 // Do a quick scan to see if we have this GEP nearby. If so, reuse it.
480 unsigned ScanLimit = 6;
Dan Gohman267a3852009-06-27 21:18:18 +0000481 BasicBlock::iterator BlockBegin = Builder.GetInsertBlock()->begin();
482 // Scanning starts from the last instruction before the insertion point.
483 BasicBlock::iterator IP = Builder.GetInsertPoint();
484 if (IP != BlockBegin) {
Dan Gohman5be18e82009-05-19 02:15:55 +0000485 --IP;
486 for (; ScanLimit; --IP, --ScanLimit) {
487 if (IP->getOpcode() == Instruction::GetElementPtr &&
488 IP->getOperand(0) == V && IP->getOperand(1) == Idx)
489 return IP;
490 if (IP == BlockBegin) break;
491 }
492 }
493
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000494 // Emit a GEP.
495 Value *GEP = Builder.CreateGEP(V, Idx, "uglygep");
Dan Gohmana10756e2010-01-21 02:09:26 +0000496 rememberInstruction(GEP);
Dan Gohman5be18e82009-05-19 02:15:55 +0000497 return GEP;
498 }
499
Dan Gohmand6aa02d2009-07-28 01:40:03 +0000500 // Insert a pretty getelementptr. Note that this GEP is not marked inbounds,
501 // because ScalarEvolution may have changed the address arithmetic to
502 // compute a value which is beyond the end of the allocated object.
Dan Gohmana10756e2010-01-21 02:09:26 +0000503 Value *Casted = V;
504 if (V->getType() != PTy)
505 Casted = InsertNoopCastOfTo(Casted, PTy);
506 Value *GEP = Builder.CreateGEP(Casted,
Dan Gohman267a3852009-06-27 21:18:18 +0000507 GepIndices.begin(),
508 GepIndices.end(),
509 "scevgep");
Dan Gohman5be18e82009-05-19 02:15:55 +0000510 Ops.push_back(SE.getUnknown(GEP));
Dan Gohmana10756e2010-01-21 02:09:26 +0000511 rememberInstruction(GEP);
Dan Gohman5be18e82009-05-19 02:15:55 +0000512 return expand(SE.getAddExpr(Ops));
513}
514
Dan Gohmana10756e2010-01-21 02:09:26 +0000515/// isNonConstantNegative - Return true if the specified scev is negated, but
516/// not a constant.
517static bool isNonConstantNegative(const SCEV *F) {
518 const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(F);
519 if (!Mul) return false;
520
521 // If there is a constant factor, it will be first.
522 const SCEVConstant *SC = dyn_cast<SCEVConstant>(Mul->getOperand(0));
523 if (!SC) return false;
524
525 // Return true if the value is negative, this matches things like (-42 * V).
526 return SC->getValue()->getValue().isNegative();
527}
528
Dan Gohman890f92b2009-04-18 17:56:28 +0000529Value *SCEVExpander::visitAddExpr(const SCEVAddExpr *S) {
Dan Gohmanc70c3772009-09-26 16:11:57 +0000530 int NumOperands = S->getNumOperands();
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000531 const Type *Ty = SE.getEffectiveSCEVType(S->getType());
Dan Gohmanc70c3772009-09-26 16:11:57 +0000532
533 // Find the index of an operand to start with. Choose the operand with
534 // pointer type, if there is one, or the last operand otherwise.
535 int PIdx = 0;
536 for (; PIdx != NumOperands - 1; ++PIdx)
537 if (isa<PointerType>(S->getOperand(PIdx)->getType())) break;
538
539 // Expand code for the operand that we chose.
540 Value *V = expand(S->getOperand(PIdx));
Dan Gohman5be18e82009-05-19 02:15:55 +0000541
Dan Gohman453aa4f2009-05-24 18:06:31 +0000542 // Turn things like ptrtoint+arithmetic+inttoptr into GEP. See the
543 // comments on expandAddToGEP for details.
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000544 if (const PointerType *PTy = dyn_cast<PointerType>(V->getType())) {
Dan Gohmanc70c3772009-09-26 16:11:57 +0000545 // Take the operand at PIdx out of the list.
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000546 const SmallVectorImpl<const SCEV *> &Ops = S->getOperands();
Dan Gohmanc70c3772009-09-26 16:11:57 +0000547 SmallVector<const SCEV *, 8> NewOps;
548 NewOps.insert(NewOps.end(), Ops.begin(), Ops.begin() + PIdx);
549 NewOps.insert(NewOps.end(), Ops.begin() + PIdx + 1, Ops.end());
550 // Make a GEP.
551 return expandAddToGEP(NewOps.begin(), NewOps.end(), PTy, Ty, V);
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000552 }
Dan Gohman5be18e82009-05-19 02:15:55 +0000553
Dan Gohmanc70c3772009-09-26 16:11:57 +0000554 // Otherwise, we'll expand the rest of the SCEVAddExpr as plain integer
555 // arithmetic.
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000556 V = InsertNoopCastOfTo(V, Ty);
Dan Gohmane24fa642008-06-18 16:37:11 +0000557
558 // Emit a bunch of add instructions
Dan Gohmanc70c3772009-09-26 16:11:57 +0000559 for (int i = NumOperands-1; i >= 0; --i) {
560 if (i == PIdx) continue;
Dan Gohmana10756e2010-01-21 02:09:26 +0000561 const SCEV *Op = S->getOperand(i);
562 if (isNonConstantNegative(Op)) {
563 Value *W = expandCodeFor(SE.getNegativeSCEV(Op), Ty);
564 V = InsertBinop(Instruction::Sub, V, W);
565 } else {
566 Value *W = expandCodeFor(Op, Ty);
567 V = InsertBinop(Instruction::Add, V, W);
568 }
Dan Gohman2d1be872009-04-16 03:18:22 +0000569 }
Dan Gohmane24fa642008-06-18 16:37:11 +0000570 return V;
571}
Dan Gohman5be18e82009-05-19 02:15:55 +0000572
Dan Gohman890f92b2009-04-18 17:56:28 +0000573Value *SCEVExpander::visitMulExpr(const SCEVMulExpr *S) {
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000574 const Type *Ty = SE.getEffectiveSCEVType(S->getType());
Nate Begeman36f891b2005-07-30 00:12:19 +0000575 int FirstOp = 0; // Set if we should emit a subtract.
Dan Gohman890f92b2009-04-18 17:56:28 +0000576 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(S->getOperand(0)))
Nate Begeman36f891b2005-07-30 00:12:19 +0000577 if (SC->getValue()->isAllOnesValue())
578 FirstOp = 1;
579
580 int i = S->getNumOperands()-2;
Dan Gohman92fcdca2009-06-09 17:18:38 +0000581 Value *V = expandCodeFor(S->getOperand(i+1), Ty);
Nate Begeman36f891b2005-07-30 00:12:19 +0000582
583 // Emit a bunch of multiply instructions
Dan Gohman2d1be872009-04-16 03:18:22 +0000584 for (; i >= FirstOp; --i) {
Dan Gohman92fcdca2009-06-09 17:18:38 +0000585 Value *W = expandCodeFor(S->getOperand(i), Ty);
Dan Gohman267a3852009-06-27 21:18:18 +0000586 V = InsertBinop(Instruction::Mul, V, W);
Dan Gohman2d1be872009-04-16 03:18:22 +0000587 }
588
Nate Begeman36f891b2005-07-30 00:12:19 +0000589 // -1 * ... ---> 0 - ...
590 if (FirstOp == 1)
Owen Andersona7235ea2009-07-31 20:28:14 +0000591 V = InsertBinop(Instruction::Sub, Constant::getNullValue(Ty), V);
Nate Begeman36f891b2005-07-30 00:12:19 +0000592 return V;
593}
594
Dan Gohman890f92b2009-04-18 17:56:28 +0000595Value *SCEVExpander::visitUDivExpr(const SCEVUDivExpr *S) {
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000596 const Type *Ty = SE.getEffectiveSCEVType(S->getType());
Dan Gohman2d1be872009-04-16 03:18:22 +0000597
Dan Gohman92fcdca2009-06-09 17:18:38 +0000598 Value *LHS = expandCodeFor(S->getLHS(), Ty);
Dan Gohman890f92b2009-04-18 17:56:28 +0000599 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(S->getRHS())) {
Nick Lewycky6177fd42008-07-08 05:05:37 +0000600 const APInt &RHS = SC->getValue()->getValue();
601 if (RHS.isPowerOf2())
602 return InsertBinop(Instruction::LShr, LHS,
Owen Andersoneed707b2009-07-24 23:12:02 +0000603 ConstantInt::get(Ty, RHS.logBase2()));
Nick Lewycky6177fd42008-07-08 05:05:37 +0000604 }
605
Dan Gohman92fcdca2009-06-09 17:18:38 +0000606 Value *RHS = expandCodeFor(S->getRHS(), Ty);
Dan Gohman267a3852009-06-27 21:18:18 +0000607 return InsertBinop(Instruction::UDiv, LHS, RHS);
Nick Lewycky6177fd42008-07-08 05:05:37 +0000608}
609
Dan Gohman453aa4f2009-05-24 18:06:31 +0000610/// Move parts of Base into Rest to leave Base with the minimal
611/// expression that provides a pointer operand suitable for a
612/// GEP expansion.
Dan Gohman0bba49c2009-07-07 17:06:11 +0000613static void ExposePointerBase(const SCEV *&Base, const SCEV *&Rest,
Dan Gohman453aa4f2009-05-24 18:06:31 +0000614 ScalarEvolution &SE) {
615 while (const SCEVAddRecExpr *A = dyn_cast<SCEVAddRecExpr>(Base)) {
616 Base = A->getStart();
617 Rest = SE.getAddExpr(Rest,
618 SE.getAddRecExpr(SE.getIntegerSCEV(0, A->getType()),
619 A->getStepRecurrence(SE),
620 A->getLoop()));
621 }
622 if (const SCEVAddExpr *A = dyn_cast<SCEVAddExpr>(Base)) {
623 Base = A->getOperand(A->getNumOperands()-1);
Dan Gohman0bba49c2009-07-07 17:06:11 +0000624 SmallVector<const SCEV *, 8> NewAddOps(A->op_begin(), A->op_end());
Dan Gohman453aa4f2009-05-24 18:06:31 +0000625 NewAddOps.back() = Rest;
626 Rest = SE.getAddExpr(NewAddOps);
627 ExposePointerBase(Base, Rest, SE);
628 }
629}
630
Dan Gohmana10756e2010-01-21 02:09:26 +0000631/// getAddRecExprPHILiterally - Helper for expandAddRecExprLiterally. Expand
632/// the base addrec, which is the addrec without any non-loop-dominating
633/// values, and return the PHI.
634PHINode *
635SCEVExpander::getAddRecExprPHILiterally(const SCEVAddRecExpr *Normalized,
636 const Loop *L,
637 const Type *ExpandTy,
638 const Type *IntTy) {
639 // Reuse a previously-inserted PHI, if present.
640 for (BasicBlock::iterator I = L->getHeader()->begin();
641 PHINode *PN = dyn_cast<PHINode>(I); ++I)
642 if (isInsertedInstruction(PN) && SE.getSCEV(PN) == Normalized)
643 return PN;
644
645 // Save the original insertion point so we can restore it when we're done.
646 BasicBlock *SaveInsertBB = Builder.GetInsertBlock();
647 BasicBlock::iterator SaveInsertPt = Builder.GetInsertPoint();
648
649 // Expand code for the start value.
650 Value *StartV = expandCodeFor(Normalized->getStart(), ExpandTy,
651 L->getHeader()->begin());
652
653 // Expand code for the step value. Insert instructions right before the
654 // terminator corresponding to the back-edge. Do this before creating the PHI
655 // so that PHI reuse code doesn't see an incomplete PHI. If the stride is
656 // negative, insert a sub instead of an add for the increment (unless it's a
657 // constant, because subtracts of constants are canonicalized to adds).
658 const SCEV *Step = Normalized->getStepRecurrence(SE);
659 bool isPointer = isa<PointerType>(ExpandTy);
660 bool isNegative = !isPointer && isNonConstantNegative(Step);
661 if (isNegative)
662 Step = SE.getNegativeSCEV(Step);
663 Value *StepV = expandCodeFor(Step, IntTy, L->getHeader()->begin());
664
665 // Create the PHI.
666 Builder.SetInsertPoint(L->getHeader(), L->getHeader()->begin());
667 PHINode *PN = Builder.CreatePHI(ExpandTy, "lsr.iv");
668 rememberInstruction(PN);
669
670 // Create the step instructions and populate the PHI.
671 BasicBlock *Header = L->getHeader();
672 for (pred_iterator HPI = pred_begin(Header), HPE = pred_end(Header);
673 HPI != HPE; ++HPI) {
674 BasicBlock *Pred = *HPI;
675
676 // Add a start value.
677 if (!L->contains(Pred)) {
678 PN->addIncoming(StartV, Pred);
679 continue;
680 }
681
682 // Create a step value and add it to the PHI. If IVIncInsertLoop is
683 // non-null and equal to the addrec's loop, insert the instructions
684 // at IVIncInsertPos.
685 Instruction *InsertPos = L == IVIncInsertLoop ?
686 IVIncInsertPos : Pred->getTerminator();
687 Builder.SetInsertPoint(InsertPos->getParent(), InsertPos);
688 Value *IncV;
689 // If the PHI is a pointer, use a GEP, otherwise use an add or sub.
690 if (isPointer) {
691 const PointerType *GEPPtrTy = cast<PointerType>(ExpandTy);
692 // If the step isn't constant, don't use an implicitly scaled GEP, because
693 // that would require a multiply inside the loop.
694 if (!isa<ConstantInt>(StepV))
695 GEPPtrTy = PointerType::get(Type::getInt1Ty(SE.getContext()),
696 GEPPtrTy->getAddressSpace());
697 const SCEV *const StepArray[1] = { SE.getSCEV(StepV) };
698 IncV = expandAddToGEP(StepArray, StepArray+1, GEPPtrTy, IntTy, PN);
699 if (IncV->getType() != PN->getType()) {
700 IncV = Builder.CreateBitCast(IncV, PN->getType(), "tmp");
701 rememberInstruction(IncV);
702 }
703 } else {
704 IncV = isNegative ?
705 Builder.CreateSub(PN, StepV, "lsr.iv.next") :
706 Builder.CreateAdd(PN, StepV, "lsr.iv.next");
707 rememberInstruction(IncV);
708 }
709 PN->addIncoming(IncV, Pred);
710 }
711
712 // Restore the original insert point.
713 if (SaveInsertBB)
714 Builder.SetInsertPoint(SaveInsertBB, SaveInsertPt);
715
716 // Remember this PHI, even in post-inc mode.
717 InsertedValues.insert(PN);
718
719 return PN;
720}
721
722Value *SCEVExpander::expandAddRecExprLiterally(const SCEVAddRecExpr *S) {
723 const Type *STy = S->getType();
724 const Type *IntTy = SE.getEffectiveSCEVType(STy);
725 const Loop *L = S->getLoop();
726
727 // Determine a normalized form of this expression, which is the expression
728 // before any post-inc adjustment is made.
729 const SCEVAddRecExpr *Normalized = S;
730 if (L == PostIncLoop) {
731 const SCEV *Step = S->getStepRecurrence(SE);
732 Normalized = cast<SCEVAddRecExpr>(SE.getMinusSCEV(S, Step));
733 }
734
735 // Strip off any non-loop-dominating component from the addrec start.
736 const SCEV *Start = Normalized->getStart();
737 const SCEV *PostLoopOffset = 0;
738 if (!Start->properlyDominates(L->getHeader(), SE.DT)) {
739 PostLoopOffset = Start;
740 Start = SE.getIntegerSCEV(0, Normalized->getType());
741 Normalized =
742 cast<SCEVAddRecExpr>(SE.getAddRecExpr(Start,
743 Normalized->getStepRecurrence(SE),
744 Normalized->getLoop()));
745 }
746
747 // Strip off any non-loop-dominating component from the addrec step.
748 const SCEV *Step = Normalized->getStepRecurrence(SE);
749 const SCEV *PostLoopScale = 0;
750 if (!Step->hasComputableLoopEvolution(L) &&
751 !Step->dominates(L->getHeader(), SE.DT)) {
752 PostLoopScale = Step;
753 Step = SE.getIntegerSCEV(1, Normalized->getType());
754 Normalized =
755 cast<SCEVAddRecExpr>(SE.getAddRecExpr(Start, Step,
756 Normalized->getLoop()));
757 }
758
759 // Expand the core addrec. If we need post-loop scaling, force it to
760 // expand to an integer type to avoid the need for additional casting.
761 const Type *ExpandTy = PostLoopScale ? IntTy : STy;
762 PHINode *PN = getAddRecExprPHILiterally(Normalized, L, ExpandTy, IntTy);
763
764 // Accomodate post-inc mode, if necessary.
765 Value *Result;
766 if (L != PostIncLoop)
767 Result = PN;
768 else {
769 // In PostInc mode, use the post-incremented value.
770 BasicBlock *LatchBlock = L->getLoopLatch();
771 assert(LatchBlock && "PostInc mode requires a unique loop latch!");
772 Result = PN->getIncomingValueForBlock(LatchBlock);
773 }
774
775 // Re-apply any non-loop-dominating scale.
776 if (PostLoopScale) {
777 Result = Builder.CreateMul(Result,
778 expandCodeFor(PostLoopScale, IntTy));
779 rememberInstruction(Result);
780 }
781
782 // Re-apply any non-loop-dominating offset.
783 if (PostLoopOffset) {
784 if (const PointerType *PTy = dyn_cast<PointerType>(ExpandTy)) {
785 const SCEV *const OffsetArray[1] = { PostLoopOffset };
786 Result = expandAddToGEP(OffsetArray, OffsetArray+1, PTy, IntTy, Result);
787 } else {
788 Result = Builder.CreateAdd(Result,
789 expandCodeFor(PostLoopOffset, IntTy));
790 rememberInstruction(Result);
791 }
792 }
793
794 return Result;
795}
796
Dan Gohman890f92b2009-04-18 17:56:28 +0000797Value *SCEVExpander::visitAddRecExpr(const SCEVAddRecExpr *S) {
Dan Gohmana10756e2010-01-21 02:09:26 +0000798 if (!CanonicalMode) return expandAddRecExprLiterally(S);
799
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000800 const Type *Ty = SE.getEffectiveSCEVType(S->getType());
Nate Begeman36f891b2005-07-30 00:12:19 +0000801 const Loop *L = S->getLoop();
Nate Begeman36f891b2005-07-30 00:12:19 +0000802
Dan Gohman4d8414f2009-06-13 16:25:49 +0000803 // First check for an existing canonical IV in a suitable type.
804 PHINode *CanonicalIV = 0;
805 if (PHINode *PN = L->getCanonicalInductionVariable())
806 if (SE.isSCEVable(PN->getType()) &&
807 isa<IntegerType>(SE.getEffectiveSCEVType(PN->getType())) &&
808 SE.getTypeSizeInBits(PN->getType()) >= SE.getTypeSizeInBits(Ty))
809 CanonicalIV = PN;
810
811 // Rewrite an AddRec in terms of the canonical induction variable, if
812 // its type is more narrow.
813 if (CanonicalIV &&
814 SE.getTypeSizeInBits(CanonicalIV->getType()) >
815 SE.getTypeSizeInBits(Ty)) {
Dan Gohmanf3f1be62009-09-28 21:01:47 +0000816 const SmallVectorImpl<const SCEV *> &Ops = S->getOperands();
817 SmallVector<const SCEV *, 4> NewOps(Ops.size());
818 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
819 NewOps[i] = SE.getAnyExtendExpr(Ops[i], CanonicalIV->getType());
820 Value *V = expand(SE.getAddRecExpr(NewOps, S->getLoop()));
Dan Gohman267a3852009-06-27 21:18:18 +0000821 BasicBlock *SaveInsertBB = Builder.GetInsertBlock();
822 BasicBlock::iterator SaveInsertPt = Builder.GetInsertPoint();
Dan Gohman4d8414f2009-06-13 16:25:49 +0000823 BasicBlock::iterator NewInsertPt =
Chris Lattner7896c9f2009-12-03 00:50:42 +0000824 llvm::next(BasicBlock::iterator(cast<Instruction>(V)));
Dan Gohman4d8414f2009-06-13 16:25:49 +0000825 while (isa<PHINode>(NewInsertPt)) ++NewInsertPt;
826 V = expandCodeFor(SE.getTruncateExpr(SE.getUnknown(V), Ty), 0,
827 NewInsertPt);
Dan Gohman267a3852009-06-27 21:18:18 +0000828 Builder.SetInsertPoint(SaveInsertBB, SaveInsertPt);
Dan Gohman4d8414f2009-06-13 16:25:49 +0000829 return V;
830 }
831
Nate Begeman36f891b2005-07-30 00:12:19 +0000832 // {X,+,F} --> X + {0,+,F}
Dan Gohmancfeb6a42008-06-18 16:23:07 +0000833 if (!S->getStart()->isZero()) {
Dan Gohman0bba49c2009-07-07 17:06:11 +0000834 const SmallVectorImpl<const SCEV *> &SOperands = S->getOperands();
835 SmallVector<const SCEV *, 4> NewOps(SOperands.begin(), SOperands.end());
Dan Gohman246b2562007-10-22 18:31:58 +0000836 NewOps[0] = SE.getIntegerSCEV(0, Ty);
Dan Gohman0bba49c2009-07-07 17:06:11 +0000837 const SCEV *Rest = SE.getAddRecExpr(NewOps, L);
Dan Gohman453aa4f2009-05-24 18:06:31 +0000838
839 // Turn things like ptrtoint+arithmetic+inttoptr into GEP. See the
840 // comments on expandAddToGEP for details.
Dan Gohmanc40f17b2009-08-18 16:46:41 +0000841 const SCEV *Base = S->getStart();
842 const SCEV *RestArray[1] = { Rest };
843 // Dig into the expression to find the pointer base for a GEP.
844 ExposePointerBase(Base, RestArray[0], SE);
845 // If we found a pointer, expand the AddRec with a GEP.
846 if (const PointerType *PTy = dyn_cast<PointerType>(Base->getType())) {
847 // Make sure the Base isn't something exotic, such as a multiplied
848 // or divided pointer value. In those cases, the result type isn't
849 // actually a pointer type.
850 if (!isa<SCEVMulExpr>(Base) && !isa<SCEVUDivExpr>(Base)) {
851 Value *StartV = expand(Base);
852 assert(StartV->getType() == PTy && "Pointer type mismatch for GEP!");
853 return expandAddToGEP(RestArray, RestArray+1, PTy, Ty, StartV);
Dan Gohman453aa4f2009-05-24 18:06:31 +0000854 }
855 }
856
Dan Gohman40a5a1b2009-06-24 01:18:18 +0000857 // Just do a normal add. Pre-expand the operands to suppress folding.
858 return expand(SE.getAddExpr(SE.getUnknown(expand(S->getStart())),
859 SE.getUnknown(expand(Rest))));
Nate Begeman36f891b2005-07-30 00:12:19 +0000860 }
861
862 // {0,+,1} --> Insert a canonical induction variable into the loop!
Dan Gohman17f19722008-06-22 19:23:09 +0000863 if (S->isAffine() &&
Dan Gohman246b2562007-10-22 18:31:58 +0000864 S->getOperand(1) == SE.getIntegerSCEV(1, Ty)) {
Dan Gohman4d8414f2009-06-13 16:25:49 +0000865 // If there's a canonical IV, just use it.
866 if (CanonicalIV) {
867 assert(Ty == SE.getEffectiveSCEVType(CanonicalIV->getType()) &&
868 "IVs with types different from the canonical IV should "
869 "already have been handled!");
870 return CanonicalIV;
871 }
872
Nate Begeman36f891b2005-07-30 00:12:19 +0000873 // Create and insert the PHI node for the induction variable in the
874 // specified loop.
875 BasicBlock *Header = L->getHeader();
Gabor Greif051a9502008-04-06 20:25:17 +0000876 PHINode *PN = PHINode::Create(Ty, "indvar", Header->begin());
Dan Gohmana10756e2010-01-21 02:09:26 +0000877 rememberInstruction(PN);
Nate Begeman36f891b2005-07-30 00:12:19 +0000878
Owen Andersoneed707b2009-07-24 23:12:02 +0000879 Constant *One = ConstantInt::get(Ty, 1);
Dan Gohman83d57742009-09-27 17:46:40 +0000880 for (pred_iterator HPI = pred_begin(Header), HPE = pred_end(Header);
881 HPI != HPE; ++HPI)
882 if (L->contains(*HPI)) {
Dan Gohman3abf9052010-01-19 22:26:02 +0000883 // Insert a unit add instruction right before the terminator
884 // corresponding to the back-edge.
Dan Gohman83d57742009-09-27 17:46:40 +0000885 Instruction *Add = BinaryOperator::CreateAdd(PN, One, "indvar.next",
886 (*HPI)->getTerminator());
Dan Gohmana10756e2010-01-21 02:09:26 +0000887 rememberInstruction(Add);
Dan Gohman83d57742009-09-27 17:46:40 +0000888 PN->addIncoming(Add, *HPI);
889 } else {
890 PN->addIncoming(Constant::getNullValue(Ty), *HPI);
891 }
Nate Begeman36f891b2005-07-30 00:12:19 +0000892 }
893
Dan Gohman4d8414f2009-06-13 16:25:49 +0000894 // {0,+,F} --> {0,+,1} * F
Nate Begeman36f891b2005-07-30 00:12:19 +0000895 // Get the canonical induction variable I for this loop.
Dan Gohman4d8414f2009-06-13 16:25:49 +0000896 Value *I = CanonicalIV ?
897 CanonicalIV :
898 getOrInsertCanonicalInductionVariable(L, Ty);
Nate Begeman36f891b2005-07-30 00:12:19 +0000899
Chris Lattnerdf14a042005-10-30 06:24:33 +0000900 // If this is a simple linear addrec, emit it now as a special case.
Dan Gohman40a5a1b2009-06-24 01:18:18 +0000901 if (S->isAffine()) // {0,+,F} --> i*F
902 return
903 expand(SE.getTruncateOrNoop(
904 SE.getMulExpr(SE.getUnknown(I),
905 SE.getNoopOrAnyExtend(S->getOperand(1),
906 I->getType())),
907 Ty));
Nate Begeman36f891b2005-07-30 00:12:19 +0000908
909 // If this is a chain of recurrences, turn it into a closed form, using the
910 // folders, then expandCodeFor the closed form. This allows the folders to
911 // simplify the expression without having to build a bunch of special code
912 // into this folder.
Dan Gohman0bba49c2009-07-07 17:06:11 +0000913 const SCEV *IH = SE.getUnknown(I); // Get I as a "symbolic" SCEV.
Nate Begeman36f891b2005-07-30 00:12:19 +0000914
Dan Gohman4d8414f2009-06-13 16:25:49 +0000915 // Promote S up to the canonical IV type, if the cast is foldable.
Dan Gohman0bba49c2009-07-07 17:06:11 +0000916 const SCEV *NewS = S;
917 const SCEV *Ext = SE.getNoopOrAnyExtend(S, I->getType());
Dan Gohman4d8414f2009-06-13 16:25:49 +0000918 if (isa<SCEVAddRecExpr>(Ext))
919 NewS = Ext;
920
Dan Gohman0bba49c2009-07-07 17:06:11 +0000921 const SCEV *V = cast<SCEVAddRecExpr>(NewS)->evaluateAtIteration(IH, SE);
Bill Wendlinge8156192006-12-07 01:30:32 +0000922 //cerr << "Evaluated: " << *this << "\n to: " << *V << "\n";
Nate Begeman36f891b2005-07-30 00:12:19 +0000923
Dan Gohman4d8414f2009-06-13 16:25:49 +0000924 // Truncate the result down to the original type, if needed.
Dan Gohman0bba49c2009-07-07 17:06:11 +0000925 const SCEV *T = SE.getTruncateOrNoop(V, Ty);
Dan Gohman469f3cd2009-06-22 22:08:45 +0000926 return expand(T);
Nate Begeman36f891b2005-07-30 00:12:19 +0000927}
Anton Korobeynikov96fea332007-08-20 21:17:26 +0000928
Dan Gohman890f92b2009-04-18 17:56:28 +0000929Value *SCEVExpander::visitTruncateExpr(const SCEVTruncateExpr *S) {
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000930 const Type *Ty = SE.getEffectiveSCEVType(S->getType());
Dan Gohman92fcdca2009-06-09 17:18:38 +0000931 Value *V = expandCodeFor(S->getOperand(),
932 SE.getEffectiveSCEVType(S->getOperand()->getType()));
Dan Gohman267a3852009-06-27 21:18:18 +0000933 Value *I = Builder.CreateTrunc(V, Ty, "tmp");
Dan Gohmana10756e2010-01-21 02:09:26 +0000934 rememberInstruction(I);
Dan Gohmancf5ab822009-05-01 17:13:31 +0000935 return I;
Dan Gohman11f6d3b2008-06-22 19:09:18 +0000936}
937
Dan Gohman890f92b2009-04-18 17:56:28 +0000938Value *SCEVExpander::visitZeroExtendExpr(const SCEVZeroExtendExpr *S) {
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000939 const Type *Ty = SE.getEffectiveSCEVType(S->getType());
Dan Gohman92fcdca2009-06-09 17:18:38 +0000940 Value *V = expandCodeFor(S->getOperand(),
941 SE.getEffectiveSCEVType(S->getOperand()->getType()));
Dan Gohman267a3852009-06-27 21:18:18 +0000942 Value *I = Builder.CreateZExt(V, Ty, "tmp");
Dan Gohmana10756e2010-01-21 02:09:26 +0000943 rememberInstruction(I);
Dan Gohmancf5ab822009-05-01 17:13:31 +0000944 return I;
Dan Gohman11f6d3b2008-06-22 19:09:18 +0000945}
946
Dan Gohman890f92b2009-04-18 17:56:28 +0000947Value *SCEVExpander::visitSignExtendExpr(const SCEVSignExtendExpr *S) {
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000948 const Type *Ty = SE.getEffectiveSCEVType(S->getType());
Dan Gohman92fcdca2009-06-09 17:18:38 +0000949 Value *V = expandCodeFor(S->getOperand(),
950 SE.getEffectiveSCEVType(S->getOperand()->getType()));
Dan Gohman267a3852009-06-27 21:18:18 +0000951 Value *I = Builder.CreateSExt(V, Ty, "tmp");
Dan Gohmana10756e2010-01-21 02:09:26 +0000952 rememberInstruction(I);
Dan Gohmancf5ab822009-05-01 17:13:31 +0000953 return I;
Dan Gohman11f6d3b2008-06-22 19:09:18 +0000954}
955
Dan Gohman890f92b2009-04-18 17:56:28 +0000956Value *SCEVExpander::visitSMaxExpr(const SCEVSMaxExpr *S) {
Dan Gohman0196dc52009-07-14 20:57:04 +0000957 Value *LHS = expand(S->getOperand(S->getNumOperands()-1));
958 const Type *Ty = LHS->getType();
959 for (int i = S->getNumOperands()-2; i >= 0; --i) {
960 // In the case of mixed integer and pointer types, do the
961 // rest of the comparisons as integer.
962 if (S->getOperand(i)->getType() != Ty) {
963 Ty = SE.getEffectiveSCEVType(Ty);
964 LHS = InsertNoopCastOfTo(LHS, Ty);
965 }
Dan Gohman92fcdca2009-06-09 17:18:38 +0000966 Value *RHS = expandCodeFor(S->getOperand(i), Ty);
Dan Gohman267a3852009-06-27 21:18:18 +0000967 Value *ICmp = Builder.CreateICmpSGT(LHS, RHS, "tmp");
Dan Gohmana10756e2010-01-21 02:09:26 +0000968 rememberInstruction(ICmp);
Dan Gohman267a3852009-06-27 21:18:18 +0000969 Value *Sel = Builder.CreateSelect(ICmp, LHS, RHS, "smax");
Dan Gohmana10756e2010-01-21 02:09:26 +0000970 rememberInstruction(Sel);
Dan Gohmancf5ab822009-05-01 17:13:31 +0000971 LHS = Sel;
Nick Lewyckyc54c5612007-11-25 22:41:31 +0000972 }
Dan Gohman0196dc52009-07-14 20:57:04 +0000973 // In the case of mixed integer and pointer types, cast the
974 // final result back to the pointer type.
975 if (LHS->getType() != S->getType())
976 LHS = InsertNoopCastOfTo(LHS, S->getType());
Nick Lewyckyc54c5612007-11-25 22:41:31 +0000977 return LHS;
978}
979
Dan Gohman890f92b2009-04-18 17:56:28 +0000980Value *SCEVExpander::visitUMaxExpr(const SCEVUMaxExpr *S) {
Dan Gohman0196dc52009-07-14 20:57:04 +0000981 Value *LHS = expand(S->getOperand(S->getNumOperands()-1));
982 const Type *Ty = LHS->getType();
983 for (int i = S->getNumOperands()-2; i >= 0; --i) {
984 // In the case of mixed integer and pointer types, do the
985 // rest of the comparisons as integer.
986 if (S->getOperand(i)->getType() != Ty) {
987 Ty = SE.getEffectiveSCEVType(Ty);
988 LHS = InsertNoopCastOfTo(LHS, Ty);
989 }
Dan Gohman92fcdca2009-06-09 17:18:38 +0000990 Value *RHS = expandCodeFor(S->getOperand(i), Ty);
Dan Gohman267a3852009-06-27 21:18:18 +0000991 Value *ICmp = Builder.CreateICmpUGT(LHS, RHS, "tmp");
Dan Gohmana10756e2010-01-21 02:09:26 +0000992 rememberInstruction(ICmp);
Dan Gohman267a3852009-06-27 21:18:18 +0000993 Value *Sel = Builder.CreateSelect(ICmp, LHS, RHS, "umax");
Dan Gohmana10756e2010-01-21 02:09:26 +0000994 rememberInstruction(Sel);
Dan Gohmancf5ab822009-05-01 17:13:31 +0000995 LHS = Sel;
Nick Lewycky3e630762008-02-20 06:48:22 +0000996 }
Dan Gohman0196dc52009-07-14 20:57:04 +0000997 // In the case of mixed integer and pointer types, cast the
998 // final result back to the pointer type.
999 if (LHS->getType() != S->getType())
1000 LHS = InsertNoopCastOfTo(LHS, S->getType());
Nick Lewycky3e630762008-02-20 06:48:22 +00001001 return LHS;
1002}
1003
Dan Gohmanc40f17b2009-08-18 16:46:41 +00001004Value *SCEVExpander::visitFieldOffsetExpr(const SCEVFieldOffsetExpr *S) {
1005 return ConstantExpr::getOffsetOf(S->getStructType(), S->getFieldNo());
1006}
1007
1008Value *SCEVExpander::visitAllocSizeExpr(const SCEVAllocSizeExpr *S) {
1009 return ConstantExpr::getSizeOf(S->getAllocType());
1010}
1011
Dan Gohman0bba49c2009-07-07 17:06:11 +00001012Value *SCEVExpander::expandCodeFor(const SCEV *SH, const Type *Ty) {
Dan Gohman11f6d3b2008-06-22 19:09:18 +00001013 // Expand the code for this SCEV.
Dan Gohman2d1be872009-04-16 03:18:22 +00001014 Value *V = expand(SH);
Dan Gohman5be18e82009-05-19 02:15:55 +00001015 if (Ty) {
1016 assert(SE.getTypeSizeInBits(Ty) == SE.getTypeSizeInBits(SH->getType()) &&
1017 "non-trivial casts should be done with the SCEVs directly!");
1018 V = InsertNoopCastOfTo(V, Ty);
1019 }
1020 return V;
Dan Gohman11f6d3b2008-06-22 19:09:18 +00001021}
1022
Dan Gohman890f92b2009-04-18 17:56:28 +00001023Value *SCEVExpander::expand(const SCEV *S) {
Dan Gohman40a5a1b2009-06-24 01:18:18 +00001024 // Compute an insertion point for this SCEV object. Hoist the instructions
1025 // as far out in the loop nest as possible.
Dan Gohman267a3852009-06-27 21:18:18 +00001026 Instruction *InsertPt = Builder.GetInsertPoint();
1027 for (Loop *L = SE.LI->getLoopFor(Builder.GetInsertBlock()); ;
Dan Gohman40a5a1b2009-06-24 01:18:18 +00001028 L = L->getParentLoop())
1029 if (S->isLoopInvariant(L)) {
1030 if (!L) break;
1031 if (BasicBlock *Preheader = L->getLoopPreheader())
1032 InsertPt = Preheader->getTerminator();
1033 } else {
1034 // If the SCEV is computable at this level, insert it into the header
1035 // after the PHIs (and after any other instructions that we've inserted
1036 // there) so that it is guaranteed to dominate any user inside the loop.
1037 if (L && S->hasComputableLoopEvolution(L))
1038 InsertPt = L->getHeader()->getFirstNonPHI();
Dan Gohman267a3852009-06-27 21:18:18 +00001039 while (isInsertedInstruction(InsertPt))
Chris Lattner7896c9f2009-12-03 00:50:42 +00001040 InsertPt = llvm::next(BasicBlock::iterator(InsertPt));
Dan Gohman40a5a1b2009-06-24 01:18:18 +00001041 break;
1042 }
Dan Gohman40a5a1b2009-06-24 01:18:18 +00001043
Dan Gohman667d7872009-06-26 22:53:46 +00001044 // Check to see if we already expanded this here.
1045 std::map<std::pair<const SCEV *, Instruction *>,
1046 AssertingVH<Value> >::iterator I =
1047 InsertedExpressions.find(std::make_pair(S, InsertPt));
Dan Gohman267a3852009-06-27 21:18:18 +00001048 if (I != InsertedExpressions.end())
Dan Gohman667d7872009-06-26 22:53:46 +00001049 return I->second;
Dan Gohman267a3852009-06-27 21:18:18 +00001050
1051 BasicBlock *SaveInsertBB = Builder.GetInsertBlock();
1052 BasicBlock::iterator SaveInsertPt = Builder.GetInsertPoint();
1053 Builder.SetInsertPoint(InsertPt->getParent(), InsertPt);
Dan Gohman667d7872009-06-26 22:53:46 +00001054
1055 // Expand the expression into instructions.
Anton Korobeynikov96fea332007-08-20 21:17:26 +00001056 Value *V = visit(S);
Dan Gohman40a5a1b2009-06-24 01:18:18 +00001057
Dan Gohman667d7872009-06-26 22:53:46 +00001058 // Remember the expanded value for this SCEV at this location.
Dan Gohmana10756e2010-01-21 02:09:26 +00001059 if (!PostIncLoop)
1060 InsertedExpressions[std::make_pair(S, InsertPt)] = V;
Dan Gohman667d7872009-06-26 22:53:46 +00001061
Dan Gohman267a3852009-06-27 21:18:18 +00001062 Builder.SetInsertPoint(SaveInsertBB, SaveInsertPt);
Anton Korobeynikov96fea332007-08-20 21:17:26 +00001063 return V;
1064}
Dan Gohman1d09de32009-06-05 16:35:53 +00001065
1066/// getOrInsertCanonicalInductionVariable - This method returns the
1067/// canonical induction variable of the specified type for the specified
1068/// loop (inserting one if there is none). A canonical induction variable
1069/// starts at zero and steps by one on each iteration.
1070Value *
1071SCEVExpander::getOrInsertCanonicalInductionVariable(const Loop *L,
1072 const Type *Ty) {
1073 assert(Ty->isInteger() && "Can only insert integer induction variables!");
Dan Gohman0bba49c2009-07-07 17:06:11 +00001074 const SCEV *H = SE.getAddRecExpr(SE.getIntegerSCEV(0, Ty),
Dan Gohman40a5a1b2009-06-24 01:18:18 +00001075 SE.getIntegerSCEV(1, Ty), L);
Dan Gohman267a3852009-06-27 21:18:18 +00001076 BasicBlock *SaveInsertBB = Builder.GetInsertBlock();
1077 BasicBlock::iterator SaveInsertPt = Builder.GetInsertPoint();
Dan Gohman40a5a1b2009-06-24 01:18:18 +00001078 Value *V = expandCodeFor(H, 0, L->getHeader()->begin());
Dan Gohman267a3852009-06-27 21:18:18 +00001079 if (SaveInsertBB)
1080 Builder.SetInsertPoint(SaveInsertBB, SaveInsertPt);
Dan Gohman40a5a1b2009-06-24 01:18:18 +00001081 return V;
Dan Gohman1d09de32009-06-05 16:35:53 +00001082}