blob: 3361a1e7fbe61990763f0bfe64b9817e52626f4b [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"
16#include "llvm/IntrinsicInst.h"
Duncan Sands82fdab32010-12-21 14:00:22 +000017#include "llvm/Analysis/InstructionSimplify.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;
31
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.
Chris Lattner6083bb92011-05-23 00:09:55 +000040 isPowerOfTwo(PowerOf2, IC.getTargetData())) {
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 }
44
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))
48 if (I->isLogicalShift() &&
49 isPowerOfTwo(I->getOperand(0), IC.getTargetData())) {
50 // We know that this is an exact/nuw shift and that the input is a
51 // non-zero context as well.
52 if (Value *V2 = simplifyValueKnownNonZero(I->getOperand(0), IC)) {
53 I->setOperand(0, V2);
54 MadeChange = true;
55 }
56
57 if (I->getOpcode() == Instruction::LShr && !I->isExact()) {
58 I->setIsExact();
59 MadeChange = true;
60 }
61
62 if (I->getOpcode() == Instruction::Shl && !I->hasNoUnsignedWrap()) {
63 I->setHasNoUnsignedWrap();
64 MadeChange = true;
65 }
66 }
67
Chris Lattner6c9b8d32011-05-22 18:26:48 +000068 // TODO: Lots more we could do here:
Chris Lattner6c9b8d32011-05-22 18:26:48 +000069 // If V is a phi node, we can call this on each of its operands.
70 // "select cond, X, 0" can simplify to "X".
71
Chris Lattner613f1a32011-05-23 00:32:19 +000072 return MadeChange ? V : 0;
Chris Lattner1add46d2011-05-22 18:18:41 +000073}
74
75
Chris Lattnerd12c27c2010-01-05 06:09:35 +000076/// MultiplyOverflows - True if the multiply can not be expressed in an int
77/// this size.
78static bool MultiplyOverflows(ConstantInt *C1, ConstantInt *C2, bool sign) {
79 uint32_t W = C1->getBitWidth();
80 APInt LHSExt = C1->getValue(), RHSExt = C2->getValue();
81 if (sign) {
Jay Foad40f8f622010-12-07 08:25:19 +000082 LHSExt = LHSExt.sext(W * 2);
83 RHSExt = RHSExt.sext(W * 2);
Chris Lattnerd12c27c2010-01-05 06:09:35 +000084 } else {
Jay Foad40f8f622010-12-07 08:25:19 +000085 LHSExt = LHSExt.zext(W * 2);
86 RHSExt = RHSExt.zext(W * 2);
Chris Lattnerd12c27c2010-01-05 06:09:35 +000087 }
88
89 APInt MulExt = LHSExt * RHSExt;
90
91 if (!sign)
92 return MulExt.ugt(APInt::getLowBitsSet(W * 2, W));
93
94 APInt Min = APInt::getSignedMinValue(W).sext(W * 2);
95 APInt Max = APInt::getSignedMaxValue(W).sext(W * 2);
96 return MulExt.slt(Min) || MulExt.sgt(Max);
97}
98
99Instruction *InstCombiner::visitMul(BinaryOperator &I) {
Duncan Sands096aa792010-11-13 15:10:37 +0000100 bool Changed = SimplifyAssociativeOrCommutative(I);
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000101 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
102
Duncan Sands82fdab32010-12-21 14:00:22 +0000103 if (Value *V = SimplifyMulInst(Op0, Op1, TD))
104 return ReplaceInstUsesWith(I, V);
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000105
Duncan Sands37bf92b2010-12-22 13:36:08 +0000106 if (Value *V = SimplifyUsingDistributiveLaws(I))
107 return ReplaceInstUsesWith(I, V);
108
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000109 if (match(Op1, m_AllOnes())) // X * -1 == 0 - X
110 return BinaryOperator::CreateNeg(Op0, I.getName());
111
112 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
113
114 // ((X << C1)*C2) == (X * (C2 << C1))
115 if (BinaryOperator *SI = dyn_cast<BinaryOperator>(Op0))
116 if (SI->getOpcode() == Instruction::Shl)
117 if (Constant *ShOp = dyn_cast<Constant>(SI->getOperand(1)))
118 return BinaryOperator::CreateMul(SI->getOperand(0),
119 ConstantExpr::getShl(CI, ShOp));
120
121 const APInt &Val = CI->getValue();
122 if (Val.isPowerOf2()) { // Replace X*(2^C) with X << C
123 Constant *NewCst = ConstantInt::get(Op0->getType(), Val.logBase2());
124 BinaryOperator *Shl = BinaryOperator::CreateShl(Op0, NewCst);
125 if (I.hasNoSignedWrap()) Shl->setHasNoSignedWrap();
126 if (I.hasNoUnsignedWrap()) Shl->setHasNoUnsignedWrap();
127 return Shl;
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000128 }
129
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000130 // Canonicalize (X+C1)*CI -> X*CI+C1*CI.
131 { Value *X; ConstantInt *C1;
132 if (Op0->hasOneUse() &&
133 match(Op0, m_Add(m_Value(X), m_ConstantInt(C1)))) {
Benjamin Kramera9390a42011-09-27 20:39:19 +0000134 Value *Add = Builder->CreateMul(X, CI);
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000135 return BinaryOperator::CreateAdd(Add, Builder->CreateMul(C1, CI));
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000136 }
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000137 }
Stuart Hastingsacbf1072011-05-30 20:00:33 +0000138
Stuart Hastingsf1002822011-06-01 16:42:47 +0000139 // (Y - X) * (-(2**n)) -> (X - Y) * (2**n), for positive nonzero n
140 // (Y + const) * (-(2**n)) -> (-constY) * (2**n), for positive nonzero n
141 // The "* (2**n)" thus becomes a potential shifting opportunity.
Stuart Hastingsacbf1072011-05-30 20:00:33 +0000142 {
143 const APInt & Val = CI->getValue();
144 const APInt &PosVal = Val.abs();
145 if (Val.isNegative() && PosVal.isPowerOf2()) {
Stuart Hastingsf1002822011-06-01 16:42:47 +0000146 Value *X = 0, *Y = 0;
147 if (Op0->hasOneUse()) {
148 ConstantInt *C1;
149 Value *Sub = 0;
150 if (match(Op0, m_Sub(m_Value(Y), m_Value(X))))
151 Sub = Builder->CreateSub(X, Y, "suba");
152 else if (match(Op0, m_Add(m_Value(Y), m_ConstantInt(C1))))
153 Sub = Builder->CreateSub(Builder->CreateNeg(C1), Y, "subc");
154 if (Sub)
155 return
156 BinaryOperator::CreateMul(Sub,
157 ConstantInt::get(Y->getType(), PosVal));
Stuart Hastingsacbf1072011-05-30 20:00:33 +0000158 }
159 }
160 }
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000161 }
162
163 // Simplify mul instructions with a constant RHS.
164 if (isa<Constant>(Op1)) {
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000165 // Try to fold constant mul into select arguments.
166 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
167 if (Instruction *R = FoldOpIntoSelect(I, SI))
168 return R;
169
170 if (isa<PHINode>(Op0))
171 if (Instruction *NV = FoldOpIntoPhi(I))
172 return NV;
173 }
174
175 if (Value *Op0v = dyn_castNegVal(Op0)) // -X * -Y = X*Y
176 if (Value *Op1v = dyn_castNegVal(Op1))
177 return BinaryOperator::CreateMul(Op0v, Op1v);
178
179 // (X / Y) * Y = X - (X % Y)
180 // (X / Y) * -Y = (X % Y) - X
181 {
182 Value *Op1C = Op1;
183 BinaryOperator *BO = dyn_cast<BinaryOperator>(Op0);
184 if (!BO ||
185 (BO->getOpcode() != Instruction::UDiv &&
186 BO->getOpcode() != Instruction::SDiv)) {
187 Op1C = Op0;
188 BO = dyn_cast<BinaryOperator>(Op1);
189 }
190 Value *Neg = dyn_castNegVal(Op1C);
191 if (BO && BO->hasOneUse() &&
192 (BO->getOperand(1) == Op1C || BO->getOperand(1) == Neg) &&
193 (BO->getOpcode() == Instruction::UDiv ||
194 BO->getOpcode() == Instruction::SDiv)) {
195 Value *Op0BO = BO->getOperand(0), *Op1BO = BO->getOperand(1);
196
Chris Lattner35bda892011-02-06 21:44:57 +0000197 // If the division is exact, X % Y is zero, so we end up with X or -X.
198 if (PossiblyExactOperator *SDiv = dyn_cast<PossiblyExactOperator>(BO))
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000199 if (SDiv->isExact()) {
200 if (Op1BO == Op1C)
201 return ReplaceInstUsesWith(I, Op0BO);
202 return BinaryOperator::CreateNeg(Op0BO);
203 }
204
205 Value *Rem;
206 if (BO->getOpcode() == Instruction::UDiv)
207 Rem = Builder->CreateURem(Op0BO, Op1BO);
208 else
209 Rem = Builder->CreateSRem(Op0BO, Op1BO);
210 Rem->takeName(BO);
211
212 if (Op1BO == Op1C)
213 return BinaryOperator::CreateSub(Op0BO, Rem);
214 return BinaryOperator::CreateSub(Rem, Op0BO);
215 }
216 }
217
218 /// i1 mul -> i1 and.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000219 if (I.getType()->isIntegerTy(1))
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000220 return BinaryOperator::CreateAnd(Op0, Op1);
221
222 // X*(1 << Y) --> X << Y
223 // (1 << Y)*X --> X << Y
224 {
225 Value *Y;
226 if (match(Op0, m_Shl(m_One(), m_Value(Y))))
227 return BinaryOperator::CreateShl(Op1, Y);
228 if (match(Op1, m_Shl(m_One(), m_Value(Y))))
229 return BinaryOperator::CreateShl(Op0, Y);
230 }
231
232 // If one of the operands of the multiply is a cast from a boolean value, then
233 // we know the bool is either zero or one, so this is a 'masking' multiply.
234 // X * Y (where Y is 0 or 1) -> X & (0-Y)
Duncan Sands1df98592010-02-16 11:11:14 +0000235 if (!I.getType()->isVectorTy()) {
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000236 // -2 is "-1 << 1" so it is all bits set except the low one.
237 APInt Negative2(I.getType()->getPrimitiveSizeInBits(), (uint64_t)-2, true);
238
239 Value *BoolCast = 0, *OtherOp = 0;
240 if (MaskedValueIsZero(Op0, Negative2))
241 BoolCast = Op0, OtherOp = Op1;
242 else if (MaskedValueIsZero(Op1, Negative2))
243 BoolCast = Op1, OtherOp = Op0;
244
245 if (BoolCast) {
246 Value *V = Builder->CreateSub(Constant::getNullValue(I.getType()),
Benjamin Kramera9390a42011-09-27 20:39:19 +0000247 BoolCast);
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000248 return BinaryOperator::CreateAnd(V, OtherOp);
249 }
250 }
251
252 return Changed ? &I : 0;
253}
254
255Instruction *InstCombiner::visitFMul(BinaryOperator &I) {
Duncan Sands096aa792010-11-13 15:10:37 +0000256 bool Changed = SimplifyAssociativeOrCommutative(I);
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000257 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
258
Chris Lattner7302d802012-02-06 21:56:39 +0000259 // Simplify mul instructions with a constant RHS.
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000260 if (Constant *Op1C = dyn_cast<Constant>(Op1)) {
261 if (ConstantFP *Op1F = dyn_cast<ConstantFP>(Op1C)) {
262 // "In IEEE floating point, x*1 is not equivalent to x for nans. However,
263 // ANSI says we can drop signals, so we can do this anyway." (from GCC)
264 if (Op1F->isExactlyValue(1.0))
Dan Gohmana9445e12010-03-02 01:11:08 +0000265 return ReplaceInstUsesWith(I, Op0); // Eliminate 'fmul double %X, 1.0'
Chris Lattner7302d802012-02-06 21:56:39 +0000266 } else if (ConstantDataVector *Op1V = dyn_cast<ConstantDataVector>(Op1C)) {
267 // As above, vector X*splat(1.0) -> X in all defined cases.
268 if (ConstantFP *F = dyn_cast_or_null<ConstantFP>(Op1V->getSplatValue()))
269 if (F->isExactlyValue(1.0))
270 return ReplaceInstUsesWith(I, Op0);
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000271 }
272
273 // Try to fold constant mul into select arguments.
274 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
275 if (Instruction *R = FoldOpIntoSelect(I, SI))
276 return R;
277
278 if (isa<PHINode>(Op0))
279 if (Instruction *NV = FoldOpIntoPhi(I))
280 return NV;
281 }
282
283 if (Value *Op0v = dyn_castFNegVal(Op0)) // -X * -Y = X*Y
284 if (Value *Op1v = dyn_castFNegVal(Op1))
285 return BinaryOperator::CreateFMul(Op0v, Op1v);
286
287 return Changed ? &I : 0;
288}
289
290/// SimplifyDivRemOfSelect - Try to fold a divide or remainder of a select
291/// instruction.
292bool InstCombiner::SimplifyDivRemOfSelect(BinaryOperator &I) {
293 SelectInst *SI = cast<SelectInst>(I.getOperand(1));
294
295 // div/rem X, (Cond ? 0 : Y) -> div/rem X, Y
296 int NonNullOperand = -1;
297 if (Constant *ST = dyn_cast<Constant>(SI->getOperand(1)))
298 if (ST->isNullValue())
299 NonNullOperand = 2;
300 // div/rem X, (Cond ? Y : 0) -> div/rem X, Y
301 if (Constant *ST = dyn_cast<Constant>(SI->getOperand(2)))
302 if (ST->isNullValue())
303 NonNullOperand = 1;
304
305 if (NonNullOperand == -1)
306 return false;
307
308 Value *SelectCond = SI->getOperand(0);
309
310 // Change the div/rem to use 'Y' instead of the select.
311 I.setOperand(1, SI->getOperand(NonNullOperand));
312
313 // Okay, we know we replace the operand of the div/rem with 'Y' with no
314 // problem. However, the select, or the condition of the select may have
315 // multiple uses. Based on our knowledge that the operand must be non-zero,
316 // propagate the known value for the select into other uses of it, and
317 // propagate a known value of the condition into its other users.
318
319 // If the select and condition only have a single use, don't bother with this,
320 // early exit.
321 if (SI->use_empty() && SelectCond->hasOneUse())
322 return true;
323
324 // Scan the current block backward, looking for other uses of SI.
325 BasicBlock::iterator BBI = &I, BBFront = I.getParent()->begin();
326
327 while (BBI != BBFront) {
328 --BBI;
329 // If we found a call to a function, we can't assume it will return, so
330 // information from below it cannot be propagated above it.
331 if (isa<CallInst>(BBI) && !isa<IntrinsicInst>(BBI))
332 break;
333
334 // Replace uses of the select or its condition with the known values.
335 for (Instruction::op_iterator I = BBI->op_begin(), E = BBI->op_end();
336 I != E; ++I) {
337 if (*I == SI) {
338 *I = SI->getOperand(NonNullOperand);
339 Worklist.Add(BBI);
340 } else if (*I == SelectCond) {
341 *I = NonNullOperand == 1 ? ConstantInt::getTrue(BBI->getContext()) :
342 ConstantInt::getFalse(BBI->getContext());
343 Worklist.Add(BBI);
344 }
345 }
346
347 // If we past the instruction, quit looking for it.
348 if (&*BBI == SI)
349 SI = 0;
350 if (&*BBI == SelectCond)
351 SelectCond = 0;
352
353 // If we ran out of things to eliminate, break out of the loop.
354 if (SelectCond == 0 && SI == 0)
355 break;
356
357 }
358 return true;
359}
360
361
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000362/// This function implements the transforms common to both integer division
363/// instructions (udiv and sdiv). It is called by the visitors to those integer
364/// division instructions.
365/// @brief Common integer divide transforms
366Instruction *InstCombiner::commonIDivTransforms(BinaryOperator &I) {
367 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
368
Chris Lattner1add46d2011-05-22 18:18:41 +0000369 // The RHS is known non-zero.
370 if (Value *V = simplifyValueKnownNonZero(I.getOperand(1), *this)) {
371 I.setOperand(1, V);
372 return &I;
373 }
374
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000375 // Handle cases involving: [su]div X, (select Cond, Y, Z)
376 // This does not apply for fdiv.
377 if (isa<SelectInst>(Op1) && SimplifyDivRemOfSelect(I))
378 return &I;
379
380 if (ConstantInt *RHS = dyn_cast<ConstantInt>(Op1)) {
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000381 // (X / C1) / C2 -> X / (C1*C2)
382 if (Instruction *LHS = dyn_cast<Instruction>(Op0))
383 if (Instruction::BinaryOps(LHS->getOpcode()) == I.getOpcode())
384 if (ConstantInt *LHSRHS = dyn_cast<ConstantInt>(LHS->getOperand(1))) {
385 if (MultiplyOverflows(RHS, LHSRHS,
386 I.getOpcode()==Instruction::SDiv))
387 return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000388 return BinaryOperator::Create(I.getOpcode(), LHS->getOperand(0),
389 ConstantExpr::getMul(RHS, LHSRHS));
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000390 }
391
392 if (!RHS->isZero()) { // avoid X udiv 0
393 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
394 if (Instruction *R = FoldOpIntoSelect(I, SI))
395 return R;
396 if (isa<PHINode>(Op0))
397 if (Instruction *NV = FoldOpIntoPhi(I))
398 return NV;
399 }
400 }
401
Benjamin Kramer23b02cd2011-04-30 18:16:00 +0000402 // See if we can fold away this div instruction.
403 if (SimplifyDemandedInstructionBits(I))
404 return &I;
405
Duncan Sands593faa52011-01-28 16:51:11 +0000406 // (X - (X rem Y)) / Y -> X / Y; usually originates as ((X / Y) * Y) / Y
407 Value *X = 0, *Z = 0;
408 if (match(Op0, m_Sub(m_Value(X), m_Value(Z)))) { // (X - Z) / Y; Y = Op1
409 bool isSigned = I.getOpcode() == Instruction::SDiv;
410 if ((isSigned && match(Z, m_SRem(m_Specific(X), m_Specific(Op1)))) ||
411 (!isSigned && match(Z, m_URem(m_Specific(X), m_Specific(Op1)))))
412 return BinaryOperator::Create(I.getOpcode(), X, Op1);
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000413 }
414
415 return 0;
416}
417
Benjamin Kramer7d6eb5a2011-04-30 18:16:07 +0000418/// dyn_castZExtVal - Checks if V is a zext or constant that can
419/// be truncated to Ty without losing bits.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000420static Value *dyn_castZExtVal(Value *V, Type *Ty) {
Benjamin Kramer7d6eb5a2011-04-30 18:16:07 +0000421 if (ZExtInst *Z = dyn_cast<ZExtInst>(V)) {
422 if (Z->getSrcTy() == Ty)
423 return Z->getOperand(0);
424 } else if (ConstantInt *C = dyn_cast<ConstantInt>(V)) {
425 if (C->getValue().getActiveBits() <= cast<IntegerType>(Ty)->getBitWidth())
426 return ConstantExpr::getTrunc(C, Ty);
427 }
428 return 0;
429}
430
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000431Instruction *InstCombiner::visitUDiv(BinaryOperator &I) {
432 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
433
Duncan Sands593faa52011-01-28 16:51:11 +0000434 if (Value *V = SimplifyUDivInst(Op0, Op1, TD))
435 return ReplaceInstUsesWith(I, V);
436
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000437 // Handle the integer div common cases
438 if (Instruction *Common = commonIDivTransforms(I))
439 return Common;
Pete Coopera29fc802011-11-07 23:04:49 +0000440
441 {
Owen Anderson5b396202010-01-17 06:49:03 +0000442 // X udiv 2^C -> X >> C
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000443 // Check to see if this is an unsigned division with an exact power of 2,
444 // if so, convert to a right shift.
Pete Coopera29fc802011-11-07 23:04:49 +0000445 const APInt *C;
446 if (match(Op1, m_Power2(C))) {
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000447 BinaryOperator *LShr =
Pete Coopera29fc802011-11-07 23:04:49 +0000448 BinaryOperator::CreateLShr(Op0,
449 ConstantInt::get(Op0->getType(),
450 C->logBase2()));
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000451 if (I.isExact()) LShr->setIsExact();
452 return LShr;
453 }
Pete Coopera29fc802011-11-07 23:04:49 +0000454 }
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000455
Pete Coopera29fc802011-11-07 23:04:49 +0000456 if (ConstantInt *C = dyn_cast<ConstantInt>(Op1)) {
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000457 // X udiv C, where C >= signbit
458 if (C->getValue().isNegative()) {
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000459 Value *IC = Builder->CreateICmpULT(Op0, C);
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000460 return SelectInst::Create(IC, Constant::getNullValue(I.getType()),
461 ConstantInt::get(I.getType(), 1));
462 }
463 }
464
Benjamin Kramerc81fe9c2012-08-30 15:07:40 +0000465 // (x lshr C1) udiv C2 --> x udiv (C2 << C1)
Nadav Rotema694e2a2012-08-28 12:23:22 +0000466 if (ConstantInt *C2 = dyn_cast<ConstantInt>(Op1)) {
Benjamin Krameraac7c652012-08-28 13:08:13 +0000467 Value *X;
468 ConstantInt *C1;
469 if (match(Op0, m_LShr(m_Value(X), m_ConstantInt(C1)))) {
Benjamin Kramer37dca632012-08-28 13:59:23 +0000470 APInt NC = C2->getValue().shl(C1->getLimitedValue(C1->getBitWidth()-1));
Benjamin Krameraac7c652012-08-28 13:08:13 +0000471 return BinaryOperator::CreateUDiv(X, Builder->getInt(NC));
Nadav Rotem9753f0b2012-08-28 10:01:43 +0000472 }
473 }
474
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000475 // X udiv (C1 << N), where C1 is "1<<C2" --> X >> (N+C2)
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000476 { const APInt *CI; Value *N;
Evan Cheng2a5422b2012-06-21 22:52:49 +0000477 if (match(Op1, m_Shl(m_Power2(CI), m_Value(N))) ||
478 match(Op1, m_ZExt(m_Shl(m_Power2(CI), m_Value(N))))) {
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000479 if (*CI != 1)
Benjamin Kramere5bd3cf2012-09-21 16:26:41 +0000480 N = Builder->CreateAdd(N,
481 ConstantInt::get(N->getType(), CI->logBase2()));
Evan Cheng2a5422b2012-06-21 22:52:49 +0000482 if (ZExtInst *Z = dyn_cast<ZExtInst>(Op1))
483 N = Builder->CreateZExt(N, Z->getDestTy());
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000484 if (I.isExact())
485 return BinaryOperator::CreateExactLShr(Op0, N);
486 return BinaryOperator::CreateLShr(Op0, N);
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000487 }
488 }
489
490 // udiv X, (Select Cond, C1, C2) --> Select Cond, (shr X, C1), (shr X, C2)
491 // where C1&C2 are powers of two.
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000492 { Value *Cond; const APInt *C1, *C2;
493 if (match(Op1, m_Select(m_Value(Cond), m_Power2(C1), m_Power2(C2)))) {
494 // Construct the "on true" case of the select
495 Value *TSI = Builder->CreateLShr(Op0, C1->logBase2(), Op1->getName()+".t",
496 I.isExact());
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000497
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000498 // Construct the "on false" case of the select
499 Value *FSI = Builder->CreateLShr(Op0, C2->logBase2(), Op1->getName()+".f",
500 I.isExact());
501
502 // construct the select instruction and return it.
503 return SelectInst::Create(Cond, TSI, FSI);
504 }
505 }
Benjamin Kramer7d6eb5a2011-04-30 18:16:07 +0000506
507 // (zext A) udiv (zext B) --> zext (A udiv B)
508 if (ZExtInst *ZOp0 = dyn_cast<ZExtInst>(Op0))
509 if (Value *ZOp1 = dyn_castZExtVal(Op1, ZOp0->getSrcTy()))
510 return new ZExtInst(Builder->CreateUDiv(ZOp0->getOperand(0), ZOp1, "div",
511 I.isExact()),
512 I.getType());
513
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000514 return 0;
515}
516
517Instruction *InstCombiner::visitSDiv(BinaryOperator &I) {
518 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
519
Duncan Sands593faa52011-01-28 16:51:11 +0000520 if (Value *V = SimplifySDivInst(Op0, Op1, TD))
521 return ReplaceInstUsesWith(I, V);
522
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000523 // Handle the integer div common cases
524 if (Instruction *Common = commonIDivTransforms(I))
525 return Common;
526
527 if (ConstantInt *RHS = dyn_cast<ConstantInt>(Op1)) {
528 // sdiv X, -1 == -X
529 if (RHS->isAllOnesValue())
530 return BinaryOperator::CreateNeg(Op0);
531
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000532 // sdiv X, C --> ashr exact X, log2(C)
533 if (I.isExact() && RHS->getValue().isNonNegative() &&
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000534 RHS->getValue().isPowerOf2()) {
535 Value *ShAmt = llvm::ConstantInt::get(RHS->getType(),
536 RHS->getValue().exactLogBase2());
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000537 return BinaryOperator::CreateExactAShr(Op0, ShAmt, I.getName());
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000538 }
539
540 // -X/C --> X/-C provided the negation doesn't overflow.
541 if (SubOperator *Sub = dyn_cast<SubOperator>(Op0))
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000542 if (match(Sub->getOperand(0), m_Zero()) && Sub->hasNoSignedWrap())
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000543 return BinaryOperator::CreateSDiv(Sub->getOperand(1),
544 ConstantExpr::getNeg(RHS));
545 }
546
547 // If the sign bits of both operands are zero (i.e. we can prove they are
548 // unsigned inputs), turn this into a udiv.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000549 if (I.getType()->isIntegerTy()) {
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000550 APInt Mask(APInt::getSignBit(I.getType()->getPrimitiveSizeInBits()));
551 if (MaskedValueIsZero(Op0, Mask)) {
552 if (MaskedValueIsZero(Op1, Mask)) {
553 // X sdiv Y -> X udiv Y, iff X and Y don't have sign bit set
554 return BinaryOperator::CreateUDiv(Op0, Op1, I.getName());
555 }
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000556
557 if (match(Op1, m_Shl(m_Power2(), m_Value()))) {
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000558 // X sdiv (1 << Y) -> X udiv (1 << Y) ( -> X u>> Y)
559 // Safe because the only negative value (1 << Y) can take on is
560 // INT_MIN, and X sdiv INT_MIN == X udiv INT_MIN == 0 if X doesn't have
561 // the sign bit set.
562 return BinaryOperator::CreateUDiv(Op0, Op1, I.getName());
563 }
564 }
565 }
566
567 return 0;
568}
569
Frits van Bommel31726c12011-01-29 17:50:27 +0000570Instruction *InstCombiner::visitFDiv(BinaryOperator &I) {
571 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
572
573 if (Value *V = SimplifyFDivInst(Op0, Op1, TD))
574 return ReplaceInstUsesWith(I, V);
575
Benjamin Kramer54673962011-03-30 15:42:35 +0000576 if (ConstantFP *Op1C = dyn_cast<ConstantFP>(Op1)) {
577 const APFloat &Op1F = Op1C->getValueAPF();
578
579 // If the divisor has an exact multiplicative inverse we can turn the fdiv
580 // into a cheaper fmul.
581 APFloat Reciprocal(Op1F.getSemantics());
582 if (Op1F.getExactInverse(&Reciprocal)) {
583 ConstantFP *RFP = ConstantFP::get(Builder->getContext(), Reciprocal);
584 return BinaryOperator::CreateFMul(Op0, RFP);
585 }
586 }
587
Frits van Bommel31726c12011-01-29 17:50:27 +0000588 return 0;
589}
590
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000591/// This function implements the transforms common to both integer remainder
592/// instructions (urem and srem). It is called by the visitors to those integer
593/// remainder instructions.
594/// @brief Common integer remainder transforms
595Instruction *InstCombiner::commonIRemTransforms(BinaryOperator &I) {
596 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
597
Chris Lattner1add46d2011-05-22 18:18:41 +0000598 // The RHS is known non-zero.
599 if (Value *V = simplifyValueKnownNonZero(I.getOperand(1), *this)) {
600 I.setOperand(1, V);
601 return &I;
602 }
603
Duncan Sandsf24ed772011-05-02 16:27:02 +0000604 // Handle cases involving: rem X, (select Cond, Y, Z)
605 if (isa<SelectInst>(Op1) && SimplifyDivRemOfSelect(I))
606 return &I;
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000607
Duncan Sands00676a62011-05-02 18:41:29 +0000608 if (isa<ConstantInt>(Op1)) {
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000609 if (Instruction *Op0I = dyn_cast<Instruction>(Op0)) {
610 if (SelectInst *SI = dyn_cast<SelectInst>(Op0I)) {
611 if (Instruction *R = FoldOpIntoSelect(I, SI))
612 return R;
613 } else if (isa<PHINode>(Op0I)) {
614 if (Instruction *NV = FoldOpIntoPhi(I))
615 return NV;
616 }
617
618 // See if we can fold away this rem instruction.
619 if (SimplifyDemandedInstructionBits(I))
620 return &I;
621 }
622 }
623
624 return 0;
625}
626
627Instruction *InstCombiner::visitURem(BinaryOperator &I) {
628 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
629
Duncan Sandsf24ed772011-05-02 16:27:02 +0000630 if (Value *V = SimplifyURemInst(Op0, Op1, TD))
631 return ReplaceInstUsesWith(I, V);
632
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000633 if (Instruction *common = commonIRemTransforms(I))
634 return common;
635
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000636 // X urem C^2 -> X and C-1
637 { const APInt *C;
638 if (match(Op1, m_Power2(C)))
639 return BinaryOperator::CreateAnd(Op0,
640 ConstantInt::get(I.getType(), *C-1));
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000641 }
642
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000643 // Turn A % (C << N), where C is 2^k, into A & ((C << N)-1)
644 if (match(Op1, m_Shl(m_Power2(), m_Value()))) {
645 Constant *N1 = Constant::getAllOnesValue(I.getType());
Benjamin Kramera9390a42011-09-27 20:39:19 +0000646 Value *Add = Builder->CreateAdd(Op1, N1);
Chris Lattner7a6aa1a2011-02-10 05:36:31 +0000647 return BinaryOperator::CreateAnd(Op0, Add);
648 }
649
650 // urem X, (select Cond, 2^C1, 2^C2) -->
651 // select Cond, (and X, C1-1), (and X, C2-1)
652 // when C1&C2 are powers of two.
653 { Value *Cond; const APInt *C1, *C2;
654 if (match(Op1, m_Select(m_Value(Cond), m_Power2(C1), m_Power2(C2)))) {
655 Value *TrueAnd = Builder->CreateAnd(Op0, *C1-1, Op1->getName()+".t");
656 Value *FalseAnd = Builder->CreateAnd(Op0, *C2-1, Op1->getName()+".f");
657 return SelectInst::Create(Cond, TrueAnd, FalseAnd);
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000658 }
659 }
Benjamin Kramer7d6eb5a2011-04-30 18:16:07 +0000660
661 // (zext A) urem (zext B) --> zext (A urem B)
662 if (ZExtInst *ZOp0 = dyn_cast<ZExtInst>(Op0))
663 if (Value *ZOp1 = dyn_castZExtVal(Op1, ZOp0->getSrcTy()))
664 return new ZExtInst(Builder->CreateURem(ZOp0->getOperand(0), ZOp1),
665 I.getType());
666
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000667 return 0;
668}
669
670Instruction *InstCombiner::visitSRem(BinaryOperator &I) {
671 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
672
Duncan Sandsf24ed772011-05-02 16:27:02 +0000673 if (Value *V = SimplifySRemInst(Op0, Op1, TD))
674 return ReplaceInstUsesWith(I, V);
675
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000676 // Handle the integer rem common cases
677 if (Instruction *Common = commonIRemTransforms(I))
678 return Common;
679
680 if (Value *RHSNeg = dyn_castNegVal(Op1))
681 if (!isa<Constant>(RHSNeg) ||
682 (isa<ConstantInt>(RHSNeg) &&
683 cast<ConstantInt>(RHSNeg)->getValue().isStrictlyPositive())) {
684 // X % -Y -> X % Y
685 Worklist.AddValue(I.getOperand(1));
686 I.setOperand(1, RHSNeg);
687 return &I;
688 }
689
690 // If the sign bits of both operands are zero (i.e. we can prove they are
691 // unsigned inputs), turn this into a urem.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000692 if (I.getType()->isIntegerTy()) {
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000693 APInt Mask(APInt::getSignBit(I.getType()->getPrimitiveSizeInBits()));
694 if (MaskedValueIsZero(Op1, Mask) && MaskedValueIsZero(Op0, Mask)) {
695 // X srem Y -> X urem Y, iff X and Y don't have sign bit set
696 return BinaryOperator::CreateURem(Op0, Op1, I.getName());
697 }
698 }
699
700 // If it's a constant vector, flip any negative values positive.
Chris Lattnera78fa8c2012-01-27 03:08:05 +0000701 if (isa<ConstantVector>(Op1) || isa<ConstantDataVector>(Op1)) {
702 Constant *C = cast<Constant>(Op1);
703 unsigned VWidth = C->getType()->getVectorNumElements();
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000704
705 bool hasNegative = false;
Chris Lattnera78fa8c2012-01-27 03:08:05 +0000706 bool hasMissing = false;
707 for (unsigned i = 0; i != VWidth; ++i) {
708 Constant *Elt = C->getAggregateElement(i);
709 if (Elt == 0) {
710 hasMissing = true;
711 break;
712 }
713
714 if (ConstantInt *RHS = dyn_cast<ConstantInt>(Elt))
Chris Lattnerc73b24d2011-07-15 06:08:15 +0000715 if (RHS->isNegative())
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000716 hasNegative = true;
Chris Lattnera78fa8c2012-01-27 03:08:05 +0000717 }
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000718
Chris Lattnera78fa8c2012-01-27 03:08:05 +0000719 if (hasNegative && !hasMissing) {
Chris Lattner4ca829e2012-01-25 06:02:56 +0000720 SmallVector<Constant *, 16> Elts(VWidth);
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000721 for (unsigned i = 0; i != VWidth; ++i) {
Chris Lattner7302d802012-02-06 21:56:39 +0000722 Elts[i] = C->getAggregateElement(i); // Handle undef, etc.
Chris Lattnera78fa8c2012-01-27 03:08:05 +0000723 if (ConstantInt *RHS = dyn_cast<ConstantInt>(Elts[i])) {
Chris Lattnerc73b24d2011-07-15 06:08:15 +0000724 if (RHS->isNegative())
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000725 Elts[i] = cast<ConstantInt>(ConstantExpr::getNeg(RHS));
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000726 }
727 }
728
729 Constant *NewRHSV = ConstantVector::get(Elts);
Chris Lattnera78fa8c2012-01-27 03:08:05 +0000730 if (NewRHSV != C) { // Don't loop on -MININT
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000731 Worklist.AddValue(I.getOperand(1));
732 I.setOperand(1, NewRHSV);
733 return &I;
734 }
735 }
736 }
737
738 return 0;
739}
740
741Instruction *InstCombiner::visitFRem(BinaryOperator &I) {
Duncan Sandsf24ed772011-05-02 16:27:02 +0000742 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Chris Lattnerd12c27c2010-01-05 06:09:35 +0000743
Duncan Sandsf24ed772011-05-02 16:27:02 +0000744 if (Value *V = SimplifyFRemInst(Op0, Op1, TD))
745 return ReplaceInstUsesWith(I, V);
746
747 // Handle cases involving: rem X, (select Cond, Y, Z)
748 if (isa<SelectInst>(Op1) && SimplifyDivRemOfSelect(I))
749 return &I;
750
751 return 0;
752}