blob: c6fa8f8e839192b20335e1b0b3a394b5eda68ae8 [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
Dan Gohman51ad99d2010-01-21 02:09:26 +00001066/// getAddRecExprPHILiterally - Helper for expandAddRecExprLiterally. Expand
1067/// the base addrec, which is the addrec without any non-loop-dominating
1068/// values, and return the PHI.
1069PHINode *
1070SCEVExpander::getAddRecExprPHILiterally(const SCEVAddRecExpr *Normalized,
1071 const Loop *L,
Chris Lattner229907c2011-07-18 04:54:35 +00001072 Type *ExpandTy,
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001073 Type *IntTy,
1074 Type *&TruncTy,
1075 bool &InvertStep) {
Benjamin Kramera7606b992011-07-16 22:26:27 +00001076 assert((!IVIncInsertLoop||IVIncInsertPos) && "Uninitialized insert position");
Andrew Trick244e2c32011-07-16 00:59:39 +00001077
Dan Gohman51ad99d2010-01-21 02:09:26 +00001078 // Reuse a previously-inserted PHI, if present.
Andrew Trick7fb669a2011-10-07 23:46:21 +00001079 BasicBlock *LatchBlock = L->getLoopLatch();
1080 if (LatchBlock) {
Craig Topper9f008862014-04-15 04:59:12 +00001081 PHINode *AddRecPhiMatch = nullptr;
1082 Instruction *IncV = nullptr;
1083 TruncTy = nullptr;
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001084 InvertStep = false;
1085
1086 // Only try partially matching scevs that need truncation and/or
1087 // step-inversion if we know this loop is outside the current loop.
1088 bool TryNonMatchingSCEV = IVIncInsertLoop &&
1089 SE.DT->properlyDominates(LatchBlock, IVIncInsertLoop->getHeader());
1090
Andrew Trick7fb669a2011-10-07 23:46:21 +00001091 for (BasicBlock::iterator I = L->getHeader()->begin();
1092 PHINode *PN = dyn_cast<PHINode>(I); ++I) {
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001093 if (!SE.isSCEVable(PN->getType()))
Andrew Trick7fb669a2011-10-07 23:46:21 +00001094 continue;
Dan Gohman148a9722010-02-16 00:20:08 +00001095
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001096 const SCEVAddRecExpr *PhiSCEV = dyn_cast<SCEVAddRecExpr>(SE.getSCEV(PN));
1097 if (!PhiSCEV)
1098 continue;
Dan Gohman148a9722010-02-16 00:20:08 +00001099
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001100 bool IsMatchingSCEV = PhiSCEV == Normalized;
1101 // We only handle truncation and inversion of phi recurrences for the
1102 // expanded expression if the expanded expression's loop dominates the
1103 // loop we insert to. Check now, so we can bail out early.
1104 if (!IsMatchingSCEV && !TryNonMatchingSCEV)
1105 continue;
1106
1107 Instruction *TempIncV =
1108 cast<Instruction>(PN->getIncomingValueForBlock(LatchBlock));
1109
1110 // Check whether we can reuse this PHI node.
Andrew Trick7fb669a2011-10-07 23:46:21 +00001111 if (LSRMode) {
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001112 if (!isExpandedAddRecExprPHI(PN, TempIncV, L))
Andrew Trick7fb669a2011-10-07 23:46:21 +00001113 continue;
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001114 if (L == IVIncInsertLoop && !hoistIVInc(TempIncV, IVIncInsertPos))
1115 continue;
1116 } else {
1117 if (!isNormalAddRecExprPHI(PN, TempIncV, L))
Andrew Trickc908b432012-01-20 07:41:13 +00001118 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00001119 }
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001120
1121 // Stop if we have found an exact match SCEV.
1122 if (IsMatchingSCEV) {
1123 IncV = TempIncV;
Craig Topper9f008862014-04-15 04:59:12 +00001124 TruncTy = nullptr;
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001125 InvertStep = false;
1126 AddRecPhiMatch = PN;
1127 break;
Andrew Trick7fb669a2011-10-07 23:46:21 +00001128 }
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001129
1130 // Try whether the phi can be translated into the requested form
1131 // (truncated and/or offset by a constant).
1132 if ((!TruncTy || InvertStep) &&
1133 canBeCheaplyTransformed(SE, PhiSCEV, Normalized, InvertStep)) {
1134 // Record the phi node. But don't stop we might find an exact match
1135 // later.
1136 AddRecPhiMatch = PN;
1137 IncV = TempIncV;
1138 TruncTy = SE.getEffectiveSCEVType(Normalized->getType());
1139 }
1140 }
1141
1142 if (AddRecPhiMatch) {
1143 // Potentially, move the increment. We have made sure in
1144 // isExpandedAddRecExprPHI or hoistIVInc that this is possible.
1145 if (L == IVIncInsertLoop)
1146 hoistBeforePos(SE.DT, IncV, IVIncInsertPos, AddRecPhiMatch);
1147
Andrew Trick7fb669a2011-10-07 23:46:21 +00001148 // Ok, the add recurrence looks usable.
1149 // Remember this PHI, even in post-inc mode.
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001150 InsertedValues.insert(AddRecPhiMatch);
Andrew Trick7fb669a2011-10-07 23:46:21 +00001151 // Remember the increment.
1152 rememberInstruction(IncV);
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001153 return AddRecPhiMatch;
Andrew Trick7fb669a2011-10-07 23:46:21 +00001154 }
1155 }
Dan Gohman51ad99d2010-01-21 02:09:26 +00001156
1157 // Save the original insertion point so we can restore it when we're done.
Benjamin Kramer6e931522013-09-30 15:40:17 +00001158 BuilderType::InsertPointGuard Guard(Builder);
Dan Gohman51ad99d2010-01-21 02:09:26 +00001159
Andrew Trickb9aa26f2011-12-20 01:42:24 +00001160 // Another AddRec may need to be recursively expanded below. For example, if
1161 // this AddRec is quadratic, the StepV may itself be an AddRec in this
1162 // loop. Remove this loop from the PostIncLoops set before expanding such
1163 // AddRecs. Otherwise, we cannot find a valid position for the step
1164 // (i.e. StepV can never dominate its loop header). Ideally, we could do
1165 // SavedIncLoops.swap(PostIncLoops), but we generally have a single element,
1166 // so it's not worth implementing SmallPtrSet::swap.
1167 PostIncLoopSet SavedPostIncLoops = PostIncLoops;
1168 PostIncLoops.clear();
1169
Dan Gohman51ad99d2010-01-21 02:09:26 +00001170 // Expand code for the start value.
1171 Value *StartV = expandCodeFor(Normalized->getStart(), ExpandTy,
1172 L->getHeader()->begin());
1173
Andrew Trick244e2c32011-07-16 00:59:39 +00001174 // StartV must be hoisted into L's preheader to dominate the new phi.
Benjamin Kramera7606b992011-07-16 22:26:27 +00001175 assert(!isa<Instruction>(StartV) ||
1176 SE.DT->properlyDominates(cast<Instruction>(StartV)->getParent(),
1177 L->getHeader()));
Andrew Trick244e2c32011-07-16 00:59:39 +00001178
Andrew Trickceafa2c2011-11-30 06:07:54 +00001179 // Expand code for the step value. Do this before creating the PHI so that PHI
1180 // reuse code doesn't see an incomplete PHI.
Dan Gohman51ad99d2010-01-21 02:09:26 +00001181 const SCEV *Step = Normalized->getStepRecurrence(SE);
Andrew Trickceafa2c2011-11-30 06:07:54 +00001182 // If the stride is negative, insert a sub instead of an add for the increment
1183 // (unless it's a constant, because subtracts of constants are canonicalized
1184 // to adds).
Andrew Trick881a7762012-01-07 00:27:31 +00001185 bool useSubtract = !ExpandTy->isPointerTy() && Step->isNonConstantNegative();
Andrew Trickceafa2c2011-11-30 06:07:54 +00001186 if (useSubtract)
Dan Gohman51ad99d2010-01-21 02:09:26 +00001187 Step = SE.getNegativeSCEV(Step);
Andrew Trickceafa2c2011-11-30 06:07:54 +00001188 // Expand the step somewhere that dominates the loop header.
Dan Gohman51ad99d2010-01-21 02:09:26 +00001189 Value *StepV = expandCodeFor(Step, IntTy, L->getHeader()->begin());
1190
1191 // Create the PHI.
Jay Foade0938d82011-03-30 11:19:20 +00001192 BasicBlock *Header = L->getHeader();
1193 Builder.SetInsertPoint(Header, Header->begin());
1194 pred_iterator HPB = pred_begin(Header), HPE = pred_end(Header);
Andrew Trick411daa52011-06-28 05:07:32 +00001195 PHINode *PN = Builder.CreatePHI(ExpandTy, std::distance(HPB, HPE),
Andrew Trick154d78a2011-06-28 05:41:52 +00001196 Twine(IVName) + ".iv");
Dan Gohman51ad99d2010-01-21 02:09:26 +00001197 rememberInstruction(PN);
1198
1199 // Create the step instructions and populate the PHI.
Jay Foade0938d82011-03-30 11:19:20 +00001200 for (pred_iterator HPI = HPB; HPI != HPE; ++HPI) {
Dan Gohman51ad99d2010-01-21 02:09:26 +00001201 BasicBlock *Pred = *HPI;
1202
1203 // Add a start value.
1204 if (!L->contains(Pred)) {
1205 PN->addIncoming(StartV, Pred);
1206 continue;
1207 }
1208
Andrew Trickceafa2c2011-11-30 06:07:54 +00001209 // Create a step value and add it to the PHI.
1210 // If IVIncInsertLoop is non-null and equal to the addrec's loop, insert the
1211 // instructions at IVIncInsertPos.
Dan Gohman51ad99d2010-01-21 02:09:26 +00001212 Instruction *InsertPos = L == IVIncInsertLoop ?
1213 IVIncInsertPos : Pred->getTerminator();
Devang Patelc3239d32011-07-05 21:48:22 +00001214 Builder.SetInsertPoint(InsertPos);
Andrew Trickceafa2c2011-11-30 06:07:54 +00001215 Value *IncV = expandIVInc(PN, StepV, L, ExpandTy, IntTy, useSubtract);
Andrew Trick8eaae282013-07-14 02:50:07 +00001216 if (isa<OverflowingBinaryOperator>(IncV)) {
1217 if (Normalized->getNoWrapFlags(SCEV::FlagNUW))
1218 cast<BinaryOperator>(IncV)->setHasNoUnsignedWrap();
1219 if (Normalized->getNoWrapFlags(SCEV::FlagNSW))
1220 cast<BinaryOperator>(IncV)->setHasNoSignedWrap();
1221 }
Dan Gohman51ad99d2010-01-21 02:09:26 +00001222 PN->addIncoming(IncV, Pred);
1223 }
1224
Andrew Trickb9aa26f2011-12-20 01:42:24 +00001225 // After expanding subexpressions, restore the PostIncLoops set so the caller
1226 // can ensure that IVIncrement dominates the current uses.
1227 PostIncLoops = SavedPostIncLoops;
1228
Dan Gohman51ad99d2010-01-21 02:09:26 +00001229 // Remember this PHI, even in post-inc mode.
1230 InsertedValues.insert(PN);
1231
1232 return PN;
1233}
1234
1235Value *SCEVExpander::expandAddRecExprLiterally(const SCEVAddRecExpr *S) {
Chris Lattner229907c2011-07-18 04:54:35 +00001236 Type *STy = S->getType();
1237 Type *IntTy = SE.getEffectiveSCEVType(STy);
Dan Gohman51ad99d2010-01-21 02:09:26 +00001238 const Loop *L = S->getLoop();
1239
1240 // Determine a normalized form of this expression, which is the expression
1241 // before any post-inc adjustment is made.
1242 const SCEVAddRecExpr *Normalized = S;
Dan Gohmand006ab92010-04-07 22:27:08 +00001243 if (PostIncLoops.count(L)) {
1244 PostIncLoopSet Loops;
1245 Loops.insert(L);
1246 Normalized =
Craig Topper9f008862014-04-15 04:59:12 +00001247 cast<SCEVAddRecExpr>(TransformForPostIncUse(Normalize, S, nullptr,
1248 nullptr, Loops, SE, *SE.DT));
Dan Gohman51ad99d2010-01-21 02:09:26 +00001249 }
1250
1251 // Strip off any non-loop-dominating component from the addrec start.
1252 const SCEV *Start = Normalized->getStart();
Craig Topper9f008862014-04-15 04:59:12 +00001253 const SCEV *PostLoopOffset = nullptr;
Dan Gohman20d9ce22010-11-17 21:41:58 +00001254 if (!SE.properlyDominates(Start, L->getHeader())) {
Dan Gohman51ad99d2010-01-21 02:09:26 +00001255 PostLoopOffset = Start;
Dan Gohman1d2ded72010-05-03 22:09:21 +00001256 Start = SE.getConstant(Normalized->getType(), 0);
Andrew Trick8b55b732011-03-14 16:50:06 +00001257 Normalized = cast<SCEVAddRecExpr>(
1258 SE.getAddRecExpr(Start, Normalized->getStepRecurrence(SE),
1259 Normalized->getLoop(),
Andrew Trickaa8ceba2013-07-14 03:10:08 +00001260 Normalized->getNoWrapFlags(SCEV::FlagNW)));
Dan Gohman51ad99d2010-01-21 02:09:26 +00001261 }
1262
1263 // Strip off any non-loop-dominating component from the addrec step.
1264 const SCEV *Step = Normalized->getStepRecurrence(SE);
Craig Topper9f008862014-04-15 04:59:12 +00001265 const SCEV *PostLoopScale = nullptr;
Dan Gohman20d9ce22010-11-17 21:41:58 +00001266 if (!SE.dominates(Step, L->getHeader())) {
Dan Gohman51ad99d2010-01-21 02:09:26 +00001267 PostLoopScale = Step;
Dan Gohman1d2ded72010-05-03 22:09:21 +00001268 Step = SE.getConstant(Normalized->getType(), 1);
Dan Gohman51ad99d2010-01-21 02:09:26 +00001269 Normalized =
Andrew Trickaa8ceba2013-07-14 03:10:08 +00001270 cast<SCEVAddRecExpr>(SE.getAddRecExpr(
1271 Start, Step, Normalized->getLoop(),
1272 Normalized->getNoWrapFlags(SCEV::FlagNW)));
Dan Gohman51ad99d2010-01-21 02:09:26 +00001273 }
1274
1275 // Expand the core addrec. If we need post-loop scaling, force it to
1276 // expand to an integer type to avoid the need for additional casting.
Chris Lattner229907c2011-07-18 04:54:35 +00001277 Type *ExpandTy = PostLoopScale ? IntTy : STy;
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001278 // In some cases, we decide to reuse an existing phi node but need to truncate
1279 // it and/or invert the step.
Craig Topper9f008862014-04-15 04:59:12 +00001280 Type *TruncTy = nullptr;
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001281 bool InvertStep = false;
1282 PHINode *PN = getAddRecExprPHILiterally(Normalized, L, ExpandTy, IntTy,
1283 TruncTy, InvertStep);
Dan Gohman51ad99d2010-01-21 02:09:26 +00001284
Dan Gohman8b0a4192010-03-01 17:49:51 +00001285 // Accommodate post-inc mode, if necessary.
Dan Gohman51ad99d2010-01-21 02:09:26 +00001286 Value *Result;
Dan Gohmand006ab92010-04-07 22:27:08 +00001287 if (!PostIncLoops.count(L))
Dan Gohman51ad99d2010-01-21 02:09:26 +00001288 Result = PN;
1289 else {
1290 // In PostInc mode, use the post-incremented value.
1291 BasicBlock *LatchBlock = L->getLoopLatch();
1292 assert(LatchBlock && "PostInc mode requires a unique loop latch!");
1293 Result = PN->getIncomingValueForBlock(LatchBlock);
Andrew Trick870c1a32011-10-13 21:55:29 +00001294
1295 // For an expansion to use the postinc form, the client must call
1296 // expandCodeFor with an InsertPoint that is either outside the PostIncLoop
1297 // or dominated by IVIncInsertPos.
Andrew Trickceafa2c2011-11-30 06:07:54 +00001298 if (isa<Instruction>(Result)
1299 && !SE.DT->dominates(cast<Instruction>(Result),
1300 Builder.GetInsertPoint())) {
1301 // The induction variable's postinc expansion does not dominate this use.
1302 // IVUsers tries to prevent this case, so it is rare. However, it can
1303 // happen when an IVUser outside the loop is not dominated by the latch
1304 // block. Adjusting IVIncInsertPos before expansion begins cannot handle
1305 // all cases. Consider a phi outide whose operand is replaced during
1306 // expansion with the value of the postinc user. Without fundamentally
1307 // changing the way postinc users are tracked, the only remedy is
1308 // inserting an extra IV increment. StepV might fold into PostLoopOffset,
1309 // but hopefully expandCodeFor handles that.
1310 bool useSubtract =
Andrew Trick881a7762012-01-07 00:27:31 +00001311 !ExpandTy->isPointerTy() && Step->isNonConstantNegative();
Andrew Trickceafa2c2011-11-30 06:07:54 +00001312 if (useSubtract)
1313 Step = SE.getNegativeSCEV(Step);
Benjamin Kramer6e931522013-09-30 15:40:17 +00001314 Value *StepV;
1315 {
1316 // Expand the step somewhere that dominates the loop header.
1317 BuilderType::InsertPointGuard Guard(Builder);
1318 StepV = expandCodeFor(Step, IntTy, L->getHeader()->begin());
1319 }
Andrew Trickceafa2c2011-11-30 06:07:54 +00001320 Result = expandIVInc(PN, StepV, L, ExpandTy, IntTy, useSubtract);
1321 }
Dan Gohman51ad99d2010-01-21 02:09:26 +00001322 }
1323
Arnold Schwaighofer26f567d2014-02-16 15:49:50 +00001324 // We have decided to reuse an induction variable of a dominating loop. Apply
1325 // truncation and/or invertion of the step.
1326 if (TruncTy) {
1327 Type *ResTy = Result->getType();
1328 // Normalize the result type.
1329 if (ResTy != SE.getEffectiveSCEVType(ResTy))
1330 Result = InsertNoopCastOfTo(Result, SE.getEffectiveSCEVType(ResTy));
1331 // Truncate the result.
1332 if (TruncTy != Result->getType()) {
1333 Result = Builder.CreateTrunc(Result, TruncTy);
1334 rememberInstruction(Result);
1335 }
1336 // Invert the result.
1337 if (InvertStep) {
1338 Result = Builder.CreateSub(expandCodeFor(Normalized->getStart(), TruncTy),
1339 Result);
1340 rememberInstruction(Result);
1341 }
1342 }
1343
Dan Gohman51ad99d2010-01-21 02:09:26 +00001344 // Re-apply any non-loop-dominating scale.
1345 if (PostLoopScale) {
Andrew Trick57243da2013-10-25 21:35:56 +00001346 assert(S->isAffine() && "Can't linearly scale non-affine recurrences.");
Dan Gohman1a8674e2010-02-12 20:39:25 +00001347 Result = InsertNoopCastOfTo(Result, IntTy);
Dan Gohman51ad99d2010-01-21 02:09:26 +00001348 Result = Builder.CreateMul(Result,
1349 expandCodeFor(PostLoopScale, IntTy));
1350 rememberInstruction(Result);
1351 }
1352
1353 // Re-apply any non-loop-dominating offset.
1354 if (PostLoopOffset) {
Chris Lattner229907c2011-07-18 04:54:35 +00001355 if (PointerType *PTy = dyn_cast<PointerType>(ExpandTy)) {
Dan Gohman51ad99d2010-01-21 02:09:26 +00001356 const SCEV *const OffsetArray[1] = { PostLoopOffset };
1357 Result = expandAddToGEP(OffsetArray, OffsetArray+1, PTy, IntTy, Result);
1358 } else {
Dan Gohman1a8674e2010-02-12 20:39:25 +00001359 Result = InsertNoopCastOfTo(Result, IntTy);
Dan Gohman51ad99d2010-01-21 02:09:26 +00001360 Result = Builder.CreateAdd(Result,
1361 expandCodeFor(PostLoopOffset, IntTy));
1362 rememberInstruction(Result);
1363 }
1364 }
1365
1366 return Result;
1367}
1368
Dan Gohman056857a2009-04-18 17:56:28 +00001369Value *SCEVExpander::visitAddRecExpr(const SCEVAddRecExpr *S) {
Dan Gohman51ad99d2010-01-21 02:09:26 +00001370 if (!CanonicalMode) return expandAddRecExprLiterally(S);
1371
Chris Lattner229907c2011-07-18 04:54:35 +00001372 Type *Ty = SE.getEffectiveSCEVType(S->getType());
Nate Begeman2bca4d92005-07-30 00:12:19 +00001373 const Loop *L = S->getLoop();
Nate Begeman2bca4d92005-07-30 00:12:19 +00001374
Dan Gohman426901a2009-06-13 16:25:49 +00001375 // First check for an existing canonical IV in a suitable type.
Craig Topper9f008862014-04-15 04:59:12 +00001376 PHINode *CanonicalIV = nullptr;
Dan Gohman426901a2009-06-13 16:25:49 +00001377 if (PHINode *PN = L->getCanonicalInductionVariable())
Dan Gohman31158752010-07-20 16:46:58 +00001378 if (SE.getTypeSizeInBits(PN->getType()) >= SE.getTypeSizeInBits(Ty))
Dan Gohman426901a2009-06-13 16:25:49 +00001379 CanonicalIV = PN;
1380
1381 // Rewrite an AddRec in terms of the canonical induction variable, if
1382 // its type is more narrow.
1383 if (CanonicalIV &&
1384 SE.getTypeSizeInBits(CanonicalIV->getType()) >
1385 SE.getTypeSizeInBits(Ty)) {
Dan Gohman00524492010-03-18 01:17:13 +00001386 SmallVector<const SCEV *, 4> NewOps(S->getNumOperands());
1387 for (unsigned i = 0, e = S->getNumOperands(); i != e; ++i)
1388 NewOps[i] = SE.getAnyExtendExpr(S->op_begin()[i], CanonicalIV->getType());
Andrew Trick8b55b732011-03-14 16:50:06 +00001389 Value *V = expand(SE.getAddRecExpr(NewOps, S->getLoop(),
Andrew Trickaa8ceba2013-07-14 03:10:08 +00001390 S->getNoWrapFlags(SCEV::FlagNW)));
Dan Gohman426901a2009-06-13 16:25:49 +00001391 BasicBlock::iterator NewInsertPt =
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001392 std::next(BasicBlock::iterator(cast<Instruction>(V)));
Benjamin Kramer6e931522013-09-30 15:40:17 +00001393 BuilderType::InsertPointGuard Guard(Builder);
Bill Wendling86c5cbe2011-08-24 21:06:46 +00001394 while (isa<PHINode>(NewInsertPt) || isa<DbgInfoIntrinsic>(NewInsertPt) ||
1395 isa<LandingPadInst>(NewInsertPt))
Jim Grosbachfd3b4e72010-06-16 21:13:38 +00001396 ++NewInsertPt;
Craig Topper9f008862014-04-15 04:59:12 +00001397 V = expandCodeFor(SE.getTruncateExpr(SE.getUnknown(V), Ty), nullptr,
Dan Gohman426901a2009-06-13 16:25:49 +00001398 NewInsertPt);
Dan Gohman426901a2009-06-13 16:25:49 +00001399 return V;
1400 }
1401
Nate Begeman2bca4d92005-07-30 00:12:19 +00001402 // {X,+,F} --> X + {0,+,F}
Dan Gohmanbe928e32008-06-18 16:23:07 +00001403 if (!S->getStart()->isZero()) {
Dan Gohman00524492010-03-18 01:17:13 +00001404 SmallVector<const SCEV *, 4> NewOps(S->op_begin(), S->op_end());
Dan Gohman1d2ded72010-05-03 22:09:21 +00001405 NewOps[0] = SE.getConstant(Ty, 0);
Andrew Trickaa8ceba2013-07-14 03:10:08 +00001406 const SCEV *Rest = SE.getAddRecExpr(NewOps, L,
1407 S->getNoWrapFlags(SCEV::FlagNW));
Dan Gohman291c2e02009-05-24 18:06:31 +00001408
1409 // Turn things like ptrtoint+arithmetic+inttoptr into GEP. See the
1410 // comments on expandAddToGEP for details.
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +00001411 const SCEV *Base = S->getStart();
1412 const SCEV *RestArray[1] = { Rest };
1413 // Dig into the expression to find the pointer base for a GEP.
1414 ExposePointerBase(Base, RestArray[0], SE);
1415 // If we found a pointer, expand the AddRec with a GEP.
Chris Lattner229907c2011-07-18 04:54:35 +00001416 if (PointerType *PTy = dyn_cast<PointerType>(Base->getType())) {
Dan Gohmanbf2a9ae2009-08-18 16:46:41 +00001417 // Make sure the Base isn't something exotic, such as a multiplied
1418 // or divided pointer value. In those cases, the result type isn't
1419 // actually a pointer type.
1420 if (!isa<SCEVMulExpr>(Base) && !isa<SCEVUDivExpr>(Base)) {
1421 Value *StartV = expand(Base);
1422 assert(StartV->getType() == PTy && "Pointer type mismatch for GEP!");
1423 return expandAddToGEP(RestArray, RestArray+1, PTy, Ty, StartV);
Dan Gohman291c2e02009-05-24 18:06:31 +00001424 }
1425 }
1426
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001427 // Just do a normal add. Pre-expand the operands to suppress folding.
1428 return expand(SE.getAddExpr(SE.getUnknown(expand(S->getStart())),
1429 SE.getUnknown(expand(Rest))));
Nate Begeman2bca4d92005-07-30 00:12:19 +00001430 }
1431
Dan Gohmancd838702010-07-26 18:28:14 +00001432 // If we don't yet have a canonical IV, create one.
1433 if (!CanonicalIV) {
Nate Begeman2bca4d92005-07-30 00:12:19 +00001434 // Create and insert the PHI node for the induction variable in the
1435 // specified loop.
1436 BasicBlock *Header = L->getHeader();
Jay Foade0938d82011-03-30 11:19:20 +00001437 pred_iterator HPB = pred_begin(Header), HPE = pred_end(Header);
Jay Foad52131342011-03-30 11:28:46 +00001438 CanonicalIV = PHINode::Create(Ty, std::distance(HPB, HPE), "indvar",
1439 Header->begin());
Dan Gohmancd838702010-07-26 18:28:14 +00001440 rememberInstruction(CanonicalIV);
Nate Begeman2bca4d92005-07-30 00:12:19 +00001441
Hal Finkel3f5279c2013-08-18 00:16:23 +00001442 SmallSet<BasicBlock *, 4> PredSeen;
Owen Andersonedb4a702009-07-24 23:12:02 +00001443 Constant *One = ConstantInt::get(Ty, 1);
Jay Foade0938d82011-03-30 11:19:20 +00001444 for (pred_iterator HPI = HPB; HPI != HPE; ++HPI) {
Gabor Greife82532a2010-07-09 15:40:10 +00001445 BasicBlock *HP = *HPI;
Hal Finkel36eff0f2014-07-31 19:13:38 +00001446 if (!PredSeen.insert(HP)) {
1447 // There must be an incoming value for each predecessor, even the
1448 // duplicates!
1449 CanonicalIV->addIncoming(CanonicalIV->getIncomingValueForBlock(HP), HP);
Hal Finkel3f5279c2013-08-18 00:16:23 +00001450 continue;
Hal Finkel36eff0f2014-07-31 19:13:38 +00001451 }
Hal Finkel3f5279c2013-08-18 00:16:23 +00001452
Gabor Greife82532a2010-07-09 15:40:10 +00001453 if (L->contains(HP)) {
Dan Gohman510bffc2010-01-19 22:26:02 +00001454 // Insert a unit add instruction right before the terminator
1455 // corresponding to the back-edge.
Dan Gohmancd838702010-07-26 18:28:14 +00001456 Instruction *Add = BinaryOperator::CreateAdd(CanonicalIV, One,
1457 "indvar.next",
1458 HP->getTerminator());
Devang Patelccf8dbf2011-06-22 20:56:56 +00001459 Add->setDebugLoc(HP->getTerminator()->getDebugLoc());
Dan Gohman51ad99d2010-01-21 02:09:26 +00001460 rememberInstruction(Add);
Dan Gohmancd838702010-07-26 18:28:14 +00001461 CanonicalIV->addIncoming(Add, HP);
Dan Gohman2aab8672009-09-27 17:46:40 +00001462 } else {
Dan Gohmancd838702010-07-26 18:28:14 +00001463 CanonicalIV->addIncoming(Constant::getNullValue(Ty), HP);
Dan Gohman2aab8672009-09-27 17:46:40 +00001464 }
Gabor Greife82532a2010-07-09 15:40:10 +00001465 }
Nate Begeman2bca4d92005-07-30 00:12:19 +00001466 }
1467
Dan Gohmancd838702010-07-26 18:28:14 +00001468 // {0,+,1} --> Insert a canonical induction variable into the loop!
1469 if (S->isAffine() && S->getOperand(1)->isOne()) {
1470 assert(Ty == SE.getEffectiveSCEVType(CanonicalIV->getType()) &&
1471 "IVs with types different from the canonical IV should "
1472 "already have been handled!");
1473 return CanonicalIV;
1474 }
1475
Dan Gohman426901a2009-06-13 16:25:49 +00001476 // {0,+,F} --> {0,+,1} * F
Nate Begeman2bca4d92005-07-30 00:12:19 +00001477
Chris Lattnerf0b77f92005-10-30 06:24:33 +00001478 // If this is a simple linear addrec, emit it now as a special case.
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001479 if (S->isAffine()) // {0,+,F} --> i*F
1480 return
1481 expand(SE.getTruncateOrNoop(
Dan Gohmancd838702010-07-26 18:28:14 +00001482 SE.getMulExpr(SE.getUnknown(CanonicalIV),
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001483 SE.getNoopOrAnyExtend(S->getOperand(1),
Dan Gohmancd838702010-07-26 18:28:14 +00001484 CanonicalIV->getType())),
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001485 Ty));
Nate Begeman2bca4d92005-07-30 00:12:19 +00001486
1487 // If this is a chain of recurrences, turn it into a closed form, using the
1488 // folders, then expandCodeFor the closed form. This allows the folders to
1489 // simplify the expression without having to build a bunch of special code
1490 // into this folder.
Dan Gohmancd838702010-07-26 18:28:14 +00001491 const SCEV *IH = SE.getUnknown(CanonicalIV); // Get I as a "symbolic" SCEV.
Nate Begeman2bca4d92005-07-30 00:12:19 +00001492
Dan Gohman426901a2009-06-13 16:25:49 +00001493 // Promote S up to the canonical IV type, if the cast is foldable.
Dan Gohmanaf752342009-07-07 17:06:11 +00001494 const SCEV *NewS = S;
Dan Gohmancd838702010-07-26 18:28:14 +00001495 const SCEV *Ext = SE.getNoopOrAnyExtend(S, CanonicalIV->getType());
Dan Gohman426901a2009-06-13 16:25:49 +00001496 if (isa<SCEVAddRecExpr>(Ext))
1497 NewS = Ext;
1498
Dan Gohmanaf752342009-07-07 17:06:11 +00001499 const SCEV *V = cast<SCEVAddRecExpr>(NewS)->evaluateAtIteration(IH, SE);
Bill Wendlingf3baad32006-12-07 01:30:32 +00001500 //cerr << "Evaluated: " << *this << "\n to: " << *V << "\n";
Nate Begeman2bca4d92005-07-30 00:12:19 +00001501
Dan Gohman426901a2009-06-13 16:25:49 +00001502 // Truncate the result down to the original type, if needed.
Dan Gohmanaf752342009-07-07 17:06:11 +00001503 const SCEV *T = SE.getTruncateOrNoop(V, Ty);
Dan Gohmanfd761132009-06-22 22:08:45 +00001504 return expand(T);
Nate Begeman2bca4d92005-07-30 00:12:19 +00001505}
Anton Korobeynikov5849a622007-08-20 21:17:26 +00001506
Dan Gohman056857a2009-04-18 17:56:28 +00001507Value *SCEVExpander::visitTruncateExpr(const SCEVTruncateExpr *S) {
Chris Lattner229907c2011-07-18 04:54:35 +00001508 Type *Ty = SE.getEffectiveSCEVType(S->getType());
Dan Gohmanb8597bd2009-06-09 17:18:38 +00001509 Value *V = expandCodeFor(S->getOperand(),
1510 SE.getEffectiveSCEVType(S->getOperand()->getType()));
Benjamin Kramer547b6c52011-09-27 20:39:19 +00001511 Value *I = Builder.CreateTrunc(V, Ty);
Dan Gohman51ad99d2010-01-21 02:09:26 +00001512 rememberInstruction(I);
Dan Gohmand195a222009-05-01 17:13:31 +00001513 return I;
Dan Gohman0e4cf892008-06-22 19:09:18 +00001514}
1515
Dan Gohman056857a2009-04-18 17:56:28 +00001516Value *SCEVExpander::visitZeroExtendExpr(const SCEVZeroExtendExpr *S) {
Chris Lattner229907c2011-07-18 04:54:35 +00001517 Type *Ty = SE.getEffectiveSCEVType(S->getType());
Dan Gohmanb8597bd2009-06-09 17:18:38 +00001518 Value *V = expandCodeFor(S->getOperand(),
1519 SE.getEffectiveSCEVType(S->getOperand()->getType()));
Benjamin Kramer547b6c52011-09-27 20:39:19 +00001520 Value *I = Builder.CreateZExt(V, Ty);
Dan Gohman51ad99d2010-01-21 02:09:26 +00001521 rememberInstruction(I);
Dan Gohmand195a222009-05-01 17:13:31 +00001522 return I;
Dan Gohman0e4cf892008-06-22 19:09:18 +00001523}
1524
Dan Gohman056857a2009-04-18 17:56:28 +00001525Value *SCEVExpander::visitSignExtendExpr(const SCEVSignExtendExpr *S) {
Chris Lattner229907c2011-07-18 04:54:35 +00001526 Type *Ty = SE.getEffectiveSCEVType(S->getType());
Dan Gohmanb8597bd2009-06-09 17:18:38 +00001527 Value *V = expandCodeFor(S->getOperand(),
1528 SE.getEffectiveSCEVType(S->getOperand()->getType()));
Benjamin Kramer547b6c52011-09-27 20:39:19 +00001529 Value *I = Builder.CreateSExt(V, Ty);
Dan Gohman51ad99d2010-01-21 02:09:26 +00001530 rememberInstruction(I);
Dan Gohmand195a222009-05-01 17:13:31 +00001531 return I;
Dan Gohman0e4cf892008-06-22 19:09:18 +00001532}
1533
Dan Gohman056857a2009-04-18 17:56:28 +00001534Value *SCEVExpander::visitSMaxExpr(const SCEVSMaxExpr *S) {
Dan Gohman92b969b2009-07-14 20:57:04 +00001535 Value *LHS = expand(S->getOperand(S->getNumOperands()-1));
Chris Lattner229907c2011-07-18 04:54:35 +00001536 Type *Ty = LHS->getType();
Dan Gohman92b969b2009-07-14 20:57:04 +00001537 for (int i = S->getNumOperands()-2; i >= 0; --i) {
1538 // In the case of mixed integer and pointer types, do the
1539 // rest of the comparisons as integer.
1540 if (S->getOperand(i)->getType() != Ty) {
1541 Ty = SE.getEffectiveSCEVType(Ty);
1542 LHS = InsertNoopCastOfTo(LHS, Ty);
1543 }
Dan Gohmanb8597bd2009-06-09 17:18:38 +00001544 Value *RHS = expandCodeFor(S->getOperand(i), Ty);
Benjamin Kramer547b6c52011-09-27 20:39:19 +00001545 Value *ICmp = Builder.CreateICmpSGT(LHS, RHS);
Dan Gohman51ad99d2010-01-21 02:09:26 +00001546 rememberInstruction(ICmp);
Dan Gohman830fd382009-06-27 21:18:18 +00001547 Value *Sel = Builder.CreateSelect(ICmp, LHS, RHS, "smax");
Dan Gohman51ad99d2010-01-21 02:09:26 +00001548 rememberInstruction(Sel);
Dan Gohmand195a222009-05-01 17:13:31 +00001549 LHS = Sel;
Nick Lewyckycdb7e542007-11-25 22:41:31 +00001550 }
Dan Gohman92b969b2009-07-14 20:57:04 +00001551 // In the case of mixed integer and pointer types, cast the
1552 // final result back to the pointer type.
1553 if (LHS->getType() != S->getType())
1554 LHS = InsertNoopCastOfTo(LHS, S->getType());
Nick Lewyckycdb7e542007-11-25 22:41:31 +00001555 return LHS;
1556}
1557
Dan Gohman056857a2009-04-18 17:56:28 +00001558Value *SCEVExpander::visitUMaxExpr(const SCEVUMaxExpr *S) {
Dan Gohman92b969b2009-07-14 20:57:04 +00001559 Value *LHS = expand(S->getOperand(S->getNumOperands()-1));
Chris Lattner229907c2011-07-18 04:54:35 +00001560 Type *Ty = LHS->getType();
Dan Gohman92b969b2009-07-14 20:57:04 +00001561 for (int i = S->getNumOperands()-2; i >= 0; --i) {
1562 // In the case of mixed integer and pointer types, do the
1563 // rest of the comparisons as integer.
1564 if (S->getOperand(i)->getType() != Ty) {
1565 Ty = SE.getEffectiveSCEVType(Ty);
1566 LHS = InsertNoopCastOfTo(LHS, Ty);
1567 }
Dan Gohmanb8597bd2009-06-09 17:18:38 +00001568 Value *RHS = expandCodeFor(S->getOperand(i), Ty);
Benjamin Kramer547b6c52011-09-27 20:39:19 +00001569 Value *ICmp = Builder.CreateICmpUGT(LHS, RHS);
Dan Gohman51ad99d2010-01-21 02:09:26 +00001570 rememberInstruction(ICmp);
Dan Gohman830fd382009-06-27 21:18:18 +00001571 Value *Sel = Builder.CreateSelect(ICmp, LHS, RHS, "umax");
Dan Gohman51ad99d2010-01-21 02:09:26 +00001572 rememberInstruction(Sel);
Dan Gohmand195a222009-05-01 17:13:31 +00001573 LHS = Sel;
Nick Lewycky1c44ebc2008-02-20 06:48:22 +00001574 }
Dan Gohman92b969b2009-07-14 20:57:04 +00001575 // In the case of mixed integer and pointer types, cast the
1576 // final result back to the pointer type.
1577 if (LHS->getType() != S->getType())
1578 LHS = InsertNoopCastOfTo(LHS, S->getType());
Nick Lewycky1c44ebc2008-02-20 06:48:22 +00001579 return LHS;
1580}
1581
Chris Lattner229907c2011-07-18 04:54:35 +00001582Value *SCEVExpander::expandCodeFor(const SCEV *SH, Type *Ty,
Andrew Trickc908b432012-01-20 07:41:13 +00001583 Instruction *IP) {
Dan Gohman89d4e3c2010-03-19 21:51:03 +00001584 Builder.SetInsertPoint(IP->getParent(), IP);
1585 return expandCodeFor(SH, Ty);
1586}
1587
Chris Lattner229907c2011-07-18 04:54:35 +00001588Value *SCEVExpander::expandCodeFor(const SCEV *SH, Type *Ty) {
Dan Gohman0e4cf892008-06-22 19:09:18 +00001589 // Expand the code for this SCEV.
Dan Gohman0a40ad92009-04-16 03:18:22 +00001590 Value *V = expand(SH);
Dan Gohman26494912009-05-19 02:15:55 +00001591 if (Ty) {
1592 assert(SE.getTypeSizeInBits(Ty) == SE.getTypeSizeInBits(SH->getType()) &&
1593 "non-trivial casts should be done with the SCEVs directly!");
1594 V = InsertNoopCastOfTo(V, Ty);
1595 }
1596 return V;
Dan Gohman0e4cf892008-06-22 19:09:18 +00001597}
1598
Dan Gohman056857a2009-04-18 17:56:28 +00001599Value *SCEVExpander::expand(const SCEV *S) {
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001600 // Compute an insertion point for this SCEV object. Hoist the instructions
1601 // as far out in the loop nest as possible.
Dan Gohman830fd382009-06-27 21:18:18 +00001602 Instruction *InsertPt = Builder.GetInsertPoint();
1603 for (Loop *L = SE.LI->getLoopFor(Builder.GetInsertBlock()); ;
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001604 L = L->getParentLoop())
Dan Gohmanafd6db92010-11-17 21:23:15 +00001605 if (SE.isLoopInvariant(S, L)) {
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001606 if (!L) break;
Dan Gohmandcddd572010-03-23 21:53:22 +00001607 if (BasicBlock *Preheader = L->getLoopPreheader())
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001608 InsertPt = Preheader->getTerminator();
Andrew Trickcbcc98f2012-01-02 21:25:10 +00001609 else {
1610 // LSR sets the insertion point for AddRec start/step values to the
1611 // block start to simplify value reuse, even though it's an invalid
1612 // position. SCEVExpander must correct for this in all cases.
1613 InsertPt = L->getHeader()->getFirstInsertionPt();
1614 }
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001615 } else {
1616 // If the SCEV is computable at this level, insert it into the header
1617 // after the PHIs (and after any other instructions that we've inserted
1618 // there) so that it is guaranteed to dominate any user inside the loop.
Bill Wendling8ddfc092011-08-16 20:45:24 +00001619 if (L && SE.hasComputableLoopEvolution(S, L) && !PostIncLoops.count(L))
1620 InsertPt = L->getHeader()->getFirstInsertionPt();
Andrew Trickc908b432012-01-20 07:41:13 +00001621 while (InsertPt != Builder.GetInsertPoint()
1622 && (isInsertedInstruction(InsertPt)
1623 || isa<DbgInfoIntrinsic>(InsertPt))) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001624 InsertPt = std::next(BasicBlock::iterator(InsertPt));
Andrew Trickc908b432012-01-20 07:41:13 +00001625 }
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001626 break;
1627 }
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001628
Dan Gohmandaafbe62009-06-26 22:53:46 +00001629 // Check to see if we already expanded this here.
Andrew Trickd4e1b5e2013-01-14 21:00:37 +00001630 std::map<std::pair<const SCEV *, Instruction *>, TrackingVH<Value> >::iterator
1631 I = InsertedExpressions.find(std::make_pair(S, InsertPt));
Dan Gohman830fd382009-06-27 21:18:18 +00001632 if (I != InsertedExpressions.end())
Dan Gohmandaafbe62009-06-26 22:53:46 +00001633 return I->second;
Dan Gohman830fd382009-06-27 21:18:18 +00001634
Benjamin Kramer6e931522013-09-30 15:40:17 +00001635 BuilderType::InsertPointGuard Guard(Builder);
Dan Gohman830fd382009-06-27 21:18:18 +00001636 Builder.SetInsertPoint(InsertPt->getParent(), InsertPt);
Dan Gohmandaafbe62009-06-26 22:53:46 +00001637
1638 // Expand the expression into instructions.
Anton Korobeynikov5849a622007-08-20 21:17:26 +00001639 Value *V = visit(S);
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001640
Dan Gohmandaafbe62009-06-26 22:53:46 +00001641 // Remember the expanded value for this SCEV at this location.
Andrew Trick870c1a32011-10-13 21:55:29 +00001642 //
1643 // This is independent of PostIncLoops. The mapped value simply materializes
1644 // the expression at this insertion point. If the mapped value happened to be
Alp Tokerf907b892013-12-05 05:44:44 +00001645 // a postinc expansion, it could be reused by a non-postinc user, but only if
Andrew Trick870c1a32011-10-13 21:55:29 +00001646 // its insertion point was already at the head of the loop.
1647 InsertedExpressions[std::make_pair(S, InsertPt)] = V;
Anton Korobeynikov5849a622007-08-20 21:17:26 +00001648 return V;
1649}
Dan Gohman63964b52009-06-05 16:35:53 +00001650
Dan Gohman6b751732010-02-14 03:12:47 +00001651void SCEVExpander::rememberInstruction(Value *I) {
Dan Gohmanbbfb6ac2010-06-05 00:33:07 +00001652 if (!PostIncLoops.empty())
1653 InsertedPostIncValues.insert(I);
1654 else
Dan Gohman6b751732010-02-14 03:12:47 +00001655 InsertedValues.insert(I);
Dan Gohman6b751732010-02-14 03:12:47 +00001656}
1657
Dan Gohman63964b52009-06-05 16:35:53 +00001658/// getOrInsertCanonicalInductionVariable - This method returns the
1659/// canonical induction variable of the specified type for the specified
1660/// loop (inserting one if there is none). A canonical induction variable
1661/// starts at zero and steps by one on each iteration.
Dan Gohman4fd92432010-07-20 16:44:52 +00001662PHINode *
Dan Gohman63964b52009-06-05 16:35:53 +00001663SCEVExpander::getOrInsertCanonicalInductionVariable(const Loop *L,
Chris Lattner229907c2011-07-18 04:54:35 +00001664 Type *Ty) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001665 assert(Ty->isIntegerTy() && "Can only insert integer induction variables!");
Dan Gohman31158752010-07-20 16:46:58 +00001666
1667 // Build a SCEV for {0,+,1}<L>.
Andrew Trick8b55b732011-03-14 16:50:06 +00001668 // Conservatively use FlagAnyWrap for now.
Dan Gohman1d2ded72010-05-03 22:09:21 +00001669 const SCEV *H = SE.getAddRecExpr(SE.getConstant(Ty, 0),
Andrew Trick8b55b732011-03-14 16:50:06 +00001670 SE.getConstant(Ty, 1), L, SCEV::FlagAnyWrap);
Dan Gohman31158752010-07-20 16:46:58 +00001671
1672 // Emit code for it.
Benjamin Kramer6e931522013-09-30 15:40:17 +00001673 BuilderType::InsertPointGuard Guard(Builder);
Craig Topper9f008862014-04-15 04:59:12 +00001674 PHINode *V = cast<PHINode>(expandCodeFor(H, nullptr,
1675 L->getHeader()->begin()));
Dan Gohman31158752010-07-20 16:46:58 +00001676
Dan Gohmanf19aeec2009-06-24 01:18:18 +00001677 return V;
Dan Gohman63964b52009-06-05 16:35:53 +00001678}
Andrew Trickf9201c52011-10-11 02:28:51 +00001679
Andrew Trickf9201c52011-10-11 02:28:51 +00001680/// replaceCongruentIVs - Check for congruent phis in this loop header and
1681/// replace them with their most canonical representative. Return the number of
1682/// phis eliminated.
1683///
1684/// This does not depend on any SCEVExpander state but should be used in
1685/// the same context that SCEVExpander is used.
1686unsigned SCEVExpander::replaceCongruentIVs(Loop *L, const DominatorTree *DT,
Nadav Rotem4dc976f2012-10-19 21:28:43 +00001687 SmallVectorImpl<WeakVH> &DeadInsts,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001688 const TargetTransformInfo *TTI) {
Andrew Trick5adedf52012-01-07 01:12:09 +00001689 // Find integer phis in order of increasing width.
1690 SmallVector<PHINode*, 8> Phis;
1691 for (BasicBlock::iterator I = L->getHeader()->begin();
1692 PHINode *Phi = dyn_cast<PHINode>(I); ++I) {
1693 Phis.push_back(Phi);
1694 }
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001695 if (TTI)
Benjamin Kramerb0f74b22014-03-07 21:35:39 +00001696 std::sort(Phis.begin(), Phis.end(), [](Value *LHS, Value *RHS) {
1697 // Put pointers at the back and make sure pointer < pointer = false.
1698 if (!LHS->getType()->isIntegerTy() || !RHS->getType()->isIntegerTy())
1699 return RHS->getType()->isIntegerTy() && !LHS->getType()->isIntegerTy();
1700 return RHS->getType()->getPrimitiveSizeInBits() <
1701 LHS->getType()->getPrimitiveSizeInBits();
1702 });
Andrew Trick5adedf52012-01-07 01:12:09 +00001703
Andrew Trickf9201c52011-10-11 02:28:51 +00001704 unsigned NumElim = 0;
1705 DenseMap<const SCEV *, PHINode *> ExprToIVMap;
Andrew Trick5adedf52012-01-07 01:12:09 +00001706 // Process phis from wide to narrow. Mapping wide phis to the their truncation
1707 // so narrow phis can reuse them.
1708 for (SmallVectorImpl<PHINode*>::const_iterator PIter = Phis.begin(),
1709 PEnd = Phis.end(); PIter != PEnd; ++PIter) {
1710 PHINode *Phi = *PIter;
1711
Benjamin Kramera225ed82012-10-19 16:37:30 +00001712 // Fold constant phis. They may be congruent to other constant phis and
1713 // would confuse the logic below that expects proper IVs.
Hal Finkel60db0582014-09-07 18:57:58 +00001714 if (Value *V = SimplifyInstruction(Phi, SE.DL, SE.TLI, SE.DT, SE.AT)) {
Benjamin Kramera225ed82012-10-19 16:37:30 +00001715 Phi->replaceAllUsesWith(V);
1716 DeadInsts.push_back(Phi);
1717 ++NumElim;
1718 DEBUG_WITH_TYPE(DebugType, dbgs()
1719 << "INDVARS: Eliminated constant iv: " << *Phi << '\n');
1720 continue;
1721 }
1722
Andrew Trickf9201c52011-10-11 02:28:51 +00001723 if (!SE.isSCEVable(Phi->getType()))
1724 continue;
1725
1726 PHINode *&OrigPhiRef = ExprToIVMap[SE.getSCEV(Phi)];
1727 if (!OrigPhiRef) {
1728 OrigPhiRef = Phi;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001729 if (Phi->getType()->isIntegerTy() && TTI
1730 && TTI->isTruncateFree(Phi->getType(), Phis.back()->getType())) {
Andrew Trick5adedf52012-01-07 01:12:09 +00001731 // This phi can be freely truncated to the narrowest phi type. Map the
1732 // truncated expression to it so it will be reused for narrow types.
1733 const SCEV *TruncExpr =
1734 SE.getTruncateExpr(SE.getSCEV(Phi), Phis.back()->getType());
1735 ExprToIVMap[TruncExpr] = Phi;
1736 }
Andrew Trickf9201c52011-10-11 02:28:51 +00001737 continue;
1738 }
1739
Andrew Trick5adedf52012-01-07 01:12:09 +00001740 // Replacing a pointer phi with an integer phi or vice-versa doesn't make
1741 // sense.
1742 if (OrigPhiRef->getType()->isPointerTy() != Phi->getType()->isPointerTy())
Andrew Trickf9201c52011-10-11 02:28:51 +00001743 continue;
1744
1745 if (BasicBlock *LatchBlock = L->getLoopLatch()) {
1746 Instruction *OrigInc =
1747 cast<Instruction>(OrigPhiRef->getIncomingValueForBlock(LatchBlock));
1748 Instruction *IsomorphicInc =
1749 cast<Instruction>(Phi->getIncomingValueForBlock(LatchBlock));
1750
Andrew Trick5adedf52012-01-07 01:12:09 +00001751 // If this phi has the same width but is more canonical, replace the
Andrew Trickc908b432012-01-20 07:41:13 +00001752 // original with it. As part of the "more canonical" determination,
1753 // respect a prior decision to use an IV chain.
Andrew Trick5adedf52012-01-07 01:12:09 +00001754 if (OrigPhiRef->getType() == Phi->getType()
Andrew Trickc908b432012-01-20 07:41:13 +00001755 && !(ChainedPhis.count(Phi)
1756 || isExpandedAddRecExprPHI(OrigPhiRef, OrigInc, L))
1757 && (ChainedPhis.count(Phi)
1758 || isExpandedAddRecExprPHI(Phi, IsomorphicInc, L))) {
Andrew Trickf9201c52011-10-11 02:28:51 +00001759 std::swap(OrigPhiRef, Phi);
1760 std::swap(OrigInc, IsomorphicInc);
1761 }
1762 // Replacing the congruent phi is sufficient because acyclic redundancy
1763 // elimination, CSE/GVN, should handle the rest. However, once SCEV proves
1764 // that a phi is congruent, it's often the head of an IV user cycle that
Andrew Trickf730f392012-01-07 01:29:21 +00001765 // is isomorphic with the original phi. It's worth eagerly cleaning up the
1766 // common case of a single IV increment so that DeleteDeadPHIs can remove
1767 // cycles that had postinc uses.
Andrew Trick5adedf52012-01-07 01:12:09 +00001768 const SCEV *TruncExpr = SE.getTruncateOrNoop(SE.getSCEV(OrigInc),
1769 IsomorphicInc->getType());
1770 if (OrigInc != IsomorphicInc
Andrew Trickd5d2db92012-01-10 01:45:08 +00001771 && TruncExpr == SE.getSCEV(IsomorphicInc)
Andrew Trickc908b432012-01-20 07:41:13 +00001772 && ((isa<PHINode>(OrigInc) && isa<PHINode>(IsomorphicInc))
1773 || hoistIVInc(OrigInc, IsomorphicInc))) {
Andrew Trickf9201c52011-10-11 02:28:51 +00001774 DEBUG_WITH_TYPE(DebugType, dbgs()
1775 << "INDVARS: Eliminated congruent iv.inc: "
1776 << *IsomorphicInc << '\n');
Andrew Trick5adedf52012-01-07 01:12:09 +00001777 Value *NewInc = OrigInc;
1778 if (OrigInc->getType() != IsomorphicInc->getType()) {
Andrew Trick23ef0d62012-01-14 03:17:23 +00001779 Instruction *IP = isa<PHINode>(OrigInc)
1780 ? (Instruction*)L->getHeader()->getFirstInsertionPt()
1781 : OrigInc->getNextNode();
1782 IRBuilder<> Builder(IP);
Andrew Trick5adedf52012-01-07 01:12:09 +00001783 Builder.SetCurrentDebugLocation(IsomorphicInc->getDebugLoc());
1784 NewInc = Builder.
1785 CreateTruncOrBitCast(OrigInc, IsomorphicInc->getType(), IVName);
1786 }
1787 IsomorphicInc->replaceAllUsesWith(NewInc);
Andrew Trickf9201c52011-10-11 02:28:51 +00001788 DeadInsts.push_back(IsomorphicInc);
1789 }
1790 }
1791 DEBUG_WITH_TYPE(DebugType, dbgs()
1792 << "INDVARS: Eliminated congruent iv: " << *Phi << '\n');
1793 ++NumElim;
Andrew Trick5adedf52012-01-07 01:12:09 +00001794 Value *NewIV = OrigPhiRef;
1795 if (OrigPhiRef->getType() != Phi->getType()) {
1796 IRBuilder<> Builder(L->getHeader()->getFirstInsertionPt());
1797 Builder.SetCurrentDebugLocation(Phi->getDebugLoc());
1798 NewIV = Builder.CreateTruncOrBitCast(OrigPhiRef, Phi->getType(), IVName);
1799 }
1800 Phi->replaceAllUsesWith(NewIV);
Andrew Trickf9201c52011-10-11 02:28:51 +00001801 DeadInsts.push_back(Phi);
1802 }
1803 return NumElim;
1804}
Andrew Trick653513b2012-07-13 23:33:10 +00001805
1806namespace {
1807// Search for a SCEV subexpression that is not safe to expand. Any expression
1808// that may expand to a !isSafeToSpeculativelyExecute value is unsafe, namely
1809// UDiv expressions. We don't know if the UDiv is derived from an IR divide
1810// instruction, but the important thing is that we prove the denominator is
1811// nonzero before expansion.
1812//
1813// IVUsers already checks that IV-derived expressions are safe. So this check is
1814// only needed when the expression includes some subexpression that is not IV
1815// derived.
1816//
1817// Currently, we only allow division by a nonzero constant here. If this is
1818// inadequate, we could easily allow division by SCEVUnknown by using
1819// ValueTracking to check isKnownNonZero().
Andrew Trick57243da2013-10-25 21:35:56 +00001820//
1821// We cannot generally expand recurrences unless the step dominates the loop
1822// header. The expander handles the special case of affine recurrences by
1823// scaling the recurrence outside the loop, but this technique isn't generally
1824// applicable. Expanding a nested recurrence outside a loop requires computing
1825// binomial coefficients. This could be done, but the recurrence has to be in a
1826// perfectly reduced form, which can't be guaranteed.
Andrew Trick653513b2012-07-13 23:33:10 +00001827struct SCEVFindUnsafe {
Andrew Trick57243da2013-10-25 21:35:56 +00001828 ScalarEvolution &SE;
Andrew Trick653513b2012-07-13 23:33:10 +00001829 bool IsUnsafe;
1830
Andrew Trick57243da2013-10-25 21:35:56 +00001831 SCEVFindUnsafe(ScalarEvolution &se): SE(se), IsUnsafe(false) {}
Andrew Trick653513b2012-07-13 23:33:10 +00001832
1833 bool follow(const SCEV *S) {
Andrew Trick57243da2013-10-25 21:35:56 +00001834 if (const SCEVUDivExpr *D = dyn_cast<SCEVUDivExpr>(S)) {
1835 const SCEVConstant *SC = dyn_cast<SCEVConstant>(D->getRHS());
1836 if (!SC || SC->getValue()->isZero()) {
1837 IsUnsafe = true;
1838 return false;
1839 }
1840 }
1841 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
1842 const SCEV *Step = AR->getStepRecurrence(SE);
1843 if (!AR->isAffine() && !SE.dominates(Step, AR->getLoop()->getHeader())) {
1844 IsUnsafe = true;
1845 return false;
1846 }
1847 }
1848 return true;
Andrew Trick653513b2012-07-13 23:33:10 +00001849 }
1850 bool isDone() const { return IsUnsafe; }
1851};
1852}
1853
1854namespace llvm {
Andrew Trick57243da2013-10-25 21:35:56 +00001855bool isSafeToExpand(const SCEV *S, ScalarEvolution &SE) {
1856 SCEVFindUnsafe Search(SE);
Andrew Trick653513b2012-07-13 23:33:10 +00001857 visitAll(S, Search);
1858 return !Search.IsUnsafe;
1859}
1860}