blob: e6b9753826715b245aa16595bdb6957266c5805e [file] [log] [blame]
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001//===- InstCombineMulDivRem.cpp -------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the visit functions for mul, fmul, sdiv, udiv, fdiv,
11// srem, urem, frem.
12//
13//===----------------------------------------------------------------------===//
14
Chandler Carrutha9174582015-01-22 05:25:13 +000015#include "InstCombineInternal.h"
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +000016#include "llvm/ADT/APFloat.h"
17#include "llvm/ADT/APInt.h"
18#include "llvm/ADT/SmallVector.h"
Duncan Sandsd0eb6d32010-12-21 14:00:22 +000019#include "llvm/Analysis/InstructionSimplify.h"
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +000020#include "llvm/IR/BasicBlock.h"
21#include "llvm/IR/Constant.h"
22#include "llvm/IR/Constants.h"
23#include "llvm/IR/InstrTypes.h"
24#include "llvm/IR/Instruction.h"
25#include "llvm/IR/Instructions.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000026#include "llvm/IR/IntrinsicInst.h"
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +000027#include "llvm/IR/Intrinsics.h"
28#include "llvm/IR/Operator.h"
Chandler Carruth820a9082014-03-04 11:08:18 +000029#include "llvm/IR/PatternMatch.h"
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +000030#include "llvm/IR/Type.h"
31#include "llvm/IR/Value.h"
32#include "llvm/Support/Casting.h"
33#include "llvm/Support/ErrorHandling.h"
34#include "llvm/Support/KnownBits.h"
35#include "llvm/Transforms/InstCombine/InstCombineWorklist.h"
36#include <cassert>
37#include <cstddef>
38#include <cstdint>
39#include <utility>
40
Chris Lattnerdc054bf2010-01-05 06:09:35 +000041using namespace llvm;
42using namespace PatternMatch;
43
Chandler Carruth964daaa2014-04-22 02:55:47 +000044#define DEBUG_TYPE "instcombine"
45
Sanjay Patel6eccf482015-09-09 15:24:36 +000046/// The specific integer value is used in a context where it is known to be
47/// non-zero. If this allows us to simplify the computation, do so and return
48/// the new operand, otherwise return null.
Hal Finkel60db0582014-09-07 18:57:58 +000049static Value *simplifyValueKnownNonZero(Value *V, InstCombiner &IC,
Mehdi Aminia28d91d2015-03-10 02:37:25 +000050 Instruction &CxtI) {
Chris Lattner7c99f192011-05-22 18:18:41 +000051 // If V has multiple uses, then we would have to do more analysis to determine
52 // if this is safe. For example, the use could be in dynamically unreached
53 // code.
Craig Topperf40110f2014-04-25 05:29:35 +000054 if (!V->hasOneUse()) return nullptr;
Jim Grosbachbdbd7342013-04-05 21:20:12 +000055
Chris Lattner388cb8a2011-05-23 00:32:19 +000056 bool MadeChange = false;
57
Chris Lattner7c99f192011-05-22 18:18:41 +000058 // ((1 << A) >>u B) --> (1 << (A-B))
59 // Because V cannot be zero, we know that B is less than A.
David Majnemerdad21032014-10-14 20:28:40 +000060 Value *A = nullptr, *B = nullptr, *One = nullptr;
61 if (match(V, m_LShr(m_OneUse(m_Shl(m_Value(One), m_Value(A))), m_Value(B))) &&
62 match(One, m_One())) {
Craig Topperbb4069e2017-07-07 23:16:26 +000063 A = IC.Builder.CreateSub(A, B);
64 return IC.Builder.CreateShl(One, A);
Chris Lattner7c99f192011-05-22 18:18:41 +000065 }
Jim Grosbachbdbd7342013-04-05 21:20:12 +000066
Chris Lattner388cb8a2011-05-23 00:32:19 +000067 // (PowerOfTwo >>u B) --> isExact since shifting out the result would make it
68 // inexact. Similarly for <<.
Sanjay Patela8ef4a52016-05-22 17:08:52 +000069 BinaryOperator *I = dyn_cast<BinaryOperator>(V);
70 if (I && I->isLogicalShift() &&
Craig Topperd4039f72017-05-25 21:51:12 +000071 IC.isKnownToBeAPowerOfTwo(I->getOperand(0), false, 0, &CxtI)) {
Sanjay Patela8ef4a52016-05-22 17:08:52 +000072 // We know that this is an exact/nuw shift and that the input is a
73 // non-zero context as well.
74 if (Value *V2 = simplifyValueKnownNonZero(I->getOperand(0), IC, CxtI)) {
75 I->setOperand(0, V2);
76 MadeChange = true;
Chris Lattner388cb8a2011-05-23 00:32:19 +000077 }
78
Sanjay Patela8ef4a52016-05-22 17:08:52 +000079 if (I->getOpcode() == Instruction::LShr && !I->isExact()) {
80 I->setIsExact();
81 MadeChange = true;
82 }
83
84 if (I->getOpcode() == Instruction::Shl && !I->hasNoUnsignedWrap()) {
85 I->setHasNoUnsignedWrap();
86 MadeChange = true;
87 }
88 }
89
Chris Lattner162dfc32011-05-22 18:26:48 +000090 // TODO: Lots more we could do here:
Chris Lattner162dfc32011-05-22 18:26:48 +000091 // If V is a phi node, we can call this on each of its operands.
92 // "select cond, X, 0" can simplify to "X".
Jim Grosbachbdbd7342013-04-05 21:20:12 +000093
Craig Topperf40110f2014-04-25 05:29:35 +000094 return MadeChange ? V : nullptr;
Chris Lattner7c99f192011-05-22 18:18:41 +000095}
96
Sanjay Patel6eccf482015-09-09 15:24:36 +000097/// True if the multiply can not be expressed in an int this size.
David Majnemer27adb122014-10-12 08:34:24 +000098static bool MultiplyOverflows(const APInt &C1, const APInt &C2, APInt &Product,
99 bool IsSigned) {
100 bool Overflow;
101 if (IsSigned)
102 Product = C1.smul_ov(C2, Overflow);
103 else
104 Product = C1.umul_ov(C2, Overflow);
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000105
David Majnemer27adb122014-10-12 08:34:24 +0000106 return Overflow;
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000107}
108
David Majnemerf9a095d2014-08-16 08:55:06 +0000109/// \brief True if C2 is a multiple of C1. Quotient contains C2/C1.
110static bool IsMultiple(const APInt &C1, const APInt &C2, APInt &Quotient,
111 bool IsSigned) {
112 assert(C1.getBitWidth() == C2.getBitWidth() &&
113 "Inconsistent width of constants!");
114
David Majnemer135ca402015-09-06 06:49:59 +0000115 // Bail if we will divide by zero.
116 if (C2.isMinValue())
117 return false;
118
119 // Bail if we would divide INT_MIN by -1.
120 if (IsSigned && C1.isMinSignedValue() && C2.isAllOnesValue())
121 return false;
122
David Majnemerf9a095d2014-08-16 08:55:06 +0000123 APInt Remainder(C1.getBitWidth(), /*Val=*/0ULL, IsSigned);
124 if (IsSigned)
125 APInt::sdivrem(C1, C2, Quotient, Remainder);
126 else
127 APInt::udivrem(C1, C2, Quotient, Remainder);
128
129 return Remainder.isMinValue();
130}
131
Rafael Espindola65281bf2013-05-31 14:27:15 +0000132/// \brief A helper routine of InstCombiner::visitMul().
133///
134/// If C is a vector of known powers of 2, then this function returns
135/// a new vector obtained from C replacing each element with its logBase2.
136/// Return a null pointer otherwise.
137static Constant *getLogBase2Vector(ConstantDataVector *CV) {
138 const APInt *IVal;
139 SmallVector<Constant *, 4> Elts;
140
141 for (unsigned I = 0, E = CV->getNumElements(); I != E; ++I) {
142 Constant *Elt = CV->getElementAsConstant(I);
143 if (!match(Elt, m_APInt(IVal)) || !IVal->isPowerOf2())
Craig Topperf40110f2014-04-25 05:29:35 +0000144 return nullptr;
Rafael Espindola65281bf2013-05-31 14:27:15 +0000145 Elts.push_back(ConstantInt::get(Elt->getType(), IVal->logBase2()));
146 }
147
148 return ConstantVector::get(Elts);
149}
150
David Majnemer54c2ca22014-12-26 09:10:14 +0000151/// \brief Return true if we can prove that:
152/// (mul LHS, RHS) === (mul nsw LHS, RHS)
Craig Topper2b1fc322017-05-22 06:25:31 +0000153bool InstCombiner::willNotOverflowSignedMul(const Value *LHS,
154 const Value *RHS,
155 const Instruction &CxtI) const {
David Majnemer54c2ca22014-12-26 09:10:14 +0000156 // Multiplying n * m significant bits yields a result of n + m significant
157 // bits. If the total number of significant bits does not exceed the
158 // result bit width (minus 1), there is no overflow.
159 // This means if we have enough leading sign bits in the operands
160 // we can guarantee that the result does not overflow.
161 // Ref: "Hacker's Delight" by Henry Warren
162 unsigned BitWidth = LHS->getType()->getScalarSizeInBits();
163
164 // Note that underestimating the number of sign bits gives a more
165 // conservative answer.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000166 unsigned SignBits =
167 ComputeNumSignBits(LHS, 0, &CxtI) + ComputeNumSignBits(RHS, 0, &CxtI);
David Majnemer54c2ca22014-12-26 09:10:14 +0000168
169 // First handle the easy case: if we have enough sign bits there's
170 // definitely no overflow.
171 if (SignBits > BitWidth + 1)
172 return true;
173
174 // There are two ambiguous cases where there can be no overflow:
175 // SignBits == BitWidth + 1 and
176 // SignBits == BitWidth
177 // The second case is difficult to check, therefore we only handle the
178 // first case.
179 if (SignBits == BitWidth + 1) {
180 // It overflows only when both arguments are negative and the true
181 // product is exactly the minimum negative number.
182 // E.g. mul i16 with 17 sign bits: 0xff00 * 0xff80 = 0x8000
183 // For simplicity we just check if at least one side is not negative.
Craig Topper1a36b7d2017-05-15 06:39:41 +0000184 KnownBits LHSKnown = computeKnownBits(LHS, /*Depth=*/0, &CxtI);
185 KnownBits RHSKnown = computeKnownBits(RHS, /*Depth=*/0, &CxtI);
186 if (LHSKnown.isNonNegative() || RHSKnown.isNonNegative())
David Majnemer54c2ca22014-12-26 09:10:14 +0000187 return true;
188 }
189 return false;
190}
191
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000192Instruction *InstCombiner::visitMul(BinaryOperator &I) {
Duncan Sands641baf12010-11-13 15:10:37 +0000193 bool Changed = SimplifyAssociativeOrCommutative(I);
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000194 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
195
Serge Pavlov9ef66a82014-05-11 08:46:12 +0000196 if (Value *V = SimplifyVectorOp(I))
Sanjay Patel4b198802016-02-01 22:23:39 +0000197 return replaceInstUsesWith(I, V);
Serge Pavlov9ef66a82014-05-11 08:46:12 +0000198
Craig Toppera4205622017-06-09 03:21:29 +0000199 if (Value *V = SimplifyMulInst(Op0, Op1, SQ.getWithInstruction(&I)))
Sanjay Patel4b198802016-02-01 22:23:39 +0000200 return replaceInstUsesWith(I, V);
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000201
Duncan Sandsfbb9ac32010-12-22 13:36:08 +0000202 if (Value *V = SimplifyUsingDistributiveLaws(I))
Sanjay Patel4b198802016-02-01 22:23:39 +0000203 return replaceInstUsesWith(I, V);
Duncan Sandsfbb9ac32010-12-22 13:36:08 +0000204
David Majnemer027bc802014-11-22 04:52:38 +0000205 // X * -1 == 0 - X
206 if (match(Op1, m_AllOnes())) {
207 BinaryOperator *BO = BinaryOperator::CreateNeg(Op0, I.getName());
208 if (I.hasNoSignedWrap())
209 BO->setHasNoSignedWrap();
210 return BO;
211 }
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000212
Rafael Espindola65281bf2013-05-31 14:27:15 +0000213 // Also allow combining multiply instructions on vectors.
214 {
215 Value *NewOp;
216 Constant *C1, *C2;
217 const APInt *IVal;
218 if (match(&I, m_Mul(m_Shl(m_Value(NewOp), m_Constant(C2)),
219 m_Constant(C1))) &&
David Majnemerfd4a6d22014-11-22 04:52:52 +0000220 match(C1, m_APInt(IVal))) {
221 // ((X << C2)*C1) == (X * (C1 << C2))
222 Constant *Shl = ConstantExpr::getShl(C1, C2);
223 BinaryOperator *Mul = cast<BinaryOperator>(I.getOperand(0));
224 BinaryOperator *BO = BinaryOperator::CreateMul(NewOp, Shl);
225 if (I.hasNoUnsignedWrap() && Mul->hasNoUnsignedWrap())
226 BO->setHasNoUnsignedWrap();
227 if (I.hasNoSignedWrap() && Mul->hasNoSignedWrap() &&
228 Shl->isNotMinSignedValue())
229 BO->setHasNoSignedWrap();
230 return BO;
231 }
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000232
Rafael Espindola65281bf2013-05-31 14:27:15 +0000233 if (match(&I, m_Mul(m_Value(NewOp), m_Constant(C1)))) {
Craig Topperf40110f2014-04-25 05:29:35 +0000234 Constant *NewCst = nullptr;
Rafael Espindola65281bf2013-05-31 14:27:15 +0000235 if (match(C1, m_APInt(IVal)) && IVal->isPowerOf2())
236 // Replace X*(2^C) with X << C, where C is either a scalar or a splat.
237 NewCst = ConstantInt::get(NewOp->getType(), IVal->logBase2());
238 else if (ConstantDataVector *CV = dyn_cast<ConstantDataVector>(C1))
239 // Replace X*(2^C) with X << C, where C is a vector of known
240 // constant powers of 2.
241 NewCst = getLogBase2Vector(CV);
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000242
Rafael Espindola65281bf2013-05-31 14:27:15 +0000243 if (NewCst) {
David Majnemer45951a62015-04-18 04:41:30 +0000244 unsigned Width = NewCst->getType()->getPrimitiveSizeInBits();
Rafael Espindola65281bf2013-05-31 14:27:15 +0000245 BinaryOperator *Shl = BinaryOperator::CreateShl(NewOp, NewCst);
Tilmann Scheller2bc5cb62014-10-07 10:19:34 +0000246
Tilmann Scheller2bc5cb62014-10-07 10:19:34 +0000247 if (I.hasNoUnsignedWrap())
248 Shl->setHasNoUnsignedWrap();
David Majnemer45951a62015-04-18 04:41:30 +0000249 if (I.hasNoSignedWrap()) {
Craig Topper5fe01972017-06-27 19:57:53 +0000250 const APInt *V;
251 if (match(NewCst, m_APInt(V)) && *V != Width - 1)
David Majnemer45951a62015-04-18 04:41:30 +0000252 Shl->setHasNoSignedWrap();
253 }
Tilmann Scheller2bc5cb62014-10-07 10:19:34 +0000254
Rafael Espindola65281bf2013-05-31 14:27:15 +0000255 return Shl;
256 }
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000257 }
Rafael Espindola65281bf2013-05-31 14:27:15 +0000258 }
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000259
Rafael Espindola65281bf2013-05-31 14:27:15 +0000260 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
Stuart Hastings23804832011-06-01 16:42:47 +0000261 // (Y - X) * (-(2**n)) -> (X - Y) * (2**n), for positive nonzero n
262 // (Y + const) * (-(2**n)) -> (-constY) * (2**n), for positive nonzero n
263 // The "* (2**n)" thus becomes a potential shifting opportunity.
Stuart Hastings82843742011-05-30 20:00:33 +0000264 {
265 const APInt & Val = CI->getValue();
266 const APInt &PosVal = Val.abs();
267 if (Val.isNegative() && PosVal.isPowerOf2()) {
Craig Topperf40110f2014-04-25 05:29:35 +0000268 Value *X = nullptr, *Y = nullptr;
Stuart Hastings23804832011-06-01 16:42:47 +0000269 if (Op0->hasOneUse()) {
270 ConstantInt *C1;
Craig Topperf40110f2014-04-25 05:29:35 +0000271 Value *Sub = nullptr;
Stuart Hastings23804832011-06-01 16:42:47 +0000272 if (match(Op0, m_Sub(m_Value(Y), m_Value(X))))
Craig Topperbb4069e2017-07-07 23:16:26 +0000273 Sub = Builder.CreateSub(X, Y, "suba");
Stuart Hastings23804832011-06-01 16:42:47 +0000274 else if (match(Op0, m_Add(m_Value(Y), m_ConstantInt(C1))))
Craig Topperbb4069e2017-07-07 23:16:26 +0000275 Sub = Builder.CreateSub(Builder.CreateNeg(C1), Y, "subc");
Stuart Hastings23804832011-06-01 16:42:47 +0000276 if (Sub)
277 return
278 BinaryOperator::CreateMul(Sub,
279 ConstantInt::get(Y->getType(), PosVal));
Stuart Hastings82843742011-05-30 20:00:33 +0000280 }
281 }
282 }
Chris Lattner6b657ae2011-02-10 05:36:31 +0000283 }
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000284
Chris Lattner6b657ae2011-02-10 05:36:31 +0000285 // Simplify mul instructions with a constant RHS.
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000286 if (isa<Constant>(Op1)) {
Sanjay Pateldb0938f2017-01-10 23:49:07 +0000287 if (Instruction *FoldedMul = foldOpWithConstantIntoOperand(I))
288 return FoldedMul;
Benjamin Kramer72196f32014-01-19 15:24:22 +0000289
290 // Canonicalize (X+C1)*CI -> X*CI+C1*CI.
291 {
292 Value *X;
293 Constant *C1;
294 if (match(Op0, m_OneUse(m_Add(m_Value(X), m_Constant(C1))))) {
Craig Topperbb4069e2017-07-07 23:16:26 +0000295 Value *Mul = Builder.CreateMul(C1, Op1);
David Majnemer6cf6c052014-06-19 07:14:33 +0000296 // Only go forward with the transform if C1*CI simplifies to a tidier
297 // constant.
298 if (!match(Mul, m_Mul(m_Value(), m_Value())))
Craig Topperbb4069e2017-07-07 23:16:26 +0000299 return BinaryOperator::CreateAdd(Builder.CreateMul(X, Op1), Mul);
Benjamin Kramer72196f32014-01-19 15:24:22 +0000300 }
301 }
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000302 }
303
David Majnemer8279a7502014-11-22 07:25:19 +0000304 if (Value *Op0v = dyn_castNegVal(Op0)) { // -X * -Y = X*Y
305 if (Value *Op1v = dyn_castNegVal(Op1)) {
306 BinaryOperator *BO = BinaryOperator::CreateMul(Op0v, Op1v);
307 if (I.hasNoSignedWrap() &&
308 match(Op0, m_NSWSub(m_Value(), m_Value())) &&
309 match(Op1, m_NSWSub(m_Value(), m_Value())))
310 BO->setHasNoSignedWrap();
311 return BO;
312 }
313 }
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000314
315 // (X / Y) * Y = X - (X % Y)
316 // (X / Y) * -Y = (X % Y) - X
317 {
Sanjay Patela0a56822017-03-14 17:27:27 +0000318 Value *Y = Op1;
319 BinaryOperator *Div = dyn_cast<BinaryOperator>(Op0);
320 if (!Div || (Div->getOpcode() != Instruction::UDiv &&
321 Div->getOpcode() != Instruction::SDiv)) {
322 Y = Op0;
323 Div = dyn_cast<BinaryOperator>(Op1);
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000324 }
Sanjay Patela0a56822017-03-14 17:27:27 +0000325 Value *Neg = dyn_castNegVal(Y);
326 if (Div && Div->hasOneUse() &&
327 (Div->getOperand(1) == Y || Div->getOperand(1) == Neg) &&
328 (Div->getOpcode() == Instruction::UDiv ||
329 Div->getOpcode() == Instruction::SDiv)) {
330 Value *X = Div->getOperand(0), *DivOp1 = Div->getOperand(1);
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000331
Chris Lattner35315d02011-02-06 21:44:57 +0000332 // If the division is exact, X % Y is zero, so we end up with X or -X.
Sanjay Patela0a56822017-03-14 17:27:27 +0000333 if (Div->isExact()) {
334 if (DivOp1 == Y)
335 return replaceInstUsesWith(I, X);
336 return BinaryOperator::CreateNeg(X);
337 }
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000338
Sanjay Patela0a56822017-03-14 17:27:27 +0000339 auto RemOpc = Div->getOpcode() == Instruction::UDiv ? Instruction::URem
340 : Instruction::SRem;
Craig Topperbb4069e2017-07-07 23:16:26 +0000341 Value *Rem = Builder.CreateBinOp(RemOpc, X, DivOp1);
Sanjay Patela0a56822017-03-14 17:27:27 +0000342 if (DivOp1 == Y)
343 return BinaryOperator::CreateSub(X, Rem);
344 return BinaryOperator::CreateSub(Rem, X);
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000345 }
346 }
347
348 /// i1 mul -> i1 and.
Craig Topperfde47232017-07-09 07:04:03 +0000349 if (I.getType()->isIntOrIntVectorTy(1))
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000350 return BinaryOperator::CreateAnd(Op0, Op1);
351
352 // X*(1 << Y) --> X << Y
353 // (1 << Y)*X --> X << Y
354 {
355 Value *Y;
David Majnemer546f8102014-11-22 08:57:02 +0000356 BinaryOperator *BO = nullptr;
357 bool ShlNSW = false;
358 if (match(Op0, m_Shl(m_One(), m_Value(Y)))) {
359 BO = BinaryOperator::CreateShl(Op1, Y);
David Majnemer087dc8b2015-01-04 07:36:02 +0000360 ShlNSW = cast<ShlOperator>(Op0)->hasNoSignedWrap();
David Majnemer8e6f6a92014-11-24 16:41:13 +0000361 } else if (match(Op1, m_Shl(m_One(), m_Value(Y)))) {
David Majnemer546f8102014-11-22 08:57:02 +0000362 BO = BinaryOperator::CreateShl(Op0, Y);
David Majnemer087dc8b2015-01-04 07:36:02 +0000363 ShlNSW = cast<ShlOperator>(Op1)->hasNoSignedWrap();
David Majnemer546f8102014-11-22 08:57:02 +0000364 }
365 if (BO) {
366 if (I.hasNoUnsignedWrap())
367 BO->setHasNoUnsignedWrap();
368 if (I.hasNoSignedWrap() && ShlNSW)
369 BO->setHasNoSignedWrap();
370 return BO;
371 }
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000372 }
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000373
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000374 // If one of the operands of the multiply is a cast from a boolean value, then
375 // we know the bool is either zero or one, so this is a 'masking' multiply.
376 // X * Y (where Y is 0 or 1) -> X & (0-Y)
Duncan Sands19d0b472010-02-16 11:11:14 +0000377 if (!I.getType()->isVectorTy()) {
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000378 // -2 is "-1 << 1" so it is all bits set except the low one.
379 APInt Negative2(I.getType()->getPrimitiveSizeInBits(), (uint64_t)-2, true);
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000380
Craig Topperf40110f2014-04-25 05:29:35 +0000381 Value *BoolCast = nullptr, *OtherOp = nullptr;
Richard Trieu7a083812016-02-18 22:09:30 +0000382 if (MaskedValueIsZero(Op0, Negative2, 0, &I)) {
383 BoolCast = Op0;
384 OtherOp = Op1;
385 } else if (MaskedValueIsZero(Op1, Negative2, 0, &I)) {
386 BoolCast = Op1;
387 OtherOp = Op0;
388 }
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000389
390 if (BoolCast) {
Craig Topperbb4069e2017-07-07 23:16:26 +0000391 Value *V = Builder.CreateSub(Constant::getNullValue(I.getType()),
Benjamin Kramer547b6c52011-09-27 20:39:19 +0000392 BoolCast);
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000393 return BinaryOperator::CreateAnd(V, OtherOp);
394 }
395 }
396
David Majnemera1cfd7c2016-12-30 00:28:58 +0000397 // Check for (mul (sext x), y), see if we can merge this into an
398 // integer mul followed by a sext.
399 if (SExtInst *Op0Conv = dyn_cast<SExtInst>(Op0)) {
400 // (mul (sext x), cst) --> (sext (mul x, cst'))
401 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
402 if (Op0Conv->hasOneUse()) {
403 Constant *CI =
404 ConstantExpr::getTrunc(Op1C, Op0Conv->getOperand(0)->getType());
405 if (ConstantExpr::getSExt(CI, I.getType()) == Op1C &&
Craig Topper2b1fc322017-05-22 06:25:31 +0000406 willNotOverflowSignedMul(Op0Conv->getOperand(0), CI, I)) {
David Majnemera1cfd7c2016-12-30 00:28:58 +0000407 // Insert the new, smaller mul.
408 Value *NewMul =
Craig Topperbb4069e2017-07-07 23:16:26 +0000409 Builder.CreateNSWMul(Op0Conv->getOperand(0), CI, "mulconv");
David Majnemera1cfd7c2016-12-30 00:28:58 +0000410 return new SExtInst(NewMul, I.getType());
411 }
412 }
413 }
414
415 // (mul (sext x), (sext y)) --> (sext (mul int x, y))
416 if (SExtInst *Op1Conv = dyn_cast<SExtInst>(Op1)) {
417 // Only do this if x/y have the same type, if at last one of them has a
418 // single use (so we don't increase the number of sexts), and if the
419 // integer mul will not overflow.
420 if (Op0Conv->getOperand(0)->getType() ==
421 Op1Conv->getOperand(0)->getType() &&
422 (Op0Conv->hasOneUse() || Op1Conv->hasOneUse()) &&
Craig Topper2b1fc322017-05-22 06:25:31 +0000423 willNotOverflowSignedMul(Op0Conv->getOperand(0),
David Majnemera1cfd7c2016-12-30 00:28:58 +0000424 Op1Conv->getOperand(0), I)) {
425 // Insert the new integer mul.
Craig Topperbb4069e2017-07-07 23:16:26 +0000426 Value *NewMul = Builder.CreateNSWMul(
David Majnemera1cfd7c2016-12-30 00:28:58 +0000427 Op0Conv->getOperand(0), Op1Conv->getOperand(0), "mulconv");
428 return new SExtInst(NewMul, I.getType());
429 }
430 }
431 }
432
433 // Check for (mul (zext x), y), see if we can merge this into an
434 // integer mul followed by a zext.
435 if (auto *Op0Conv = dyn_cast<ZExtInst>(Op0)) {
436 // (mul (zext x), cst) --> (zext (mul x, cst'))
437 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
438 if (Op0Conv->hasOneUse()) {
439 Constant *CI =
440 ConstantExpr::getTrunc(Op1C, Op0Conv->getOperand(0)->getType());
441 if (ConstantExpr::getZExt(CI, I.getType()) == Op1C &&
Craig Topperbb973722017-05-15 02:44:08 +0000442 willNotOverflowUnsignedMul(Op0Conv->getOperand(0), CI, I)) {
David Majnemera1cfd7c2016-12-30 00:28:58 +0000443 // Insert the new, smaller mul.
444 Value *NewMul =
Craig Topperbb4069e2017-07-07 23:16:26 +0000445 Builder.CreateNUWMul(Op0Conv->getOperand(0), CI, "mulconv");
David Majnemera1cfd7c2016-12-30 00:28:58 +0000446 return new ZExtInst(NewMul, I.getType());
447 }
448 }
449 }
450
451 // (mul (zext x), (zext y)) --> (zext (mul int x, y))
452 if (auto *Op1Conv = dyn_cast<ZExtInst>(Op1)) {
453 // Only do this if x/y have the same type, if at last one of them has a
454 // single use (so we don't increase the number of zexts), and if the
455 // integer mul will not overflow.
456 if (Op0Conv->getOperand(0)->getType() ==
457 Op1Conv->getOperand(0)->getType() &&
458 (Op0Conv->hasOneUse() || Op1Conv->hasOneUse()) &&
Craig Topperbb973722017-05-15 02:44:08 +0000459 willNotOverflowUnsignedMul(Op0Conv->getOperand(0),
460 Op1Conv->getOperand(0), I)) {
David Majnemera1cfd7c2016-12-30 00:28:58 +0000461 // Insert the new integer mul.
Craig Topperbb4069e2017-07-07 23:16:26 +0000462 Value *NewMul = Builder.CreateNUWMul(
David Majnemera1cfd7c2016-12-30 00:28:58 +0000463 Op0Conv->getOperand(0), Op1Conv->getOperand(0), "mulconv");
464 return new ZExtInst(NewMul, I.getType());
465 }
466 }
467 }
468
Craig Topper2b1fc322017-05-22 06:25:31 +0000469 if (!I.hasNoSignedWrap() && willNotOverflowSignedMul(Op0, Op1, I)) {
David Majnemer54c2ca22014-12-26 09:10:14 +0000470 Changed = true;
471 I.setHasNoSignedWrap(true);
472 }
473
Craig Topperbb973722017-05-15 02:44:08 +0000474 if (!I.hasNoUnsignedWrap() && willNotOverflowUnsignedMul(Op0, Op1, I)) {
David Majnemerb1296ec2014-12-26 09:50:35 +0000475 Changed = true;
476 I.setHasNoUnsignedWrap(true);
477 }
478
Craig Topperf40110f2014-04-25 05:29:35 +0000479 return Changed ? &I : nullptr;
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000480}
481
Sanjay Patel17045f72014-10-14 00:33:23 +0000482/// Detect pattern log2(Y * 0.5) with corresponding fast math flags.
Pedro Artigas993acd02012-11-30 22:07:05 +0000483static void detectLog2OfHalf(Value *&Op, Value *&Y, IntrinsicInst *&Log2) {
Sanjay Patel17045f72014-10-14 00:33:23 +0000484 if (!Op->hasOneUse())
485 return;
Pedro Artigas00b83c92012-11-30 22:47:15 +0000486
Sanjay Patel17045f72014-10-14 00:33:23 +0000487 IntrinsicInst *II = dyn_cast<IntrinsicInst>(Op);
488 if (!II)
489 return;
490 if (II->getIntrinsicID() != Intrinsic::log2 || !II->hasUnsafeAlgebra())
491 return;
492 Log2 = II;
Pedro Artigas00b83c92012-11-30 22:47:15 +0000493
Sanjay Patel17045f72014-10-14 00:33:23 +0000494 Value *OpLog2Of = II->getArgOperand(0);
495 if (!OpLog2Of->hasOneUse())
496 return;
Pedro Artigas00b83c92012-11-30 22:47:15 +0000497
Sanjay Patel17045f72014-10-14 00:33:23 +0000498 Instruction *I = dyn_cast<Instruction>(OpLog2Of);
499 if (!I)
500 return;
501 if (I->getOpcode() != Instruction::FMul || !I->hasUnsafeAlgebra())
502 return;
Pedro Artigas00b83c92012-11-30 22:47:15 +0000503
Sanjay Patel17045f72014-10-14 00:33:23 +0000504 if (match(I->getOperand(0), m_SpecificFP(0.5)))
505 Y = I->getOperand(1);
506 else if (match(I->getOperand(1), m_SpecificFP(0.5)))
507 Y = I->getOperand(0);
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000508}
Pedro Artigas993acd02012-11-30 22:07:05 +0000509
Benjamin Kramer76b15d02014-01-19 13:36:27 +0000510static bool isFiniteNonZeroFp(Constant *C) {
511 if (C->getType()->isVectorTy()) {
512 for (unsigned I = 0, E = C->getType()->getVectorNumElements(); I != E;
513 ++I) {
Michael Kupersteinbcb26d62015-03-05 08:38:57 +0000514 ConstantFP *CFP = dyn_cast_or_null<ConstantFP>(C->getAggregateElement(I));
Benjamin Kramer76b15d02014-01-19 13:36:27 +0000515 if (!CFP || !CFP->getValueAPF().isFiniteNonZero())
516 return false;
517 }
518 return true;
519 }
520
521 return isa<ConstantFP>(C) &&
522 cast<ConstantFP>(C)->getValueAPF().isFiniteNonZero();
523}
524
525static bool isNormalFp(Constant *C) {
526 if (C->getType()->isVectorTy()) {
527 for (unsigned I = 0, E = C->getType()->getVectorNumElements(); I != E;
528 ++I) {
Michael Kupersteinbcb26d62015-03-05 08:38:57 +0000529 ConstantFP *CFP = dyn_cast_or_null<ConstantFP>(C->getAggregateElement(I));
Benjamin Kramer76b15d02014-01-19 13:36:27 +0000530 if (!CFP || !CFP->getValueAPF().isNormal())
531 return false;
532 }
533 return true;
534 }
535
536 return isa<ConstantFP>(C) && cast<ConstantFP>(C)->getValueAPF().isNormal();
537}
538
Shuxin Yangdf0e61e2013-01-07 21:39:23 +0000539/// Helper function of InstCombiner::visitFMul(BinaryOperator(). It returns
540/// true iff the given value is FMul or FDiv with one and only one operand
541/// being a normal constant (i.e. not Zero/NaN/Infinity).
542static bool isFMulOrFDivWithConstant(Value *V) {
543 Instruction *I = dyn_cast<Instruction>(V);
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000544 if (!I || (I->getOpcode() != Instruction::FMul &&
Shuxin Yang80138662013-01-07 22:41:28 +0000545 I->getOpcode() != Instruction::FDiv))
Shuxin Yangdf0e61e2013-01-07 21:39:23 +0000546 return false;
Shuxin Yangdf0e61e2013-01-07 21:39:23 +0000547
Benjamin Kramer76b15d02014-01-19 13:36:27 +0000548 Constant *C0 = dyn_cast<Constant>(I->getOperand(0));
549 Constant *C1 = dyn_cast<Constant>(I->getOperand(1));
Shuxin Yangdf0e61e2013-01-07 21:39:23 +0000550
551 if (C0 && C1)
552 return false;
553
Benjamin Kramer76b15d02014-01-19 13:36:27 +0000554 return (C0 && isFiniteNonZeroFp(C0)) || (C1 && isFiniteNonZeroFp(C1));
Shuxin Yangdf0e61e2013-01-07 21:39:23 +0000555}
556
557/// foldFMulConst() is a helper routine of InstCombiner::visitFMul().
558/// The input \p FMulOrDiv is a FMul/FDiv with one and only one operand
559/// being a constant (i.e. isFMulOrFDivWithConstant(FMulOrDiv) == true).
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000560/// This function is to simplify "FMulOrDiv * C" and returns the
Shuxin Yangdf0e61e2013-01-07 21:39:23 +0000561/// resulting expression. Note that this function could return NULL in
562/// case the constants cannot be folded into a normal floating-point.
Benjamin Kramer76b15d02014-01-19 13:36:27 +0000563Value *InstCombiner::foldFMulConst(Instruction *FMulOrDiv, Constant *C,
Shuxin Yang80138662013-01-07 22:41:28 +0000564 Instruction *InsertBefore) {
Shuxin Yangdf0e61e2013-01-07 21:39:23 +0000565 assert(isFMulOrFDivWithConstant(FMulOrDiv) && "V is invalid");
566
567 Value *Opnd0 = FMulOrDiv->getOperand(0);
568 Value *Opnd1 = FMulOrDiv->getOperand(1);
569
Benjamin Kramer76b15d02014-01-19 13:36:27 +0000570 Constant *C0 = dyn_cast<Constant>(Opnd0);
571 Constant *C1 = dyn_cast<Constant>(Opnd1);
Shuxin Yangdf0e61e2013-01-07 21:39:23 +0000572
Craig Topperf40110f2014-04-25 05:29:35 +0000573 BinaryOperator *R = nullptr;
Shuxin Yangdf0e61e2013-01-07 21:39:23 +0000574
575 // (X * C0) * C => X * (C0*C)
576 if (FMulOrDiv->getOpcode() == Instruction::FMul) {
577 Constant *F = ConstantExpr::getFMul(C1 ? C1 : C0, C);
Benjamin Kramer76b15d02014-01-19 13:36:27 +0000578 if (isNormalFp(F))
Shuxin Yangdf0e61e2013-01-07 21:39:23 +0000579 R = BinaryOperator::CreateFMul(C1 ? Opnd0 : Opnd1, F);
580 } else {
581 if (C0) {
582 // (C0 / X) * C => (C0 * C) / X
Shuxin Yang3a7ca6e2013-09-19 21:13:46 +0000583 if (FMulOrDiv->hasOneUse()) {
584 // It would otherwise introduce another div.
Benjamin Kramer76b15d02014-01-19 13:36:27 +0000585 Constant *F = ConstantExpr::getFMul(C0, C);
Shuxin Yang3a7ca6e2013-09-19 21:13:46 +0000586 if (isNormalFp(F))
587 R = BinaryOperator::CreateFDiv(F, Opnd1);
588 }
Shuxin Yangdf0e61e2013-01-07 21:39:23 +0000589 } else {
590 // (X / C1) * C => X * (C/C1) if C/C1 is not a denormal
Benjamin Kramer76b15d02014-01-19 13:36:27 +0000591 Constant *F = ConstantExpr::getFDiv(C, C1);
Shuxin Yangdf0e61e2013-01-07 21:39:23 +0000592 if (isNormalFp(F)) {
593 R = BinaryOperator::CreateFMul(Opnd0, F);
594 } else {
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000595 // (X / C1) * C => X / (C1/C)
Shuxin Yangdf0e61e2013-01-07 21:39:23 +0000596 Constant *F = ConstantExpr::getFDiv(C1, C);
Benjamin Kramer76b15d02014-01-19 13:36:27 +0000597 if (isNormalFp(F))
Shuxin Yangdf0e61e2013-01-07 21:39:23 +0000598 R = BinaryOperator::CreateFDiv(Opnd0, F);
599 }
600 }
601 }
602
603 if (R) {
604 R->setHasUnsafeAlgebra(true);
605 InsertNewInstWith(R, *InsertBefore);
606 }
607
608 return R;
609}
610
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000611Instruction *InstCombiner::visitFMul(BinaryOperator &I) {
Duncan Sands641baf12010-11-13 15:10:37 +0000612 bool Changed = SimplifyAssociativeOrCommutative(I);
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000613 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
614
Serge Pavlov9ef66a82014-05-11 08:46:12 +0000615 if (Value *V = SimplifyVectorOp(I))
Sanjay Patel4b198802016-02-01 22:23:39 +0000616 return replaceInstUsesWith(I, V);
Serge Pavlov9ef66a82014-05-11 08:46:12 +0000617
Shuxin Yangdf0e61e2013-01-07 21:39:23 +0000618 if (isa<Constant>(Op0))
619 std::swap(Op0, Op1);
620
Craig Toppera4205622017-06-09 03:21:29 +0000621 if (Value *V = SimplifyFMulInst(Op0, Op1, I.getFastMathFlags(),
622 SQ.getWithInstruction(&I)))
Sanjay Patel4b198802016-02-01 22:23:39 +0000623 return replaceInstUsesWith(I, V);
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000624
Shuxin Yange8227452013-01-15 21:09:32 +0000625 bool AllowReassociate = I.hasUnsafeAlgebra();
626
Michael Ilsemand5787be2012-12-12 00:28:32 +0000627 // Simplify mul instructions with a constant RHS.
628 if (isa<Constant>(Op1)) {
Sanjay Pateldb0938f2017-01-10 23:49:07 +0000629 if (Instruction *FoldedMul = foldOpWithConstantIntoOperand(I))
630 return FoldedMul;
Shuxin Yangdf0e61e2013-01-07 21:39:23 +0000631
Owen Andersonf74cfe02014-01-16 20:36:42 +0000632 // (fmul X, -1.0) --> (fsub -0.0, X)
Benjamin Kramerfea9ac92014-01-18 16:43:14 +0000633 if (match(Op1, m_SpecificFP(-1.0))) {
634 Constant *NegZero = ConstantFP::getNegativeZero(Op1->getType());
635 Instruction *RI = BinaryOperator::CreateFSub(NegZero, Op0);
Owen Andersonf74cfe02014-01-16 20:36:42 +0000636 RI->copyFastMathFlags(&I);
637 return RI;
638 }
639
Benjamin Kramer76b15d02014-01-19 13:36:27 +0000640 Constant *C = cast<Constant>(Op1);
641 if (AllowReassociate && isFiniteNonZeroFp(C)) {
Shuxin Yangdf0e61e2013-01-07 21:39:23 +0000642 // Let MDC denote an expression in one of these forms:
643 // X * C, C/X, X/C, where C is a constant.
644 //
645 // Try to simplify "MDC * Constant"
Benjamin Kramer76b15d02014-01-19 13:36:27 +0000646 if (isFMulOrFDivWithConstant(Op0))
647 if (Value *V = foldFMulConst(cast<Instruction>(Op0), C, &I))
Sanjay Patel4b198802016-02-01 22:23:39 +0000648 return replaceInstUsesWith(I, V);
Shuxin Yangdf0e61e2013-01-07 21:39:23 +0000649
Quentin Colombete684a6d2013-02-28 21:12:40 +0000650 // (MDC +/- C1) * C => (MDC * C) +/- (C1 * C)
Shuxin Yangdf0e61e2013-01-07 21:39:23 +0000651 Instruction *FAddSub = dyn_cast<Instruction>(Op0);
652 if (FAddSub &&
653 (FAddSub->getOpcode() == Instruction::FAdd ||
654 FAddSub->getOpcode() == Instruction::FSub)) {
655 Value *Opnd0 = FAddSub->getOperand(0);
656 Value *Opnd1 = FAddSub->getOperand(1);
Benjamin Kramer76b15d02014-01-19 13:36:27 +0000657 Constant *C0 = dyn_cast<Constant>(Opnd0);
658 Constant *C1 = dyn_cast<Constant>(Opnd1);
Shuxin Yangdf0e61e2013-01-07 21:39:23 +0000659 bool Swap = false;
660 if (C0) {
Shuxin Yang80138662013-01-07 22:41:28 +0000661 std::swap(C0, C1);
662 std::swap(Opnd0, Opnd1);
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000663 Swap = true;
Shuxin Yangdf0e61e2013-01-07 21:39:23 +0000664 }
665
Benjamin Kramer76b15d02014-01-19 13:36:27 +0000666 if (C1 && isFiniteNonZeroFp(C1) && isFMulOrFDivWithConstant(Opnd0)) {
Quentin Colombete684a6d2013-02-28 21:12:40 +0000667 Value *M1 = ConstantExpr::getFMul(C1, C);
Benjamin Kramer76b15d02014-01-19 13:36:27 +0000668 Value *M0 = isNormalFp(cast<Constant>(M1)) ?
Shuxin Yangdf0e61e2013-01-07 21:39:23 +0000669 foldFMulConst(cast<Instruction>(Opnd0), C, &I) :
Craig Topperf40110f2014-04-25 05:29:35 +0000670 nullptr;
Shuxin Yangdf0e61e2013-01-07 21:39:23 +0000671 if (M0 && M1) {
672 if (Swap && FAddSub->getOpcode() == Instruction::FSub)
673 std::swap(M0, M1);
674
Benjamin Kramer67485762013-09-30 15:39:59 +0000675 Instruction *RI = (FAddSub->getOpcode() == Instruction::FAdd)
676 ? BinaryOperator::CreateFAdd(M0, M1)
677 : BinaryOperator::CreateFSub(M0, M1);
Shuxin Yange8227452013-01-15 21:09:32 +0000678 RI->copyFastMathFlags(&I);
Shuxin Yangdf0e61e2013-01-07 21:39:23 +0000679 return RI;
680 }
681 }
682 }
683 }
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000684 }
685
Matt Arsenault56c079f2016-01-30 05:02:00 +0000686 if (Op0 == Op1) {
687 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Op0)) {
688 // sqrt(X) * sqrt(X) -> X
689 if (AllowReassociate && II->getIntrinsicID() == Intrinsic::sqrt)
Sanjay Patel4b198802016-02-01 22:23:39 +0000690 return replaceInstUsesWith(I, II->getOperand(0));
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000691
Matt Arsenault56c079f2016-01-30 05:02:00 +0000692 // fabs(X) * fabs(X) -> X * X
693 if (II->getIntrinsicID() == Intrinsic::fabs) {
694 Instruction *FMulVal = BinaryOperator::CreateFMul(II->getOperand(0),
695 II->getOperand(0),
696 I.getName());
697 FMulVal->copyFastMathFlags(&I);
698 return FMulVal;
699 }
700 }
701 }
702
Pedro Artigasd8795042012-11-30 19:09:41 +0000703 // Under unsafe algebra do:
704 // X * log2(0.5*Y) = X*log2(Y) - X
Sanjay Patelb41d4612014-10-02 15:20:45 +0000705 if (AllowReassociate) {
Craig Topperf40110f2014-04-25 05:29:35 +0000706 Value *OpX = nullptr;
707 Value *OpY = nullptr;
Pedro Artigasd8795042012-11-30 19:09:41 +0000708 IntrinsicInst *Log2;
Pedro Artigas993acd02012-11-30 22:07:05 +0000709 detectLog2OfHalf(Op0, OpY, Log2);
710 if (OpY) {
711 OpX = Op1;
712 } else {
713 detectLog2OfHalf(Op1, OpY, Log2);
714 if (OpY) {
715 OpX = Op0;
Pedro Artigasd8795042012-11-30 19:09:41 +0000716 }
717 }
718 // if pattern detected emit alternate sequence
719 if (OpX && OpY) {
Craig Topperbb4069e2017-07-07 23:16:26 +0000720 BuilderTy::FastMathFlagGuard Guard(Builder);
721 Builder.setFastMathFlags(Log2->getFastMathFlags());
Pedro Artigasd8795042012-11-30 19:09:41 +0000722 Log2->setArgOperand(0, OpY);
Craig Topperbb4069e2017-07-07 23:16:26 +0000723 Value *FMulVal = Builder.CreateFMul(OpX, Log2);
724 Value *FSub = Builder.CreateFSub(FMulVal, OpX);
Benjamin Kramer67485762013-09-30 15:39:59 +0000725 FSub->takeName(&I);
Sanjay Patel4b198802016-02-01 22:23:39 +0000726 return replaceInstUsesWith(I, FSub);
Pedro Artigasd8795042012-11-30 19:09:41 +0000727 }
728 }
729
Shuxin Yange8227452013-01-15 21:09:32 +0000730 // Handle symmetric situation in a 2-iteration loop
731 Value *Opnd0 = Op0;
732 Value *Opnd1 = Op1;
733 for (int i = 0; i < 2; i++) {
734 bool IgnoreZeroSign = I.hasNoSignedZeros();
735 if (BinaryOperator::isFNeg(Opnd0, IgnoreZeroSign)) {
Craig Topperbb4069e2017-07-07 23:16:26 +0000736 BuilderTy::FastMathFlagGuard Guard(Builder);
737 Builder.setFastMathFlags(I.getFastMathFlags());
Benjamin Kramer67485762013-09-30 15:39:59 +0000738
Shuxin Yange8227452013-01-15 21:09:32 +0000739 Value *N0 = dyn_castFNegVal(Opnd0, IgnoreZeroSign);
740 Value *N1 = dyn_castFNegVal(Opnd1, IgnoreZeroSign);
Shuxin Yangf8e9a5a2012-12-14 18:46:06 +0000741
Shuxin Yange8227452013-01-15 21:09:32 +0000742 // -X * -Y => X*Y
Owen Andersone8537fc2014-01-16 20:59:41 +0000743 if (N1) {
Craig Topperbb4069e2017-07-07 23:16:26 +0000744 Value *FMul = Builder.CreateFMul(N0, N1);
Owen Andersone8537fc2014-01-16 20:59:41 +0000745 FMul->takeName(&I);
Sanjay Patel4b198802016-02-01 22:23:39 +0000746 return replaceInstUsesWith(I, FMul);
Owen Andersone8537fc2014-01-16 20:59:41 +0000747 }
Shuxin Yangf8e9a5a2012-12-14 18:46:06 +0000748
Shuxin Yange8227452013-01-15 21:09:32 +0000749 if (Opnd0->hasOneUse()) {
750 // -X * Y => -(X*Y) (Promote negation as high as possible)
Craig Topperbb4069e2017-07-07 23:16:26 +0000751 Value *T = Builder.CreateFMul(N0, Opnd1);
752 Value *Neg = Builder.CreateFNeg(T);
Benjamin Kramer67485762013-09-30 15:39:59 +0000753 Neg->takeName(&I);
Sanjay Patel4b198802016-02-01 22:23:39 +0000754 return replaceInstUsesWith(I, Neg);
Shuxin Yangf8e9a5a2012-12-14 18:46:06 +0000755 }
756 }
Shuxin Yange8227452013-01-15 21:09:32 +0000757
Quentin Colombetaa103b32017-09-20 17:32:16 +0000758 // Handle specials cases for FMul with selects feeding the operation
759 if (Value *V = SimplifySelectsFeedingBinaryOp(I, Op0, Op1))
760 return replaceInstUsesWith(I, V);
761
Shuxin Yange8227452013-01-15 21:09:32 +0000762 // (X*Y) * X => (X*X) * Y where Y != X
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000763 // The purpose is two-fold:
Shuxin Yange8227452013-01-15 21:09:32 +0000764 // 1) to form a power expression (of X).
765 // 2) potentially shorten the critical path: After transformation, the
766 // latency of the instruction Y is amortized by the expression of X*X,
767 // and therefore Y is in a "less critical" position compared to what it
768 // was before the transformation.
Shuxin Yange8227452013-01-15 21:09:32 +0000769 if (AllowReassociate) {
770 Value *Opnd0_0, *Opnd0_1;
771 if (Opnd0->hasOneUse() &&
772 match(Opnd0, m_FMul(m_Value(Opnd0_0), m_Value(Opnd0_1)))) {
Craig Topperf40110f2014-04-25 05:29:35 +0000773 Value *Y = nullptr;
Shuxin Yange8227452013-01-15 21:09:32 +0000774 if (Opnd0_0 == Opnd1 && Opnd0_1 != Opnd1)
775 Y = Opnd0_1;
776 else if (Opnd0_1 == Opnd1 && Opnd0_0 != Opnd1)
777 Y = Opnd0_0;
778
779 if (Y) {
Craig Topperbb4069e2017-07-07 23:16:26 +0000780 BuilderTy::FastMathFlagGuard Guard(Builder);
781 Builder.setFastMathFlags(I.getFastMathFlags());
782 Value *T = Builder.CreateFMul(Opnd1, Opnd1);
783 Value *R = Builder.CreateFMul(T, Y);
Benjamin Kramer67485762013-09-30 15:39:59 +0000784 R->takeName(&I);
Sanjay Patel4b198802016-02-01 22:23:39 +0000785 return replaceInstUsesWith(I, R);
Shuxin Yange8227452013-01-15 21:09:32 +0000786 }
787 }
788 }
789
790 if (!isa<Constant>(Op1))
791 std::swap(Opnd0, Opnd1);
792 else
793 break;
Shuxin Yangf8e9a5a2012-12-14 18:46:06 +0000794 }
795
Craig Topperf40110f2014-04-25 05:29:35 +0000796 return Changed ? &I : nullptr;
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000797}
798
Sanjay Patelae2e3a42017-10-06 23:20:16 +0000799/// Fold a divide or remainder with a select instruction divisor when one of the
800/// select operands is zero. In that case, we can use the other select operand
801/// because div/rem by zero is undefined.
802bool InstCombiner::simplifyDivRemOfSelectWithZeroOp(BinaryOperator &I) {
803 SelectInst *SI = dyn_cast<SelectInst>(I.getOperand(1));
804 if (!SI)
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000805 return false;
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000806
Sanjay Patelae2e3a42017-10-06 23:20:16 +0000807 int NonNullOperand;
808 if (match(SI->getTrueValue(), m_Zero()))
809 // div/rem X, (Cond ? 0 : Y) -> div/rem X, Y
810 NonNullOperand = 2;
811 else if (match(SI->getFalseValue(), m_Zero()))
812 // div/rem X, (Cond ? Y : 0) -> div/rem X, Y
813 NonNullOperand = 1;
814 else
815 return false;
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000816
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000817 // Change the div/rem to use 'Y' instead of the select.
818 I.setOperand(1, SI->getOperand(NonNullOperand));
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000819
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000820 // Okay, we know we replace the operand of the div/rem with 'Y' with no
821 // problem. However, the select, or the condition of the select may have
822 // multiple uses. Based on our knowledge that the operand must be non-zero,
823 // propagate the known value for the select into other uses of it, and
824 // propagate a known value of the condition into its other users.
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000825
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000826 // If the select and condition only have a single use, don't bother with this,
827 // early exit.
Sanjay Patelae2e3a42017-10-06 23:20:16 +0000828 Value *SelectCond = SI->getCondition();
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000829 if (SI->use_empty() && SelectCond->hasOneUse())
830 return true;
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000831
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000832 // Scan the current block backward, looking for other uses of SI.
Duncan P. N. Exon Smith9f8aaf22015-10-13 16:59:33 +0000833 BasicBlock::iterator BBI = I.getIterator(), BBFront = I.getParent()->begin();
Sanjay Patel72d339a2017-10-06 23:43:06 +0000834 Type *CondTy = SelectCond->getType();
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000835 while (BBI != BBFront) {
836 --BBI;
837 // If we found a call to a function, we can't assume it will return, so
838 // information from below it cannot be propagated above it.
839 if (isa<CallInst>(BBI) && !isa<IntrinsicInst>(BBI))
840 break;
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000841
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000842 // Replace uses of the select or its condition with the known values.
843 for (Instruction::op_iterator I = BBI->op_begin(), E = BBI->op_end();
844 I != E; ++I) {
845 if (*I == SI) {
846 *I = SI->getOperand(NonNullOperand);
Duncan P. N. Exon Smith9f8aaf22015-10-13 16:59:33 +0000847 Worklist.Add(&*BBI);
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000848 } else if (*I == SelectCond) {
Sanjay Patel72d339a2017-10-06 23:43:06 +0000849 *I = NonNullOperand == 1 ? ConstantInt::getTrue(CondTy)
850 : ConstantInt::getFalse(CondTy);
Duncan P. N. Exon Smith9f8aaf22015-10-13 16:59:33 +0000851 Worklist.Add(&*BBI);
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000852 }
853 }
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000854
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000855 // If we past the instruction, quit looking for it.
856 if (&*BBI == SI)
Craig Topperf40110f2014-04-25 05:29:35 +0000857 SI = nullptr;
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000858 if (&*BBI == SelectCond)
Craig Topperf40110f2014-04-25 05:29:35 +0000859 SelectCond = nullptr;
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000860
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000861 // If we ran out of things to eliminate, break out of the loop.
Craig Topperf40110f2014-04-25 05:29:35 +0000862 if (!SelectCond && !SI)
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000863 break;
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000864
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000865 }
866 return true;
867}
868
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000869/// This function implements the transforms common to both integer division
870/// instructions (udiv and sdiv). It is called by the visitors to those integer
871/// division instructions.
872/// @brief Common integer divide transforms
873Instruction *InstCombiner::commonIDivTransforms(BinaryOperator &I) {
874 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
875
Chris Lattner7c99f192011-05-22 18:18:41 +0000876 // The RHS is known non-zero.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000877 if (Value *V = simplifyValueKnownNonZero(I.getOperand(1), *this, I)) {
Chris Lattner7c99f192011-05-22 18:18:41 +0000878 I.setOperand(1, V);
879 return &I;
880 }
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000881
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000882 // Handle cases involving: [su]div X, (select Cond, Y, Z)
883 // This does not apply for fdiv.
Sanjay Patelae2e3a42017-10-06 23:20:16 +0000884 if (simplifyDivRemOfSelectWithZeroOp(I))
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000885 return &I;
886
David Majnemer27adb122014-10-12 08:34:24 +0000887 if (Instruction *LHS = dyn_cast<Instruction>(Op0)) {
888 const APInt *C2;
889 if (match(Op1, m_APInt(C2))) {
David Majnemerf9a095d2014-08-16 08:55:06 +0000890 Value *X;
David Majnemer27adb122014-10-12 08:34:24 +0000891 const APInt *C1;
892 bool IsSigned = I.getOpcode() == Instruction::SDiv;
David Majnemerf9a095d2014-08-16 08:55:06 +0000893
David Majnemer27adb122014-10-12 08:34:24 +0000894 // (X / C1) / C2 -> X / (C1*C2)
895 if ((IsSigned && match(LHS, m_SDiv(m_Value(X), m_APInt(C1)))) ||
896 (!IsSigned && match(LHS, m_UDiv(m_Value(X), m_APInt(C1))))) {
897 APInt Product(C1->getBitWidth(), /*Val=*/0ULL, IsSigned);
898 if (!MultiplyOverflows(*C1, *C2, Product, IsSigned))
899 return BinaryOperator::Create(I.getOpcode(), X,
900 ConstantInt::get(I.getType(), Product));
901 }
David Majnemerf9a095d2014-08-16 08:55:06 +0000902
David Majnemer27adb122014-10-12 08:34:24 +0000903 if ((IsSigned && match(LHS, m_NSWMul(m_Value(X), m_APInt(C1)))) ||
904 (!IsSigned && match(LHS, m_NUWMul(m_Value(X), m_APInt(C1))))) {
905 APInt Quotient(C1->getBitWidth(), /*Val=*/0ULL, IsSigned);
906
907 // (X * C1) / C2 -> X / (C2 / C1) if C2 is a multiple of C1.
908 if (IsMultiple(*C2, *C1, Quotient, IsSigned)) {
909 BinaryOperator *BO = BinaryOperator::Create(
910 I.getOpcode(), X, ConstantInt::get(X->getType(), Quotient));
911 BO->setIsExact(I.isExact());
912 return BO;
David Majnemerf9a095d2014-08-16 08:55:06 +0000913 }
914
David Majnemer27adb122014-10-12 08:34:24 +0000915 // (X * C1) / C2 -> X * (C1 / C2) if C1 is a multiple of C2.
916 if (IsMultiple(*C1, *C2, Quotient, IsSigned)) {
917 BinaryOperator *BO = BinaryOperator::Create(
918 Instruction::Mul, X, ConstantInt::get(X->getType(), Quotient));
919 BO->setHasNoUnsignedWrap(
920 !IsSigned &&
921 cast<OverflowingBinaryOperator>(LHS)->hasNoUnsignedWrap());
922 BO->setHasNoSignedWrap(
923 cast<OverflowingBinaryOperator>(LHS)->hasNoSignedWrap());
924 return BO;
David Majnemerf9a095d2014-08-16 08:55:06 +0000925 }
926 }
David Majnemerf9a095d2014-08-16 08:55:06 +0000927
David Majnemer27adb122014-10-12 08:34:24 +0000928 if ((IsSigned && match(LHS, m_NSWShl(m_Value(X), m_APInt(C1))) &&
929 *C1 != C1->getBitWidth() - 1) ||
930 (!IsSigned && match(LHS, m_NUWShl(m_Value(X), m_APInt(C1))))) {
931 APInt Quotient(C1->getBitWidth(), /*Val=*/0ULL, IsSigned);
932 APInt C1Shifted = APInt::getOneBitSet(
933 C1->getBitWidth(), static_cast<unsigned>(C1->getLimitedValue()));
934
935 // (X << C1) / C2 -> X / (C2 >> C1) if C2 is a multiple of C1.
936 if (IsMultiple(*C2, C1Shifted, Quotient, IsSigned)) {
937 BinaryOperator *BO = BinaryOperator::Create(
938 I.getOpcode(), X, ConstantInt::get(X->getType(), Quotient));
939 BO->setIsExact(I.isExact());
940 return BO;
941 }
942
943 // (X << C1) / C2 -> X * (C2 >> C1) if C1 is a multiple of C2.
944 if (IsMultiple(C1Shifted, *C2, Quotient, IsSigned)) {
945 BinaryOperator *BO = BinaryOperator::Create(
946 Instruction::Mul, X, ConstantInt::get(X->getType(), Quotient));
947 BO->setHasNoUnsignedWrap(
948 !IsSigned &&
949 cast<OverflowingBinaryOperator>(LHS)->hasNoUnsignedWrap());
950 BO->setHasNoSignedWrap(
951 cast<OverflowingBinaryOperator>(LHS)->hasNoSignedWrap());
952 return BO;
953 }
954 }
955
Craig Topper73ba1c82017-06-07 07:40:37 +0000956 if (!C2->isNullValue()) // avoid X udiv 0
Sanjay Pateldb0938f2017-01-10 23:49:07 +0000957 if (Instruction *FoldedDiv = foldOpWithConstantIntoOperand(I))
958 return FoldedDiv;
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000959 }
960 }
961
Craig Topper218a3592017-04-17 03:41:47 +0000962 if (match(Op0, m_One())) {
Craig Topperfde47232017-07-09 07:04:03 +0000963 assert(!I.getType()->isIntOrIntVectorTy(1) && "i1 divide not removed?");
Craig Topper218a3592017-04-17 03:41:47 +0000964 if (I.getOpcode() == Instruction::SDiv) {
965 // If Op1 is 0 then it's undefined behaviour, if Op1 is 1 then the
966 // result is one, if Op1 is -1 then the result is minus one, otherwise
967 // it's zero.
Craig Topperbb4069e2017-07-07 23:16:26 +0000968 Value *Inc = Builder.CreateAdd(Op1, Op0);
969 Value *Cmp = Builder.CreateICmpULT(Inc, ConstantInt::get(I.getType(), 3));
Craig Topper218a3592017-04-17 03:41:47 +0000970 return SelectInst::Create(Cmp, Op1, ConstantInt::get(I.getType(), 0));
971 } else {
972 // If Op1 is 0 then it's undefined behaviour. If Op1 is 1 then the
973 // result is one, otherwise it's zero.
Craig Topperbb4069e2017-07-07 23:16:26 +0000974 return new ZExtInst(Builder.CreateICmpEQ(Op1, Op0), I.getType());
Nick Lewyckyf0cf8fa2014-05-14 03:03:05 +0000975 }
976 }
977
Benjamin Kramer57b3df52011-04-30 18:16:00 +0000978 // See if we can fold away this div instruction.
979 if (SimplifyDemandedInstructionBits(I))
980 return &I;
981
Duncan Sands771e82a2011-01-28 16:51:11 +0000982 // (X - (X rem Y)) / Y -> X / Y; usually originates as ((X / Y) * Y) / Y
Craig Topperf40110f2014-04-25 05:29:35 +0000983 Value *X = nullptr, *Z = nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +0000984 if (match(Op0, m_Sub(m_Value(X), m_Value(Z)))) { // (X - Z) / Y; Y = Op1
985 bool isSigned = I.getOpcode() == Instruction::SDiv;
986 if ((isSigned && match(Z, m_SRem(m_Specific(X), m_Specific(Op1)))) ||
987 (!isSigned && match(Z, m_URem(m_Specific(X), m_Specific(Op1)))))
988 return BinaryOperator::Create(I.getOpcode(), X, Op1);
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000989 }
990
Craig Topperf40110f2014-04-25 05:29:35 +0000991 return nullptr;
Chris Lattnerdc054bf2010-01-05 06:09:35 +0000992}
993
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000994static const unsigned MaxDepth = 6;
995
David Majnemer37f8f442013-07-04 21:17:49 +0000996namespace {
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +0000997
998using FoldUDivOperandCb = Instruction *(*)(Value *Op0, Value *Op1,
999 const BinaryOperator &I,
1000 InstCombiner &IC);
David Majnemer37f8f442013-07-04 21:17:49 +00001001
1002/// \brief Used to maintain state for visitUDivOperand().
1003struct UDivFoldAction {
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +00001004 /// Informs visitUDiv() how to fold this operand. This can be zero if this
1005 /// action joins two actions together.
1006 FoldUDivOperandCb FoldAction;
David Majnemer37f8f442013-07-04 21:17:49 +00001007
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +00001008 /// Which operand to fold.
1009 Value *OperandToFold;
1010
David Majnemer37f8f442013-07-04 21:17:49 +00001011 union {
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +00001012 /// The instruction returned when FoldAction is invoked.
1013 Instruction *FoldResult;
David Majnemer37f8f442013-07-04 21:17:49 +00001014
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +00001015 /// Stores the LHS action index if this action joins two actions together.
1016 size_t SelectLHSIdx;
David Majnemer37f8f442013-07-04 21:17:49 +00001017 };
1018
1019 UDivFoldAction(FoldUDivOperandCb FA, Value *InputOperand)
Craig Topperf40110f2014-04-25 05:29:35 +00001020 : FoldAction(FA), OperandToFold(InputOperand), FoldResult(nullptr) {}
David Majnemer37f8f442013-07-04 21:17:49 +00001021 UDivFoldAction(FoldUDivOperandCb FA, Value *InputOperand, size_t SLHS)
1022 : FoldAction(FA), OperandToFold(InputOperand), SelectLHSIdx(SLHS) {}
1023};
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +00001024
1025} // end anonymous namespace
David Majnemer37f8f442013-07-04 21:17:49 +00001026
1027// X udiv 2^C -> X >> C
1028static Instruction *foldUDivPow2Cst(Value *Op0, Value *Op1,
1029 const BinaryOperator &I, InstCombiner &IC) {
1030 const APInt &C = cast<Constant>(Op1)->getUniqueInteger();
1031 BinaryOperator *LShr = BinaryOperator::CreateLShr(
1032 Op0, ConstantInt::get(Op0->getType(), C.logBase2()));
Suyog Sarda65f5ae92014-10-07 12:04:07 +00001033 if (I.isExact())
1034 LShr->setIsExact();
David Majnemer37f8f442013-07-04 21:17:49 +00001035 return LShr;
1036}
1037
1038// X udiv C, where C >= signbit
1039static Instruction *foldUDivNegCst(Value *Op0, Value *Op1,
1040 const BinaryOperator &I, InstCombiner &IC) {
Craig Topperbb4069e2017-07-07 23:16:26 +00001041 Value *ICI = IC.Builder.CreateICmpULT(Op0, cast<ConstantInt>(Op1));
David Majnemer37f8f442013-07-04 21:17:49 +00001042
1043 return SelectInst::Create(ICI, Constant::getNullValue(I.getType()),
1044 ConstantInt::get(I.getType(), 1));
1045}
1046
1047// X udiv (C1 << N), where C1 is "1<<C2" --> X >> (N+C2)
Andrea Di Biagioa82d52d2016-09-26 12:07:23 +00001048// X udiv (zext (C1 << N)), where C1 is "1<<C2" --> X >> (N+C2)
David Majnemer37f8f442013-07-04 21:17:49 +00001049static Instruction *foldUDivShl(Value *Op0, Value *Op1, const BinaryOperator &I,
1050 InstCombiner &IC) {
Andrea Di Biagioa82d52d2016-09-26 12:07:23 +00001051 Value *ShiftLeft;
1052 if (!match(Op1, m_ZExt(m_Value(ShiftLeft))))
1053 ShiftLeft = Op1;
David Majnemer37f8f442013-07-04 21:17:49 +00001054
Andrea Di Biagioa82d52d2016-09-26 12:07:23 +00001055 const APInt *CI;
1056 Value *N;
1057 if (!match(ShiftLeft, m_Shl(m_APInt(CI), m_Value(N))))
1058 llvm_unreachable("match should never fail here!");
1059 if (*CI != 1)
Craig Topperbb4069e2017-07-07 23:16:26 +00001060 N = IC.Builder.CreateAdd(N, ConstantInt::get(N->getType(), CI->logBase2()));
Andrea Di Biagioa82d52d2016-09-26 12:07:23 +00001061 if (Op1 != ShiftLeft)
Craig Topperbb4069e2017-07-07 23:16:26 +00001062 N = IC.Builder.CreateZExt(N, Op1->getType());
David Majnemer37f8f442013-07-04 21:17:49 +00001063 BinaryOperator *LShr = BinaryOperator::CreateLShr(Op0, N);
Suyog Sarda65f5ae92014-10-07 12:04:07 +00001064 if (I.isExact())
1065 LShr->setIsExact();
David Majnemer37f8f442013-07-04 21:17:49 +00001066 return LShr;
1067}
1068
1069// \brief Recursively visits the possible right hand operands of a udiv
1070// instruction, seeing through select instructions, to determine if we can
1071// replace the udiv with something simpler. If we find that an operand is not
1072// able to simplify the udiv, we abort the entire transformation.
1073static size_t visitUDivOperand(Value *Op0, Value *Op1, const BinaryOperator &I,
1074 SmallVectorImpl<UDivFoldAction> &Actions,
1075 unsigned Depth = 0) {
1076 // Check to see if this is an unsigned division with an exact power of 2,
1077 // if so, convert to a right shift.
1078 if (match(Op1, m_Power2())) {
1079 Actions.push_back(UDivFoldAction(foldUDivPow2Cst, Op1));
1080 return Actions.size();
1081 }
1082
1083 if (ConstantInt *C = dyn_cast<ConstantInt>(Op1))
1084 // X udiv C, where C >= signbit
1085 if (C->getValue().isNegative()) {
1086 Actions.push_back(UDivFoldAction(foldUDivNegCst, C));
1087 return Actions.size();
1088 }
1089
1090 // X udiv (C1 << N), where C1 is "1<<C2" --> X >> (N+C2)
1091 if (match(Op1, m_Shl(m_Power2(), m_Value())) ||
1092 match(Op1, m_ZExt(m_Shl(m_Power2(), m_Value())))) {
1093 Actions.push_back(UDivFoldAction(foldUDivShl, Op1));
1094 return Actions.size();
1095 }
1096
1097 // The remaining tests are all recursive, so bail out if we hit the limit.
1098 if (Depth++ == MaxDepth)
1099 return 0;
1100
1101 if (SelectInst *SI = dyn_cast<SelectInst>(Op1))
David Majnemer492e6122014-08-30 09:19:05 +00001102 if (size_t LHSIdx =
1103 visitUDivOperand(Op0, SI->getOperand(1), I, Actions, Depth))
1104 if (visitUDivOperand(Op0, SI->getOperand(2), I, Actions, Depth)) {
1105 Actions.push_back(UDivFoldAction(nullptr, Op1, LHSIdx - 1));
David Majnemer37f8f442013-07-04 21:17:49 +00001106 return Actions.size();
1107 }
1108
1109 return 0;
1110}
1111
Sanjay Patelbb789382017-08-24 22:54:01 +00001112/// If we have zero-extended operands of an unsigned div or rem, we may be able
1113/// to narrow the operation (sink the zext below the math).
1114static Instruction *narrowUDivURem(BinaryOperator &I,
1115 InstCombiner::BuilderTy &Builder) {
1116 Instruction::BinaryOps Opcode = I.getOpcode();
1117 Value *N = I.getOperand(0);
1118 Value *D = I.getOperand(1);
1119 Type *Ty = I.getType();
1120 Value *X, *Y;
1121 if (match(N, m_ZExt(m_Value(X))) && match(D, m_ZExt(m_Value(Y))) &&
1122 X->getType() == Y->getType() && (N->hasOneUse() || D->hasOneUse())) {
1123 // udiv (zext X), (zext Y) --> zext (udiv X, Y)
1124 // urem (zext X), (zext Y) --> zext (urem X, Y)
1125 Value *NarrowOp = Builder.CreateBinOp(Opcode, X, Y);
1126 return new ZExtInst(NarrowOp, Ty);
1127 }
1128
1129 Constant *C;
1130 if ((match(N, m_OneUse(m_ZExt(m_Value(X)))) && match(D, m_Constant(C))) ||
1131 (match(D, m_OneUse(m_ZExt(m_Value(X)))) && match(N, m_Constant(C)))) {
1132 // If the constant is the same in the smaller type, use the narrow version.
1133 Constant *TruncC = ConstantExpr::getTrunc(C, X->getType());
1134 if (ConstantExpr::getZExt(TruncC, Ty) != C)
1135 return nullptr;
1136
1137 // udiv (zext X), C --> zext (udiv X, C')
1138 // urem (zext X), C --> zext (urem X, C')
1139 // udiv C, (zext X) --> zext (udiv C', X)
1140 // urem C, (zext X) --> zext (urem C', X)
1141 Value *NarrowOp = isa<Constant>(D) ? Builder.CreateBinOp(Opcode, X, TruncC)
1142 : Builder.CreateBinOp(Opcode, TruncC, X);
1143 return new ZExtInst(NarrowOp, Ty);
1144 }
1145
1146 return nullptr;
1147}
1148
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001149Instruction *InstCombiner::visitUDiv(BinaryOperator &I) {
1150 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
1151
Serge Pavlov9ef66a82014-05-11 08:46:12 +00001152 if (Value *V = SimplifyVectorOp(I))
Sanjay Patel4b198802016-02-01 22:23:39 +00001153 return replaceInstUsesWith(I, V);
Serge Pavlov9ef66a82014-05-11 08:46:12 +00001154
Craig Toppera4205622017-06-09 03:21:29 +00001155 if (Value *V = SimplifyUDivInst(Op0, Op1, SQ.getWithInstruction(&I)))
Sanjay Patel4b198802016-02-01 22:23:39 +00001156 return replaceInstUsesWith(I, V);
Duncan Sands771e82a2011-01-28 16:51:11 +00001157
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001158 // Handle the integer div common cases
1159 if (Instruction *Common = commonIDivTransforms(I))
1160 return Common;
Jim Grosbachbdbd7342013-04-05 21:20:12 +00001161
Benjamin Kramerd4a64712012-08-30 15:07:40 +00001162 // (x lshr C1) udiv C2 --> x udiv (C2 << C1)
David Majnemera2521382014-10-13 21:48:30 +00001163 {
Benjamin Kramer9c0a8072012-08-28 13:08:13 +00001164 Value *X;
David Majnemera2521382014-10-13 21:48:30 +00001165 const APInt *C1, *C2;
1166 if (match(Op0, m_LShr(m_Value(X), m_APInt(C1))) &&
1167 match(Op1, m_APInt(C2))) {
1168 bool Overflow;
1169 APInt C2ShlC1 = C2->ushl_ov(*C1, Overflow);
David Majnemera3aeb152014-11-22 18:16:54 +00001170 if (!Overflow) {
1171 bool IsExact = I.isExact() && match(Op0, m_Exact(m_Value()));
1172 BinaryOperator *BO = BinaryOperator::CreateUDiv(
David Majnemera2521382014-10-13 21:48:30 +00001173 X, ConstantInt::get(X->getType(), C2ShlC1));
David Majnemera3aeb152014-11-22 18:16:54 +00001174 if (IsExact)
1175 BO->setIsExact();
1176 return BO;
1177 }
David Majnemera2521382014-10-13 21:48:30 +00001178 }
Nadav Rotem11935b22012-08-28 10:01:43 +00001179 }
1180
Sanjay Patelbb789382017-08-24 22:54:01 +00001181 if (Instruction *NarrowDiv = narrowUDivURem(I, Builder))
1182 return NarrowDiv;
Benjamin Kramer9aa91b12011-04-30 18:16:07 +00001183
David Majnemer37f8f442013-07-04 21:17:49 +00001184 // (LHS udiv (select (select (...)))) -> (LHS >> (select (select (...))))
1185 SmallVector<UDivFoldAction, 6> UDivActions;
1186 if (visitUDivOperand(Op0, Op1, I, UDivActions))
1187 for (unsigned i = 0, e = UDivActions.size(); i != e; ++i) {
1188 FoldUDivOperandCb Action = UDivActions[i].FoldAction;
1189 Value *ActionOp1 = UDivActions[i].OperandToFold;
1190 Instruction *Inst;
1191 if (Action)
1192 Inst = Action(Op0, ActionOp1, I, *this);
1193 else {
1194 // This action joins two actions together. The RHS of this action is
1195 // simply the last action we processed, we saved the LHS action index in
1196 // the joining action.
1197 size_t SelectRHSIdx = i - 1;
1198 Value *SelectRHS = UDivActions[SelectRHSIdx].FoldResult;
1199 size_t SelectLHSIdx = UDivActions[i].SelectLHSIdx;
1200 Value *SelectLHS = UDivActions[SelectLHSIdx].FoldResult;
1201 Inst = SelectInst::Create(cast<SelectInst>(ActionOp1)->getCondition(),
1202 SelectLHS, SelectRHS);
1203 }
1204
1205 // If this is the last action to process, return it to the InstCombiner.
1206 // Otherwise, we insert it before the UDiv and record it so that we may
1207 // use it as part of a joining action (i.e., a SelectInst).
1208 if (e - i != 1) {
1209 Inst->insertBefore(&I);
1210 UDivActions[i].FoldResult = Inst;
1211 } else
1212 return Inst;
1213 }
1214
Craig Topperf40110f2014-04-25 05:29:35 +00001215 return nullptr;
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001216}
1217
1218Instruction *InstCombiner::visitSDiv(BinaryOperator &I) {
1219 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
1220
Serge Pavlov9ef66a82014-05-11 08:46:12 +00001221 if (Value *V = SimplifyVectorOp(I))
Sanjay Patel4b198802016-02-01 22:23:39 +00001222 return replaceInstUsesWith(I, V);
Serge Pavlov9ef66a82014-05-11 08:46:12 +00001223
Craig Toppera4205622017-06-09 03:21:29 +00001224 if (Value *V = SimplifySDivInst(Op0, Op1, SQ.getWithInstruction(&I)))
Sanjay Patel4b198802016-02-01 22:23:39 +00001225 return replaceInstUsesWith(I, V);
Duncan Sands771e82a2011-01-28 16:51:11 +00001226
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001227 // Handle the integer div common cases
1228 if (Instruction *Common = commonIDivTransforms(I))
1229 return Common;
1230
Sanjay Patelc6ada532016-06-27 17:25:57 +00001231 const APInt *Op1C;
Sanjay Patelbedd1f92016-06-27 18:38:40 +00001232 if (match(Op1, m_APInt(Op1C))) {
1233 // sdiv X, -1 == -X
1234 if (Op1C->isAllOnesValue())
1235 return BinaryOperator::CreateNeg(Op0);
1236
1237 // sdiv exact X, C --> ashr exact X, log2(C)
1238 if (I.isExact() && Op1C->isNonNegative() && Op1C->isPowerOf2()) {
1239 Value *ShAmt = ConstantInt::get(Op1->getType(), Op1C->exactLogBase2());
1240 return BinaryOperator::CreateExactAShr(Op0, ShAmt, I.getName());
1241 }
Sanjay Patel59ed2ff2016-06-27 22:27:11 +00001242
1243 // If the dividend is sign-extended and the constant divisor is small enough
1244 // to fit in the source type, shrink the division to the narrower type:
1245 // (sext X) sdiv C --> sext (X sdiv C)
1246 Value *Op0Src;
1247 if (match(Op0, m_OneUse(m_SExt(m_Value(Op0Src)))) &&
1248 Op0Src->getType()->getScalarSizeInBits() >= Op1C->getMinSignedBits()) {
1249
1250 // In the general case, we need to make sure that the dividend is not the
1251 // minimum signed value because dividing that by -1 is UB. But here, we
1252 // know that the -1 divisor case is already handled above.
1253
1254 Constant *NarrowDivisor =
1255 ConstantExpr::getTrunc(cast<Constant>(Op1), Op0Src->getType());
Craig Topperbb4069e2017-07-07 23:16:26 +00001256 Value *NarrowOp = Builder.CreateSDiv(Op0Src, NarrowDivisor);
Sanjay Patel59ed2ff2016-06-27 22:27:11 +00001257 return new SExtInst(NarrowOp, Op0->getType());
1258 }
Benjamin Kramer72196f32014-01-19 15:24:22 +00001259 }
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001260
Benjamin Kramer72196f32014-01-19 15:24:22 +00001261 if (Constant *RHS = dyn_cast<Constant>(Op1)) {
David Majnemerf28e2a42014-07-02 06:42:13 +00001262 // X/INT_MIN -> X == INT_MIN
1263 if (RHS->isMinSignedValue())
Craig Topperbb4069e2017-07-07 23:16:26 +00001264 return new ZExtInst(Builder.CreateICmpEQ(Op0, Op1), I.getType());
David Majnemerf28e2a42014-07-02 06:42:13 +00001265
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001266 // -X/C --> X/-C provided the negation doesn't overflow.
David Majnemerfa4699e2014-11-22 20:00:34 +00001267 Value *X;
1268 if (match(Op0, m_NSWSub(m_Zero(), m_Value(X)))) {
1269 auto *BO = BinaryOperator::CreateSDiv(X, ConstantExpr::getNeg(RHS));
1270 BO->setIsExact(I.isExact());
1271 return BO;
1272 }
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001273 }
1274
1275 // If the sign bits of both operands are zero (i.e. we can prove they are
1276 // unsigned inputs), turn this into a udiv.
Craig Topperbcfd2d12017-04-20 16:56:25 +00001277 APInt Mask(APInt::getSignMask(I.getType()->getScalarSizeInBits()));
Craig Topperf2484682017-04-17 01:51:19 +00001278 if (MaskedValueIsZero(Op0, Mask, 0, &I)) {
1279 if (MaskedValueIsZero(Op1, Mask, 0, &I)) {
1280 // X sdiv Y -> X udiv Y, iff X and Y don't have sign bit set
1281 auto *BO = BinaryOperator::CreateUDiv(Op0, Op1, I.getName());
1282 BO->setIsExact(I.isExact());
1283 return BO;
1284 }
Jim Grosbachbdbd7342013-04-05 21:20:12 +00001285
Craig Topperd4039f72017-05-25 21:51:12 +00001286 if (isKnownToBeAPowerOfTwo(Op1, /*OrZero*/ true, 0, &I)) {
Craig Topperf2484682017-04-17 01:51:19 +00001287 // X sdiv (1 << Y) -> X udiv (1 << Y) ( -> X u>> Y)
1288 // Safe because the only negative value (1 << Y) can take on is
1289 // INT_MIN, and X sdiv INT_MIN == X udiv INT_MIN == 0 if X doesn't have
1290 // the sign bit set.
1291 auto *BO = BinaryOperator::CreateUDiv(Op0, Op1, I.getName());
1292 BO->setIsExact(I.isExact());
1293 return BO;
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001294 }
1295 }
Jim Grosbachbdbd7342013-04-05 21:20:12 +00001296
Craig Topperf40110f2014-04-25 05:29:35 +00001297 return nullptr;
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001298}
1299
Shuxin Yang320f52a2013-01-14 22:48:41 +00001300/// CvtFDivConstToReciprocal tries to convert X/C into X*1/C if C not a special
1301/// FP value and:
Jim Grosbachbdbd7342013-04-05 21:20:12 +00001302/// 1) 1/C is exact, or
Shuxin Yang320f52a2013-01-14 22:48:41 +00001303/// 2) reciprocal is allowed.
Sylvestre Ledru149e2812013-05-14 23:36:24 +00001304/// If the conversion was successful, the simplified expression "X * 1/C" is
Eugene Zelenko7f0f9bc2017-10-24 21:24:53 +00001305/// returned; otherwise, nullptr is returned.
Suyog Sardaea205512014-10-07 11:56:06 +00001306static Instruction *CvtFDivConstToReciprocal(Value *Dividend, Constant *Divisor,
Shuxin Yang320f52a2013-01-14 22:48:41 +00001307 bool AllowReciprocal) {
Benjamin Kramer76b15d02014-01-19 13:36:27 +00001308 if (!isa<ConstantFP>(Divisor)) // TODO: handle vectors.
Craig Topperf40110f2014-04-25 05:29:35 +00001309 return nullptr;
Benjamin Kramer76b15d02014-01-19 13:36:27 +00001310
1311 const APFloat &FpVal = cast<ConstantFP>(Divisor)->getValueAPF();
Shuxin Yang320f52a2013-01-14 22:48:41 +00001312 APFloat Reciprocal(FpVal.getSemantics());
1313 bool Cvt = FpVal.getExactInverse(&Reciprocal);
Jim Grosbachbdbd7342013-04-05 21:20:12 +00001314
Michael Gottesman3cb77ab2013-06-19 21:23:18 +00001315 if (!Cvt && AllowReciprocal && FpVal.isFiniteNonZero()) {
Shuxin Yang320f52a2013-01-14 22:48:41 +00001316 Reciprocal = APFloat(FpVal.getSemantics(), 1.0f);
1317 (void)Reciprocal.divide(FpVal, APFloat::rmNearestTiesToEven);
1318 Cvt = !Reciprocal.isDenormal();
1319 }
1320
1321 if (!Cvt)
Craig Topperf40110f2014-04-25 05:29:35 +00001322 return nullptr;
Shuxin Yang320f52a2013-01-14 22:48:41 +00001323
1324 ConstantFP *R;
1325 R = ConstantFP::get(Dividend->getType()->getContext(), Reciprocal);
1326 return BinaryOperator::CreateFMul(Dividend, R);
1327}
1328
Frits van Bommel2a559512011-01-29 17:50:27 +00001329Instruction *InstCombiner::visitFDiv(BinaryOperator &I) {
1330 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
1331
Serge Pavlov9ef66a82014-05-11 08:46:12 +00001332 if (Value *V = SimplifyVectorOp(I))
Sanjay Patel4b198802016-02-01 22:23:39 +00001333 return replaceInstUsesWith(I, V);
Serge Pavlov9ef66a82014-05-11 08:46:12 +00001334
Craig Toppera4205622017-06-09 03:21:29 +00001335 if (Value *V = SimplifyFDivInst(Op0, Op1, I.getFastMathFlags(),
1336 SQ.getWithInstruction(&I)))
Sanjay Patel4b198802016-02-01 22:23:39 +00001337 return replaceInstUsesWith(I, V);
Frits van Bommel2a559512011-01-29 17:50:27 +00001338
Stephen Lina9b57f62013-07-20 07:13:13 +00001339 if (isa<Constant>(Op0))
1340 if (SelectInst *SI = dyn_cast<SelectInst>(Op1))
1341 if (Instruction *R = FoldOpIntoSelect(I, SI))
1342 return R;
1343
Shuxin Yang320f52a2013-01-14 22:48:41 +00001344 bool AllowReassociate = I.hasUnsafeAlgebra();
1345 bool AllowReciprocal = I.hasAllowReciprocal();
Benjamin Kramer8564e0d2011-03-30 15:42:35 +00001346
Benjamin Kramer76b15d02014-01-19 13:36:27 +00001347 if (Constant *Op1C = dyn_cast<Constant>(Op1)) {
Stephen Lina9b57f62013-07-20 07:13:13 +00001348 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
1349 if (Instruction *R = FoldOpIntoSelect(I, SI))
1350 return R;
1351
Shuxin Yang320f52a2013-01-14 22:48:41 +00001352 if (AllowReassociate) {
Craig Topperf40110f2014-04-25 05:29:35 +00001353 Constant *C1 = nullptr;
Benjamin Kramer76b15d02014-01-19 13:36:27 +00001354 Constant *C2 = Op1C;
Shuxin Yang320f52a2013-01-14 22:48:41 +00001355 Value *X;
Craig Topperf40110f2014-04-25 05:29:35 +00001356 Instruction *Res = nullptr;
Shuxin Yang320f52a2013-01-14 22:48:41 +00001357
Benjamin Kramer76b15d02014-01-19 13:36:27 +00001358 if (match(Op0, m_FMul(m_Value(X), m_Constant(C1)))) {
Shuxin Yang320f52a2013-01-14 22:48:41 +00001359 // (X*C1)/C2 => X * (C1/C2)
1360 //
1361 Constant *C = ConstantExpr::getFDiv(C1, C2);
Benjamin Kramer76b15d02014-01-19 13:36:27 +00001362 if (isNormalFp(C))
Shuxin Yang320f52a2013-01-14 22:48:41 +00001363 Res = BinaryOperator::CreateFMul(X, C);
Benjamin Kramer76b15d02014-01-19 13:36:27 +00001364 } else if (match(Op0, m_FDiv(m_Value(X), m_Constant(C1)))) {
Shuxin Yang320f52a2013-01-14 22:48:41 +00001365 // (X/C1)/C2 => X /(C2*C1) [=> X * 1/(C2*C1) if reciprocal is allowed]
Shuxin Yang320f52a2013-01-14 22:48:41 +00001366 Constant *C = ConstantExpr::getFMul(C1, C2);
Benjamin Kramer76b15d02014-01-19 13:36:27 +00001367 if (isNormalFp(C)) {
1368 Res = CvtFDivConstToReciprocal(X, C, AllowReciprocal);
Shuxin Yang320f52a2013-01-14 22:48:41 +00001369 if (!Res)
Jim Grosbachbdbd7342013-04-05 21:20:12 +00001370 Res = BinaryOperator::CreateFDiv(X, C);
Shuxin Yang320f52a2013-01-14 22:48:41 +00001371 }
1372 }
1373
1374 if (Res) {
1375 Res->setFastMathFlags(I.getFastMathFlags());
1376 return Res;
1377 }
1378 }
1379
1380 // X / C => X * 1/C
Owen Anderson4557a152014-01-16 21:07:52 +00001381 if (Instruction *T = CvtFDivConstToReciprocal(Op0, Op1C, AllowReciprocal)) {
1382 T->copyFastMathFlags(&I);
Shuxin Yang320f52a2013-01-14 22:48:41 +00001383 return T;
Owen Anderson4557a152014-01-16 21:07:52 +00001384 }
Shuxin Yang320f52a2013-01-14 22:48:41 +00001385
Craig Topperf40110f2014-04-25 05:29:35 +00001386 return nullptr;
Shuxin Yang320f52a2013-01-14 22:48:41 +00001387 }
1388
Benjamin Kramer76b15d02014-01-19 13:36:27 +00001389 if (AllowReassociate && isa<Constant>(Op0)) {
1390 Constant *C1 = cast<Constant>(Op0), *C2;
Craig Topperf40110f2014-04-25 05:29:35 +00001391 Constant *Fold = nullptr;
Shuxin Yang320f52a2013-01-14 22:48:41 +00001392 Value *X;
1393 bool CreateDiv = true;
1394
1395 // C1 / (X*C2) => (C1/C2) / X
Benjamin Kramer76b15d02014-01-19 13:36:27 +00001396 if (match(Op1, m_FMul(m_Value(X), m_Constant(C2))))
Shuxin Yang320f52a2013-01-14 22:48:41 +00001397 Fold = ConstantExpr::getFDiv(C1, C2);
Benjamin Kramer76b15d02014-01-19 13:36:27 +00001398 else if (match(Op1, m_FDiv(m_Value(X), m_Constant(C2)))) {
Shuxin Yang320f52a2013-01-14 22:48:41 +00001399 // C1 / (X/C2) => (C1*C2) / X
1400 Fold = ConstantExpr::getFMul(C1, C2);
Benjamin Kramer76b15d02014-01-19 13:36:27 +00001401 } else if (match(Op1, m_FDiv(m_Constant(C2), m_Value(X)))) {
Shuxin Yang320f52a2013-01-14 22:48:41 +00001402 // C1 / (C2/X) => (C1/C2) * X
1403 Fold = ConstantExpr::getFDiv(C1, C2);
1404 CreateDiv = false;
1405 }
1406
Benjamin Kramer76b15d02014-01-19 13:36:27 +00001407 if (Fold && isNormalFp(Fold)) {
1408 Instruction *R = CreateDiv ? BinaryOperator::CreateFDiv(Fold, X)
1409 : BinaryOperator::CreateFMul(X, Fold);
1410 R->setFastMathFlags(I.getFastMathFlags());
1411 return R;
Shuxin Yang320f52a2013-01-14 22:48:41 +00001412 }
Craig Topperf40110f2014-04-25 05:29:35 +00001413 return nullptr;
Shuxin Yang320f52a2013-01-14 22:48:41 +00001414 }
1415
1416 if (AllowReassociate) {
1417 Value *X, *Y;
Craig Topperf40110f2014-04-25 05:29:35 +00001418 Value *NewInst = nullptr;
1419 Instruction *SimpR = nullptr;
Shuxin Yang320f52a2013-01-14 22:48:41 +00001420
1421 if (Op0->hasOneUse() && match(Op0, m_FDiv(m_Value(X), m_Value(Y)))) {
1422 // (X/Y) / Z => X / (Y*Z)
Benjamin Kramer76b15d02014-01-19 13:36:27 +00001423 if (!isa<Constant>(Y) || !isa<Constant>(Op1)) {
Craig Topperbb4069e2017-07-07 23:16:26 +00001424 NewInst = Builder.CreateFMul(Y, Op1);
Owen Anderson1664dc82014-01-20 07:44:53 +00001425 if (Instruction *RI = dyn_cast<Instruction>(NewInst)) {
1426 FastMathFlags Flags = I.getFastMathFlags();
1427 Flags &= cast<Instruction>(Op0)->getFastMathFlags();
1428 RI->setFastMathFlags(Flags);
1429 }
Shuxin Yang320f52a2013-01-14 22:48:41 +00001430 SimpR = BinaryOperator::CreateFDiv(X, NewInst);
1431 }
1432 } else if (Op1->hasOneUse() && match(Op1, m_FDiv(m_Value(X), m_Value(Y)))) {
1433 // Z / (X/Y) => Z*Y / X
Benjamin Kramer76b15d02014-01-19 13:36:27 +00001434 if (!isa<Constant>(Y) || !isa<Constant>(Op0)) {
Craig Topperbb4069e2017-07-07 23:16:26 +00001435 NewInst = Builder.CreateFMul(Op0, Y);
Owen Anderson1664dc82014-01-20 07:44:53 +00001436 if (Instruction *RI = dyn_cast<Instruction>(NewInst)) {
1437 FastMathFlags Flags = I.getFastMathFlags();
1438 Flags &= cast<Instruction>(Op1)->getFastMathFlags();
1439 RI->setFastMathFlags(Flags);
1440 }
Shuxin Yang320f52a2013-01-14 22:48:41 +00001441 SimpR = BinaryOperator::CreateFDiv(NewInst, X);
1442 }
1443 }
1444
1445 if (NewInst) {
1446 if (Instruction *T = dyn_cast<Instruction>(NewInst))
1447 T->setDebugLoc(I.getDebugLoc());
1448 SimpR->setFastMathFlags(I.getFastMathFlags());
1449 return SimpR;
Benjamin Kramer8564e0d2011-03-30 15:42:35 +00001450 }
1451 }
1452
Matt Arsenaultfdb78f82017-01-10 23:08:54 +00001453 Value *LHS;
1454 Value *RHS;
1455
1456 // -x / -y -> x / y
1457 if (match(Op0, m_FNeg(m_Value(LHS))) && match(Op1, m_FNeg(m_Value(RHS)))) {
1458 I.setOperand(0, LHS);
1459 I.setOperand(1, RHS);
1460 return &I;
1461 }
1462
Craig Topperf40110f2014-04-25 05:29:35 +00001463 return nullptr;
Frits van Bommel2a559512011-01-29 17:50:27 +00001464}
1465
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001466/// This function implements the transforms common to both integer remainder
1467/// instructions (urem and srem). It is called by the visitors to those integer
1468/// remainder instructions.
1469/// @brief Common integer remainder transforms
1470Instruction *InstCombiner::commonIRemTransforms(BinaryOperator &I) {
1471 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
1472
Chris Lattner7c99f192011-05-22 18:18:41 +00001473 // The RHS is known non-zero.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001474 if (Value *V = simplifyValueKnownNonZero(I.getOperand(1), *this, I)) {
Chris Lattner7c99f192011-05-22 18:18:41 +00001475 I.setOperand(1, V);
1476 return &I;
1477 }
1478
Duncan Sandsa3e36992011-05-02 16:27:02 +00001479 // Handle cases involving: rem X, (select Cond, Y, Z)
Sanjay Patelae2e3a42017-10-06 23:20:16 +00001480 if (simplifyDivRemOfSelectWithZeroOp(I))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001481 return &I;
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001482
Benjamin Kramer72196f32014-01-19 15:24:22 +00001483 if (isa<Constant>(Op1)) {
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001484 if (Instruction *Op0I = dyn_cast<Instruction>(Op0)) {
1485 if (SelectInst *SI = dyn_cast<SelectInst>(Op0I)) {
1486 if (Instruction *R = FoldOpIntoSelect(I, SI))
1487 return R;
Craig Topperfb71b7d2017-04-14 19:20:12 +00001488 } else if (auto *PN = dyn_cast<PHINode>(Op0I)) {
Sanjoy Dasb7e861a2016-06-05 21:17:04 +00001489 const APInt *Op1Int;
1490 if (match(Op1, m_APInt(Op1Int)) && !Op1Int->isMinValue() &&
1491 (I.getOpcode() == Instruction::URem ||
1492 !Op1Int->isMinSignedValue())) {
Craig Topperfb71b7d2017-04-14 19:20:12 +00001493 // foldOpIntoPhi will speculate instructions to the end of the PHI's
Sanjoy Dasb7e861a2016-06-05 21:17:04 +00001494 // predecessor blocks, so do this only if we know the srem or urem
1495 // will not fault.
Craig Topperfb71b7d2017-04-14 19:20:12 +00001496 if (Instruction *NV = foldOpIntoPhi(I, PN))
Sanjoy Dasb7e861a2016-06-05 21:17:04 +00001497 return NV;
1498 }
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001499 }
1500
1501 // See if we can fold away this rem instruction.
1502 if (SimplifyDemandedInstructionBits(I))
1503 return &I;
1504 }
1505 }
1506
Craig Topperf40110f2014-04-25 05:29:35 +00001507 return nullptr;
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001508}
1509
1510Instruction *InstCombiner::visitURem(BinaryOperator &I) {
1511 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
1512
Serge Pavlov9ef66a82014-05-11 08:46:12 +00001513 if (Value *V = SimplifyVectorOp(I))
Sanjay Patel4b198802016-02-01 22:23:39 +00001514 return replaceInstUsesWith(I, V);
Serge Pavlov9ef66a82014-05-11 08:46:12 +00001515
Craig Toppera4205622017-06-09 03:21:29 +00001516 if (Value *V = SimplifyURemInst(Op0, Op1, SQ.getWithInstruction(&I)))
Sanjay Patel4b198802016-02-01 22:23:39 +00001517 return replaceInstUsesWith(I, V);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001518
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001519 if (Instruction *common = commonIRemTransforms(I))
1520 return common;
Jim Grosbachbdbd7342013-04-05 21:20:12 +00001521
Sanjay Patelbb789382017-08-24 22:54:01 +00001522 if (Instruction *NarrowRem = narrowUDivURem(I, Builder))
1523 return NarrowRem;
David Majnemer6c30f492013-05-12 00:07:05 +00001524
David Majnemer470b0772013-05-11 09:01:28 +00001525 // X urem Y -> X and Y-1, where Y is a power of 2,
Craig Topperd4039f72017-05-25 21:51:12 +00001526 if (isKnownToBeAPowerOfTwo(Op1, /*OrZero*/ true, 0, &I)) {
Chris Lattner6b657ae2011-02-10 05:36:31 +00001527 Constant *N1 = Constant::getAllOnesValue(I.getType());
Craig Topperbb4069e2017-07-07 23:16:26 +00001528 Value *Add = Builder.CreateAdd(Op1, N1);
Chris Lattner6b657ae2011-02-10 05:36:31 +00001529 return BinaryOperator::CreateAnd(Op0, Add);
1530 }
1531
Nick Lewycky7459be62013-07-13 01:16:47 +00001532 // 1 urem X -> zext(X != 1)
1533 if (match(Op0, m_One())) {
Craig Topperbb4069e2017-07-07 23:16:26 +00001534 Value *Cmp = Builder.CreateICmpNE(Op1, Op0);
1535 Value *Ext = Builder.CreateZExt(Cmp, I.getType());
Sanjay Patel4b198802016-02-01 22:23:39 +00001536 return replaceInstUsesWith(I, Ext);
Nick Lewycky7459be62013-07-13 01:16:47 +00001537 }
1538
Sanjay Patel30ef70b2016-09-22 22:36:26 +00001539 // X urem C -> X < C ? X : X - C, where C >= signbit.
1540 const APInt *DivisorC;
1541 if (match(Op1, m_APInt(DivisorC)) && DivisorC->isNegative()) {
Craig Topperbb4069e2017-07-07 23:16:26 +00001542 Value *Cmp = Builder.CreateICmpULT(Op0, Op1);
1543 Value *Sub = Builder.CreateSub(Op0, Op1);
Sanjay Patel30ef70b2016-09-22 22:36:26 +00001544 return SelectInst::Create(Cmp, Op0, Sub);
1545 }
1546
Craig Topperf40110f2014-04-25 05:29:35 +00001547 return nullptr;
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001548}
1549
1550Instruction *InstCombiner::visitSRem(BinaryOperator &I) {
1551 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
1552
Serge Pavlov9ef66a82014-05-11 08:46:12 +00001553 if (Value *V = SimplifyVectorOp(I))
Sanjay Patel4b198802016-02-01 22:23:39 +00001554 return replaceInstUsesWith(I, V);
Serge Pavlov9ef66a82014-05-11 08:46:12 +00001555
Craig Toppera4205622017-06-09 03:21:29 +00001556 if (Value *V = SimplifySRemInst(Op0, Op1, SQ.getWithInstruction(&I)))
Sanjay Patel4b198802016-02-01 22:23:39 +00001557 return replaceInstUsesWith(I, V);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001558
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001559 // Handle the integer rem common cases
1560 if (Instruction *Common = commonIRemTransforms(I))
1561 return Common;
Jim Grosbachbdbd7342013-04-05 21:20:12 +00001562
David Majnemerdb077302014-10-13 22:37:51 +00001563 {
1564 const APInt *Y;
1565 // X % -Y -> X % Y
1566 if (match(Op1, m_APInt(Y)) && Y->isNegative() && !Y->isMinSignedValue()) {
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001567 Worklist.AddValue(I.getOperand(1));
David Majnemerdb077302014-10-13 22:37:51 +00001568 I.setOperand(1, ConstantInt::get(I.getType(), -*Y));
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001569 return &I;
1570 }
David Majnemerdb077302014-10-13 22:37:51 +00001571 }
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001572
1573 // If the sign bits of both operands are zero (i.e. we can prove they are
1574 // unsigned inputs), turn this into a urem.
Craig Topperbcfd2d12017-04-20 16:56:25 +00001575 APInt Mask(APInt::getSignMask(I.getType()->getScalarSizeInBits()));
Craig Topper1a18a7c2017-04-17 01:51:24 +00001576 if (MaskedValueIsZero(Op1, Mask, 0, &I) &&
1577 MaskedValueIsZero(Op0, Mask, 0, &I)) {
1578 // X srem Y -> X urem Y, iff X and Y don't have sign bit set
1579 return BinaryOperator::CreateURem(Op0, Op1, I.getName());
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001580 }
1581
1582 // If it's a constant vector, flip any negative values positive.
Chris Lattner0256be92012-01-27 03:08:05 +00001583 if (isa<ConstantVector>(Op1) || isa<ConstantDataVector>(Op1)) {
1584 Constant *C = cast<Constant>(Op1);
1585 unsigned VWidth = C->getType()->getVectorNumElements();
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001586
1587 bool hasNegative = false;
Chris Lattner0256be92012-01-27 03:08:05 +00001588 bool hasMissing = false;
1589 for (unsigned i = 0; i != VWidth; ++i) {
1590 Constant *Elt = C->getAggregateElement(i);
Craig Topperf40110f2014-04-25 05:29:35 +00001591 if (!Elt) {
Chris Lattner0256be92012-01-27 03:08:05 +00001592 hasMissing = true;
1593 break;
1594 }
1595
1596 if (ConstantInt *RHS = dyn_cast<ConstantInt>(Elt))
Chris Lattnerb1a15122011-07-15 06:08:15 +00001597 if (RHS->isNegative())
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001598 hasNegative = true;
Chris Lattner0256be92012-01-27 03:08:05 +00001599 }
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001600
Chris Lattner0256be92012-01-27 03:08:05 +00001601 if (hasNegative && !hasMissing) {
Chris Lattner47a86bd2012-01-25 06:02:56 +00001602 SmallVector<Constant *, 16> Elts(VWidth);
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001603 for (unsigned i = 0; i != VWidth; ++i) {
Chris Lattner8213c8a2012-02-06 21:56:39 +00001604 Elts[i] = C->getAggregateElement(i); // Handle undef, etc.
Chris Lattner0256be92012-01-27 03:08:05 +00001605 if (ConstantInt *RHS = dyn_cast<ConstantInt>(Elts[i])) {
Chris Lattnerb1a15122011-07-15 06:08:15 +00001606 if (RHS->isNegative())
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001607 Elts[i] = cast<ConstantInt>(ConstantExpr::getNeg(RHS));
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001608 }
1609 }
1610
1611 Constant *NewRHSV = ConstantVector::get(Elts);
Chris Lattner0256be92012-01-27 03:08:05 +00001612 if (NewRHSV != C) { // Don't loop on -MININT
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001613 Worklist.AddValue(I.getOperand(1));
1614 I.setOperand(1, NewRHSV);
1615 return &I;
1616 }
1617 }
1618 }
1619
Craig Topperf40110f2014-04-25 05:29:35 +00001620 return nullptr;
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001621}
1622
1623Instruction *InstCombiner::visitFRem(BinaryOperator &I) {
Duncan Sandsa3e36992011-05-02 16:27:02 +00001624 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattnerdc054bf2010-01-05 06:09:35 +00001625
Serge Pavlov9ef66a82014-05-11 08:46:12 +00001626 if (Value *V = SimplifyVectorOp(I))
Sanjay Patel4b198802016-02-01 22:23:39 +00001627 return replaceInstUsesWith(I, V);
Serge Pavlov9ef66a82014-05-11 08:46:12 +00001628
Craig Toppera4205622017-06-09 03:21:29 +00001629 if (Value *V = SimplifyFRemInst(Op0, Op1, I.getFastMathFlags(),
1630 SQ.getWithInstruction(&I)))
Sanjay Patel4b198802016-02-01 22:23:39 +00001631 return replaceInstUsesWith(I, V);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001632
1633 // Handle cases involving: rem X, (select Cond, Y, Z)
Sanjay Patelae2e3a42017-10-06 23:20:16 +00001634 if (simplifyDivRemOfSelectWithZeroOp(I))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001635 return &I;
1636
Craig Topperf40110f2014-04-25 05:29:35 +00001637 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001638}