blob: 2761bc22512f3eccfd4fa3820fc04fab166aa852 [file] [log] [blame]
Chris Lattnerd12c27c2010-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
15#include "InstCombine.h"
Duncan Sands82fdab32010-12-21 14:00:22 +000016#include "llvm/Analysis/InstructionSimplify.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000017#include "llvm/IR/IntrinsicInst.h"
Chris Lattnerd12c27c2010-01-05 06:09:35 +000018#include "llvm/Support/PatternMatch.h"
19using namespace llvm;
20using namespace PatternMatch;
21
Chris Lattner1add46d2011-05-22 18:18:41 +000022
23/// simplifyValueKnownNonZero - The specific integer value is used in a context
24/// where it is known to be non-zero. If this allows us to simplify the
25/// computation, do so and return the new operand, otherwise return null.
26static Value *simplifyValueKnownNonZero(Value *V, InstCombiner &IC) {
27 // If V has multiple uses, then we would have to do more analysis to determine
28 // if this is safe. For example, the use could be in dynamically unreached
29 // code.
30 if (!V->hasOneUse()) return 0;
Jim Grosbach03fceff2013-04-05 21:20:12 +000031
Chris Lattner613f1a32011-05-23 00:32:19 +000032 bool MadeChange = false;
33
Chris Lattner1add46d2011-05-22 18:18:41 +000034 // ((1 << A) >>u B) --> (1 << (A-B))
35 // Because V cannot be zero, we know that B is less than A.
Chris Lattner6083bb92011-05-23 00:09:55 +000036 Value *A = 0, *B = 0, *PowerOf2 = 0;
37 if (match(V, m_LShr(m_OneUse(m_Shl(m_Value(PowerOf2), m_Value(A))),
Chris Lattner1add46d2011-05-22 18:18:41 +000038 m_Value(B))) &&
39 // The "1" can be any value known to be a power of 2.
Rafael Espindoladbaa2372012-12-13 03:37:24 +000040 isKnownToBeAPowerOfTwo(PowerOf2)) {
Benjamin Kramera9390a42011-09-27 20:39:19 +000041 A = IC.Builder->CreateSub(A, B);
Chris Lattner6083bb92011-05-23 00:09:55 +000042 return IC.Builder->CreateShl(PowerOf2, A);
Chris Lattner1add46d2011-05-22 18:18:41 +000043 }
Jim Grosbach03fceff2013-04-05 21:20:12 +000044
Chris Lattner613f1a32011-05-23 00:32:19 +000045 // (PowerOfTwo >>u B) --> isExact since shifting out the result would make it
46 // inexact. Similarly for <<.
47 if (BinaryOperator *I = dyn_cast<BinaryOperator>(V))
Rafael Espindoladbaa2372012-12-13 03:37:24 +000048 if (I->isLogicalShift() && isKnownToBeAPowerOfTwo(I->getOperand(0))) {
Chris Lattner613f1a32011-05-23 00:32:19 +000049 // We know that this is an exact/nuw shift and that the input is a
50 // non-zero context as well.
51 if (Value *V2 = simplifyValueKnownNonZero(I->getOperand(0), IC)) {
52 I->setOperand(0, V2);
53 MadeChange = true;
54 }
Jim Grosbach03fceff2013-04-05 21:20:12 +000055
Chris Lattner613f1a32011-05-23 00:32:19 +000056 if (I->getOpcode() == Instruction::LShr && !I->isExact()) {
57 I->setIsExact();
58 MadeChange = true;
59 }
Jim Grosbach03fceff2013-04-05 21:20:12 +000060
Chris Lattner613f1a32011-05-23 00:32:19 +000061 if (I->getOpcode() == Instruction::Shl && !I->hasNoUnsignedWrap()) {
62 I->setHasNoUnsignedWrap();
63 MadeChange = true;
64 }
65 }
66
Chris Lattner6c9b8d32011-05-22 18:26:48 +000067 // TODO: Lots more we could do here:
Chris Lattner6c9b8d32011-05-22 18:26:48 +000068 // If V is a phi node, we can call this on each of its operands.
69 // "select cond, X, 0" can simplify to "X".
Jim Grosbach03fceff2013-04-05 21:20:12 +000070
Chris Lattner613f1a32011-05-23 00:32:19 +000071 return MadeChange ? V : 0;
Chris Lattner1add46d2011-05-22 18:18:41 +000072}
73
74
Chris Lattnerd12c27c2010-01-05 06:09:35 +000075/// MultiplyOverflows - True if the multiply can not be expressed in an int
76/// this size.
77static bool MultiplyOverflows(ConstantInt *C1, ConstantInt *C2, bool sign) {
78 uint32_t W = C1->getBitWidth();
79 APInt LHSExt = C1->getValue(), RHSExt = C2->getValue();
80 if (sign) {
Jay Foad40f8f622010-12-07 08:25:19 +000081 LHSExt = LHSExt.sext(W * 2);
82 RHSExt = RHSExt.sext(W * 2);
Chris Lattnerd12c27c2010-01-05 06:09:35 +000083 } else {
Jay Foad40f8f622010-12-07 08:25:19 +000084 LHSExt = LHSExt.zext(W * 2);
85 RHSExt = RHSExt.zext(W * 2);
Chris Lattnerd12c27c2010-01-05 06:09:35 +000086 }
Jim Grosbach03fceff2013-04-05 21:20:12 +000087
Chris Lattnerd12c27c2010-01-05 06:09:35 +000088 APInt MulExt = LHSExt * RHSExt;
Jim Grosbach03fceff2013-04-05 21:20:12 +000089
Chris Lattnerd12c27c2010-01-05 06:09:35 +000090 if (!sign)
91 return MulExt.ugt(APInt::getLowBitsSet(W * 2, W));
Jim Grosbach03fceff2013-04-05 21:20:12 +000092
Chris Lattnerd12c27c2010-01-05 06:09:35 +000093 APInt Min = APInt::getSignedMinValue(W).sext(W * 2);
94 APInt Max = APInt::getSignedMaxValue(W).sext(W * 2);
95 return MulExt.slt(Min) || MulExt.sgt(Max);
96}
97
Rafael Espindola4f3d7ee2013-05-31 14:27:15 +000098/// \brief A helper routine of InstCombiner::visitMul().
99///
100/// If C is a vector of known powers of 2, then this function returns
101/// a new vector obtained from C replacing each element with its logBase2.
102/// Return a null pointer otherwise.
103static Constant *getLogBase2Vector(ConstantDataVector *CV) {
104 const APInt *IVal;
105 SmallVector<Constant *, 4> Elts;
106
107 for (unsigned I = 0, E = CV->getNumElements(); I != E; ++I) {
108 Constant *Elt = CV->getElementAsConstant(I);
109 if (!match(Elt, m_APInt(IVal)) || !IVal->isPowerOf2())
110 return 0;
111 Elts.push_back(ConstantInt::get(Elt->getType(), IVal->logBase2()));
112 }
113
114 return ConstantVector::get(Elts);
115}
116
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000117Instruction *InstCombiner::visitMul(BinaryOperator &I) {
Duncan Sands096aa792010-11-13 15:10:37 +0000118 bool Changed = SimplifyAssociativeOrCommutative(I);
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000119 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
120
Duncan Sands82fdab32010-12-21 14:00:22 +0000121 if (Value *V = SimplifyMulInst(Op0, Op1, TD))
122 return ReplaceInstUsesWith(I, V);
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000123
Duncan Sands37bf92b2010-12-22 13:36:08 +0000124 if (Value *V = SimplifyUsingDistributiveLaws(I))
125 return ReplaceInstUsesWith(I, V);
126
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000127 if (match(Op1, m_AllOnes())) // X * -1 == 0 - X
128 return BinaryOperator::CreateNeg(Op0, I.getName());
Jim Grosbach03fceff2013-04-05 21:20:12 +0000129
Rafael Espindola4f3d7ee2013-05-31 14:27:15 +0000130 // Also allow combining multiply instructions on vectors.
131 {
132 Value *NewOp;
133 Constant *C1, *C2;
134 const APInt *IVal;
135 if (match(&I, m_Mul(m_Shl(m_Value(NewOp), m_Constant(C2)),
136 m_Constant(C1))) &&
137 match(C1, m_APInt(IVal)))
138 // ((X << C1)*C2) == (X * (C2 << C1))
139 return BinaryOperator::CreateMul(NewOp, ConstantExpr::getShl(C1, C2));
Jim Grosbach03fceff2013-04-05 21:20:12 +0000140
Rafael Espindola4f3d7ee2013-05-31 14:27:15 +0000141 if (match(&I, m_Mul(m_Value(NewOp), m_Constant(C1)))) {
142 Constant *NewCst = 0;
143 if (match(C1, m_APInt(IVal)) && IVal->isPowerOf2())
144 // Replace X*(2^C) with X << C, where C is either a scalar or a splat.
145 NewCst = ConstantInt::get(NewOp->getType(), IVal->logBase2());
146 else if (ConstantDataVector *CV = dyn_cast<ConstantDataVector>(C1))
147 // Replace X*(2^C) with X << C, where C is a vector of known
148 // constant powers of 2.
149 NewCst = getLogBase2Vector(CV);
Jim Grosbach03fceff2013-04-05 21:20:12 +0000150
Rafael Espindola4f3d7ee2013-05-31 14:27:15 +0000151 if (NewCst) {
152 BinaryOperator *Shl = BinaryOperator::CreateShl(NewOp, NewCst);
153 if (I.hasNoSignedWrap()) Shl->setHasNoSignedWrap();
154 if (I.hasNoUnsignedWrap()) Shl->setHasNoUnsignedWrap();
155 return Shl;
156 }
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000157 }
Rafael Espindola4f3d7ee2013-05-31 14:27:15 +0000158 }
Jim Grosbach03fceff2013-04-05 21:20:12 +0000159
Rafael Espindola4f3d7ee2013-05-31 14:27:15 +0000160 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000161 // Canonicalize (X+C1)*CI -> X*CI+C1*CI.
162 { Value *X; ConstantInt *C1;
163 if (Op0->hasOneUse() &&
164 match(Op0, m_Add(m_Value(X), m_ConstantInt(C1)))) {
Benjamin Kramera9390a42011-09-27 20:39:19 +0000165 Value *Add = Builder->CreateMul(X, CI);
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000166 return BinaryOperator::CreateAdd(Add, Builder->CreateMul(C1, CI));
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000167 }
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000168 }
Stuart Hastingsacbf1072011-05-30 20:00:33 +0000169
Stuart Hastingsf1002822011-06-01 16:42:47 +0000170 // (Y - X) * (-(2**n)) -> (X - Y) * (2**n), for positive nonzero n
171 // (Y + const) * (-(2**n)) -> (-constY) * (2**n), for positive nonzero n
172 // The "* (2**n)" thus becomes a potential shifting opportunity.
Stuart Hastingsacbf1072011-05-30 20:00:33 +0000173 {
174 const APInt & Val = CI->getValue();
175 const APInt &PosVal = Val.abs();
176 if (Val.isNegative() && PosVal.isPowerOf2()) {
Stuart Hastingsf1002822011-06-01 16:42:47 +0000177 Value *X = 0, *Y = 0;
178 if (Op0->hasOneUse()) {
179 ConstantInt *C1;
180 Value *Sub = 0;
181 if (match(Op0, m_Sub(m_Value(Y), m_Value(X))))
182 Sub = Builder->CreateSub(X, Y, "suba");
183 else if (match(Op0, m_Add(m_Value(Y), m_ConstantInt(C1))))
184 Sub = Builder->CreateSub(Builder->CreateNeg(C1), Y, "subc");
185 if (Sub)
186 return
187 BinaryOperator::CreateMul(Sub,
188 ConstantInt::get(Y->getType(), PosVal));
Stuart Hastingsacbf1072011-05-30 20:00:33 +0000189 }
190 }
191 }
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000192 }
Jim Grosbach03fceff2013-04-05 21:20:12 +0000193
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000194 // Simplify mul instructions with a constant RHS.
Jim Grosbach03fceff2013-04-05 21:20:12 +0000195 if (isa<Constant>(Op1)) {
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000196 // Try to fold constant mul into select arguments.
197 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
198 if (Instruction *R = FoldOpIntoSelect(I, SI))
199 return R;
200
201 if (isa<PHINode>(Op0))
202 if (Instruction *NV = FoldOpIntoPhi(I))
203 return NV;
204 }
205
206 if (Value *Op0v = dyn_castNegVal(Op0)) // -X * -Y = X*Y
207 if (Value *Op1v = dyn_castNegVal(Op1))
208 return BinaryOperator::CreateMul(Op0v, Op1v);
209
210 // (X / Y) * Y = X - (X % Y)
211 // (X / Y) * -Y = (X % Y) - X
212 {
213 Value *Op1C = Op1;
214 BinaryOperator *BO = dyn_cast<BinaryOperator>(Op0);
215 if (!BO ||
Jim Grosbach03fceff2013-04-05 21:20:12 +0000216 (BO->getOpcode() != Instruction::UDiv &&
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000217 BO->getOpcode() != Instruction::SDiv)) {
218 Op1C = Op0;
219 BO = dyn_cast<BinaryOperator>(Op1);
220 }
221 Value *Neg = dyn_castNegVal(Op1C);
222 if (BO && BO->hasOneUse() &&
223 (BO->getOperand(1) == Op1C || BO->getOperand(1) == Neg) &&
224 (BO->getOpcode() == Instruction::UDiv ||
225 BO->getOpcode() == Instruction::SDiv)) {
226 Value *Op0BO = BO->getOperand(0), *Op1BO = BO->getOperand(1);
227
Chris Lattner35bda892011-02-06 21:44:57 +0000228 // If the division is exact, X % Y is zero, so we end up with X or -X.
229 if (PossiblyExactOperator *SDiv = dyn_cast<PossiblyExactOperator>(BO))
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000230 if (SDiv->isExact()) {
231 if (Op1BO == Op1C)
232 return ReplaceInstUsesWith(I, Op0BO);
233 return BinaryOperator::CreateNeg(Op0BO);
234 }
235
236 Value *Rem;
237 if (BO->getOpcode() == Instruction::UDiv)
238 Rem = Builder->CreateURem(Op0BO, Op1BO);
239 else
240 Rem = Builder->CreateSRem(Op0BO, Op1BO);
241 Rem->takeName(BO);
242
243 if (Op1BO == Op1C)
244 return BinaryOperator::CreateSub(Op0BO, Rem);
245 return BinaryOperator::CreateSub(Rem, Op0BO);
246 }
247 }
248
249 /// i1 mul -> i1 and.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000250 if (I.getType()->isIntegerTy(1))
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000251 return BinaryOperator::CreateAnd(Op0, Op1);
252
253 // X*(1 << Y) --> X << Y
254 // (1 << Y)*X --> X << Y
255 {
256 Value *Y;
257 if (match(Op0, m_Shl(m_One(), m_Value(Y))))
258 return BinaryOperator::CreateShl(Op1, Y);
259 if (match(Op1, m_Shl(m_One(), m_Value(Y))))
260 return BinaryOperator::CreateShl(Op0, Y);
261 }
Jim Grosbach03fceff2013-04-05 21:20:12 +0000262
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000263 // If one of the operands of the multiply is a cast from a boolean value, then
264 // we know the bool is either zero or one, so this is a 'masking' multiply.
265 // X * Y (where Y is 0 or 1) -> X & (0-Y)
Duncan Sands1df98592010-02-16 11:11:14 +0000266 if (!I.getType()->isVectorTy()) {
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000267 // -2 is "-1 << 1" so it is all bits set except the low one.
268 APInt Negative2(I.getType()->getPrimitiveSizeInBits(), (uint64_t)-2, true);
Jim Grosbach03fceff2013-04-05 21:20:12 +0000269
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000270 Value *BoolCast = 0, *OtherOp = 0;
271 if (MaskedValueIsZero(Op0, Negative2))
272 BoolCast = Op0, OtherOp = Op1;
273 else if (MaskedValueIsZero(Op1, Negative2))
274 BoolCast = Op1, OtherOp = Op0;
275
276 if (BoolCast) {
277 Value *V = Builder->CreateSub(Constant::getNullValue(I.getType()),
Benjamin Kramera9390a42011-09-27 20:39:19 +0000278 BoolCast);
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000279 return BinaryOperator::CreateAnd(V, OtherOp);
280 }
281 }
282
283 return Changed ? &I : 0;
284}
285
Pedro Artigasc2a08d22012-11-30 22:07:05 +0000286//
287// Detect pattern:
288//
289// log2(Y*0.5)
290//
291// And check for corresponding fast math flags
292//
293
294static void detectLog2OfHalf(Value *&Op, Value *&Y, IntrinsicInst *&Log2) {
Pedro Artigasef2ef3e2012-11-30 22:47:15 +0000295
296 if (!Op->hasOneUse())
297 return;
298
299 IntrinsicInst *II = dyn_cast<IntrinsicInst>(Op);
300 if (!II)
301 return;
302 if (II->getIntrinsicID() != Intrinsic::log2 || !II->hasUnsafeAlgebra())
303 return;
304 Log2 = II;
305
306 Value *OpLog2Of = II->getArgOperand(0);
307 if (!OpLog2Of->hasOneUse())
308 return;
309
310 Instruction *I = dyn_cast<Instruction>(OpLog2Of);
311 if (!I)
312 return;
313 if (I->getOpcode() != Instruction::FMul || !I->hasUnsafeAlgebra())
314 return;
Jim Grosbach03fceff2013-04-05 21:20:12 +0000315
Pedro Artigasef2ef3e2012-11-30 22:47:15 +0000316 ConstantFP *CFP = dyn_cast<ConstantFP>(I->getOperand(0));
317 if (CFP && CFP->isExactlyValue(0.5)) {
318 Y = I->getOperand(1);
319 return;
320 }
321 CFP = dyn_cast<ConstantFP>(I->getOperand(1));
322 if (CFP && CFP->isExactlyValue(0.5))
323 Y = I->getOperand(0);
Jim Grosbach03fceff2013-04-05 21:20:12 +0000324}
Pedro Artigasc2a08d22012-11-30 22:07:05 +0000325
Shuxin Yangd3ae2862013-01-07 21:39:23 +0000326/// Helper function of InstCombiner::visitFMul(BinaryOperator(). It returns
327/// true iff the given value is FMul or FDiv with one and only one operand
328/// being a normal constant (i.e. not Zero/NaN/Infinity).
329static bool isFMulOrFDivWithConstant(Value *V) {
330 Instruction *I = dyn_cast<Instruction>(V);
Jim Grosbach03fceff2013-04-05 21:20:12 +0000331 if (!I || (I->getOpcode() != Instruction::FMul &&
Shuxin Yangf2797312013-01-07 22:41:28 +0000332 I->getOpcode() != Instruction::FDiv))
Shuxin Yangd3ae2862013-01-07 21:39:23 +0000333 return false;
Shuxin Yangd3ae2862013-01-07 21:39:23 +0000334
335 ConstantFP *C0 = dyn_cast<ConstantFP>(I->getOperand(0));
336 ConstantFP *C1 = dyn_cast<ConstantFP>(I->getOperand(1));
337
338 if (C0 && C1)
339 return false;
340
341 return (C0 && C0->getValueAPF().isNormal()) ||
342 (C1 && C1->getValueAPF().isNormal());
343}
344
345static bool isNormalFp(const ConstantFP *C) {
346 const APFloat &Flt = C->getValueAPF();
347 return Flt.isNormal() && !Flt.isDenormal();
348}
349
350/// foldFMulConst() is a helper routine of InstCombiner::visitFMul().
351/// The input \p FMulOrDiv is a FMul/FDiv with one and only one operand
352/// being a constant (i.e. isFMulOrFDivWithConstant(FMulOrDiv) == true).
Jim Grosbach03fceff2013-04-05 21:20:12 +0000353/// This function is to simplify "FMulOrDiv * C" and returns the
Shuxin Yangd3ae2862013-01-07 21:39:23 +0000354/// resulting expression. Note that this function could return NULL in
355/// case the constants cannot be folded into a normal floating-point.
Jim Grosbach03fceff2013-04-05 21:20:12 +0000356///
Shuxin Yangf2797312013-01-07 22:41:28 +0000357Value *InstCombiner::foldFMulConst(Instruction *FMulOrDiv, ConstantFP *C,
358 Instruction *InsertBefore) {
Shuxin Yangd3ae2862013-01-07 21:39:23 +0000359 assert(isFMulOrFDivWithConstant(FMulOrDiv) && "V is invalid");
360
361 Value *Opnd0 = FMulOrDiv->getOperand(0);
362 Value *Opnd1 = FMulOrDiv->getOperand(1);
363
364 ConstantFP *C0 = dyn_cast<ConstantFP>(Opnd0);
365 ConstantFP *C1 = dyn_cast<ConstantFP>(Opnd1);
366
367 BinaryOperator *R = 0;
368
369 // (X * C0) * C => X * (C0*C)
370 if (FMulOrDiv->getOpcode() == Instruction::FMul) {
371 Constant *F = ConstantExpr::getFMul(C1 ? C1 : C0, C);
372 if (isNormalFp(cast<ConstantFP>(F)))
373 R = BinaryOperator::CreateFMul(C1 ? Opnd0 : Opnd1, F);
374 } else {
375 if (C0) {
376 // (C0 / X) * C => (C0 * C) / X
377 ConstantFP *F = cast<ConstantFP>(ConstantExpr::getFMul(C0, C));
378 if (isNormalFp(F))
379 R = BinaryOperator::CreateFDiv(F, Opnd1);
380 } else {
381 // (X / C1) * C => X * (C/C1) if C/C1 is not a denormal
382 ConstantFP *F = cast<ConstantFP>(ConstantExpr::getFDiv(C, C1));
383 if (isNormalFp(F)) {
384 R = BinaryOperator::CreateFMul(Opnd0, F);
385 } else {
Jim Grosbach03fceff2013-04-05 21:20:12 +0000386 // (X / C1) * C => X / (C1/C)
Shuxin Yangd3ae2862013-01-07 21:39:23 +0000387 Constant *F = ConstantExpr::getFDiv(C1, C);
388 if (isNormalFp(cast<ConstantFP>(F)))
389 R = BinaryOperator::CreateFDiv(Opnd0, F);
390 }
391 }
392 }
393
394 if (R) {
395 R->setHasUnsafeAlgebra(true);
396 InsertNewInstWith(R, *InsertBefore);
397 }
398
399 return R;
400}
401
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000402Instruction *InstCombiner::visitFMul(BinaryOperator &I) {
Duncan Sands096aa792010-11-13 15:10:37 +0000403 bool Changed = SimplifyAssociativeOrCommutative(I);
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000404 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
405
Shuxin Yangd3ae2862013-01-07 21:39:23 +0000406 if (isa<Constant>(Op0))
407 std::swap(Op0, Op1);
408
Michael Ilsemanc244f382012-12-12 00:28:32 +0000409 if (Value *V = SimplifyFMulInst(Op0, Op1, I.getFastMathFlags(), TD))
410 return ReplaceInstUsesWith(I, V);
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000411
Shuxin Yanga1444212013-01-15 21:09:32 +0000412 bool AllowReassociate = I.hasUnsafeAlgebra();
413
Michael Ilsemanc244f382012-12-12 00:28:32 +0000414 // Simplify mul instructions with a constant RHS.
415 if (isa<Constant>(Op1)) {
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000416 // Try to fold constant mul into select arguments.
417 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
418 if (Instruction *R = FoldOpIntoSelect(I, SI))
419 return R;
420
421 if (isa<PHINode>(Op0))
422 if (Instruction *NV = FoldOpIntoPhi(I))
423 return NV;
Shuxin Yangd3ae2862013-01-07 21:39:23 +0000424
425 ConstantFP *C = dyn_cast<ConstantFP>(Op1);
Shuxin Yanga1444212013-01-15 21:09:32 +0000426 if (C && AllowReassociate && C->getValueAPF().isNormal()) {
Shuxin Yangd3ae2862013-01-07 21:39:23 +0000427 // Let MDC denote an expression in one of these forms:
428 // X * C, C/X, X/C, where C is a constant.
429 //
430 // Try to simplify "MDC * Constant"
431 if (isFMulOrFDivWithConstant(Op0)) {
432 Value *V = foldFMulConst(cast<Instruction>(Op0), C, &I);
433 if (V)
434 return ReplaceInstUsesWith(I, V);
435 }
436
Quentin Colombetc5a4c252013-02-28 21:12:40 +0000437 // (MDC +/- C1) * C => (MDC * C) +/- (C1 * C)
Shuxin Yangd3ae2862013-01-07 21:39:23 +0000438 Instruction *FAddSub = dyn_cast<Instruction>(Op0);
439 if (FAddSub &&
440 (FAddSub->getOpcode() == Instruction::FAdd ||
441 FAddSub->getOpcode() == Instruction::FSub)) {
442 Value *Opnd0 = FAddSub->getOperand(0);
443 Value *Opnd1 = FAddSub->getOperand(1);
444 ConstantFP *C0 = dyn_cast<ConstantFP>(Opnd0);
445 ConstantFP *C1 = dyn_cast<ConstantFP>(Opnd1);
446 bool Swap = false;
447 if (C0) {
Shuxin Yangf2797312013-01-07 22:41:28 +0000448 std::swap(C0, C1);
449 std::swap(Opnd0, Opnd1);
Jim Grosbach03fceff2013-04-05 21:20:12 +0000450 Swap = true;
Shuxin Yangd3ae2862013-01-07 21:39:23 +0000451 }
452
453 if (C1 && C1->getValueAPF().isNormal() &&
454 isFMulOrFDivWithConstant(Opnd0)) {
Quentin Colombetc5a4c252013-02-28 21:12:40 +0000455 Value *M1 = ConstantExpr::getFMul(C1, C);
Jim Grosbach03fceff2013-04-05 21:20:12 +0000456 Value *M0 = isNormalFp(cast<ConstantFP>(M1)) ?
Shuxin Yangd3ae2862013-01-07 21:39:23 +0000457 foldFMulConst(cast<Instruction>(Opnd0), C, &I) :
458 0;
459 if (M0 && M1) {
460 if (Swap && FAddSub->getOpcode() == Instruction::FSub)
461 std::swap(M0, M1);
462
463 Value *R = (FAddSub->getOpcode() == Instruction::FAdd) ?
464 BinaryOperator::CreateFAdd(M0, M1) :
465 BinaryOperator::CreateFSub(M0, M1);
466 Instruction *RI = cast<Instruction>(R);
Shuxin Yanga1444212013-01-15 21:09:32 +0000467 RI->copyFastMathFlags(&I);
Shuxin Yangd3ae2862013-01-07 21:39:23 +0000468 return RI;
469 }
470 }
471 }
472 }
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000473 }
474
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000475
Pedro Artigas84030dc2012-11-30 19:09:41 +0000476 // Under unsafe algebra do:
477 // X * log2(0.5*Y) = X*log2(Y) - X
478 if (I.hasUnsafeAlgebra()) {
479 Value *OpX = NULL;
480 Value *OpY = NULL;
481 IntrinsicInst *Log2;
Pedro Artigasc2a08d22012-11-30 22:07:05 +0000482 detectLog2OfHalf(Op0, OpY, Log2);
483 if (OpY) {
484 OpX = Op1;
485 } else {
486 detectLog2OfHalf(Op1, OpY, Log2);
487 if (OpY) {
488 OpX = Op0;
Pedro Artigas84030dc2012-11-30 19:09:41 +0000489 }
490 }
491 // if pattern detected emit alternate sequence
492 if (OpX && OpY) {
493 Log2->setArgOperand(0, OpY);
494 Value *FMulVal = Builder->CreateFMul(OpX, Log2);
Pedro Artigasc2a08d22012-11-30 22:07:05 +0000495 Instruction *FMul = cast<Instruction>(FMulVal);
Pedro Artigas84030dc2012-11-30 19:09:41 +0000496 FMul->copyFastMathFlags(Log2);
497 Instruction *FSub = BinaryOperator::CreateFSub(FMulVal, OpX);
498 FSub->copyFastMathFlags(Log2);
499 return FSub;
500 }
501 }
502
Shuxin Yanga1444212013-01-15 21:09:32 +0000503 // Handle symmetric situation in a 2-iteration loop
504 Value *Opnd0 = Op0;
505 Value *Opnd1 = Op1;
506 for (int i = 0; i < 2; i++) {
507 bool IgnoreZeroSign = I.hasNoSignedZeros();
508 if (BinaryOperator::isFNeg(Opnd0, IgnoreZeroSign)) {
509 Value *N0 = dyn_castFNegVal(Opnd0, IgnoreZeroSign);
510 Value *N1 = dyn_castFNegVal(Opnd1, IgnoreZeroSign);
Shuxin Yanga5ed0312012-12-14 18:46:06 +0000511
Shuxin Yanga1444212013-01-15 21:09:32 +0000512 // -X * -Y => X*Y
513 if (N1)
514 return BinaryOperator::CreateFMul(N0, N1);
Shuxin Yanga5ed0312012-12-14 18:46:06 +0000515
Shuxin Yanga1444212013-01-15 21:09:32 +0000516 if (Opnd0->hasOneUse()) {
517 // -X * Y => -(X*Y) (Promote negation as high as possible)
518 Value *T = Builder->CreateFMul(N0, Opnd1);
519 cast<Instruction>(T)->setDebugLoc(I.getDebugLoc());
520 Instruction *Neg = BinaryOperator::CreateFNeg(T);
521 if (I.getFastMathFlags().any()) {
522 cast<Instruction>(T)->copyFastMathFlags(&I);
523 Neg->copyFastMathFlags(&I);
524 }
525 return Neg;
Shuxin Yanga5ed0312012-12-14 18:46:06 +0000526 }
527 }
Shuxin Yanga1444212013-01-15 21:09:32 +0000528
529 // (X*Y) * X => (X*X) * Y where Y != X
Jim Grosbach03fceff2013-04-05 21:20:12 +0000530 // The purpose is two-fold:
Shuxin Yanga1444212013-01-15 21:09:32 +0000531 // 1) to form a power expression (of X).
532 // 2) potentially shorten the critical path: After transformation, the
533 // latency of the instruction Y is amortized by the expression of X*X,
534 // and therefore Y is in a "less critical" position compared to what it
535 // was before the transformation.
536 //
537 if (AllowReassociate) {
538 Value *Opnd0_0, *Opnd0_1;
539 if (Opnd0->hasOneUse() &&
540 match(Opnd0, m_FMul(m_Value(Opnd0_0), m_Value(Opnd0_1)))) {
541 Value *Y = 0;
542 if (Opnd0_0 == Opnd1 && Opnd0_1 != Opnd1)
543 Y = Opnd0_1;
544 else if (Opnd0_1 == Opnd1 && Opnd0_0 != Opnd1)
545 Y = Opnd0_0;
546
547 if (Y) {
548 Instruction *T = cast<Instruction>(Builder->CreateFMul(Opnd1, Opnd1));
549 T->copyFastMathFlags(&I);
550 T->setDebugLoc(I.getDebugLoc());
551
552 Instruction *R = BinaryOperator::CreateFMul(T, Y);
553 R->copyFastMathFlags(&I);
554 return R;
555 }
556 }
557 }
558
559 if (!isa<Constant>(Op1))
560 std::swap(Opnd0, Opnd1);
561 else
562 break;
Shuxin Yanga5ed0312012-12-14 18:46:06 +0000563 }
564
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000565 return Changed ? &I : 0;
566}
567
568/// SimplifyDivRemOfSelect - Try to fold a divide or remainder of a select
569/// instruction.
570bool InstCombiner::SimplifyDivRemOfSelect(BinaryOperator &I) {
571 SelectInst *SI = cast<SelectInst>(I.getOperand(1));
Jim Grosbach03fceff2013-04-05 21:20:12 +0000572
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000573 // div/rem X, (Cond ? 0 : Y) -> div/rem X, Y
574 int NonNullOperand = -1;
575 if (Constant *ST = dyn_cast<Constant>(SI->getOperand(1)))
576 if (ST->isNullValue())
577 NonNullOperand = 2;
578 // div/rem X, (Cond ? Y : 0) -> div/rem X, Y
579 if (Constant *ST = dyn_cast<Constant>(SI->getOperand(2)))
580 if (ST->isNullValue())
581 NonNullOperand = 1;
Jim Grosbach03fceff2013-04-05 21:20:12 +0000582
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000583 if (NonNullOperand == -1)
584 return false;
Jim Grosbach03fceff2013-04-05 21:20:12 +0000585
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000586 Value *SelectCond = SI->getOperand(0);
Jim Grosbach03fceff2013-04-05 21:20:12 +0000587
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000588 // Change the div/rem to use 'Y' instead of the select.
589 I.setOperand(1, SI->getOperand(NonNullOperand));
Jim Grosbach03fceff2013-04-05 21:20:12 +0000590
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000591 // Okay, we know we replace the operand of the div/rem with 'Y' with no
592 // problem. However, the select, or the condition of the select may have
593 // multiple uses. Based on our knowledge that the operand must be non-zero,
594 // propagate the known value for the select into other uses of it, and
595 // propagate a known value of the condition into its other users.
Jim Grosbach03fceff2013-04-05 21:20:12 +0000596
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000597 // If the select and condition only have a single use, don't bother with this,
598 // early exit.
599 if (SI->use_empty() && SelectCond->hasOneUse())
600 return true;
Jim Grosbach03fceff2013-04-05 21:20:12 +0000601
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000602 // Scan the current block backward, looking for other uses of SI.
603 BasicBlock::iterator BBI = &I, BBFront = I.getParent()->begin();
Jim Grosbach03fceff2013-04-05 21:20:12 +0000604
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000605 while (BBI != BBFront) {
606 --BBI;
607 // If we found a call to a function, we can't assume it will return, so
608 // information from below it cannot be propagated above it.
609 if (isa<CallInst>(BBI) && !isa<IntrinsicInst>(BBI))
610 break;
Jim Grosbach03fceff2013-04-05 21:20:12 +0000611
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000612 // Replace uses of the select or its condition with the known values.
613 for (Instruction::op_iterator I = BBI->op_begin(), E = BBI->op_end();
614 I != E; ++I) {
615 if (*I == SI) {
616 *I = SI->getOperand(NonNullOperand);
617 Worklist.Add(BBI);
618 } else if (*I == SelectCond) {
619 *I = NonNullOperand == 1 ? ConstantInt::getTrue(BBI->getContext()) :
620 ConstantInt::getFalse(BBI->getContext());
621 Worklist.Add(BBI);
622 }
623 }
Jim Grosbach03fceff2013-04-05 21:20:12 +0000624
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000625 // If we past the instruction, quit looking for it.
626 if (&*BBI == SI)
627 SI = 0;
628 if (&*BBI == SelectCond)
629 SelectCond = 0;
Jim Grosbach03fceff2013-04-05 21:20:12 +0000630
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000631 // If we ran out of things to eliminate, break out of the loop.
632 if (SelectCond == 0 && SI == 0)
633 break;
Jim Grosbach03fceff2013-04-05 21:20:12 +0000634
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000635 }
636 return true;
637}
638
639
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000640/// This function implements the transforms common to both integer division
641/// instructions (udiv and sdiv). It is called by the visitors to those integer
642/// division instructions.
643/// @brief Common integer divide transforms
644Instruction *InstCombiner::commonIDivTransforms(BinaryOperator &I) {
645 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
646
Chris Lattner1add46d2011-05-22 18:18:41 +0000647 // The RHS is known non-zero.
648 if (Value *V = simplifyValueKnownNonZero(I.getOperand(1), *this)) {
649 I.setOperand(1, V);
650 return &I;
651 }
Jim Grosbach03fceff2013-04-05 21:20:12 +0000652
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000653 // Handle cases involving: [su]div X, (select Cond, Y, Z)
654 // This does not apply for fdiv.
655 if (isa<SelectInst>(Op1) && SimplifyDivRemOfSelect(I))
656 return &I;
657
658 if (ConstantInt *RHS = dyn_cast<ConstantInt>(Op1)) {
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000659 // (X / C1) / C2 -> X / (C1*C2)
660 if (Instruction *LHS = dyn_cast<Instruction>(Op0))
661 if (Instruction::BinaryOps(LHS->getOpcode()) == I.getOpcode())
662 if (ConstantInt *LHSRHS = dyn_cast<ConstantInt>(LHS->getOperand(1))) {
663 if (MultiplyOverflows(RHS, LHSRHS,
664 I.getOpcode()==Instruction::SDiv))
665 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000666 return BinaryOperator::Create(I.getOpcode(), LHS->getOperand(0),
667 ConstantExpr::getMul(RHS, LHSRHS));
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000668 }
669
670 if (!RHS->isZero()) { // avoid X udiv 0
671 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
672 if (Instruction *R = FoldOpIntoSelect(I, SI))
673 return R;
674 if (isa<PHINode>(Op0))
675 if (Instruction *NV = FoldOpIntoPhi(I))
676 return NV;
677 }
678 }
679
Benjamin Kramer23b02cd2011-04-30 18:16:00 +0000680 // See if we can fold away this div instruction.
681 if (SimplifyDemandedInstructionBits(I))
682 return &I;
683
Duncan Sands593faa52011-01-28 16:51:11 +0000684 // (X - (X rem Y)) / Y -> X / Y; usually originates as ((X / Y) * Y) / Y
685 Value *X = 0, *Z = 0;
686 if (match(Op0, m_Sub(m_Value(X), m_Value(Z)))) { // (X - Z) / Y; Y = Op1
687 bool isSigned = I.getOpcode() == Instruction::SDiv;
688 if ((isSigned && match(Z, m_SRem(m_Specific(X), m_Specific(Op1)))) ||
689 (!isSigned && match(Z, m_URem(m_Specific(X), m_Specific(Op1)))))
690 return BinaryOperator::Create(I.getOpcode(), X, Op1);
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000691 }
692
693 return 0;
694}
695
Benjamin Kramer7d6eb5a2011-04-30 18:16:07 +0000696/// dyn_castZExtVal - Checks if V is a zext or constant that can
697/// be truncated to Ty without losing bits.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000698static Value *dyn_castZExtVal(Value *V, Type *Ty) {
Benjamin Kramer7d6eb5a2011-04-30 18:16:07 +0000699 if (ZExtInst *Z = dyn_cast<ZExtInst>(V)) {
700 if (Z->getSrcTy() == Ty)
701 return Z->getOperand(0);
702 } else if (ConstantInt *C = dyn_cast<ConstantInt>(V)) {
703 if (C->getValue().getActiveBits() <= cast<IntegerType>(Ty)->getBitWidth())
704 return ConstantExpr::getTrunc(C, Ty);
705 }
706 return 0;
707}
708
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000709Instruction *InstCombiner::visitUDiv(BinaryOperator &I) {
710 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
711
Duncan Sands593faa52011-01-28 16:51:11 +0000712 if (Value *V = SimplifyUDivInst(Op0, Op1, TD))
713 return ReplaceInstUsesWith(I, V);
714
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000715 // Handle the integer div common cases
716 if (Instruction *Common = commonIDivTransforms(I))
717 return Common;
Jim Grosbach03fceff2013-04-05 21:20:12 +0000718
719 {
Owen Anderson5b396202010-01-17 06:49:03 +0000720 // X udiv 2^C -> X >> C
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000721 // Check to see if this is an unsigned division with an exact power of 2,
722 // if so, convert to a right shift.
Pete Coopera29fc802011-11-07 23:04:49 +0000723 const APInt *C;
724 if (match(Op1, m_Power2(C))) {
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000725 BinaryOperator *LShr =
Jim Grosbach03fceff2013-04-05 21:20:12 +0000726 BinaryOperator::CreateLShr(Op0,
727 ConstantInt::get(Op0->getType(),
Pete Coopera29fc802011-11-07 23:04:49 +0000728 C->logBase2()));
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000729 if (I.isExact()) LShr->setIsExact();
730 return LShr;
731 }
Pete Coopera29fc802011-11-07 23:04:49 +0000732 }
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000733
Pete Coopera29fc802011-11-07 23:04:49 +0000734 if (ConstantInt *C = dyn_cast<ConstantInt>(Op1)) {
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000735 // X udiv C, where C >= signbit
736 if (C->getValue().isNegative()) {
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000737 Value *IC = Builder->CreateICmpULT(Op0, C);
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000738 return SelectInst::Create(IC, Constant::getNullValue(I.getType()),
739 ConstantInt::get(I.getType(), 1));
740 }
741 }
742
Benjamin Kramerc81fe9c2012-08-30 15:07:40 +0000743 // (x lshr C1) udiv C2 --> x udiv (C2 << C1)
Nadav Rotema694e2a2012-08-28 12:23:22 +0000744 if (ConstantInt *C2 = dyn_cast<ConstantInt>(Op1)) {
Benjamin Krameraac7c652012-08-28 13:08:13 +0000745 Value *X;
746 ConstantInt *C1;
747 if (match(Op0, m_LShr(m_Value(X), m_ConstantInt(C1)))) {
Benjamin Kramer37dca632012-08-28 13:59:23 +0000748 APInt NC = C2->getValue().shl(C1->getLimitedValue(C1->getBitWidth()-1));
Benjamin Krameraac7c652012-08-28 13:08:13 +0000749 return BinaryOperator::CreateUDiv(X, Builder->getInt(NC));
Nadav Rotem9753f0b2012-08-28 10:01:43 +0000750 }
751 }
752
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000753 // X udiv (C1 << N), where C1 is "1<<C2" --> X >> (N+C2)
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000754 { const APInt *CI; Value *N;
Evan Cheng2a5422b2012-06-21 22:52:49 +0000755 if (match(Op1, m_Shl(m_Power2(CI), m_Value(N))) ||
756 match(Op1, m_ZExt(m_Shl(m_Power2(CI), m_Value(N))))) {
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000757 if (*CI != 1)
Benjamin Kramere5bd3cf2012-09-21 16:26:41 +0000758 N = Builder->CreateAdd(N,
759 ConstantInt::get(N->getType(), CI->logBase2()));
Evan Cheng2a5422b2012-06-21 22:52:49 +0000760 if (ZExtInst *Z = dyn_cast<ZExtInst>(Op1))
761 N = Builder->CreateZExt(N, Z->getDestTy());
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000762 if (I.isExact())
763 return BinaryOperator::CreateExactLShr(Op0, N);
764 return BinaryOperator::CreateLShr(Op0, N);
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000765 }
766 }
Jim Grosbach03fceff2013-04-05 21:20:12 +0000767
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000768 // udiv X, (Select Cond, C1, C2) --> Select Cond, (shr X, C1), (shr X, C2)
769 // where C1&C2 are powers of two.
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000770 { Value *Cond; const APInt *C1, *C2;
771 if (match(Op1, m_Select(m_Value(Cond), m_Power2(C1), m_Power2(C2)))) {
772 // Construct the "on true" case of the select
773 Value *TSI = Builder->CreateLShr(Op0, C1->logBase2(), Op1->getName()+".t",
774 I.isExact());
Jim Grosbach03fceff2013-04-05 21:20:12 +0000775
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000776 // Construct the "on false" case of the select
777 Value *FSI = Builder->CreateLShr(Op0, C2->logBase2(), Op1->getName()+".f",
778 I.isExact());
Jim Grosbach03fceff2013-04-05 21:20:12 +0000779
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000780 // construct the select instruction and return it.
781 return SelectInst::Create(Cond, TSI, FSI);
782 }
783 }
Benjamin Kramer7d6eb5a2011-04-30 18:16:07 +0000784
785 // (zext A) udiv (zext B) --> zext (A udiv B)
786 if (ZExtInst *ZOp0 = dyn_cast<ZExtInst>(Op0))
787 if (Value *ZOp1 = dyn_castZExtVal(Op1, ZOp0->getSrcTy()))
788 return new ZExtInst(Builder->CreateUDiv(ZOp0->getOperand(0), ZOp1, "div",
789 I.isExact()),
790 I.getType());
791
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000792 return 0;
793}
794
795Instruction *InstCombiner::visitSDiv(BinaryOperator &I) {
796 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
797
Duncan Sands593faa52011-01-28 16:51:11 +0000798 if (Value *V = SimplifySDivInst(Op0, Op1, TD))
799 return ReplaceInstUsesWith(I, V);
800
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000801 // Handle the integer div common cases
802 if (Instruction *Common = commonIDivTransforms(I))
803 return Common;
804
805 if (ConstantInt *RHS = dyn_cast<ConstantInt>(Op1)) {
806 // sdiv X, -1 == -X
807 if (RHS->isAllOnesValue())
808 return BinaryOperator::CreateNeg(Op0);
809
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000810 // sdiv X, C --> ashr exact X, log2(C)
811 if (I.isExact() && RHS->getValue().isNonNegative() &&
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000812 RHS->getValue().isPowerOf2()) {
813 Value *ShAmt = llvm::ConstantInt::get(RHS->getType(),
814 RHS->getValue().exactLogBase2());
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000815 return BinaryOperator::CreateExactAShr(Op0, ShAmt, I.getName());
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000816 }
817
818 // -X/C --> X/-C provided the negation doesn't overflow.
819 if (SubOperator *Sub = dyn_cast<SubOperator>(Op0))
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000820 if (match(Sub->getOperand(0), m_Zero()) && Sub->hasNoSignedWrap())
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000821 return BinaryOperator::CreateSDiv(Sub->getOperand(1),
822 ConstantExpr::getNeg(RHS));
823 }
824
825 // If the sign bits of both operands are zero (i.e. we can prove they are
826 // unsigned inputs), turn this into a udiv.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000827 if (I.getType()->isIntegerTy()) {
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000828 APInt Mask(APInt::getSignBit(I.getType()->getPrimitiveSizeInBits()));
829 if (MaskedValueIsZero(Op0, Mask)) {
830 if (MaskedValueIsZero(Op1, Mask)) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +0000831 // X sdiv Y -> X udiv Y, iff X and Y don't have sign bit set
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000832 return BinaryOperator::CreateUDiv(Op0, Op1, I.getName());
833 }
Jim Grosbach03fceff2013-04-05 21:20:12 +0000834
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000835 if (match(Op1, m_Shl(m_Power2(), m_Value()))) {
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000836 // X sdiv (1 << Y) -> X udiv (1 << Y) ( -> X u>> Y)
837 // Safe because the only negative value (1 << Y) can take on is
838 // INT_MIN, and X sdiv INT_MIN == X udiv INT_MIN == 0 if X doesn't have
839 // the sign bit set.
840 return BinaryOperator::CreateUDiv(Op0, Op1, I.getName());
841 }
842 }
843 }
Jim Grosbach03fceff2013-04-05 21:20:12 +0000844
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000845 return 0;
846}
847
Shuxin Yang7d72cf82013-01-14 22:48:41 +0000848/// CvtFDivConstToReciprocal tries to convert X/C into X*1/C if C not a special
849/// FP value and:
Jim Grosbach03fceff2013-04-05 21:20:12 +0000850/// 1) 1/C is exact, or
Shuxin Yang7d72cf82013-01-14 22:48:41 +0000851/// 2) reciprocal is allowed.
Sylvestre Ledruda2ed452013-05-14 23:36:24 +0000852/// If the conversion was successful, the simplified expression "X * 1/C" is
Shuxin Yang7d72cf82013-01-14 22:48:41 +0000853/// returned; otherwise, NULL is returned.
854///
855static Instruction *CvtFDivConstToReciprocal(Value *Dividend,
856 ConstantFP *Divisor,
857 bool AllowReciprocal) {
858 const APFloat &FpVal = Divisor->getValueAPF();
859 APFloat Reciprocal(FpVal.getSemantics());
860 bool Cvt = FpVal.getExactInverse(&Reciprocal);
Jim Grosbach03fceff2013-04-05 21:20:12 +0000861
Shuxin Yang7d72cf82013-01-14 22:48:41 +0000862 if (!Cvt && AllowReciprocal && FpVal.isNormal()) {
863 Reciprocal = APFloat(FpVal.getSemantics(), 1.0f);
864 (void)Reciprocal.divide(FpVal, APFloat::rmNearestTiesToEven);
865 Cvt = !Reciprocal.isDenormal();
866 }
867
868 if (!Cvt)
869 return 0;
870
871 ConstantFP *R;
872 R = ConstantFP::get(Dividend->getType()->getContext(), Reciprocal);
873 return BinaryOperator::CreateFMul(Dividend, R);
874}
875
Frits van Bommel31726c12011-01-29 17:50:27 +0000876Instruction *InstCombiner::visitFDiv(BinaryOperator &I) {
877 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
878
879 if (Value *V = SimplifyFDivInst(Op0, Op1, TD))
880 return ReplaceInstUsesWith(I, V);
881
Shuxin Yang7d72cf82013-01-14 22:48:41 +0000882 bool AllowReassociate = I.hasUnsafeAlgebra();
883 bool AllowReciprocal = I.hasAllowReciprocal();
Benjamin Kramer54673962011-03-30 15:42:35 +0000884
Shuxin Yang7d72cf82013-01-14 22:48:41 +0000885 if (ConstantFP *Op1C = dyn_cast<ConstantFP>(Op1)) {
886 if (AllowReassociate) {
887 ConstantFP *C1 = 0;
888 ConstantFP *C2 = Op1C;
889 Value *X;
890 Instruction *Res = 0;
891
892 if (match(Op0, m_FMul(m_Value(X), m_ConstantFP(C1)))) {
893 // (X*C1)/C2 => X * (C1/C2)
894 //
895 Constant *C = ConstantExpr::getFDiv(C1, C2);
896 const APFloat &F = cast<ConstantFP>(C)->getValueAPF();
897 if (F.isNormal() && !F.isDenormal())
898 Res = BinaryOperator::CreateFMul(X, C);
899 } else if (match(Op0, m_FDiv(m_Value(X), m_ConstantFP(C1)))) {
900 // (X/C1)/C2 => X /(C2*C1) [=> X * 1/(C2*C1) if reciprocal is allowed]
901 //
902 Constant *C = ConstantExpr::getFMul(C1, C2);
903 const APFloat &F = cast<ConstantFP>(C)->getValueAPF();
904 if (F.isNormal() && !F.isDenormal()) {
Jim Grosbach03fceff2013-04-05 21:20:12 +0000905 Res = CvtFDivConstToReciprocal(X, cast<ConstantFP>(C),
Shuxin Yang7d72cf82013-01-14 22:48:41 +0000906 AllowReciprocal);
907 if (!Res)
Jim Grosbach03fceff2013-04-05 21:20:12 +0000908 Res = BinaryOperator::CreateFDiv(X, C);
Shuxin Yang7d72cf82013-01-14 22:48:41 +0000909 }
910 }
911
912 if (Res) {
913 Res->setFastMathFlags(I.getFastMathFlags());
914 return Res;
915 }
916 }
917
918 // X / C => X * 1/C
919 if (Instruction *T = CvtFDivConstToReciprocal(Op0, Op1C, AllowReciprocal))
920 return T;
921
922 return 0;
923 }
924
925 if (AllowReassociate && isa<ConstantFP>(Op0)) {
926 ConstantFP *C1 = cast<ConstantFP>(Op0), *C2;
927 Constant *Fold = 0;
928 Value *X;
929 bool CreateDiv = true;
930
931 // C1 / (X*C2) => (C1/C2) / X
932 if (match(Op1, m_FMul(m_Value(X), m_ConstantFP(C2))))
933 Fold = ConstantExpr::getFDiv(C1, C2);
934 else if (match(Op1, m_FDiv(m_Value(X), m_ConstantFP(C2)))) {
935 // C1 / (X/C2) => (C1*C2) / X
936 Fold = ConstantExpr::getFMul(C1, C2);
937 } else if (match(Op1, m_FDiv(m_ConstantFP(C2), m_Value(X)))) {
938 // C1 / (C2/X) => (C1/C2) * X
939 Fold = ConstantExpr::getFDiv(C1, C2);
940 CreateDiv = false;
941 }
942
943 if (Fold) {
944 const APFloat &FoldC = cast<ConstantFP>(Fold)->getValueAPF();
945 if (FoldC.isNormal() && !FoldC.isDenormal()) {
Jim Grosbach03fceff2013-04-05 21:20:12 +0000946 Instruction *R = CreateDiv ?
Shuxin Yang7d72cf82013-01-14 22:48:41 +0000947 BinaryOperator::CreateFDiv(Fold, X) :
948 BinaryOperator::CreateFMul(X, Fold);
949 R->setFastMathFlags(I.getFastMathFlags());
950 return R;
951 }
952 }
953 return 0;
954 }
955
956 if (AllowReassociate) {
957 Value *X, *Y;
958 Value *NewInst = 0;
959 Instruction *SimpR = 0;
960
961 if (Op0->hasOneUse() && match(Op0, m_FDiv(m_Value(X), m_Value(Y)))) {
962 // (X/Y) / Z => X / (Y*Z)
963 //
964 if (!isa<ConstantFP>(Y) || !isa<ConstantFP>(Op1)) {
965 NewInst = Builder->CreateFMul(Y, Op1);
966 SimpR = BinaryOperator::CreateFDiv(X, NewInst);
967 }
968 } else if (Op1->hasOneUse() && match(Op1, m_FDiv(m_Value(X), m_Value(Y)))) {
969 // Z / (X/Y) => Z*Y / X
970 //
971 if (!isa<ConstantFP>(Y) || !isa<ConstantFP>(Op0)) {
972 NewInst = Builder->CreateFMul(Op0, Y);
973 SimpR = BinaryOperator::CreateFDiv(NewInst, X);
974 }
975 }
976
977 if (NewInst) {
978 if (Instruction *T = dyn_cast<Instruction>(NewInst))
979 T->setDebugLoc(I.getDebugLoc());
980 SimpR->setFastMathFlags(I.getFastMathFlags());
981 return SimpR;
Benjamin Kramer54673962011-03-30 15:42:35 +0000982 }
983 }
984
Frits van Bommel31726c12011-01-29 17:50:27 +0000985 return 0;
986}
987
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000988/// This function implements the transforms common to both integer remainder
989/// instructions (urem and srem). It is called by the visitors to those integer
990/// remainder instructions.
991/// @brief Common integer remainder transforms
992Instruction *InstCombiner::commonIRemTransforms(BinaryOperator &I) {
993 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
994
Chris Lattner1add46d2011-05-22 18:18:41 +0000995 // The RHS is known non-zero.
996 if (Value *V = simplifyValueKnownNonZero(I.getOperand(1), *this)) {
997 I.setOperand(1, V);
998 return &I;
999 }
1000
Duncan Sandsf24ed772011-05-02 16:27:02 +00001001 // Handle cases involving: rem X, (select Cond, Y, Z)
1002 if (isa<SelectInst>(Op1) && SimplifyDivRemOfSelect(I))
1003 return &I;
Chris Lattnerd12c27c2010-01-05 06:09:35 +00001004
Duncan Sands00676a62011-05-02 18:41:29 +00001005 if (isa<ConstantInt>(Op1)) {
Chris Lattnerd12c27c2010-01-05 06:09:35 +00001006 if (Instruction *Op0I = dyn_cast<Instruction>(Op0)) {
1007 if (SelectInst *SI = dyn_cast<SelectInst>(Op0I)) {
1008 if (Instruction *R = FoldOpIntoSelect(I, SI))
1009 return R;
1010 } else if (isa<PHINode>(Op0I)) {
1011 if (Instruction *NV = FoldOpIntoPhi(I))
1012 return NV;
1013 }
1014
1015 // See if we can fold away this rem instruction.
1016 if (SimplifyDemandedInstructionBits(I))
1017 return &I;
1018 }
1019 }
1020
1021 return 0;
1022}
1023
1024Instruction *InstCombiner::visitURem(BinaryOperator &I) {
1025 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
1026
Duncan Sandsf24ed772011-05-02 16:27:02 +00001027 if (Value *V = SimplifyURemInst(Op0, Op1, TD))
1028 return ReplaceInstUsesWith(I, V);
1029
Chris Lattnerd12c27c2010-01-05 06:09:35 +00001030 if (Instruction *common = commonIRemTransforms(I))
1031 return common;
Jim Grosbach03fceff2013-04-05 21:20:12 +00001032
David Majnemerfa49d7d2013-05-12 00:07:05 +00001033 // (zext A) urem (zext B) --> zext (A urem B)
1034 if (ZExtInst *ZOp0 = dyn_cast<ZExtInst>(Op0))
1035 if (Value *ZOp1 = dyn_castZExtVal(Op1, ZOp0->getSrcTy()))
1036 return new ZExtInst(Builder->CreateURem(ZOp0->getOperand(0), ZOp1),
1037 I.getType());
1038
David Majnemera8ccefc2013-05-11 09:01:28 +00001039 // X urem Y -> X and Y-1, where Y is a power of 2,
1040 if (isKnownToBeAPowerOfTwo(Op1, /*OrZero*/true)) {
Chris Lattner7a6aa1a2011-02-10 05:36:31 +00001041 Constant *N1 = Constant::getAllOnesValue(I.getType());
Benjamin Kramera9390a42011-09-27 20:39:19 +00001042 Value *Add = Builder->CreateAdd(Op1, N1);
Chris Lattner7a6aa1a2011-02-10 05:36:31 +00001043 return BinaryOperator::CreateAnd(Op0, Add);
1044 }
1045
Chris Lattnerd12c27c2010-01-05 06:09:35 +00001046 return 0;
1047}
1048
1049Instruction *InstCombiner::visitSRem(BinaryOperator &I) {
1050 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
1051
Duncan Sandsf24ed772011-05-02 16:27:02 +00001052 if (Value *V = SimplifySRemInst(Op0, Op1, TD))
1053 return ReplaceInstUsesWith(I, V);
1054
Chris Lattnerd12c27c2010-01-05 06:09:35 +00001055 // Handle the integer rem common cases
1056 if (Instruction *Common = commonIRemTransforms(I))
1057 return Common;
Jim Grosbach03fceff2013-04-05 21:20:12 +00001058
Chris Lattnerd12c27c2010-01-05 06:09:35 +00001059 if (Value *RHSNeg = dyn_castNegVal(Op1))
1060 if (!isa<Constant>(RHSNeg) ||
1061 (isa<ConstantInt>(RHSNeg) &&
1062 cast<ConstantInt>(RHSNeg)->getValue().isStrictlyPositive())) {
1063 // X % -Y -> X % Y
1064 Worklist.AddValue(I.getOperand(1));
1065 I.setOperand(1, RHSNeg);
1066 return &I;
1067 }
1068
1069 // If the sign bits of both operands are zero (i.e. we can prove they are
1070 // unsigned inputs), turn this into a urem.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001071 if (I.getType()->isIntegerTy()) {
Chris Lattnerd12c27c2010-01-05 06:09:35 +00001072 APInt Mask(APInt::getSignBit(I.getType()->getPrimitiveSizeInBits()));
1073 if (MaskedValueIsZero(Op1, Mask) && MaskedValueIsZero(Op0, Mask)) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001074 // X srem Y -> X urem Y, iff X and Y don't have sign bit set
Chris Lattnerd12c27c2010-01-05 06:09:35 +00001075 return BinaryOperator::CreateURem(Op0, Op1, I.getName());
1076 }
1077 }
1078
1079 // If it's a constant vector, flip any negative values positive.
Chris Lattnera78fa8c2012-01-27 03:08:05 +00001080 if (isa<ConstantVector>(Op1) || isa<ConstantDataVector>(Op1)) {
1081 Constant *C = cast<Constant>(Op1);
1082 unsigned VWidth = C->getType()->getVectorNumElements();
Chris Lattnerd12c27c2010-01-05 06:09:35 +00001083
1084 bool hasNegative = false;
Chris Lattnera78fa8c2012-01-27 03:08:05 +00001085 bool hasMissing = false;
1086 for (unsigned i = 0; i != VWidth; ++i) {
1087 Constant *Elt = C->getAggregateElement(i);
1088 if (Elt == 0) {
1089 hasMissing = true;
1090 break;
1091 }
1092
1093 if (ConstantInt *RHS = dyn_cast<ConstantInt>(Elt))
Chris Lattnerc73b24d2011-07-15 06:08:15 +00001094 if (RHS->isNegative())
Chris Lattnerd12c27c2010-01-05 06:09:35 +00001095 hasNegative = true;
Chris Lattnera78fa8c2012-01-27 03:08:05 +00001096 }
Chris Lattnerd12c27c2010-01-05 06:09:35 +00001097
Chris Lattnera78fa8c2012-01-27 03:08:05 +00001098 if (hasNegative && !hasMissing) {
Chris Lattner4ca829e2012-01-25 06:02:56 +00001099 SmallVector<Constant *, 16> Elts(VWidth);
Chris Lattnerd12c27c2010-01-05 06:09:35 +00001100 for (unsigned i = 0; i != VWidth; ++i) {
Chris Lattner7302d802012-02-06 21:56:39 +00001101 Elts[i] = C->getAggregateElement(i); // Handle undef, etc.
Chris Lattnera78fa8c2012-01-27 03:08:05 +00001102 if (ConstantInt *RHS = dyn_cast<ConstantInt>(Elts[i])) {
Chris Lattnerc73b24d2011-07-15 06:08:15 +00001103 if (RHS->isNegative())
Chris Lattnerd12c27c2010-01-05 06:09:35 +00001104 Elts[i] = cast<ConstantInt>(ConstantExpr::getNeg(RHS));
Chris Lattnerd12c27c2010-01-05 06:09:35 +00001105 }
1106 }
1107
1108 Constant *NewRHSV = ConstantVector::get(Elts);
Chris Lattnera78fa8c2012-01-27 03:08:05 +00001109 if (NewRHSV != C) { // Don't loop on -MININT
Chris Lattnerd12c27c2010-01-05 06:09:35 +00001110 Worklist.AddValue(I.getOperand(1));
1111 I.setOperand(1, NewRHSV);
1112 return &I;
1113 }
1114 }
1115 }
1116
1117 return 0;
1118}
1119
1120Instruction *InstCombiner::visitFRem(BinaryOperator &I) {
Duncan Sandsf24ed772011-05-02 16:27:02 +00001121 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattnerd12c27c2010-01-05 06:09:35 +00001122
Duncan Sandsf24ed772011-05-02 16:27:02 +00001123 if (Value *V = SimplifyFRemInst(Op0, Op1, TD))
1124 return ReplaceInstUsesWith(I, V);
1125
1126 // Handle cases involving: rem X, (select Cond, Y, Z)
1127 if (isa<SelectInst>(Op1) && SimplifyDivRemOfSelect(I))
1128 return &I;
1129
1130 return 0;
1131}