InstCombine: Small whitespace cleanup in FoldGEPICmp
[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/IR/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 /// \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.
103 static 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
117 Instruction *InstCombiner::visitMul(BinaryOperator &I) {
118   bool Changed = SimplifyAssociativeOrCommutative(I);
119   Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
120
121   if (Value *V = SimplifyMulInst(Op0, Op1, TD))
122     return ReplaceInstUsesWith(I, V);
123
124   if (Value *V = SimplifyUsingDistributiveLaws(I))
125     return ReplaceInstUsesWith(I, V);
126
127   if (match(Op1, m_AllOnes()))  // X * -1 == 0 - X
128     return BinaryOperator::CreateNeg(Op0, I.getName());
129
130   // 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));
140
141     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);
150
151       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       }
157     }
158   }
159
160   if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
161     // 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)))) {
165         Value *Add = Builder->CreateMul(X, CI);
166         return BinaryOperator::CreateAdd(Add, Builder->CreateMul(C1, CI));
167       }
168     }
169
170     // (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.
173     {
174       const APInt &   Val = CI->getValue();
175       const APInt &PosVal = Val.abs();
176       if (Val.isNegative() && PosVal.isPowerOf2()) {
177         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));
189         }
190       }
191     }
192   }
193
194   // Simplify mul instructions with a constant RHS.
195   if (isa<Constant>(Op1)) {
196     // 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 ||
216         (BO->getOpcode() != Instruction::UDiv &&
217          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
228       // 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))
230         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.
250   if (I.getType()->isIntegerTy(1))
251     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   }
262
263   // 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)
266   if (!I.getType()->isVectorTy()) {
267     // -2 is "-1 << 1" so it is all bits set except the low one.
268     APInt Negative2(I.getType()->getPrimitiveSizeInBits(), (uint64_t)-2, true);
269
270     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()),
278                                     BoolCast);
279       return BinaryOperator::CreateAnd(V, OtherOp);
280     }
281   }
282
283   return Changed ? &I : 0;
284 }
285
286 //
287 // Detect pattern:
288 //
289 // log2(Y*0.5)
290 //
291 // And check for corresponding fast math flags
292 //
293
294 static void detectLog2OfHalf(Value *&Op, Value *&Y, IntrinsicInst *&Log2) {
295
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;
315
316    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);
324 }
325
326 /// 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).
329 static bool isFMulOrFDivWithConstant(Value *V) {
330   Instruction *I = dyn_cast<Instruction>(V);
331   if (!I || (I->getOpcode() != Instruction::FMul &&
332              I->getOpcode() != Instruction::FDiv))
333     return false;
334
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().isFiniteNonZero()) ||
342          (C1 && C1->getValueAPF().isFiniteNonZero());
343 }
344
345 static bool isNormalFp(const ConstantFP *C) {
346   const APFloat &Flt = C->getValueAPF();
347   return Flt.isNormal();
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).
353 /// This function is to simplify "FMulOrDiv * C" and returns the
354 /// resulting expression. Note that this function could return NULL in
355 /// case the constants cannot be folded into a normal floating-point.
356 ///
357 Value *InstCombiner::foldFMulConst(Instruction *FMulOrDiv, ConstantFP *C,
358                                    Instruction *InsertBefore) {
359   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 {
386         // (X / C1) * C => X / (C1/C)
387         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
402 Instruction *InstCombiner::visitFMul(BinaryOperator &I) {
403   bool Changed = SimplifyAssociativeOrCommutative(I);
404   Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
405
406   if (isa<Constant>(Op0))
407     std::swap(Op0, Op1);
408
409   if (Value *V = SimplifyFMulInst(Op0, Op1, I.getFastMathFlags(), TD))
410     return ReplaceInstUsesWith(I, V);
411
412   bool AllowReassociate = I.hasUnsafeAlgebra();
413
414   // Simplify mul instructions with a constant RHS.
415   if (isa<Constant>(Op1)) {
416     // 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;
424
425     ConstantFP *C = dyn_cast<ConstantFP>(Op1);
426     if (C && AllowReassociate && C->getValueAPF().isFiniteNonZero()) {
427       // 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
437       // (MDC +/- C1) * C => (MDC * C) +/- (C1 * C)
438       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) {
448           std::swap(C0, C1);
449           std::swap(Opnd0, Opnd1);
450           Swap = true;
451         }
452
453         if (C1 && C1->getValueAPF().isFiniteNonZero() &&
454             isFMulOrFDivWithConstant(Opnd0)) {
455           Value *M1 = ConstantExpr::getFMul(C1, C);
456           Value *M0 = isNormalFp(cast<ConstantFP>(M1)) ?
457                       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);
467             RI->copyFastMathFlags(&I);
468             return RI;
469           }
470         }
471       }
472     }
473   }
474
475
476   // 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;
482     detectLog2OfHalf(Op0, OpY, Log2);
483     if (OpY) {
484       OpX = Op1;
485     } else {
486       detectLog2OfHalf(Op1, OpY, Log2);
487       if (OpY) {
488         OpX = Op0;
489       }
490     }
491     // if pattern detected emit alternate sequence
492     if (OpX && OpY) {
493       Log2->setArgOperand(0, OpY);
494       Value *FMulVal = Builder->CreateFMul(OpX, Log2);
495       Instruction *FMul = cast<Instruction>(FMulVal);
496       FMul->copyFastMathFlags(Log2);
497       Instruction *FSub = BinaryOperator::CreateFSub(FMulVal, OpX);
498       FSub->copyFastMathFlags(Log2);
499       return FSub;
500     }
501   }
502
503   // 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);
511
512       // -X * -Y => X*Y
513       if (N1)
514         return BinaryOperator::CreateFMul(N0, N1);
515
516       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;
526       }
527     }
528
529     // (X*Y) * X => (X*X) * Y where Y != X
530     //  The purpose is two-fold:
531     //   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;
563   }
564
565   return Changed ? &I : 0;
566 }
567
568 /// SimplifyDivRemOfSelect - Try to fold a divide or remainder of a select
569 /// instruction.
570 bool InstCombiner::SimplifyDivRemOfSelect(BinaryOperator &I) {
571   SelectInst *SI = cast<SelectInst>(I.getOperand(1));
572
573   // 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;
582
583   if (NonNullOperand == -1)
584     return false;
585
586   Value *SelectCond = SI->getOperand(0);
587
588   // Change the div/rem to use 'Y' instead of the select.
589   I.setOperand(1, SI->getOperand(NonNullOperand));
590
591   // 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.
596
597   // 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;
601
602   // Scan the current block backward, looking for other uses of SI.
603   BasicBlock::iterator BBI = &I, BBFront = I.getParent()->begin();
604
605   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;
611
612     // 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 = Builder->getInt1(NonNullOperand == 1);
620         Worklist.Add(BBI);
621       }
622     }
623
624     // If we past the instruction, quit looking for it.
625     if (&*BBI == SI)
626       SI = 0;
627     if (&*BBI == SelectCond)
628       SelectCond = 0;
629
630     // If we ran out of things to eliminate, break out of the loop.
631     if (SelectCond == 0 && SI == 0)
632       break;
633
634   }
635   return true;
636 }
637
638
639 /// This function implements the transforms common to both integer division
640 /// instructions (udiv and sdiv). It is called by the visitors to those integer
641 /// division instructions.
642 /// @brief Common integer divide transforms
643 Instruction *InstCombiner::commonIDivTransforms(BinaryOperator &I) {
644   Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
645
646   // The RHS is known non-zero.
647   if (Value *V = simplifyValueKnownNonZero(I.getOperand(1), *this)) {
648     I.setOperand(1, V);
649     return &I;
650   }
651
652   // Handle cases involving: [su]div X, (select Cond, Y, Z)
653   // This does not apply for fdiv.
654   if (isa<SelectInst>(Op1) && SimplifyDivRemOfSelect(I))
655     return &I;
656
657   if (ConstantInt *RHS = dyn_cast<ConstantInt>(Op1)) {
658     // (X / C1) / C2  -> X / (C1*C2)
659     if (Instruction *LHS = dyn_cast<Instruction>(Op0))
660       if (Instruction::BinaryOps(LHS->getOpcode()) == I.getOpcode())
661         if (ConstantInt *LHSRHS = dyn_cast<ConstantInt>(LHS->getOperand(1))) {
662           if (MultiplyOverflows(RHS, LHSRHS,
663                                 I.getOpcode()==Instruction::SDiv))
664             return ReplaceInstUsesWith(I, Constant::getNullValue(I.getType()));
665           return BinaryOperator::Create(I.getOpcode(), LHS->getOperand(0),
666                                         ConstantExpr::getMul(RHS, LHSRHS));
667         }
668
669     if (!RHS->isZero()) { // avoid X udiv 0
670       if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
671         if (Instruction *R = FoldOpIntoSelect(I, SI))
672           return R;
673       if (isa<PHINode>(Op0))
674         if (Instruction *NV = FoldOpIntoPhi(I))
675           return NV;
676     }
677   }
678
679   // See if we can fold away this div instruction.
680   if (SimplifyDemandedInstructionBits(I))
681     return &I;
682
683   // (X - (X rem Y)) / Y -> X / Y; usually originates as ((X / Y) * Y) / Y
684   Value *X = 0, *Z = 0;
685   if (match(Op0, m_Sub(m_Value(X), m_Value(Z)))) { // (X - Z) / Y; Y = Op1
686     bool isSigned = I.getOpcode() == Instruction::SDiv;
687     if ((isSigned && match(Z, m_SRem(m_Specific(X), m_Specific(Op1)))) ||
688         (!isSigned && match(Z, m_URem(m_Specific(X), m_Specific(Op1)))))
689       return BinaryOperator::Create(I.getOpcode(), X, Op1);
690   }
691
692   return 0;
693 }
694
695 /// dyn_castZExtVal - Checks if V is a zext or constant that can
696 /// be truncated to Ty without losing bits.
697 static Value *dyn_castZExtVal(Value *V, Type *Ty) {
698   if (ZExtInst *Z = dyn_cast<ZExtInst>(V)) {
699     if (Z->getSrcTy() == Ty)
700       return Z->getOperand(0);
701   } else if (ConstantInt *C = dyn_cast<ConstantInt>(V)) {
702     if (C->getValue().getActiveBits() <= cast<IntegerType>(Ty)->getBitWidth())
703       return ConstantExpr::getTrunc(C, Ty);
704   }
705   return 0;
706 }
707
708 const unsigned MaxDepth = 6;
709
710 // \brief Recursively visits the possible right hand operands of a udiv
711 // instruction, seeing through select instructions, to determine if we can
712 // replace the udiv with something simpler.  If we find that an operand is not
713 // able to simplify the udiv, we abort the entire transformation.
714 //
715 // Inserts any intermediate instructions used for the simplification into
716 // NewInstrs and returns a new instruction that depends upon them.
717 static Instruction *visitUDivOperand(Value *Op0, Value *Op1,
718                                      const BinaryOperator &I,
719                                      SmallVectorImpl<Instruction *> &NewInstrs,
720                                      unsigned Depth = 0) {
721   {
722     // X udiv 2^C -> X >> C
723     // Check to see if this is an unsigned division with an exact power of 2,
724     // if so, convert to a right shift.
725     const APInt *C;
726     if (match(Op1, m_Power2(C))) {
727       BinaryOperator *LShr = BinaryOperator::CreateLShr(
728           Op0, ConstantInt::get(Op0->getType(), C->logBase2()));
729       if (I.isExact()) LShr->setIsExact();
730       return LShr;
731     }
732   }
733
734   if (ConstantInt *C = dyn_cast<ConstantInt>(Op1)) {
735     // X udiv C, where C >= signbit
736     if (C->getValue().isNegative()) {
737       ICmpInst *IC = new ICmpInst(ICmpInst::ICMP_ULT, Op0, C);
738       NewInstrs.push_back(IC);
739
740       return SelectInst::Create(IC, Constant::getNullValue(I.getType()),
741                                 ConstantInt::get(I.getType(), 1));
742     }
743   }
744
745   // X udiv (C1 << N), where C1 is "1<<C2"  -->  X >> (N+C2)
746   { const APInt *CI; Value *N;
747     if (match(Op1, m_Shl(m_Power2(CI), m_Value(N))) ||
748         match(Op1, m_ZExt(m_Shl(m_Power2(CI), m_Value(N))))) {
749       if (*CI != 1) {
750         N = BinaryOperator::CreateAdd(
751             N, ConstantInt::get(N->getType(), CI->logBase2()));
752         NewInstrs.push_back(cast<Instruction>(N));
753       }
754       if (ZExtInst *Z = dyn_cast<ZExtInst>(Op1)) {
755         N = new ZExtInst(N, Z->getDestTy());
756         NewInstrs.push_back(cast<Instruction>(N));
757       }
758       BinaryOperator *LShr = BinaryOperator::CreateLShr(Op0, N);
759       if (I.isExact()) LShr->setIsExact();
760       return LShr;
761     }
762   }
763
764   // The remaining tests are all recursive, so bail out if we hit the limit.
765   if (Depth++ == MaxDepth)
766     return 0;
767
768   if (SelectInst *SI = dyn_cast<SelectInst>(Op1))
769     if (Instruction *LHS =
770             visitUDivOperand(Op0, SI->getOperand(1), I, NewInstrs)) {
771       NewInstrs.push_back(LHS);
772       if (Instruction *RHS =
773               visitUDivOperand(Op0, SI->getOperand(2), I, NewInstrs)) {
774         NewInstrs.push_back(RHS);
775         return SelectInst::Create(SI->getCondition(), LHS, RHS);
776       }
777     }
778
779   return 0;
780 }
781
782 Instruction *InstCombiner::visitUDiv(BinaryOperator &I) {
783   Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
784
785   if (Value *V = SimplifyUDivInst(Op0, Op1, TD))
786     return ReplaceInstUsesWith(I, V);
787
788   // Handle the integer div common cases
789   if (Instruction *Common = commonIDivTransforms(I))
790     return Common;
791
792   // (x lshr C1) udiv C2 --> x udiv (C2 << C1)
793   if (ConstantInt *C2 = dyn_cast<ConstantInt>(Op1)) {
794     Value *X;
795     ConstantInt *C1;
796     if (match(Op0, m_LShr(m_Value(X), m_ConstantInt(C1)))) {
797       APInt NC = C2->getValue().shl(C1->getLimitedValue(C1->getBitWidth()-1));
798       return BinaryOperator::CreateUDiv(X, Builder->getInt(NC));
799     }
800   }
801
802   // (zext A) udiv (zext B) --> zext (A udiv B)
803   if (ZExtInst *ZOp0 = dyn_cast<ZExtInst>(Op0))
804     if (Value *ZOp1 = dyn_castZExtVal(Op1, ZOp0->getSrcTy()))
805       return new ZExtInst(Builder->CreateUDiv(ZOp0->getOperand(0), ZOp1, "div",
806                                               I.isExact()),
807                           I.getType());
808
809   // (LHS udiv (select (select (...)))) -> (LHS >> (select (select (...))))
810   SmallVector<Instruction *, 4> NewInstrs;
811   Instruction *RetI = visitUDivOperand(Op0, Op1, I, NewInstrs);
812   for (unsigned i = 0, e = NewInstrs.size(); i != e; i++)
813     // If we managed to replace the UDiv completely, insert the new intermediate
814     // instructions before where the UDiv was.
815     // If we couldn't, we must clean up after ourselves by deleting the new
816     // instructions.
817     if (RetI)
818       NewInstrs[i]->insertBefore(&I);
819     else
820       delete NewInstrs[i];
821   if (RetI)
822     return RetI;
823
824   return 0;
825 }
826
827 Instruction *InstCombiner::visitSDiv(BinaryOperator &I) {
828   Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
829
830   if (Value *V = SimplifySDivInst(Op0, Op1, TD))
831     return ReplaceInstUsesWith(I, V);
832
833   // Handle the integer div common cases
834   if (Instruction *Common = commonIDivTransforms(I))
835     return Common;
836
837   if (ConstantInt *RHS = dyn_cast<ConstantInt>(Op1)) {
838     // sdiv X, -1 == -X
839     if (RHS->isAllOnesValue())
840       return BinaryOperator::CreateNeg(Op0);
841
842     // sdiv X, C  -->  ashr exact X, log2(C)
843     if (I.isExact() && RHS->getValue().isNonNegative() &&
844         RHS->getValue().isPowerOf2()) {
845       Value *ShAmt = llvm::ConstantInt::get(RHS->getType(),
846                                             RHS->getValue().exactLogBase2());
847       return BinaryOperator::CreateExactAShr(Op0, ShAmt, I.getName());
848     }
849
850     // -X/C  -->  X/-C  provided the negation doesn't overflow.
851     if (SubOperator *Sub = dyn_cast<SubOperator>(Op0))
852       if (match(Sub->getOperand(0), m_Zero()) && Sub->hasNoSignedWrap())
853         return BinaryOperator::CreateSDiv(Sub->getOperand(1),
854                                           ConstantExpr::getNeg(RHS));
855   }
856
857   // If the sign bits of both operands are zero (i.e. we can prove they are
858   // unsigned inputs), turn this into a udiv.
859   if (I.getType()->isIntegerTy()) {
860     APInt Mask(APInt::getSignBit(I.getType()->getPrimitiveSizeInBits()));
861     if (MaskedValueIsZero(Op0, Mask)) {
862       if (MaskedValueIsZero(Op1, Mask)) {
863         // X sdiv Y -> X udiv Y, iff X and Y don't have sign bit set
864         return BinaryOperator::CreateUDiv(Op0, Op1, I.getName());
865       }
866
867       if (match(Op1, m_Shl(m_Power2(), m_Value()))) {
868         // X sdiv (1 << Y) -> X udiv (1 << Y) ( -> X u>> Y)
869         // Safe because the only negative value (1 << Y) can take on is
870         // INT_MIN, and X sdiv INT_MIN == X udiv INT_MIN == 0 if X doesn't have
871         // the sign bit set.
872         return BinaryOperator::CreateUDiv(Op0, Op1, I.getName());
873       }
874     }
875   }
876
877   return 0;
878 }
879
880 /// CvtFDivConstToReciprocal tries to convert X/C into X*1/C if C not a special
881 /// FP value and:
882 ///    1) 1/C is exact, or
883 ///    2) reciprocal is allowed.
884 /// If the conversion was successful, the simplified expression "X * 1/C" is
885 /// returned; otherwise, NULL is returned.
886 ///
887 static Instruction *CvtFDivConstToReciprocal(Value *Dividend,
888                                              ConstantFP *Divisor,
889                                              bool AllowReciprocal) {
890   const APFloat &FpVal = Divisor->getValueAPF();
891   APFloat Reciprocal(FpVal.getSemantics());
892   bool Cvt = FpVal.getExactInverse(&Reciprocal);
893
894   if (!Cvt && AllowReciprocal && FpVal.isFiniteNonZero()) {
895     Reciprocal = APFloat(FpVal.getSemantics(), 1.0f);
896     (void)Reciprocal.divide(FpVal, APFloat::rmNearestTiesToEven);
897     Cvt = !Reciprocal.isDenormal();
898   }
899
900   if (!Cvt)
901     return 0;
902
903   ConstantFP *R;
904   R = ConstantFP::get(Dividend->getType()->getContext(), Reciprocal);
905   return BinaryOperator::CreateFMul(Dividend, R);
906 }
907
908 Instruction *InstCombiner::visitFDiv(BinaryOperator &I) {
909   Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
910
911   if (Value *V = SimplifyFDivInst(Op0, Op1, TD))
912     return ReplaceInstUsesWith(I, V);
913
914   bool AllowReassociate = I.hasUnsafeAlgebra();
915   bool AllowReciprocal = I.hasAllowReciprocal();
916
917   if (ConstantFP *Op1C = dyn_cast<ConstantFP>(Op1)) {
918     if (AllowReassociate) {
919       ConstantFP *C1 = 0;
920       ConstantFP *C2 = Op1C;
921       Value *X;
922       Instruction *Res = 0;
923
924       if (match(Op0, m_FMul(m_Value(X), m_ConstantFP(C1)))) {
925         // (X*C1)/C2 => X * (C1/C2)
926         //
927         Constant *C = ConstantExpr::getFDiv(C1, C2);
928         const APFloat &F = cast<ConstantFP>(C)->getValueAPF();
929         if (F.isNormal())
930           Res = BinaryOperator::CreateFMul(X, C);
931       } else if (match(Op0, m_FDiv(m_Value(X), m_ConstantFP(C1)))) {
932         // (X/C1)/C2 => X /(C2*C1) [=> X * 1/(C2*C1) if reciprocal is allowed]
933         //
934         Constant *C = ConstantExpr::getFMul(C1, C2);
935         const APFloat &F = cast<ConstantFP>(C)->getValueAPF();
936         if (F.isNormal()) {
937           Res = CvtFDivConstToReciprocal(X, cast<ConstantFP>(C),
938                                          AllowReciprocal);
939           if (!Res)
940             Res = BinaryOperator::CreateFDiv(X, C);
941         }
942       }
943
944       if (Res) {
945         Res->setFastMathFlags(I.getFastMathFlags());
946         return Res;
947       }
948     }
949
950     // X / C => X * 1/C
951     if (Instruction *T = CvtFDivConstToReciprocal(Op0, Op1C, AllowReciprocal))
952       return T;
953
954     return 0;
955   }
956
957   if (AllowReassociate && isa<ConstantFP>(Op0)) {
958     ConstantFP *C1 = cast<ConstantFP>(Op0), *C2;
959     Constant *Fold = 0;
960     Value *X;
961     bool CreateDiv = true;
962
963     // C1 / (X*C2) => (C1/C2) / X
964     if (match(Op1, m_FMul(m_Value(X), m_ConstantFP(C2))))
965       Fold = ConstantExpr::getFDiv(C1, C2);
966     else if (match(Op1, m_FDiv(m_Value(X), m_ConstantFP(C2)))) {
967       // C1 / (X/C2) => (C1*C2) / X
968       Fold = ConstantExpr::getFMul(C1, C2);
969     } else if (match(Op1, m_FDiv(m_ConstantFP(C2), m_Value(X)))) {
970       // C1 / (C2/X) => (C1/C2) * X
971       Fold = ConstantExpr::getFDiv(C1, C2);
972       CreateDiv = false;
973     }
974
975     if (Fold) {
976       const APFloat &FoldC = cast<ConstantFP>(Fold)->getValueAPF();
977       if (FoldC.isNormal()) {
978         Instruction *R = CreateDiv ?
979                          BinaryOperator::CreateFDiv(Fold, X) :
980                          BinaryOperator::CreateFMul(X, Fold);
981         R->setFastMathFlags(I.getFastMathFlags());
982         return R;
983       }
984     }
985     return 0;
986   }
987
988   if (AllowReassociate) {
989     Value *X, *Y;
990     Value *NewInst = 0;
991     Instruction *SimpR = 0;
992
993     if (Op0->hasOneUse() && match(Op0, m_FDiv(m_Value(X), m_Value(Y)))) {
994       // (X/Y) / Z => X / (Y*Z)
995       //
996       if (!isa<ConstantFP>(Y) || !isa<ConstantFP>(Op1)) {
997         NewInst = Builder->CreateFMul(Y, Op1);
998         SimpR = BinaryOperator::CreateFDiv(X, NewInst);
999       }
1000     } else if (Op1->hasOneUse() && match(Op1, m_FDiv(m_Value(X), m_Value(Y)))) {
1001       // Z / (X/Y) => Z*Y / X
1002       //
1003       if (!isa<ConstantFP>(Y) || !isa<ConstantFP>(Op0)) {
1004         NewInst = Builder->CreateFMul(Op0, Y);
1005         SimpR = BinaryOperator::CreateFDiv(NewInst, X);
1006       }
1007     }
1008
1009     if (NewInst) {
1010       if (Instruction *T = dyn_cast<Instruction>(NewInst))
1011         T->setDebugLoc(I.getDebugLoc());
1012       SimpR->setFastMathFlags(I.getFastMathFlags());
1013       return SimpR;
1014     }
1015   }
1016
1017   return 0;
1018 }
1019
1020 /// This function implements the transforms common to both integer remainder
1021 /// instructions (urem and srem). It is called by the visitors to those integer
1022 /// remainder instructions.
1023 /// @brief Common integer remainder transforms
1024 Instruction *InstCombiner::commonIRemTransforms(BinaryOperator &I) {
1025   Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
1026
1027   // The RHS is known non-zero.
1028   if (Value *V = simplifyValueKnownNonZero(I.getOperand(1), *this)) {
1029     I.setOperand(1, V);
1030     return &I;
1031   }
1032
1033   // Handle cases involving: rem X, (select Cond, Y, Z)
1034   if (isa<SelectInst>(Op1) && SimplifyDivRemOfSelect(I))
1035     return &I;
1036
1037   if (isa<ConstantInt>(Op1)) {
1038     if (Instruction *Op0I = dyn_cast<Instruction>(Op0)) {
1039       if (SelectInst *SI = dyn_cast<SelectInst>(Op0I)) {
1040         if (Instruction *R = FoldOpIntoSelect(I, SI))
1041           return R;
1042       } else if (isa<PHINode>(Op0I)) {
1043         if (Instruction *NV = FoldOpIntoPhi(I))
1044           return NV;
1045       }
1046
1047       // See if we can fold away this rem instruction.
1048       if (SimplifyDemandedInstructionBits(I))
1049         return &I;
1050     }
1051   }
1052
1053   return 0;
1054 }
1055
1056 Instruction *InstCombiner::visitURem(BinaryOperator &I) {
1057   Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
1058
1059   if (Value *V = SimplifyURemInst(Op0, Op1, TD))
1060     return ReplaceInstUsesWith(I, V);
1061
1062   if (Instruction *common = commonIRemTransforms(I))
1063     return common;
1064
1065   // (zext A) urem (zext B) --> zext (A urem B)
1066   if (ZExtInst *ZOp0 = dyn_cast<ZExtInst>(Op0))
1067     if (Value *ZOp1 = dyn_castZExtVal(Op1, ZOp0->getSrcTy()))
1068       return new ZExtInst(Builder->CreateURem(ZOp0->getOperand(0), ZOp1),
1069                           I.getType());
1070
1071   // X urem Y -> X and Y-1, where Y is a power of 2,
1072   if (isKnownToBeAPowerOfTwo(Op1, /*OrZero*/true)) {
1073     Constant *N1 = Constant::getAllOnesValue(I.getType());
1074     Value *Add = Builder->CreateAdd(Op1, N1);
1075     return BinaryOperator::CreateAnd(Op0, Add);
1076   }
1077
1078   return 0;
1079 }
1080
1081 Instruction *InstCombiner::visitSRem(BinaryOperator &I) {
1082   Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
1083
1084   if (Value *V = SimplifySRemInst(Op0, Op1, TD))
1085     return ReplaceInstUsesWith(I, V);
1086
1087   // Handle the integer rem common cases
1088   if (Instruction *Common = commonIRemTransforms(I))
1089     return Common;
1090
1091   if (Value *RHSNeg = dyn_castNegVal(Op1))
1092     if (!isa<Constant>(RHSNeg) ||
1093         (isa<ConstantInt>(RHSNeg) &&
1094          cast<ConstantInt>(RHSNeg)->getValue().isStrictlyPositive())) {
1095       // X % -Y -> X % Y
1096       Worklist.AddValue(I.getOperand(1));
1097       I.setOperand(1, RHSNeg);
1098       return &I;
1099     }
1100
1101   // If the sign bits of both operands are zero (i.e. we can prove they are
1102   // unsigned inputs), turn this into a urem.
1103   if (I.getType()->isIntegerTy()) {
1104     APInt Mask(APInt::getSignBit(I.getType()->getPrimitiveSizeInBits()));
1105     if (MaskedValueIsZero(Op1, Mask) && MaskedValueIsZero(Op0, Mask)) {
1106       // X srem Y -> X urem Y, iff X and Y don't have sign bit set
1107       return BinaryOperator::CreateURem(Op0, Op1, I.getName());
1108     }
1109   }
1110
1111   // If it's a constant vector, flip any negative values positive.
1112   if (isa<ConstantVector>(Op1) || isa<ConstantDataVector>(Op1)) {
1113     Constant *C = cast<Constant>(Op1);
1114     unsigned VWidth = C->getType()->getVectorNumElements();
1115
1116     bool hasNegative = false;
1117     bool hasMissing = false;
1118     for (unsigned i = 0; i != VWidth; ++i) {
1119       Constant *Elt = C->getAggregateElement(i);
1120       if (Elt == 0) {
1121         hasMissing = true;
1122         break;
1123       }
1124
1125       if (ConstantInt *RHS = dyn_cast<ConstantInt>(Elt))
1126         if (RHS->isNegative())
1127           hasNegative = true;
1128     }
1129
1130     if (hasNegative && !hasMissing) {
1131       SmallVector<Constant *, 16> Elts(VWidth);
1132       for (unsigned i = 0; i != VWidth; ++i) {
1133         Elts[i] = C->getAggregateElement(i);  // Handle undef, etc.
1134         if (ConstantInt *RHS = dyn_cast<ConstantInt>(Elts[i])) {
1135           if (RHS->isNegative())
1136             Elts[i] = cast<ConstantInt>(ConstantExpr::getNeg(RHS));
1137         }
1138       }
1139
1140       Constant *NewRHSV = ConstantVector::get(Elts);
1141       if (NewRHSV != C) {  // Don't loop on -MININT
1142         Worklist.AddValue(I.getOperand(1));
1143         I.setOperand(1, NewRHSV);
1144         return &I;
1145       }
1146     }
1147   }
1148
1149   return 0;
1150 }
1151
1152 Instruction *InstCombiner::visitFRem(BinaryOperator &I) {
1153   Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
1154
1155   if (Value *V = SimplifyFRemInst(Op0, Op1, TD))
1156     return ReplaceInstUsesWith(I, V);
1157
1158   // Handle cases involving: rem X, (select Cond, Y, Z)
1159   if (isa<SelectInst>(Op1) && SimplifyDivRemOfSelect(I))
1160     return &I;
1161
1162   return 0;
1163 }