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