Rename isPowerOfTwo to isKnownToBeAPowerOfTwo.
[oota-llvm.git] / lib / Transforms / InstCombine / InstCombineMulDivRem.cpp
1 //===- 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/Analysis/InstructionSimplify.h"
17 #include "llvm/IntrinsicInst.h"
18 #include "llvm/Support/PatternMatch.h"
19 using namespace llvm;
20 using namespace PatternMatch;
21
22
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.
26 static 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   
32   bool MadeChange = false;
33
34   // ((1 << A) >>u B) --> (1 << (A-B))
35   // Because V cannot be zero, we know that B is less than A.
36   Value *A = 0, *B = 0, *PowerOf2 = 0;
37   if (match(V, m_LShr(m_OneUse(m_Shl(m_Value(PowerOf2), m_Value(A))),
38                       m_Value(B))) &&
39       // The "1" can be any value known to be a power of 2.
40       isKnownToBeAPowerOfTwo(PowerOf2)) {
41     A = IC.Builder->CreateSub(A, B);
42     return IC.Builder->CreateShl(PowerOf2, A);
43   }
44   
45   // (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() && isKnownToBeAPowerOfTwo(I->getOperand(0))) {
49       // 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       }
55       
56       if (I->getOpcode() == Instruction::LShr && !I->isExact()) {
57         I->setIsExact();
58         MadeChange = true;
59       }
60       
61       if (I->getOpcode() == Instruction::Shl && !I->hasNoUnsignedWrap()) {
62         I->setHasNoUnsignedWrap();
63         MadeChange = true;
64       }
65     }
66
67   // TODO: Lots more we could do here:
68   //    If V is a phi node, we can call this on each of its operands.
69   //    "select cond, X, 0" can simplify to "X".
70   
71   return MadeChange ? V : 0;
72 }
73
74
75 /// MultiplyOverflows - True if the multiply can not be expressed in an int
76 /// this size.
77 static 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) {
81     LHSExt = LHSExt.sext(W * 2);
82     RHSExt = RHSExt.sext(W * 2);
83   } else {
84     LHSExt = LHSExt.zext(W * 2);
85     RHSExt = RHSExt.zext(W * 2);
86   }
87   
88   APInt MulExt = LHSExt * RHSExt;
89   
90   if (!sign)
91     return MulExt.ugt(APInt::getLowBitsSet(W * 2, W));
92   
93   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
98 Instruction *InstCombiner::visitMul(BinaryOperator &I) {
99   bool Changed = SimplifyAssociativeOrCommutative(I);
100   Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
101
102   if (Value *V = SimplifyMulInst(Op0, Op1, TD))
103     return ReplaceInstUsesWith(I, V);
104
105   if (Value *V = SimplifyUsingDistributiveLaws(I))
106     return ReplaceInstUsesWith(I, V);
107
108   if (match(Op1, m_AllOnes()))  // X * -1 == 0 - X
109     return BinaryOperator::CreateNeg(Op0, I.getName());
110   
111   if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
112     
113     // ((X << C1)*C2) == (X * (C2 << C1))
114     if (BinaryOperator *SI = dyn_cast<BinaryOperator>(Op0))
115       if (SI->getOpcode() == Instruction::Shl)
116         if (Constant *ShOp = dyn_cast<Constant>(SI->getOperand(1)))
117           return BinaryOperator::CreateMul(SI->getOperand(0),
118                                            ConstantExpr::getShl(CI, ShOp));
119     
120     const APInt &Val = CI->getValue();
121     if (Val.isPowerOf2()) {          // Replace X*(2^C) with X << C
122       Constant *NewCst = ConstantInt::get(Op0->getType(), Val.logBase2());
123       BinaryOperator *Shl = BinaryOperator::CreateShl(Op0, NewCst);
124       if (I.hasNoSignedWrap()) Shl->setHasNoSignedWrap();
125       if (I.hasNoUnsignedWrap()) Shl->setHasNoUnsignedWrap();
126       return Shl;
127     }
128     
129     // Canonicalize (X+C1)*CI -> X*CI+C1*CI.
130     { Value *X; ConstantInt *C1;
131       if (Op0->hasOneUse() &&
132           match(Op0, m_Add(m_Value(X), m_ConstantInt(C1)))) {
133         Value *Add = Builder->CreateMul(X, CI);
134         return BinaryOperator::CreateAdd(Add, Builder->CreateMul(C1, CI));
135       }
136     }
137
138     // (Y - X) * (-(2**n)) -> (X - Y) * (2**n), for positive nonzero n
139     // (Y + const) * (-(2**n)) -> (-constY) * (2**n), for positive nonzero n
140     // The "* (2**n)" thus becomes a potential shifting opportunity.
141     {
142       const APInt &   Val = CI->getValue();
143       const APInt &PosVal = Val.abs();
144       if (Val.isNegative() && PosVal.isPowerOf2()) {
145         Value *X = 0, *Y = 0;
146         if (Op0->hasOneUse()) {
147           ConstantInt *C1;
148           Value *Sub = 0;
149           if (match(Op0, m_Sub(m_Value(Y), m_Value(X))))
150             Sub = Builder->CreateSub(X, Y, "suba");
151           else if (match(Op0, m_Add(m_Value(Y), m_ConstantInt(C1))))
152             Sub = Builder->CreateSub(Builder->CreateNeg(C1), Y, "subc");
153           if (Sub)
154             return
155               BinaryOperator::CreateMul(Sub,
156                                         ConstantInt::get(Y->getType(), PosVal));
157         }
158       }
159     }
160   }
161   
162   // Simplify mul instructions with a constant RHS.
163   if (isa<Constant>(Op1)) {    
164     // Try to fold constant mul into select arguments.
165     if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
166       if (Instruction *R = FoldOpIntoSelect(I, SI))
167         return R;
168
169     if (isa<PHINode>(Op0))
170       if (Instruction *NV = FoldOpIntoPhi(I))
171         return NV;
172   }
173
174   if (Value *Op0v = dyn_castNegVal(Op0))     // -X * -Y = X*Y
175     if (Value *Op1v = dyn_castNegVal(Op1))
176       return BinaryOperator::CreateMul(Op0v, Op1v);
177
178   // (X / Y) *  Y = X - (X % Y)
179   // (X / Y) * -Y = (X % Y) - X
180   {
181     Value *Op1C = Op1;
182     BinaryOperator *BO = dyn_cast<BinaryOperator>(Op0);
183     if (!BO ||
184         (BO->getOpcode() != Instruction::UDiv && 
185          BO->getOpcode() != Instruction::SDiv)) {
186       Op1C = Op0;
187       BO = dyn_cast<BinaryOperator>(Op1);
188     }
189     Value *Neg = dyn_castNegVal(Op1C);
190     if (BO && BO->hasOneUse() &&
191         (BO->getOperand(1) == Op1C || BO->getOperand(1) == Neg) &&
192         (BO->getOpcode() == Instruction::UDiv ||
193          BO->getOpcode() == Instruction::SDiv)) {
194       Value *Op0BO = BO->getOperand(0), *Op1BO = BO->getOperand(1);
195
196       // If the division is exact, X % Y is zero, so we end up with X or -X.
197       if (PossiblyExactOperator *SDiv = dyn_cast<PossiblyExactOperator>(BO))
198         if (SDiv->isExact()) {
199           if (Op1BO == Op1C)
200             return ReplaceInstUsesWith(I, Op0BO);
201           return BinaryOperator::CreateNeg(Op0BO);
202         }
203
204       Value *Rem;
205       if (BO->getOpcode() == Instruction::UDiv)
206         Rem = Builder->CreateURem(Op0BO, Op1BO);
207       else
208         Rem = Builder->CreateSRem(Op0BO, Op1BO);
209       Rem->takeName(BO);
210
211       if (Op1BO == Op1C)
212         return BinaryOperator::CreateSub(Op0BO, Rem);
213       return BinaryOperator::CreateSub(Rem, Op0BO);
214     }
215   }
216
217   /// i1 mul -> i1 and.
218   if (I.getType()->isIntegerTy(1))
219     return BinaryOperator::CreateAnd(Op0, Op1);
220
221   // X*(1 << Y) --> X << Y
222   // (1 << Y)*X --> X << Y
223   {
224     Value *Y;
225     if (match(Op0, m_Shl(m_One(), m_Value(Y))))
226       return BinaryOperator::CreateShl(Op1, Y);
227     if (match(Op1, m_Shl(m_One(), m_Value(Y))))
228       return BinaryOperator::CreateShl(Op0, Y);
229   }
230   
231   // If one of the operands of the multiply is a cast from a boolean value, then
232   // we know the bool is either zero or one, so this is a 'masking' multiply.
233   //   X * Y (where Y is 0 or 1) -> X & (0-Y)
234   if (!I.getType()->isVectorTy()) {
235     // -2 is "-1 << 1" so it is all bits set except the low one.
236     APInt Negative2(I.getType()->getPrimitiveSizeInBits(), (uint64_t)-2, true);
237     
238     Value *BoolCast = 0, *OtherOp = 0;
239     if (MaskedValueIsZero(Op0, Negative2))
240       BoolCast = Op0, OtherOp = Op1;
241     else if (MaskedValueIsZero(Op1, Negative2))
242       BoolCast = Op1, OtherOp = Op0;
243
244     if (BoolCast) {
245       Value *V = Builder->CreateSub(Constant::getNullValue(I.getType()),
246                                     BoolCast);
247       return BinaryOperator::CreateAnd(V, OtherOp);
248     }
249   }
250
251   return Changed ? &I : 0;
252 }
253
254 //
255 // Detect pattern:
256 //
257 // log2(Y*0.5)
258 //
259 // And check for corresponding fast math flags
260 //
261
262 static void detectLog2OfHalf(Value *&Op, Value *&Y, IntrinsicInst *&Log2) {
263
264    if (!Op->hasOneUse())
265      return;
266
267    IntrinsicInst *II = dyn_cast<IntrinsicInst>(Op);
268    if (!II)
269      return;
270    if (II->getIntrinsicID() != Intrinsic::log2 || !II->hasUnsafeAlgebra())
271      return;
272    Log2 = II;
273
274    Value *OpLog2Of = II->getArgOperand(0);
275    if (!OpLog2Of->hasOneUse())
276      return;
277
278    Instruction *I = dyn_cast<Instruction>(OpLog2Of);
279    if (!I)
280      return;
281    if (I->getOpcode() != Instruction::FMul || !I->hasUnsafeAlgebra())
282      return;
283               
284    ConstantFP *CFP = dyn_cast<ConstantFP>(I->getOperand(0));
285    if (CFP && CFP->isExactlyValue(0.5)) {
286      Y = I->getOperand(1);
287      return;
288    }
289    CFP = dyn_cast<ConstantFP>(I->getOperand(1));
290    if (CFP && CFP->isExactlyValue(0.5))
291      Y = I->getOperand(0);
292
293
294 Instruction *InstCombiner::visitFMul(BinaryOperator &I) {
295   bool Changed = SimplifyAssociativeOrCommutative(I);
296   Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
297
298   if (Value *V = SimplifyFMulInst(Op0, Op1, I.getFastMathFlags(), TD))
299     return ReplaceInstUsesWith(I, V);
300
301   // Simplify mul instructions with a constant RHS.
302   if (isa<Constant>(Op1)) {
303     // Try to fold constant mul into select arguments.
304     if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
305       if (Instruction *R = FoldOpIntoSelect(I, SI))
306         return R;
307
308     if (isa<PHINode>(Op0))
309       if (Instruction *NV = FoldOpIntoPhi(I))
310         return NV;
311   }
312
313   if (Value *Op0v = dyn_castFNegVal(Op0))     // -X * -Y = X*Y
314     if (Value *Op1v = dyn_castFNegVal(Op1))
315       return BinaryOperator::CreateFMul(Op0v, Op1v);
316
317   // Under unsafe algebra do:
318   // X * log2(0.5*Y) = X*log2(Y) - X
319   if (I.hasUnsafeAlgebra()) {
320     Value *OpX = NULL;
321     Value *OpY = NULL;
322     IntrinsicInst *Log2;
323     detectLog2OfHalf(Op0, OpY, Log2);
324     if (OpY) {
325       OpX = Op1;
326     } else {
327       detectLog2OfHalf(Op1, OpY, Log2);
328       if (OpY) {
329         OpX = Op0;
330       }
331     }
332     // if pattern detected emit alternate sequence
333     if (OpX && OpY) {
334       Log2->setArgOperand(0, OpY);
335       Value *FMulVal = Builder->CreateFMul(OpX, Log2);
336       Instruction *FMul = cast<Instruction>(FMulVal);
337       FMul->copyFastMathFlags(Log2);
338       Instruction *FSub = BinaryOperator::CreateFSub(FMulVal, OpX);
339       FSub->copyFastMathFlags(Log2);
340       return FSub;
341     }
342   }
343
344   return Changed ? &I : 0;
345 }
346
347 /// SimplifyDivRemOfSelect - Try to fold a divide or remainder of a select
348 /// instruction.
349 bool InstCombiner::SimplifyDivRemOfSelect(BinaryOperator &I) {
350   SelectInst *SI = cast<SelectInst>(I.getOperand(1));
351   
352   // div/rem X, (Cond ? 0 : Y) -> div/rem X, Y
353   int NonNullOperand = -1;
354   if (Constant *ST = dyn_cast<Constant>(SI->getOperand(1)))
355     if (ST->isNullValue())
356       NonNullOperand = 2;
357   // div/rem X, (Cond ? Y : 0) -> div/rem X, Y
358   if (Constant *ST = dyn_cast<Constant>(SI->getOperand(2)))
359     if (ST->isNullValue())
360       NonNullOperand = 1;
361   
362   if (NonNullOperand == -1)
363     return false;
364   
365   Value *SelectCond = SI->getOperand(0);
366   
367   // Change the div/rem to use 'Y' instead of the select.
368   I.setOperand(1, SI->getOperand(NonNullOperand));
369   
370   // Okay, we know we replace the operand of the div/rem with 'Y' with no
371   // problem.  However, the select, or the condition of the select may have
372   // multiple uses.  Based on our knowledge that the operand must be non-zero,
373   // propagate the known value for the select into other uses of it, and
374   // propagate a known value of the condition into its other users.
375   
376   // If the select and condition only have a single use, don't bother with this,
377   // early exit.
378   if (SI->use_empty() && SelectCond->hasOneUse())
379     return true;
380   
381   // Scan the current block backward, looking for other uses of SI.
382   BasicBlock::iterator BBI = &I, BBFront = I.getParent()->begin();
383   
384   while (BBI != BBFront) {
385     --BBI;
386     // If we found a call to a function, we can't assume it will return, so
387     // information from below it cannot be propagated above it.
388     if (isa<CallInst>(BBI) && !isa<IntrinsicInst>(BBI))
389       break;
390     
391     // Replace uses of the select or its condition with the known values.
392     for (Instruction::op_iterator I = BBI->op_begin(), E = BBI->op_end();
393          I != E; ++I) {
394       if (*I == SI) {
395         *I = SI->getOperand(NonNullOperand);
396         Worklist.Add(BBI);
397       } else if (*I == SelectCond) {
398         *I = NonNullOperand == 1 ? ConstantInt::getTrue(BBI->getContext()) :
399                                    ConstantInt::getFalse(BBI->getContext());
400         Worklist.Add(BBI);
401       }
402     }
403     
404     // If we past the instruction, quit looking for it.
405     if (&*BBI == SI)
406       SI = 0;
407     if (&*BBI == SelectCond)
408       SelectCond = 0;
409     
410     // If we ran out of things to eliminate, break out of the loop.
411     if (SelectCond == 0 && SI == 0)
412       break;
413     
414   }
415   return true;
416 }
417
418
419 /// This function implements the transforms common to both integer division
420 /// instructions (udiv and sdiv). It is called by the visitors to those integer
421 /// division instructions.
422 /// @brief Common integer divide transforms
423 Instruction *InstCombiner::commonIDivTransforms(BinaryOperator &I) {
424   Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
425
426   // The RHS is known non-zero.
427   if (Value *V = simplifyValueKnownNonZero(I.getOperand(1), *this)) {
428     I.setOperand(1, V);
429     return &I;
430   }
431   
432   // Handle cases involving: [su]div X, (select Cond, Y, Z)
433   // This does not apply for fdiv.
434   if (isa<SelectInst>(Op1) && SimplifyDivRemOfSelect(I))
435     return &I;
436
437   if (ConstantInt *RHS = dyn_cast<ConstantInt>(Op1)) {
438     // (X / C1) / C2  -> X / (C1*C2)
439     if (Instruction *LHS = dyn_cast<Instruction>(Op0))
440       if (Instruction::BinaryOps(LHS->getOpcode()) == I.getOpcode())
441         if (ConstantInt *LHSRHS = dyn_cast<ConstantInt>(LHS->getOperand(1))) {
442           if (MultiplyOverflows(RHS, LHSRHS,
443                                 I.getOpcode()==Instruction::SDiv))
444             return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
445           return BinaryOperator::Create(I.getOpcode(), LHS->getOperand(0),
446                                         ConstantExpr::getMul(RHS, LHSRHS));
447         }
448
449     if (!RHS->isZero()) { // avoid X udiv 0
450       if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
451         if (Instruction *R = FoldOpIntoSelect(I, SI))
452           return R;
453       if (isa<PHINode>(Op0))
454         if (Instruction *NV = FoldOpIntoPhi(I))
455           return NV;
456     }
457   }
458
459   // See if we can fold away this div instruction.
460   if (SimplifyDemandedInstructionBits(I))
461     return &I;
462
463   // (X - (X rem Y)) / Y -> X / Y; usually originates as ((X / Y) * Y) / Y
464   Value *X = 0, *Z = 0;
465   if (match(Op0, m_Sub(m_Value(X), m_Value(Z)))) { // (X - Z) / Y; Y = Op1
466     bool isSigned = I.getOpcode() == Instruction::SDiv;
467     if ((isSigned && match(Z, m_SRem(m_Specific(X), m_Specific(Op1)))) ||
468         (!isSigned && match(Z, m_URem(m_Specific(X), m_Specific(Op1)))))
469       return BinaryOperator::Create(I.getOpcode(), X, Op1);
470   }
471
472   return 0;
473 }
474
475 /// dyn_castZExtVal - Checks if V is a zext or constant that can
476 /// be truncated to Ty without losing bits.
477 static Value *dyn_castZExtVal(Value *V, Type *Ty) {
478   if (ZExtInst *Z = dyn_cast<ZExtInst>(V)) {
479     if (Z->getSrcTy() == Ty)
480       return Z->getOperand(0);
481   } else if (ConstantInt *C = dyn_cast<ConstantInt>(V)) {
482     if (C->getValue().getActiveBits() <= cast<IntegerType>(Ty)->getBitWidth())
483       return ConstantExpr::getTrunc(C, Ty);
484   }
485   return 0;
486 }
487
488 Instruction *InstCombiner::visitUDiv(BinaryOperator &I) {
489   Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
490
491   if (Value *V = SimplifyUDivInst(Op0, Op1, TD))
492     return ReplaceInstUsesWith(I, V);
493
494   // Handle the integer div common cases
495   if (Instruction *Common = commonIDivTransforms(I))
496     return Common;
497   
498   { 
499     // X udiv 2^C -> X >> C
500     // Check to see if this is an unsigned division with an exact power of 2,
501     // if so, convert to a right shift.
502     const APInt *C;
503     if (match(Op1, m_Power2(C))) {
504       BinaryOperator *LShr =
505       BinaryOperator::CreateLShr(Op0, 
506                                  ConstantInt::get(Op0->getType(), 
507                                                   C->logBase2()));
508       if (I.isExact()) LShr->setIsExact();
509       return LShr;
510     }
511   }
512
513   if (ConstantInt *C = dyn_cast<ConstantInt>(Op1)) {
514     // X udiv C, where C >= signbit
515     if (C->getValue().isNegative()) {
516       Value *IC = Builder->CreateICmpULT(Op0, C);
517       return SelectInst::Create(IC, Constant::getNullValue(I.getType()),
518                                 ConstantInt::get(I.getType(), 1));
519     }
520   }
521
522   // (x lshr C1) udiv C2 --> x udiv (C2 << C1)
523   if (ConstantInt *C2 = dyn_cast<ConstantInt>(Op1)) {
524     Value *X;
525     ConstantInt *C1;
526     if (match(Op0, m_LShr(m_Value(X), m_ConstantInt(C1)))) {
527       APInt NC = C2->getValue().shl(C1->getLimitedValue(C1->getBitWidth()-1));
528       return BinaryOperator::CreateUDiv(X, Builder->getInt(NC));
529     }
530   }
531
532   // X udiv (C1 << N), where C1 is "1<<C2"  -->  X >> (N+C2)
533   { const APInt *CI; Value *N;
534     if (match(Op1, m_Shl(m_Power2(CI), m_Value(N))) ||
535         match(Op1, m_ZExt(m_Shl(m_Power2(CI), m_Value(N))))) {
536       if (*CI != 1)
537         N = Builder->CreateAdd(N,
538                                ConstantInt::get(N->getType(), CI->logBase2()));
539       if (ZExtInst *Z = dyn_cast<ZExtInst>(Op1))
540         N = Builder->CreateZExt(N, Z->getDestTy());
541       if (I.isExact())
542         return BinaryOperator::CreateExactLShr(Op0, N);
543       return BinaryOperator::CreateLShr(Op0, N);
544     }
545   }
546   
547   // udiv X, (Select Cond, C1, C2) --> Select Cond, (shr X, C1), (shr X, C2)
548   // where C1&C2 are powers of two.
549   { Value *Cond; const APInt *C1, *C2;
550     if (match(Op1, m_Select(m_Value(Cond), m_Power2(C1), m_Power2(C2)))) {
551       // Construct the "on true" case of the select
552       Value *TSI = Builder->CreateLShr(Op0, C1->logBase2(), Op1->getName()+".t",
553                                        I.isExact());
554   
555       // Construct the "on false" case of the select
556       Value *FSI = Builder->CreateLShr(Op0, C2->logBase2(), Op1->getName()+".f",
557                                        I.isExact());
558       
559       // construct the select instruction and return it.
560       return SelectInst::Create(Cond, TSI, FSI);
561     }
562   }
563
564   // (zext A) udiv (zext B) --> zext (A udiv B)
565   if (ZExtInst *ZOp0 = dyn_cast<ZExtInst>(Op0))
566     if (Value *ZOp1 = dyn_castZExtVal(Op1, ZOp0->getSrcTy()))
567       return new ZExtInst(Builder->CreateUDiv(ZOp0->getOperand(0), ZOp1, "div",
568                                               I.isExact()),
569                           I.getType());
570
571   return 0;
572 }
573
574 Instruction *InstCombiner::visitSDiv(BinaryOperator &I) {
575   Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
576
577   if (Value *V = SimplifySDivInst(Op0, Op1, TD))
578     return ReplaceInstUsesWith(I, V);
579
580   // Handle the integer div common cases
581   if (Instruction *Common = commonIDivTransforms(I))
582     return Common;
583
584   if (ConstantInt *RHS = dyn_cast<ConstantInt>(Op1)) {
585     // sdiv X, -1 == -X
586     if (RHS->isAllOnesValue())
587       return BinaryOperator::CreateNeg(Op0);
588
589     // sdiv X, C  -->  ashr exact X, log2(C)
590     if (I.isExact() && RHS->getValue().isNonNegative() &&
591         RHS->getValue().isPowerOf2()) {
592       Value *ShAmt = llvm::ConstantInt::get(RHS->getType(),
593                                             RHS->getValue().exactLogBase2());
594       return BinaryOperator::CreateExactAShr(Op0, ShAmt, I.getName());
595     }
596
597     // -X/C  -->  X/-C  provided the negation doesn't overflow.
598     if (SubOperator *Sub = dyn_cast<SubOperator>(Op0))
599       if (match(Sub->getOperand(0), m_Zero()) && Sub->hasNoSignedWrap())
600         return BinaryOperator::CreateSDiv(Sub->getOperand(1),
601                                           ConstantExpr::getNeg(RHS));
602   }
603
604   // If the sign bits of both operands are zero (i.e. we can prove they are
605   // unsigned inputs), turn this into a udiv.
606   if (I.getType()->isIntegerTy()) {
607     APInt Mask(APInt::getSignBit(I.getType()->getPrimitiveSizeInBits()));
608     if (MaskedValueIsZero(Op0, Mask)) {
609       if (MaskedValueIsZero(Op1, Mask)) {
610         // X sdiv Y -> X udiv Y, iff X and Y don't have sign bit set
611         return BinaryOperator::CreateUDiv(Op0, Op1, I.getName());
612       }
613       
614       if (match(Op1, m_Shl(m_Power2(), m_Value()))) {
615         // X sdiv (1 << Y) -> X udiv (1 << Y) ( -> X u>> Y)
616         // Safe because the only negative value (1 << Y) can take on is
617         // INT_MIN, and X sdiv INT_MIN == X udiv INT_MIN == 0 if X doesn't have
618         // the sign bit set.
619         return BinaryOperator::CreateUDiv(Op0, Op1, I.getName());
620       }
621     }
622   }
623   
624   return 0;
625 }
626
627 Instruction *InstCombiner::visitFDiv(BinaryOperator &I) {
628   Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
629
630   if (Value *V = SimplifyFDivInst(Op0, Op1, TD))
631     return ReplaceInstUsesWith(I, V);
632
633   if (ConstantFP *Op1C = dyn_cast<ConstantFP>(Op1)) {
634     const APFloat &Op1F = Op1C->getValueAPF();
635
636     // If the divisor has an exact multiplicative inverse we can turn the fdiv
637     // into a cheaper fmul.
638     APFloat Reciprocal(Op1F.getSemantics());
639     if (Op1F.getExactInverse(&Reciprocal)) {
640       ConstantFP *RFP = ConstantFP::get(Builder->getContext(), Reciprocal);
641       return BinaryOperator::CreateFMul(Op0, RFP);
642     }
643   }
644
645   return 0;
646 }
647
648 /// This function implements the transforms common to both integer remainder
649 /// instructions (urem and srem). It is called by the visitors to those integer
650 /// remainder instructions.
651 /// @brief Common integer remainder transforms
652 Instruction *InstCombiner::commonIRemTransforms(BinaryOperator &I) {
653   Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
654
655   // The RHS is known non-zero.
656   if (Value *V = simplifyValueKnownNonZero(I.getOperand(1), *this)) {
657     I.setOperand(1, V);
658     return &I;
659   }
660
661   // Handle cases involving: rem X, (select Cond, Y, Z)
662   if (isa<SelectInst>(Op1) && SimplifyDivRemOfSelect(I))
663     return &I;
664
665   if (isa<ConstantInt>(Op1)) {
666     if (Instruction *Op0I = dyn_cast<Instruction>(Op0)) {
667       if (SelectInst *SI = dyn_cast<SelectInst>(Op0I)) {
668         if (Instruction *R = FoldOpIntoSelect(I, SI))
669           return R;
670       } else if (isa<PHINode>(Op0I)) {
671         if (Instruction *NV = FoldOpIntoPhi(I))
672           return NV;
673       }
674
675       // See if we can fold away this rem instruction.
676       if (SimplifyDemandedInstructionBits(I))
677         return &I;
678     }
679   }
680
681   return 0;
682 }
683
684 Instruction *InstCombiner::visitURem(BinaryOperator &I) {
685   Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
686
687   if (Value *V = SimplifyURemInst(Op0, Op1, TD))
688     return ReplaceInstUsesWith(I, V);
689
690   if (Instruction *common = commonIRemTransforms(I))
691     return common;
692   
693   // X urem C^2 -> X and C-1
694   { const APInt *C;
695     if (match(Op1, m_Power2(C)))
696       return BinaryOperator::CreateAnd(Op0,
697                                        ConstantInt::get(I.getType(), *C-1));
698   }
699
700   // Turn A % (C << N), where C is 2^k, into A & ((C << N)-1)  
701   if (match(Op1, m_Shl(m_Power2(), m_Value()))) {
702     Constant *N1 = Constant::getAllOnesValue(I.getType());
703     Value *Add = Builder->CreateAdd(Op1, N1);
704     return BinaryOperator::CreateAnd(Op0, Add);
705   }
706
707   // urem X, (select Cond, 2^C1, 2^C2) -->
708   //    select Cond, (and X, C1-1), (and X, C2-1)
709   // when C1&C2 are powers of two.
710   { Value *Cond; const APInt *C1, *C2;
711     if (match(Op1, m_Select(m_Value(Cond), m_Power2(C1), m_Power2(C2)))) {
712       Value *TrueAnd = Builder->CreateAnd(Op0, *C1-1, Op1->getName()+".t");
713       Value *FalseAnd = Builder->CreateAnd(Op0, *C2-1, Op1->getName()+".f");
714       return SelectInst::Create(Cond, TrueAnd, FalseAnd);
715     }
716   }
717
718   // (zext A) urem (zext B) --> zext (A urem B)
719   if (ZExtInst *ZOp0 = dyn_cast<ZExtInst>(Op0))
720     if (Value *ZOp1 = dyn_castZExtVal(Op1, ZOp0->getSrcTy()))
721       return new ZExtInst(Builder->CreateURem(ZOp0->getOperand(0), ZOp1),
722                           I.getType());
723
724   return 0;
725 }
726
727 Instruction *InstCombiner::visitSRem(BinaryOperator &I) {
728   Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
729
730   if (Value *V = SimplifySRemInst(Op0, Op1, TD))
731     return ReplaceInstUsesWith(I, V);
732
733   // Handle the integer rem common cases
734   if (Instruction *Common = commonIRemTransforms(I))
735     return Common;
736   
737   if (Value *RHSNeg = dyn_castNegVal(Op1))
738     if (!isa<Constant>(RHSNeg) ||
739         (isa<ConstantInt>(RHSNeg) &&
740          cast<ConstantInt>(RHSNeg)->getValue().isStrictlyPositive())) {
741       // X % -Y -> X % Y
742       Worklist.AddValue(I.getOperand(1));
743       I.setOperand(1, RHSNeg);
744       return &I;
745     }
746
747   // If the sign bits of both operands are zero (i.e. we can prove they are
748   // unsigned inputs), turn this into a urem.
749   if (I.getType()->isIntegerTy()) {
750     APInt Mask(APInt::getSignBit(I.getType()->getPrimitiveSizeInBits()));
751     if (MaskedValueIsZero(Op1, Mask) && MaskedValueIsZero(Op0, Mask)) {
752       // X srem Y -> X urem Y, iff X and Y don't have sign bit set
753       return BinaryOperator::CreateURem(Op0, Op1, I.getName());
754     }
755   }
756
757   // If it's a constant vector, flip any negative values positive.
758   if (isa<ConstantVector>(Op1) || isa<ConstantDataVector>(Op1)) {
759     Constant *C = cast<Constant>(Op1);
760     unsigned VWidth = C->getType()->getVectorNumElements();
761
762     bool hasNegative = false;
763     bool hasMissing = false;
764     for (unsigned i = 0; i != VWidth; ++i) {
765       Constant *Elt = C->getAggregateElement(i);
766       if (Elt == 0) {
767         hasMissing = true;
768         break;
769       }
770
771       if (ConstantInt *RHS = dyn_cast<ConstantInt>(Elt))
772         if (RHS->isNegative())
773           hasNegative = true;
774     }
775
776     if (hasNegative && !hasMissing) {
777       SmallVector<Constant *, 16> Elts(VWidth);
778       for (unsigned i = 0; i != VWidth; ++i) {
779         Elts[i] = C->getAggregateElement(i);  // Handle undef, etc.
780         if (ConstantInt *RHS = dyn_cast<ConstantInt>(Elts[i])) {
781           if (RHS->isNegative())
782             Elts[i] = cast<ConstantInt>(ConstantExpr::getNeg(RHS));
783         }
784       }
785
786       Constant *NewRHSV = ConstantVector::get(Elts);
787       if (NewRHSV != C) {  // Don't loop on -MININT
788         Worklist.AddValue(I.getOperand(1));
789         I.setOperand(1, NewRHSV);
790         return &I;
791       }
792     }
793   }
794
795   return 0;
796 }
797
798 Instruction *InstCombiner::visitFRem(BinaryOperator &I) {
799   Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
800
801   if (Value *V = SimplifyFRemInst(Op0, Op1, TD))
802     return ReplaceInstUsesWith(I, V);
803
804   // Handle cases involving: rem X, (select Cond, Y, Z)
805   if (isa<SelectInst>(Op1) && SimplifyDivRemOfSelect(I))
806     return &I;
807
808   return 0;
809 }