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