Fix a bug in r123034 (trying to sext/zext non-integers) and clean up a little.
[oota-llvm.git] / lib / Transforms / InstCombine / InstCombineSelect.cpp
1 //===- InstCombineSelect.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 visitSelect function.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "InstCombine.h"
15 #include "llvm/Support/PatternMatch.h"
16 #include "llvm/Analysis/InstructionSimplify.h"
17 using namespace llvm;
18 using namespace PatternMatch;
19
20 /// MatchSelectPattern - Pattern match integer [SU]MIN, [SU]MAX, and ABS idioms,
21 /// returning the kind and providing the out parameter results if we
22 /// successfully match.
23 static SelectPatternFlavor
24 MatchSelectPattern(Value *V, Value *&LHS, Value *&RHS) {
25   SelectInst *SI = dyn_cast<SelectInst>(V);
26   if (SI == 0) return SPF_UNKNOWN;
27
28   ICmpInst *ICI = dyn_cast<ICmpInst>(SI->getCondition());
29   if (ICI == 0) return SPF_UNKNOWN;
30
31   LHS = ICI->getOperand(0);
32   RHS = ICI->getOperand(1);
33
34   // (icmp X, Y) ? X : Y
35   if (SI->getTrueValue() == ICI->getOperand(0) &&
36       SI->getFalseValue() == ICI->getOperand(1)) {
37     switch (ICI->getPredicate()) {
38     default: return SPF_UNKNOWN; // Equality.
39     case ICmpInst::ICMP_UGT:
40     case ICmpInst::ICMP_UGE: return SPF_UMAX;
41     case ICmpInst::ICMP_SGT:
42     case ICmpInst::ICMP_SGE: return SPF_SMAX;
43     case ICmpInst::ICMP_ULT:
44     case ICmpInst::ICMP_ULE: return SPF_UMIN;
45     case ICmpInst::ICMP_SLT:
46     case ICmpInst::ICMP_SLE: return SPF_SMIN;
47     }
48   }
49
50   // (icmp X, Y) ? Y : X
51   if (SI->getTrueValue() == ICI->getOperand(1) &&
52       SI->getFalseValue() == ICI->getOperand(0)) {
53     switch (ICI->getPredicate()) {
54       default: return SPF_UNKNOWN; // Equality.
55       case ICmpInst::ICMP_UGT:
56       case ICmpInst::ICMP_UGE: return SPF_UMIN;
57       case ICmpInst::ICMP_SGT:
58       case ICmpInst::ICMP_SGE: return SPF_SMIN;
59       case ICmpInst::ICMP_ULT:
60       case ICmpInst::ICMP_ULE: return SPF_UMAX;
61       case ICmpInst::ICMP_SLT:
62       case ICmpInst::ICMP_SLE: return SPF_SMAX;
63     }
64   }
65
66   // TODO: (X > 4) ? X : 5   -->  (X >= 5) ? X : 5  -->  MAX(X, 5)
67
68   return SPF_UNKNOWN;
69 }
70
71
72 /// GetSelectFoldableOperands - We want to turn code that looks like this:
73 ///   %C = or %A, %B
74 ///   %D = select %cond, %C, %A
75 /// into:
76 ///   %C = select %cond, %B, 0
77 ///   %D = or %A, %C
78 ///
79 /// Assuming that the specified instruction is an operand to the select, return
80 /// a bitmask indicating which operands of this instruction are foldable if they
81 /// equal the other incoming value of the select.
82 ///
83 static unsigned GetSelectFoldableOperands(Instruction *I) {
84   switch (I->getOpcode()) {
85   case Instruction::Add:
86   case Instruction::Mul:
87   case Instruction::And:
88   case Instruction::Or:
89   case Instruction::Xor:
90     return 3;              // Can fold through either operand.
91   case Instruction::Sub:   // Can only fold on the amount subtracted.
92   case Instruction::Shl:   // Can only fold on the shift amount.
93   case Instruction::LShr:
94   case Instruction::AShr:
95     return 1;
96   default:
97     return 0;              // Cannot fold
98   }
99 }
100
101 /// GetSelectFoldableConstant - For the same transformation as the previous
102 /// function, return the identity constant that goes into the select.
103 static Constant *GetSelectFoldableConstant(Instruction *I) {
104   switch (I->getOpcode()) {
105   default: llvm_unreachable("This cannot happen!");
106   case Instruction::Add:
107   case Instruction::Sub:
108   case Instruction::Or:
109   case Instruction::Xor:
110   case Instruction::Shl:
111   case Instruction::LShr:
112   case Instruction::AShr:
113     return Constant::getNullValue(I->getType());
114   case Instruction::And:
115     return Constant::getAllOnesValue(I->getType());
116   case Instruction::Mul:
117     return ConstantInt::get(I->getType(), 1);
118   }
119 }
120
121 /// FoldSelectOpOp - Here we have (select c, TI, FI), and we know that TI and FI
122 /// have the same opcode and only one use each.  Try to simplify this.
123 Instruction *InstCombiner::FoldSelectOpOp(SelectInst &SI, Instruction *TI,
124                                           Instruction *FI) {
125   if (TI->getNumOperands() == 1) {
126     // If this is a non-volatile load or a cast from the same type,
127     // merge.
128     if (TI->isCast()) {
129       if (TI->getOperand(0)->getType() != FI->getOperand(0)->getType())
130         return 0;
131     } else {
132       return 0;  // unknown unary op.
133     }
134
135     // Fold this by inserting a select from the input values.
136     SelectInst *NewSI = SelectInst::Create(SI.getCondition(), TI->getOperand(0),
137                                           FI->getOperand(0), SI.getName()+".v");
138     InsertNewInstBefore(NewSI, SI);
139     return CastInst::Create(Instruction::CastOps(TI->getOpcode()), NewSI,
140                             TI->getType());
141   }
142
143   // Only handle binary operators here.
144   if (!isa<BinaryOperator>(TI))
145     return 0;
146
147   // Figure out if the operations have any operands in common.
148   Value *MatchOp, *OtherOpT, *OtherOpF;
149   bool MatchIsOpZero;
150   if (TI->getOperand(0) == FI->getOperand(0)) {
151     MatchOp  = TI->getOperand(0);
152     OtherOpT = TI->getOperand(1);
153     OtherOpF = FI->getOperand(1);
154     MatchIsOpZero = true;
155   } else if (TI->getOperand(1) == FI->getOperand(1)) {
156     MatchOp  = TI->getOperand(1);
157     OtherOpT = TI->getOperand(0);
158     OtherOpF = FI->getOperand(0);
159     MatchIsOpZero = false;
160   } else if (!TI->isCommutative()) {
161     return 0;
162   } else if (TI->getOperand(0) == FI->getOperand(1)) {
163     MatchOp  = TI->getOperand(0);
164     OtherOpT = TI->getOperand(1);
165     OtherOpF = FI->getOperand(0);
166     MatchIsOpZero = true;
167   } else if (TI->getOperand(1) == FI->getOperand(0)) {
168     MatchOp  = TI->getOperand(1);
169     OtherOpT = TI->getOperand(0);
170     OtherOpF = FI->getOperand(1);
171     MatchIsOpZero = true;
172   } else {
173     return 0;
174   }
175
176   // If we reach here, they do have operations in common.
177   SelectInst *NewSI = SelectInst::Create(SI.getCondition(), OtherOpT,
178                                          OtherOpF, SI.getName()+".v");
179   InsertNewInstBefore(NewSI, SI);
180
181   if (BinaryOperator *BO = dyn_cast<BinaryOperator>(TI)) {
182     if (MatchIsOpZero)
183       return BinaryOperator::Create(BO->getOpcode(), MatchOp, NewSI);
184     else
185       return BinaryOperator::Create(BO->getOpcode(), NewSI, MatchOp);
186   }
187   llvm_unreachable("Shouldn't get here");
188   return 0;
189 }
190
191 static bool isSelect01(Constant *C1, Constant *C2) {
192   ConstantInt *C1I = dyn_cast<ConstantInt>(C1);
193   if (!C1I)
194     return false;
195   ConstantInt *C2I = dyn_cast<ConstantInt>(C2);
196   if (!C2I)
197     return false;
198   if (!C1I->isZero() && !C2I->isZero()) // One side must be zero.
199     return false;
200   return C1I->isOne() || C1I->isAllOnesValue() ||
201          C2I->isOne() || C2I->isAllOnesValue();
202 }
203
204 /// FoldSelectIntoOp - Try fold the select into one of the operands to
205 /// facilitate further optimization.
206 Instruction *InstCombiner::FoldSelectIntoOp(SelectInst &SI, Value *TrueVal,
207                                             Value *FalseVal) {
208   // See the comment above GetSelectFoldableOperands for a description of the
209   // transformation we are doing here.
210   if (Instruction *TVI = dyn_cast<Instruction>(TrueVal)) {
211     if (TVI->hasOneUse() && TVI->getNumOperands() == 2 &&
212         !isa<Constant>(FalseVal)) {
213       if (unsigned SFO = GetSelectFoldableOperands(TVI)) {
214         unsigned OpToFold = 0;
215         if ((SFO & 1) && FalseVal == TVI->getOperand(0)) {
216           OpToFold = 1;
217         } else  if ((SFO & 2) && FalseVal == TVI->getOperand(1)) {
218           OpToFold = 2;
219         }
220
221         if (OpToFold) {
222           Constant *C = GetSelectFoldableConstant(TVI);
223           Value *OOp = TVI->getOperand(2-OpToFold);
224           // Avoid creating select between 2 constants unless it's selecting
225           // between 0, 1 and -1.
226           if (!isa<Constant>(OOp) || isSelect01(C, cast<Constant>(OOp))) {
227             Instruction *NewSel = SelectInst::Create(SI.getCondition(), OOp, C);
228             InsertNewInstBefore(NewSel, SI);
229             NewSel->takeName(TVI);
230             if (BinaryOperator *BO = dyn_cast<BinaryOperator>(TVI))
231               return BinaryOperator::Create(BO->getOpcode(), FalseVal, NewSel);
232             llvm_unreachable("Unknown instruction!!");
233           }
234         }
235       }
236     }
237   }
238
239   if (Instruction *FVI = dyn_cast<Instruction>(FalseVal)) {
240     if (FVI->hasOneUse() && FVI->getNumOperands() == 2 &&
241         !isa<Constant>(TrueVal)) {
242       if (unsigned SFO = GetSelectFoldableOperands(FVI)) {
243         unsigned OpToFold = 0;
244         if ((SFO & 1) && TrueVal == FVI->getOperand(0)) {
245           OpToFold = 1;
246         } else  if ((SFO & 2) && TrueVal == FVI->getOperand(1)) {
247           OpToFold = 2;
248         }
249
250         if (OpToFold) {
251           Constant *C = GetSelectFoldableConstant(FVI);
252           Value *OOp = FVI->getOperand(2-OpToFold);
253           // Avoid creating select between 2 constants unless it's selecting
254           // between 0, 1 and -1.
255           if (!isa<Constant>(OOp) || isSelect01(C, cast<Constant>(OOp))) {
256             Instruction *NewSel = SelectInst::Create(SI.getCondition(), C, OOp);
257             InsertNewInstBefore(NewSel, SI);
258             NewSel->takeName(FVI);
259             if (BinaryOperator *BO = dyn_cast<BinaryOperator>(FVI))
260               return BinaryOperator::Create(BO->getOpcode(), TrueVal, NewSel);
261             llvm_unreachable("Unknown instruction!!");
262           }
263         }
264       }
265     }
266   }
267
268   return 0;
269 }
270
271 /// visitSelectInstWithICmp - Visit a SelectInst that has an
272 /// ICmpInst as its first operand.
273 ///
274 Instruction *InstCombiner::visitSelectInstWithICmp(SelectInst &SI,
275                                                    ICmpInst *ICI) {
276   bool Changed = false;
277   ICmpInst::Predicate Pred = ICI->getPredicate();
278   Value *CmpLHS = ICI->getOperand(0);
279   Value *CmpRHS = ICI->getOperand(1);
280   Value *TrueVal = SI.getTrueValue();
281   Value *FalseVal = SI.getFalseValue();
282
283   // Check cases where the comparison is with a constant that
284   // can be adjusted to fit the min/max idiom. We may edit ICI in
285   // place here, so make sure the select is the only user.
286   if (ICI->hasOneUse())
287     if (ConstantInt *CI = dyn_cast<ConstantInt>(CmpRHS)) {
288       // X < MIN ? T : F  -->  F
289       if ((Pred == ICmpInst::ICMP_SLT || Pred == ICmpInst::ICMP_ULT)
290           && CI->isMinValue(Pred == ICmpInst::ICMP_SLT))
291         return ReplaceInstUsesWith(SI, FalseVal);
292       // X > MAX ? T : F  -->  F
293       else if ((Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_UGT)
294                && CI->isMaxValue(Pred == ICmpInst::ICMP_SGT))
295         return ReplaceInstUsesWith(SI, FalseVal);
296       switch (Pred) {
297       default: break;
298       case ICmpInst::ICMP_ULT:
299       case ICmpInst::ICMP_SLT:
300       case ICmpInst::ICMP_UGT:
301       case ICmpInst::ICMP_SGT: {
302         // These transformations only work for selects over integers.
303         const IntegerType *SelectTy = dyn_cast<IntegerType>(SI.getType());
304         if (!SelectTy)
305           break;
306
307         Constant *AdjustedRHS;
308         if (Pred == ICmpInst::ICMP_UGT || Pred == ICmpInst::ICMP_SGT)
309           AdjustedRHS = ConstantInt::get(CI->getContext(), CI->getValue() + 1);
310         else // (Pred == ICmpInst::ICMP_ULT || Pred == ICmpInst::ICMP_SLT)
311           AdjustedRHS = ConstantInt::get(CI->getContext(), CI->getValue() - 1);
312
313         // X > C ? X : C+1  -->  X < C+1 ? C+1 : X
314         // X < C ? X : C-1  -->  X > C-1 ? C-1 : X
315         if ((CmpLHS == TrueVal && AdjustedRHS == FalseVal) ||
316             (CmpLHS == FalseVal && AdjustedRHS == TrueVal))
317           ; // Nothing to do here. Values match without any sign/zero extension.
318
319         // Types do not match. Instead of calculating this with mixed types
320         // promote all to the larger type. This enables scalar evolution to
321         // analyze this expression.
322         else if (CmpRHS->getType()->getScalarSizeInBits()
323                  < SelectTy->getBitWidth()) {
324           Constant *sextRHS = ConstantExpr::getSExt(AdjustedRHS, SelectTy);
325
326           // X = sext x; x >s c ? X : C+1 --> X = sext x; X <s C+1 ? C+1 : X
327           // X = sext x; x <s c ? X : C-1 --> X = sext x; X >s C-1 ? C-1 : X
328           // X = sext x; x >u c ? X : C+1 --> X = sext x; X <u C+1 ? C+1 : X
329           // X = sext x; x <u c ? X : C-1 --> X = sext x; X >u C-1 ? C-1 : X
330           if (match(TrueVal, m_SExt(m_Specific(CmpLHS))) &&
331                 sextRHS == FalseVal) {
332             CmpLHS = TrueVal;
333             AdjustedRHS = sextRHS;
334           } else if (match(FalseVal, m_SExt(m_Specific(CmpLHS))) &&
335                      sextRHS == TrueVal) {
336             CmpLHS = FalseVal;
337             AdjustedRHS = sextRHS;
338           } else if (ICI->isUnsigned()) {
339             Constant *zextRHS = ConstantExpr::getZExt(AdjustedRHS, SelectTy);
340             // X = zext x; x >u c ? X : C+1 --> X = zext x; X <u C+1 ? C+1 : X
341             // X = zext x; x <u c ? X : C-1 --> X = zext x; X >u C-1 ? C-1 : X
342             // zext + signed compare cannot be changed:
343             //    0xff <s 0x00, but 0x00ff >s 0x0000
344             if (match(TrueVal, m_ZExt(m_Specific(CmpLHS))) &&
345                 zextRHS == FalseVal) {
346               CmpLHS = TrueVal;
347               AdjustedRHS = zextRHS;
348             } else if (match(FalseVal, m_ZExt(m_Specific(CmpLHS))) &&
349                        zextRHS == TrueVal) {
350               CmpLHS = FalseVal;
351               AdjustedRHS = zextRHS;
352             } else
353               break;
354           } else
355             break;
356         } else
357           break;
358
359         Pred = ICmpInst::getSwappedPredicate(Pred);
360         CmpRHS = AdjustedRHS;
361         std::swap(FalseVal, TrueVal);
362         ICI->setPredicate(Pred);
363         ICI->setOperand(0, CmpLHS);
364         ICI->setOperand(1, CmpRHS);
365         SI.setOperand(1, TrueVal);
366         SI.setOperand(2, FalseVal);
367         Changed = true;
368         break;
369       }
370       }
371     }
372
373   // Transform (X >s -1) ? C1 : C2 --> ((X >>s 31) & (C2 - C1)) + C1
374   // and       (X <s  0) ? C2 : C1 --> ((X >>s 31) & (C2 - C1)) + C1
375   // FIXME: Type and constness constraints could be lifted, but we have to
376   //        watch code size carefully. We should consider xor instead of
377   //        sub/add when we decide to do that.
378   if (const IntegerType *Ty = dyn_cast<IntegerType>(CmpLHS->getType())) {
379     if (TrueVal->getType() == Ty) {
380       if (ConstantInt *Cmp = dyn_cast<ConstantInt>(CmpRHS)) {
381         ConstantInt *C1 = NULL, *C2 = NULL;
382         if (Pred == ICmpInst::ICMP_SGT && Cmp->isAllOnesValue()) {
383           C1 = dyn_cast<ConstantInt>(TrueVal);
384           C2 = dyn_cast<ConstantInt>(FalseVal);
385         } else if (Pred == ICmpInst::ICMP_SLT && Cmp->isNullValue()) {
386           C1 = dyn_cast<ConstantInt>(FalseVal);
387           C2 = dyn_cast<ConstantInt>(TrueVal);
388         }
389         if (C1 && C2) {
390           // This shift results in either -1 or 0.
391           Value *AShr = Builder->CreateAShr(CmpLHS, Ty->getBitWidth()-1);
392
393           // Check if we can express the operation with a single or.
394           if (C2->isAllOnesValue())
395             return ReplaceInstUsesWith(SI, Builder->CreateOr(AShr, C1));
396
397           Value *And = Builder->CreateAnd(AShr, C2->getValue()-C1->getValue());
398           return ReplaceInstUsesWith(SI, Builder->CreateAdd(And, C1));
399         }
400       }
401     }
402   }
403
404   if (CmpLHS == TrueVal && CmpRHS == FalseVal) {
405     // Transform (X == Y) ? X : Y  -> Y
406     if (Pred == ICmpInst::ICMP_EQ)
407       return ReplaceInstUsesWith(SI, FalseVal);
408     // Transform (X != Y) ? X : Y  -> X
409     if (Pred == ICmpInst::ICMP_NE)
410       return ReplaceInstUsesWith(SI, TrueVal);
411     /// NOTE: if we wanted to, this is where to detect integer MIN/MAX
412
413   } else if (CmpLHS == FalseVal && CmpRHS == TrueVal) {
414     // Transform (X == Y) ? Y : X  -> X
415     if (Pred == ICmpInst::ICMP_EQ)
416       return ReplaceInstUsesWith(SI, FalseVal);
417     // Transform (X != Y) ? Y : X  -> Y
418     if (Pred == ICmpInst::ICMP_NE)
419       return ReplaceInstUsesWith(SI, TrueVal);
420     /// NOTE: if we wanted to, this is where to detect integer MIN/MAX
421   }
422   return Changed ? &SI : 0;
423 }
424
425
426 /// CanSelectOperandBeMappingIntoPredBlock - SI is a select whose condition is a
427 /// PHI node (but the two may be in different blocks).  See if the true/false
428 /// values (V) are live in all of the predecessor blocks of the PHI.  For
429 /// example, cases like this cannot be mapped:
430 ///
431 ///   X = phi [ C1, BB1], [C2, BB2]
432 ///   Y = add
433 ///   Z = select X, Y, 0
434 ///
435 /// because Y is not live in BB1/BB2.
436 ///
437 static bool CanSelectOperandBeMappingIntoPredBlock(const Value *V,
438                                                    const SelectInst &SI) {
439   // If the value is a non-instruction value like a constant or argument, it
440   // can always be mapped.
441   const Instruction *I = dyn_cast<Instruction>(V);
442   if (I == 0) return true;
443
444   // If V is a PHI node defined in the same block as the condition PHI, we can
445   // map the arguments.
446   const PHINode *CondPHI = cast<PHINode>(SI.getCondition());
447
448   if (const PHINode *VP = dyn_cast<PHINode>(I))
449     if (VP->getParent() == CondPHI->getParent())
450       return true;
451
452   // Otherwise, if the PHI and select are defined in the same block and if V is
453   // defined in a different block, then we can transform it.
454   if (SI.getParent() == CondPHI->getParent() &&
455       I->getParent() != CondPHI->getParent())
456     return true;
457
458   // Otherwise we have a 'hard' case and we can't tell without doing more
459   // detailed dominator based analysis, punt.
460   return false;
461 }
462
463 /// FoldSPFofSPF - We have an SPF (e.g. a min or max) of an SPF of the form:
464 ///   SPF2(SPF1(A, B), C)
465 Instruction *InstCombiner::FoldSPFofSPF(Instruction *Inner,
466                                         SelectPatternFlavor SPF1,
467                                         Value *A, Value *B,
468                                         Instruction &Outer,
469                                         SelectPatternFlavor SPF2, Value *C) {
470   if (C == A || C == B) {
471     // MAX(MAX(A, B), B) -> MAX(A, B)
472     // MIN(MIN(a, b), a) -> MIN(a, b)
473     if (SPF1 == SPF2)
474       return ReplaceInstUsesWith(Outer, Inner);
475
476     // MAX(MIN(a, b), a) -> a
477     // MIN(MAX(a, b), a) -> a
478     if ((SPF1 == SPF_SMIN && SPF2 == SPF_SMAX) ||
479         (SPF1 == SPF_SMAX && SPF2 == SPF_SMIN) ||
480         (SPF1 == SPF_UMIN && SPF2 == SPF_UMAX) ||
481         (SPF1 == SPF_UMAX && SPF2 == SPF_UMIN))
482       return ReplaceInstUsesWith(Outer, C);
483   }
484
485   // TODO: MIN(MIN(A, 23), 97)
486   return 0;
487 }
488
489
490 /// foldSelectICmpAnd - If one of the constants is zero (we know they can't
491 /// both be) and we have an icmp instruction with zero, and we have an 'and'
492 /// with the non-constant value and a power of two we can turn the select
493 /// into a shift on the result of the 'and'.
494 static Value *foldSelectICmpAnd(const SelectInst &SI, ConstantInt *TrueVal,
495                                 ConstantInt *FalseVal,
496                                 InstCombiner::BuilderTy *Builder) {
497   const ICmpInst *IC = dyn_cast<ICmpInst>(SI.getCondition());
498   if (!IC || !IC->isEquality())
499     return 0;
500
501   if (ConstantInt *C = dyn_cast<ConstantInt>(IC->getOperand(1)))
502     if (!C->isZero())
503       return 0;
504
505   ConstantInt *AndRHS;
506   Value *LHS = IC->getOperand(0);
507   if (LHS->getType() != SI.getType() ||
508       !match(LHS, m_And(m_Value(), m_ConstantInt(AndRHS))))
509     return 0;
510
511   // If both select arms are non-zero see if we have a select of the form
512   // 'x ? 2^n + C : C'. Then we can offset both arms by C, use the logic
513   // for 'x ? 2^n : 0' and fix the thing up at the end.
514   ConstantInt *Offset = 0;
515   if (!TrueVal->isZero() && !FalseVal->isZero()) {
516     if ((TrueVal->getValue() - FalseVal->getValue()).isPowerOf2())
517       Offset = FalseVal;
518     else if ((FalseVal->getValue() - TrueVal->getValue()).isPowerOf2())
519       Offset = TrueVal;
520     else
521       return 0;
522
523     // Adjust TrueVal and FalseVal to the offset.
524     TrueVal = ConstantInt::get(Builder->getContext(),
525                                TrueVal->getValue() - Offset->getValue());
526     FalseVal = ConstantInt::get(Builder->getContext(),
527                                 FalseVal->getValue() - Offset->getValue());
528   }
529
530   // Make sure the mask in the 'and' and one of the select arms is a power of 2.
531   if (!AndRHS->getValue().isPowerOf2() ||
532       (!TrueVal->getValue().isPowerOf2() &&
533        !FalseVal->getValue().isPowerOf2()))
534     return 0;
535
536   // Determine which shift is needed to transform result of the 'and' into the
537   // desired result.
538   ConstantInt *ValC = !TrueVal->isZero() ? TrueVal : FalseVal;
539   unsigned ValZeros = ValC->getValue().logBase2();
540   unsigned AndZeros = AndRHS->getValue().logBase2();
541
542   Value *V = LHS;
543   if (ValZeros > AndZeros)
544     V = Builder->CreateShl(V, ValZeros - AndZeros);
545   else if (ValZeros < AndZeros)
546     V = Builder->CreateLShr(V, AndZeros - ValZeros);
547
548   // Okay, now we know that everything is set up, we just don't know whether we
549   // have a icmp_ne or icmp_eq and whether the true or false val is the zero.
550   bool ShouldNotVal = !TrueVal->isZero();
551   ShouldNotVal ^= IC->getPredicate() == ICmpInst::ICMP_NE;
552   if (ShouldNotVal)
553     V = Builder->CreateXor(V, ValC);
554
555   // Apply an offset if needed.
556   if (Offset)
557     V = Builder->CreateAdd(V, Offset);
558   return V;
559 }
560
561 Instruction *InstCombiner::visitSelectInst(SelectInst &SI) {
562   Value *CondVal = SI.getCondition();
563   Value *TrueVal = SI.getTrueValue();
564   Value *FalseVal = SI.getFalseValue();
565
566   if (Value *V = SimplifySelectInst(CondVal, TrueVal, FalseVal, TD))
567     return ReplaceInstUsesWith(SI, V);
568
569   if (SI.getType()->isIntegerTy(1)) {
570     if (ConstantInt *C = dyn_cast<ConstantInt>(TrueVal)) {
571       if (C->getZExtValue()) {
572         // Change: A = select B, true, C --> A = or B, C
573         return BinaryOperator::CreateOr(CondVal, FalseVal);
574       }
575       // Change: A = select B, false, C --> A = and !B, C
576       Value *NotCond =
577         InsertNewInstBefore(BinaryOperator::CreateNot(CondVal,
578                                            "not."+CondVal->getName()), SI);
579       return BinaryOperator::CreateAnd(NotCond, FalseVal);
580     } else if (ConstantInt *C = dyn_cast<ConstantInt>(FalseVal)) {
581       if (C->getZExtValue() == false) {
582         // Change: A = select B, C, false --> A = and B, C
583         return BinaryOperator::CreateAnd(CondVal, TrueVal);
584       }
585       // Change: A = select B, C, true --> A = or !B, C
586       Value *NotCond =
587         InsertNewInstBefore(BinaryOperator::CreateNot(CondVal,
588                                            "not."+CondVal->getName()), SI);
589       return BinaryOperator::CreateOr(NotCond, TrueVal);
590     }
591
592     // select a, b, a  -> a&b
593     // select a, a, b  -> a|b
594     if (CondVal == TrueVal)
595       return BinaryOperator::CreateOr(CondVal, FalseVal);
596     else if (CondVal == FalseVal)
597       return BinaryOperator::CreateAnd(CondVal, TrueVal);
598   }
599
600   // Selecting between two integer constants?
601   if (ConstantInt *TrueValC = dyn_cast<ConstantInt>(TrueVal))
602     if (ConstantInt *FalseValC = dyn_cast<ConstantInt>(FalseVal)) {
603       // select C, 1, 0 -> zext C to int
604       if (FalseValC->isZero() && TrueValC->getValue() == 1)
605         return new ZExtInst(CondVal, SI.getType());
606
607       // select C, -1, 0 -> sext C to int
608       if (FalseValC->isZero() && TrueValC->isAllOnesValue())
609         return new SExtInst(CondVal, SI.getType());
610
611       // select C, 0, 1 -> zext !C to int
612       if (TrueValC->isZero() && FalseValC->getValue() == 1) {
613         Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName());
614         return new ZExtInst(NotCond, SI.getType());
615       }
616
617       // select C, 0, -1 -> sext !C to int
618       if (TrueValC->isZero() && FalseValC->isAllOnesValue()) {
619         Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName());
620         return new SExtInst(NotCond, SI.getType());
621       }
622
623       if (Value *V = foldSelectICmpAnd(SI, TrueValC, FalseValC, Builder))
624         return ReplaceInstUsesWith(SI, V);
625     }
626
627   // See if we are selecting two values based on a comparison of the two values.
628   if (FCmpInst *FCI = dyn_cast<FCmpInst>(CondVal)) {
629     if (FCI->getOperand(0) == TrueVal && FCI->getOperand(1) == FalseVal) {
630       // Transform (X == Y) ? X : Y  -> Y
631       if (FCI->getPredicate() == FCmpInst::FCMP_OEQ) {
632         // This is not safe in general for floating point:
633         // consider X== -0, Y== +0.
634         // It becomes safe if either operand is a nonzero constant.
635         ConstantFP *CFPt, *CFPf;
636         if (((CFPt = dyn_cast<ConstantFP>(TrueVal)) &&
637               !CFPt->getValueAPF().isZero()) ||
638             ((CFPf = dyn_cast<ConstantFP>(FalseVal)) &&
639              !CFPf->getValueAPF().isZero()))
640         return ReplaceInstUsesWith(SI, FalseVal);
641       }
642       // Transform (X une Y) ? X : Y  -> X
643       if (FCI->getPredicate() == FCmpInst::FCMP_UNE) {
644         // This is not safe in general for floating point:
645         // consider X== -0, Y== +0.
646         // It becomes safe if either operand is a nonzero constant.
647         ConstantFP *CFPt, *CFPf;
648         if (((CFPt = dyn_cast<ConstantFP>(TrueVal)) &&
649               !CFPt->getValueAPF().isZero()) ||
650             ((CFPf = dyn_cast<ConstantFP>(FalseVal)) &&
651              !CFPf->getValueAPF().isZero()))
652         return ReplaceInstUsesWith(SI, TrueVal);
653       }
654       // NOTE: if we wanted to, this is where to detect MIN/MAX
655
656     } else if (FCI->getOperand(0) == FalseVal && FCI->getOperand(1) == TrueVal){
657       // Transform (X == Y) ? Y : X  -> X
658       if (FCI->getPredicate() == FCmpInst::FCMP_OEQ) {
659         // This is not safe in general for floating point:
660         // consider X== -0, Y== +0.
661         // It becomes safe if either operand is a nonzero constant.
662         ConstantFP *CFPt, *CFPf;
663         if (((CFPt = dyn_cast<ConstantFP>(TrueVal)) &&
664               !CFPt->getValueAPF().isZero()) ||
665             ((CFPf = dyn_cast<ConstantFP>(FalseVal)) &&
666              !CFPf->getValueAPF().isZero()))
667           return ReplaceInstUsesWith(SI, FalseVal);
668       }
669       // Transform (X une Y) ? Y : X  -> Y
670       if (FCI->getPredicate() == FCmpInst::FCMP_UNE) {
671         // This is not safe in general for floating point:
672         // consider X== -0, Y== +0.
673         // It becomes safe if either operand is a nonzero constant.
674         ConstantFP *CFPt, *CFPf;
675         if (((CFPt = dyn_cast<ConstantFP>(TrueVal)) &&
676               !CFPt->getValueAPF().isZero()) ||
677             ((CFPf = dyn_cast<ConstantFP>(FalseVal)) &&
678              !CFPf->getValueAPF().isZero()))
679           return ReplaceInstUsesWith(SI, TrueVal);
680       }
681       // NOTE: if we wanted to, this is where to detect MIN/MAX
682     }
683     // NOTE: if we wanted to, this is where to detect ABS
684   }
685
686   // See if we are selecting two values based on a comparison of the two values.
687   if (ICmpInst *ICI = dyn_cast<ICmpInst>(CondVal))
688     if (Instruction *Result = visitSelectInstWithICmp(SI, ICI))
689       return Result;
690
691   if (Instruction *TI = dyn_cast<Instruction>(TrueVal))
692     if (Instruction *FI = dyn_cast<Instruction>(FalseVal))
693       if (TI->hasOneUse() && FI->hasOneUse()) {
694         Instruction *AddOp = 0, *SubOp = 0;
695
696         // Turn (select C, (op X, Y), (op X, Z)) -> (op X, (select C, Y, Z))
697         if (TI->getOpcode() == FI->getOpcode())
698           if (Instruction *IV = FoldSelectOpOp(SI, TI, FI))
699             return IV;
700
701         // Turn select C, (X+Y), (X-Y) --> (X+(select C, Y, (-Y))).  This is
702         // even legal for FP.
703         if ((TI->getOpcode() == Instruction::Sub &&
704              FI->getOpcode() == Instruction::Add) ||
705             (TI->getOpcode() == Instruction::FSub &&
706              FI->getOpcode() == Instruction::FAdd)) {
707           AddOp = FI; SubOp = TI;
708         } else if ((FI->getOpcode() == Instruction::Sub &&
709                     TI->getOpcode() == Instruction::Add) ||
710                    (FI->getOpcode() == Instruction::FSub &&
711                     TI->getOpcode() == Instruction::FAdd)) {
712           AddOp = TI; SubOp = FI;
713         }
714
715         if (AddOp) {
716           Value *OtherAddOp = 0;
717           if (SubOp->getOperand(0) == AddOp->getOperand(0)) {
718             OtherAddOp = AddOp->getOperand(1);
719           } else if (SubOp->getOperand(0) == AddOp->getOperand(1)) {
720             OtherAddOp = AddOp->getOperand(0);
721           }
722
723           if (OtherAddOp) {
724             // So at this point we know we have (Y -> OtherAddOp):
725             //        select C, (add X, Y), (sub X, Z)
726             Value *NegVal;  // Compute -Z
727             if (Constant *C = dyn_cast<Constant>(SubOp->getOperand(1))) {
728               NegVal = ConstantExpr::getNeg(C);
729             } else if (SI.getType()->isFloatingPointTy()) {
730               NegVal = InsertNewInstBefore(
731                     BinaryOperator::CreateFNeg(SubOp->getOperand(1),
732                                               "tmp"), SI);
733             } else {
734               NegVal = InsertNewInstBefore(
735                     BinaryOperator::CreateNeg(SubOp->getOperand(1),
736                                               "tmp"), SI);
737             }
738
739             Value *NewTrueOp = OtherAddOp;
740             Value *NewFalseOp = NegVal;
741             if (AddOp != TI)
742               std::swap(NewTrueOp, NewFalseOp);
743             Instruction *NewSel =
744               SelectInst::Create(CondVal, NewTrueOp,
745                                  NewFalseOp, SI.getName() + ".p");
746
747             NewSel = InsertNewInstBefore(NewSel, SI);
748             if (SI.getType()->isFloatingPointTy())
749               return BinaryOperator::CreateFAdd(SubOp->getOperand(0), NewSel);
750             else
751               return BinaryOperator::CreateAdd(SubOp->getOperand(0), NewSel);
752           }
753         }
754       }
755
756   // See if we can fold the select into one of our operands.
757   if (SI.getType()->isIntegerTy()) {
758     if (Instruction *FoldI = FoldSelectIntoOp(SI, TrueVal, FalseVal))
759       return FoldI;
760
761     // MAX(MAX(a, b), a) -> MAX(a, b)
762     // MIN(MIN(a, b), a) -> MIN(a, b)
763     // MAX(MIN(a, b), a) -> a
764     // MIN(MAX(a, b), a) -> a
765     Value *LHS, *RHS, *LHS2, *RHS2;
766     if (SelectPatternFlavor SPF = MatchSelectPattern(&SI, LHS, RHS)) {
767       if (SelectPatternFlavor SPF2 = MatchSelectPattern(LHS, LHS2, RHS2))
768         if (Instruction *R = FoldSPFofSPF(cast<Instruction>(LHS),SPF2,LHS2,RHS2, 
769                                           SI, SPF, RHS))
770           return R;
771       if (SelectPatternFlavor SPF2 = MatchSelectPattern(RHS, LHS2, RHS2))
772         if (Instruction *R = FoldSPFofSPF(cast<Instruction>(RHS),SPF2,LHS2,RHS2,
773                                           SI, SPF, LHS))
774           return R;
775     }
776
777     // TODO.
778     // ABS(-X) -> ABS(X)
779     // ABS(ABS(X)) -> ABS(X)
780   }
781
782   // See if we can fold the select into a phi node if the condition is a select.
783   if (isa<PHINode>(SI.getCondition()))
784     // The true/false values have to be live in the PHI predecessor's blocks.
785     if (CanSelectOperandBeMappingIntoPredBlock(TrueVal, SI) &&
786         CanSelectOperandBeMappingIntoPredBlock(FalseVal, SI))
787       if (Instruction *NV = FoldOpIntoPhi(SI))
788         return NV;
789
790   if (BinaryOperator::isNot(CondVal)) {
791     SI.setOperand(0, BinaryOperator::getNotArgument(CondVal));
792     SI.setOperand(1, FalseVal);
793     SI.setOperand(2, TrueVal);
794     return &SI;
795   }
796
797   return 0;
798 }