Teach InstCombine to merge (icmp ult (X + CA), C1) | (icmp eq X, C2) into (icmp ult...
[oota-llvm.git] / lib / Transforms / InstCombine / InstCombineAndOrXor.cpp
1 //===- InstCombineAndOrXor.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 visitAnd, visitOr, and visitXor functions.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "InstCombine.h"
15 #include "llvm/Intrinsics.h"
16 #include "llvm/Analysis/InstructionSimplify.h"
17 #include "llvm/Support/PatternMatch.h"
18 using namespace llvm;
19 using namespace PatternMatch;
20
21
22 /// AddOne - Add one to a ConstantInt.
23 static Constant *AddOne(Constant *C) {
24   return ConstantExpr::getAdd(C, ConstantInt::get(C->getType(), 1));
25 }
26 /// SubOne - Subtract one from a ConstantInt.
27 static Constant *SubOne(ConstantInt *C) {
28   return ConstantInt::get(C->getContext(), C->getValue()-1);
29 }
30
31 /// isFreeToInvert - Return true if the specified value is free to invert (apply
32 /// ~ to).  This happens in cases where the ~ can be eliminated.
33 static inline bool isFreeToInvert(Value *V) {
34   // ~(~(X)) -> X.
35   if (BinaryOperator::isNot(V))
36     return true;
37   
38   // Constants can be considered to be not'ed values.
39   if (isa<ConstantInt>(V))
40     return true;
41   
42   // Compares can be inverted if they have a single use.
43   if (CmpInst *CI = dyn_cast<CmpInst>(V))
44     return CI->hasOneUse();
45   
46   return false;
47 }
48
49 static inline Value *dyn_castNotVal(Value *V) {
50   // If this is not(not(x)) don't return that this is a not: we want the two
51   // not's to be folded first.
52   if (BinaryOperator::isNot(V)) {
53     Value *Operand = BinaryOperator::getNotArgument(V);
54     if (!isFreeToInvert(Operand))
55       return Operand;
56   }
57   
58   // Constants can be considered to be not'ed values...
59   if (ConstantInt *C = dyn_cast<ConstantInt>(V))
60     return ConstantInt::get(C->getType(), ~C->getValue());
61   return 0;
62 }
63
64
65 /// getICmpCode - Encode a icmp predicate into a three bit mask.  These bits
66 /// are carefully arranged to allow folding of expressions such as:
67 ///
68 ///      (A < B) | (A > B) --> (A != B)
69 ///
70 /// Note that this is only valid if the first and second predicates have the
71 /// same sign. Is illegal to do: (A u< B) | (A s> B) 
72 ///
73 /// Three bits are used to represent the condition, as follows:
74 ///   0  A > B
75 ///   1  A == B
76 ///   2  A < B
77 ///
78 /// <=>  Value  Definition
79 /// 000     0   Always false
80 /// 001     1   A >  B
81 /// 010     2   A == B
82 /// 011     3   A >= B
83 /// 100     4   A <  B
84 /// 101     5   A != B
85 /// 110     6   A <= B
86 /// 111     7   Always true
87 ///  
88 static unsigned getICmpCode(const ICmpInst *ICI) {
89   switch (ICI->getPredicate()) {
90     // False -> 0
91   case ICmpInst::ICMP_UGT: return 1;  // 001
92   case ICmpInst::ICMP_SGT: return 1;  // 001
93   case ICmpInst::ICMP_EQ:  return 2;  // 010
94   case ICmpInst::ICMP_UGE: return 3;  // 011
95   case ICmpInst::ICMP_SGE: return 3;  // 011
96   case ICmpInst::ICMP_ULT: return 4;  // 100
97   case ICmpInst::ICMP_SLT: return 4;  // 100
98   case ICmpInst::ICMP_NE:  return 5;  // 101
99   case ICmpInst::ICMP_ULE: return 6;  // 110
100   case ICmpInst::ICMP_SLE: return 6;  // 110
101     // True -> 7
102   default:
103     llvm_unreachable("Invalid ICmp predicate!");
104     return 0;
105   }
106 }
107
108 /// getFCmpCode - Similar to getICmpCode but for FCmpInst. This encodes a fcmp
109 /// predicate into a three bit mask. It also returns whether it is an ordered
110 /// predicate by reference.
111 static unsigned getFCmpCode(FCmpInst::Predicate CC, bool &isOrdered) {
112   isOrdered = false;
113   switch (CC) {
114   case FCmpInst::FCMP_ORD: isOrdered = true; return 0;  // 000
115   case FCmpInst::FCMP_UNO:                   return 0;  // 000
116   case FCmpInst::FCMP_OGT: isOrdered = true; return 1;  // 001
117   case FCmpInst::FCMP_UGT:                   return 1;  // 001
118   case FCmpInst::FCMP_OEQ: isOrdered = true; return 2;  // 010
119   case FCmpInst::FCMP_UEQ:                   return 2;  // 010
120   case FCmpInst::FCMP_OGE: isOrdered = true; return 3;  // 011
121   case FCmpInst::FCMP_UGE:                   return 3;  // 011
122   case FCmpInst::FCMP_OLT: isOrdered = true; return 4;  // 100
123   case FCmpInst::FCMP_ULT:                   return 4;  // 100
124   case FCmpInst::FCMP_ONE: isOrdered = true; return 5;  // 101
125   case FCmpInst::FCMP_UNE:                   return 5;  // 101
126   case FCmpInst::FCMP_OLE: isOrdered = true; return 6;  // 110
127   case FCmpInst::FCMP_ULE:                   return 6;  // 110
128     // True -> 7
129   default:
130     // Not expecting FCMP_FALSE and FCMP_TRUE;
131     llvm_unreachable("Unexpected FCmp predicate!");
132     return 0;
133   }
134 }
135
136 /// getICmpValue - This is the complement of getICmpCode, which turns an
137 /// opcode and two operands into either a constant true or false, or a brand 
138 /// new ICmp instruction. The sign is passed in to determine which kind
139 /// of predicate to use in the new icmp instruction.
140 static Value *getICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS,
141                            InstCombiner::BuilderTy *Builder) {
142   CmpInst::Predicate Pred;
143   switch (Code) {
144   default: assert(0 && "Illegal ICmp code!");
145   case 0: // False.
146     return ConstantInt::get(CmpInst::makeCmpResultType(LHS->getType()), 0);
147   case 1: Pred = Sign ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT; break;
148   case 2: Pred = ICmpInst::ICMP_EQ; break;
149   case 3: Pred = Sign ? ICmpInst::ICMP_SGE : ICmpInst::ICMP_UGE; break;
150   case 4: Pred = Sign ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT; break;
151   case 5: Pred = ICmpInst::ICMP_NE; break;
152   case 6: Pred = Sign ? ICmpInst::ICMP_SLE : ICmpInst::ICMP_ULE; break;
153   case 7: // True.
154     return ConstantInt::get(CmpInst::makeCmpResultType(LHS->getType()), 1);
155   }
156   return Builder->CreateICmp(Pred, LHS, RHS);
157 }
158
159 /// getFCmpValue - This is the complement of getFCmpCode, which turns an
160 /// opcode and two operands into either a FCmp instruction. isordered is passed
161 /// in to determine which kind of predicate to use in the new fcmp instruction.
162 static Value *getFCmpValue(bool isordered, unsigned code,
163                            Value *LHS, Value *RHS,
164                            InstCombiner::BuilderTy *Builder) {
165   CmpInst::Predicate Pred;
166   switch (code) {
167   default: assert(0 && "Illegal FCmp code!");
168   case 0: Pred = isordered ? FCmpInst::FCMP_ORD : FCmpInst::FCMP_UNO; break;
169   case 1: Pred = isordered ? FCmpInst::FCMP_OGT : FCmpInst::FCMP_UGT; break;
170   case 2: Pred = isordered ? FCmpInst::FCMP_OEQ : FCmpInst::FCMP_UEQ; break;
171   case 3: Pred = isordered ? FCmpInst::FCMP_OGE : FCmpInst::FCMP_UGE; break;
172   case 4: Pred = isordered ? FCmpInst::FCMP_OLT : FCmpInst::FCMP_ULT; break;
173   case 5: Pred = isordered ? FCmpInst::FCMP_ONE : FCmpInst::FCMP_UNE; break;
174   case 6: Pred = isordered ? FCmpInst::FCMP_OLE : FCmpInst::FCMP_ULE; break;
175   case 7: return ConstantInt::getTrue(LHS->getContext());
176   }
177   return Builder->CreateFCmp(Pred, LHS, RHS);
178 }
179
180 /// PredicatesFoldable - Return true if both predicates match sign or if at
181 /// least one of them is an equality comparison (which is signless).
182 static bool PredicatesFoldable(ICmpInst::Predicate p1, ICmpInst::Predicate p2) {
183   return (CmpInst::isSigned(p1) == CmpInst::isSigned(p2)) ||
184          (CmpInst::isSigned(p1) && ICmpInst::isEquality(p2)) ||
185          (CmpInst::isSigned(p2) && ICmpInst::isEquality(p1));
186 }
187
188 // OptAndOp - This handles expressions of the form ((val OP C1) & C2).  Where
189 // the Op parameter is 'OP', OpRHS is 'C1', and AndRHS is 'C2'.  Op is
190 // guaranteed to be a binary operator.
191 Instruction *InstCombiner::OptAndOp(Instruction *Op,
192                                     ConstantInt *OpRHS,
193                                     ConstantInt *AndRHS,
194                                     BinaryOperator &TheAnd) {
195   Value *X = Op->getOperand(0);
196   Constant *Together = 0;
197   if (!Op->isShift())
198     Together = ConstantExpr::getAnd(AndRHS, OpRHS);
199
200   switch (Op->getOpcode()) {
201   case Instruction::Xor:
202     if (Op->hasOneUse()) {
203       // (X ^ C1) & C2 --> (X & C2) ^ (C1&C2)
204       Value *And = Builder->CreateAnd(X, AndRHS);
205       And->takeName(Op);
206       return BinaryOperator::CreateXor(And, Together);
207     }
208     break;
209   case Instruction::Or:
210     if (Op->hasOneUse()){
211       if (Together != OpRHS) {
212         // (X | C1) & C2 --> (X | (C1&C2)) & C2
213         Value *Or = Builder->CreateOr(X, Together);
214         Or->takeName(Op);
215         return BinaryOperator::CreateAnd(Or, AndRHS);
216       }
217       
218       ConstantInt *TogetherCI = dyn_cast<ConstantInt>(Together);
219       if (TogetherCI && !TogetherCI->isZero()){
220         // (X | C1) & C2 --> (X & (C2^(C1&C2))) | C1
221         // NOTE: This reduces the number of bits set in the & mask, which
222         // can expose opportunities for store narrowing.
223         Together = ConstantExpr::getXor(AndRHS, Together);
224         Value *And = Builder->CreateAnd(X, Together);
225         And->takeName(Op);
226         return BinaryOperator::CreateOr(And, OpRHS);
227       }
228     }
229     
230     break;
231   case Instruction::Add:
232     if (Op->hasOneUse()) {
233       // Adding a one to a single bit bit-field should be turned into an XOR
234       // of the bit.  First thing to check is to see if this AND is with a
235       // single bit constant.
236       const APInt &AndRHSV = cast<ConstantInt>(AndRHS)->getValue();
237
238       // If there is only one bit set.
239       if (AndRHSV.isPowerOf2()) {
240         // Ok, at this point, we know that we are masking the result of the
241         // ADD down to exactly one bit.  If the constant we are adding has
242         // no bits set below this bit, then we can eliminate the ADD.
243         const APInt& AddRHS = cast<ConstantInt>(OpRHS)->getValue();
244
245         // Check to see if any bits below the one bit set in AndRHSV are set.
246         if ((AddRHS & (AndRHSV-1)) == 0) {
247           // If not, the only thing that can effect the output of the AND is
248           // the bit specified by AndRHSV.  If that bit is set, the effect of
249           // the XOR is to toggle the bit.  If it is clear, then the ADD has
250           // no effect.
251           if ((AddRHS & AndRHSV) == 0) { // Bit is not set, noop
252             TheAnd.setOperand(0, X);
253             return &TheAnd;
254           } else {
255             // Pull the XOR out of the AND.
256             Value *NewAnd = Builder->CreateAnd(X, AndRHS);
257             NewAnd->takeName(Op);
258             return BinaryOperator::CreateXor(NewAnd, AndRHS);
259           }
260         }
261       }
262     }
263     break;
264
265   case Instruction::Shl: {
266     // We know that the AND will not produce any of the bits shifted in, so if
267     // the anded constant includes them, clear them now!
268     //
269     uint32_t BitWidth = AndRHS->getType()->getBitWidth();
270     uint32_t OpRHSVal = OpRHS->getLimitedValue(BitWidth);
271     APInt ShlMask(APInt::getHighBitsSet(BitWidth, BitWidth-OpRHSVal));
272     ConstantInt *CI = ConstantInt::get(AndRHS->getContext(),
273                                        AndRHS->getValue() & ShlMask);
274
275     if (CI->getValue() == ShlMask) { 
276     // Masking out bits that the shift already masks
277       return ReplaceInstUsesWith(TheAnd, Op);   // No need for the and.
278     } else if (CI != AndRHS) {                  // Reducing bits set in and.
279       TheAnd.setOperand(1, CI);
280       return &TheAnd;
281     }
282     break;
283   }
284   case Instruction::LShr: {
285     // We know that the AND will not produce any of the bits shifted in, so if
286     // the anded constant includes them, clear them now!  This only applies to
287     // unsigned shifts, because a signed shr may bring in set bits!
288     //
289     uint32_t BitWidth = AndRHS->getType()->getBitWidth();
290     uint32_t OpRHSVal = OpRHS->getLimitedValue(BitWidth);
291     APInt ShrMask(APInt::getLowBitsSet(BitWidth, BitWidth - OpRHSVal));
292     ConstantInt *CI = ConstantInt::get(Op->getContext(),
293                                        AndRHS->getValue() & ShrMask);
294
295     if (CI->getValue() == ShrMask) {   
296     // Masking out bits that the shift already masks.
297       return ReplaceInstUsesWith(TheAnd, Op);
298     } else if (CI != AndRHS) {
299       TheAnd.setOperand(1, CI);  // Reduce bits set in and cst.
300       return &TheAnd;
301     }
302     break;
303   }
304   case Instruction::AShr:
305     // Signed shr.
306     // See if this is shifting in some sign extension, then masking it out
307     // with an and.
308     if (Op->hasOneUse()) {
309       uint32_t BitWidth = AndRHS->getType()->getBitWidth();
310       uint32_t OpRHSVal = OpRHS->getLimitedValue(BitWidth);
311       APInt ShrMask(APInt::getLowBitsSet(BitWidth, BitWidth - OpRHSVal));
312       Constant *C = ConstantInt::get(Op->getContext(),
313                                      AndRHS->getValue() & ShrMask);
314       if (C == AndRHS) {          // Masking out bits shifted in.
315         // (Val ashr C1) & C2 -> (Val lshr C1) & C2
316         // Make the argument unsigned.
317         Value *ShVal = Op->getOperand(0);
318         ShVal = Builder->CreateLShr(ShVal, OpRHS, Op->getName());
319         return BinaryOperator::CreateAnd(ShVal, AndRHS, TheAnd.getName());
320       }
321     }
322     break;
323   }
324   return 0;
325 }
326
327
328 /// InsertRangeTest - Emit a computation of: (V >= Lo && V < Hi) if Inside is
329 /// true, otherwise (V < Lo || V >= Hi).  In pratice, we emit the more efficient
330 /// (V-Lo) <u Hi-Lo.  This method expects that Lo <= Hi. isSigned indicates
331 /// whether to treat the V, Lo and HI as signed or not. IB is the location to
332 /// insert new instructions.
333 Value *InstCombiner::InsertRangeTest(Value *V, Constant *Lo, Constant *Hi,
334                                      bool isSigned, bool Inside) {
335   assert(cast<ConstantInt>(ConstantExpr::getICmp((isSigned ? 
336             ICmpInst::ICMP_SLE:ICmpInst::ICMP_ULE), Lo, Hi))->getZExtValue() &&
337          "Lo is not <= Hi in range emission code!");
338     
339   if (Inside) {
340     if (Lo == Hi)  // Trivially false.
341       return ConstantInt::getFalse(V->getContext());
342
343     // V >= Min && V < Hi --> V < Hi
344     if (cast<ConstantInt>(Lo)->isMinValue(isSigned)) {
345       ICmpInst::Predicate pred = (isSigned ? 
346         ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT);
347       return Builder->CreateICmp(pred, V, Hi);
348     }
349
350     // Emit V-Lo <u Hi-Lo
351     Constant *NegLo = ConstantExpr::getNeg(Lo);
352     Value *Add = Builder->CreateAdd(V, NegLo, V->getName()+".off");
353     Constant *UpperBound = ConstantExpr::getAdd(NegLo, Hi);
354     return Builder->CreateICmpULT(Add, UpperBound);
355   }
356
357   if (Lo == Hi)  // Trivially true.
358     return ConstantInt::getTrue(V->getContext());
359
360   // V < Min || V >= Hi -> V > Hi-1
361   Hi = SubOne(cast<ConstantInt>(Hi));
362   if (cast<ConstantInt>(Lo)->isMinValue(isSigned)) {
363     ICmpInst::Predicate pred = (isSigned ? 
364         ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT);
365     return Builder->CreateICmp(pred, V, Hi);
366   }
367
368   // Emit V-Lo >u Hi-1-Lo
369   // Note that Hi has already had one subtracted from it, above.
370   ConstantInt *NegLo = cast<ConstantInt>(ConstantExpr::getNeg(Lo));
371   Value *Add = Builder->CreateAdd(V, NegLo, V->getName()+".off");
372   Constant *LowerBound = ConstantExpr::getAdd(NegLo, Hi);
373   return Builder->CreateICmpUGT(Add, LowerBound);
374 }
375
376 // isRunOfOnes - Returns true iff Val consists of one contiguous run of 1s with
377 // any number of 0s on either side.  The 1s are allowed to wrap from LSB to
378 // MSB, so 0x000FFF0, 0x0000FFFF, and 0xFF0000FF are all runs.  0x0F0F0000 is
379 // not, since all 1s are not contiguous.
380 static bool isRunOfOnes(ConstantInt *Val, uint32_t &MB, uint32_t &ME) {
381   const APInt& V = Val->getValue();
382   uint32_t BitWidth = Val->getType()->getBitWidth();
383   if (!APIntOps::isShiftedMask(BitWidth, V)) return false;
384
385   // look for the first zero bit after the run of ones
386   MB = BitWidth - ((V - 1) ^ V).countLeadingZeros();
387   // look for the first non-zero bit
388   ME = V.getActiveBits(); 
389   return true;
390 }
391
392 /// FoldLogicalPlusAnd - This is part of an expression (LHS +/- RHS) & Mask,
393 /// where isSub determines whether the operator is a sub.  If we can fold one of
394 /// the following xforms:
395 /// 
396 /// ((A & N) +/- B) & Mask -> (A +/- B) & Mask iff N&Mask == Mask
397 /// ((A | N) +/- B) & Mask -> (A +/- B) & Mask iff N&Mask == 0
398 /// ((A ^ N) +/- B) & Mask -> (A +/- B) & Mask iff N&Mask == 0
399 ///
400 /// return (A +/- B).
401 ///
402 Value *InstCombiner::FoldLogicalPlusAnd(Value *LHS, Value *RHS,
403                                         ConstantInt *Mask, bool isSub,
404                                         Instruction &I) {
405   Instruction *LHSI = dyn_cast<Instruction>(LHS);
406   if (!LHSI || LHSI->getNumOperands() != 2 ||
407       !isa<ConstantInt>(LHSI->getOperand(1))) return 0;
408
409   ConstantInt *N = cast<ConstantInt>(LHSI->getOperand(1));
410
411   switch (LHSI->getOpcode()) {
412   default: return 0;
413   case Instruction::And:
414     if (ConstantExpr::getAnd(N, Mask) == Mask) {
415       // If the AndRHS is a power of two minus one (0+1+), this is simple.
416       if ((Mask->getValue().countLeadingZeros() + 
417            Mask->getValue().countPopulation()) == 
418           Mask->getValue().getBitWidth())
419         break;
420
421       // Otherwise, if Mask is 0+1+0+, and if B is known to have the low 0+
422       // part, we don't need any explicit masks to take them out of A.  If that
423       // is all N is, ignore it.
424       uint32_t MB = 0, ME = 0;
425       if (isRunOfOnes(Mask, MB, ME)) {  // begin/end bit of run, inclusive
426         uint32_t BitWidth = cast<IntegerType>(RHS->getType())->getBitWidth();
427         APInt Mask(APInt::getLowBitsSet(BitWidth, MB-1));
428         if (MaskedValueIsZero(RHS, Mask))
429           break;
430       }
431     }
432     return 0;
433   case Instruction::Or:
434   case Instruction::Xor:
435     // If the AndRHS is a power of two minus one (0+1+), and N&Mask == 0
436     if ((Mask->getValue().countLeadingZeros() + 
437          Mask->getValue().countPopulation()) == Mask->getValue().getBitWidth()
438         && ConstantExpr::getAnd(N, Mask)->isNullValue())
439       break;
440     return 0;
441   }
442   
443   if (isSub)
444     return Builder->CreateSub(LHSI->getOperand(0), RHS, "fold");
445   return Builder->CreateAdd(LHSI->getOperand(0), RHS, "fold");
446 }
447
448 /// enum for classifying (icmp eq (A & B), C) and (icmp ne (A & B), C)
449 /// One of A and B is considered the mask, the other the value. This is 
450 /// described as the "AMask" or "BMask" part of the enum. If the enum 
451 /// contains only "Mask", then both A and B can be considered masks.
452 /// If A is the mask, then it was proven, that (A & C) == C. This
453 /// is trivial if C == A, or C == 0. If both A and C are constants, this
454 /// proof is also easy.
455 /// For the following explanations we assume that A is the mask.
456 /// The part "AllOnes" declares, that the comparison is true only 
457 /// if (A & B) == A, or all bits of A are set in B.
458 ///   Example: (icmp eq (A & 3), 3) -> FoldMskICmp_AMask_AllOnes
459 /// The part "AllZeroes" declares, that the comparison is true only 
460 /// if (A & B) == 0, or all bits of A are cleared in B.
461 ///   Example: (icmp eq (A & 3), 0) -> FoldMskICmp_Mask_AllZeroes
462 /// The part "Mixed" declares, that (A & B) == C and C might or might not 
463 /// contain any number of one bits and zero bits.
464 ///   Example: (icmp eq (A & 3), 1) -> FoldMskICmp_AMask_Mixed
465 /// The Part "Not" means, that in above descriptions "==" should be replaced
466 /// by "!=".
467 ///   Example: (icmp ne (A & 3), 3) -> FoldMskICmp_AMask_NotAllOnes
468 /// If the mask A contains a single bit, then the following is equivalent:
469 ///    (icmp eq (A & B), A) equals (icmp ne (A & B), 0)
470 ///    (icmp ne (A & B), A) equals (icmp eq (A & B), 0)
471 enum MaskedICmpType {
472   FoldMskICmp_AMask_AllOnes           =     1,
473   FoldMskICmp_AMask_NotAllOnes        =     2,
474   FoldMskICmp_BMask_AllOnes           =     4,
475   FoldMskICmp_BMask_NotAllOnes        =     8,
476   FoldMskICmp_Mask_AllZeroes          =    16,
477   FoldMskICmp_Mask_NotAllZeroes       =    32,
478   FoldMskICmp_AMask_Mixed             =    64,
479   FoldMskICmp_AMask_NotMixed          =   128,
480   FoldMskICmp_BMask_Mixed             =   256,
481   FoldMskICmp_BMask_NotMixed          =   512
482 };
483
484 /// return the set of pattern classes (from MaskedICmpType)
485 /// that (icmp SCC (A & B), C) satisfies
486 static unsigned getTypeOfMaskedICmp(Value* A, Value* B, Value* C, 
487                                     ICmpInst::Predicate SCC)
488 {
489   ConstantInt *ACst = dyn_cast<ConstantInt>(A);
490   ConstantInt *BCst = dyn_cast<ConstantInt>(B);
491   ConstantInt *CCst = dyn_cast<ConstantInt>(C);
492   bool icmp_eq = (SCC == ICmpInst::ICMP_EQ);
493   bool icmp_abit = (ACst != 0 && !ACst->isZero() && 
494                     ACst->getValue().isPowerOf2());
495   bool icmp_bbit = (BCst != 0 && !BCst->isZero() && 
496                     BCst->getValue().isPowerOf2());
497   unsigned result = 0;
498   if (CCst != 0 && CCst->isZero()) {
499     // if C is zero, then both A and B qualify as mask
500     result |= (icmp_eq ? (FoldMskICmp_Mask_AllZeroes |
501                           FoldMskICmp_Mask_AllZeroes |
502                           FoldMskICmp_AMask_Mixed |
503                           FoldMskICmp_BMask_Mixed)
504                        : (FoldMskICmp_Mask_NotAllZeroes |
505                           FoldMskICmp_Mask_NotAllZeroes |
506                           FoldMskICmp_AMask_NotMixed |
507                           FoldMskICmp_BMask_NotMixed));
508     if (icmp_abit)
509       result |= (icmp_eq ? (FoldMskICmp_AMask_NotAllOnes |
510                             FoldMskICmp_AMask_NotMixed) 
511                          : (FoldMskICmp_AMask_AllOnes |
512                             FoldMskICmp_AMask_Mixed));
513     if (icmp_bbit)
514       result |= (icmp_eq ? (FoldMskICmp_BMask_NotAllOnes |
515                             FoldMskICmp_BMask_NotMixed) 
516                          : (FoldMskICmp_BMask_AllOnes |
517                             FoldMskICmp_BMask_Mixed));
518     return result;
519   }
520   if (A == C) {
521     result |= (icmp_eq ? (FoldMskICmp_AMask_AllOnes |
522                           FoldMskICmp_AMask_Mixed)
523                        : (FoldMskICmp_AMask_NotAllOnes |
524                           FoldMskICmp_AMask_NotMixed));
525     if (icmp_abit)
526       result |= (icmp_eq ? (FoldMskICmp_Mask_NotAllZeroes |
527                             FoldMskICmp_AMask_NotMixed)
528                          : (FoldMskICmp_Mask_AllZeroes |
529                             FoldMskICmp_AMask_Mixed));
530   }
531   else if (ACst != 0 && CCst != 0 &&
532         ConstantExpr::getAnd(ACst, CCst) == CCst) {
533     result |= (icmp_eq ? FoldMskICmp_AMask_Mixed
534                        : FoldMskICmp_AMask_NotMixed);
535   }
536   if (B == C) 
537   {
538     result |= (icmp_eq ? (FoldMskICmp_BMask_AllOnes |
539                           FoldMskICmp_BMask_Mixed)
540                        : (FoldMskICmp_BMask_NotAllOnes |
541                           FoldMskICmp_BMask_NotMixed));
542     if (icmp_bbit)
543       result |= (icmp_eq ? (FoldMskICmp_Mask_NotAllZeroes |
544                             FoldMskICmp_BMask_NotMixed) 
545                          : (FoldMskICmp_Mask_AllZeroes |
546                             FoldMskICmp_BMask_Mixed));
547   }
548   else if (BCst != 0 && CCst != 0 &&
549         ConstantExpr::getAnd(BCst, CCst) == CCst) {
550     result |= (icmp_eq ? FoldMskICmp_BMask_Mixed
551                        : FoldMskICmp_BMask_NotMixed);
552   }
553   return result;
554 }
555
556 /// foldLogOpOfMaskedICmpsHelper:
557 /// handle (icmp(A & B) ==/!= C) &/| (icmp(A & D) ==/!= E)
558 /// return the set of pattern classes (from MaskedICmpType)
559 /// that both LHS and RHS satisfy
560 static unsigned foldLogOpOfMaskedICmpsHelper(Value*& A, 
561                                              Value*& B, Value*& C,
562                                              Value*& D, Value*& E,
563                                              ICmpInst *LHS, ICmpInst *RHS) {
564   ICmpInst::Predicate LHSCC = LHS->getPredicate(), RHSCC = RHS->getPredicate();
565   if (LHSCC != ICmpInst::ICMP_EQ && LHSCC != ICmpInst::ICMP_NE) return 0;
566   if (RHSCC != ICmpInst::ICMP_EQ && RHSCC != ICmpInst::ICMP_NE) return 0;
567   if (LHS->getOperand(0)->getType() != RHS->getOperand(0)->getType()) return 0;
568   // vectors are not (yet?) supported
569   if (LHS->getOperand(0)->getType()->isVectorTy()) return 0;
570
571   // Here comes the tricky part:
572   // LHS might be of the form L11 & L12 == X, X == L21 & L22, 
573   // and L11 & L12 == L21 & L22. The same goes for RHS.
574   // Now we must find those components L** and R**, that are equal, so
575   // that we can extract the parameters A, B, C, D, and E for the canonical 
576   // above.
577   Value *L1 = LHS->getOperand(0);
578   Value *L2 = LHS->getOperand(1);
579   Value *L11,*L12,*L21,*L22;
580   if (match(L1, m_And(m_Value(L11), m_Value(L12)))) {
581     if (!match(L2, m_And(m_Value(L21), m_Value(L22))))
582       L21 = L22 = 0;
583   }
584   else {
585     if (!match(L2, m_And(m_Value(L11), m_Value(L12))))
586       return 0;
587     std::swap(L1, L2);
588     L21 = L22 = 0;
589   }
590
591   Value *R1 = RHS->getOperand(0);
592   Value *R2 = RHS->getOperand(1);
593   Value *R11,*R12;
594   bool ok = false;
595   if (match(R1, m_And(m_Value(R11), m_Value(R12)))) {
596     if (R11 != 0 && (R11 == L11 || R11 == L12 || R11 == L21 || R11 == L22)) {
597       A = R11; D = R12; E = R2; ok = true;
598     }
599     else 
600     if (R12 != 0 && (R12 == L11 || R12 == L12 || R12 == L21 || R12 == L22)) {
601       A = R12; D = R11; E = R2; ok = true;
602     }
603   }
604   if (!ok && match(R2, m_And(m_Value(R11), m_Value(R12)))) {
605     if (R11 != 0 && (R11 == L11 || R11 == L12 || R11 == L21 || R11 == L22)) {
606        A = R11; D = R12; E = R1; ok = true;
607     }
608     else 
609     if (R12 != 0 && (R12 == L11 || R12 == L12 || R12 == L21 || R12 == L22)) {
610       A = R12; D = R11; E = R1; ok = true;
611     }
612     else
613       return 0;
614   }
615   if (!ok)
616     return 0;
617
618   if (L11 == A) {
619     B = L12; C = L2;
620   }
621   else if (L12 == A) {
622     B = L11; C = L2;
623   }
624   else if (L21 == A) {
625     B = L22; C = L1;
626   }
627   else if (L22 == A) {
628     B = L21; C = L1;
629   }
630
631   unsigned left_type = getTypeOfMaskedICmp(A, B, C, LHSCC);
632   unsigned right_type = getTypeOfMaskedICmp(A, D, E, RHSCC);
633   return left_type & right_type;
634 }
635 /// foldLogOpOfMaskedICmps:
636 /// try to fold (icmp(A & B) ==/!= C) &/| (icmp(A & D) ==/!= E)
637 /// into a single (icmp(A & X) ==/!= Y)
638 static Value* foldLogOpOfMaskedICmps(ICmpInst *LHS, ICmpInst *RHS,
639                                      ICmpInst::Predicate NEWCC,
640                                      llvm::InstCombiner::BuilderTy* Builder) {
641   Value *A = 0, *B = 0, *C = 0, *D = 0, *E = 0;
642   unsigned mask = foldLogOpOfMaskedICmpsHelper(A, B, C, D, E, LHS, RHS);
643   if (mask == 0) return 0;
644
645   if (NEWCC == ICmpInst::ICMP_NE)
646     mask >>= 1; // treat "Not"-states as normal states
647
648   if (mask & FoldMskICmp_Mask_AllZeroes) {
649     // (icmp eq (A & B), 0) & (icmp eq (A & D), 0) 
650     // -> (icmp eq (A & (B|D)), 0)
651     Value* newOr = Builder->CreateOr(B, D);
652     Value* newAnd = Builder->CreateAnd(A, newOr);
653     // we can't use C as zero, because we might actually handle
654     //   (icmp ne (A & B), B) & (icmp ne (A & D), D) 
655     // with B and D, having a single bit set
656     Value* zero = Constant::getNullValue(A->getType());
657     return Builder->CreateICmp(NEWCC, newAnd, zero);
658   }
659   else if (mask & FoldMskICmp_BMask_AllOnes) {
660     // (icmp eq (A & B), B) & (icmp eq (A & D), D) 
661     // -> (icmp eq (A & (B|D)), (B|D))
662     Value* newOr = Builder->CreateOr(B, D);
663     Value* newAnd = Builder->CreateAnd(A, newOr);
664     return Builder->CreateICmp(NEWCC, newAnd, newOr);
665   }     
666   else if (mask & FoldMskICmp_AMask_AllOnes) {
667     // (icmp eq (A & B), A) & (icmp eq (A & D), A) 
668     // -> (icmp eq (A & (B&D)), A)
669     Value* newAnd1 = Builder->CreateAnd(B, D);
670     Value* newAnd = Builder->CreateAnd(A, newAnd1);
671     return Builder->CreateICmp(NEWCC, newAnd, A);
672   }
673   else if (mask & FoldMskICmp_BMask_Mixed) {
674     // (icmp eq (A & B), C) & (icmp eq (A & D), E) 
675     // We already know that B & C == C && D & E == E.
676     // If we can prove that (B & D) & (C ^ E) == 0, that is, the bits of
677     // C and E, which are shared by both the mask B and the mask D, don't
678     // contradict, then we can transform to
679     // -> (icmp eq (A & (B|D)), (C|E))
680     // Currently, we only handle the case of B, C, D, and E being constant.
681     ConstantInt *BCst = dyn_cast<ConstantInt>(B);
682     if (BCst == 0) return 0;
683     ConstantInt *DCst = dyn_cast<ConstantInt>(D);
684     if (DCst == 0) return 0;
685     // we can't simply use C and E, because we might actually handle
686     //   (icmp ne (A & B), B) & (icmp eq (A & D), D) 
687     // with B and D, having a single bit set
688
689     ConstantInt *CCst = dyn_cast<ConstantInt>(C);
690     if (CCst == 0) return 0;
691     if (LHS->getPredicate() != NEWCC)
692       CCst = dyn_cast<ConstantInt>( ConstantExpr::getXor(BCst, CCst) );
693     ConstantInt *ECst = dyn_cast<ConstantInt>(E);
694     if (ECst == 0) return 0;
695     if (RHS->getPredicate() != NEWCC)
696       ECst = dyn_cast<ConstantInt>( ConstantExpr::getXor(DCst, ECst) );
697     ConstantInt* MCst = dyn_cast<ConstantInt>(
698       ConstantExpr::getAnd(ConstantExpr::getAnd(BCst, DCst),
699                            ConstantExpr::getXor(CCst, ECst)) );
700     // if there is a conflict we should actually return a false for the
701     // whole construct
702     if (!MCst->isZero())
703       return 0;
704     Value* newOr1 = Builder->CreateOr(B, D);
705     Value* newOr2 = ConstantExpr::getOr(CCst, ECst);
706     Value* newAnd = Builder->CreateAnd(A, newOr1);
707     return Builder->CreateICmp(NEWCC, newAnd, newOr2);
708   }
709   return 0;
710 }
711
712 /// FoldAndOfICmps - Fold (icmp)&(icmp) if possible.
713 Value *InstCombiner::FoldAndOfICmps(ICmpInst *LHS, ICmpInst *RHS) {
714   ICmpInst::Predicate LHSCC = LHS->getPredicate(), RHSCC = RHS->getPredicate();
715
716   // (icmp1 A, B) & (icmp2 A, B) --> (icmp3 A, B)
717   if (PredicatesFoldable(LHSCC, RHSCC)) {
718     if (LHS->getOperand(0) == RHS->getOperand(1) &&
719         LHS->getOperand(1) == RHS->getOperand(0))
720       LHS->swapOperands();
721     if (LHS->getOperand(0) == RHS->getOperand(0) &&
722         LHS->getOperand(1) == RHS->getOperand(1)) {
723       Value *Op0 = LHS->getOperand(0), *Op1 = LHS->getOperand(1);
724       unsigned Code = getICmpCode(LHS) & getICmpCode(RHS);
725       bool isSigned = LHS->isSigned() || RHS->isSigned();
726       return getICmpValue(isSigned, Code, Op0, Op1, Builder);
727     }
728   }
729
730   {
731     // handle (roughly):
732     // (icmp eq (A & B), C) & (icmp eq (A & D), E)
733     Value* fold = foldLogOpOfMaskedICmps(LHS, RHS, ICmpInst::ICMP_EQ, Builder);
734     if (fold) return fold;
735   }
736   
737   // This only handles icmp of constants: (icmp1 A, C1) & (icmp2 B, C2).
738   Value *Val = LHS->getOperand(0), *Val2 = RHS->getOperand(0);
739   ConstantInt *LHSCst = dyn_cast<ConstantInt>(LHS->getOperand(1));
740   ConstantInt *RHSCst = dyn_cast<ConstantInt>(RHS->getOperand(1));
741   if (LHSCst == 0 || RHSCst == 0) return 0;
742   
743   if (LHSCst == RHSCst && LHSCC == RHSCC) {
744     // (icmp ult A, C) & (icmp ult B, C) --> (icmp ult (A|B), C)
745     // where C is a power of 2
746     if (LHSCC == ICmpInst::ICMP_ULT &&
747         LHSCst->getValue().isPowerOf2()) {
748       Value *NewOr = Builder->CreateOr(Val, Val2);
749       return Builder->CreateICmp(LHSCC, NewOr, LHSCst);
750     }
751     
752     // (icmp eq A, 0) & (icmp eq B, 0) --> (icmp eq (A|B), 0)
753     if (LHSCC == ICmpInst::ICMP_EQ && LHSCst->isZero()) {
754       Value *NewOr = Builder->CreateOr(Val, Val2);
755       return Builder->CreateICmp(LHSCC, NewOr, LHSCst);
756     }
757   }
758   
759   // From here on, we only handle:
760   //    (icmp1 A, C1) & (icmp2 A, C2) --> something simpler.
761   if (Val != Val2) return 0;
762   
763   // ICMP_[US][GL]E X, CST is folded to ICMP_[US][GL]T elsewhere.
764   if (LHSCC == ICmpInst::ICMP_UGE || LHSCC == ICmpInst::ICMP_ULE ||
765       RHSCC == ICmpInst::ICMP_UGE || RHSCC == ICmpInst::ICMP_ULE ||
766       LHSCC == ICmpInst::ICMP_SGE || LHSCC == ICmpInst::ICMP_SLE ||
767       RHSCC == ICmpInst::ICMP_SGE || RHSCC == ICmpInst::ICMP_SLE)
768     return 0;
769   
770   // We can't fold (ugt x, C) & (sgt x, C2).
771   if (!PredicatesFoldable(LHSCC, RHSCC))
772     return 0;
773     
774   // Ensure that the larger constant is on the RHS.
775   bool ShouldSwap;
776   if (CmpInst::isSigned(LHSCC) ||
777       (ICmpInst::isEquality(LHSCC) && 
778        CmpInst::isSigned(RHSCC)))
779     ShouldSwap = LHSCst->getValue().sgt(RHSCst->getValue());
780   else
781     ShouldSwap = LHSCst->getValue().ugt(RHSCst->getValue());
782     
783   if (ShouldSwap) {
784     std::swap(LHS, RHS);
785     std::swap(LHSCst, RHSCst);
786     std::swap(LHSCC, RHSCC);
787   }
788
789   // At this point, we know we have two icmp instructions
790   // comparing a value against two constants and and'ing the result
791   // together.  Because of the above check, we know that we only have
792   // icmp eq, icmp ne, icmp [su]lt, and icmp [SU]gt here. We also know 
793   // (from the icmp folding check above), that the two constants 
794   // are not equal and that the larger constant is on the RHS
795   assert(LHSCst != RHSCst && "Compares not folded above?");
796
797   switch (LHSCC) {
798   default: llvm_unreachable("Unknown integer condition code!");
799   case ICmpInst::ICMP_EQ:
800     switch (RHSCC) {
801     default: llvm_unreachable("Unknown integer condition code!");
802     case ICmpInst::ICMP_EQ:         // (X == 13 & X == 15) -> false
803     case ICmpInst::ICMP_UGT:        // (X == 13 & X >  15) -> false
804     case ICmpInst::ICMP_SGT:        // (X == 13 & X >  15) -> false
805       return ConstantInt::get(CmpInst::makeCmpResultType(LHS->getType()), 0);
806     case ICmpInst::ICMP_NE:         // (X == 13 & X != 15) -> X == 13
807     case ICmpInst::ICMP_ULT:        // (X == 13 & X <  15) -> X == 13
808     case ICmpInst::ICMP_SLT:        // (X == 13 & X <  15) -> X == 13
809       return LHS;
810     }
811   case ICmpInst::ICMP_NE:
812     switch (RHSCC) {
813     default: llvm_unreachable("Unknown integer condition code!");
814     case ICmpInst::ICMP_ULT:
815       if (LHSCst == SubOne(RHSCst)) // (X != 13 & X u< 14) -> X < 13
816         return Builder->CreateICmpULT(Val, LHSCst);
817       break;                        // (X != 13 & X u< 15) -> no change
818     case ICmpInst::ICMP_SLT:
819       if (LHSCst == SubOne(RHSCst)) // (X != 13 & X s< 14) -> X < 13
820         return Builder->CreateICmpSLT(Val, LHSCst);
821       break;                        // (X != 13 & X s< 15) -> no change
822     case ICmpInst::ICMP_EQ:         // (X != 13 & X == 15) -> X == 15
823     case ICmpInst::ICMP_UGT:        // (X != 13 & X u> 15) -> X u> 15
824     case ICmpInst::ICMP_SGT:        // (X != 13 & X s> 15) -> X s> 15
825       return RHS;
826     case ICmpInst::ICMP_NE:
827       if (LHSCst == SubOne(RHSCst)){// (X != 13 & X != 14) -> X-13 >u 1
828         Constant *AddCST = ConstantExpr::getNeg(LHSCst);
829         Value *Add = Builder->CreateAdd(Val, AddCST, Val->getName()+".off");
830         return Builder->CreateICmpUGT(Add, ConstantInt::get(Add->getType(), 1));
831       }
832       break;                        // (X != 13 & X != 15) -> no change
833     }
834     break;
835   case ICmpInst::ICMP_ULT:
836     switch (RHSCC) {
837     default: llvm_unreachable("Unknown integer condition code!");
838     case ICmpInst::ICMP_EQ:         // (X u< 13 & X == 15) -> false
839     case ICmpInst::ICMP_UGT:        // (X u< 13 & X u> 15) -> false
840       return ConstantInt::get(CmpInst::makeCmpResultType(LHS->getType()), 0);
841     case ICmpInst::ICMP_SGT:        // (X u< 13 & X s> 15) -> no change
842       break;
843     case ICmpInst::ICMP_NE:         // (X u< 13 & X != 15) -> X u< 13
844     case ICmpInst::ICMP_ULT:        // (X u< 13 & X u< 15) -> X u< 13
845       return LHS;
846     case ICmpInst::ICMP_SLT:        // (X u< 13 & X s< 15) -> no change
847       break;
848     }
849     break;
850   case ICmpInst::ICMP_SLT:
851     switch (RHSCC) {
852     default: llvm_unreachable("Unknown integer condition code!");
853     case ICmpInst::ICMP_EQ:         // (X s< 13 & X == 15) -> false
854     case ICmpInst::ICMP_SGT:        // (X s< 13 & X s> 15) -> false
855       return ConstantInt::get(CmpInst::makeCmpResultType(LHS->getType()), 0);
856     case ICmpInst::ICMP_UGT:        // (X s< 13 & X u> 15) -> no change
857       break;
858     case ICmpInst::ICMP_NE:         // (X s< 13 & X != 15) -> X < 13
859     case ICmpInst::ICMP_SLT:        // (X s< 13 & X s< 15) -> X < 13
860       return LHS;
861     case ICmpInst::ICMP_ULT:        // (X s< 13 & X u< 15) -> no change
862       break;
863     }
864     break;
865   case ICmpInst::ICMP_UGT:
866     switch (RHSCC) {
867     default: llvm_unreachable("Unknown integer condition code!");
868     case ICmpInst::ICMP_EQ:         // (X u> 13 & X == 15) -> X == 15
869     case ICmpInst::ICMP_UGT:        // (X u> 13 & X u> 15) -> X u> 15
870       return RHS;
871     case ICmpInst::ICMP_SGT:        // (X u> 13 & X s> 15) -> no change
872       break;
873     case ICmpInst::ICMP_NE:
874       if (RHSCst == AddOne(LHSCst)) // (X u> 13 & X != 14) -> X u> 14
875         return Builder->CreateICmp(LHSCC, Val, RHSCst);
876       break;                        // (X u> 13 & X != 15) -> no change
877     case ICmpInst::ICMP_ULT:        // (X u> 13 & X u< 15) -> (X-14) <u 1
878       return InsertRangeTest(Val, AddOne(LHSCst), RHSCst, false, true);
879     case ICmpInst::ICMP_SLT:        // (X u> 13 & X s< 15) -> no change
880       break;
881     }
882     break;
883   case ICmpInst::ICMP_SGT:
884     switch (RHSCC) {
885     default: llvm_unreachable("Unknown integer condition code!");
886     case ICmpInst::ICMP_EQ:         // (X s> 13 & X == 15) -> X == 15
887     case ICmpInst::ICMP_SGT:        // (X s> 13 & X s> 15) -> X s> 15
888       return RHS;
889     case ICmpInst::ICMP_UGT:        // (X s> 13 & X u> 15) -> no change
890       break;
891     case ICmpInst::ICMP_NE:
892       if (RHSCst == AddOne(LHSCst)) // (X s> 13 & X != 14) -> X s> 14
893         return Builder->CreateICmp(LHSCC, Val, RHSCst);
894       break;                        // (X s> 13 & X != 15) -> no change
895     case ICmpInst::ICMP_SLT:        // (X s> 13 & X s< 15) -> (X-14) s< 1
896       return InsertRangeTest(Val, AddOne(LHSCst), RHSCst, true, true);
897     case ICmpInst::ICMP_ULT:        // (X s> 13 & X u< 15) -> no change
898       break;
899     }
900     break;
901   }
902  
903   return 0;
904 }
905
906 /// FoldAndOfFCmps - Optimize (fcmp)&(fcmp).  NOTE: Unlike the rest of
907 /// instcombine, this returns a Value which should already be inserted into the
908 /// function.
909 Value *InstCombiner::FoldAndOfFCmps(FCmpInst *LHS, FCmpInst *RHS) {
910   if (LHS->getPredicate() == FCmpInst::FCMP_ORD &&
911       RHS->getPredicate() == FCmpInst::FCMP_ORD) {
912     // (fcmp ord x, c) & (fcmp ord y, c)  -> (fcmp ord x, y)
913     if (ConstantFP *LHSC = dyn_cast<ConstantFP>(LHS->getOperand(1)))
914       if (ConstantFP *RHSC = dyn_cast<ConstantFP>(RHS->getOperand(1))) {
915         // If either of the constants are nans, then the whole thing returns
916         // false.
917         if (LHSC->getValueAPF().isNaN() || RHSC->getValueAPF().isNaN())
918           return ConstantInt::getFalse(LHS->getContext());
919         return Builder->CreateFCmpORD(LHS->getOperand(0), RHS->getOperand(0));
920       }
921     
922     // Handle vector zeros.  This occurs because the canonical form of
923     // "fcmp ord x,x" is "fcmp ord x, 0".
924     if (isa<ConstantAggregateZero>(LHS->getOperand(1)) &&
925         isa<ConstantAggregateZero>(RHS->getOperand(1)))
926       return Builder->CreateFCmpORD(LHS->getOperand(0), RHS->getOperand(0));
927     return 0;
928   }
929   
930   Value *Op0LHS = LHS->getOperand(0), *Op0RHS = LHS->getOperand(1);
931   Value *Op1LHS = RHS->getOperand(0), *Op1RHS = RHS->getOperand(1);
932   FCmpInst::Predicate Op0CC = LHS->getPredicate(), Op1CC = RHS->getPredicate();
933   
934   
935   if (Op0LHS == Op1RHS && Op0RHS == Op1LHS) {
936     // Swap RHS operands to match LHS.
937     Op1CC = FCmpInst::getSwappedPredicate(Op1CC);
938     std::swap(Op1LHS, Op1RHS);
939   }
940   
941   if (Op0LHS == Op1LHS && Op0RHS == Op1RHS) {
942     // Simplify (fcmp cc0 x, y) & (fcmp cc1 x, y).
943     if (Op0CC == Op1CC)
944       return Builder->CreateFCmp((FCmpInst::Predicate)Op0CC, Op0LHS, Op0RHS);
945     if (Op0CC == FCmpInst::FCMP_FALSE || Op1CC == FCmpInst::FCMP_FALSE)
946       return ConstantInt::get(CmpInst::makeCmpResultType(LHS->getType()), 0);
947     if (Op0CC == FCmpInst::FCMP_TRUE)
948       return RHS;
949     if (Op1CC == FCmpInst::FCMP_TRUE)
950       return LHS;
951     
952     bool Op0Ordered;
953     bool Op1Ordered;
954     unsigned Op0Pred = getFCmpCode(Op0CC, Op0Ordered);
955     unsigned Op1Pred = getFCmpCode(Op1CC, Op1Ordered);
956     if (Op1Pred == 0) {
957       std::swap(LHS, RHS);
958       std::swap(Op0Pred, Op1Pred);
959       std::swap(Op0Ordered, Op1Ordered);
960     }
961     if (Op0Pred == 0) {
962       // uno && ueq -> uno && (uno || eq) -> ueq
963       // ord && olt -> ord && (ord && lt) -> olt
964       if (Op0Ordered == Op1Ordered)
965         return RHS;
966       
967       // uno && oeq -> uno && (ord && eq) -> false
968       // uno && ord -> false
969       if (!Op0Ordered)
970         return ConstantInt::get(CmpInst::makeCmpResultType(LHS->getType()), 0);
971       // ord && ueq -> ord && (uno || eq) -> oeq
972       return getFCmpValue(true, Op1Pred, Op0LHS, Op0RHS, Builder);
973     }
974   }
975
976   return 0;
977 }
978
979
980 Instruction *InstCombiner::visitAnd(BinaryOperator &I) {
981   bool Changed = SimplifyAssociativeOrCommutative(I);
982   Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
983
984   if (Value *V = SimplifyAndInst(Op0, Op1, TD))
985     return ReplaceInstUsesWith(I, V);
986
987   if (Instruction *NV = SimplifyByFactorizing(I)) // (A|B)&(A|C) -> A|(B&C)
988     return NV;
989
990   // See if we can simplify any instructions used by the instruction whose sole 
991   // purpose is to compute bits we don't care about.
992   if (SimplifyDemandedInstructionBits(I))
993     return &I;  
994
995   if (ConstantInt *AndRHS = dyn_cast<ConstantInt>(Op1)) {
996     const APInt &AndRHSMask = AndRHS->getValue();
997     APInt NotAndRHS(~AndRHSMask);
998
999     // Optimize a variety of ((val OP C1) & C2) combinations...
1000     if (BinaryOperator *Op0I = dyn_cast<BinaryOperator>(Op0)) {
1001       Value *Op0LHS = Op0I->getOperand(0);
1002       Value *Op0RHS = Op0I->getOperand(1);
1003       switch (Op0I->getOpcode()) {
1004       default: break;
1005       case Instruction::Xor:
1006       case Instruction::Or:
1007         // If the mask is only needed on one incoming arm, push it up.
1008         if (!Op0I->hasOneUse()) break;
1009           
1010         if (MaskedValueIsZero(Op0LHS, NotAndRHS)) {
1011           // Not masking anything out for the LHS, move to RHS.
1012           Value *NewRHS = Builder->CreateAnd(Op0RHS, AndRHS,
1013                                              Op0RHS->getName()+".masked");
1014           return BinaryOperator::Create(Op0I->getOpcode(), Op0LHS, NewRHS);
1015         }
1016         if (!isa<Constant>(Op0RHS) &&
1017             MaskedValueIsZero(Op0RHS, NotAndRHS)) {
1018           // Not masking anything out for the RHS, move to LHS.
1019           Value *NewLHS = Builder->CreateAnd(Op0LHS, AndRHS,
1020                                              Op0LHS->getName()+".masked");
1021           return BinaryOperator::Create(Op0I->getOpcode(), NewLHS, Op0RHS);
1022         }
1023
1024         break;
1025       case Instruction::Add:
1026         // ((A & N) + B) & AndRHS -> (A + B) & AndRHS iff N&AndRHS == AndRHS.
1027         // ((A | N) + B) & AndRHS -> (A + B) & AndRHS iff N&AndRHS == 0
1028         // ((A ^ N) + B) & AndRHS -> (A + B) & AndRHS iff N&AndRHS == 0
1029         if (Value *V = FoldLogicalPlusAnd(Op0LHS, Op0RHS, AndRHS, false, I))
1030           return BinaryOperator::CreateAnd(V, AndRHS);
1031         if (Value *V = FoldLogicalPlusAnd(Op0RHS, Op0LHS, AndRHS, false, I))
1032           return BinaryOperator::CreateAnd(V, AndRHS);  // Add commutes
1033         break;
1034
1035       case Instruction::Sub:
1036         // ((A & N) - B) & AndRHS -> (A - B) & AndRHS iff N&AndRHS == AndRHS.
1037         // ((A | N) - B) & AndRHS -> (A - B) & AndRHS iff N&AndRHS == 0
1038         // ((A ^ N) - B) & AndRHS -> (A - B) & AndRHS iff N&AndRHS == 0
1039         if (Value *V = FoldLogicalPlusAnd(Op0LHS, Op0RHS, AndRHS, true, I))
1040           return BinaryOperator::CreateAnd(V, AndRHS);
1041
1042         // (A - N) & AndRHS -> -N & AndRHS iff A&AndRHS==0 and AndRHS
1043         // has 1's for all bits that the subtraction with A might affect.
1044         if (Op0I->hasOneUse()) {
1045           uint32_t BitWidth = AndRHSMask.getBitWidth();
1046           uint32_t Zeros = AndRHSMask.countLeadingZeros();
1047           APInt Mask = APInt::getLowBitsSet(BitWidth, BitWidth - Zeros);
1048
1049           ConstantInt *A = dyn_cast<ConstantInt>(Op0LHS);
1050           if (!(A && A->isZero()) &&               // avoid infinite recursion.
1051               MaskedValueIsZero(Op0LHS, Mask)) {
1052             Value *NewNeg = Builder->CreateNeg(Op0RHS);
1053             return BinaryOperator::CreateAnd(NewNeg, AndRHS);
1054           }
1055         }
1056         break;
1057
1058       case Instruction::Shl:
1059       case Instruction::LShr:
1060         // (1 << x) & 1 --> zext(x == 0)
1061         // (1 >> x) & 1 --> zext(x == 0)
1062         if (AndRHSMask == 1 && Op0LHS == AndRHS) {
1063           Value *NewICmp =
1064             Builder->CreateICmpEQ(Op0RHS, Constant::getNullValue(I.getType()));
1065           return new ZExtInst(NewICmp, I.getType());
1066         }
1067         break;
1068       }
1069
1070       if (ConstantInt *Op0CI = dyn_cast<ConstantInt>(Op0I->getOperand(1)))
1071         if (Instruction *Res = OptAndOp(Op0I, Op0CI, AndRHS, I))
1072           return Res;
1073     } else if (CastInst *CI = dyn_cast<CastInst>(Op0)) {
1074       // If this is an integer truncation or change from signed-to-unsigned, and
1075       // if the source is an and/or with immediate, transform it.  This
1076       // frequently occurs for bitfield accesses.
1077       if (Instruction *CastOp = dyn_cast<Instruction>(CI->getOperand(0))) {
1078         if ((isa<TruncInst>(CI) || isa<BitCastInst>(CI)) &&
1079             CastOp->getNumOperands() == 2)
1080           if (ConstantInt *AndCI =dyn_cast<ConstantInt>(CastOp->getOperand(1))){
1081             if (CastOp->getOpcode() == Instruction::And) {
1082               // Change: and (cast (and X, C1) to T), C2
1083               // into  : and (cast X to T), trunc_or_bitcast(C1)&C2
1084               // This will fold the two constants together, which may allow 
1085               // other simplifications.
1086               Value *NewCast = Builder->CreateTruncOrBitCast(
1087                 CastOp->getOperand(0), I.getType(), 
1088                 CastOp->getName()+".shrunk");
1089               // trunc_or_bitcast(C1)&C2
1090               Constant *C3 = ConstantExpr::getTruncOrBitCast(AndCI,I.getType());
1091               C3 = ConstantExpr::getAnd(C3, AndRHS);
1092               return BinaryOperator::CreateAnd(NewCast, C3);
1093             } else if (CastOp->getOpcode() == Instruction::Or) {
1094               // Change: and (cast (or X, C1) to T), C2
1095               // into  : trunc(C1)&C2 iff trunc(C1)&C2 == C2
1096               Constant *C3 = ConstantExpr::getTruncOrBitCast(AndCI,I.getType());
1097               if (ConstantExpr::getAnd(C3, AndRHS) == AndRHS)
1098                 // trunc(C1)&C2
1099                 return ReplaceInstUsesWith(I, AndRHS);
1100             }
1101           }
1102       }
1103     }
1104
1105     // Try to fold constant and into select arguments.
1106     if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
1107       if (Instruction *R = FoldOpIntoSelect(I, SI))
1108         return R;
1109     if (isa<PHINode>(Op0))
1110       if (Instruction *NV = FoldOpIntoPhi(I))
1111         return NV;
1112   }
1113
1114
1115   // (~A & ~B) == (~(A | B)) - De Morgan's Law
1116   if (Value *Op0NotVal = dyn_castNotVal(Op0))
1117     if (Value *Op1NotVal = dyn_castNotVal(Op1))
1118       if (Op0->hasOneUse() && Op1->hasOneUse()) {
1119         Value *Or = Builder->CreateOr(Op0NotVal, Op1NotVal,
1120                                       I.getName()+".demorgan");
1121         return BinaryOperator::CreateNot(Or);
1122       }
1123
1124   {
1125     Value *A = 0, *B = 0, *C = 0, *D = 0;
1126     // (A|B) & ~(A&B) -> A^B
1127     if (match(Op0, m_Or(m_Value(A), m_Value(B))) &&
1128         match(Op1, m_Not(m_And(m_Value(C), m_Value(D)))) &&
1129         ((A == C && B == D) || (A == D && B == C)))
1130       return BinaryOperator::CreateXor(A, B);
1131     
1132     // ~(A&B) & (A|B) -> A^B
1133     if (match(Op1, m_Or(m_Value(A), m_Value(B))) &&
1134         match(Op0, m_Not(m_And(m_Value(C), m_Value(D)))) &&
1135         ((A == C && B == D) || (A == D && B == C)))
1136       return BinaryOperator::CreateXor(A, B);
1137     
1138     if (Op0->hasOneUse() &&
1139         match(Op0, m_Xor(m_Value(A), m_Value(B)))) {
1140       if (A == Op1) {                                // (A^B)&A -> A&(A^B)
1141         I.swapOperands();     // Simplify below
1142         std::swap(Op0, Op1);
1143       } else if (B == Op1) {                         // (A^B)&B -> B&(B^A)
1144         cast<BinaryOperator>(Op0)->swapOperands();
1145         I.swapOperands();     // Simplify below
1146         std::swap(Op0, Op1);
1147       }
1148     }
1149
1150     if (Op1->hasOneUse() &&
1151         match(Op1, m_Xor(m_Value(A), m_Value(B)))) {
1152       if (B == Op0) {                                // B&(A^B) -> B&(B^A)
1153         cast<BinaryOperator>(Op1)->swapOperands();
1154         std::swap(A, B);
1155       }
1156       if (A == Op0)                                // A&(A^B) -> A & ~B
1157         return BinaryOperator::CreateAnd(A, Builder->CreateNot(B, "tmp"));
1158     }
1159
1160     // (A&((~A)|B)) -> A&B
1161     if (match(Op0, m_Or(m_Not(m_Specific(Op1)), m_Value(A))) ||
1162         match(Op0, m_Or(m_Value(A), m_Not(m_Specific(Op1)))))
1163       return BinaryOperator::CreateAnd(A, Op1);
1164     if (match(Op1, m_Or(m_Not(m_Specific(Op0)), m_Value(A))) ||
1165         match(Op1, m_Or(m_Value(A), m_Not(m_Specific(Op0)))))
1166       return BinaryOperator::CreateAnd(A, Op0);
1167   }
1168   
1169   if (ICmpInst *RHS = dyn_cast<ICmpInst>(Op1))
1170     if (ICmpInst *LHS = dyn_cast<ICmpInst>(Op0))
1171       if (Value *Res = FoldAndOfICmps(LHS, RHS))
1172         return ReplaceInstUsesWith(I, Res);
1173   
1174   // If and'ing two fcmp, try combine them into one.
1175   if (FCmpInst *LHS = dyn_cast<FCmpInst>(I.getOperand(0)))
1176     if (FCmpInst *RHS = dyn_cast<FCmpInst>(I.getOperand(1)))
1177       if (Value *Res = FoldAndOfFCmps(LHS, RHS))
1178         return ReplaceInstUsesWith(I, Res);
1179   
1180   
1181   // fold (and (cast A), (cast B)) -> (cast (and A, B))
1182   if (CastInst *Op0C = dyn_cast<CastInst>(Op0))
1183     if (CastInst *Op1C = dyn_cast<CastInst>(Op1)) {
1184       const Type *SrcTy = Op0C->getOperand(0)->getType();
1185       if (Op0C->getOpcode() == Op1C->getOpcode() && // same cast kind ?
1186           SrcTy == Op1C->getOperand(0)->getType() &&
1187           SrcTy->isIntOrIntVectorTy()) {
1188         Value *Op0COp = Op0C->getOperand(0), *Op1COp = Op1C->getOperand(0);
1189         
1190         // Only do this if the casts both really cause code to be generated.
1191         if (ShouldOptimizeCast(Op0C->getOpcode(), Op0COp, I.getType()) &&
1192             ShouldOptimizeCast(Op1C->getOpcode(), Op1COp, I.getType())) {
1193           Value *NewOp = Builder->CreateAnd(Op0COp, Op1COp, I.getName());
1194           return CastInst::Create(Op0C->getOpcode(), NewOp, I.getType());
1195         }
1196         
1197         // If this is and(cast(icmp), cast(icmp)), try to fold this even if the
1198         // cast is otherwise not optimizable.  This happens for vector sexts.
1199         if (ICmpInst *RHS = dyn_cast<ICmpInst>(Op1COp))
1200           if (ICmpInst *LHS = dyn_cast<ICmpInst>(Op0COp))
1201             if (Value *Res = FoldAndOfICmps(LHS, RHS))
1202               return CastInst::Create(Op0C->getOpcode(), Res, I.getType());
1203         
1204         // If this is and(cast(fcmp), cast(fcmp)), try to fold this even if the
1205         // cast is otherwise not optimizable.  This happens for vector sexts.
1206         if (FCmpInst *RHS = dyn_cast<FCmpInst>(Op1COp))
1207           if (FCmpInst *LHS = dyn_cast<FCmpInst>(Op0COp))
1208             if (Value *Res = FoldAndOfFCmps(LHS, RHS))
1209               return CastInst::Create(Op0C->getOpcode(), Res, I.getType());
1210       }
1211     }
1212     
1213   // (X >> Z) & (Y >> Z)  -> (X&Y) >> Z  for all shifts.
1214   if (BinaryOperator *SI1 = dyn_cast<BinaryOperator>(Op1)) {
1215     if (BinaryOperator *SI0 = dyn_cast<BinaryOperator>(Op0))
1216       if (SI0->isShift() && SI0->getOpcode() == SI1->getOpcode() && 
1217           SI0->getOperand(1) == SI1->getOperand(1) &&
1218           (SI0->hasOneUse() || SI1->hasOneUse())) {
1219         Value *NewOp =
1220           Builder->CreateAnd(SI0->getOperand(0), SI1->getOperand(0),
1221                              SI0->getName());
1222         return BinaryOperator::Create(SI1->getOpcode(), NewOp, 
1223                                       SI1->getOperand(1));
1224       }
1225   }
1226
1227   return Changed ? &I : 0;
1228 }
1229
1230 /// CollectBSwapParts - Analyze the specified subexpression and see if it is
1231 /// capable of providing pieces of a bswap.  The subexpression provides pieces
1232 /// of a bswap if it is proven that each of the non-zero bytes in the output of
1233 /// the expression came from the corresponding "byte swapped" byte in some other
1234 /// value.  For example, if the current subexpression is "(shl i32 %X, 24)" then
1235 /// we know that the expression deposits the low byte of %X into the high byte
1236 /// of the bswap result and that all other bytes are zero.  This expression is
1237 /// accepted, the high byte of ByteValues is set to X to indicate a correct
1238 /// match.
1239 ///
1240 /// This function returns true if the match was unsuccessful and false if so.
1241 /// On entry to the function the "OverallLeftShift" is a signed integer value
1242 /// indicating the number of bytes that the subexpression is later shifted.  For
1243 /// example, if the expression is later right shifted by 16 bits, the
1244 /// OverallLeftShift value would be -2 on entry.  This is used to specify which
1245 /// byte of ByteValues is actually being set.
1246 ///
1247 /// Similarly, ByteMask is a bitmask where a bit is clear if its corresponding
1248 /// byte is masked to zero by a user.  For example, in (X & 255), X will be
1249 /// processed with a bytemask of 1.  Because bytemask is 32-bits, this limits
1250 /// this function to working on up to 32-byte (256 bit) values.  ByteMask is
1251 /// always in the local (OverallLeftShift) coordinate space.
1252 ///
1253 static bool CollectBSwapParts(Value *V, int OverallLeftShift, uint32_t ByteMask,
1254                               SmallVector<Value*, 8> &ByteValues) {
1255   if (Instruction *I = dyn_cast<Instruction>(V)) {
1256     // If this is an or instruction, it may be an inner node of the bswap.
1257     if (I->getOpcode() == Instruction::Or) {
1258       return CollectBSwapParts(I->getOperand(0), OverallLeftShift, ByteMask,
1259                                ByteValues) ||
1260              CollectBSwapParts(I->getOperand(1), OverallLeftShift, ByteMask,
1261                                ByteValues);
1262     }
1263   
1264     // If this is a logical shift by a constant multiple of 8, recurse with
1265     // OverallLeftShift and ByteMask adjusted.
1266     if (I->isLogicalShift() && isa<ConstantInt>(I->getOperand(1))) {
1267       unsigned ShAmt = 
1268         cast<ConstantInt>(I->getOperand(1))->getLimitedValue(~0U);
1269       // Ensure the shift amount is defined and of a byte value.
1270       if ((ShAmt & 7) || (ShAmt > 8*ByteValues.size()))
1271         return true;
1272
1273       unsigned ByteShift = ShAmt >> 3;
1274       if (I->getOpcode() == Instruction::Shl) {
1275         // X << 2 -> collect(X, +2)
1276         OverallLeftShift += ByteShift;
1277         ByteMask >>= ByteShift;
1278       } else {
1279         // X >>u 2 -> collect(X, -2)
1280         OverallLeftShift -= ByteShift;
1281         ByteMask <<= ByteShift;
1282         ByteMask &= (~0U >> (32-ByteValues.size()));
1283       }
1284
1285       if (OverallLeftShift >= (int)ByteValues.size()) return true;
1286       if (OverallLeftShift <= -(int)ByteValues.size()) return true;
1287
1288       return CollectBSwapParts(I->getOperand(0), OverallLeftShift, ByteMask, 
1289                                ByteValues);
1290     }
1291
1292     // If this is a logical 'and' with a mask that clears bytes, clear the
1293     // corresponding bytes in ByteMask.
1294     if (I->getOpcode() == Instruction::And &&
1295         isa<ConstantInt>(I->getOperand(1))) {
1296       // Scan every byte of the and mask, seeing if the byte is either 0 or 255.
1297       unsigned NumBytes = ByteValues.size();
1298       APInt Byte(I->getType()->getPrimitiveSizeInBits(), 255);
1299       const APInt &AndMask = cast<ConstantInt>(I->getOperand(1))->getValue();
1300       
1301       for (unsigned i = 0; i != NumBytes; ++i, Byte <<= 8) {
1302         // If this byte is masked out by a later operation, we don't care what
1303         // the and mask is.
1304         if ((ByteMask & (1 << i)) == 0)
1305           continue;
1306         
1307         // If the AndMask is all zeros for this byte, clear the bit.
1308         APInt MaskB = AndMask & Byte;
1309         if (MaskB == 0) {
1310           ByteMask &= ~(1U << i);
1311           continue;
1312         }
1313         
1314         // If the AndMask is not all ones for this byte, it's not a bytezap.
1315         if (MaskB != Byte)
1316           return true;
1317
1318         // Otherwise, this byte is kept.
1319       }
1320
1321       return CollectBSwapParts(I->getOperand(0), OverallLeftShift, ByteMask, 
1322                                ByteValues);
1323     }
1324   }
1325   
1326   // Okay, we got to something that isn't a shift, 'or' or 'and'.  This must be
1327   // the input value to the bswap.  Some observations: 1) if more than one byte
1328   // is demanded from this input, then it could not be successfully assembled
1329   // into a byteswap.  At least one of the two bytes would not be aligned with
1330   // their ultimate destination.
1331   if (!isPowerOf2_32(ByteMask)) return true;
1332   unsigned InputByteNo = CountTrailingZeros_32(ByteMask);
1333   
1334   // 2) The input and ultimate destinations must line up: if byte 3 of an i32
1335   // is demanded, it needs to go into byte 0 of the result.  This means that the
1336   // byte needs to be shifted until it lands in the right byte bucket.  The
1337   // shift amount depends on the position: if the byte is coming from the high
1338   // part of the value (e.g. byte 3) then it must be shifted right.  If from the
1339   // low part, it must be shifted left.
1340   unsigned DestByteNo = InputByteNo + OverallLeftShift;
1341   if (InputByteNo < ByteValues.size()/2) {
1342     if (ByteValues.size()-1-DestByteNo != InputByteNo)
1343       return true;
1344   } else {
1345     if (ByteValues.size()-1-DestByteNo != InputByteNo)
1346       return true;
1347   }
1348   
1349   // If the destination byte value is already defined, the values are or'd
1350   // together, which isn't a bswap (unless it's an or of the same bits).
1351   if (ByteValues[DestByteNo] && ByteValues[DestByteNo] != V)
1352     return true;
1353   ByteValues[DestByteNo] = V;
1354   return false;
1355 }
1356
1357 /// MatchBSwap - Given an OR instruction, check to see if this is a bswap idiom.
1358 /// If so, insert the new bswap intrinsic and return it.
1359 Instruction *InstCombiner::MatchBSwap(BinaryOperator &I) {
1360   const IntegerType *ITy = dyn_cast<IntegerType>(I.getType());
1361   if (!ITy || ITy->getBitWidth() % 16 || 
1362       // ByteMask only allows up to 32-byte values.
1363       ITy->getBitWidth() > 32*8) 
1364     return 0;   // Can only bswap pairs of bytes.  Can't do vectors.
1365   
1366   /// ByteValues - For each byte of the result, we keep track of which value
1367   /// defines each byte.
1368   SmallVector<Value*, 8> ByteValues;
1369   ByteValues.resize(ITy->getBitWidth()/8);
1370     
1371   // Try to find all the pieces corresponding to the bswap.
1372   uint32_t ByteMask = ~0U >> (32-ByteValues.size());
1373   if (CollectBSwapParts(&I, 0, ByteMask, ByteValues))
1374     return 0;
1375   
1376   // Check to see if all of the bytes come from the same value.
1377   Value *V = ByteValues[0];
1378   if (V == 0) return 0;  // Didn't find a byte?  Must be zero.
1379   
1380   // Check to make sure that all of the bytes come from the same value.
1381   for (unsigned i = 1, e = ByteValues.size(); i != e; ++i)
1382     if (ByteValues[i] != V)
1383       return 0;
1384   const Type *Tys[] = { ITy };
1385   Module *M = I.getParent()->getParent()->getParent();
1386   Function *F = Intrinsic::getDeclaration(M, Intrinsic::bswap, Tys, 1);
1387   return CallInst::Create(F, V);
1388 }
1389
1390 /// MatchSelectFromAndOr - We have an expression of the form (A&C)|(B&D).  Check
1391 /// If A is (cond?-1:0) and either B or D is ~(cond?-1,0) or (cond?0,-1), then
1392 /// we can simplify this expression to "cond ? C : D or B".
1393 static Instruction *MatchSelectFromAndOr(Value *A, Value *B,
1394                                          Value *C, Value *D) {
1395   // If A is not a select of -1/0, this cannot match.
1396   Value *Cond = 0;
1397   if (!match(A, m_SExt(m_Value(Cond))) ||
1398       !Cond->getType()->isIntegerTy(1))
1399     return 0;
1400
1401   // ((cond?-1:0)&C) | (B&(cond?0:-1)) -> cond ? C : B.
1402   if (match(D, m_Not(m_SExt(m_Specific(Cond)))))
1403     return SelectInst::Create(Cond, C, B);
1404   if (match(D, m_SExt(m_Not(m_Specific(Cond)))))
1405     return SelectInst::Create(Cond, C, B);
1406   
1407   // ((cond?-1:0)&C) | ((cond?0:-1)&D) -> cond ? C : D.
1408   if (match(B, m_Not(m_SExt(m_Specific(Cond)))))
1409     return SelectInst::Create(Cond, C, D);
1410   if (match(B, m_SExt(m_Not(m_Specific(Cond)))))
1411     return SelectInst::Create(Cond, C, D);
1412   return 0;
1413 }
1414
1415 /// FoldOrOfICmps - Fold (icmp)|(icmp) if possible.
1416 Value *InstCombiner::FoldOrOfICmps(ICmpInst *LHS, ICmpInst *RHS) {
1417   ICmpInst::Predicate LHSCC = LHS->getPredicate(), RHSCC = RHS->getPredicate();
1418
1419   // (icmp1 A, B) | (icmp2 A, B) --> (icmp3 A, B)
1420   if (PredicatesFoldable(LHSCC, RHSCC)) {
1421     if (LHS->getOperand(0) == RHS->getOperand(1) &&
1422         LHS->getOperand(1) == RHS->getOperand(0))
1423       LHS->swapOperands();
1424     if (LHS->getOperand(0) == RHS->getOperand(0) &&
1425         LHS->getOperand(1) == RHS->getOperand(1)) {
1426       Value *Op0 = LHS->getOperand(0), *Op1 = LHS->getOperand(1);
1427       unsigned Code = getICmpCode(LHS) | getICmpCode(RHS);
1428       bool isSigned = LHS->isSigned() || RHS->isSigned();
1429       return getICmpValue(isSigned, Code, Op0, Op1, Builder);
1430     }
1431   }
1432   
1433   {
1434     // handle (roughly):
1435     // (icmp ne (A & B), C) | (icmp ne (A & D), E)
1436     Value* fold = foldLogOpOfMaskedICmps(LHS, RHS, ICmpInst::ICMP_NE, Builder);
1437     if (fold) return fold;
1438   }
1439
1440   // This only handles icmp of constants: (icmp1 A, C1) | (icmp2 B, C2).
1441   Value *Val = LHS->getOperand(0), *Val2 = RHS->getOperand(0);
1442   ConstantInt *LHSCst = dyn_cast<ConstantInt>(LHS->getOperand(1));
1443   ConstantInt *RHSCst = dyn_cast<ConstantInt>(RHS->getOperand(1));
1444   if (LHSCst == 0 || RHSCst == 0) return 0;
1445
1446   if (LHSCst == RHSCst && LHSCC == RHSCC) {
1447     // (icmp ne A, 0) | (icmp ne B, 0) --> (icmp ne (A|B), 0)
1448     if (LHSCC == ICmpInst::ICMP_NE && LHSCst->isZero()) {
1449       Value *NewOr = Builder->CreateOr(Val, Val2);
1450       return Builder->CreateICmp(LHSCC, NewOr, LHSCst);
1451     }
1452   }
1453
1454   // (icmp ult (X + CA), C1) | (icmp eq X, C2) -> (icmp ult (X + CA), C1 + 1)
1455   //   iff C2 + CA == C1.
1456   if (LHSCC == ICmpInst::ICMP_ULT) {
1457     ConstantInt *AddCst;
1458     if (match(Val, m_Add(m_Specific(Val2), m_ConstantInt(AddCst))))
1459       if (RHSCst->getValue() + AddCst->getValue() == LHSCst->getValue())
1460         return Builder->CreateICmp(LHSCC, Val, AddOne(LHSCst));
1461   }
1462
1463   // From here on, we only handle:
1464   //    (icmp1 A, C1) | (icmp2 A, C2) --> something simpler.
1465   if (Val != Val2) return 0;
1466   
1467   // ICMP_[US][GL]E X, CST is folded to ICMP_[US][GL]T elsewhere.
1468   if (LHSCC == ICmpInst::ICMP_UGE || LHSCC == ICmpInst::ICMP_ULE ||
1469       RHSCC == ICmpInst::ICMP_UGE || RHSCC == ICmpInst::ICMP_ULE ||
1470       LHSCC == ICmpInst::ICMP_SGE || LHSCC == ICmpInst::ICMP_SLE ||
1471       RHSCC == ICmpInst::ICMP_SGE || RHSCC == ICmpInst::ICMP_SLE)
1472     return 0;
1473   
1474   // We can't fold (ugt x, C) | (sgt x, C2).
1475   if (!PredicatesFoldable(LHSCC, RHSCC))
1476     return 0;
1477   
1478   // Ensure that the larger constant is on the RHS.
1479   bool ShouldSwap;
1480   if (CmpInst::isSigned(LHSCC) ||
1481       (ICmpInst::isEquality(LHSCC) && 
1482        CmpInst::isSigned(RHSCC)))
1483     ShouldSwap = LHSCst->getValue().sgt(RHSCst->getValue());
1484   else
1485     ShouldSwap = LHSCst->getValue().ugt(RHSCst->getValue());
1486   
1487   if (ShouldSwap) {
1488     std::swap(LHS, RHS);
1489     std::swap(LHSCst, RHSCst);
1490     std::swap(LHSCC, RHSCC);
1491   }
1492   
1493   // At this point, we know we have two icmp instructions
1494   // comparing a value against two constants and or'ing the result
1495   // together.  Because of the above check, we know that we only have
1496   // ICMP_EQ, ICMP_NE, ICMP_LT, and ICMP_GT here. We also know (from the
1497   // icmp folding check above), that the two constants are not
1498   // equal.
1499   assert(LHSCst != RHSCst && "Compares not folded above?");
1500
1501   switch (LHSCC) {
1502   default: llvm_unreachable("Unknown integer condition code!");
1503   case ICmpInst::ICMP_EQ:
1504     switch (RHSCC) {
1505     default: llvm_unreachable("Unknown integer condition code!");
1506     case ICmpInst::ICMP_EQ:
1507       if (LHSCst == SubOne(RHSCst)) {
1508         // (X == 13 | X == 14) -> X-13 <u 2
1509         Constant *AddCST = ConstantExpr::getNeg(LHSCst);
1510         Value *Add = Builder->CreateAdd(Val, AddCST, Val->getName()+".off");
1511         AddCST = ConstantExpr::getSub(AddOne(RHSCst), LHSCst);
1512         return Builder->CreateICmpULT(Add, AddCST);
1513       }
1514       break;                         // (X == 13 | X == 15) -> no change
1515     case ICmpInst::ICMP_UGT:         // (X == 13 | X u> 14) -> no change
1516     case ICmpInst::ICMP_SGT:         // (X == 13 | X s> 14) -> no change
1517       break;
1518     case ICmpInst::ICMP_NE:          // (X == 13 | X != 15) -> X != 15
1519     case ICmpInst::ICMP_ULT:         // (X == 13 | X u< 15) -> X u< 15
1520     case ICmpInst::ICMP_SLT:         // (X == 13 | X s< 15) -> X s< 15
1521       return RHS;
1522     }
1523     break;
1524   case ICmpInst::ICMP_NE:
1525     switch (RHSCC) {
1526     default: llvm_unreachable("Unknown integer condition code!");
1527     case ICmpInst::ICMP_EQ:          // (X != 13 | X == 15) -> X != 13
1528     case ICmpInst::ICMP_UGT:         // (X != 13 | X u> 15) -> X != 13
1529     case ICmpInst::ICMP_SGT:         // (X != 13 | X s> 15) -> X != 13
1530       return LHS;
1531     case ICmpInst::ICMP_NE:          // (X != 13 | X != 15) -> true
1532     case ICmpInst::ICMP_ULT:         // (X != 13 | X u< 15) -> true
1533     case ICmpInst::ICMP_SLT:         // (X != 13 | X s< 15) -> true
1534       return ConstantInt::getTrue(LHS->getContext());
1535     }
1536     break;
1537   case ICmpInst::ICMP_ULT:
1538     switch (RHSCC) {
1539     default: llvm_unreachable("Unknown integer condition code!");
1540     case ICmpInst::ICMP_EQ:         // (X u< 13 | X == 14) -> no change
1541       break;
1542     case ICmpInst::ICMP_UGT:        // (X u< 13 | X u> 15) -> (X-13) u> 2
1543       // If RHSCst is [us]MAXINT, it is always false.  Not handling
1544       // this can cause overflow.
1545       if (RHSCst->isMaxValue(false))
1546         return LHS;
1547       return InsertRangeTest(Val, LHSCst, AddOne(RHSCst), false, false);
1548     case ICmpInst::ICMP_SGT:        // (X u< 13 | X s> 15) -> no change
1549       break;
1550     case ICmpInst::ICMP_NE:         // (X u< 13 | X != 15) -> X != 15
1551     case ICmpInst::ICMP_ULT:        // (X u< 13 | X u< 15) -> X u< 15
1552       return RHS;
1553     case ICmpInst::ICMP_SLT:        // (X u< 13 | X s< 15) -> no change
1554       break;
1555     }
1556     break;
1557   case ICmpInst::ICMP_SLT:
1558     switch (RHSCC) {
1559     default: llvm_unreachable("Unknown integer condition code!");
1560     case ICmpInst::ICMP_EQ:         // (X s< 13 | X == 14) -> no change
1561       break;
1562     case ICmpInst::ICMP_SGT:        // (X s< 13 | X s> 15) -> (X-13) s> 2
1563       // If RHSCst is [us]MAXINT, it is always false.  Not handling
1564       // this can cause overflow.
1565       if (RHSCst->isMaxValue(true))
1566         return LHS;
1567       return InsertRangeTest(Val, LHSCst, AddOne(RHSCst), true, false);
1568     case ICmpInst::ICMP_UGT:        // (X s< 13 | X u> 15) -> no change
1569       break;
1570     case ICmpInst::ICMP_NE:         // (X s< 13 | X != 15) -> X != 15
1571     case ICmpInst::ICMP_SLT:        // (X s< 13 | X s< 15) -> X s< 15
1572       return RHS;
1573     case ICmpInst::ICMP_ULT:        // (X s< 13 | X u< 15) -> no change
1574       break;
1575     }
1576     break;
1577   case ICmpInst::ICMP_UGT:
1578     switch (RHSCC) {
1579     default: llvm_unreachable("Unknown integer condition code!");
1580     case ICmpInst::ICMP_EQ:         // (X u> 13 | X == 15) -> X u> 13
1581     case ICmpInst::ICMP_UGT:        // (X u> 13 | X u> 15) -> X u> 13
1582       return LHS;
1583     case ICmpInst::ICMP_SGT:        // (X u> 13 | X s> 15) -> no change
1584       break;
1585     case ICmpInst::ICMP_NE:         // (X u> 13 | X != 15) -> true
1586     case ICmpInst::ICMP_ULT:        // (X u> 13 | X u< 15) -> true
1587       return ConstantInt::getTrue(LHS->getContext());
1588     case ICmpInst::ICMP_SLT:        // (X u> 13 | X s< 15) -> no change
1589       break;
1590     }
1591     break;
1592   case ICmpInst::ICMP_SGT:
1593     switch (RHSCC) {
1594     default: llvm_unreachable("Unknown integer condition code!");
1595     case ICmpInst::ICMP_EQ:         // (X s> 13 | X == 15) -> X > 13
1596     case ICmpInst::ICMP_SGT:        // (X s> 13 | X s> 15) -> X > 13
1597       return LHS;
1598     case ICmpInst::ICMP_UGT:        // (X s> 13 | X u> 15) -> no change
1599       break;
1600     case ICmpInst::ICMP_NE:         // (X s> 13 | X != 15) -> true
1601     case ICmpInst::ICMP_SLT:        // (X s> 13 | X s< 15) -> true
1602       return ConstantInt::getTrue(LHS->getContext());
1603     case ICmpInst::ICMP_ULT:        // (X s> 13 | X u< 15) -> no change
1604       break;
1605     }
1606     break;
1607   }
1608   return 0;
1609 }
1610
1611 /// FoldOrOfFCmps - Optimize (fcmp)|(fcmp).  NOTE: Unlike the rest of
1612 /// instcombine, this returns a Value which should already be inserted into the
1613 /// function.
1614 Value *InstCombiner::FoldOrOfFCmps(FCmpInst *LHS, FCmpInst *RHS) {
1615   if (LHS->getPredicate() == FCmpInst::FCMP_UNO &&
1616       RHS->getPredicate() == FCmpInst::FCMP_UNO && 
1617       LHS->getOperand(0)->getType() == RHS->getOperand(0)->getType()) {
1618     if (ConstantFP *LHSC = dyn_cast<ConstantFP>(LHS->getOperand(1)))
1619       if (ConstantFP *RHSC = dyn_cast<ConstantFP>(RHS->getOperand(1))) {
1620         // If either of the constants are nans, then the whole thing returns
1621         // true.
1622         if (LHSC->getValueAPF().isNaN() || RHSC->getValueAPF().isNaN())
1623           return ConstantInt::getTrue(LHS->getContext());
1624         
1625         // Otherwise, no need to compare the two constants, compare the
1626         // rest.
1627         return Builder->CreateFCmpUNO(LHS->getOperand(0), RHS->getOperand(0));
1628       }
1629     
1630     // Handle vector zeros.  This occurs because the canonical form of
1631     // "fcmp uno x,x" is "fcmp uno x, 0".
1632     if (isa<ConstantAggregateZero>(LHS->getOperand(1)) &&
1633         isa<ConstantAggregateZero>(RHS->getOperand(1)))
1634       return Builder->CreateFCmpUNO(LHS->getOperand(0), RHS->getOperand(0));
1635     
1636     return 0;
1637   }
1638   
1639   Value *Op0LHS = LHS->getOperand(0), *Op0RHS = LHS->getOperand(1);
1640   Value *Op1LHS = RHS->getOperand(0), *Op1RHS = RHS->getOperand(1);
1641   FCmpInst::Predicate Op0CC = LHS->getPredicate(), Op1CC = RHS->getPredicate();
1642   
1643   if (Op0LHS == Op1RHS && Op0RHS == Op1LHS) {
1644     // Swap RHS operands to match LHS.
1645     Op1CC = FCmpInst::getSwappedPredicate(Op1CC);
1646     std::swap(Op1LHS, Op1RHS);
1647   }
1648   if (Op0LHS == Op1LHS && Op0RHS == Op1RHS) {
1649     // Simplify (fcmp cc0 x, y) | (fcmp cc1 x, y).
1650     if (Op0CC == Op1CC)
1651       return Builder->CreateFCmp((FCmpInst::Predicate)Op0CC, Op0LHS, Op0RHS);
1652     if (Op0CC == FCmpInst::FCMP_TRUE || Op1CC == FCmpInst::FCMP_TRUE)
1653       return ConstantInt::get(CmpInst::makeCmpResultType(LHS->getType()), 1);
1654     if (Op0CC == FCmpInst::FCMP_FALSE)
1655       return RHS;
1656     if (Op1CC == FCmpInst::FCMP_FALSE)
1657       return LHS;
1658     bool Op0Ordered;
1659     bool Op1Ordered;
1660     unsigned Op0Pred = getFCmpCode(Op0CC, Op0Ordered);
1661     unsigned Op1Pred = getFCmpCode(Op1CC, Op1Ordered);
1662     if (Op0Ordered == Op1Ordered) {
1663       // If both are ordered or unordered, return a new fcmp with
1664       // or'ed predicates.
1665       return getFCmpValue(Op0Ordered, Op0Pred|Op1Pred, Op0LHS, Op0RHS, Builder);
1666     }
1667   }
1668   return 0;
1669 }
1670
1671 /// FoldOrWithConstants - This helper function folds:
1672 ///
1673 ///     ((A | B) & C1) | (B & C2)
1674 ///
1675 /// into:
1676 /// 
1677 ///     (A & C1) | B
1678 ///
1679 /// when the XOR of the two constants is "all ones" (-1).
1680 Instruction *InstCombiner::FoldOrWithConstants(BinaryOperator &I, Value *Op,
1681                                                Value *A, Value *B, Value *C) {
1682   ConstantInt *CI1 = dyn_cast<ConstantInt>(C);
1683   if (!CI1) return 0;
1684
1685   Value *V1 = 0;
1686   ConstantInt *CI2 = 0;
1687   if (!match(Op, m_And(m_Value(V1), m_ConstantInt(CI2)))) return 0;
1688
1689   APInt Xor = CI1->getValue() ^ CI2->getValue();
1690   if (!Xor.isAllOnesValue()) return 0;
1691
1692   if (V1 == A || V1 == B) {
1693     Value *NewOp = Builder->CreateAnd((V1 == A) ? B : A, CI1);
1694     return BinaryOperator::CreateOr(NewOp, V1);
1695   }
1696
1697   return 0;
1698 }
1699
1700 Instruction *InstCombiner::visitOr(BinaryOperator &I) {
1701   bool Changed = SimplifyAssociativeOrCommutative(I);
1702   Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
1703
1704   if (Value *V = SimplifyOrInst(Op0, Op1, TD))
1705     return ReplaceInstUsesWith(I, V);
1706
1707   if (Instruction *NV = SimplifyByFactorizing(I)) // (A&B)|(A&C) -> A&(B|C)
1708     return NV;
1709
1710   // See if we can simplify any instructions used by the instruction whose sole 
1711   // purpose is to compute bits we don't care about.
1712   if (SimplifyDemandedInstructionBits(I))
1713     return &I;
1714
1715   if (ConstantInt *RHS = dyn_cast<ConstantInt>(Op1)) {
1716     ConstantInt *C1 = 0; Value *X = 0;
1717     // (X & C1) | C2 --> (X | C2) & (C1|C2)
1718     // iff (C1 & C2) == 0.
1719     if (match(Op0, m_And(m_Value(X), m_ConstantInt(C1))) &&
1720         (RHS->getValue() & C1->getValue()) != 0 &&
1721         Op0->hasOneUse()) {
1722       Value *Or = Builder->CreateOr(X, RHS);
1723       Or->takeName(Op0);
1724       return BinaryOperator::CreateAnd(Or, 
1725                          ConstantInt::get(I.getContext(),
1726                                           RHS->getValue() | C1->getValue()));
1727     }
1728
1729     // (X ^ C1) | C2 --> (X | C2) ^ (C1&~C2)
1730     if (match(Op0, m_Xor(m_Value(X), m_ConstantInt(C1))) &&
1731         Op0->hasOneUse()) {
1732       Value *Or = Builder->CreateOr(X, RHS);
1733       Or->takeName(Op0);
1734       return BinaryOperator::CreateXor(Or,
1735                  ConstantInt::get(I.getContext(),
1736                                   C1->getValue() & ~RHS->getValue()));
1737     }
1738
1739     // Try to fold constant and into select arguments.
1740     if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
1741       if (Instruction *R = FoldOpIntoSelect(I, SI))
1742         return R;
1743
1744     if (isa<PHINode>(Op0))
1745       if (Instruction *NV = FoldOpIntoPhi(I))
1746         return NV;
1747   }
1748
1749   Value *A = 0, *B = 0;
1750   ConstantInt *C1 = 0, *C2 = 0;
1751
1752   // (A | B) | C  and  A | (B | C)                  -> bswap if possible.
1753   // (A >> B) | (C << D)  and  (A << B) | (B >> C)  -> bswap if possible.
1754   if (match(Op0, m_Or(m_Value(), m_Value())) ||
1755       match(Op1, m_Or(m_Value(), m_Value())) ||
1756       (match(Op0, m_Shift(m_Value(), m_Value())) &&
1757        match(Op1, m_Shift(m_Value(), m_Value())))) {
1758     if (Instruction *BSwap = MatchBSwap(I))
1759       return BSwap;
1760   }
1761   
1762   // (X^C)|Y -> (X|Y)^C iff Y&C == 0
1763   if (Op0->hasOneUse() &&
1764       match(Op0, m_Xor(m_Value(A), m_ConstantInt(C1))) &&
1765       MaskedValueIsZero(Op1, C1->getValue())) {
1766     Value *NOr = Builder->CreateOr(A, Op1);
1767     NOr->takeName(Op0);
1768     return BinaryOperator::CreateXor(NOr, C1);
1769   }
1770
1771   // Y|(X^C) -> (X|Y)^C iff Y&C == 0
1772   if (Op1->hasOneUse() &&
1773       match(Op1, m_Xor(m_Value(A), m_ConstantInt(C1))) &&
1774       MaskedValueIsZero(Op0, C1->getValue())) {
1775     Value *NOr = Builder->CreateOr(A, Op0);
1776     NOr->takeName(Op0);
1777     return BinaryOperator::CreateXor(NOr, C1);
1778   }
1779
1780   // (A & C)|(B & D)
1781   Value *C = 0, *D = 0;
1782   if (match(Op0, m_And(m_Value(A), m_Value(C))) &&
1783       match(Op1, m_And(m_Value(B), m_Value(D)))) {
1784     Value *V1 = 0, *V2 = 0;
1785     C1 = dyn_cast<ConstantInt>(C);
1786     C2 = dyn_cast<ConstantInt>(D);
1787     if (C1 && C2) {  // (A & C1)|(B & C2)
1788       // If we have: ((V + N) & C1) | (V & C2)
1789       // .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0
1790       // replace with V+N.
1791       if (C1->getValue() == ~C2->getValue()) {
1792         if ((C2->getValue() & (C2->getValue()+1)) == 0 && // C2 == 0+1+
1793             match(A, m_Add(m_Value(V1), m_Value(V2)))) {
1794           // Add commutes, try both ways.
1795           if (V1 == B && MaskedValueIsZero(V2, C2->getValue()))
1796             return ReplaceInstUsesWith(I, A);
1797           if (V2 == B && MaskedValueIsZero(V1, C2->getValue()))
1798             return ReplaceInstUsesWith(I, A);
1799         }
1800         // Or commutes, try both ways.
1801         if ((C1->getValue() & (C1->getValue()+1)) == 0 &&
1802             match(B, m_Add(m_Value(V1), m_Value(V2)))) {
1803           // Add commutes, try both ways.
1804           if (V1 == A && MaskedValueIsZero(V2, C1->getValue()))
1805             return ReplaceInstUsesWith(I, B);
1806           if (V2 == A && MaskedValueIsZero(V1, C1->getValue()))
1807             return ReplaceInstUsesWith(I, B);
1808         }
1809       }
1810       
1811       if ((C1->getValue() & C2->getValue()) == 0) {
1812         // ((V | N) & C1) | (V & C2) --> (V|N) & (C1|C2)
1813         // iff (C1&C2) == 0 and (N&~C1) == 0
1814         if (match(A, m_Or(m_Value(V1), m_Value(V2))) &&
1815             ((V1 == B && MaskedValueIsZero(V2, ~C1->getValue())) ||  // (V|N)
1816              (V2 == B && MaskedValueIsZero(V1, ~C1->getValue()))))   // (N|V)
1817           return BinaryOperator::CreateAnd(A,
1818                                ConstantInt::get(A->getContext(),
1819                                                 C1->getValue()|C2->getValue()));
1820         // Or commutes, try both ways.
1821         if (match(B, m_Or(m_Value(V1), m_Value(V2))) &&
1822             ((V1 == A && MaskedValueIsZero(V2, ~C2->getValue())) ||  // (V|N)
1823              (V2 == A && MaskedValueIsZero(V1, ~C2->getValue()))))   // (N|V)
1824           return BinaryOperator::CreateAnd(B,
1825                                ConstantInt::get(B->getContext(),
1826                                                 C1->getValue()|C2->getValue()));
1827         
1828         // ((V|C3)&C1) | ((V|C4)&C2) --> (V|C3|C4)&(C1|C2)
1829         // iff (C1&C2) == 0 and (C3&~C1) == 0 and (C4&~C2) == 0.
1830         ConstantInt *C3 = 0, *C4 = 0;
1831         if (match(A, m_Or(m_Value(V1), m_ConstantInt(C3))) &&
1832             (C3->getValue() & ~C1->getValue()) == 0 &&
1833             match(B, m_Or(m_Specific(V1), m_ConstantInt(C4))) &&
1834             (C4->getValue() & ~C2->getValue()) == 0) {
1835           V2 = Builder->CreateOr(V1, ConstantExpr::getOr(C3, C4), "bitfield");
1836           return BinaryOperator::CreateAnd(V2,
1837                                ConstantInt::get(B->getContext(),
1838                                                 C1->getValue()|C2->getValue()));
1839         }
1840       }
1841     }
1842
1843     // (A & (C0?-1:0)) | (B & ~(C0?-1:0)) ->  C0 ? A : B, and commuted variants.
1844     // Don't do this for vector select idioms, the code generator doesn't handle
1845     // them well yet.
1846     if (!I.getType()->isVectorTy()) {
1847       if (Instruction *Match = MatchSelectFromAndOr(A, B, C, D))
1848         return Match;
1849       if (Instruction *Match = MatchSelectFromAndOr(B, A, D, C))
1850         return Match;
1851       if (Instruction *Match = MatchSelectFromAndOr(C, B, A, D))
1852         return Match;
1853       if (Instruction *Match = MatchSelectFromAndOr(D, A, B, C))
1854         return Match;
1855     }
1856
1857     // ((A&~B)|(~A&B)) -> A^B
1858     if ((match(C, m_Not(m_Specific(D))) &&
1859          match(B, m_Not(m_Specific(A)))))
1860       return BinaryOperator::CreateXor(A, D);
1861     // ((~B&A)|(~A&B)) -> A^B
1862     if ((match(A, m_Not(m_Specific(D))) &&
1863          match(B, m_Not(m_Specific(C)))))
1864       return BinaryOperator::CreateXor(C, D);
1865     // ((A&~B)|(B&~A)) -> A^B
1866     if ((match(C, m_Not(m_Specific(B))) &&
1867          match(D, m_Not(m_Specific(A)))))
1868       return BinaryOperator::CreateXor(A, B);
1869     // ((~B&A)|(B&~A)) -> A^B
1870     if ((match(A, m_Not(m_Specific(B))) &&
1871          match(D, m_Not(m_Specific(C)))))
1872       return BinaryOperator::CreateXor(C, B);
1873
1874     // ((A|B)&1)|(B&-2) -> (A&1) | B
1875     if (match(A, m_Or(m_Value(V1), m_Specific(B))) ||
1876         match(A, m_Or(m_Specific(B), m_Value(V1)))) {
1877       Instruction *Ret = FoldOrWithConstants(I, Op1, V1, B, C);
1878       if (Ret) return Ret;
1879     }
1880     // (B&-2)|((A|B)&1) -> (A&1) | B
1881     if (match(B, m_Or(m_Specific(A), m_Value(V1))) ||
1882         match(B, m_Or(m_Value(V1), m_Specific(A)))) {
1883       Instruction *Ret = FoldOrWithConstants(I, Op0, A, V1, D);
1884       if (Ret) return Ret;
1885     }
1886   }
1887   
1888   // (X >> Z) | (Y >> Z)  -> (X|Y) >> Z  for all shifts.
1889   if (BinaryOperator *SI1 = dyn_cast<BinaryOperator>(Op1)) {
1890     if (BinaryOperator *SI0 = dyn_cast<BinaryOperator>(Op0))
1891       if (SI0->isShift() && SI0->getOpcode() == SI1->getOpcode() && 
1892           SI0->getOperand(1) == SI1->getOperand(1) &&
1893           (SI0->hasOneUse() || SI1->hasOneUse())) {
1894         Value *NewOp = Builder->CreateOr(SI0->getOperand(0), SI1->getOperand(0),
1895                                          SI0->getName());
1896         return BinaryOperator::Create(SI1->getOpcode(), NewOp, 
1897                                       SI1->getOperand(1));
1898       }
1899   }
1900
1901   // (~A | ~B) == (~(A & B)) - De Morgan's Law
1902   if (Value *Op0NotVal = dyn_castNotVal(Op0))
1903     if (Value *Op1NotVal = dyn_castNotVal(Op1))
1904       if (Op0->hasOneUse() && Op1->hasOneUse()) {
1905         Value *And = Builder->CreateAnd(Op0NotVal, Op1NotVal,
1906                                         I.getName()+".demorgan");
1907         return BinaryOperator::CreateNot(And);
1908       }
1909
1910   if (ICmpInst *RHS = dyn_cast<ICmpInst>(I.getOperand(1)))
1911     if (ICmpInst *LHS = dyn_cast<ICmpInst>(I.getOperand(0)))
1912       if (Value *Res = FoldOrOfICmps(LHS, RHS))
1913         return ReplaceInstUsesWith(I, Res);
1914     
1915   // (fcmp uno x, c) | (fcmp uno y, c)  -> (fcmp uno x, y)
1916   if (FCmpInst *LHS = dyn_cast<FCmpInst>(I.getOperand(0)))
1917     if (FCmpInst *RHS = dyn_cast<FCmpInst>(I.getOperand(1)))
1918       if (Value *Res = FoldOrOfFCmps(LHS, RHS))
1919         return ReplaceInstUsesWith(I, Res);
1920   
1921   // fold (or (cast A), (cast B)) -> (cast (or A, B))
1922   if (CastInst *Op0C = dyn_cast<CastInst>(Op0)) {
1923     if (CastInst *Op1C = dyn_cast<CastInst>(Op1))
1924       if (Op0C->getOpcode() == Op1C->getOpcode()) {// same cast kind ?
1925         const Type *SrcTy = Op0C->getOperand(0)->getType();
1926         if (SrcTy == Op1C->getOperand(0)->getType() &&
1927             SrcTy->isIntOrIntVectorTy()) {
1928           Value *Op0COp = Op0C->getOperand(0), *Op1COp = Op1C->getOperand(0);
1929
1930           if ((!isa<ICmpInst>(Op0COp) || !isa<ICmpInst>(Op1COp)) &&
1931               // Only do this if the casts both really cause code to be
1932               // generated.
1933               ShouldOptimizeCast(Op0C->getOpcode(), Op0COp, I.getType()) &&
1934               ShouldOptimizeCast(Op1C->getOpcode(), Op1COp, I.getType())) {
1935             Value *NewOp = Builder->CreateOr(Op0COp, Op1COp, I.getName());
1936             return CastInst::Create(Op0C->getOpcode(), NewOp, I.getType());
1937           }
1938           
1939           // If this is or(cast(icmp), cast(icmp)), try to fold this even if the
1940           // cast is otherwise not optimizable.  This happens for vector sexts.
1941           if (ICmpInst *RHS = dyn_cast<ICmpInst>(Op1COp))
1942             if (ICmpInst *LHS = dyn_cast<ICmpInst>(Op0COp))
1943               if (Value *Res = FoldOrOfICmps(LHS, RHS))
1944                 return CastInst::Create(Op0C->getOpcode(), Res, I.getType());
1945           
1946           // If this is or(cast(fcmp), cast(fcmp)), try to fold this even if the
1947           // cast is otherwise not optimizable.  This happens for vector sexts.
1948           if (FCmpInst *RHS = dyn_cast<FCmpInst>(Op1COp))
1949             if (FCmpInst *LHS = dyn_cast<FCmpInst>(Op0COp))
1950               if (Value *Res = FoldOrOfFCmps(LHS, RHS))
1951                 return CastInst::Create(Op0C->getOpcode(), Res, I.getType());
1952         }
1953       }
1954   }
1955   
1956   // Note: If we've gotten to the point of visiting the outer OR, then the
1957   // inner one couldn't be simplified.  If it was a constant, then it won't
1958   // be simplified by a later pass either, so we try swapping the inner/outer
1959   // ORs in the hopes that we'll be able to simplify it this way.
1960   // (X|C) | V --> (X|V) | C
1961   if (Op0->hasOneUse() && !isa<ConstantInt>(Op1) &&
1962       match(Op0, m_Or(m_Value(A), m_ConstantInt(C1)))) {
1963     Value *Inner = Builder->CreateOr(A, Op1);
1964     Inner->takeName(Op0);
1965     return BinaryOperator::CreateOr(Inner, C1);
1966   }
1967   
1968   return Changed ? &I : 0;
1969 }
1970
1971 Instruction *InstCombiner::visitXor(BinaryOperator &I) {
1972   bool Changed = SimplifyAssociativeOrCommutative(I);
1973   Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
1974
1975   if (Value *V = SimplifyXorInst(Op0, Op1, TD))
1976     return ReplaceInstUsesWith(I, V);
1977
1978   if (Instruction *NV = SimplifyByFactorizing(I)) // (A&B)^(A&C) -> A&(B^C)
1979     return NV;
1980
1981   // See if we can simplify any instructions used by the instruction whose sole 
1982   // purpose is to compute bits we don't care about.
1983   if (SimplifyDemandedInstructionBits(I))
1984     return &I;
1985
1986   // Is this a ~ operation?
1987   if (Value *NotOp = dyn_castNotVal(&I)) {
1988     if (BinaryOperator *Op0I = dyn_cast<BinaryOperator>(NotOp)) {
1989       if (Op0I->getOpcode() == Instruction::And || 
1990           Op0I->getOpcode() == Instruction::Or) {
1991         // ~(~X & Y) --> (X | ~Y) - De Morgan's Law
1992         // ~(~X | Y) === (X & ~Y) - De Morgan's Law
1993         if (dyn_castNotVal(Op0I->getOperand(1)))
1994           Op0I->swapOperands();
1995         if (Value *Op0NotVal = dyn_castNotVal(Op0I->getOperand(0))) {
1996           Value *NotY =
1997             Builder->CreateNot(Op0I->getOperand(1),
1998                                Op0I->getOperand(1)->getName()+".not");
1999           if (Op0I->getOpcode() == Instruction::And)
2000             return BinaryOperator::CreateOr(Op0NotVal, NotY);
2001           return BinaryOperator::CreateAnd(Op0NotVal, NotY);
2002         }
2003         
2004         // ~(X & Y) --> (~X | ~Y) - De Morgan's Law
2005         // ~(X | Y) === (~X & ~Y) - De Morgan's Law
2006         if (isFreeToInvert(Op0I->getOperand(0)) && 
2007             isFreeToInvert(Op0I->getOperand(1))) {
2008           Value *NotX =
2009             Builder->CreateNot(Op0I->getOperand(0), "notlhs");
2010           Value *NotY =
2011             Builder->CreateNot(Op0I->getOperand(1), "notrhs");
2012           if (Op0I->getOpcode() == Instruction::And)
2013             return BinaryOperator::CreateOr(NotX, NotY);
2014           return BinaryOperator::CreateAnd(NotX, NotY);
2015         }
2016
2017       } else if (Op0I->getOpcode() == Instruction::AShr) {
2018         // ~(~X >>s Y) --> (X >>s Y)
2019         if (Value *Op0NotVal = dyn_castNotVal(Op0I->getOperand(0)))
2020           return BinaryOperator::CreateAShr(Op0NotVal, Op0I->getOperand(1));
2021       }
2022     }
2023   }
2024   
2025   
2026   if (ConstantInt *RHS = dyn_cast<ConstantInt>(Op1)) {
2027     if (RHS->isOne() && Op0->hasOneUse())
2028       // xor (cmp A, B), true = not (cmp A, B) = !cmp A, B
2029       if (CmpInst *CI = dyn_cast<CmpInst>(Op0))
2030         return CmpInst::Create(CI->getOpcode(),
2031                                CI->getInversePredicate(),
2032                                CI->getOperand(0), CI->getOperand(1));
2033
2034     // fold (xor(zext(cmp)), 1) and (xor(sext(cmp)), -1) to ext(!cmp).
2035     if (CastInst *Op0C = dyn_cast<CastInst>(Op0)) {
2036       if (CmpInst *CI = dyn_cast<CmpInst>(Op0C->getOperand(0))) {
2037         if (CI->hasOneUse() && Op0C->hasOneUse()) {
2038           Instruction::CastOps Opcode = Op0C->getOpcode();
2039           if ((Opcode == Instruction::ZExt || Opcode == Instruction::SExt) &&
2040               (RHS == ConstantExpr::getCast(Opcode, 
2041                                            ConstantInt::getTrue(I.getContext()),
2042                                             Op0C->getDestTy()))) {
2043             CI->setPredicate(CI->getInversePredicate());
2044             return CastInst::Create(Opcode, CI, Op0C->getType());
2045           }
2046         }
2047       }
2048     }
2049
2050     if (BinaryOperator *Op0I = dyn_cast<BinaryOperator>(Op0)) {
2051       // ~(c-X) == X-c-1 == X+(-c-1)
2052       if (Op0I->getOpcode() == Instruction::Sub && RHS->isAllOnesValue())
2053         if (Constant *Op0I0C = dyn_cast<Constant>(Op0I->getOperand(0))) {
2054           Constant *NegOp0I0C = ConstantExpr::getNeg(Op0I0C);
2055           Constant *ConstantRHS = ConstantExpr::getSub(NegOp0I0C,
2056                                       ConstantInt::get(I.getType(), 1));
2057           return BinaryOperator::CreateAdd(Op0I->getOperand(1), ConstantRHS);
2058         }
2059           
2060       if (ConstantInt *Op0CI = dyn_cast<ConstantInt>(Op0I->getOperand(1))) {
2061         if (Op0I->getOpcode() == Instruction::Add) {
2062           // ~(X-c) --> (-c-1)-X
2063           if (RHS->isAllOnesValue()) {
2064             Constant *NegOp0CI = ConstantExpr::getNeg(Op0CI);
2065             return BinaryOperator::CreateSub(
2066                            ConstantExpr::getSub(NegOp0CI,
2067                                       ConstantInt::get(I.getType(), 1)),
2068                                       Op0I->getOperand(0));
2069           } else if (RHS->getValue().isSignBit()) {
2070             // (X + C) ^ signbit -> (X + C + signbit)
2071             Constant *C = ConstantInt::get(I.getContext(),
2072                                            RHS->getValue() + Op0CI->getValue());
2073             return BinaryOperator::CreateAdd(Op0I->getOperand(0), C);
2074
2075           }
2076         } else if (Op0I->getOpcode() == Instruction::Or) {
2077           // (X|C1)^C2 -> X^(C1|C2) iff X&~C1 == 0
2078           if (MaskedValueIsZero(Op0I->getOperand(0), Op0CI->getValue())) {
2079             Constant *NewRHS = ConstantExpr::getOr(Op0CI, RHS);
2080             // Anything in both C1 and C2 is known to be zero, remove it from
2081             // NewRHS.
2082             Constant *CommonBits = ConstantExpr::getAnd(Op0CI, RHS);
2083             NewRHS = ConstantExpr::getAnd(NewRHS, 
2084                                        ConstantExpr::getNot(CommonBits));
2085             Worklist.Add(Op0I);
2086             I.setOperand(0, Op0I->getOperand(0));
2087             I.setOperand(1, NewRHS);
2088             return &I;
2089           }
2090         }
2091       }
2092     }
2093
2094     // Try to fold constant and into select arguments.
2095     if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
2096       if (Instruction *R = FoldOpIntoSelect(I, SI))
2097         return R;
2098     if (isa<PHINode>(Op0))
2099       if (Instruction *NV = FoldOpIntoPhi(I))
2100         return NV;
2101   }
2102
2103   BinaryOperator *Op1I = dyn_cast<BinaryOperator>(Op1);
2104   if (Op1I) {
2105     Value *A, *B;
2106     if (match(Op1I, m_Or(m_Value(A), m_Value(B)))) {
2107       if (A == Op0) {              // B^(B|A) == (A|B)^B
2108         Op1I->swapOperands();
2109         I.swapOperands();
2110         std::swap(Op0, Op1);
2111       } else if (B == Op0) {       // B^(A|B) == (A|B)^B
2112         I.swapOperands();     // Simplified below.
2113         std::swap(Op0, Op1);
2114       }
2115     } else if (match(Op1I, m_And(m_Value(A), m_Value(B))) && 
2116                Op1I->hasOneUse()){
2117       if (A == Op0) {                                      // A^(A&B) -> A^(B&A)
2118         Op1I->swapOperands();
2119         std::swap(A, B);
2120       }
2121       if (B == Op0) {                                      // A^(B&A) -> (B&A)^A
2122         I.swapOperands();     // Simplified below.
2123         std::swap(Op0, Op1);
2124       }
2125     }
2126   }
2127   
2128   BinaryOperator *Op0I = dyn_cast<BinaryOperator>(Op0);
2129   if (Op0I) {
2130     Value *A, *B;
2131     if (match(Op0I, m_Or(m_Value(A), m_Value(B))) &&
2132         Op0I->hasOneUse()) {
2133       if (A == Op1)                                  // (B|A)^B == (A|B)^B
2134         std::swap(A, B);
2135       if (B == Op1)                                  // (A|B)^B == A & ~B
2136         return BinaryOperator::CreateAnd(A, Builder->CreateNot(Op1, "tmp"));
2137     } else if (match(Op0I, m_And(m_Value(A), m_Value(B))) && 
2138                Op0I->hasOneUse()){
2139       if (A == Op1)                                        // (A&B)^A -> (B&A)^A
2140         std::swap(A, B);
2141       if (B == Op1 &&                                      // (B&A)^A == ~B & A
2142           !isa<ConstantInt>(Op1)) {  // Canonical form is (B&C)^C
2143         return BinaryOperator::CreateAnd(Builder->CreateNot(A, "tmp"), Op1);
2144       }
2145     }
2146   }
2147   
2148   // (X >> Z) ^ (Y >> Z)  -> (X^Y) >> Z  for all shifts.
2149   if (Op0I && Op1I && Op0I->isShift() && 
2150       Op0I->getOpcode() == Op1I->getOpcode() && 
2151       Op0I->getOperand(1) == Op1I->getOperand(1) &&
2152       (Op1I->hasOneUse() || Op1I->hasOneUse())) {
2153     Value *NewOp =
2154       Builder->CreateXor(Op0I->getOperand(0), Op1I->getOperand(0),
2155                          Op0I->getName());
2156     return BinaryOperator::Create(Op1I->getOpcode(), NewOp, 
2157                                   Op1I->getOperand(1));
2158   }
2159     
2160   if (Op0I && Op1I) {
2161     Value *A, *B, *C, *D;
2162     // (A & B)^(A | B) -> A ^ B
2163     if (match(Op0I, m_And(m_Value(A), m_Value(B))) &&
2164         match(Op1I, m_Or(m_Value(C), m_Value(D)))) {
2165       if ((A == C && B == D) || (A == D && B == C)) 
2166         return BinaryOperator::CreateXor(A, B);
2167     }
2168     // (A | B)^(A & B) -> A ^ B
2169     if (match(Op0I, m_Or(m_Value(A), m_Value(B))) &&
2170         match(Op1I, m_And(m_Value(C), m_Value(D)))) {
2171       if ((A == C && B == D) || (A == D && B == C)) 
2172         return BinaryOperator::CreateXor(A, B);
2173     }
2174   }
2175
2176   // (icmp1 A, B) ^ (icmp2 A, B) --> (icmp3 A, B)
2177   if (ICmpInst *RHS = dyn_cast<ICmpInst>(I.getOperand(1)))
2178     if (ICmpInst *LHS = dyn_cast<ICmpInst>(I.getOperand(0)))
2179       if (PredicatesFoldable(LHS->getPredicate(), RHS->getPredicate())) {
2180         if (LHS->getOperand(0) == RHS->getOperand(1) &&
2181             LHS->getOperand(1) == RHS->getOperand(0))
2182           LHS->swapOperands();
2183         if (LHS->getOperand(0) == RHS->getOperand(0) &&
2184             LHS->getOperand(1) == RHS->getOperand(1)) {
2185           Value *Op0 = LHS->getOperand(0), *Op1 = LHS->getOperand(1);
2186           unsigned Code = getICmpCode(LHS) ^ getICmpCode(RHS);
2187           bool isSigned = LHS->isSigned() || RHS->isSigned();
2188           return ReplaceInstUsesWith(I, 
2189                                getICmpValue(isSigned, Code, Op0, Op1, Builder));
2190         }
2191       }
2192
2193   // fold (xor (cast A), (cast B)) -> (cast (xor A, B))
2194   if (CastInst *Op0C = dyn_cast<CastInst>(Op0)) {
2195     if (CastInst *Op1C = dyn_cast<CastInst>(Op1))
2196       if (Op0C->getOpcode() == Op1C->getOpcode()) { // same cast kind?
2197         const Type *SrcTy = Op0C->getOperand(0)->getType();
2198         if (SrcTy == Op1C->getOperand(0)->getType() && SrcTy->isIntegerTy() &&
2199             // Only do this if the casts both really cause code to be generated.
2200             ShouldOptimizeCast(Op0C->getOpcode(), Op0C->getOperand(0), 
2201                                I.getType()) &&
2202             ShouldOptimizeCast(Op1C->getOpcode(), Op1C->getOperand(0), 
2203                                I.getType())) {
2204           Value *NewOp = Builder->CreateXor(Op0C->getOperand(0),
2205                                             Op1C->getOperand(0), I.getName());
2206           return CastInst::Create(Op0C->getOpcode(), NewOp, I.getType());
2207         }
2208       }
2209   }
2210
2211   return Changed ? &I : 0;
2212 }