blob: 61527283f68755128f04f40f40e19f151273975d [file] [log] [blame]
Nate Begeman2bca4d92005-07-30 00:12:19 +00001//===- ScalarEvolutionExpander.cpp - Scalar Evolution Analysis --*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Begeman2bca4d92005-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 Begeman2bca4d92005-07-30 00:12:19 +000016#include "llvm/Analysis/ScalarEvolutionExpander.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000017#include "llvm/ADT/STLExtras.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000018#include "llvm/ADT/SmallSet.h"
Benjamin Kramer8dd637a2014-06-21 11:47:18 +000019#include "llvm/Analysis/InstructionSimplify.h"
Bill Wendlingf3baad32006-12-07 01:30:32 +000020#include "llvm/Analysis/LoopInfo.h"
Chandler Carruth26c59fa2013-01-07 14:41:08 +000021#include "llvm/Analysis/TargetTransformInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000022#include "llvm/IR/DataLayout.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000023#include "llvm/IR/Dominators.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000024#include "llvm/IR/IntrinsicInst.h"
25#include "llvm/IR/LLVMContext.h"
Andrew Trick7fb669a2011-10-07 23:46:21 +000026#include "llvm/Support/Debug.h"
Andrew Trick244e2c32011-07-16 00:59:39 +000027
Nate Begeman2bca4d92005-07-30 00:12:19 +000028using namespace llvm;
29
Gabor Greif8e66a422010-07-09 16:42:04 +000030/// ReuseOrCreateCast - Arrange for there to be a cast of V to Ty at IP,
Dan Gohmand2772462010-06-19 13:25:23 +000031/// reusing an existing cast if a suitable one exists, moving an existing
32/// cast if a suitable one exists but isn't in the right place, or
Gabor Greif8e66a422010-07-09 16:42:04 +000033/// creating a new one.
Chris Lattner229907c2011-07-18 04:54:35 +000034Value *SCEVExpander::ReuseOrCreateCast(Value *V, Type *Ty,
Dan Gohmand2772462010-06-19 13:25:23 +000035 Instruction::CastOps Op,
36 BasicBlock::iterator IP) {
Rafael Espindolacd06b482012-02-22 03:21:39 +000037 // This function must be called with the builder having a valid insertion
38 // point. It doesn't need to be the actual IP where the uses of the returned
39 // cast will be added, but it must dominate such IP.
Rafael Espindola09a42012012-02-27 02:13:03 +000040 // We use this precondition to produce a cast that will dominate all its
41 // uses. In particular, this is crucial for the case where the builder's
42 // insertion point *is* the point where we were asked to put the cast.
Sylvestre Ledru35521e22012-07-23 08:51:15 +000043 // Since we don't know the builder's insertion point is actually
Rafael Espindolacd06b482012-02-22 03:21:39 +000044 // where the uses will be added (only that it dominates it), we are
45 // not allowed to move it.
46 BasicBlock::iterator BIP = Builder.GetInsertPoint();
47
Craig Topper9f008862014-04-15 04:59:12 +000048 Instruction *Ret = nullptr;
Rafael Espindola82d95752012-02-18 17:22:58 +000049
Dan Gohmand2772462010-06-19 13:25:23 +000050 // Check to see if there is already a cast!
Chandler Carruthcdf47882014-03-09 03:16:01 +000051 for (User *U : V->users())
Gabor Greif3b740e92010-07-09 16:39:02 +000052 if (U->getType() == Ty)
Gabor Greif8e66a422010-07-09 16:42:04 +000053 if (CastInst *CI = dyn_cast<CastInst>(U))
Dan Gohmand2772462010-06-19 13:25:23 +000054 if (CI->getOpcode() == Op) {
Rafael Espindola337cfaf2012-02-22 03:44:46 +000055 // If the cast isn't where we want it, create a new cast at IP.
56 // Likewise, do not reuse a cast at BIP because it must dominate
57 // instructions that might be inserted before BIP.
Rafael Espindolacd06b482012-02-22 03:21:39 +000058 if (BasicBlock::iterator(CI) != IP || BIP == IP) {
Dan Gohmand2772462010-06-19 13:25:23 +000059 // Create a new cast, and leave the old cast in place in case
60 // it is being used as an insert point. Clear its operand
61 // so that it doesn't hold anything live.
Rafael Espindola09a42012012-02-27 02:13:03 +000062 Ret = CastInst::Create(Op, V, Ty, "", IP);
63 Ret->takeName(CI);
64 CI->replaceAllUsesWith(Ret);
Dan Gohmand2772462010-06-19 13:25:23 +000065 CI->setOperand(0, UndefValue::get(V->getType()));
Rafael Espindola09a42012012-02-27 02:13:03 +000066 break;
Dan Gohmand2772462010-06-19 13:25:23 +000067 }
Rafael Espindola09a42012012-02-27 02:13:03 +000068 Ret = CI;
69 break;
Dan Gohmand2772462010-06-19 13:25:23 +000070 }
71
72 // Create a new cast.
Rafael Espindola09a42012012-02-27 02:13:03 +000073 if (!Ret)
74 Ret = CastInst::Create(Op, V, Ty, V->getName(), IP);
75
76 // We assert at the end of the function since IP might point to an
77 // instruction with different dominance properties than a cast
78 // (an invoke for example) and not dominate BIP (but the cast does).
79 assert(SE.DT->dominates(Ret, BIP));
80
81 rememberInstruction(Ret);
82 return Ret;
Dan Gohmand2772462010-06-19 13:25:23 +000083}
84
Dan Gohman830fd382009-06-27 21:18:18 +000085/// InsertNoopCastOfTo - Insert a cast of V to the specified type,
86/// which must be possible with a noop cast, doing what we can to share
87/// the casts.
Chris Lattner229907c2011-07-18 04:54:35 +000088Value *SCEVExpander::InsertNoopCastOfTo(Value *V, Type *Ty) {
Dan Gohman830fd382009-06-27 21:18:18 +000089 Instruction::CastOps Op = CastInst::getCastOpcode(V, false, Ty, false);
90 assert((Op == Instruction::BitCast ||
91 Op == Instruction::PtrToInt ||
92 Op == Instruction::IntToPtr) &&
93 "InsertNoopCastOfTo cannot perform non-noop casts!");
94 assert(SE.getTypeSizeInBits(V->getType()) == SE.getTypeSizeInBits(Ty) &&
95 "InsertNoopCastOfTo cannot change sizes!");
96
Dan Gohman0a40ad92009-04-16 03:18:22 +000097 // Short-circuit unnecessary bitcasts.
Andrew Tricke0ced622011-12-14 22:07:19 +000098 if (Op == Instruction::BitCast) {
99 if (V->getType() == Ty)
100 return V;
101 if (CastInst *CI = dyn_cast<CastInst>(V)) {
102 if (CI->getOperand(0)->getType() == Ty)
103 return CI->getOperand(0);
104 }
105 }
Dan Gohman66e038a2009-04-16 15:52:57 +0000106 // Short-circuit unnecessary inttoptr<->ptrtoint casts.
Dan Gohman830fd382009-06-27 21:18:18 +0000107 if ((Op == Instruction::PtrToInt || Op == Instruction::IntToPtr) &&
Dan Gohman150b4c32009-05-01 17:00:00 +0000108 SE.getTypeSizeInBits(Ty) == SE.getTypeSizeInBits(V->getType())) {
Dan Gohmanb397e1a2009-04-21 01:07:12 +0000109 if (CastInst *CI = dyn_cast<CastInst>(V))
110 if ((CI->getOpcode() == Instruction::PtrToInt ||
111 CI->getOpcode() == Instruction::IntToPtr) &&
112 SE.getTypeSizeInBits(CI->getType()) ==
113 SE.getTypeSizeInBits(CI->getOperand(0)->getType()))
114 return CI->getOperand(0);
Dan Gohman150b4c32009-05-01 17:00:00 +0000115 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V))
116 if ((CE->getOpcode() == Instruction::PtrToInt ||
117 CE->getOpcode() == Instruction::IntToPtr) &&
118 SE.getTypeSizeInBits(CE->getType()) ==
119 SE.getTypeSizeInBits(CE->getOperand(0)->getType()))
120 return CE->getOperand(0);
121 }
Dan Gohman66e038a2009-04-16 15:52:57 +0000122
Dan Gohmand2772462010-06-19 13:25:23 +0000123 // Fold a cast of a constant.
Chris Lattnera6da69c2006-02-04 09:51:53 +0000124 if (Constant *C = dyn_cast<Constant>(V))
Owen Anderson487375e2009-07-29 18:55:55 +0000125 return ConstantExpr::getCast(Op, C, Ty);
Dan Gohman8a8ad7d2009-08-20 16:42:55 +0000126
Dan Gohmand2772462010-06-19 13:25:23 +0000127 // Cast the argument at the beginning of the entry block, after
128 // any bitcasts of other arguments.
Chris Lattnera6da69c2006-02-04 09:51:53 +0000129 if (Argument *A = dyn_cast<Argument>(V)) {
Dan Gohmand2772462010-06-19 13:25:23 +0000130 BasicBlock::iterator IP = A->getParent()->getEntryBlock().begin();
131 while ((isa<BitCastInst>(IP) &&
132 isa<Argument>(cast<BitCastInst>(IP)->getOperand(0)) &&
133 cast<BitCastInst>(IP)->getOperand(0) != A) ||
Bill Wendling86c5cbe2011-08-24 21:06:46 +0000134 isa<DbgInfoIntrinsic>(IP) ||
135 isa<LandingPadInst>(IP))
Dan Gohmand2772462010-06-19 13:25:23 +0000136 ++IP;
137 return ReuseOrCreateCast(A, Ty, Op, IP);
Chris Lattnera6da69c2006-02-04 09:51:53 +0000138 }
Wojciech Matyjewicz784d071e12008-02-09 18:30:13 +0000139
Dan Gohmand2772462010-06-19 13:25:23 +0000140 // Cast the instruction immediately after the instruction.
Chris Lattnera6da69c2006-02-04 09:51:53 +0000141 Instruction *I = cast<Instruction>(V);
Chris Lattnera6da69c2006-02-04 09:51:53 +0000142 BasicBlock::iterator IP = I; ++IP;
143 if (InvokeInst *II = dyn_cast<InvokeInst>(I))
144 IP = II->getNormalDest()->begin();
Rafael Espindola82d95752012-02-18 17:22:58 +0000145 while (isa<PHINode>(IP) || isa<LandingPadInst>(IP))
Bill Wendling86c5cbe2011-08-24 21:06:46 +0000146 ++IP;
Dan Gohmand2772462010-06-19 13:25:23 +0000147 return ReuseOrCreateCast(I, Ty, Op, IP);
Chris Lattnera6da69c2006-02-04 09:51:53 +0000148}
149
Chris Lattnere71f1442007-04-13 05:04:18 +0000150/// InsertBinop - Insert the specified binary operator, doing a small amount
151/// of work to avoid inserting an obviously redundant operation.
Dan Gohman830fd382009-06-27 21:18:18 +0000152Value *SCEVExpander::InsertBinop(Instruction::BinaryOps Opcode,
153 Value *LHS, Value *RHS) {
Dan Gohman00cb1172007-06-15 19:21:55 +0000154 // Fold a binop with constant operands.
155 if (Constant *CLHS = dyn_cast<Constant>(LHS))
156 if (Constant *CRHS = dyn_cast<Constant>(RHS))
Owen Anderson487375e2009-07-29 18:55:55 +0000157 return ConstantExpr::get(Opcode, CLHS, CRHS);
Dan Gohman00cb1172007-06-15 19:21:55 +0000158
Chris Lattnere71f1442007-04-13 05:04:18 +0000159 // Do a quick scan to see if we have this binop nearby. If so, reuse it.
160 unsigned ScanLimit = 6;
Dan Gohman830fd382009-06-27 21:18:18 +0000161 BasicBlock::iterator BlockBegin = Builder.GetInsertBlock()->begin();
162 // Scanning starts from the last instruction before the insertion point.
163 BasicBlock::iterator IP = Builder.GetInsertPoint();
164 if (IP != BlockBegin) {
Wojciech Matyjewiczae9753b22008-06-15 19:07:39 +0000165 --IP;
166 for (; ScanLimit; --IP, --ScanLimit) {
Dale Johannesenf5cc1cd2010-03-05 21:12:40 +0000167 // Don't count dbg.value against the ScanLimit, to avoid perturbing the
168 // generated code.
169 if (isa<DbgInfoIntrinsic>(IP))
170 ScanLimit++;
Dan Gohman26494912009-05-19 02:15:55 +0000171 if (IP->getOpcode() == (unsigned)Opcode && IP->getOperand(0) == LHS &&
172 IP->getOperand(1) == RHS)
173 return IP;
Wojciech Matyjewiczae9753b22008-06-15 19:07:39 +0000174 if (IP == BlockBegin) break;
175 }
Chris Lattnere71f1442007-04-13 05:04:18 +0000176 }
Dan Gohman830fd382009-06-27 21:18:18 +0000177
Dan Gohman29707de2010-03-03 05:29:13 +0000178 // Save the original insertion point so we can restore it when we're done.
Benjamin Kramer6e931522013-09-30 15:40:17 +0000179 DebugLoc Loc = Builder.GetInsertPoint()->getDebugLoc();
180 BuilderType::InsertPointGuard Guard(Builder);
Dan Gohman29707de2010-03-03 05:29:13 +0000181
182 // Move the insertion point out of as many loops as we can.
183 while (const Loop *L = SE.LI->getLoopFor(Builder.GetInsertBlock())) {
184 if (!L->isLoopInvariant(LHS) || !L->isLoopInvariant(RHS)) break;
185 BasicBlock *Preheader = L->getLoopPreheader();
186 if (!Preheader) break;
187
188 // Ok, move up a level.
189 Builder.SetInsertPoint(Preheader, Preheader->getTerminator());
190 }
191
Wojciech Matyjewiczae9753b22008-06-15 19:07:39 +0000192 // If we haven't found this binop, insert it.
Benjamin Kramer547b6c52011-09-27 20:39:19 +0000193 Instruction *BO = cast<Instruction>(Builder.CreateBinOp(Opcode, LHS, RHS));
Benjamin Kramer6e931522013-09-30 15:40:17 +0000194 BO->setDebugLoc(Loc);
Dan Gohman51ad99d2010-01-21 02:09:26 +0000195 rememberInstruction(BO);
Dan Gohman29707de2010-03-03 05:29:13 +0000196
Dan Gohmand195a222009-05-01 17:13:31 +0000197 return BO;
Chris Lattnere71f1442007-04-13 05:04:18 +0000198}
199
Dan Gohman17893622009-05-27 02:00:53 +0000200/// FactorOutConstant - Test if S is divisible by Factor, using signed
Dan Gohman291c2e02009-05-24 18:06:31 +0000201/// division. If so, update S with Factor divided out and return true.
Dan Gohman8b0a4192010-03-01 17:49:51 +0000202/// S need not be evenly divisible if a reasonable remainder can be
Dan Gohman17893622009-05-27 02:00:53 +0000203/// computed.
Dan Gohman291c2e02009-05-24 18:06:31 +0000204/// TODO: When ScalarEvolution gets a SCEVSDivExpr, this can be made
205/// unnecessary; in its place, just signed-divide Ops[i] by the scale and
206/// check to see if the divide was folded.
Dan Gohmanaf752342009-07-07 17:06:11 +0000207static bool FactorOutConstant(const SCEV *&S,
208 const SCEV *&Remainder,
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000209 const SCEV *Factor,
210 ScalarEvolution &SE,
Rafael Espindola7c68beb2014-02-18 15:33:12 +0000211 const DataLayout *DL) {
Dan Gohman291c2e02009-05-24 18:06:31 +0000212 // Everything is divisible by one.
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000213 if (Factor->isOne())
Dan Gohman291c2e02009-05-24 18:06:31 +0000214 return true;
215
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000216 // x/x == 1.
217 if (S == Factor) {
Dan Gohman1d2ded72010-05-03 22:09:21 +0000218 S = SE.getConstant(S->getType(), 1);
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000219 return true;
220 }
221
Dan Gohman291c2e02009-05-24 18:06:31 +0000222 // For a Constant, check for a multiple of the given factor.
Dan Gohman17893622009-05-27 02:00:53 +0000223 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) {
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000224 // 0/x == 0.
225 if (C->isZero())
Dan Gohman291c2e02009-05-24 18:06:31 +0000226 return true;
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000227 // Check for divisibility.
228 if (const SCEVConstant *FC = dyn_cast<SCEVConstant>(Factor)) {
229 ConstantInt *CI =
230 ConstantInt::get(SE.getContext(),
231 C->getValue()->getValue().sdiv(
232 FC->getValue()->getValue()));
233 // If the quotient is zero and the remainder is non-zero, reject
234 // the value at this scale. It will be considered for subsequent
235 // smaller scales.
236 if (!CI->isZero()) {
237 const SCEV *Div = SE.getConstant(CI);
238 S = Div;
239 Remainder =
240 SE.getAddExpr(Remainder,
241 SE.getConstant(C->getValue()->getValue().srem(
242 FC->getValue()->getValue())));
243 return true;
244 }
Dan Gohman291c2e02009-05-24 18:06:31 +0000245 }
Dan Gohman17893622009-05-27 02:00:53 +0000246 }
Dan Gohman291c2e02009-05-24 18:06:31 +0000247
248 // In a Mul, check if there is a constant operand which is a multiple
249 // of the given factor.
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000250 if (const SCEVMulExpr *M = dyn_cast<SCEVMulExpr>(S)) {
Rafael Espindola7c68beb2014-02-18 15:33:12 +0000251 if (DL) {
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000252 // With DataLayout, the size is known. Check if there is a constant
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000253 // operand which is a multiple of the given factor. If so, we can
254 // factor it.
255 const SCEVConstant *FC = cast<SCEVConstant>(Factor);
256 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(M->getOperand(0)))
257 if (!C->getValue()->getValue().srem(FC->getValue()->getValue())) {
Dan Gohman00524492010-03-18 01:17:13 +0000258 SmallVector<const SCEV *, 4> NewMulOps(M->op_begin(), M->op_end());
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000259 NewMulOps[0] =
260 SE.getConstant(C->getValue()->getValue().sdiv(
261 FC->getValue()->getValue()));
262 S = SE.getMulExpr(NewMulOps);
263 return true;
264 }
265 } else {
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000266 // Without DataLayout, check if Factor can be factored out of any of the
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000267 // Mul's operands. If so, we can just remove it.
268 for (unsigned i = 0, e = M->getNumOperands(); i != e; ++i) {
269 const SCEV *SOp = M->getOperand(i);
Dan Gohman1d2ded72010-05-03 22:09:21 +0000270 const SCEV *Remainder = SE.getConstant(SOp->getType(), 0);
Rafael Espindola7c68beb2014-02-18 15:33:12 +0000271 if (FactorOutConstant(SOp, Remainder, Factor, SE, DL) &&
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000272 Remainder->isZero()) {
Dan Gohman00524492010-03-18 01:17:13 +0000273 SmallVector<const SCEV *, 4> NewMulOps(M->op_begin(), M->op_end());
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000274 NewMulOps[i] = SOp;
275 S = SE.getMulExpr(NewMulOps);
276 return true;
277 }
Dan Gohman291c2e02009-05-24 18:06:31 +0000278 }
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000279 }
280 }
Dan Gohman291c2e02009-05-24 18:06:31 +0000281
282 // In an AddRec, check if both start and step are divisible.
283 if (const SCEVAddRecExpr *A = dyn_cast<SCEVAddRecExpr>(S)) {
Dan Gohmanaf752342009-07-07 17:06:11 +0000284 const SCEV *Step = A->getStepRecurrence(SE);
Dan Gohman1d2ded72010-05-03 22:09:21 +0000285 const SCEV *StepRem = SE.getConstant(Step->getType(), 0);
Rafael Espindola7c68beb2014-02-18 15:33:12 +0000286 if (!FactorOutConstant(Step, StepRem, Factor, SE, DL))
Dan Gohman17893622009-05-27 02:00:53 +0000287 return false;
288 if (!StepRem->isZero())
289 return false;
Dan Gohmanaf752342009-07-07 17:06:11 +0000290 const SCEV *Start = A->getStart();
Rafael Espindola7c68beb2014-02-18 15:33:12 +0000291 if (!FactorOutConstant(Start, Remainder, Factor, SE, DL))
Dan Gohman291c2e02009-05-24 18:06:31 +0000292 return false;
Andrew Trickaa8ceba2013-07-14 03:10:08 +0000293 S = SE.getAddRecExpr(Start, Step, A->getLoop(),
294 A->getNoWrapFlags(SCEV::FlagNW));
Dan Gohman291c2e02009-05-24 18:06:31 +0000295 return true;
296 }
297
298 return false;
299}
300
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000301/// SimplifyAddOperands - Sort and simplify a list of add operands. NumAddRecs
302/// is the number of SCEVAddRecExprs present, which are kept at the end of
303/// the list.
304///
305static void SimplifyAddOperands(SmallVectorImpl<const SCEV *> &Ops,
Chris Lattner229907c2011-07-18 04:54:35 +0000306 Type *Ty,
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000307 ScalarEvolution &SE) {
308 unsigned NumAddRecs = 0;
309 for (unsigned i = Ops.size(); i > 0 && isa<SCEVAddRecExpr>(Ops[i-1]); --i)
310 ++NumAddRecs;
311 // Group Ops into non-addrecs and addrecs.
312 SmallVector<const SCEV *, 8> NoAddRecs(Ops.begin(), Ops.end() - NumAddRecs);
313 SmallVector<const SCEV *, 8> AddRecs(Ops.end() - NumAddRecs, Ops.end());
314 // Let ScalarEvolution sort and simplify the non-addrecs list.
315 const SCEV *Sum = NoAddRecs.empty() ?
Dan Gohman1d2ded72010-05-03 22:09:21 +0000316 SE.getConstant(Ty, 0) :
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000317 SE.getAddExpr(NoAddRecs);
318 // If it returned an add, use the operands. Otherwise it simplified
319 // the sum into a single value, so just use that.
Dan Gohman00524492010-03-18 01:17:13 +0000320 Ops.clear();
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000321 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Sum))
Dan Gohmandd41bba2010-06-21 19:47:52 +0000322 Ops.append(Add->op_begin(), Add->op_end());
Dan Gohman00524492010-03-18 01:17:13 +0000323 else if (!Sum->isZero())
324 Ops.push_back(Sum);
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000325 // Then append the addrecs.
Dan Gohmandd41bba2010-06-21 19:47:52 +0000326 Ops.append(AddRecs.begin(), AddRecs.end());
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000327}
328
329/// SplitAddRecs - Flatten a list of add operands, moving addrec start values
330/// out to the top level. For example, convert {a + b,+,c} to a, b, {0,+,d}.
331/// This helps expose more opportunities for folding parts of the expressions
332/// into GEP indices.
333///
334static void SplitAddRecs(SmallVectorImpl<const SCEV *> &Ops,
Chris Lattner229907c2011-07-18 04:54:35 +0000335 Type *Ty,
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000336 ScalarEvolution &SE) {
337 // Find the addrecs.
338 SmallVector<const SCEV *, 8> AddRecs;
339 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
340 while (const SCEVAddRecExpr *A = dyn_cast<SCEVAddRecExpr>(Ops[i])) {
341 const SCEV *Start = A->getStart();
342 if (Start->isZero()) break;
Dan Gohman1d2ded72010-05-03 22:09:21 +0000343 const SCEV *Zero = SE.getConstant(Ty, 0);
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000344 AddRecs.push_back(SE.getAddRecExpr(Zero,
345 A->getStepRecurrence(SE),
Andrew Trick8b55b732011-03-14 16:50:06 +0000346 A->getLoop(),
Andrew Trickaa8ceba2013-07-14 03:10:08 +0000347 A->getNoWrapFlags(SCEV::FlagNW)));
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000348 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Start)) {
349 Ops[i] = Zero;
Dan Gohmandd41bba2010-06-21 19:47:52 +0000350 Ops.append(Add->op_begin(), Add->op_end());
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000351 e += Add->getNumOperands();
352 } else {
353 Ops[i] = Start;
354 }
355 }
356 if (!AddRecs.empty()) {
357 // Add the addrecs onto the end of the list.
Dan Gohmandd41bba2010-06-21 19:47:52 +0000358 Ops.append(AddRecs.begin(), AddRecs.end());
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000359 // Resort the operand list, moving any constants to the front.
360 SimplifyAddOperands(Ops, Ty, SE);
361 }
362}
363
Dan Gohman8a8ad7d2009-08-20 16:42:55 +0000364/// expandAddToGEP - Expand an addition expression with a pointer type into
365/// a GEP instead of using ptrtoint+arithmetic+inttoptr. This helps
366/// BasicAliasAnalysis and other passes analyze the result. See the rules
367/// for getelementptr vs. inttoptr in
368/// http://llvm.org/docs/LangRef.html#pointeraliasing
369/// for details.
Dan Gohman16e96c02009-07-20 17:44:17 +0000370///
Dan Gohman510bffc2010-01-19 22:26:02 +0000371/// Design note: The correctness of using getelementptr here depends on
Dan Gohman8a8ad7d2009-08-20 16:42:55 +0000372/// ScalarEvolution not recognizing inttoptr and ptrtoint operators, as
373/// they may introduce pointer arithmetic which may not be safely converted
374/// into getelementptr.
Dan Gohman291c2e02009-05-24 18:06:31 +0000375///
376/// Design note: It might seem desirable for this function to be more
377/// loop-aware. If some of the indices are loop-invariant while others
378/// aren't, it might seem desirable to emit multiple GEPs, keeping the
379/// loop-invariant portions of the overall computation outside the loop.
380/// However, there are a few reasons this is not done here. Hoisting simple
381/// arithmetic is a low-level optimization that often isn't very
382/// important until late in the optimization process. In fact, passes
383/// like InstructionCombining will combine GEPs, even if it means
384/// pushing loop-invariant computation down into loops, so even if the
385/// GEPs were split here, the work would quickly be undone. The
386/// LoopStrengthReduction pass, which is usually run quite late (and
387/// after the last InstructionCombining pass), takes care of hoisting
388/// loop-invariant portions of expressions, after considering what
389/// can be folded using target addressing modes.
390///
Dan Gohmanaf752342009-07-07 17:06:11 +0000391Value *SCEVExpander::expandAddToGEP(const SCEV *const *op_begin,
392 const SCEV *const *op_end,
Chris Lattner229907c2011-07-18 04:54:35 +0000393 PointerType *PTy,
394 Type *Ty,
Dan Gohman26494912009-05-19 02:15:55 +0000395 Value *V) {
Chris Lattner229907c2011-07-18 04:54:35 +0000396 Type *ElTy = PTy->getElementType();
Dan Gohman26494912009-05-19 02:15:55 +0000397 SmallVector<Value *, 4> GepIndices;
Dan Gohmanaf752342009-07-07 17:06:11 +0000398 SmallVector<const SCEV *, 8> Ops(op_begin, op_end);
Dan Gohman26494912009-05-19 02:15:55 +0000399 bool AnyNonZeroIndices = false;
Dan Gohman26494912009-05-19 02:15:55 +0000400
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000401 // Split AddRecs up into parts as either of the parts may be usable
402 // without the other.
403 SplitAddRecs(Ops, Ty, SE);
404
Rafael Espindola7c68beb2014-02-18 15:33:12 +0000405 Type *IntPtrTy = SE.DL
406 ? SE.DL->getIntPtrType(PTy)
Matt Arsenaulta90a18e2013-09-10 19:55:24 +0000407 : Type::getInt64Ty(PTy->getContext());
408
Bob Wilson2107eb72009-12-04 01:33:04 +0000409 // Descend down the pointer's type and attempt to convert the other
Dan Gohman26494912009-05-19 02:15:55 +0000410 // operands into GEP indices, at each level. The first index in a GEP
411 // indexes into the array implied by the pointer operand; the rest of
412 // the indices index into the element or field type selected by the
413 // preceding index.
414 for (;;) {
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000415 // If the scale size is not 0, attempt to factor out a scale for
416 // array indexing.
Dan Gohmanaf752342009-07-07 17:06:11 +0000417 SmallVector<const SCEV *, 8> ScaledOps;
Dan Gohman9f4ea222010-01-28 06:32:46 +0000418 if (ElTy->isSized()) {
Matt Arsenaulta90a18e2013-09-10 19:55:24 +0000419 const SCEV *ElSize = SE.getSizeOfExpr(IntPtrTy, ElTy);
Dan Gohman9f4ea222010-01-28 06:32:46 +0000420 if (!ElSize->isZero()) {
421 SmallVector<const SCEV *, 8> NewOps;
422 for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
423 const SCEV *Op = Ops[i];
Dan Gohman1d2ded72010-05-03 22:09:21 +0000424 const SCEV *Remainder = SE.getConstant(Ty, 0);
Rafael Espindola7c68beb2014-02-18 15:33:12 +0000425 if (FactorOutConstant(Op, Remainder, ElSize, SE, SE.DL)) {
Dan Gohman9f4ea222010-01-28 06:32:46 +0000426 // Op now has ElSize factored out.
427 ScaledOps.push_back(Op);
428 if (!Remainder->isZero())
429 NewOps.push_back(Remainder);
430 AnyNonZeroIndices = true;
431 } else {
432 // The operand was not divisible, so add it to the list of operands
433 // we'll scan next iteration.
434 NewOps.push_back(Ops[i]);
435 }
Dan Gohman26494912009-05-19 02:15:55 +0000436 }
Dan Gohman9f4ea222010-01-28 06:32:46 +0000437 // If we made any changes, update Ops.
438 if (!ScaledOps.empty()) {
439 Ops = NewOps;
440 SimplifyAddOperands(Ops, Ty, SE);
441 }
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000442 }
Dan Gohman26494912009-05-19 02:15:55 +0000443 }
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000444
445 // Record the scaled array index for this level of the type. If
446 // we didn't find any operands that could be factored, tentatively
447 // assume that element zero was selected (since the zero offset
448 // would obviously be folded away).
Dan Gohman26494912009-05-19 02:15:55 +0000449 Value *Scaled = ScaledOps.empty() ?
Owen Anderson5a1acd92009-07-31 20:28:14 +0000450 Constant::getNullValue(Ty) :
Dan Gohman26494912009-05-19 02:15:55 +0000451 expandCodeFor(SE.getAddExpr(ScaledOps), Ty);
452 GepIndices.push_back(Scaled);
453
454 // Collect struct field index operands.
Chris Lattner229907c2011-07-18 04:54:35 +0000455 while (StructType *STy = dyn_cast<StructType>(ElTy)) {
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000456 bool FoundFieldNo = false;
457 // An empty struct has no fields.
458 if (STy->getNumElements() == 0) break;
Rafael Espindola7c68beb2014-02-18 15:33:12 +0000459 if (SE.DL) {
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000460 // With DataLayout, field offsets are known. See if a constant offset
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000461 // falls within any of the struct fields.
462 if (Ops.empty()) break;
Dan Gohman26494912009-05-19 02:15:55 +0000463 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(Ops[0]))
464 if (SE.getTypeSizeInBits(C->getType()) <= 64) {
Rafael Espindola7c68beb2014-02-18 15:33:12 +0000465 const StructLayout &SL = *SE.DL->getStructLayout(STy);
Dan Gohman26494912009-05-19 02:15:55 +0000466 uint64_t FullOffset = C->getValue()->getZExtValue();
467 if (FullOffset < SL.getSizeInBytes()) {
468 unsigned ElIdx = SL.getElementContainingOffset(FullOffset);
Owen Anderson55f1c092009-08-13 21:58:54 +0000469 GepIndices.push_back(
470 ConstantInt::get(Type::getInt32Ty(Ty->getContext()), ElIdx));
Dan Gohman26494912009-05-19 02:15:55 +0000471 ElTy = STy->getTypeAtIndex(ElIdx);
472 Ops[0] =
Dan Gohman7ccc52f2009-06-15 22:12:54 +0000473 SE.getConstant(Ty, FullOffset - SL.getElementOffset(ElIdx));
Dan Gohman26494912009-05-19 02:15:55 +0000474 AnyNonZeroIndices = true;
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000475 FoundFieldNo = true;
Dan Gohman26494912009-05-19 02:15:55 +0000476 }
477 }
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000478 } else {
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000479 // Without DataLayout, just check for an offsetof expression of the
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000480 // appropriate struct type.
481 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
Dan Gohmancf913832010-01-28 02:15:55 +0000482 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(Ops[i])) {
Chris Lattner229907c2011-07-18 04:54:35 +0000483 Type *CTy;
Dan Gohmancf913832010-01-28 02:15:55 +0000484 Constant *FieldNo;
Dan Gohmane5e1b7b2010-02-01 18:27:38 +0000485 if (U->isOffsetOf(CTy, FieldNo) && CTy == STy) {
Dan Gohmancf913832010-01-28 02:15:55 +0000486 GepIndices.push_back(FieldNo);
487 ElTy =
488 STy->getTypeAtIndex(cast<ConstantInt>(FieldNo)->getZExtValue());
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000489 Ops[i] = SE.getConstant(Ty, 0);
490 AnyNonZeroIndices = true;
491 FoundFieldNo = true;
492 break;
493 }
Dan Gohmancf913832010-01-28 02:15:55 +0000494 }
Dan Gohman26494912009-05-19 02:15:55 +0000495 }
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000496 // If no struct field offsets were found, tentatively assume that
497 // field zero was selected (since the zero offset would obviously
498 // be folded away).
499 if (!FoundFieldNo) {
500 ElTy = STy->getTypeAtIndex(0u);
501 GepIndices.push_back(
502 Constant::getNullValue(Type::getInt32Ty(Ty->getContext())));
503 }
Dan Gohman26494912009-05-19 02:15:55 +0000504 }
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000505
Chris Lattner229907c2011-07-18 04:54:35 +0000506 if (ArrayType *ATy = dyn_cast<ArrayType>(ElTy))
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000507 ElTy = ATy->getElementType();
508 else
509 break;
Dan Gohman26494912009-05-19 02:15:55 +0000510 }
511
Dan Gohman8b0a4192010-03-01 17:49:51 +0000512 // If none of the operands were convertible to proper GEP indices, cast
Dan Gohman26494912009-05-19 02:15:55 +0000513 // the base to i8* and do an ugly getelementptr with that. It's still
514 // better than ptrtoint+arithmetic+inttoptr at least.
515 if (!AnyNonZeroIndices) {
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000516 // Cast the base to i8*.
Dan Gohman26494912009-05-19 02:15:55 +0000517 V = InsertNoopCastOfTo(V,
Duncan Sands9ed7b162009-10-06 15:40:36 +0000518 Type::getInt8PtrTy(Ty->getContext(), PTy->getAddressSpace()));
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000519
Rafael Espindola729e3aa2012-02-21 03:51:14 +0000520 assert(!isa<Instruction>(V) ||
Rafael Espindola94df2672012-02-26 02:19:19 +0000521 SE.DT->dominates(cast<Instruction>(V), Builder.GetInsertPoint()));
Rafael Espindola7d445e92012-02-21 01:19:51 +0000522
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000523 // Expand the operands for a plain byte offset.
Dan Gohmanb8597bd2009-06-09 17:18:38 +0000524 Value *Idx = expandCodeFor(SE.getAddExpr(Ops), Ty);
Dan Gohman26494912009-05-19 02:15:55 +0000525
526 // Fold a GEP with constant operands.
527 if (Constant *CLHS = dyn_cast<Constant>(V))
528 if (Constant *CRHS = dyn_cast<Constant>(Idx))
Jay Foaded8db7d2011-07-21 14:31:17 +0000529 return ConstantExpr::getGetElementPtr(CLHS, CRHS);
Dan Gohman26494912009-05-19 02:15:55 +0000530
531 // Do a quick scan to see if we have this GEP nearby. If so, reuse it.
532 unsigned ScanLimit = 6;
Dan Gohman830fd382009-06-27 21:18:18 +0000533 BasicBlock::iterator BlockBegin = Builder.GetInsertBlock()->begin();
534 // Scanning starts from the last instruction before the insertion point.
535 BasicBlock::iterator IP = Builder.GetInsertPoint();
536 if (IP != BlockBegin) {
Dan Gohman26494912009-05-19 02:15:55 +0000537 --IP;
538 for (; ScanLimit; --IP, --ScanLimit) {
Dale Johannesenf5cc1cd2010-03-05 21:12:40 +0000539 // Don't count dbg.value against the ScanLimit, to avoid perturbing the
540 // generated code.
541 if (isa<DbgInfoIntrinsic>(IP))
542 ScanLimit++;
Dan Gohman26494912009-05-19 02:15:55 +0000543 if (IP->getOpcode() == Instruction::GetElementPtr &&
544 IP->getOperand(0) == V && IP->getOperand(1) == Idx)
545 return IP;
546 if (IP == BlockBegin) break;
547 }
548 }
549
Dan Gohman29707de2010-03-03 05:29:13 +0000550 // Save the original insertion point so we can restore it when we're done.
Benjamin Kramer6e931522013-09-30 15:40:17 +0000551 BuilderType::InsertPointGuard Guard(Builder);
Dan Gohman29707de2010-03-03 05:29:13 +0000552
553 // Move the insertion point out of as many loops as we can.
554 while (const Loop *L = SE.LI->getLoopFor(Builder.GetInsertBlock())) {
555 if (!L->isLoopInvariant(V) || !L->isLoopInvariant(Idx)) break;
556 BasicBlock *Preheader = L->getLoopPreheader();
557 if (!Preheader) break;
558
559 // Ok, move up a level.
560 Builder.SetInsertPoint(Preheader, Preheader->getTerminator());
561 }
562
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +0000563 // Emit a GEP.
564 Value *GEP = Builder.CreateGEP(V, Idx, "uglygep");
Dan Gohman51ad99d2010-01-21 02:09:26 +0000565 rememberInstruction(GEP);
Dan Gohman29707de2010-03-03 05:29:13 +0000566
Dan Gohman26494912009-05-19 02:15:55 +0000567 return GEP;
568 }
569
Dan Gohman29707de2010-03-03 05:29:13 +0000570 // Save the original insertion point so we can restore it when we're done.
Benjamin Kramer58f1ced2013-10-01 12:17:11 +0000571 BuilderType::InsertPoint SaveInsertPt = Builder.saveIP();
Dan Gohman29707de2010-03-03 05:29:13 +0000572
573 // Move the insertion point out of as many loops as we can.
574 while (const Loop *L = SE.LI->getLoopFor(Builder.GetInsertBlock())) {
575 if (!L->isLoopInvariant(V)) break;
576
577 bool AnyIndexNotLoopInvariant = false;
578 for (SmallVectorImpl<Value *>::const_iterator I = GepIndices.begin(),
579 E = GepIndices.end(); I != E; ++I)
580 if (!L->isLoopInvariant(*I)) {
581 AnyIndexNotLoopInvariant = true;
582 break;
583 }
584 if (AnyIndexNotLoopInvariant)
585 break;
586
587 BasicBlock *Preheader = L->getLoopPreheader();
588 if (!Preheader) break;
589
590 // Ok, move up a level.
591 Builder.SetInsertPoint(Preheader, Preheader->getTerminator());
592 }
593
Dan Gohman31a9b982009-07-28 01:40:03 +0000594 // Insert a pretty getelementptr. Note that this GEP is not marked inbounds,
595 // because ScalarEvolution may have changed the address arithmetic to
596 // compute a value which is beyond the end of the allocated object.
Dan Gohman51ad99d2010-01-21 02:09:26 +0000597 Value *Casted = V;
598 if (V->getType() != PTy)
599 Casted = InsertNoopCastOfTo(Casted, PTy);
600 Value *GEP = Builder.CreateGEP(Casted,
Jay Foad040dd822011-07-22 08:16:57 +0000601 GepIndices,
Dan Gohman830fd382009-06-27 21:18:18 +0000602 "scevgep");
Dan Gohman26494912009-05-19 02:15:55 +0000603 Ops.push_back(SE.getUnknown(GEP));
Dan Gohman51ad99d2010-01-21 02:09:26 +0000604 rememberInstruction(GEP);
Dan Gohman29707de2010-03-03 05:29:13 +0000605
Benjamin Kramer58f1ced2013-10-01 12:17:11 +0000606 // Restore the original insert point.
607 Builder.restoreIP(SaveInsertPt);
608
Dan Gohman26494912009-05-19 02:15:55 +0000609 return expand(SE.getAddExpr(Ops));
610}
611
Dan Gohman29707de2010-03-03 05:29:13 +0000612/// PickMostRelevantLoop - Given two loops pick the one that's most relevant for
613/// SCEV expansion. If they are nested, this is the most nested. If they are
614/// neighboring, pick the later.
615static const Loop *PickMostRelevantLoop(const Loop *A, const Loop *B,
616 DominatorTree &DT) {
617 if (!A) return B;
618 if (!B) return A;
619 if (A->contains(B)) return B;
620 if (B->contains(A)) return A;
621 if (DT.dominates(A->getHeader(), B->getHeader())) return B;
622 if (DT.dominates(B->getHeader(), A->getHeader())) return A;
623 return A; // Arbitrarily break the tie.
624}
625
Dan Gohman8ea83d82010-11-18 00:34:22 +0000626/// getRelevantLoop - Get the most relevant loop associated with the given
Dan Gohman29707de2010-03-03 05:29:13 +0000627/// expression, according to PickMostRelevantLoop.
Dan Gohman8ea83d82010-11-18 00:34:22 +0000628const Loop *SCEVExpander::getRelevantLoop(const SCEV *S) {
629 // Test whether we've already computed the most relevant loop for this SCEV.
630 std::pair<DenseMap<const SCEV *, const Loop *>::iterator, bool> Pair =
Craig Topper9f008862014-04-15 04:59:12 +0000631 RelevantLoops.insert(std::make_pair(S, nullptr));
Dan Gohman8ea83d82010-11-18 00:34:22 +0000632 if (!Pair.second)
633 return Pair.first->second;
634
Dan Gohman29707de2010-03-03 05:29:13 +0000635 if (isa<SCEVConstant>(S))
Dan Gohman8ea83d82010-11-18 00:34:22 +0000636 // A constant has no relevant loops.
Craig Topper9f008862014-04-15 04:59:12 +0000637 return nullptr;
Dan Gohman29707de2010-03-03 05:29:13 +0000638 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
639 if (const Instruction *I = dyn_cast<Instruction>(U->getValue()))
Dan Gohman8ea83d82010-11-18 00:34:22 +0000640 return Pair.first->second = SE.LI->getLoopFor(I->getParent());
641 // A non-instruction has no relevant loops.
Craig Topper9f008862014-04-15 04:59:12 +0000642 return nullptr;
Dan Gohman29707de2010-03-03 05:29:13 +0000643 }
644 if (const SCEVNAryExpr *N = dyn_cast<SCEVNAryExpr>(S)) {
Craig Topper9f008862014-04-15 04:59:12 +0000645 const Loop *L = nullptr;
Dan Gohman29707de2010-03-03 05:29:13 +0000646 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S))
647 L = AR->getLoop();
648 for (SCEVNAryExpr::op_iterator I = N->op_begin(), E = N->op_end();
649 I != E; ++I)
Dan Gohman8ea83d82010-11-18 00:34:22 +0000650 L = PickMostRelevantLoop(L, getRelevantLoop(*I), *SE.DT);
651 return RelevantLoops[N] = L;
Dan Gohman29707de2010-03-03 05:29:13 +0000652 }
Dan Gohman8ea83d82010-11-18 00:34:22 +0000653 if (const SCEVCastExpr *C = dyn_cast<SCEVCastExpr>(S)) {
654 const Loop *Result = getRelevantLoop(C->getOperand());
655 return RelevantLoops[C] = Result;
656 }
657 if (const SCEVUDivExpr *D = dyn_cast<SCEVUDivExpr>(S)) {
658 const Loop *Result =
659 PickMostRelevantLoop(getRelevantLoop(D->getLHS()),
660 getRelevantLoop(D->getRHS()),
661 *SE.DT);
662 return RelevantLoops[D] = Result;
663 }
Dan Gohman29707de2010-03-03 05:29:13 +0000664 llvm_unreachable("Unexpected SCEV type!");
665}
666
Dan Gohmanb29cda92010-04-15 17:08:50 +0000667namespace {
668
Dan Gohman29707de2010-03-03 05:29:13 +0000669/// LoopCompare - Compare loops by PickMostRelevantLoop.
670class LoopCompare {
671 DominatorTree &DT;
672public:
673 explicit LoopCompare(DominatorTree &dt) : DT(dt) {}
674
675 bool operator()(std::pair<const Loop *, const SCEV *> LHS,
676 std::pair<const Loop *, const SCEV *> RHS) const {
Dan Gohmanfbbdfca2010-07-15 23:38:13 +0000677 // Keep pointer operands sorted at the end.
678 if (LHS.second->getType()->isPointerTy() !=
679 RHS.second->getType()->isPointerTy())
680 return LHS.second->getType()->isPointerTy();
681
Dan Gohman29707de2010-03-03 05:29:13 +0000682 // Compare loops with PickMostRelevantLoop.
683 if (LHS.first != RHS.first)
684 return PickMostRelevantLoop(LHS.first, RHS.first, DT) != LHS.first;
685
686 // If one operand is a non-constant negative and the other is not,
687 // put the non-constant negative on the right so that a sub can
688 // be used instead of a negate and add.
Andrew Trick881a7762012-01-07 00:27:31 +0000689 if (LHS.second->isNonConstantNegative()) {
690 if (!RHS.second->isNonConstantNegative())
Dan Gohman29707de2010-03-03 05:29:13 +0000691 return false;
Andrew Trick881a7762012-01-07 00:27:31 +0000692 } else if (RHS.second->isNonConstantNegative())
Dan Gohman29707de2010-03-03 05:29:13 +0000693 return true;
694
695 // Otherwise they are equivalent according to this comparison.
696 return false;
697 }
698};
699
Dan Gohmanb29cda92010-04-15 17:08:50 +0000700}
701
Dan Gohman056857a2009-04-18 17:56:28 +0000702Value *SCEVExpander::visitAddExpr(const SCEVAddExpr *S) {
Chris Lattner229907c2011-07-18 04:54:35 +0000703 Type *Ty = SE.getEffectiveSCEVType(S->getType());
Dan Gohman5bafe382009-09-26 16:11:57 +0000704
Dan Gohman29707de2010-03-03 05:29:13 +0000705 // Collect all the add operands in a loop, along with their associated loops.
706 // Iterate in reverse so that constants are emitted last, all else equal, and
707 // so that pointer operands are inserted first, which the code below relies on
708 // to form more involved GEPs.
709 SmallVector<std::pair<const Loop *, const SCEV *>, 8> OpsAndLoops;
710 for (std::reverse_iterator<SCEVAddExpr::op_iterator> I(S->op_end()),
711 E(S->op_begin()); I != E; ++I)
Dan Gohman8ea83d82010-11-18 00:34:22 +0000712 OpsAndLoops.push_back(std::make_pair(getRelevantLoop(*I), *I));
Dan Gohman5bafe382009-09-26 16:11:57 +0000713
Dan Gohman29707de2010-03-03 05:29:13 +0000714 // Sort by loop. Use a stable sort so that constants follow non-constants and
715 // pointer operands precede non-pointer operands.
716 std::stable_sort(OpsAndLoops.begin(), OpsAndLoops.end(), LoopCompare(*SE.DT));
Dan Gohman26494912009-05-19 02:15:55 +0000717
Dan Gohman29707de2010-03-03 05:29:13 +0000718 // Emit instructions to add all the operands. Hoist as much as possible
719 // out of loops, and form meaningful getelementptrs where possible.
Craig Topper9f008862014-04-15 04:59:12 +0000720 Value *Sum = nullptr;
Dan Gohman29707de2010-03-03 05:29:13 +0000721 for (SmallVectorImpl<std::pair<const Loop *, const SCEV *> >::iterator
722 I = OpsAndLoops.begin(), E = OpsAndLoops.end(); I != E; ) {
723 const Loop *CurLoop = I->first;
724 const SCEV *Op = I->second;
725 if (!Sum) {
726 // This is the first operand. Just expand it.
727 Sum = expand(Op);
728 ++I;
Chris Lattner229907c2011-07-18 04:54:35 +0000729 } else if (PointerType *PTy = dyn_cast<PointerType>(Sum->getType())) {
Dan Gohman29707de2010-03-03 05:29:13 +0000730 // The running sum expression is a pointer. Try to form a getelementptr
731 // at this level with that as the base.
732 SmallVector<const SCEV *, 4> NewOps;
Dan Gohmanfbbdfca2010-07-15 23:38:13 +0000733 for (; I != E && I->first == CurLoop; ++I) {
734 // If the operand is SCEVUnknown and not instructions, peek through
735 // it, to enable more of it to be folded into the GEP.
736 const SCEV *X = I->second;
737 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(X))
738 if (!isa<Instruction>(U->getValue()))
739 X = SE.getSCEV(U->getValue());
740 NewOps.push_back(X);
741 }
Dan Gohman29707de2010-03-03 05:29:13 +0000742 Sum = expandAddToGEP(NewOps.begin(), NewOps.end(), PTy, Ty, Sum);
Chris Lattner229907c2011-07-18 04:54:35 +0000743 } else if (PointerType *PTy = dyn_cast<PointerType>(Op->getType())) {
Dan Gohman29707de2010-03-03 05:29:13 +0000744 // The running sum is an integer, and there's a pointer at this level.
Dan Gohman3295a6e2010-04-09 19:14:31 +0000745 // Try to form a getelementptr. If the running sum is instructions,
746 // use a SCEVUnknown to avoid re-analyzing them.
Dan Gohman29707de2010-03-03 05:29:13 +0000747 SmallVector<const SCEV *, 4> NewOps;
Dan Gohman3295a6e2010-04-09 19:14:31 +0000748 NewOps.push_back(isa<Instruction>(Sum) ? SE.getUnknown(Sum) :
749 SE.getSCEV(Sum));
Dan Gohman29707de2010-03-03 05:29:13 +0000750 for (++I; I != E && I->first == CurLoop; ++I)
751 NewOps.push_back(I->second);
752 Sum = expandAddToGEP(NewOps.begin(), NewOps.end(), PTy, Ty, expand(Op));
Andrew Trick881a7762012-01-07 00:27:31 +0000753 } else if (Op->isNonConstantNegative()) {
Dan Gohman29707de2010-03-03 05:29:13 +0000754 // Instead of doing a negate and add, just do a subtract.
Dan Gohman2850b412010-03-03 04:36:42 +0000755 Value *W = expandCodeFor(SE.getNegativeSCEV(Op), Ty);
Dan Gohman29707de2010-03-03 05:29:13 +0000756 Sum = InsertNoopCastOfTo(Sum, Ty);
757 Sum = InsertBinop(Instruction::Sub, Sum, W);
758 ++I;
Dan Gohman2850b412010-03-03 04:36:42 +0000759 } else {
Dan Gohman29707de2010-03-03 05:29:13 +0000760 // A simple add.
Dan Gohman2850b412010-03-03 04:36:42 +0000761 Value *W = expandCodeFor(Op, Ty);
Dan Gohman29707de2010-03-03 05:29:13 +0000762 Sum = InsertNoopCastOfTo(Sum, Ty);
763 // Canonicalize a constant to the RHS.
764 if (isa<Constant>(Sum)) std::swap(Sum, W);
765 Sum = InsertBinop(Instruction::Add, Sum, W);
766 ++I;
Dan Gohman2850b412010-03-03 04:36:42 +0000767 }
768 }
Dan Gohman29707de2010-03-03 05:29:13 +0000769
770 return Sum;
Dan Gohman095ca742008-06-18 16:37:11 +0000771}
Dan Gohman26494912009-05-19 02:15:55 +0000772
Dan Gohman056857a2009-04-18 17:56:28 +0000773Value *SCEVExpander::visitMulExpr(const SCEVMulExpr *S) {
Chris Lattner229907c2011-07-18 04:54:35 +0000774 Type *Ty = SE.getEffectiveSCEVType(S->getType());
Nate Begeman2bca4d92005-07-30 00:12:19 +0000775
Dan Gohman29707de2010-03-03 05:29:13 +0000776 // Collect all the mul operands in a loop, along with their associated loops.
777 // Iterate in reverse so that constants are emitted last, all else equal.
778 SmallVector<std::pair<const Loop *, const SCEV *>, 8> OpsAndLoops;
779 for (std::reverse_iterator<SCEVMulExpr::op_iterator> I(S->op_end()),
780 E(S->op_begin()); I != E; ++I)
Dan Gohman8ea83d82010-11-18 00:34:22 +0000781 OpsAndLoops.push_back(std::make_pair(getRelevantLoop(*I), *I));
Nate Begeman2bca4d92005-07-30 00:12:19 +0000782
Dan Gohman29707de2010-03-03 05:29:13 +0000783 // Sort by loop. Use a stable sort so that constants follow non-constants.
784 std::stable_sort(OpsAndLoops.begin(), OpsAndLoops.end(), LoopCompare(*SE.DT));
785
786 // Emit instructions to mul all the operands. Hoist as much as possible
787 // out of loops.
Craig Topper9f008862014-04-15 04:59:12 +0000788 Value *Prod = nullptr;
Dan Gohman29707de2010-03-03 05:29:13 +0000789 for (SmallVectorImpl<std::pair<const Loop *, const SCEV *> >::iterator
790 I = OpsAndLoops.begin(), E = OpsAndLoops.end(); I != E; ) {
791 const SCEV *Op = I->second;
792 if (!Prod) {
793 // This is the first operand. Just expand it.
794 Prod = expand(Op);
795 ++I;
796 } else if (Op->isAllOnesValue()) {
797 // Instead of doing a multiply by negative one, just do a negate.
798 Prod = InsertNoopCastOfTo(Prod, Ty);
799 Prod = InsertBinop(Instruction::Sub, Constant::getNullValue(Ty), Prod);
800 ++I;
801 } else {
802 // A simple mul.
803 Value *W = expandCodeFor(Op, Ty);
804 Prod = InsertNoopCastOfTo(Prod, Ty);
805 // Canonicalize a constant to the RHS.
806 if (isa<Constant>(Prod)) std::swap(Prod, W);
807 Prod = InsertBinop(Instruction::Mul, Prod, W);
808 ++I;
809 }
Dan Gohman0a40ad92009-04-16 03:18:22 +0000810 }
811
Dan Gohman29707de2010-03-03 05:29:13 +0000812 return Prod;
Nate Begeman2bca4d92005-07-30 00:12:19 +0000813}
814
Dan Gohman056857a2009-04-18 17:56:28 +0000815Value *SCEVExpander::visitUDivExpr(const SCEVUDivExpr *S) {
Chris Lattner229907c2011-07-18 04:54:35 +0000816 Type *Ty = SE.getEffectiveSCEVType(S->getType());
Dan Gohman0a40ad92009-04-16 03:18:22 +0000817
Dan Gohmanb8597bd2009-06-09 17:18:38 +0000818 Value *LHS = expandCodeFor(S->getLHS(), Ty);
Dan Gohman056857a2009-04-18 17:56:28 +0000819 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(S->getRHS())) {
Nick Lewycky3c947042008-07-08 05:05:37 +0000820 const APInt &RHS = SC->getValue()->getValue();
821 if (RHS.isPowerOf2())
822 return InsertBinop(Instruction::LShr, LHS,
Owen Andersonedb4a702009-07-24 23:12:02 +0000823 ConstantInt::get(Ty, RHS.logBase2()));
Nick Lewycky3c947042008-07-08 05:05:37 +0000824 }
825
Dan Gohmanb8597bd2009-06-09 17:18:38 +0000826 Value *RHS = expandCodeFor(S->getRHS(), Ty);
Dan Gohman830fd382009-06-27 21:18:18 +0000827 return InsertBinop(Instruction::UDiv, LHS, RHS);
Nick Lewycky3c947042008-07-08 05:05:37 +0000828}
829
Dan Gohman291c2e02009-05-24 18:06:31 +0000830/// Move parts of Base into Rest to leave Base with the minimal
831/// expression that provides a pointer operand suitable for a
832/// GEP expansion.
Dan Gohmanaf752342009-07-07 17:06:11 +0000833static void ExposePointerBase(const SCEV *&Base, const SCEV *&Rest,
Dan Gohman291c2e02009-05-24 18:06:31 +0000834 ScalarEvolution &SE) {
835 while (const SCEVAddRecExpr *A = dyn_cast<SCEVAddRecExpr>(Base)) {
836 Base = A->getStart();
837 Rest = SE.getAddExpr(Rest,
Dan Gohman1d2ded72010-05-03 22:09:21 +0000838 SE.getAddRecExpr(SE.getConstant(A->getType(), 0),
Dan Gohman291c2e02009-05-24 18:06:31 +0000839 A->getStepRecurrence(SE),
Andrew Trick8b55b732011-03-14 16:50:06 +0000840 A->getLoop(),
Andrew Trickaa8ceba2013-07-14 03:10:08 +0000841 A->getNoWrapFlags(SCEV::FlagNW)));
Dan Gohman291c2e02009-05-24 18:06:31 +0000842 }
843 if (const SCEVAddExpr *A = dyn_cast<SCEVAddExpr>(Base)) {
844 Base = A->getOperand(A->getNumOperands()-1);
Dan Gohmanaf752342009-07-07 17:06:11 +0000845 SmallVector<const SCEV *, 8> NewAddOps(A->op_begin(), A->op_end());
Dan Gohman291c2e02009-05-24 18:06:31 +0000846 NewAddOps.back() = Rest;
847 Rest = SE.getAddExpr(NewAddOps);
848 ExposePointerBase(Base, Rest, SE);
849 }
850}
851
Andrew Trick7fb669a2011-10-07 23:46:21 +0000852/// Determine if this is a well-behaved chain of instructions leading back to
853/// the PHI. If so, it may be reused by expanded expressions.
854bool SCEVExpander::isNormalAddRecExprPHI(PHINode *PN, Instruction *IncV,
855 const Loop *L) {
856 if (IncV->getNumOperands() == 0 || isa<PHINode>(IncV) ||
857 (isa<CastInst>(IncV) && !isa<BitCastInst>(IncV)))
858 return false;
859 // If any of the operands don't dominate the insert position, bail.
860 // Addrec operands are always loop-invariant, so this can only happen
861 // if there are instructions which haven't been hoisted.
862 if (L == IVIncInsertLoop) {
863 for (User::op_iterator OI = IncV->op_begin()+1,
864 OE = IncV->op_end(); OI != OE; ++OI)
865 if (Instruction *OInst = dyn_cast<Instruction>(OI))
866 if (!SE.DT->dominates(OInst, IVIncInsertPos))
867 return false;
868 }
869 // Advance to the next instruction.
870 IncV = dyn_cast<Instruction>(IncV->getOperand(0));
871 if (!IncV)
872 return false;
873
874 if (IncV->mayHaveSideEffects())
875 return false;
876
877 if (IncV != PN)
878 return true;
879
880 return isNormalAddRecExprPHI(PN, IncV, L);
881}
882
Andrew Trickc908b432012-01-20 07:41:13 +0000883/// getIVIncOperand returns an induction variable increment's induction
884/// variable operand.
885///
886/// If allowScale is set, any type of GEP is allowed as long as the nonIV
887/// operands dominate InsertPos.
888///
889/// If allowScale is not set, ensure that a GEP increment conforms to one of the
890/// simple patterns generated by getAddRecExprPHILiterally and
891/// expandAddtoGEP. If the pattern isn't recognized, return NULL.
892Instruction *SCEVExpander::getIVIncOperand(Instruction *IncV,
893 Instruction *InsertPos,
894 bool allowScale) {
895 if (IncV == InsertPos)
Craig Topper9f008862014-04-15 04:59:12 +0000896 return nullptr;
Andrew Trickc908b432012-01-20 07:41:13 +0000897
898 switch (IncV->getOpcode()) {
899 default:
Craig Topper9f008862014-04-15 04:59:12 +0000900 return nullptr;
Andrew Trickc908b432012-01-20 07:41:13 +0000901 // Check for a simple Add/Sub or GEP of a loop invariant step.
902 case Instruction::Add:
903 case Instruction::Sub: {
904 Instruction *OInst = dyn_cast<Instruction>(IncV->getOperand(1));
Rafael Espindola94df2672012-02-26 02:19:19 +0000905 if (!OInst || SE.DT->dominates(OInst, InsertPos))
Andrew Trickc908b432012-01-20 07:41:13 +0000906 return dyn_cast<Instruction>(IncV->getOperand(0));
Craig Topper9f008862014-04-15 04:59:12 +0000907 return nullptr;
Andrew Trickc908b432012-01-20 07:41:13 +0000908 }
909 case Instruction::BitCast:
910 return dyn_cast<Instruction>(IncV->getOperand(0));
911 case Instruction::GetElementPtr:
912 for (Instruction::op_iterator I = IncV->op_begin()+1, E = IncV->op_end();
913 I != E; ++I) {
914 if (isa<Constant>(*I))
915 continue;
916 if (Instruction *OInst = dyn_cast<Instruction>(*I)) {
Rafael Espindola94df2672012-02-26 02:19:19 +0000917 if (!SE.DT->dominates(OInst, InsertPos))
Craig Topper9f008862014-04-15 04:59:12 +0000918 return nullptr;
Andrew Trickc908b432012-01-20 07:41:13 +0000919 }
920 if (allowScale) {
921 // allow any kind of GEP as long as it can be hoisted.
922 continue;
923 }
924 // This must be a pointer addition of constants (pretty), which is already
925 // handled, or some number of address-size elements (ugly). Ugly geps
926 // have 2 operands. i1* is used by the expander to represent an
927 // address-size element.
928 if (IncV->getNumOperands() != 2)
Craig Topper9f008862014-04-15 04:59:12 +0000929 return nullptr;
Andrew Trickc908b432012-01-20 07:41:13 +0000930 unsigned AS = cast<PointerType>(IncV->getType())->getAddressSpace();
931 if (IncV->getType() != Type::getInt1PtrTy(SE.getContext(), AS)
932 && IncV->getType() != Type::getInt8PtrTy(SE.getContext(), AS))
Craig Topper9f008862014-04-15 04:59:12 +0000933 return nullptr;
Andrew Trickc908b432012-01-20 07:41:13 +0000934 break;
935 }
936 return dyn_cast<Instruction>(IncV->getOperand(0));
937 }
938}
939
940/// hoistStep - Attempt to hoist a simple IV increment above InsertPos to make
941/// it available to other uses in this loop. Recursively hoist any operands,
942/// until we reach a value that dominates InsertPos.
943bool SCEVExpander::hoistIVInc(Instruction *IncV, Instruction *InsertPos) {
Rafael Espindola94df2672012-02-26 02:19:19 +0000944 if (SE.DT->dominates(IncV, InsertPos))
Andrew Trickc908b432012-01-20 07:41:13 +0000945 return true;
946
947 // InsertPos must itself dominate IncV so that IncV's new position satisfies
948 // its existing users.
Andrew Tricka7a3de12012-05-22 17:39:59 +0000949 if (isa<PHINode>(InsertPos)
950 || !SE.DT->dominates(InsertPos->getParent(), IncV->getParent()))
Andrew Trickc908b432012-01-20 07:41:13 +0000951 return false;
952
953 // Check that the chain of IV operands leading back to Phi can be hoisted.
954 SmallVector<Instruction*, 4> IVIncs;
955 for(;;) {
956 Instruction *Oper = getIVIncOperand(IncV, InsertPos, /*allowScale*/true);
957 if (!Oper)
958 return false;
959 // IncV is safe to hoist.
960 IVIncs.push_back(IncV);
961 IncV = Oper;
Rafael Espindola94df2672012-02-26 02:19:19 +0000962 if (SE.DT->dominates(IncV, InsertPos))
Andrew Trickc908b432012-01-20 07:41:13 +0000963 break;
964 }
965 for (SmallVectorImpl<Instruction*>::reverse_iterator I = IVIncs.rbegin(),
966 E = IVIncs.rend(); I != E; ++I) {
967 (*I)->moveBefore(InsertPos);
968 }
969 return true;
970}
971
Andrew Trick7fb669a2011-10-07 23:46:21 +0000972/// Determine if this cyclic phi is in a form that would have been generated by
973/// LSR. We don't care if the phi was actually expanded in this pass, as long
974/// as it is in a low-cost form, for example, no implied multiplication. This
975/// should match any patterns generated by getAddRecExprPHILiterally and
976/// expandAddtoGEP.
977bool SCEVExpander::isExpandedAddRecExprPHI(PHINode *PN, Instruction *IncV,
Andrew Trickfd4ca0f2011-10-15 06:19:55 +0000978 const Loop *L) {
Andrew Trickc908b432012-01-20 07:41:13 +0000979 for(Instruction *IVOper = IncV;
980 (IVOper = getIVIncOperand(IVOper, L->getLoopPreheader()->getTerminator(),
981 /*allowScale=*/false));) {
982 if (IVOper == PN)
983 return true;
Andrew Trick7fb669a2011-10-07 23:46:21 +0000984 }
Andrew Trickc908b432012-01-20 07:41:13 +0000985 return false;
Andrew Trick7fb669a2011-10-07 23:46:21 +0000986}
987
Andrew Trickceafa2c2011-11-30 06:07:54 +0000988/// expandIVInc - Expand an IV increment at Builder's current InsertPos.
989/// Typically this is the LatchBlock terminator or IVIncInsertPos, but we may
990/// need to materialize IV increments elsewhere to handle difficult situations.
991Value *SCEVExpander::expandIVInc(PHINode *PN, Value *StepV, const Loop *L,
992 Type *ExpandTy, Type *IntTy,
993 bool useSubtract) {
994 Value *IncV;
995 // If the PHI is a pointer, use a GEP, otherwise use an add or sub.
996 if (ExpandTy->isPointerTy()) {
997 PointerType *GEPPtrTy = cast<PointerType>(ExpandTy);
998 // If the step isn't constant, don't use an implicitly scaled GEP, because
999 // that would require a multiply inside the loop.
1000 if (!isa<ConstantInt>(StepV))
1001 GEPPtrTy = PointerType::get(Type::getInt1Ty(SE.getContext()),
1002 GEPPtrTy->getAddressSpace());
1003 const SCEV *const StepArray[1] = { SE.getSCEV(StepV) };
1004 IncV = expandAddToGEP(StepArray, StepArray+1, GEPPtrTy, IntTy, PN);
1005 if (IncV->getType() != PN->getType()) {
1006 IncV = Builder.CreateBitCast(IncV, PN->getType());
1007 rememberInstruction(IncV);
1008 }
1009 } else {
1010 IncV = useSubtract ?
1011 Builder.CreateSub(PN, StepV, Twine(IVName) + ".iv.next") :
1012 Builder.CreateAdd(PN, StepV, Twine(IVName) + ".iv.next");
1013 rememberInstruction(IncV);
1014 }
1015 return IncV;
1016}
1017
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001018/// \brief Hoist the addrec instruction chain rooted in the loop phi above the
1019/// position. This routine assumes that this is possible (has been checked).
1020static void hoistBeforePos(DominatorTree *DT, Instruction *InstToHoist,
1021 Instruction *Pos, PHINode *LoopPhi) {
1022 do {
1023 if (DT->dominates(InstToHoist, Pos))
1024 break;
1025 // Make sure the increment is where we want it. But don't move it
1026 // down past a potential existing post-inc user.
1027 InstToHoist->moveBefore(Pos);
1028 Pos = InstToHoist;
1029 InstToHoist = cast<Instruction>(InstToHoist->getOperand(0));
1030 } while (InstToHoist != LoopPhi);
1031}
1032
1033/// \brief Check whether we can cheaply express the requested SCEV in terms of
1034/// the available PHI SCEV by truncation and/or invertion of the step.
1035static bool canBeCheaplyTransformed(ScalarEvolution &SE,
1036 const SCEVAddRecExpr *Phi,
1037 const SCEVAddRecExpr *Requested,
1038 bool &InvertStep) {
1039 Type *PhiTy = SE.getEffectiveSCEVType(Phi->getType());
1040 Type *RequestedTy = SE.getEffectiveSCEVType(Requested->getType());
1041
1042 if (RequestedTy->getIntegerBitWidth() > PhiTy->getIntegerBitWidth())
1043 return false;
1044
1045 // Try truncate it if necessary.
1046 Phi = dyn_cast<SCEVAddRecExpr>(SE.getTruncateOrNoop(Phi, RequestedTy));
1047 if (!Phi)
1048 return false;
1049
1050 // Check whether truncation will help.
1051 if (Phi == Requested) {
1052 InvertStep = false;
1053 return true;
1054 }
1055
1056 // Check whether inverting will help: {R,+,-1} == R - {0,+,1}.
1057 if (SE.getAddExpr(Requested->getStart(),
1058 SE.getNegativeSCEV(Requested)) == Phi) {
1059 InvertStep = true;
1060 return true;
1061 }
1062
1063 return false;
1064}
1065
Sanjoy Dasdcc84db2015-02-25 20:02:59 +00001066static bool IsIncrementNSW(ScalarEvolution &SE, const SCEVAddRecExpr *AR) {
1067 if (!isa<IntegerType>(AR->getType()))
1068 return false;
1069
1070 unsigned BitWidth = cast<IntegerType>(AR->getType())->getBitWidth();
1071 Type *WideTy = IntegerType::get(AR->getType()->getContext(), BitWidth * 2);
1072 const SCEV *Step = AR->getStepRecurrence(SE);
1073 const SCEV *OpAfterExtend = SE.getAddExpr(SE.getSignExtendExpr(Step, WideTy),
1074 SE.getSignExtendExpr(AR, WideTy));
1075 const SCEV *ExtendAfterOp =
1076 SE.getSignExtendExpr(SE.getAddExpr(AR, Step), WideTy);
1077 return ExtendAfterOp == OpAfterExtend;
1078}
1079
1080static bool IsIncrementNUW(ScalarEvolution &SE, const SCEVAddRecExpr *AR) {
1081 if (!isa<IntegerType>(AR->getType()))
1082 return false;
1083
1084 unsigned BitWidth = cast<IntegerType>(AR->getType())->getBitWidth();
1085 Type *WideTy = IntegerType::get(AR->getType()->getContext(), BitWidth * 2);
1086 const SCEV *Step = AR->getStepRecurrence(SE);
1087 const SCEV *OpAfterExtend = SE.getAddExpr(SE.getZeroExtendExpr(Step, WideTy),
1088 SE.getZeroExtendExpr(AR, WideTy));
1089 const SCEV *ExtendAfterOp =
1090 SE.getZeroExtendExpr(SE.getAddExpr(AR, Step), WideTy);
1091 return ExtendAfterOp == OpAfterExtend;
1092}
1093
Dan Gohman51ad99d2010-01-21 02:09:26 +00001094/// getAddRecExprPHILiterally - Helper for expandAddRecExprLiterally. Expand
1095/// the base addrec, which is the addrec without any non-loop-dominating
1096/// values, and return the PHI.
1097PHINode *
1098SCEVExpander::getAddRecExprPHILiterally(const SCEVAddRecExpr *Normalized,
1099 const Loop *L,
Chris Lattner229907c2011-07-18 04:54:35 +00001100 Type *ExpandTy,
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001101 Type *IntTy,
1102 Type *&TruncTy,
1103 bool &InvertStep) {
Benjamin Kramera7606b992011-07-16 22:26:27 +00001104 assert((!IVIncInsertLoop||IVIncInsertPos) && "Uninitialized insert position");
Andrew Trick244e2c32011-07-16 00:59:39 +00001105
Dan Gohman51ad99d2010-01-21 02:09:26 +00001106 // Reuse a previously-inserted PHI, if present.
Andrew Trick7fb669a2011-10-07 23:46:21 +00001107 BasicBlock *LatchBlock = L->getLoopLatch();
1108 if (LatchBlock) {
Craig Topper9f008862014-04-15 04:59:12 +00001109 PHINode *AddRecPhiMatch = nullptr;
1110 Instruction *IncV = nullptr;
1111 TruncTy = nullptr;
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001112 InvertStep = false;
1113
1114 // Only try partially matching scevs that need truncation and/or
1115 // step-inversion if we know this loop is outside the current loop.
1116 bool TryNonMatchingSCEV = IVIncInsertLoop &&
1117 SE.DT->properlyDominates(LatchBlock, IVIncInsertLoop->getHeader());
1118
Andrew Trick7fb669a2011-10-07 23:46:21 +00001119 for (BasicBlock::iterator I = L->getHeader()->begin();
1120 PHINode *PN = dyn_cast<PHINode>(I); ++I) {
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001121 if (!SE.isSCEVable(PN->getType()))
Andrew Trick7fb669a2011-10-07 23:46:21 +00001122 continue;
Dan Gohman148a9722010-02-16 00:20:08 +00001123
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001124 const SCEVAddRecExpr *PhiSCEV = dyn_cast<SCEVAddRecExpr>(SE.getSCEV(PN));
1125 if (!PhiSCEV)
1126 continue;
Dan Gohman148a9722010-02-16 00:20:08 +00001127
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001128 bool IsMatchingSCEV = PhiSCEV == Normalized;
1129 // We only handle truncation and inversion of phi recurrences for the
1130 // expanded expression if the expanded expression's loop dominates the
1131 // loop we insert to. Check now, so we can bail out early.
1132 if (!IsMatchingSCEV && !TryNonMatchingSCEV)
1133 continue;
1134
1135 Instruction *TempIncV =
1136 cast<Instruction>(PN->getIncomingValueForBlock(LatchBlock));
1137
1138 // Check whether we can reuse this PHI node.
Andrew Trick7fb669a2011-10-07 23:46:21 +00001139 if (LSRMode) {
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001140 if (!isExpandedAddRecExprPHI(PN, TempIncV, L))
Andrew Trick7fb669a2011-10-07 23:46:21 +00001141 continue;
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001142 if (L == IVIncInsertLoop && !hoistIVInc(TempIncV, IVIncInsertPos))
1143 continue;
1144 } else {
1145 if (!isNormalAddRecExprPHI(PN, TempIncV, L))
Andrew Trickc908b432012-01-20 07:41:13 +00001146 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00001147 }
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001148
1149 // Stop if we have found an exact match SCEV.
1150 if (IsMatchingSCEV) {
1151 IncV = TempIncV;
Craig Topper9f008862014-04-15 04:59:12 +00001152 TruncTy = nullptr;
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001153 InvertStep = false;
1154 AddRecPhiMatch = PN;
1155 break;
Andrew Trick7fb669a2011-10-07 23:46:21 +00001156 }
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001157
1158 // Try whether the phi can be translated into the requested form
1159 // (truncated and/or offset by a constant).
1160 if ((!TruncTy || InvertStep) &&
1161 canBeCheaplyTransformed(SE, PhiSCEV, Normalized, InvertStep)) {
1162 // Record the phi node. But don't stop we might find an exact match
1163 // later.
1164 AddRecPhiMatch = PN;
1165 IncV = TempIncV;
1166 TruncTy = SE.getEffectiveSCEVType(Normalized->getType());
1167 }
1168 }
1169
1170 if (AddRecPhiMatch) {
1171 // Potentially, move the increment. We have made sure in
1172 // isExpandedAddRecExprPHI or hoistIVInc that this is possible.
1173 if (L == IVIncInsertLoop)
1174 hoistBeforePos(SE.DT, IncV, IVIncInsertPos, AddRecPhiMatch);
1175
Andrew Trick7fb669a2011-10-07 23:46:21 +00001176 // Ok, the add recurrence looks usable.
1177 // Remember this PHI, even in post-inc mode.
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001178 InsertedValues.insert(AddRecPhiMatch);
Andrew Trick7fb669a2011-10-07 23:46:21 +00001179 // Remember the increment.
1180 rememberInstruction(IncV);
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001181 return AddRecPhiMatch;
Andrew Trick7fb669a2011-10-07 23:46:21 +00001182 }
1183 }
Dan Gohman51ad99d2010-01-21 02:09:26 +00001184
Sanjoy Dasdcc84db2015-02-25 20:02:59 +00001185 bool IncrementIsNUW = IsIncrementNUW(SE, Normalized);
1186 bool IncrementIsNSW = IsIncrementNSW(SE, Normalized);
1187
Dan Gohman51ad99d2010-01-21 02:09:26 +00001188 // Save the original insertion point so we can restore it when we're done.
Benjamin Kramer6e931522013-09-30 15:40:17 +00001189 BuilderType::InsertPointGuard Guard(Builder);
Dan Gohman51ad99d2010-01-21 02:09:26 +00001190
Andrew Trickb9aa26f2011-12-20 01:42:24 +00001191 // Another AddRec may need to be recursively expanded below. For example, if
1192 // this AddRec is quadratic, the StepV may itself be an AddRec in this
1193 // loop. Remove this loop from the PostIncLoops set before expanding such
1194 // AddRecs. Otherwise, we cannot find a valid position for the step
1195 // (i.e. StepV can never dominate its loop header). Ideally, we could do
1196 // SavedIncLoops.swap(PostIncLoops), but we generally have a single element,
1197 // so it's not worth implementing SmallPtrSet::swap.
1198 PostIncLoopSet SavedPostIncLoops = PostIncLoops;
1199 PostIncLoops.clear();
1200
Dan Gohman51ad99d2010-01-21 02:09:26 +00001201 // Expand code for the start value.
1202 Value *StartV = expandCodeFor(Normalized->getStart(), ExpandTy,
1203 L->getHeader()->begin());
1204
Andrew Trick244e2c32011-07-16 00:59:39 +00001205 // StartV must be hoisted into L's preheader to dominate the new phi.
Benjamin Kramera7606b992011-07-16 22:26:27 +00001206 assert(!isa<Instruction>(StartV) ||
1207 SE.DT->properlyDominates(cast<Instruction>(StartV)->getParent(),
1208 L->getHeader()));
Andrew Trick244e2c32011-07-16 00:59:39 +00001209
Andrew Trickceafa2c2011-11-30 06:07:54 +00001210 // Expand code for the step value. Do this before creating the PHI so that PHI
1211 // reuse code doesn't see an incomplete PHI.
Dan Gohman51ad99d2010-01-21 02:09:26 +00001212 const SCEV *Step = Normalized->getStepRecurrence(SE);
Andrew Trickceafa2c2011-11-30 06:07:54 +00001213 // If the stride is negative, insert a sub instead of an add for the increment
1214 // (unless it's a constant, because subtracts of constants are canonicalized
1215 // to adds).
Andrew Trick881a7762012-01-07 00:27:31 +00001216 bool useSubtract = !ExpandTy->isPointerTy() && Step->isNonConstantNegative();
Andrew Trickceafa2c2011-11-30 06:07:54 +00001217 if (useSubtract)
Dan Gohman51ad99d2010-01-21 02:09:26 +00001218 Step = SE.getNegativeSCEV(Step);
Andrew Trickceafa2c2011-11-30 06:07:54 +00001219 // Expand the step somewhere that dominates the loop header.
Dan Gohman51ad99d2010-01-21 02:09:26 +00001220 Value *StepV = expandCodeFor(Step, IntTy, L->getHeader()->begin());
1221
1222 // Create the PHI.
Jay Foade0938d82011-03-30 11:19:20 +00001223 BasicBlock *Header = L->getHeader();
1224 Builder.SetInsertPoint(Header, Header->begin());
1225 pred_iterator HPB = pred_begin(Header), HPE = pred_end(Header);
Andrew Trick411daa52011-06-28 05:07:32 +00001226 PHINode *PN = Builder.CreatePHI(ExpandTy, std::distance(HPB, HPE),
Andrew Trick154d78a2011-06-28 05:41:52 +00001227 Twine(IVName) + ".iv");
Dan Gohman51ad99d2010-01-21 02:09:26 +00001228 rememberInstruction(PN);
1229
1230 // Create the step instructions and populate the PHI.
Jay Foade0938d82011-03-30 11:19:20 +00001231 for (pred_iterator HPI = HPB; HPI != HPE; ++HPI) {
Dan Gohman51ad99d2010-01-21 02:09:26 +00001232 BasicBlock *Pred = *HPI;
1233
1234 // Add a start value.
1235 if (!L->contains(Pred)) {
1236 PN->addIncoming(StartV, Pred);
1237 continue;
1238 }
1239
Andrew Trickceafa2c2011-11-30 06:07:54 +00001240 // Create a step value and add it to the PHI.
1241 // If IVIncInsertLoop is non-null and equal to the addrec's loop, insert the
1242 // instructions at IVIncInsertPos.
Dan Gohman51ad99d2010-01-21 02:09:26 +00001243 Instruction *InsertPos = L == IVIncInsertLoop ?
1244 IVIncInsertPos : Pred->getTerminator();
Devang Patelc3239d32011-07-05 21:48:22 +00001245 Builder.SetInsertPoint(InsertPos);
Andrew Trickceafa2c2011-11-30 06:07:54 +00001246 Value *IncV = expandIVInc(PN, StepV, L, ExpandTy, IntTy, useSubtract);
Sanjoy Dasdcc84db2015-02-25 20:02:59 +00001247
Andrew Trick8eaae282013-07-14 02:50:07 +00001248 if (isa<OverflowingBinaryOperator>(IncV)) {
Sanjoy Dasdcc84db2015-02-25 20:02:59 +00001249 if (IncrementIsNUW)
Andrew Trick8eaae282013-07-14 02:50:07 +00001250 cast<BinaryOperator>(IncV)->setHasNoUnsignedWrap();
Sanjoy Dasdcc84db2015-02-25 20:02:59 +00001251 if (IncrementIsNSW)
Andrew Trick8eaae282013-07-14 02:50:07 +00001252 cast<BinaryOperator>(IncV)->setHasNoSignedWrap();
1253 }
Dan Gohman51ad99d2010-01-21 02:09:26 +00001254 PN->addIncoming(IncV, Pred);
1255 }
1256
Andrew Trickb9aa26f2011-12-20 01:42:24 +00001257 // After expanding subexpressions, restore the PostIncLoops set so the caller
1258 // can ensure that IVIncrement dominates the current uses.
1259 PostIncLoops = SavedPostIncLoops;
1260
Dan Gohman51ad99d2010-01-21 02:09:26 +00001261 // Remember this PHI, even in post-inc mode.
1262 InsertedValues.insert(PN);
1263
1264 return PN;
1265}
1266
1267Value *SCEVExpander::expandAddRecExprLiterally(const SCEVAddRecExpr *S) {
Chris Lattner229907c2011-07-18 04:54:35 +00001268 Type *STy = S->getType();
1269 Type *IntTy = SE.getEffectiveSCEVType(STy);
Dan Gohman51ad99d2010-01-21 02:09:26 +00001270 const Loop *L = S->getLoop();
1271
1272 // Determine a normalized form of this expression, which is the expression
1273 // before any post-inc adjustment is made.
1274 const SCEVAddRecExpr *Normalized = S;
Dan Gohmand006ab92010-04-07 22:27:08 +00001275 if (PostIncLoops.count(L)) {
1276 PostIncLoopSet Loops;
1277 Loops.insert(L);
1278 Normalized =
Craig Topper9f008862014-04-15 04:59:12 +00001279 cast<SCEVAddRecExpr>(TransformForPostIncUse(Normalize, S, nullptr,
1280 nullptr, Loops, SE, *SE.DT));
Dan Gohman51ad99d2010-01-21 02:09:26 +00001281 }
1282
1283 // Strip off any non-loop-dominating component from the addrec start.
1284 const SCEV *Start = Normalized->getStart();
Craig Topper9f008862014-04-15 04:59:12 +00001285 const SCEV *PostLoopOffset = nullptr;
Dan Gohman20d9ce22010-11-17 21:41:58 +00001286 if (!SE.properlyDominates(Start, L->getHeader())) {
Dan Gohman51ad99d2010-01-21 02:09:26 +00001287 PostLoopOffset = Start;
Dan Gohman1d2ded72010-05-03 22:09:21 +00001288 Start = SE.getConstant(Normalized->getType(), 0);
Andrew Trick8b55b732011-03-14 16:50:06 +00001289 Normalized = cast<SCEVAddRecExpr>(
1290 SE.getAddRecExpr(Start, Normalized->getStepRecurrence(SE),
1291 Normalized->getLoop(),
Andrew Trickaa8ceba2013-07-14 03:10:08 +00001292 Normalized->getNoWrapFlags(SCEV::FlagNW)));
Dan Gohman51ad99d2010-01-21 02:09:26 +00001293 }
1294
1295 // Strip off any non-loop-dominating component from the addrec step.
1296 const SCEV *Step = Normalized->getStepRecurrence(SE);
Craig Topper9f008862014-04-15 04:59:12 +00001297 const SCEV *PostLoopScale = nullptr;
Dan Gohman20d9ce22010-11-17 21:41:58 +00001298 if (!SE.dominates(Step, L->getHeader())) {
Dan Gohman51ad99d2010-01-21 02:09:26 +00001299 PostLoopScale = Step;
Dan Gohman1d2ded72010-05-03 22:09:21 +00001300 Step = SE.getConstant(Normalized->getType(), 1);
Dan Gohman51ad99d2010-01-21 02:09:26 +00001301 Normalized =
Andrew Trickaa8ceba2013-07-14 03:10:08 +00001302 cast<SCEVAddRecExpr>(SE.getAddRecExpr(
1303 Start, Step, Normalized->getLoop(),
1304 Normalized->getNoWrapFlags(SCEV::FlagNW)));
Dan Gohman51ad99d2010-01-21 02:09:26 +00001305 }
1306
1307 // Expand the core addrec. If we need post-loop scaling, force it to
1308 // expand to an integer type to avoid the need for additional casting.
Chris Lattner229907c2011-07-18 04:54:35 +00001309 Type *ExpandTy = PostLoopScale ? IntTy : STy;
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001310 // In some cases, we decide to reuse an existing phi node but need to truncate
1311 // it and/or invert the step.
Craig Topper9f008862014-04-15 04:59:12 +00001312 Type *TruncTy = nullptr;
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001313 bool InvertStep = false;
1314 PHINode *PN = getAddRecExprPHILiterally(Normalized, L, ExpandTy, IntTy,
1315 TruncTy, InvertStep);
Dan Gohman51ad99d2010-01-21 02:09:26 +00001316
Dan Gohman8b0a4192010-03-01 17:49:51 +00001317 // Accommodate post-inc mode, if necessary.
Dan Gohman51ad99d2010-01-21 02:09:26 +00001318 Value *Result;
Dan Gohmand006ab92010-04-07 22:27:08 +00001319 if (!PostIncLoops.count(L))
Dan Gohman51ad99d2010-01-21 02:09:26 +00001320 Result = PN;
1321 else {
1322 // In PostInc mode, use the post-incremented value.
1323 BasicBlock *LatchBlock = L->getLoopLatch();
1324 assert(LatchBlock && "PostInc mode requires a unique loop latch!");
1325 Result = PN->getIncomingValueForBlock(LatchBlock);
Andrew Trick870c1a32011-10-13 21:55:29 +00001326
1327 // For an expansion to use the postinc form, the client must call
1328 // expandCodeFor with an InsertPoint that is either outside the PostIncLoop
1329 // or dominated by IVIncInsertPos.
Andrew Trickceafa2c2011-11-30 06:07:54 +00001330 if (isa<Instruction>(Result)
1331 && !SE.DT->dominates(cast<Instruction>(Result),
1332 Builder.GetInsertPoint())) {
1333 // The induction variable's postinc expansion does not dominate this use.
1334 // IVUsers tries to prevent this case, so it is rare. However, it can
1335 // happen when an IVUser outside the loop is not dominated by the latch
1336 // block. Adjusting IVIncInsertPos before expansion begins cannot handle
1337 // all cases. Consider a phi outide whose operand is replaced during
1338 // expansion with the value of the postinc user. Without fundamentally
1339 // changing the way postinc users are tracked, the only remedy is
1340 // inserting an extra IV increment. StepV might fold into PostLoopOffset,
1341 // but hopefully expandCodeFor handles that.
1342 bool useSubtract =
Andrew Trick881a7762012-01-07 00:27:31 +00001343 !ExpandTy->isPointerTy() && Step->isNonConstantNegative();
Andrew Trickceafa2c2011-11-30 06:07:54 +00001344 if (useSubtract)
1345 Step = SE.getNegativeSCEV(Step);
Benjamin Kramer6e931522013-09-30 15:40:17 +00001346 Value *StepV;
1347 {
1348 // Expand the step somewhere that dominates the loop header.
1349 BuilderType::InsertPointGuard Guard(Builder);
1350 StepV = expandCodeFor(Step, IntTy, L->getHeader()->begin());
1351 }
Andrew Trickceafa2c2011-11-30 06:07:54 +00001352 Result = expandIVInc(PN, StepV, L, ExpandTy, IntTy, useSubtract);
1353 }
Dan Gohman51ad99d2010-01-21 02:09:26 +00001354 }
1355
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001356 // We have decided to reuse an induction variable of a dominating loop. Apply
1357 // truncation and/or invertion of the step.
1358 if (TruncTy) {
1359 Type *ResTy = Result->getType();
1360 // Normalize the result type.
1361 if (ResTy != SE.getEffectiveSCEVType(ResTy))
1362 Result = InsertNoopCastOfTo(Result, SE.getEffectiveSCEVType(ResTy));
1363 // Truncate the result.
1364 if (TruncTy != Result->getType()) {
1365 Result = Builder.CreateTrunc(Result, TruncTy);
1366 rememberInstruction(Result);
1367 }
1368 // Invert the result.
1369 if (InvertStep) {
1370 Result = Builder.CreateSub(expandCodeFor(Normalized->getStart(), TruncTy),
1371 Result);
1372 rememberInstruction(Result);
1373 }
1374 }
1375
Dan Gohman51ad99d2010-01-21 02:09:26 +00001376 // Re-apply any non-loop-dominating scale.
1377 if (PostLoopScale) {
Andrew Trick57243da2013-10-25 21:35:56 +00001378 assert(S->isAffine() && "Can't linearly scale non-affine recurrences.");
Dan Gohman1a8674e2010-02-12 20:39:25 +00001379 Result = InsertNoopCastOfTo(Result, IntTy);
Dan Gohman51ad99d2010-01-21 02:09:26 +00001380 Result = Builder.CreateMul(Result,
1381 expandCodeFor(PostLoopScale, IntTy));
1382 rememberInstruction(Result);
1383 }
1384
1385 // Re-apply any non-loop-dominating offset.
1386 if (PostLoopOffset) {
Chris Lattner229907c2011-07-18 04:54:35 +00001387 if (PointerType *PTy = dyn_cast<PointerType>(ExpandTy)) {
Dan Gohman51ad99d2010-01-21 02:09:26 +00001388 const SCEV *const OffsetArray[1] = { PostLoopOffset };
1389 Result = expandAddToGEP(OffsetArray, OffsetArray+1, PTy, IntTy, Result);
1390 } else {
Dan Gohman1a8674e2010-02-12 20:39:25 +00001391 Result = InsertNoopCastOfTo(Result, IntTy);
Dan Gohman51ad99d2010-01-21 02:09:26 +00001392 Result = Builder.CreateAdd(Result,
1393 expandCodeFor(PostLoopOffset, IntTy));
1394 rememberInstruction(Result);
1395 }
1396 }
1397
1398 return Result;
1399}
1400
Dan Gohman056857a2009-04-18 17:56:28 +00001401Value *SCEVExpander::visitAddRecExpr(const SCEVAddRecExpr *S) {
Dan Gohman51ad99d2010-01-21 02:09:26 +00001402 if (!CanonicalMode) return expandAddRecExprLiterally(S);
1403
Chris Lattner229907c2011-07-18 04:54:35 +00001404 Type *Ty = SE.getEffectiveSCEVType(S->getType());
Nate Begeman2bca4d92005-07-30 00:12:19 +00001405 const Loop *L = S->getLoop();
Nate Begeman2bca4d92005-07-30 00:12:19 +00001406
Dan Gohman426901a2009-06-13 16:25:49 +00001407 // First check for an existing canonical IV in a suitable type.
Craig Topper9f008862014-04-15 04:59:12 +00001408 PHINode *CanonicalIV = nullptr;
Dan Gohman426901a2009-06-13 16:25:49 +00001409 if (PHINode *PN = L->getCanonicalInductionVariable())
Dan Gohman31158752010-07-20 16:46:58 +00001410 if (SE.getTypeSizeInBits(PN->getType()) >= SE.getTypeSizeInBits(Ty))
Dan Gohman426901a2009-06-13 16:25:49 +00001411 CanonicalIV = PN;
1412
1413 // Rewrite an AddRec in terms of the canonical induction variable, if
1414 // its type is more narrow.
1415 if (CanonicalIV &&
1416 SE.getTypeSizeInBits(CanonicalIV->getType()) >
1417 SE.getTypeSizeInBits(Ty)) {
Dan Gohman00524492010-03-18 01:17:13 +00001418 SmallVector<const SCEV *, 4> NewOps(S->getNumOperands());
1419 for (unsigned i = 0, e = S->getNumOperands(); i != e; ++i)
1420 NewOps[i] = SE.getAnyExtendExpr(S->op_begin()[i], CanonicalIV->getType());
Andrew Trick8b55b732011-03-14 16:50:06 +00001421 Value *V = expand(SE.getAddRecExpr(NewOps, S->getLoop(),
Andrew Trickaa8ceba2013-07-14 03:10:08 +00001422 S->getNoWrapFlags(SCEV::FlagNW)));
Dan Gohman426901a2009-06-13 16:25:49 +00001423 BasicBlock::iterator NewInsertPt =
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001424 std::next(BasicBlock::iterator(cast<Instruction>(V)));
Benjamin Kramer6e931522013-09-30 15:40:17 +00001425 BuilderType::InsertPointGuard Guard(Builder);
Bill Wendling86c5cbe2011-08-24 21:06:46 +00001426 while (isa<PHINode>(NewInsertPt) || isa<DbgInfoIntrinsic>(NewInsertPt) ||
1427 isa<LandingPadInst>(NewInsertPt))
Jim Grosbachfd3b4e72010-06-16 21:13:38 +00001428 ++NewInsertPt;
Craig Topper9f008862014-04-15 04:59:12 +00001429 V = expandCodeFor(SE.getTruncateExpr(SE.getUnknown(V), Ty), nullptr,
Dan Gohman426901a2009-06-13 16:25:49 +00001430 NewInsertPt);
Dan Gohman426901a2009-06-13 16:25:49 +00001431 return V;
1432 }
1433
Nate Begeman2bca4d92005-07-30 00:12:19 +00001434 // {X,+,F} --> X + {0,+,F}
Dan Gohmanbe928e32008-06-18 16:23:07 +00001435 if (!S->getStart()->isZero()) {
Dan Gohman00524492010-03-18 01:17:13 +00001436 SmallVector<const SCEV *, 4> NewOps(S->op_begin(), S->op_end());
Dan Gohman1d2ded72010-05-03 22:09:21 +00001437 NewOps[0] = SE.getConstant(Ty, 0);
Andrew Trickaa8ceba2013-07-14 03:10:08 +00001438 const SCEV *Rest = SE.getAddRecExpr(NewOps, L,
1439 S->getNoWrapFlags(SCEV::FlagNW));
Dan Gohman291c2e02009-05-24 18:06:31 +00001440
1441 // Turn things like ptrtoint+arithmetic+inttoptr into GEP. See the
1442 // comments on expandAddToGEP for details.
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +00001443 const SCEV *Base = S->getStart();
1444 const SCEV *RestArray[1] = { Rest };
1445 // Dig into the expression to find the pointer base for a GEP.
1446 ExposePointerBase(Base, RestArray[0], SE);
1447 // If we found a pointer, expand the AddRec with a GEP.
Chris Lattner229907c2011-07-18 04:54:35 +00001448 if (PointerType *PTy = dyn_cast<PointerType>(Base->getType())) {
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +00001449 // Make sure the Base isn't something exotic, such as a multiplied
1450 // or divided pointer value. In those cases, the result type isn't
1451 // actually a pointer type.
1452 if (!isa<SCEVMulExpr>(Base) && !isa<SCEVUDivExpr>(Base)) {
1453 Value *StartV = expand(Base);
1454 assert(StartV->getType() == PTy && "Pointer type mismatch for GEP!");
1455 return expandAddToGEP(RestArray, RestArray+1, PTy, Ty, StartV);
Dan Gohman291c2e02009-05-24 18:06:31 +00001456 }
1457 }
1458
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001459 // Just do a normal add. Pre-expand the operands to suppress folding.
1460 return expand(SE.getAddExpr(SE.getUnknown(expand(S->getStart())),
1461 SE.getUnknown(expand(Rest))));
Nate Begeman2bca4d92005-07-30 00:12:19 +00001462 }
1463
Dan Gohmancd838702010-07-26 18:28:14 +00001464 // If we don't yet have a canonical IV, create one.
1465 if (!CanonicalIV) {
Nate Begeman2bca4d92005-07-30 00:12:19 +00001466 // Create and insert the PHI node for the induction variable in the
1467 // specified loop.
1468 BasicBlock *Header = L->getHeader();
Jay Foade0938d82011-03-30 11:19:20 +00001469 pred_iterator HPB = pred_begin(Header), HPE = pred_end(Header);
Jay Foad52131342011-03-30 11:28:46 +00001470 CanonicalIV = PHINode::Create(Ty, std::distance(HPB, HPE), "indvar",
1471 Header->begin());
Dan Gohmancd838702010-07-26 18:28:14 +00001472 rememberInstruction(CanonicalIV);
Nate Begeman2bca4d92005-07-30 00:12:19 +00001473
Hal Finkel3f5279c2013-08-18 00:16:23 +00001474 SmallSet<BasicBlock *, 4> PredSeen;
Owen Andersonedb4a702009-07-24 23:12:02 +00001475 Constant *One = ConstantInt::get(Ty, 1);
Jay Foade0938d82011-03-30 11:19:20 +00001476 for (pred_iterator HPI = HPB; HPI != HPE; ++HPI) {
Gabor Greife82532a2010-07-09 15:40:10 +00001477 BasicBlock *HP = *HPI;
David Blaikie70573dc2014-11-19 07:49:26 +00001478 if (!PredSeen.insert(HP).second) {
Hal Finkel36eff0f2014-07-31 19:13:38 +00001479 // There must be an incoming value for each predecessor, even the
1480 // duplicates!
1481 CanonicalIV->addIncoming(CanonicalIV->getIncomingValueForBlock(HP), HP);
Hal Finkel3f5279c2013-08-18 00:16:23 +00001482 continue;
Hal Finkel36eff0f2014-07-31 19:13:38 +00001483 }
Hal Finkel3f5279c2013-08-18 00:16:23 +00001484
Gabor Greife82532a2010-07-09 15:40:10 +00001485 if (L->contains(HP)) {
Dan Gohman510bffc2010-01-19 22:26:02 +00001486 // Insert a unit add instruction right before the terminator
1487 // corresponding to the back-edge.
Dan Gohmancd838702010-07-26 18:28:14 +00001488 Instruction *Add = BinaryOperator::CreateAdd(CanonicalIV, One,
1489 "indvar.next",
1490 HP->getTerminator());
Devang Patelccf8dbf2011-06-22 20:56:56 +00001491 Add->setDebugLoc(HP->getTerminator()->getDebugLoc());
Dan Gohman51ad99d2010-01-21 02:09:26 +00001492 rememberInstruction(Add);
Dan Gohmancd838702010-07-26 18:28:14 +00001493 CanonicalIV->addIncoming(Add, HP);
Dan Gohman2aab8672009-09-27 17:46:40 +00001494 } else {
Dan Gohmancd838702010-07-26 18:28:14 +00001495 CanonicalIV->addIncoming(Constant::getNullValue(Ty), HP);
Dan Gohman2aab8672009-09-27 17:46:40 +00001496 }
Gabor Greife82532a2010-07-09 15:40:10 +00001497 }
Nate Begeman2bca4d92005-07-30 00:12:19 +00001498 }
1499
Dan Gohmancd838702010-07-26 18:28:14 +00001500 // {0,+,1} --> Insert a canonical induction variable into the loop!
1501 if (S->isAffine() && S->getOperand(1)->isOne()) {
1502 assert(Ty == SE.getEffectiveSCEVType(CanonicalIV->getType()) &&
1503 "IVs with types different from the canonical IV should "
1504 "already have been handled!");
1505 return CanonicalIV;
1506 }
1507
Dan Gohman426901a2009-06-13 16:25:49 +00001508 // {0,+,F} --> {0,+,1} * F
Nate Begeman2bca4d92005-07-30 00:12:19 +00001509
Chris Lattnerf0b77f92005-10-30 06:24:33 +00001510 // If this is a simple linear addrec, emit it now as a special case.
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001511 if (S->isAffine()) // {0,+,F} --> i*F
1512 return
1513 expand(SE.getTruncateOrNoop(
Dan Gohmancd838702010-07-26 18:28:14 +00001514 SE.getMulExpr(SE.getUnknown(CanonicalIV),
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001515 SE.getNoopOrAnyExtend(S->getOperand(1),
Dan Gohmancd838702010-07-26 18:28:14 +00001516 CanonicalIV->getType())),
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001517 Ty));
Nate Begeman2bca4d92005-07-30 00:12:19 +00001518
1519 // If this is a chain of recurrences, turn it into a closed form, using the
1520 // folders, then expandCodeFor the closed form. This allows the folders to
1521 // simplify the expression without having to build a bunch of special code
1522 // into this folder.
Dan Gohmancd838702010-07-26 18:28:14 +00001523 const SCEV *IH = SE.getUnknown(CanonicalIV); // Get I as a "symbolic" SCEV.
Nate Begeman2bca4d92005-07-30 00:12:19 +00001524
Dan Gohman426901a2009-06-13 16:25:49 +00001525 // Promote S up to the canonical IV type, if the cast is foldable.
Dan Gohmanaf752342009-07-07 17:06:11 +00001526 const SCEV *NewS = S;
Dan Gohmancd838702010-07-26 18:28:14 +00001527 const SCEV *Ext = SE.getNoopOrAnyExtend(S, CanonicalIV->getType());
Dan Gohman426901a2009-06-13 16:25:49 +00001528 if (isa<SCEVAddRecExpr>(Ext))
1529 NewS = Ext;
1530
Dan Gohmanaf752342009-07-07 17:06:11 +00001531 const SCEV *V = cast<SCEVAddRecExpr>(NewS)->evaluateAtIteration(IH, SE);
Bill Wendlingf3baad32006-12-07 01:30:32 +00001532 //cerr << "Evaluated: " << *this << "\n to: " << *V << "\n";
Nate Begeman2bca4d92005-07-30 00:12:19 +00001533
Dan Gohman426901a2009-06-13 16:25:49 +00001534 // Truncate the result down to the original type, if needed.
Dan Gohmanaf752342009-07-07 17:06:11 +00001535 const SCEV *T = SE.getTruncateOrNoop(V, Ty);
Dan Gohmanfd761132009-06-22 22:08:45 +00001536 return expand(T);
Nate Begeman2bca4d92005-07-30 00:12:19 +00001537}
Anton Korobeynikov5849a622007-08-20 21:17:26 +00001538
Dan Gohman056857a2009-04-18 17:56:28 +00001539Value *SCEVExpander::visitTruncateExpr(const SCEVTruncateExpr *S) {
Chris Lattner229907c2011-07-18 04:54:35 +00001540 Type *Ty = SE.getEffectiveSCEVType(S->getType());
Dan Gohmanb8597bd2009-06-09 17:18:38 +00001541 Value *V = expandCodeFor(S->getOperand(),
1542 SE.getEffectiveSCEVType(S->getOperand()->getType()));
Benjamin Kramer547b6c52011-09-27 20:39:19 +00001543 Value *I = Builder.CreateTrunc(V, Ty);
Dan Gohman51ad99d2010-01-21 02:09:26 +00001544 rememberInstruction(I);
Dan Gohmand195a222009-05-01 17:13:31 +00001545 return I;
Dan Gohman0e4cf892008-06-22 19:09:18 +00001546}
1547
Dan Gohman056857a2009-04-18 17:56:28 +00001548Value *SCEVExpander::visitZeroExtendExpr(const SCEVZeroExtendExpr *S) {
Chris Lattner229907c2011-07-18 04:54:35 +00001549 Type *Ty = SE.getEffectiveSCEVType(S->getType());
Dan Gohmanb8597bd2009-06-09 17:18:38 +00001550 Value *V = expandCodeFor(S->getOperand(),
1551 SE.getEffectiveSCEVType(S->getOperand()->getType()));
Benjamin Kramer547b6c52011-09-27 20:39:19 +00001552 Value *I = Builder.CreateZExt(V, Ty);
Dan Gohman51ad99d2010-01-21 02:09:26 +00001553 rememberInstruction(I);
Dan Gohmand195a222009-05-01 17:13:31 +00001554 return I;
Dan Gohman0e4cf892008-06-22 19:09:18 +00001555}
1556
Dan Gohman056857a2009-04-18 17:56:28 +00001557Value *SCEVExpander::visitSignExtendExpr(const SCEVSignExtendExpr *S) {
Chris Lattner229907c2011-07-18 04:54:35 +00001558 Type *Ty = SE.getEffectiveSCEVType(S->getType());
Dan Gohmanb8597bd2009-06-09 17:18:38 +00001559 Value *V = expandCodeFor(S->getOperand(),
1560 SE.getEffectiveSCEVType(S->getOperand()->getType()));
Benjamin Kramer547b6c52011-09-27 20:39:19 +00001561 Value *I = Builder.CreateSExt(V, Ty);
Dan Gohman51ad99d2010-01-21 02:09:26 +00001562 rememberInstruction(I);
Dan Gohmand195a222009-05-01 17:13:31 +00001563 return I;
Dan Gohman0e4cf892008-06-22 19:09:18 +00001564}
1565
Dan Gohman056857a2009-04-18 17:56:28 +00001566Value *SCEVExpander::visitSMaxExpr(const SCEVSMaxExpr *S) {
Dan Gohman92b969b2009-07-14 20:57:04 +00001567 Value *LHS = expand(S->getOperand(S->getNumOperands()-1));
Chris Lattner229907c2011-07-18 04:54:35 +00001568 Type *Ty = LHS->getType();
Dan Gohman92b969b2009-07-14 20:57:04 +00001569 for (int i = S->getNumOperands()-2; i >= 0; --i) {
1570 // In the case of mixed integer and pointer types, do the
1571 // rest of the comparisons as integer.
1572 if (S->getOperand(i)->getType() != Ty) {
1573 Ty = SE.getEffectiveSCEVType(Ty);
1574 LHS = InsertNoopCastOfTo(LHS, Ty);
1575 }
Dan Gohmanb8597bd2009-06-09 17:18:38 +00001576 Value *RHS = expandCodeFor(S->getOperand(i), Ty);
Benjamin Kramer547b6c52011-09-27 20:39:19 +00001577 Value *ICmp = Builder.CreateICmpSGT(LHS, RHS);
Dan Gohman51ad99d2010-01-21 02:09:26 +00001578 rememberInstruction(ICmp);
Dan Gohman830fd382009-06-27 21:18:18 +00001579 Value *Sel = Builder.CreateSelect(ICmp, LHS, RHS, "smax");
Dan Gohman51ad99d2010-01-21 02:09:26 +00001580 rememberInstruction(Sel);
Dan Gohmand195a222009-05-01 17:13:31 +00001581 LHS = Sel;
Nick Lewyckycdb7e542007-11-25 22:41:31 +00001582 }
Dan Gohman92b969b2009-07-14 20:57:04 +00001583 // In the case of mixed integer and pointer types, cast the
1584 // final result back to the pointer type.
1585 if (LHS->getType() != S->getType())
1586 LHS = InsertNoopCastOfTo(LHS, S->getType());
Nick Lewyckycdb7e542007-11-25 22:41:31 +00001587 return LHS;
1588}
1589
Dan Gohman056857a2009-04-18 17:56:28 +00001590Value *SCEVExpander::visitUMaxExpr(const SCEVUMaxExpr *S) {
Dan Gohman92b969b2009-07-14 20:57:04 +00001591 Value *LHS = expand(S->getOperand(S->getNumOperands()-1));
Chris Lattner229907c2011-07-18 04:54:35 +00001592 Type *Ty = LHS->getType();
Dan Gohman92b969b2009-07-14 20:57:04 +00001593 for (int i = S->getNumOperands()-2; i >= 0; --i) {
1594 // In the case of mixed integer and pointer types, do the
1595 // rest of the comparisons as integer.
1596 if (S->getOperand(i)->getType() != Ty) {
1597 Ty = SE.getEffectiveSCEVType(Ty);
1598 LHS = InsertNoopCastOfTo(LHS, Ty);
1599 }
Dan Gohmanb8597bd2009-06-09 17:18:38 +00001600 Value *RHS = expandCodeFor(S->getOperand(i), Ty);
Benjamin Kramer547b6c52011-09-27 20:39:19 +00001601 Value *ICmp = Builder.CreateICmpUGT(LHS, RHS);
Dan Gohman51ad99d2010-01-21 02:09:26 +00001602 rememberInstruction(ICmp);
Dan Gohman830fd382009-06-27 21:18:18 +00001603 Value *Sel = Builder.CreateSelect(ICmp, LHS, RHS, "umax");
Dan Gohman51ad99d2010-01-21 02:09:26 +00001604 rememberInstruction(Sel);
Dan Gohmand195a222009-05-01 17:13:31 +00001605 LHS = Sel;
Nick Lewycky1c44ebc2008-02-20 06:48:22 +00001606 }
Dan Gohman92b969b2009-07-14 20:57:04 +00001607 // In the case of mixed integer and pointer types, cast the
1608 // final result back to the pointer type.
1609 if (LHS->getType() != S->getType())
1610 LHS = InsertNoopCastOfTo(LHS, S->getType());
Nick Lewycky1c44ebc2008-02-20 06:48:22 +00001611 return LHS;
1612}
1613
Chris Lattner229907c2011-07-18 04:54:35 +00001614Value *SCEVExpander::expandCodeFor(const SCEV *SH, Type *Ty,
Andrew Trickc908b432012-01-20 07:41:13 +00001615 Instruction *IP) {
Dan Gohman89d4e3c2010-03-19 21:51:03 +00001616 Builder.SetInsertPoint(IP->getParent(), IP);
1617 return expandCodeFor(SH, Ty);
1618}
1619
Chris Lattner229907c2011-07-18 04:54:35 +00001620Value *SCEVExpander::expandCodeFor(const SCEV *SH, Type *Ty) {
Dan Gohman0e4cf892008-06-22 19:09:18 +00001621 // Expand the code for this SCEV.
Dan Gohman0a40ad92009-04-16 03:18:22 +00001622 Value *V = expand(SH);
Dan Gohman26494912009-05-19 02:15:55 +00001623 if (Ty) {
1624 assert(SE.getTypeSizeInBits(Ty) == SE.getTypeSizeInBits(SH->getType()) &&
1625 "non-trivial casts should be done with the SCEVs directly!");
1626 V = InsertNoopCastOfTo(V, Ty);
1627 }
1628 return V;
Dan Gohman0e4cf892008-06-22 19:09:18 +00001629}
1630
Dan Gohman056857a2009-04-18 17:56:28 +00001631Value *SCEVExpander::expand(const SCEV *S) {
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001632 // Compute an insertion point for this SCEV object. Hoist the instructions
1633 // as far out in the loop nest as possible.
Dan Gohman830fd382009-06-27 21:18:18 +00001634 Instruction *InsertPt = Builder.GetInsertPoint();
1635 for (Loop *L = SE.LI->getLoopFor(Builder.GetInsertBlock()); ;
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001636 L = L->getParentLoop())
Dan Gohmanafd6db92010-11-17 21:23:15 +00001637 if (SE.isLoopInvariant(S, L)) {
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001638 if (!L) break;
Dan Gohmandcddd572010-03-23 21:53:22 +00001639 if (BasicBlock *Preheader = L->getLoopPreheader())
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001640 InsertPt = Preheader->getTerminator();
Andrew Trickcbcc98f2012-01-02 21:25:10 +00001641 else {
1642 // LSR sets the insertion point for AddRec start/step values to the
1643 // block start to simplify value reuse, even though it's an invalid
1644 // position. SCEVExpander must correct for this in all cases.
1645 InsertPt = L->getHeader()->getFirstInsertionPt();
1646 }
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001647 } else {
1648 // If the SCEV is computable at this level, insert it into the header
1649 // after the PHIs (and after any other instructions that we've inserted
1650 // there) so that it is guaranteed to dominate any user inside the loop.
Bill Wendling8ddfc092011-08-16 20:45:24 +00001651 if (L && SE.hasComputableLoopEvolution(S, L) && !PostIncLoops.count(L))
1652 InsertPt = L->getHeader()->getFirstInsertionPt();
Andrew Trickc908b432012-01-20 07:41:13 +00001653 while (InsertPt != Builder.GetInsertPoint()
1654 && (isInsertedInstruction(InsertPt)
1655 || isa<DbgInfoIntrinsic>(InsertPt))) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001656 InsertPt = std::next(BasicBlock::iterator(InsertPt));
Andrew Trickc908b432012-01-20 07:41:13 +00001657 }
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001658 break;
1659 }
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001660
Dan Gohmandaafbe62009-06-26 22:53:46 +00001661 // Check to see if we already expanded this here.
Andrew Trickd4e1b5e2013-01-14 21:00:37 +00001662 std::map<std::pair<const SCEV *, Instruction *>, TrackingVH<Value> >::iterator
1663 I = InsertedExpressions.find(std::make_pair(S, InsertPt));
Dan Gohman830fd382009-06-27 21:18:18 +00001664 if (I != InsertedExpressions.end())
Dan Gohmandaafbe62009-06-26 22:53:46 +00001665 return I->second;
Dan Gohman830fd382009-06-27 21:18:18 +00001666
Benjamin Kramer6e931522013-09-30 15:40:17 +00001667 BuilderType::InsertPointGuard Guard(Builder);
Dan Gohman830fd382009-06-27 21:18:18 +00001668 Builder.SetInsertPoint(InsertPt->getParent(), InsertPt);
Dan Gohmandaafbe62009-06-26 22:53:46 +00001669
1670 // Expand the expression into instructions.
Anton Korobeynikov5849a622007-08-20 21:17:26 +00001671 Value *V = visit(S);
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001672
Dan Gohmandaafbe62009-06-26 22:53:46 +00001673 // Remember the expanded value for this SCEV at this location.
Andrew Trick870c1a32011-10-13 21:55:29 +00001674 //
1675 // This is independent of PostIncLoops. The mapped value simply materializes
1676 // the expression at this insertion point. If the mapped value happened to be
Alp Tokerf907b892013-12-05 05:44:44 +00001677 // a postinc expansion, it could be reused by a non-postinc user, but only if
Andrew Trick870c1a32011-10-13 21:55:29 +00001678 // its insertion point was already at the head of the loop.
1679 InsertedExpressions[std::make_pair(S, InsertPt)] = V;
Anton Korobeynikov5849a622007-08-20 21:17:26 +00001680 return V;
1681}
Dan Gohman63964b52009-06-05 16:35:53 +00001682
Dan Gohman6b751732010-02-14 03:12:47 +00001683void SCEVExpander::rememberInstruction(Value *I) {
Dan Gohmanbbfb6ac2010-06-05 00:33:07 +00001684 if (!PostIncLoops.empty())
1685 InsertedPostIncValues.insert(I);
1686 else
Dan Gohman6b751732010-02-14 03:12:47 +00001687 InsertedValues.insert(I);
Dan Gohman6b751732010-02-14 03:12:47 +00001688}
1689
Dan Gohman63964b52009-06-05 16:35:53 +00001690/// getOrInsertCanonicalInductionVariable - This method returns the
1691/// canonical induction variable of the specified type for the specified
1692/// loop (inserting one if there is none). A canonical induction variable
1693/// starts at zero and steps by one on each iteration.
Dan Gohman4fd92432010-07-20 16:44:52 +00001694PHINode *
Dan Gohman63964b52009-06-05 16:35:53 +00001695SCEVExpander::getOrInsertCanonicalInductionVariable(const Loop *L,
Chris Lattner229907c2011-07-18 04:54:35 +00001696 Type *Ty) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001697 assert(Ty->isIntegerTy() && "Can only insert integer induction variables!");
Dan Gohman31158752010-07-20 16:46:58 +00001698
1699 // Build a SCEV for {0,+,1}<L>.
Andrew Trick8b55b732011-03-14 16:50:06 +00001700 // Conservatively use FlagAnyWrap for now.
Dan Gohman1d2ded72010-05-03 22:09:21 +00001701 const SCEV *H = SE.getAddRecExpr(SE.getConstant(Ty, 0),
Andrew Trick8b55b732011-03-14 16:50:06 +00001702 SE.getConstant(Ty, 1), L, SCEV::FlagAnyWrap);
Dan Gohman31158752010-07-20 16:46:58 +00001703
1704 // Emit code for it.
Benjamin Kramer6e931522013-09-30 15:40:17 +00001705 BuilderType::InsertPointGuard Guard(Builder);
Craig Topper9f008862014-04-15 04:59:12 +00001706 PHINode *V = cast<PHINode>(expandCodeFor(H, nullptr,
1707 L->getHeader()->begin()));
Dan Gohman31158752010-07-20 16:46:58 +00001708
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001709 return V;
Dan Gohman63964b52009-06-05 16:35:53 +00001710}
Andrew Trickf9201c52011-10-11 02:28:51 +00001711
Andrew Trickf9201c52011-10-11 02:28:51 +00001712/// replaceCongruentIVs - Check for congruent phis in this loop header and
1713/// replace them with their most canonical representative. Return the number of
1714/// phis eliminated.
1715///
1716/// This does not depend on any SCEVExpander state but should be used in
1717/// the same context that SCEVExpander is used.
1718unsigned SCEVExpander::replaceCongruentIVs(Loop *L, const DominatorTree *DT,
Nadav Rotem4dc976f2012-10-19 21:28:43 +00001719 SmallVectorImpl<WeakVH> &DeadInsts,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001720 const TargetTransformInfo *TTI) {
Andrew Trick5adedf52012-01-07 01:12:09 +00001721 // Find integer phis in order of increasing width.
1722 SmallVector<PHINode*, 8> Phis;
1723 for (BasicBlock::iterator I = L->getHeader()->begin();
1724 PHINode *Phi = dyn_cast<PHINode>(I); ++I) {
1725 Phis.push_back(Phi);
1726 }
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001727 if (TTI)
Benjamin Kramerb0f74b22014-03-07 21:35:39 +00001728 std::sort(Phis.begin(), Phis.end(), [](Value *LHS, Value *RHS) {
1729 // Put pointers at the back and make sure pointer < pointer = false.
1730 if (!LHS->getType()->isIntegerTy() || !RHS->getType()->isIntegerTy())
1731 return RHS->getType()->isIntegerTy() && !LHS->getType()->isIntegerTy();
1732 return RHS->getType()->getPrimitiveSizeInBits() <
1733 LHS->getType()->getPrimitiveSizeInBits();
1734 });
Andrew Trick5adedf52012-01-07 01:12:09 +00001735
Andrew Trickf9201c52011-10-11 02:28:51 +00001736 unsigned NumElim = 0;
1737 DenseMap<const SCEV *, PHINode *> ExprToIVMap;
Andrew Trick5adedf52012-01-07 01:12:09 +00001738 // Process phis from wide to narrow. Mapping wide phis to the their truncation
1739 // so narrow phis can reuse them.
1740 for (SmallVectorImpl<PHINode*>::const_iterator PIter = Phis.begin(),
1741 PEnd = Phis.end(); PIter != PEnd; ++PIter) {
1742 PHINode *Phi = *PIter;
1743
Benjamin Kramera225ed82012-10-19 16:37:30 +00001744 // Fold constant phis. They may be congruent to other constant phis and
1745 // would confuse the logic below that expects proper IVs.
Chandler Carruth66b31302015-01-04 12:03:27 +00001746 if (Value *V = SimplifyInstruction(Phi, SE.DL, SE.TLI, SE.DT, SE.AC)) {
Benjamin Kramera225ed82012-10-19 16:37:30 +00001747 Phi->replaceAllUsesWith(V);
1748 DeadInsts.push_back(Phi);
1749 ++NumElim;
1750 DEBUG_WITH_TYPE(DebugType, dbgs()
1751 << "INDVARS: Eliminated constant iv: " << *Phi << '\n');
1752 continue;
1753 }
1754
Andrew Trickf9201c52011-10-11 02:28:51 +00001755 if (!SE.isSCEVable(Phi->getType()))
1756 continue;
1757
1758 PHINode *&OrigPhiRef = ExprToIVMap[SE.getSCEV(Phi)];
1759 if (!OrigPhiRef) {
1760 OrigPhiRef = Phi;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001761 if (Phi->getType()->isIntegerTy() && TTI
1762 && TTI->isTruncateFree(Phi->getType(), Phis.back()->getType())) {
Andrew Trick5adedf52012-01-07 01:12:09 +00001763 // This phi can be freely truncated to the narrowest phi type. Map the
1764 // truncated expression to it so it will be reused for narrow types.
1765 const SCEV *TruncExpr =
1766 SE.getTruncateExpr(SE.getSCEV(Phi), Phis.back()->getType());
1767 ExprToIVMap[TruncExpr] = Phi;
1768 }
Andrew Trickf9201c52011-10-11 02:28:51 +00001769 continue;
1770 }
1771
Andrew Trick5adedf52012-01-07 01:12:09 +00001772 // Replacing a pointer phi with an integer phi or vice-versa doesn't make
1773 // sense.
1774 if (OrigPhiRef->getType()->isPointerTy() != Phi->getType()->isPointerTy())
Andrew Trickf9201c52011-10-11 02:28:51 +00001775 continue;
1776
1777 if (BasicBlock *LatchBlock = L->getLoopLatch()) {
1778 Instruction *OrigInc =
1779 cast<Instruction>(OrigPhiRef->getIncomingValueForBlock(LatchBlock));
1780 Instruction *IsomorphicInc =
1781 cast<Instruction>(Phi->getIncomingValueForBlock(LatchBlock));
1782
Andrew Trick5adedf52012-01-07 01:12:09 +00001783 // If this phi has the same width but is more canonical, replace the
Andrew Trickc908b432012-01-20 07:41:13 +00001784 // original with it. As part of the "more canonical" determination,
1785 // respect a prior decision to use an IV chain.
Andrew Trick5adedf52012-01-07 01:12:09 +00001786 if (OrigPhiRef->getType() == Phi->getType()
Andrew Trickc908b432012-01-20 07:41:13 +00001787 && !(ChainedPhis.count(Phi)
1788 || isExpandedAddRecExprPHI(OrigPhiRef, OrigInc, L))
1789 && (ChainedPhis.count(Phi)
1790 || isExpandedAddRecExprPHI(Phi, IsomorphicInc, L))) {
Andrew Trickf9201c52011-10-11 02:28:51 +00001791 std::swap(OrigPhiRef, Phi);
1792 std::swap(OrigInc, IsomorphicInc);
1793 }
1794 // Replacing the congruent phi is sufficient because acyclic redundancy
1795 // elimination, CSE/GVN, should handle the rest. However, once SCEV proves
1796 // that a phi is congruent, it's often the head of an IV user cycle that
Andrew Trickf730f392012-01-07 01:29:21 +00001797 // is isomorphic with the original phi. It's worth eagerly cleaning up the
1798 // common case of a single IV increment so that DeleteDeadPHIs can remove
1799 // cycles that had postinc uses.
Andrew Trick5adedf52012-01-07 01:12:09 +00001800 const SCEV *TruncExpr = SE.getTruncateOrNoop(SE.getSCEV(OrigInc),
1801 IsomorphicInc->getType());
1802 if (OrigInc != IsomorphicInc
Andrew Trickd5d2db92012-01-10 01:45:08 +00001803 && TruncExpr == SE.getSCEV(IsomorphicInc)
Andrew Trickc908b432012-01-20 07:41:13 +00001804 && ((isa<PHINode>(OrigInc) && isa<PHINode>(IsomorphicInc))
1805 || hoistIVInc(OrigInc, IsomorphicInc))) {
Andrew Trickf9201c52011-10-11 02:28:51 +00001806 DEBUG_WITH_TYPE(DebugType, dbgs()
1807 << "INDVARS: Eliminated congruent iv.inc: "
1808 << *IsomorphicInc << '\n');
Andrew Trick5adedf52012-01-07 01:12:09 +00001809 Value *NewInc = OrigInc;
1810 if (OrigInc->getType() != IsomorphicInc->getType()) {
Andrew Trick23ef0d62012-01-14 03:17:23 +00001811 Instruction *IP = isa<PHINode>(OrigInc)
1812 ? (Instruction*)L->getHeader()->getFirstInsertionPt()
1813 : OrigInc->getNextNode();
1814 IRBuilder<> Builder(IP);
Andrew Trick5adedf52012-01-07 01:12:09 +00001815 Builder.SetCurrentDebugLocation(IsomorphicInc->getDebugLoc());
1816 NewInc = Builder.
1817 CreateTruncOrBitCast(OrigInc, IsomorphicInc->getType(), IVName);
1818 }
1819 IsomorphicInc->replaceAllUsesWith(NewInc);
Andrew Trickf9201c52011-10-11 02:28:51 +00001820 DeadInsts.push_back(IsomorphicInc);
1821 }
1822 }
1823 DEBUG_WITH_TYPE(DebugType, dbgs()
1824 << "INDVARS: Eliminated congruent iv: " << *Phi << '\n');
1825 ++NumElim;
Andrew Trick5adedf52012-01-07 01:12:09 +00001826 Value *NewIV = OrigPhiRef;
1827 if (OrigPhiRef->getType() != Phi->getType()) {
1828 IRBuilder<> Builder(L->getHeader()->getFirstInsertionPt());
1829 Builder.SetCurrentDebugLocation(Phi->getDebugLoc());
1830 NewIV = Builder.CreateTruncOrBitCast(OrigPhiRef, Phi->getType(), IVName);
1831 }
1832 Phi->replaceAllUsesWith(NewIV);
Andrew Trickf9201c52011-10-11 02:28:51 +00001833 DeadInsts.push_back(Phi);
1834 }
1835 return NumElim;
1836}
Andrew Trick653513b2012-07-13 23:33:10 +00001837
1838namespace {
1839// Search for a SCEV subexpression that is not safe to expand. Any expression
1840// that may expand to a !isSafeToSpeculativelyExecute value is unsafe, namely
1841// UDiv expressions. We don't know if the UDiv is derived from an IR divide
1842// instruction, but the important thing is that we prove the denominator is
1843// nonzero before expansion.
1844//
1845// IVUsers already checks that IV-derived expressions are safe. So this check is
1846// only needed when the expression includes some subexpression that is not IV
1847// derived.
1848//
1849// Currently, we only allow division by a nonzero constant here. If this is
1850// inadequate, we could easily allow division by SCEVUnknown by using
1851// ValueTracking to check isKnownNonZero().
Andrew Trick57243da2013-10-25 21:35:56 +00001852//
1853// We cannot generally expand recurrences unless the step dominates the loop
1854// header. The expander handles the special case of affine recurrences by
1855// scaling the recurrence outside the loop, but this technique isn't generally
1856// applicable. Expanding a nested recurrence outside a loop requires computing
1857// binomial coefficients. This could be done, but the recurrence has to be in a
1858// perfectly reduced form, which can't be guaranteed.
Andrew Trick653513b2012-07-13 23:33:10 +00001859struct SCEVFindUnsafe {
Andrew Trick57243da2013-10-25 21:35:56 +00001860 ScalarEvolution &SE;
Andrew Trick653513b2012-07-13 23:33:10 +00001861 bool IsUnsafe;
1862
Andrew Trick57243da2013-10-25 21:35:56 +00001863 SCEVFindUnsafe(ScalarEvolution &se): SE(se), IsUnsafe(false) {}
Andrew Trick653513b2012-07-13 23:33:10 +00001864
1865 bool follow(const SCEV *S) {
Andrew Trick57243da2013-10-25 21:35:56 +00001866 if (const SCEVUDivExpr *D = dyn_cast<SCEVUDivExpr>(S)) {
1867 const SCEVConstant *SC = dyn_cast<SCEVConstant>(D->getRHS());
1868 if (!SC || SC->getValue()->isZero()) {
1869 IsUnsafe = true;
1870 return false;
1871 }
1872 }
1873 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
1874 const SCEV *Step = AR->getStepRecurrence(SE);
1875 if (!AR->isAffine() && !SE.dominates(Step, AR->getLoop()->getHeader())) {
1876 IsUnsafe = true;
1877 return false;
1878 }
1879 }
1880 return true;
Andrew Trick653513b2012-07-13 23:33:10 +00001881 }
1882 bool isDone() const { return IsUnsafe; }
1883};
1884}
1885
1886namespace llvm {
Andrew Trick57243da2013-10-25 21:35:56 +00001887bool isSafeToExpand(const SCEV *S, ScalarEvolution &SE) {
1888 SCEVFindUnsafe Search(SE);
Andrew Trick653513b2012-07-13 23:33:10 +00001889 visitAll(S, Search);
1890 return !Search.IsUnsafe;
1891}
1892}