blob: 68cd424b3e7fb41e7034f544b20aae7848b1af28 [file] [log] [blame]
Chris Lattner0a8191e2010-01-05 07:50:36 +00001//===- InstCombineAndOrXor.cpp --------------------------------------------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Chris Lattner0a8191e2010-01-05 07:50:36 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This file implements the visitAnd, visitOr, and visitXor functions.
10//
11//===----------------------------------------------------------------------===//
12
Chandler Carrutha9174582015-01-22 05:25:13 +000013#include "InstCombineInternal.h"
Craig Topper0aa3a192017-08-14 21:39:51 +000014#include "llvm/Analysis/CmpInstAnalysis.h"
Chris Lattner0a8191e2010-01-05 07:50:36 +000015#include "llvm/Analysis/InstructionSimplify.h"
David Blaikie31b98d22018-06-04 21:23:21 +000016#include "llvm/Transforms/Utils/Local.h"
Chandler Carruth8cd041e2014-03-04 12:24:34 +000017#include "llvm/IR/ConstantRange.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000018#include "llvm/IR/Intrinsics.h"
Chandler Carruth820a9082014-03-04 11:08:18 +000019#include "llvm/IR/PatternMatch.h"
Chris Lattner0a8191e2010-01-05 07:50:36 +000020using namespace llvm;
21using namespace PatternMatch;
22
Chandler Carruth964daaa2014-04-22 02:55:47 +000023#define DEBUG_TYPE "instcombine"
24
Sanjay Patel18549272015-09-08 18:24:36 +000025/// Similar to getICmpCode but for FCmpInst. This encodes a fcmp predicate into
Tim Shenaec68b22016-06-29 20:10:17 +000026/// a four bit mask.
27static unsigned getFCmpCode(FCmpInst::Predicate CC) {
28 assert(FCmpInst::FCMP_FALSE <= CC && CC <= FCmpInst::FCMP_TRUE &&
29 "Unexpected FCmp predicate!");
30 // Take advantage of the bit pattern of FCmpInst::Predicate here.
31 // U L G E
32 static_assert(FCmpInst::FCMP_FALSE == 0, ""); // 0 0 0 0
33 static_assert(FCmpInst::FCMP_OEQ == 1, ""); // 0 0 0 1
34 static_assert(FCmpInst::FCMP_OGT == 2, ""); // 0 0 1 0
35 static_assert(FCmpInst::FCMP_OGE == 3, ""); // 0 0 1 1
36 static_assert(FCmpInst::FCMP_OLT == 4, ""); // 0 1 0 0
37 static_assert(FCmpInst::FCMP_OLE == 5, ""); // 0 1 0 1
38 static_assert(FCmpInst::FCMP_ONE == 6, ""); // 0 1 1 0
39 static_assert(FCmpInst::FCMP_ORD == 7, ""); // 0 1 1 1
40 static_assert(FCmpInst::FCMP_UNO == 8, ""); // 1 0 0 0
41 static_assert(FCmpInst::FCMP_UEQ == 9, ""); // 1 0 0 1
42 static_assert(FCmpInst::FCMP_UGT == 10, ""); // 1 0 1 0
43 static_assert(FCmpInst::FCMP_UGE == 11, ""); // 1 0 1 1
44 static_assert(FCmpInst::FCMP_ULT == 12, ""); // 1 1 0 0
45 static_assert(FCmpInst::FCMP_ULE == 13, ""); // 1 1 0 1
46 static_assert(FCmpInst::FCMP_UNE == 14, ""); // 1 1 1 0
47 static_assert(FCmpInst::FCMP_TRUE == 15, ""); // 1 1 1 1
48 return CC;
Chris Lattner0a8191e2010-01-05 07:50:36 +000049}
50
Sanjay Patel18549272015-09-08 18:24:36 +000051/// This is the complement of getICmpCode, which turns an opcode and two
52/// operands into either a constant true or false, or a brand new ICmp
53/// instruction. The sign is passed in to determine which kind of predicate to
54/// use in the new icmp instruction.
Sanjay Patel3d5bb152018-12-04 18:53:27 +000055static Value *getNewICmpValue(unsigned Code, bool Sign, Value *LHS, Value *RHS,
Craig Topperbb4069e2017-07-07 23:16:26 +000056 InstCombiner::BuilderTy &Builder) {
Pete Cooperebf98c12011-12-17 01:20:32 +000057 ICmpInst::Predicate NewPred;
Sanjay Patel3d5bb152018-12-04 18:53:27 +000058 if (Constant *TorF = getPredForICmpCode(Code, Sign, LHS->getType(), NewPred))
59 return TorF;
Craig Topperbb4069e2017-07-07 23:16:26 +000060 return Builder.CreateICmp(NewPred, LHS, RHS);
Chris Lattner0a8191e2010-01-05 07:50:36 +000061}
62
Sanjay Patel18549272015-09-08 18:24:36 +000063/// This is the complement of getFCmpCode, which turns an opcode and two
Tim Shenaec68b22016-06-29 20:10:17 +000064/// operands into either a FCmp instruction, or a true/false constant.
65static Value *getFCmpValue(unsigned Code, Value *LHS, Value *RHS,
Craig Topperbb4069e2017-07-07 23:16:26 +000066 InstCombiner::BuilderTy &Builder) {
Tim Shenaec68b22016-06-29 20:10:17 +000067 const auto Pred = static_cast<FCmpInst::Predicate>(Code);
68 assert(FCmpInst::FCMP_FALSE <= Pred && Pred <= FCmpInst::FCMP_TRUE &&
69 "Unexpected FCmp predicate!");
70 if (Pred == FCmpInst::FCMP_FALSE)
71 return ConstantInt::get(CmpInst::makeCmpResultType(LHS->getType()), 0);
72 if (Pred == FCmpInst::FCMP_TRUE)
73 return ConstantInt::get(CmpInst::makeCmpResultType(LHS->getType()), 1);
Craig Topperbb4069e2017-07-07 23:16:26 +000074 return Builder.CreateFCmp(Pred, LHS, RHS);
Chris Lattner0a8191e2010-01-05 07:50:36 +000075}
76
Adrian Prantl5f8f34e42018-05-01 15:54:18 +000077/// Transform BITWISE_OP(BSWAP(A),BSWAP(B)) or
Craig Topperfc42ace2017-07-06 16:24:22 +000078/// BITWISE_OP(BSWAP(A), Constant) to BSWAP(BITWISE_OP(A, B))
Simon Pilgrimbe24ab32014-12-04 09:44:01 +000079/// \param I Binary operator to transform.
80/// \return Pointer to node that must replace the original binary operator, or
81/// null pointer if no transformation was made.
Craig Topper95e41422017-07-06 16:24:23 +000082static Value *SimplifyBSwap(BinaryOperator &I,
Craig Topperbb4069e2017-07-07 23:16:26 +000083 InstCombiner::BuilderTy &Builder) {
Craig Topperc6948c22017-07-03 05:54:11 +000084 assert(I.isBitwiseLogicOp() && "Unexpected opcode for bswap simplifying");
85
Craig Topper22795de2017-07-06 16:24:21 +000086 Value *OldLHS = I.getOperand(0);
87 Value *OldRHS = I.getOperand(1);
Craig Topper80369702017-07-03 05:54:16 +000088
Craig Topper766ce6e2017-07-03 05:54:15 +000089 Value *NewLHS;
Craig Topper22795de2017-07-06 16:24:21 +000090 if (!match(OldLHS, m_BSwap(m_Value(NewLHS))))
Simon Pilgrimbe24ab32014-12-04 09:44:01 +000091 return nullptr;
92
Craig Topper766ce6e2017-07-03 05:54:15 +000093 Value *NewRHS;
94 const APInt *C;
95
Craig Topper22795de2017-07-06 16:24:21 +000096 if (match(OldRHS, m_BSwap(m_Value(NewRHS)))) {
Craig Topper766ce6e2017-07-03 05:54:15 +000097 // OP( BSWAP(x), BSWAP(y) ) -> BSWAP( OP(x, y) )
Craig Topper22795de2017-07-06 16:24:21 +000098 if (!OldLHS->hasOneUse() && !OldRHS->hasOneUse())
99 return nullptr;
Craig Topper766ce6e2017-07-03 05:54:15 +0000100 // NewRHS initialized by the matcher.
Craig Topper22795de2017-07-06 16:24:21 +0000101 } else if (match(OldRHS, m_APInt(C))) {
Craig Topper766ce6e2017-07-03 05:54:15 +0000102 // OP( BSWAP(x), CONSTANT ) -> BSWAP( OP(x, BSWAP(CONSTANT) ) )
Craig Topper22795de2017-07-06 16:24:21 +0000103 if (!OldLHS->hasOneUse())
104 return nullptr;
Craig Topper766ce6e2017-07-03 05:54:15 +0000105 NewRHS = ConstantInt::get(I.getType(), C->byteSwap());
106 } else
Simon Pilgrimbe24ab32014-12-04 09:44:01 +0000107 return nullptr;
108
Craig Topperbb4069e2017-07-07 23:16:26 +0000109 Value *BinOp = Builder.CreateBinOp(I.getOpcode(), NewLHS, NewRHS);
Craig Topper1e4643a2017-07-03 05:54:13 +0000110 Function *F = Intrinsic::getDeclaration(I.getModule(), Intrinsic::bswap,
111 I.getType());
Craig Topperbb4069e2017-07-07 23:16:26 +0000112 return Builder.CreateCall(F, BinOp);
Simon Pilgrimbe24ab32014-12-04 09:44:01 +0000113}
114
Sanjay Patel18549272015-09-08 18:24:36 +0000115/// This handles expressions of the form ((val OP C1) & C2). Where
Craig Topper70e4f432017-04-02 17:57:30 +0000116/// the Op parameter is 'OP', OpRHS is 'C1', and AndRHS is 'C2'.
117Instruction *InstCombiner::OptAndOp(BinaryOperator *Op,
Chris Lattner0a8191e2010-01-05 07:50:36 +0000118 ConstantInt *OpRHS,
119 ConstantInt *AndRHS,
120 BinaryOperator &TheAnd) {
121 Value *X = Op->getOperand(0);
Chris Lattner0a8191e2010-01-05 07:50:36 +0000122
123 switch (Op->getOpcode()) {
Craig Topper70e4f432017-04-02 17:57:30 +0000124 default: break;
Chris Lattner0a8191e2010-01-05 07:50:36 +0000125 case Instruction::Add:
126 if (Op->hasOneUse()) {
127 // Adding a one to a single bit bit-field should be turned into an XOR
128 // of the bit. First thing to check is to see if this AND is with a
129 // single bit constant.
Jakub Staszak9de494e2013-06-06 00:49:57 +0000130 const APInt &AndRHSV = AndRHS->getValue();
Chris Lattner0a8191e2010-01-05 07:50:36 +0000131
132 // If there is only one bit set.
133 if (AndRHSV.isPowerOf2()) {
134 // Ok, at this point, we know that we are masking the result of the
135 // ADD down to exactly one bit. If the constant we are adding has
136 // no bits set below this bit, then we can eliminate the ADD.
Jakub Staszak9de494e2013-06-06 00:49:57 +0000137 const APInt& AddRHS = OpRHS->getValue();
Chris Lattner0a8191e2010-01-05 07:50:36 +0000138
139 // Check to see if any bits below the one bit set in AndRHSV are set.
Craig Topper73ba1c82017-06-07 07:40:37 +0000140 if ((AddRHS & (AndRHSV - 1)).isNullValue()) {
Chris Lattner0a8191e2010-01-05 07:50:36 +0000141 // If not, the only thing that can effect the output of the AND is
142 // the bit specified by AndRHSV. If that bit is set, the effect of
143 // the XOR is to toggle the bit. If it is clear, then the ADD has
144 // no effect.
Craig Topper73ba1c82017-06-07 07:40:37 +0000145 if ((AddRHS & AndRHSV).isNullValue()) { // Bit is not set, noop
Chris Lattner0a8191e2010-01-05 07:50:36 +0000146 TheAnd.setOperand(0, X);
147 return &TheAnd;
148 } else {
149 // Pull the XOR out of the AND.
Craig Topperbb4069e2017-07-07 23:16:26 +0000150 Value *NewAnd = Builder.CreateAnd(X, AndRHS);
Chris Lattner0a8191e2010-01-05 07:50:36 +0000151 NewAnd->takeName(Op);
152 return BinaryOperator::CreateXor(NewAnd, AndRHS);
153 }
154 }
155 }
156 }
157 break;
Chris Lattner0a8191e2010-01-05 07:50:36 +0000158 }
Craig Topperf40110f2014-04-25 05:29:35 +0000159 return nullptr;
Chris Lattner0a8191e2010-01-05 07:50:36 +0000160}
161
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000162/// Emit a computation of: (V >= Lo && V < Hi) if Inside is true, otherwise
Craig Toppere6cd20b2019-07-21 16:15:03 +0000163/// (V < Lo || V >= Hi). This method expects that Lo < Hi. IsSigned indicates
Sanjay Patel7d9ebaf2016-08-31 00:19:35 +0000164/// whether to treat V, Lo, and Hi as signed or not.
Sanjay Patel85d79742016-08-31 19:49:56 +0000165Value *InstCombiner::insertRangeTest(Value *V, const APInt &Lo, const APInt &Hi,
Chris Lattner067459c2010-03-05 08:46:26 +0000166 bool isSigned, bool Inside) {
Craig Topper1d149d02019-07-21 06:43:38 +0000167 assert((isSigned ? Lo.slt(Hi) : Lo.ult(Hi)) &&
168 "Lo is not < Hi in range emission code!");
Craig Topper9d4171a2012-12-20 07:09:41 +0000169
Sanjay Patel85d79742016-08-31 19:49:56 +0000170 Type *Ty = V->getType();
Chris Lattner0a8191e2010-01-05 07:50:36 +0000171
Sanjay Patel7d9ebaf2016-08-31 00:19:35 +0000172 // V >= Min && V < Hi --> V < Hi
173 // V < Min || V >= Hi --> V >= Hi
174 ICmpInst::Predicate Pred = Inside ? ICmpInst::ICMP_ULT : ICmpInst::ICMP_UGE;
Sanjay Patel85d79742016-08-31 19:49:56 +0000175 if (isSigned ? Lo.isMinSignedValue() : Lo.isMinValue()) {
Sanjay Patel7d9ebaf2016-08-31 00:19:35 +0000176 Pred = isSigned ? ICmpInst::getSignedPredicate(Pred) : Pred;
Craig Topperbb4069e2017-07-07 23:16:26 +0000177 return Builder.CreateICmp(Pred, V, ConstantInt::get(Ty, Hi));
Chris Lattner0a8191e2010-01-05 07:50:36 +0000178 }
179
Sanjay Patel7d9ebaf2016-08-31 00:19:35 +0000180 // V >= Lo && V < Hi --> V - Lo u< Hi - Lo
181 // V < Lo || V >= Hi --> V - Lo u>= Hi - Lo
Sanjay Patel85d79742016-08-31 19:49:56 +0000182 Value *VMinusLo =
Craig Topperbb4069e2017-07-07 23:16:26 +0000183 Builder.CreateSub(V, ConstantInt::get(Ty, Lo), V->getName() + ".off");
Sanjay Patel85d79742016-08-31 19:49:56 +0000184 Constant *HiMinusLo = ConstantInt::get(Ty, Hi - Lo);
Craig Topperbb4069e2017-07-07 23:16:26 +0000185 return Builder.CreateICmp(Pred, VMinusLo, HiMinusLo);
Chris Lattner0a8191e2010-01-05 07:50:36 +0000186}
187
Sanjay Patel77bf6222017-04-03 16:53:12 +0000188/// Classify (icmp eq (A & B), C) and (icmp ne (A & B), C) as matching patterns
189/// that can be simplified.
190/// One of A and B is considered the mask. The other is the value. This is
191/// described as the "AMask" or "BMask" part of the enum. If the enum contains
192/// only "Mask", then both A and B can be considered masks. If A is the mask,
193/// then it was proven that (A & C) == C. This is trivial if C == A or C == 0.
194/// If both A and C are constants, this proof is also easy.
195/// For the following explanations, we assume that A is the mask.
196///
197/// "AllOnes" declares that the comparison is true only if (A & B) == A or all
198/// bits of A are set in B.
199/// Example: (icmp eq (A & 3), 3) -> AMask_AllOnes
200///
201/// "AllZeros" declares that the comparison is true only if (A & B) == 0 or all
202/// bits of A are cleared in B.
203/// Example: (icmp eq (A & 3), 0) -> Mask_AllZeroes
204///
205/// "Mixed" declares that (A & B) == C and C might or might not contain any
206/// number of one bits and zero bits.
207/// Example: (icmp eq (A & 3), 1) -> AMask_Mixed
208///
209/// "Not" means that in above descriptions "==" should be replaced by "!=".
210/// Example: (icmp ne (A & 3), 3) -> AMask_NotAllOnes
211///
Owen Anderson3fe002d2010-09-08 22:16:17 +0000212/// If the mask A contains a single bit, then the following is equivalent:
213/// (icmp eq (A & B), A) equals (icmp ne (A & B), 0)
214/// (icmp ne (A & B), A) equals (icmp eq (A & B), 0)
215enum MaskedICmpType {
Sanjay Patel77bf6222017-04-03 16:53:12 +0000216 AMask_AllOnes = 1,
217 AMask_NotAllOnes = 2,
218 BMask_AllOnes = 4,
219 BMask_NotAllOnes = 8,
220 Mask_AllZeros = 16,
221 Mask_NotAllZeros = 32,
222 AMask_Mixed = 64,
223 AMask_NotMixed = 128,
224 BMask_Mixed = 256,
225 BMask_NotMixed = 512
Owen Anderson3fe002d2010-09-08 22:16:17 +0000226};
227
Sanjay Patel77bf6222017-04-03 16:53:12 +0000228/// Return the set of patterns (from MaskedICmpType) that (icmp SCC (A & B), C)
229/// satisfies.
230static unsigned getMaskedICmpType(Value *A, Value *B, Value *C,
231 ICmpInst::Predicate Pred) {
Owen Anderson3fe002d2010-09-08 22:16:17 +0000232 ConstantInt *ACst = dyn_cast<ConstantInt>(A);
233 ConstantInt *BCst = dyn_cast<ConstantInt>(B);
234 ConstantInt *CCst = dyn_cast<ConstantInt>(C);
Sanjay Patel77bf6222017-04-03 16:53:12 +0000235 bool IsEq = (Pred == ICmpInst::ICMP_EQ);
236 bool IsAPow2 = (ACst && !ACst->isZero() && ACst->getValue().isPowerOf2());
237 bool IsBPow2 = (BCst && !BCst->isZero() && BCst->getValue().isPowerOf2());
238 unsigned MaskVal = 0;
Craig Topperf40110f2014-04-25 05:29:35 +0000239 if (CCst && CCst->isZero()) {
Owen Anderson3fe002d2010-09-08 22:16:17 +0000240 // if C is zero, then both A and B qualify as mask
Sanjay Patel77bf6222017-04-03 16:53:12 +0000241 MaskVal |= (IsEq ? (Mask_AllZeros | AMask_Mixed | BMask_Mixed)
242 : (Mask_NotAllZeros | AMask_NotMixed | BMask_NotMixed));
243 if (IsAPow2)
244 MaskVal |= (IsEq ? (AMask_NotAllOnes | AMask_NotMixed)
245 : (AMask_AllOnes | AMask_Mixed));
246 if (IsBPow2)
247 MaskVal |= (IsEq ? (BMask_NotAllOnes | BMask_NotMixed)
248 : (BMask_AllOnes | BMask_Mixed));
249 return MaskVal;
Owen Anderson3fe002d2010-09-08 22:16:17 +0000250 }
Sanjay Patel77bf6222017-04-03 16:53:12 +0000251
Owen Anderson3fe002d2010-09-08 22:16:17 +0000252 if (A == C) {
Sanjay Patel77bf6222017-04-03 16:53:12 +0000253 MaskVal |= (IsEq ? (AMask_AllOnes | AMask_Mixed)
254 : (AMask_NotAllOnes | AMask_NotMixed));
255 if (IsAPow2)
256 MaskVal |= (IsEq ? (Mask_NotAllZeros | AMask_NotMixed)
257 : (Mask_AllZeros | AMask_Mixed));
258 } else if (ACst && CCst && ConstantExpr::getAnd(ACst, CCst) == CCst) {
259 MaskVal |= (IsEq ? AMask_Mixed : AMask_NotMixed);
Owen Anderson3fe002d2010-09-08 22:16:17 +0000260 }
Sanjay Patel77bf6222017-04-03 16:53:12 +0000261
Craig Topperae48cb22012-12-20 07:15:54 +0000262 if (B == C) {
Sanjay Patel77bf6222017-04-03 16:53:12 +0000263 MaskVal |= (IsEq ? (BMask_AllOnes | BMask_Mixed)
264 : (BMask_NotAllOnes | BMask_NotMixed));
265 if (IsBPow2)
266 MaskVal |= (IsEq ? (Mask_NotAllZeros | BMask_NotMixed)
267 : (Mask_AllZeros | BMask_Mixed));
268 } else if (BCst && CCst && ConstantExpr::getAnd(BCst, CCst) == CCst) {
269 MaskVal |= (IsEq ? BMask_Mixed : BMask_NotMixed);
Owen Anderson3fe002d2010-09-08 22:16:17 +0000270 }
Sanjay Patel77bf6222017-04-03 16:53:12 +0000271
272 return MaskVal;
Owen Anderson3fe002d2010-09-08 22:16:17 +0000273}
274
Tim Northoverc0756c42013-09-04 11:57:13 +0000275/// Convert an analysis of a masked ICmp into its equivalent if all boolean
276/// operations had the opposite sense. Since each "NotXXX" flag (recording !=)
277/// is adjacent to the corresponding normal flag (recording ==), this just
278/// involves swapping those bits over.
279static unsigned conjugateICmpMask(unsigned Mask) {
280 unsigned NewMask;
Sanjay Patel77bf6222017-04-03 16:53:12 +0000281 NewMask = (Mask & (AMask_AllOnes | BMask_AllOnes | Mask_AllZeros |
282 AMask_Mixed | BMask_Mixed))
Tim Northoverc0756c42013-09-04 11:57:13 +0000283 << 1;
284
Sanjay Patel77bf6222017-04-03 16:53:12 +0000285 NewMask |= (Mask & (AMask_NotAllOnes | BMask_NotAllOnes | Mask_NotAllZeros |
286 AMask_NotMixed | BMask_NotMixed))
287 >> 1;
Tim Northoverc0756c42013-09-04 11:57:13 +0000288
289 return NewMask;
290}
291
Craig Topper0aa3a192017-08-14 21:39:51 +0000292// Adapts the external decomposeBitTestICmp for local use.
293static bool decomposeBitTestICmp(Value *LHS, Value *RHS, CmpInst::Predicate &Pred,
294 Value *&X, Value *&Y, Value *&Z) {
295 APInt Mask;
296 if (!llvm::decomposeBitTestICmp(LHS, RHS, Pred, X, Mask))
297 return false;
298
Craig Topper085c1f42017-09-01 21:27:29 +0000299 Y = ConstantInt::get(X->getType(), Mask);
300 Z = ConstantInt::get(X->getType(), 0);
Craig Topper0aa3a192017-08-14 21:39:51 +0000301 return true;
302}
303
Sanjay Patel77bf6222017-04-03 16:53:12 +0000304/// Handle (icmp(A & B) ==/!= C) &/| (icmp(A & D) ==/!= E).
Hiroshi Yamauchie6a3dc72018-03-13 21:13:18 +0000305/// Return the pattern classes (from MaskedICmpType) for the left hand side and
306/// the right hand side as a pair.
307/// LHS and RHS are the left hand side and the right hand side ICmps and PredL
308/// and PredR are their predicates, respectively.
309static
310Optional<std::pair<unsigned, unsigned>>
311getMaskedTypeForICmpPair(Value *&A, Value *&B, Value *&C,
312 Value *&D, Value *&E, ICmpInst *LHS,
313 ICmpInst *RHS,
314 ICmpInst::Predicate &PredL,
315 ICmpInst::Predicate &PredR) {
Craig Topper775ffcc2017-08-21 21:00:45 +0000316 // vectors are not (yet?) supported. Don't support pointers either.
Craig Topperd3b46562017-09-01 21:27:31 +0000317 if (!LHS->getOperand(0)->getType()->isIntegerTy() ||
318 !RHS->getOperand(0)->getType()->isIntegerTy())
Hiroshi Yamauchie6a3dc72018-03-13 21:13:18 +0000319 return None;
Owen Anderson3fe002d2010-09-08 22:16:17 +0000320
321 // Here comes the tricky part:
Craig Topper9d4171a2012-12-20 07:09:41 +0000322 // LHS might be of the form L11 & L12 == X, X == L21 & L22,
Owen Anderson3fe002d2010-09-08 22:16:17 +0000323 // and L11 & L12 == L21 & L22. The same goes for RHS.
324 // Now we must find those components L** and R**, that are equal, so
Craig Topper9d4171a2012-12-20 07:09:41 +0000325 // that we can extract the parameters A, B, C, D, and E for the canonical
Owen Anderson3fe002d2010-09-08 22:16:17 +0000326 // above.
327 Value *L1 = LHS->getOperand(0);
328 Value *L2 = LHS->getOperand(1);
Sanjay Patel77bf6222017-04-03 16:53:12 +0000329 Value *L11, *L12, *L21, *L22;
Benjamin Kramerf9d0cc02012-01-09 17:23:27 +0000330 // Check whether the icmp can be decomposed into a bit test.
Craig Topper0aa3a192017-08-14 21:39:51 +0000331 if (decomposeBitTestICmp(L1, L2, PredL, L11, L12, L2)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000332 L21 = L22 = L1 = nullptr;
Benjamin Kramerf9d0cc02012-01-09 17:23:27 +0000333 } else {
334 // Look for ANDs in the LHS icmp.
Craig Topper775ffcc2017-08-21 21:00:45 +0000335 if (!match(L1, m_And(m_Value(L11), m_Value(L12)))) {
Tim Northoverdc647a22013-09-04 11:57:17 +0000336 // Any icmp can be viewed as being trivially masked; if it allows us to
337 // remove one, it's worth it.
338 L11 = L1;
339 L12 = Constant::getAllOnesValue(L1->getType());
340 }
341
Craig Topper775ffcc2017-08-21 21:00:45 +0000342 if (!match(L2, m_And(m_Value(L21), m_Value(L22)))) {
Tim Northoverdc647a22013-09-04 11:57:17 +0000343 L21 = L2;
344 L22 = Constant::getAllOnesValue(L2->getType());
Benjamin Kramerf9d0cc02012-01-09 17:23:27 +0000345 }
Owen Anderson3fe002d2010-09-08 22:16:17 +0000346 }
Benjamin Kramerf9d0cc02012-01-09 17:23:27 +0000347
348 // Bail if LHS was a icmp that can't be decomposed into an equality.
Sanjay Patel77bf6222017-04-03 16:53:12 +0000349 if (!ICmpInst::isEquality(PredL))
Hiroshi Yamauchie6a3dc72018-03-13 21:13:18 +0000350 return None;
Owen Anderson3fe002d2010-09-08 22:16:17 +0000351
352 Value *R1 = RHS->getOperand(0);
353 Value *R2 = RHS->getOperand(1);
Sanjay Patel77bf6222017-04-03 16:53:12 +0000354 Value *R11, *R12;
355 bool Ok = false;
Craig Topper0aa3a192017-08-14 21:39:51 +0000356 if (decomposeBitTestICmp(R1, R2, PredR, R11, R12, R2)) {
Benjamin Kramerf9d0cc02012-01-09 17:23:27 +0000357 if (R11 == L11 || R11 == L12 || R11 == L21 || R11 == L22) {
Sanjay Patel77bf6222017-04-03 16:53:12 +0000358 A = R11;
359 D = R12;
Benjamin Kramerf9d0cc02012-01-09 17:23:27 +0000360 } else if (R12 == L11 || R12 == L12 || R12 == L21 || R12 == L22) {
Sanjay Patel77bf6222017-04-03 16:53:12 +0000361 A = R12;
362 D = R11;
Benjamin Kramerf9d0cc02012-01-09 17:23:27 +0000363 } else {
Hiroshi Yamauchie6a3dc72018-03-13 21:13:18 +0000364 return None;
Owen Anderson3fe002d2010-09-08 22:16:17 +0000365 }
Sanjay Patel77bf6222017-04-03 16:53:12 +0000366 E = R2;
367 R1 = nullptr;
368 Ok = true;
Craig Topper775ffcc2017-08-21 21:00:45 +0000369 } else {
Tim Northoverdc647a22013-09-04 11:57:17 +0000370 if (!match(R1, m_And(m_Value(R11), m_Value(R12)))) {
371 // As before, model no mask as a trivial mask if it'll let us do an
Mayur Pandey75b76c62014-08-19 06:41:55 +0000372 // optimization.
Tim Northoverdc647a22013-09-04 11:57:17 +0000373 R11 = R1;
374 R12 = Constant::getAllOnesValue(R1->getType());
375 }
376
Benjamin Kramerf9d0cc02012-01-09 17:23:27 +0000377 if (R11 == L11 || R11 == L12 || R11 == L21 || R11 == L22) {
Sanjay Patel77bf6222017-04-03 16:53:12 +0000378 A = R11;
379 D = R12;
380 E = R2;
381 Ok = true;
Benjamin Kramerf9d0cc02012-01-09 17:23:27 +0000382 } else if (R12 == L11 || R12 == L12 || R12 == L21 || R12 == L22) {
Sanjay Patel77bf6222017-04-03 16:53:12 +0000383 A = R12;
384 D = R11;
385 E = R2;
386 Ok = true;
Owen Anderson3fe002d2010-09-08 22:16:17 +0000387 }
388 }
Benjamin Kramerf9d0cc02012-01-09 17:23:27 +0000389
390 // Bail if RHS was a icmp that can't be decomposed into an equality.
Sanjay Patel77bf6222017-04-03 16:53:12 +0000391 if (!ICmpInst::isEquality(PredR))
Hiroshi Yamauchie6a3dc72018-03-13 21:13:18 +0000392 return None;
Benjamin Kramerf9d0cc02012-01-09 17:23:27 +0000393
Chad Rosier58919cc2016-05-09 21:37:43 +0000394 // Look for ANDs on the right side of the RHS icmp.
Craig Topper775ffcc2017-08-21 21:00:45 +0000395 if (!Ok) {
Tim Northoverdc647a22013-09-04 11:57:17 +0000396 if (!match(R2, m_And(m_Value(R11), m_Value(R12)))) {
397 R11 = R2;
398 R12 = Constant::getAllOnesValue(R2->getType());
399 }
400
Benjamin Kramerf9d0cc02012-01-09 17:23:27 +0000401 if (R11 == L11 || R11 == L12 || R11 == L21 || R11 == L22) {
Sanjay Patel77bf6222017-04-03 16:53:12 +0000402 A = R11;
403 D = R12;
404 E = R1;
405 Ok = true;
Benjamin Kramerf9d0cc02012-01-09 17:23:27 +0000406 } else if (R12 == L11 || R12 == L12 || R12 == L21 || R12 == L22) {
Sanjay Patel77bf6222017-04-03 16:53:12 +0000407 A = R12;
408 D = R11;
409 E = R1;
410 Ok = true;
Benjamin Kramerf9d0cc02012-01-09 17:23:27 +0000411 } else {
Hiroshi Yamauchie6a3dc72018-03-13 21:13:18 +0000412 return None;
Benjamin Kramerf9d0cc02012-01-09 17:23:27 +0000413 }
Owen Anderson3fe002d2010-09-08 22:16:17 +0000414 }
Sanjay Patel77bf6222017-04-03 16:53:12 +0000415 if (!Ok)
Hiroshi Yamauchie6a3dc72018-03-13 21:13:18 +0000416 return None;
Owen Anderson3fe002d2010-09-08 22:16:17 +0000417
418 if (L11 == A) {
Sanjay Patel77bf6222017-04-03 16:53:12 +0000419 B = L12;
420 C = L2;
Craig Topperae48cb22012-12-20 07:15:54 +0000421 } else if (L12 == A) {
Sanjay Patel77bf6222017-04-03 16:53:12 +0000422 B = L11;
423 C = L2;
Craig Topperae48cb22012-12-20 07:15:54 +0000424 } else if (L21 == A) {
Sanjay Patel77bf6222017-04-03 16:53:12 +0000425 B = L22;
426 C = L1;
Craig Topperae48cb22012-12-20 07:15:54 +0000427 } else if (L22 == A) {
Sanjay Patel77bf6222017-04-03 16:53:12 +0000428 B = L21;
429 C = L1;
Owen Anderson3fe002d2010-09-08 22:16:17 +0000430 }
431
Sanjay Patel77bf6222017-04-03 16:53:12 +0000432 unsigned LeftType = getMaskedICmpType(A, B, C, PredL);
433 unsigned RightType = getMaskedICmpType(A, D, E, PredR);
Hiroshi Yamauchie6a3dc72018-03-13 21:13:18 +0000434 return Optional<std::pair<unsigned, unsigned>>(std::make_pair(LeftType, RightType));
435}
436
437/// Try to fold (icmp(A & B) ==/!= C) &/| (icmp(A & D) ==/!= E) into a single
438/// (icmp(A & X) ==/!= Y), where the left-hand side is of type Mask_NotAllZeros
439/// and the right hand side is of type BMask_Mixed. For example,
440/// (icmp (A & 12) != 0) & (icmp (A & 15) == 8) -> (icmp (A & 15) == 8).
441static Value * foldLogOpOfMaskedICmps_NotAllZeros_BMask_Mixed(
442 ICmpInst *LHS, ICmpInst *RHS, bool IsAnd,
443 Value *A, Value *B, Value *C, Value *D, Value *E,
444 ICmpInst::Predicate PredL, ICmpInst::Predicate PredR,
445 llvm::InstCombiner::BuilderTy &Builder) {
446 // We are given the canonical form:
447 // (icmp ne (A & B), 0) & (icmp eq (A & D), E).
448 // where D & E == E.
449 //
450 // If IsAnd is false, we get it in negated form:
451 // (icmp eq (A & B), 0) | (icmp ne (A & D), E) ->
452 // !((icmp ne (A & B), 0) & (icmp eq (A & D), E)).
453 //
454 // We currently handle the case of B, C, D, E are constant.
455 //
456 ConstantInt *BCst = dyn_cast<ConstantInt>(B);
457 if (!BCst)
458 return nullptr;
459 ConstantInt *CCst = dyn_cast<ConstantInt>(C);
460 if (!CCst)
461 return nullptr;
462 ConstantInt *DCst = dyn_cast<ConstantInt>(D);
463 if (!DCst)
464 return nullptr;
465 ConstantInt *ECst = dyn_cast<ConstantInt>(E);
466 if (!ECst)
467 return nullptr;
468
469 ICmpInst::Predicate NewCC = IsAnd ? ICmpInst::ICMP_EQ : ICmpInst::ICMP_NE;
470
471 // Update E to the canonical form when D is a power of two and RHS is
472 // canonicalized as,
473 // (icmp ne (A & D), 0) -> (icmp eq (A & D), D) or
474 // (icmp ne (A & D), D) -> (icmp eq (A & D), 0).
475 if (PredR != NewCC)
476 ECst = cast<ConstantInt>(ConstantExpr::getXor(DCst, ECst));
477
478 // If B or D is zero, skip because if LHS or RHS can be trivially folded by
479 // other folding rules and this pattern won't apply any more.
480 if (BCst->getValue() == 0 || DCst->getValue() == 0)
481 return nullptr;
482
483 // If B and D don't intersect, ie. (B & D) == 0, no folding because we can't
484 // deduce anything from it.
485 // For example,
486 // (icmp ne (A & 12), 0) & (icmp eq (A & 3), 1) -> no folding.
487 if ((BCst->getValue() & DCst->getValue()) == 0)
488 return nullptr;
489
490 // If the following two conditions are met:
491 //
492 // 1. mask B covers only a single bit that's not covered by mask D, that is,
493 // (B & (B ^ D)) is a power of 2 (in other words, B minus the intersection of
494 // B and D has only one bit set) and,
495 //
496 // 2. RHS (and E) indicates that the rest of B's bits are zero (in other
497 // words, the intersection of B and D is zero), that is, ((B & D) & E) == 0
498 //
499 // then that single bit in B must be one and thus the whole expression can be
500 // folded to
501 // (A & (B | D)) == (B & (B ^ D)) | E.
502 //
503 // For example,
504 // (icmp ne (A & 12), 0) & (icmp eq (A & 7), 1) -> (icmp eq (A & 15), 9)
505 // (icmp ne (A & 15), 0) & (icmp eq (A & 7), 0) -> (icmp eq (A & 15), 8)
506 if ((((BCst->getValue() & DCst->getValue()) & ECst->getValue()) == 0) &&
507 (BCst->getValue() & (BCst->getValue() ^ DCst->getValue())).isPowerOf2()) {
508 APInt BorD = BCst->getValue() | DCst->getValue();
509 APInt BandBxorDorE = (BCst->getValue() & (BCst->getValue() ^ DCst->getValue())) |
510 ECst->getValue();
511 Value *NewMask = ConstantInt::get(BCst->getType(), BorD);
512 Value *NewMaskedValue = ConstantInt::get(BCst->getType(), BandBxorDorE);
513 Value *NewAnd = Builder.CreateAnd(A, NewMask);
514 return Builder.CreateICmp(NewCC, NewAnd, NewMaskedValue);
515 }
516
517 auto IsSubSetOrEqual = [](ConstantInt *C1, ConstantInt *C2) {
518 return (C1->getValue() & C2->getValue()) == C1->getValue();
519 };
520 auto IsSuperSetOrEqual = [](ConstantInt *C1, ConstantInt *C2) {
521 return (C1->getValue() & C2->getValue()) == C2->getValue();
522 };
523
524 // In the following, we consider only the cases where B is a superset of D, B
525 // is a subset of D, or B == D because otherwise there's at least one bit
526 // covered by B but not D, in which case we can't deduce much from it, so
527 // no folding (aside from the single must-be-one bit case right above.)
528 // For example,
529 // (icmp ne (A & 14), 0) & (icmp eq (A & 3), 1) -> no folding.
530 if (!IsSubSetOrEqual(BCst, DCst) && !IsSuperSetOrEqual(BCst, DCst))
531 return nullptr;
532
533 // At this point, either B is a superset of D, B is a subset of D or B == D.
534
535 // If E is zero, if B is a subset of (or equal to) D, LHS and RHS contradict
536 // and the whole expression becomes false (or true if negated), otherwise, no
537 // folding.
538 // For example,
539 // (icmp ne (A & 3), 0) & (icmp eq (A & 7), 0) -> false.
540 // (icmp ne (A & 15), 0) & (icmp eq (A & 3), 0) -> no folding.
541 if (ECst->isZero()) {
542 if (IsSubSetOrEqual(BCst, DCst))
543 return ConstantInt::get(LHS->getType(), !IsAnd);
544 return nullptr;
545 }
546
547 // At this point, B, D, E aren't zero and (B & D) == B, (B & D) == D or B ==
548 // D. If B is a superset of (or equal to) D, since E is not zero, LHS is
549 // subsumed by RHS (RHS implies LHS.) So the whole expression becomes
550 // RHS. For example,
551 // (icmp ne (A & 255), 0) & (icmp eq (A & 15), 8) -> (icmp eq (A & 15), 8).
552 // (icmp ne (A & 15), 0) & (icmp eq (A & 15), 8) -> (icmp eq (A & 15), 8).
553 if (IsSuperSetOrEqual(BCst, DCst))
554 return RHS;
555 // Otherwise, B is a subset of D. If B and E have a common bit set,
556 // ie. (B & E) != 0, then LHS is subsumed by RHS. For example.
557 // (icmp ne (A & 12), 0) & (icmp eq (A & 15), 8) -> (icmp eq (A & 15), 8).
558 assert(IsSubSetOrEqual(BCst, DCst) && "Precondition due to above code");
559 if ((BCst->getValue() & ECst->getValue()) != 0)
560 return RHS;
561 // Otherwise, LHS and RHS contradict and the whole expression becomes false
562 // (or true if negated.) For example,
563 // (icmp ne (A & 7), 0) & (icmp eq (A & 15), 8) -> false.
564 // (icmp ne (A & 6), 0) & (icmp eq (A & 15), 8) -> false.
565 return ConstantInt::get(LHS->getType(), !IsAnd);
566}
567
568/// Try to fold (icmp(A & B) ==/!= 0) &/| (icmp(A & D) ==/!= E) into a single
569/// (icmp(A & X) ==/!= Y), where the left-hand side and the right hand side
570/// aren't of the common mask pattern type.
571static Value *foldLogOpOfMaskedICmpsAsymmetric(
572 ICmpInst *LHS, ICmpInst *RHS, bool IsAnd,
573 Value *A, Value *B, Value *C, Value *D, Value *E,
574 ICmpInst::Predicate PredL, ICmpInst::Predicate PredR,
575 unsigned LHSMask, unsigned RHSMask,
576 llvm::InstCombiner::BuilderTy &Builder) {
577 assert(ICmpInst::isEquality(PredL) && ICmpInst::isEquality(PredR) &&
578 "Expected equality predicates for masked type of icmps.");
579 // Handle Mask_NotAllZeros-BMask_Mixed cases.
580 // (icmp ne/eq (A & B), C) &/| (icmp eq/ne (A & D), E), or
581 // (icmp eq/ne (A & B), C) &/| (icmp ne/eq (A & D), E)
582 // which gets swapped to
583 // (icmp ne/eq (A & D), E) &/| (icmp eq/ne (A & B), C).
584 if (!IsAnd) {
585 LHSMask = conjugateICmpMask(LHSMask);
586 RHSMask = conjugateICmpMask(RHSMask);
587 }
588 if ((LHSMask & Mask_NotAllZeros) && (RHSMask & BMask_Mixed)) {
589 if (Value *V = foldLogOpOfMaskedICmps_NotAllZeros_BMask_Mixed(
590 LHS, RHS, IsAnd, A, B, C, D, E,
591 PredL, PredR, Builder)) {
592 return V;
593 }
594 } else if ((LHSMask & BMask_Mixed) && (RHSMask & Mask_NotAllZeros)) {
595 if (Value *V = foldLogOpOfMaskedICmps_NotAllZeros_BMask_Mixed(
596 RHS, LHS, IsAnd, A, D, E, B, C,
597 PredR, PredL, Builder)) {
598 return V;
599 }
600 }
601 return nullptr;
Owen Anderson3fe002d2010-09-08 22:16:17 +0000602}
Sanjay Patel18549272015-09-08 18:24:36 +0000603
604/// Try to fold (icmp(A & B) ==/!= C) &/| (icmp(A & D) ==/!= E)
605/// into a single (icmp(A & X) ==/!= Y).
David Majnemer1a3327b2014-11-18 09:31:36 +0000606static Value *foldLogOpOfMaskedICmps(ICmpInst *LHS, ICmpInst *RHS, bool IsAnd,
Craig Topperbb4069e2017-07-07 23:16:26 +0000607 llvm::InstCombiner::BuilderTy &Builder) {
Craig Topperf40110f2014-04-25 05:29:35 +0000608 Value *A = nullptr, *B = nullptr, *C = nullptr, *D = nullptr, *E = nullptr;
Sanjay Patel77bf6222017-04-03 16:53:12 +0000609 ICmpInst::Predicate PredL = LHS->getPredicate(), PredR = RHS->getPredicate();
Hiroshi Yamauchie6a3dc72018-03-13 21:13:18 +0000610 Optional<std::pair<unsigned, unsigned>> MaskPair =
Sanjay Patel77bf6222017-04-03 16:53:12 +0000611 getMaskedTypeForICmpPair(A, B, C, D, E, LHS, RHS, PredL, PredR);
Hiroshi Yamauchie6a3dc72018-03-13 21:13:18 +0000612 if (!MaskPair)
Sanjay Patel77bf6222017-04-03 16:53:12 +0000613 return nullptr;
Sanjay Patel77bf6222017-04-03 16:53:12 +0000614 assert(ICmpInst::isEquality(PredL) && ICmpInst::isEquality(PredR) &&
615 "Expected equality predicates for masked type of icmps.");
Hiroshi Yamauchie6a3dc72018-03-13 21:13:18 +0000616 unsigned LHSMask = MaskPair->first;
617 unsigned RHSMask = MaskPair->second;
618 unsigned Mask = LHSMask & RHSMask;
619 if (Mask == 0) {
620 // Even if the two sides don't share a common pattern, check if folding can
621 // still happen.
622 if (Value *V = foldLogOpOfMaskedICmpsAsymmetric(
623 LHS, RHS, IsAnd, A, B, C, D, E, PredL, PredR, LHSMask, RHSMask,
624 Builder))
625 return V;
626 return nullptr;
627 }
Owen Anderson3fe002d2010-09-08 22:16:17 +0000628
Tim Northoverc0756c42013-09-04 11:57:13 +0000629 // In full generality:
630 // (icmp (A & B) Op C) | (icmp (A & D) Op E)
631 // == ![ (icmp (A & B) !Op C) & (icmp (A & D) !Op E) ]
632 //
633 // If the latter can be converted into (icmp (A & X) Op Y) then the former is
634 // equivalent to (icmp (A & X) !Op Y).
635 //
636 // Therefore, we can pretend for the rest of this function that we're dealing
637 // with the conjunction, provided we flip the sense of any comparisons (both
638 // input and output).
639
640 // In most cases we're going to produce an EQ for the "&&" case.
Sanjay Patel3b8dcc72016-01-18 18:28:09 +0000641 ICmpInst::Predicate NewCC = IsAnd ? ICmpInst::ICMP_EQ : ICmpInst::ICMP_NE;
Tim Northoverc0756c42013-09-04 11:57:13 +0000642 if (!IsAnd) {
643 // Convert the masking analysis into its equivalent with negated
644 // comparisons.
Sanjay Patel3b8dcc72016-01-18 18:28:09 +0000645 Mask = conjugateICmpMask(Mask);
Tim Northoverc0756c42013-09-04 11:57:13 +0000646 }
Owen Anderson3fe002d2010-09-08 22:16:17 +0000647
Sanjay Patel77bf6222017-04-03 16:53:12 +0000648 if (Mask & Mask_AllZeros) {
Craig Topper9d4171a2012-12-20 07:09:41 +0000649 // (icmp eq (A & B), 0) & (icmp eq (A & D), 0)
Owen Anderson3fe002d2010-09-08 22:16:17 +0000650 // -> (icmp eq (A & (B|D)), 0)
Craig Topperbb4069e2017-07-07 23:16:26 +0000651 Value *NewOr = Builder.CreateOr(B, D);
652 Value *NewAnd = Builder.CreateAnd(A, NewOr);
Sanjay Patel3b8dcc72016-01-18 18:28:09 +0000653 // We can't use C as zero because we might actually handle
Craig Topper9d4171a2012-12-20 07:09:41 +0000654 // (icmp ne (A & B), B) & (icmp ne (A & D), D)
Sanjay Patel3b8dcc72016-01-18 18:28:09 +0000655 // with B and D, having a single bit set.
656 Value *Zero = Constant::getNullValue(A->getType());
Craig Topperbb4069e2017-07-07 23:16:26 +0000657 return Builder.CreateICmp(NewCC, NewAnd, Zero);
Owen Anderson3fe002d2010-09-08 22:16:17 +0000658 }
Sanjay Patel77bf6222017-04-03 16:53:12 +0000659 if (Mask & BMask_AllOnes) {
Craig Topper9d4171a2012-12-20 07:09:41 +0000660 // (icmp eq (A & B), B) & (icmp eq (A & D), D)
Owen Anderson3fe002d2010-09-08 22:16:17 +0000661 // -> (icmp eq (A & (B|D)), (B|D))
Craig Topperbb4069e2017-07-07 23:16:26 +0000662 Value *NewOr = Builder.CreateOr(B, D);
663 Value *NewAnd = Builder.CreateAnd(A, NewOr);
664 return Builder.CreateICmp(NewCC, NewAnd, NewOr);
Craig Topper9d4171a2012-12-20 07:09:41 +0000665 }
Sanjay Patel77bf6222017-04-03 16:53:12 +0000666 if (Mask & AMask_AllOnes) {
Craig Topper9d4171a2012-12-20 07:09:41 +0000667 // (icmp eq (A & B), A) & (icmp eq (A & D), A)
Owen Anderson3fe002d2010-09-08 22:16:17 +0000668 // -> (icmp eq (A & (B&D)), A)
Craig Topperbb4069e2017-07-07 23:16:26 +0000669 Value *NewAnd1 = Builder.CreateAnd(B, D);
670 Value *NewAnd2 = Builder.CreateAnd(A, NewAnd1);
671 return Builder.CreateICmp(NewCC, NewAnd2, A);
Owen Anderson3fe002d2010-09-08 22:16:17 +0000672 }
Tim Northoverc0756c42013-09-04 11:57:13 +0000673
674 // Remaining cases assume at least that B and D are constant, and depend on
Sanjay Patel3b8dcc72016-01-18 18:28:09 +0000675 // their actual values. This isn't strictly necessary, just a "handle the
Tim Northoverc0756c42013-09-04 11:57:13 +0000676 // easy cases for now" decision.
677 ConstantInt *BCst = dyn_cast<ConstantInt>(B);
Sanjay Patel77bf6222017-04-03 16:53:12 +0000678 if (!BCst)
679 return nullptr;
Tim Northoverc0756c42013-09-04 11:57:13 +0000680 ConstantInt *DCst = dyn_cast<ConstantInt>(D);
Sanjay Patel77bf6222017-04-03 16:53:12 +0000681 if (!DCst)
682 return nullptr;
Tim Northoverc0756c42013-09-04 11:57:13 +0000683
Sanjay Patel77bf6222017-04-03 16:53:12 +0000684 if (Mask & (Mask_NotAllZeros | BMask_NotAllOnes)) {
Tim Northoverc0756c42013-09-04 11:57:13 +0000685 // (icmp ne (A & B), 0) & (icmp ne (A & D), 0) and
686 // (icmp ne (A & B), B) & (icmp ne (A & D), D)
687 // -> (icmp ne (A & B), 0) or (icmp ne (A & D), 0)
688 // Only valid if one of the masks is a superset of the other (check "B&D" is
689 // the same as either B or D).
690 APInt NewMask = BCst->getValue() & DCst->getValue();
691
692 if (NewMask == BCst->getValue())
693 return LHS;
694 else if (NewMask == DCst->getValue())
695 return RHS;
696 }
Sanjay Patel77bf6222017-04-03 16:53:12 +0000697
698 if (Mask & AMask_NotAllOnes) {
Tim Northoverc0756c42013-09-04 11:57:13 +0000699 // (icmp ne (A & B), B) & (icmp ne (A & D), D)
700 // -> (icmp ne (A & B), A) or (icmp ne (A & D), A)
701 // Only valid if one of the masks is a superset of the other (check "B|D" is
702 // the same as either B or D).
703 APInt NewMask = BCst->getValue() | DCst->getValue();
704
705 if (NewMask == BCst->getValue())
706 return LHS;
707 else if (NewMask == DCst->getValue())
708 return RHS;
709 }
Sanjay Patel77bf6222017-04-03 16:53:12 +0000710
711 if (Mask & BMask_Mixed) {
Craig Topper9d4171a2012-12-20 07:09:41 +0000712 // (icmp eq (A & B), C) & (icmp eq (A & D), E)
Owen Anderson3fe002d2010-09-08 22:16:17 +0000713 // We already know that B & C == C && D & E == E.
714 // If we can prove that (B & D) & (C ^ E) == 0, that is, the bits of
715 // C and E, which are shared by both the mask B and the mask D, don't
716 // contradict, then we can transform to
717 // -> (icmp eq (A & (B|D)), (C|E))
718 // Currently, we only handle the case of B, C, D, and E being constant.
Sanjay Patel3b8dcc72016-01-18 18:28:09 +0000719 // We can't simply use C and E because we might actually handle
Craig Topper9d4171a2012-12-20 07:09:41 +0000720 // (icmp ne (A & B), B) & (icmp eq (A & D), D)
Sanjay Patel3b8dcc72016-01-18 18:28:09 +0000721 // with B and D, having a single bit set.
Owen Anderson3fe002d2010-09-08 22:16:17 +0000722 ConstantInt *CCst = dyn_cast<ConstantInt>(C);
Sanjay Patel77bf6222017-04-03 16:53:12 +0000723 if (!CCst)
724 return nullptr;
Owen Anderson3fe002d2010-09-08 22:16:17 +0000725 ConstantInt *ECst = dyn_cast<ConstantInt>(E);
Sanjay Patel77bf6222017-04-03 16:53:12 +0000726 if (!ECst)
727 return nullptr;
728 if (PredL != NewCC)
David Majnemer1a3327b2014-11-18 09:31:36 +0000729 CCst = cast<ConstantInt>(ConstantExpr::getXor(BCst, CCst));
Sanjay Patel77bf6222017-04-03 16:53:12 +0000730 if (PredR != NewCC)
David Majnemer1a3327b2014-11-18 09:31:36 +0000731 ECst = cast<ConstantInt>(ConstantExpr::getXor(DCst, ECst));
Sanjay Patel77bf6222017-04-03 16:53:12 +0000732
Sanjay Patel3b8dcc72016-01-18 18:28:09 +0000733 // If there is a conflict, we should actually return a false for the
734 // whole construct.
David Majnemer1a3327b2014-11-18 09:31:36 +0000735 if (((BCst->getValue() & DCst->getValue()) &
Craig Topper73ba1c82017-06-07 07:40:37 +0000736 (CCst->getValue() ^ ECst->getValue())).getBoolValue())
David Majnemer6fdb6b82014-11-18 09:31:41 +0000737 return ConstantInt::get(LHS->getType(), !IsAnd);
Sanjay Patel77bf6222017-04-03 16:53:12 +0000738
Craig Topperbb4069e2017-07-07 23:16:26 +0000739 Value *NewOr1 = Builder.CreateOr(B, D);
Sanjay Patel3b8dcc72016-01-18 18:28:09 +0000740 Value *NewOr2 = ConstantExpr::getOr(CCst, ECst);
Craig Topperbb4069e2017-07-07 23:16:26 +0000741 Value *NewAnd = Builder.CreateAnd(A, NewOr1);
742 return Builder.CreateICmp(NewCC, NewAnd, NewOr2);
Owen Anderson3fe002d2010-09-08 22:16:17 +0000743 }
Sanjay Patel77bf6222017-04-03 16:53:12 +0000744
Craig Topperf40110f2014-04-25 05:29:35 +0000745 return nullptr;
Owen Anderson3fe002d2010-09-08 22:16:17 +0000746}
747
Erik Ecksteind1817522014-12-03 10:39:15 +0000748/// Try to fold a signed range checked with lower bound 0 to an unsigned icmp.
749/// Example: (icmp sge x, 0) & (icmp slt x, n) --> icmp ult x, n
750/// If \p Inverted is true then the check is for the inverted range, e.g.
751/// (icmp slt x, 0) | (icmp sgt x, n) --> icmp ugt x, n
752Value *InstCombiner::simplifyRangeCheck(ICmpInst *Cmp0, ICmpInst *Cmp1,
753 bool Inverted) {
754 // Check the lower range comparison, e.g. x >= 0
755 // InstCombine already ensured that if there is a constant it's on the RHS.
756 ConstantInt *RangeStart = dyn_cast<ConstantInt>(Cmp0->getOperand(1));
757 if (!RangeStart)
758 return nullptr;
759
760 ICmpInst::Predicate Pred0 = (Inverted ? Cmp0->getInversePredicate() :
761 Cmp0->getPredicate());
762
763 // Accept x > -1 or x >= 0 (after potentially inverting the predicate).
764 if (!((Pred0 == ICmpInst::ICMP_SGT && RangeStart->isMinusOne()) ||
765 (Pred0 == ICmpInst::ICMP_SGE && RangeStart->isZero())))
766 return nullptr;
767
768 ICmpInst::Predicate Pred1 = (Inverted ? Cmp1->getInversePredicate() :
769 Cmp1->getPredicate());
770
771 Value *Input = Cmp0->getOperand(0);
772 Value *RangeEnd;
773 if (Cmp1->getOperand(0) == Input) {
774 // For the upper range compare we have: icmp x, n
775 RangeEnd = Cmp1->getOperand(1);
776 } else if (Cmp1->getOperand(1) == Input) {
777 // For the upper range compare we have: icmp n, x
778 RangeEnd = Cmp1->getOperand(0);
779 Pred1 = ICmpInst::getSwappedPredicate(Pred1);
780 } else {
781 return nullptr;
782 }
783
784 // Check the upper range comparison, e.g. x < n
785 ICmpInst::Predicate NewPred;
786 switch (Pred1) {
787 case ICmpInst::ICMP_SLT: NewPred = ICmpInst::ICMP_ULT; break;
788 case ICmpInst::ICMP_SLE: NewPred = ICmpInst::ICMP_ULE; break;
789 default: return nullptr;
790 }
791
792 // This simplification is only valid if the upper range is not negative.
Craig Topper1a36b7d2017-05-15 06:39:41 +0000793 KnownBits Known = computeKnownBits(RangeEnd, /*Depth=*/0, Cmp1);
794 if (!Known.isNonNegative())
Erik Ecksteind1817522014-12-03 10:39:15 +0000795 return nullptr;
796
797 if (Inverted)
798 NewPred = ICmpInst::getInversePredicate(NewPred);
799
Craig Topperbb4069e2017-07-07 23:16:26 +0000800 return Builder.CreateICmp(NewPred, Input, RangeEnd);
Erik Ecksteind1817522014-12-03 10:39:15 +0000801}
802
Sanjay Patel7cfe4162017-04-14 19:23:50 +0000803static Value *
804foldAndOrOfEqualityCmpsWithConstants(ICmpInst *LHS, ICmpInst *RHS,
805 bool JoinedByAnd,
Craig Topperbb4069e2017-07-07 23:16:26 +0000806 InstCombiner::BuilderTy &Builder) {
Sanjay Patelef9f5862017-04-15 17:55:06 +0000807 Value *X = LHS->getOperand(0);
808 if (X != RHS->getOperand(0))
Sanjay Patel7cfe4162017-04-14 19:23:50 +0000809 return nullptr;
810
Sanjay Patelef9f5862017-04-15 17:55:06 +0000811 const APInt *C1, *C2;
812 if (!match(LHS->getOperand(1), m_APInt(C1)) ||
813 !match(RHS->getOperand(1), m_APInt(C2)))
Sanjay Patel7cfe4162017-04-14 19:23:50 +0000814 return nullptr;
815
816 // We only handle (X != C1 && X != C2) and (X == C1 || X == C2).
817 ICmpInst::Predicate Pred = LHS->getPredicate();
818 if (Pred != RHS->getPredicate())
819 return nullptr;
820 if (JoinedByAnd && Pred != ICmpInst::ICMP_NE)
821 return nullptr;
822 if (!JoinedByAnd && Pred != ICmpInst::ICMP_EQ)
823 return nullptr;
824
825 // The larger unsigned constant goes on the right.
Sanjay Patelef9f5862017-04-15 17:55:06 +0000826 if (C1->ugt(*C2))
827 std::swap(C1, C2);
Sanjay Patel7cfe4162017-04-14 19:23:50 +0000828
Sanjay Patelef9f5862017-04-15 17:55:06 +0000829 APInt Xor = *C1 ^ *C2;
Sanjay Patel7cfe4162017-04-14 19:23:50 +0000830 if (Xor.isPowerOf2()) {
831 // If LHSC and RHSC differ by only one bit, then set that bit in X and
832 // compare against the larger constant:
833 // (X == C1 || X == C2) --> (X | (C1 ^ C2)) == C2
834 // (X != C1 && X != C2) --> (X | (C1 ^ C2)) != C2
835 // We choose an 'or' with a Pow2 constant rather than the inverse mask with
836 // 'and' because that may lead to smaller codegen from a smaller constant.
Craig Topperbb4069e2017-07-07 23:16:26 +0000837 Value *Or = Builder.CreateOr(X, ConstantInt::get(X->getType(), Xor));
838 return Builder.CreateICmp(Pred, Or, ConstantInt::get(X->getType(), *C2));
Sanjay Patel7cfe4162017-04-14 19:23:50 +0000839 }
840
841 // Special case: get the ordering right when the values wrap around zero.
842 // Ie, we assumed the constants were unsigned when swapping earlier.
Craig Topper73ba1c82017-06-07 07:40:37 +0000843 if (C1->isNullValue() && C2->isAllOnesValue())
Sanjay Patelef9f5862017-04-15 17:55:06 +0000844 std::swap(C1, C2);
Sanjay Patel7cfe4162017-04-14 19:23:50 +0000845
Sanjay Patelef9f5862017-04-15 17:55:06 +0000846 if (*C1 == *C2 - 1) {
Sanjay Patel7cfe4162017-04-14 19:23:50 +0000847 // (X == 13 || X == 14) --> X - 13 <=u 1
848 // (X != 13 && X != 14) --> X - 13 >u 1
849 // An 'add' is the canonical IR form, so favor that over a 'sub'.
Craig Topperbb4069e2017-07-07 23:16:26 +0000850 Value *Add = Builder.CreateAdd(X, ConstantInt::get(X->getType(), -(*C1)));
Sanjay Patel7cfe4162017-04-14 19:23:50 +0000851 auto NewPred = JoinedByAnd ? ICmpInst::ICMP_UGT : ICmpInst::ICMP_ULE;
Craig Topperbb4069e2017-07-07 23:16:26 +0000852 return Builder.CreateICmp(NewPred, Add, ConstantInt::get(X->getType(), 1));
Sanjay Patel7cfe4162017-04-14 19:23:50 +0000853 }
854
855 return nullptr;
856}
857
Craig Topperda6ea0d2017-06-16 05:10:37 +0000858// Fold (iszero(A & K1) | iszero(A & K2)) -> (A & (K1 | K2)) != (K1 | K2)
859// Fold (!iszero(A & K1) & !iszero(A & K2)) -> (A & (K1 | K2)) == (K1 | K2)
860Value *InstCombiner::foldAndOrOfICmpsOfAndWithPow2(ICmpInst *LHS, ICmpInst *RHS,
861 bool JoinedByAnd,
862 Instruction &CxtI) {
863 ICmpInst::Predicate Pred = LHS->getPredicate();
864 if (Pred != RHS->getPredicate())
865 return nullptr;
866 if (JoinedByAnd && Pred != ICmpInst::ICMP_NE)
867 return nullptr;
868 if (!JoinedByAnd && Pred != ICmpInst::ICMP_EQ)
869 return nullptr;
870
871 // TODO support vector splats
872 ConstantInt *LHSC = dyn_cast<ConstantInt>(LHS->getOperand(1));
873 ConstantInt *RHSC = dyn_cast<ConstantInt>(RHS->getOperand(1));
874 if (!LHSC || !RHSC || !LHSC->isZero() || !RHSC->isZero())
875 return nullptr;
876
877 Value *A, *B, *C, *D;
878 if (match(LHS->getOperand(0), m_And(m_Value(A), m_Value(B))) &&
879 match(RHS->getOperand(0), m_And(m_Value(C), m_Value(D)))) {
880 if (A == D || B == D)
881 std::swap(C, D);
882 if (B == C)
883 std::swap(A, B);
884
885 if (A == C &&
886 isKnownToBeAPowerOfTwo(B, false, 0, &CxtI) &&
887 isKnownToBeAPowerOfTwo(D, false, 0, &CxtI)) {
Craig Topperbb4069e2017-07-07 23:16:26 +0000888 Value *Mask = Builder.CreateOr(B, D);
889 Value *Masked = Builder.CreateAnd(A, Mask);
Craig Topperda6ea0d2017-06-16 05:10:37 +0000890 auto NewPred = JoinedByAnd ? ICmpInst::ICMP_EQ : ICmpInst::ICMP_NE;
Craig Topperbb4069e2017-07-07 23:16:26 +0000891 return Builder.CreateICmp(NewPred, Masked, Mask);
Craig Topperda6ea0d2017-06-16 05:10:37 +0000892 }
893 }
894
895 return nullptr;
896}
897
Roman Lebedev35348742018-08-13 21:54:37 +0000898/// General pattern:
899/// X & Y
900///
901/// Where Y is checking that all the high bits (covered by a mask 4294967168)
902/// are uniform, i.e. %arg & 4294967168 can be either 4294967168 or 0
903/// Pattern can be one of:
904/// %t = add i32 %arg, 128
905/// %r = icmp ult i32 %t, 256
906/// Or
907/// %t0 = shl i32 %arg, 24
908/// %t1 = ashr i32 %t0, 24
909/// %r = icmp eq i32 %t1, %arg
910/// Or
911/// %t0 = trunc i32 %arg to i8
912/// %t1 = sext i8 %t0 to i32
913/// %r = icmp eq i32 %t1, %arg
914/// This pattern is a signed truncation check.
915///
916/// And X is checking that some bit in that same mask is zero.
917/// I.e. can be one of:
918/// %r = icmp sgt i32 %arg, -1
919/// Or
920/// %t = and i32 %arg, 2147483648
921/// %r = icmp eq i32 %t, 0
922///
923/// Since we are checking that all the bits in that mask are the same,
924/// and a particular bit is zero, what we are really checking is that all the
925/// masked bits are zero.
926/// So this should be transformed to:
927/// %r = icmp ult i32 %arg, 128
928static Value *foldSignedTruncationCheck(ICmpInst *ICmp0, ICmpInst *ICmp1,
929 Instruction &CxtI,
930 InstCombiner::BuilderTy &Builder) {
931 assert(CxtI.getOpcode() == Instruction::And);
932
933 // Match icmp ult (add %arg, C01), C1 (C1 == C01 << 1; powers of two)
934 auto tryToMatchSignedTruncationCheck = [](ICmpInst *ICmp, Value *&X,
935 APInt &SignBitMask) -> bool {
936 CmpInst::Predicate Pred;
937 const APInt *I01, *I1; // powers of two; I1 == I01 << 1
938 if (!(match(ICmp,
939 m_ICmp(Pred, m_Add(m_Value(X), m_Power2(I01)), m_Power2(I1))) &&
940 Pred == ICmpInst::ICMP_ULT && I1->ugt(*I01) && I01->shl(1) == *I1))
941 return false;
942 // Which bit is the new sign bit as per the 'signed truncation' pattern?
943 SignBitMask = *I01;
944 return true;
945 };
946
947 // One icmp needs to be 'signed truncation check'.
948 // We need to match this first, else we will mismatch commutative cases.
949 Value *X1;
950 APInt HighestBit;
951 ICmpInst *OtherICmp;
952 if (tryToMatchSignedTruncationCheck(ICmp1, X1, HighestBit))
953 OtherICmp = ICmp0;
954 else if (tryToMatchSignedTruncationCheck(ICmp0, X1, HighestBit))
955 OtherICmp = ICmp1;
956 else
957 return nullptr;
958
959 assert(HighestBit.isPowerOf2() && "expected to be power of two (non-zero)");
960
961 // Try to match/decompose into: icmp eq (X & Mask), 0
962 auto tryToDecompose = [](ICmpInst *ICmp, Value *&X,
963 APInt &UnsetBitsMask) -> bool {
964 CmpInst::Predicate Pred = ICmp->getPredicate();
965 // Can it be decomposed into icmp eq (X & Mask), 0 ?
966 if (llvm::decomposeBitTestICmp(ICmp->getOperand(0), ICmp->getOperand(1),
967 Pred, X, UnsetBitsMask,
Rui Ueyama49a3ad22019-07-16 04:46:31 +0000968 /*LookThroughTrunc=*/false) &&
Roman Lebedev35348742018-08-13 21:54:37 +0000969 Pred == ICmpInst::ICMP_EQ)
970 return true;
971 // Is it icmp eq (X & Mask), 0 already?
972 const APInt *Mask;
973 if (match(ICmp, m_ICmp(Pred, m_And(m_Value(X), m_APInt(Mask)), m_Zero())) &&
974 Pred == ICmpInst::ICMP_EQ) {
975 UnsetBitsMask = *Mask;
976 return true;
977 }
978 return false;
979 };
980
981 // And the other icmp needs to be decomposable into a bit test.
982 Value *X0;
983 APInt UnsetBitsMask;
984 if (!tryToDecompose(OtherICmp, X0, UnsetBitsMask))
985 return nullptr;
986
987 assert(!UnsetBitsMask.isNullValue() && "empty mask makes no sense.");
988
989 // Are they working on the same value?
990 Value *X;
991 if (X1 == X0) {
992 // Ok as is.
993 X = X1;
994 } else if (match(X0, m_Trunc(m_Specific(X1)))) {
995 UnsetBitsMask = UnsetBitsMask.zext(X1->getType()->getScalarSizeInBits());
996 X = X1;
997 } else
998 return nullptr;
999
1000 // So which bits should be uniform as per the 'signed truncation check'?
1001 // (all the bits starting with (i.e. including) HighestBit)
1002 APInt SignBitsMask = ~(HighestBit - 1U);
1003
1004 // UnsetBitsMask must have some common bits with SignBitsMask,
1005 if (!UnsetBitsMask.intersects(SignBitsMask))
1006 return nullptr;
1007
1008 // Does UnsetBitsMask contain any bits outside of SignBitsMask?
1009 if (!UnsetBitsMask.isSubsetOf(SignBitsMask)) {
1010 APInt OtherHighestBit = (~UnsetBitsMask) + 1U;
1011 if (!OtherHighestBit.isPowerOf2())
1012 return nullptr;
1013 HighestBit = APIntOps::umin(HighestBit, OtherHighestBit);
1014 }
1015 // Else, if it does not, then all is ok as-is.
1016
1017 // %r = icmp ult %X, SignBit
1018 return Builder.CreateICmpULT(X, ConstantInt::get(X->getType(), HighestBit),
1019 CxtI.getName() + ".simplified");
1020}
1021
Sanjay Patel13a5ae52019-06-23 14:22:37 +00001022/// Reduce a pair of compares that check if a value has exactly 1 bit set.
Sanjay Patel2675b0c2019-06-24 22:35:26 +00001023static Value *foldIsPowerOf2(ICmpInst *Cmp0, ICmpInst *Cmp1, bool JoinedByAnd,
Sanjay Patel13a5ae52019-06-23 14:22:37 +00001024 InstCombiner::BuilderTy &Builder) {
Sanjay Patel2675b0c2019-06-24 22:35:26 +00001025 // Handle 'and' / 'or' commutation: make the equality check the first operand.
1026 if (JoinedByAnd && Cmp1->getPredicate() == ICmpInst::ICMP_NE)
1027 std::swap(Cmp0, Cmp1);
1028 else if (!JoinedByAnd && Cmp1->getPredicate() == ICmpInst::ICMP_EQ)
Sanjay Patel13a5ae52019-06-23 14:22:37 +00001029 std::swap(Cmp0, Cmp1);
1030
1031 // (X != 0) && (ctpop(X) u< 2) --> ctpop(X) == 1
1032 CmpInst::Predicate Pred0, Pred1;
1033 Value *X;
Sanjay Patel2675b0c2019-06-24 22:35:26 +00001034 if (JoinedByAnd && match(Cmp0, m_ICmp(Pred0, m_Value(X), m_ZeroInt())) &&
Sanjay Patel13a5ae52019-06-23 14:22:37 +00001035 match(Cmp1, m_ICmp(Pred1, m_Intrinsic<Intrinsic::ctpop>(m_Specific(X)),
1036 m_SpecificInt(2))) &&
1037 Pred0 == ICmpInst::ICMP_NE && Pred1 == ICmpInst::ICMP_ULT) {
1038 Value *CtPop = Cmp1->getOperand(0);
1039 return Builder.CreateICmpEQ(CtPop, ConstantInt::get(CtPop->getType(), 1));
1040 }
Sanjay Patel2675b0c2019-06-24 22:35:26 +00001041 // (X == 0) || (ctpop(X) u> 1) --> ctpop(X) != 1
1042 if (!JoinedByAnd && match(Cmp0, m_ICmp(Pred0, m_Value(X), m_ZeroInt())) &&
1043 match(Cmp1, m_ICmp(Pred1, m_Intrinsic<Intrinsic::ctpop>(m_Specific(X)),
1044 m_SpecificInt(1))) &&
1045 Pred0 == ICmpInst::ICMP_EQ && Pred1 == ICmpInst::ICMP_UGT) {
1046 Value *CtPop = Cmp1->getOperand(0);
1047 return Builder.CreateICmpNE(CtPop, ConstantInt::get(CtPop->getType(), 1));
1048 }
Sanjay Patel13a5ae52019-06-23 14:22:37 +00001049 return nullptr;
1050}
1051
Sanjay Patel18549272015-09-08 18:24:36 +00001052/// Fold (icmp)&(icmp) if possible.
Craig Topperda6ea0d2017-06-16 05:10:37 +00001053Value *InstCombiner::foldAndOfICmps(ICmpInst *LHS, ICmpInst *RHS,
1054 Instruction &CxtI) {
1055 // Fold (!iszero(A & K1) & !iszero(A & K2)) -> (A & (K1 | K2)) == (K1 | K2)
1056 // if K1 and K2 are a one-bit mask.
1057 if (Value *V = foldAndOrOfICmpsOfAndWithPow2(LHS, RHS, true, CxtI))
1058 return V;
1059
Sanjay Patel519a87a2017-04-05 17:38:34 +00001060 ICmpInst::Predicate PredL = LHS->getPredicate(), PredR = RHS->getPredicate();
Chris Lattner0a8191e2010-01-05 07:50:36 +00001061
1062 // (icmp1 A, B) & (icmp2 A, B) --> (icmp3 A, B)
Sanjay Patel472652e2018-12-03 15:48:30 +00001063 if (predicatesFoldable(PredL, PredR)) {
Chris Lattner0a8191e2010-01-05 07:50:36 +00001064 if (LHS->getOperand(0) == RHS->getOperand(1) &&
1065 LHS->getOperand(1) == RHS->getOperand(0))
1066 LHS->swapOperands();
1067 if (LHS->getOperand(0) == RHS->getOperand(0) &&
1068 LHS->getOperand(1) == RHS->getOperand(1)) {
1069 Value *Op0 = LHS->getOperand(0), *Op1 = LHS->getOperand(1);
1070 unsigned Code = getICmpCode(LHS) & getICmpCode(RHS);
Sanjay Patel3d5bb152018-12-04 18:53:27 +00001071 bool IsSigned = LHS->isSigned() || RHS->isSigned();
1072 return getNewICmpValue(Code, IsSigned, Op0, Op1, Builder);
Chris Lattner0a8191e2010-01-05 07:50:36 +00001073 }
1074 }
Owen Anderson3fe002d2010-09-08 22:16:17 +00001075
Chris Lattnerdcef03f2011-02-10 05:17:27 +00001076 // handle (roughly): (icmp eq (A & B), C) & (icmp eq (A & D), E)
Tim Northoverc0756c42013-09-04 11:57:13 +00001077 if (Value *V = foldLogOpOfMaskedICmps(LHS, RHS, true, Builder))
Chris Lattnerdcef03f2011-02-10 05:17:27 +00001078 return V;
Craig Topper9d4171a2012-12-20 07:09:41 +00001079
Erik Ecksteind1817522014-12-03 10:39:15 +00001080 // E.g. (icmp sge x, 0) & (icmp slt x, n) --> icmp ult x, n
1081 if (Value *V = simplifyRangeCheck(LHS, RHS, /*Inverted=*/false))
1082 return V;
1083
1084 // E.g. (icmp slt x, n) & (icmp sge x, 0) --> icmp ult x, n
1085 if (Value *V = simplifyRangeCheck(RHS, LHS, /*Inverted=*/false))
1086 return V;
1087
Sanjay Patelef9f5862017-04-15 17:55:06 +00001088 if (Value *V = foldAndOrOfEqualityCmpsWithConstants(LHS, RHS, true, Builder))
1089 return V;
1090
Roman Lebedev35348742018-08-13 21:54:37 +00001091 if (Value *V = foldSignedTruncationCheck(LHS, RHS, CxtI, Builder))
1092 return V;
1093
Sanjay Patel2675b0c2019-06-24 22:35:26 +00001094 if (Value *V = foldIsPowerOf2(LHS, RHS, true /* JoinedByAnd */, Builder))
Sanjay Patel13a5ae52019-06-23 14:22:37 +00001095 return V;
1096
Chris Lattner0a8191e2010-01-05 07:50:36 +00001097 // This only handles icmp of constants: (icmp1 A, C1) & (icmp2 B, C2).
Sanjay Patele4159d22017-04-10 19:38:36 +00001098 Value *LHS0 = LHS->getOperand(0), *RHS0 = RHS->getOperand(0);
Sanjay Patel519a87a2017-04-05 17:38:34 +00001099 ConstantInt *LHSC = dyn_cast<ConstantInt>(LHS->getOperand(1));
1100 ConstantInt *RHSC = dyn_cast<ConstantInt>(RHS->getOperand(1));
1101 if (!LHSC || !RHSC)
1102 return nullptr;
Craig Topper9d4171a2012-12-20 07:09:41 +00001103
Sanjay Patel519a87a2017-04-05 17:38:34 +00001104 if (LHSC == RHSC && PredL == PredR) {
Chris Lattner0a8191e2010-01-05 07:50:36 +00001105 // (icmp ult A, C) & (icmp ult B, C) --> (icmp ult (A|B), C)
Sanjay Patelc2ceb8b2016-01-18 19:17:58 +00001106 // where C is a power of 2 or
Chris Lattner0a8191e2010-01-05 07:50:36 +00001107 // (icmp eq A, 0) & (icmp eq B, 0) --> (icmp eq (A|B), 0)
Sanjay Patel519a87a2017-04-05 17:38:34 +00001108 if ((PredL == ICmpInst::ICMP_ULT && LHSC->getValue().isPowerOf2()) ||
1109 (PredL == ICmpInst::ICMP_EQ && LHSC->isZero())) {
Craig Topperbb4069e2017-07-07 23:16:26 +00001110 Value *NewOr = Builder.CreateOr(LHS0, RHS0);
1111 return Builder.CreateICmp(PredL, NewOr, LHSC);
Chris Lattner0a8191e2010-01-05 07:50:36 +00001112 }
1113 }
Benjamin Kramer4145c0d2011-04-28 16:58:40 +00001114
Benjamin Kramer101720f2011-04-28 20:09:57 +00001115 // (trunc x) == C1 & (and x, CA) == C2 -> (and x, CA|CMAX) == C1|C2
Benjamin Kramer4145c0d2011-04-28 16:58:40 +00001116 // where CMAX is the all ones value for the truncated type,
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00001117 // iff the lower bits of C2 and CA are zero.
Sanjay Patel519a87a2017-04-05 17:38:34 +00001118 if (PredL == ICmpInst::ICMP_EQ && PredL == PredR && LHS->hasOneUse() &&
1119 RHS->hasOneUse()) {
Benjamin Kramer4145c0d2011-04-28 16:58:40 +00001120 Value *V;
Sanjay Patel519a87a2017-04-05 17:38:34 +00001121 ConstantInt *AndC, *SmallC = nullptr, *BigC = nullptr;
Benjamin Kramer4145c0d2011-04-28 16:58:40 +00001122
1123 // (trunc x) == C1 & (and x, CA) == C2
Craig Topperae48cb22012-12-20 07:15:54 +00001124 // (and x, CA) == C2 & (trunc x) == C1
Sanjay Patele4159d22017-04-10 19:38:36 +00001125 if (match(RHS0, m_Trunc(m_Value(V))) &&
1126 match(LHS0, m_And(m_Specific(V), m_ConstantInt(AndC)))) {
Sanjay Patel519a87a2017-04-05 17:38:34 +00001127 SmallC = RHSC;
1128 BigC = LHSC;
Sanjay Patele4159d22017-04-10 19:38:36 +00001129 } else if (match(LHS0, m_Trunc(m_Value(V))) &&
1130 match(RHS0, m_And(m_Specific(V), m_ConstantInt(AndC)))) {
Sanjay Patel519a87a2017-04-05 17:38:34 +00001131 SmallC = LHSC;
1132 BigC = RHSC;
Benjamin Kramer4145c0d2011-04-28 16:58:40 +00001133 }
1134
Sanjay Patel519a87a2017-04-05 17:38:34 +00001135 if (SmallC && BigC) {
1136 unsigned BigBitSize = BigC->getType()->getBitWidth();
1137 unsigned SmallBitSize = SmallC->getType()->getBitWidth();
Benjamin Kramer4145c0d2011-04-28 16:58:40 +00001138
1139 // Check that the low bits are zero.
1140 APInt Low = APInt::getLowBitsSet(BigBitSize, SmallBitSize);
Craig Topper73ba1c82017-06-07 07:40:37 +00001141 if ((Low & AndC->getValue()).isNullValue() &&
1142 (Low & BigC->getValue()).isNullValue()) {
Craig Topperbb4069e2017-07-07 23:16:26 +00001143 Value *NewAnd = Builder.CreateAnd(V, Low | AndC->getValue());
Sanjay Patel519a87a2017-04-05 17:38:34 +00001144 APInt N = SmallC->getValue().zext(BigBitSize) | BigC->getValue();
1145 Value *NewVal = ConstantInt::get(AndC->getType()->getContext(), N);
Craig Topperbb4069e2017-07-07 23:16:26 +00001146 return Builder.CreateICmp(PredL, NewAnd, NewVal);
Benjamin Kramer4145c0d2011-04-28 16:58:40 +00001147 }
1148 }
1149 }
Benjamin Kramerda37e152012-01-08 18:32:24 +00001150
Chris Lattner0a8191e2010-01-05 07:50:36 +00001151 // From here on, we only handle:
1152 // (icmp1 A, C1) & (icmp2 A, C2) --> something simpler.
Sanjay Patele4159d22017-04-10 19:38:36 +00001153 if (LHS0 != RHS0)
Sanjay Patel519a87a2017-04-05 17:38:34 +00001154 return nullptr;
Craig Topper9d4171a2012-12-20 07:09:41 +00001155
Sanjay Patel519a87a2017-04-05 17:38:34 +00001156 // ICMP_[US][GL]E X, C is folded to ICMP_[US][GL]T elsewhere.
1157 if (PredL == ICmpInst::ICMP_UGE || PredL == ICmpInst::ICMP_ULE ||
1158 PredR == ICmpInst::ICMP_UGE || PredR == ICmpInst::ICMP_ULE ||
1159 PredL == ICmpInst::ICMP_SGE || PredL == ICmpInst::ICMP_SLE ||
1160 PredR == ICmpInst::ICMP_SGE || PredR == ICmpInst::ICMP_SLE)
Craig Topperf40110f2014-04-25 05:29:35 +00001161 return nullptr;
Anders Carlssonda80afe2011-03-01 15:05:01 +00001162
Chris Lattner0a8191e2010-01-05 07:50:36 +00001163 // We can't fold (ugt x, C) & (sgt x, C2).
Sanjay Patel472652e2018-12-03 15:48:30 +00001164 if (!predicatesFoldable(PredL, PredR))
Craig Topperf40110f2014-04-25 05:29:35 +00001165 return nullptr;
Craig Topper9d4171a2012-12-20 07:09:41 +00001166
Chris Lattner0a8191e2010-01-05 07:50:36 +00001167 // Ensure that the larger constant is on the RHS.
1168 bool ShouldSwap;
Sanjay Patel28611ac2017-04-11 15:57:32 +00001169 if (CmpInst::isSigned(PredL) ||
1170 (ICmpInst::isEquality(PredL) && CmpInst::isSigned(PredR)))
Sanjay Patel570e35c2017-04-10 16:55:57 +00001171 ShouldSwap = LHSC->getValue().sgt(RHSC->getValue());
Sanjay Patel28611ac2017-04-11 15:57:32 +00001172 else
1173 ShouldSwap = LHSC->getValue().ugt(RHSC->getValue());
Craig Topper9d4171a2012-12-20 07:09:41 +00001174
Chris Lattner0a8191e2010-01-05 07:50:36 +00001175 if (ShouldSwap) {
1176 std::swap(LHS, RHS);
Sanjay Patel519a87a2017-04-05 17:38:34 +00001177 std::swap(LHSC, RHSC);
1178 std::swap(PredL, PredR);
Chris Lattner0a8191e2010-01-05 07:50:36 +00001179 }
1180
Dan Gohman4a618822010-02-10 16:03:48 +00001181 // At this point, we know we have two icmp instructions
Chris Lattner0a8191e2010-01-05 07:50:36 +00001182 // comparing a value against two constants and and'ing the result
1183 // together. Because of the above check, we know that we only have
Craig Topper9d4171a2012-12-20 07:09:41 +00001184 // icmp eq, icmp ne, icmp [su]lt, and icmp [SU]gt here. We also know
1185 // (from the icmp folding check above), that the two constants
Chris Lattner0a8191e2010-01-05 07:50:36 +00001186 // are not equal and that the larger constant is on the RHS
Sanjay Patel519a87a2017-04-05 17:38:34 +00001187 assert(LHSC != RHSC && "Compares not folded above?");
Chris Lattner0a8191e2010-01-05 07:50:36 +00001188
Sanjay Patel519a87a2017-04-05 17:38:34 +00001189 switch (PredL) {
1190 default:
1191 llvm_unreachable("Unknown integer condition code!");
Chris Lattner0a8191e2010-01-05 07:50:36 +00001192 case ICmpInst::ICMP_NE:
Sanjay Patel519a87a2017-04-05 17:38:34 +00001193 switch (PredR) {
1194 default:
1195 llvm_unreachable("Unknown integer condition code!");
Chris Lattner0a8191e2010-01-05 07:50:36 +00001196 case ICmpInst::ICMP_ULT:
Craig Topper8fabdfe2019-07-21 05:26:05 +00001197 // (X != 13 & X u< 14) -> X < 13
1198 if (LHSC->getValue() == (RHSC->getValue() - 1))
Craig Topperbb4069e2017-07-07 23:16:26 +00001199 return Builder.CreateICmpULT(LHS0, LHSC);
Craig Toppere9abc812019-07-24 20:57:29 +00001200 if (LHSC->isZero()) // (X != 0 & X u< C) -> X-1 u< C-1
Sanjay Patele4159d22017-04-10 19:38:36 +00001201 return insertRangeTest(LHS0, LHSC->getValue() + 1, RHSC->getValue(),
Sanjay Patel85d79742016-08-31 19:49:56 +00001202 false, true);
Sanjay Patel519a87a2017-04-05 17:38:34 +00001203 break; // (X != 13 & X u< 15) -> no change
Chris Lattner0a8191e2010-01-05 07:50:36 +00001204 case ICmpInst::ICMP_SLT:
Craig Topper8fabdfe2019-07-21 05:26:05 +00001205 // (X != 13 & X s< 14) -> X < 13
1206 if (LHSC->getValue() == (RHSC->getValue() - 1))
Craig Topperbb4069e2017-07-07 23:16:26 +00001207 return Builder.CreateICmpSLT(LHS0, LHSC);
Craig Toppere9abc812019-07-24 20:57:29 +00001208 // (X != INT_MIN & X s< C) -> X-(INT_MIN+1) u< (C-(INT_MIN+1))
1209 if (LHSC->isMinValue(true))
1210 return insertRangeTest(LHS0, LHSC->getValue() + 1, RHSC->getValue(),
1211 true, true);
1212 break; // (X != 13 & X s< 15) -> no change
Chris Lattner0a8191e2010-01-05 07:50:36 +00001213 case ICmpInst::ICMP_NE:
Sanjay Patel7cfe4162017-04-14 19:23:50 +00001214 // Potential folds for this case should already be handled.
1215 break;
Chris Lattner0a8191e2010-01-05 07:50:36 +00001216 }
1217 break;
Chris Lattner0a8191e2010-01-05 07:50:36 +00001218 case ICmpInst::ICMP_UGT:
Sanjay Patel519a87a2017-04-05 17:38:34 +00001219 switch (PredR) {
1220 default:
1221 llvm_unreachable("Unknown integer condition code!");
Chris Lattner0a8191e2010-01-05 07:50:36 +00001222 case ICmpInst::ICMP_NE:
Craig Topper8fabdfe2019-07-21 05:26:05 +00001223 // (X u> 13 & X != 14) -> X u> 14
1224 if (RHSC->getValue() == (LHSC->getValue() + 1))
Craig Topperbb4069e2017-07-07 23:16:26 +00001225 return Builder.CreateICmp(PredL, LHS0, RHSC);
Craig Toppere9abc812019-07-24 20:57:29 +00001226 // X u> C & X != UINT_MAX -> (X-(C+1)) u< UINT_MAX-(C+1)
1227 if (RHSC->isMaxValue(false))
1228 return insertRangeTest(LHS0, LHSC->getValue() + 1, RHSC->getValue(),
1229 false, true);
Sanjay Patel519a87a2017-04-05 17:38:34 +00001230 break; // (X u> 13 & X != 15) -> no change
Craig Toppere9abc812019-07-24 20:57:29 +00001231 case ICmpInst::ICMP_ULT: // (X u> 13 & X u< 15) -> (X-14) u< 1
Sanjay Patele4159d22017-04-10 19:38:36 +00001232 return insertRangeTest(LHS0, LHSC->getValue() + 1, RHSC->getValue(),
1233 false, true);
Chris Lattner0a8191e2010-01-05 07:50:36 +00001234 }
1235 break;
1236 case ICmpInst::ICMP_SGT:
Sanjay Patel519a87a2017-04-05 17:38:34 +00001237 switch (PredR) {
1238 default:
1239 llvm_unreachable("Unknown integer condition code!");
Chris Lattner0a8191e2010-01-05 07:50:36 +00001240 case ICmpInst::ICMP_NE:
Craig Topper8fabdfe2019-07-21 05:26:05 +00001241 // (X s> 13 & X != 14) -> X s> 14
1242 if (RHSC->getValue() == (LHSC->getValue() + 1))
Craig Topperbb4069e2017-07-07 23:16:26 +00001243 return Builder.CreateICmp(PredL, LHS0, RHSC);
Craig Toppere9abc812019-07-24 20:57:29 +00001244 // X s> C & X != INT_MAX -> (X-(C+1)) u< INT_MAX-(C+1)
1245 if (RHSC->isMaxValue(true))
1246 return insertRangeTest(LHS0, LHSC->getValue() + 1, RHSC->getValue(),
1247 true, true);
Sanjay Patel519a87a2017-04-05 17:38:34 +00001248 break; // (X s> 13 & X != 15) -> no change
Craig Toppere9abc812019-07-24 20:57:29 +00001249 case ICmpInst::ICMP_SLT: // (X s> 13 & X s< 15) -> (X-14) u< 1
Sanjay Patele4159d22017-04-10 19:38:36 +00001250 return insertRangeTest(LHS0, LHSC->getValue() + 1, RHSC->getValue(), true,
Sanjay Patel519a87a2017-04-05 17:38:34 +00001251 true);
Chris Lattner0a8191e2010-01-05 07:50:36 +00001252 }
1253 break;
1254 }
Craig Topper9d4171a2012-12-20 07:09:41 +00001255
Craig Topperf40110f2014-04-25 05:29:35 +00001256 return nullptr;
Chris Lattner0a8191e2010-01-05 07:50:36 +00001257}
1258
Sanjay Patel64fc5da2017-09-02 17:53:33 +00001259Value *InstCombiner::foldLogicOfFCmps(FCmpInst *LHS, FCmpInst *RHS, bool IsAnd) {
Sanjay Patel275bb5a2017-09-02 17:17:17 +00001260 Value *LHS0 = LHS->getOperand(0), *LHS1 = LHS->getOperand(1);
1261 Value *RHS0 = RHS->getOperand(0), *RHS1 = RHS->getOperand(1);
1262 FCmpInst::Predicate PredL = LHS->getPredicate(), PredR = RHS->getPredicate();
Tim Shenaec68b22016-06-29 20:10:17 +00001263
Sanjay Patel275bb5a2017-09-02 17:17:17 +00001264 if (LHS0 == RHS1 && RHS0 == LHS1) {
Tim Shenaec68b22016-06-29 20:10:17 +00001265 // Swap RHS operands to match LHS.
Sanjay Patel275bb5a2017-09-02 17:17:17 +00001266 PredR = FCmpInst::getSwappedPredicate(PredR);
1267 std::swap(RHS0, RHS1);
Tim Shenaec68b22016-06-29 20:10:17 +00001268 }
1269
1270 // Simplify (fcmp cc0 x, y) & (fcmp cc1 x, y).
1271 // Suppose the relation between x and y is R, where R is one of
1272 // U(1000), L(0100), G(0010) or E(0001), and CC0 and CC1 are the bitmasks for
1273 // testing the desired relations.
1274 //
1275 // Since (R & CC0) and (R & CC1) are either R or 0, we actually have this:
1276 // bool(R & CC0) && bool(R & CC1)
1277 // = bool((R & CC0) & (R & CC1))
1278 // = bool(R & (CC0 & CC1)) <= by re-association, commutation, and idempotency
Sanjay Patel4c52f762017-09-02 16:30:27 +00001279 //
1280 // Since (R & CC0) and (R & CC1) are either R or 0, we actually have this:
1281 // bool(R & CC0) || bool(R & CC1)
1282 // = bool((R & CC0) | (R & CC1))
1283 // = bool(R & (CC0 | CC1)) <= by reversed distribution (contribution? ;)
Sanjay Patel64fc5da2017-09-02 17:53:33 +00001284 if (LHS0 == RHS0 && LHS1 == RHS1) {
1285 unsigned FCmpCodeL = getFCmpCode(PredL);
1286 unsigned FCmpCodeR = getFCmpCode(PredR);
1287 unsigned NewPred = IsAnd ? FCmpCodeL & FCmpCodeR : FCmpCodeL | FCmpCodeR;
1288 return getFCmpValue(NewPred, LHS0, LHS1, Builder);
1289 }
Sanjay Patel4c52f762017-09-02 16:30:27 +00001290
Sanjay Patel64fc5da2017-09-02 17:53:33 +00001291 if ((PredL == FCmpInst::FCMP_ORD && PredR == FCmpInst::FCMP_ORD && IsAnd) ||
1292 (PredL == FCmpInst::FCMP_UNO && PredR == FCmpInst::FCMP_UNO && !IsAnd)) {
Sanjay Patel275bb5a2017-09-02 17:17:17 +00001293 if (LHS0->getType() != RHS0->getType())
1294 return nullptr;
1295
Sanjay Patel6840c5f2017-09-05 23:13:13 +00001296 // FCmp canonicalization ensures that (fcmp ord/uno X, X) and
Sanjay Patel93e64dd2018-03-25 21:16:33 +00001297 // (fcmp ord/uno X, C) will be transformed to (fcmp X, +0.0).
1298 if (match(LHS1, m_PosZeroFP()) && match(RHS1, m_PosZeroFP()))
Sanjay Patel6840c5f2017-09-05 23:13:13 +00001299 // Ignore the constants because they are obviously not NANs:
1300 // (fcmp ord x, 0.0) & (fcmp ord y, 0.0) -> (fcmp ord x, y)
1301 // (fcmp uno x, 0.0) | (fcmp uno y, 0.0) -> (fcmp uno x, y)
Sanjay Patel64fc5da2017-09-02 17:53:33 +00001302 return Builder.CreateFCmp(PredL, LHS0, RHS0);
Sanjay Patel4c52f762017-09-02 16:30:27 +00001303 }
1304
1305 return nullptr;
1306}
1307
Sanjay Patel5b820322019-03-19 16:39:17 +00001308/// This a limited reassociation for a special case (see above) where we are
1309/// checking if two values are either both NAN (unordered) or not-NAN (ordered).
1310/// This could be handled more generally in '-reassociation', but it seems like
1311/// an unlikely pattern for a large number of logic ops and fcmps.
1312static Instruction *reassociateFCmps(BinaryOperator &BO,
1313 InstCombiner::BuilderTy &Builder) {
1314 Instruction::BinaryOps Opcode = BO.getOpcode();
1315 assert((Opcode == Instruction::And || Opcode == Instruction::Or) &&
1316 "Expecting and/or op for fcmp transform");
1317
1318 // There are 4 commuted variants of the pattern. Canonicalize operands of this
1319 // logic op so an fcmp is operand 0 and a matching logic op is operand 1.
1320 Value *Op0 = BO.getOperand(0), *Op1 = BO.getOperand(1), *X;
1321 FCmpInst::Predicate Pred;
1322 if (match(Op1, m_FCmp(Pred, m_Value(), m_AnyZeroFP())))
1323 std::swap(Op0, Op1);
1324
1325 // Match inner binop and the predicate for combining 2 NAN checks into 1.
1326 BinaryOperator *BO1;
1327 FCmpInst::Predicate NanPred = Opcode == Instruction::And ? FCmpInst::FCMP_ORD
1328 : FCmpInst::FCMP_UNO;
1329 if (!match(Op0, m_FCmp(Pred, m_Value(X), m_AnyZeroFP())) || Pred != NanPred ||
1330 !match(Op1, m_BinOp(BO1)) || BO1->getOpcode() != Opcode)
1331 return nullptr;
1332
1333 // The inner logic op must have a matching fcmp operand.
1334 Value *BO10 = BO1->getOperand(0), *BO11 = BO1->getOperand(1), *Y;
1335 if (!match(BO10, m_FCmp(Pred, m_Value(Y), m_AnyZeroFP())) ||
1336 Pred != NanPred || X->getType() != Y->getType())
1337 std::swap(BO10, BO11);
1338
1339 if (!match(BO10, m_FCmp(Pred, m_Value(Y), m_AnyZeroFP())) ||
1340 Pred != NanPred || X->getType() != Y->getType())
1341 return nullptr;
1342
1343 // and (fcmp ord X, 0), (and (fcmp ord Y, 0), Z) --> and (fcmp ord X, Y), Z
1344 // or (fcmp uno X, 0), (or (fcmp uno Y, 0), Z) --> or (fcmp uno X, Y), Z
1345 Value *NewFCmp = Builder.CreateFCmp(Pred, X, Y);
1346 if (auto *NewFCmpInst = dyn_cast<FCmpInst>(NewFCmp)) {
1347 // Intersect FMF from the 2 source fcmps.
1348 NewFCmpInst->copyIRFlags(Op0);
1349 NewFCmpInst->andIRFlags(BO10);
1350 }
1351 return BinaryOperator::Create(Opcode, NewFCmp, BO11);
1352}
1353
Sanjay Patelb54e62f2015-09-08 20:14:13 +00001354/// Match De Morgan's Laws:
1355/// (~A & ~B) == (~(A | B))
1356/// (~A | ~B) == (~(A & B))
1357static Instruction *matchDeMorgansLaws(BinaryOperator &I,
Sanjay Patel7caaa792017-05-09 20:05:05 +00001358 InstCombiner::BuilderTy &Builder) {
Sanjay Patelb54e62f2015-09-08 20:14:13 +00001359 auto Opcode = I.getOpcode();
1360 assert((Opcode == Instruction::And || Opcode == Instruction::Or) &&
1361 "Trying to match De Morgan's Laws with something other than and/or");
1362
Sanjay Patel7caaa792017-05-09 20:05:05 +00001363 // Flip the logic operation.
1364 Opcode = (Opcode == Instruction::And) ? Instruction::Or : Instruction::And;
1365
1366 Value *A, *B;
1367 if (match(I.getOperand(0), m_OneUse(m_Not(m_Value(A)))) &&
1368 match(I.getOperand(1), m_OneUse(m_Not(m_Value(B)))) &&
1369 !IsFreeToInvert(A, A->hasOneUse()) &&
1370 !IsFreeToInvert(B, B->hasOneUse())) {
1371 Value *AndOr = Builder.CreateBinOp(Opcode, A, B, I.getName() + ".demorgan");
1372 return BinaryOperator::CreateNot(AndOr);
1373 }
Sanjay Patelb54e62f2015-09-08 20:14:13 +00001374
1375 return nullptr;
1376}
1377
Tobias Grosser8ef834c2016-07-19 09:06:08 +00001378bool InstCombiner::shouldOptimizeCast(CastInst *CI) {
1379 Value *CastSrc = CI->getOperand(0);
1380
1381 // Noop casts and casts of constants should be eliminated trivially.
1382 if (CI->getSrcTy() == CI->getDestTy() || isa<Constant>(CastSrc))
1383 return false;
1384
1385 // If this cast is paired with another cast that can be eliminated, we prefer
1386 // to have it eliminated.
1387 if (const auto *PrecedingCI = dyn_cast<CastInst>(CastSrc))
1388 if (isEliminableCastPair(PrecedingCI, CI))
1389 return false;
1390
Tobias Grosser8ef834c2016-07-19 09:06:08 +00001391 return true;
1392}
1393
Sanjay Patel60312bc42016-09-12 00:16:23 +00001394/// Fold {and,or,xor} (cast X), C.
1395static Instruction *foldLogicCastConstant(BinaryOperator &Logic, CastInst *Cast,
Craig Topperbb4069e2017-07-07 23:16:26 +00001396 InstCombiner::BuilderTy &Builder) {
Craig Topper5706c012017-08-09 06:17:48 +00001397 Constant *C = dyn_cast<Constant>(Logic.getOperand(1));
1398 if (!C)
Sanjay Patel60312bc42016-09-12 00:16:23 +00001399 return nullptr;
1400
1401 auto LogicOpc = Logic.getOpcode();
1402 Type *DestTy = Logic.getType();
1403 Type *SrcTy = Cast->getSrcTy();
1404
Craig Topperae9b87d2017-08-02 20:25:56 +00001405 // Move the logic operation ahead of a zext or sext if the constant is
1406 // unchanged in the smaller source type. Performing the logic in a smaller
1407 // type may provide more information to later folds, and the smaller logic
1408 // instruction may be cheaper (particularly in the case of vectors).
Sanjay Patel60312bc42016-09-12 00:16:23 +00001409 Value *X;
Sanjay Patel60312bc42016-09-12 00:16:23 +00001410 if (match(Cast, m_OneUse(m_ZExt(m_Value(X))))) {
1411 Constant *TruncC = ConstantExpr::getTrunc(C, SrcTy);
1412 Constant *ZextTruncC = ConstantExpr::getZExt(TruncC, DestTy);
1413 if (ZextTruncC == C) {
1414 // LogicOpc (zext X), C --> zext (LogicOpc X, C)
Craig Topperbb4069e2017-07-07 23:16:26 +00001415 Value *NewOp = Builder.CreateBinOp(LogicOpc, X, TruncC);
Sanjay Patel60312bc42016-09-12 00:16:23 +00001416 return new ZExtInst(NewOp, DestTy);
1417 }
1418 }
1419
Craig Topperae9b87d2017-08-02 20:25:56 +00001420 if (match(Cast, m_OneUse(m_SExt(m_Value(X))))) {
1421 Constant *TruncC = ConstantExpr::getTrunc(C, SrcTy);
1422 Constant *SextTruncC = ConstantExpr::getSExt(TruncC, DestTy);
1423 if (SextTruncC == C) {
1424 // LogicOpc (sext X), C --> sext (LogicOpc X, C)
1425 Value *NewOp = Builder.CreateBinOp(LogicOpc, X, TruncC);
1426 return new SExtInst(NewOp, DestTy);
1427 }
1428 }
1429
Sanjay Patel60312bc42016-09-12 00:16:23 +00001430 return nullptr;
1431}
1432
1433/// Fold {and,or,xor} (cast X), Y.
Sanjay Patel40e7ba02016-02-23 16:36:07 +00001434Instruction *InstCombiner::foldCastedBitwiseLogic(BinaryOperator &I) {
Sanjay Patel75b4ae22016-02-23 23:56:23 +00001435 auto LogicOpc = I.getOpcode();
Sanjay Patel1e6ca442016-11-22 22:54:36 +00001436 assert(I.isBitwiseLogicOp() && "Unexpected opcode for bitwise logic folding");
Sanjay Patel75b4ae22016-02-23 23:56:23 +00001437
Sanjay Patel40e7ba02016-02-23 16:36:07 +00001438 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Sanjay Patel713f25e2016-02-23 17:41:34 +00001439 CastInst *Cast0 = dyn_cast<CastInst>(Op0);
Sanjay Patel9bba7502016-03-03 19:19:04 +00001440 if (!Cast0)
Sanjay Patel7d0d8102016-02-23 16:59:21 +00001441 return nullptr;
Sanjay Patel40e7ba02016-02-23 16:36:07 +00001442
Sanjay Patel9bba7502016-03-03 19:19:04 +00001443 // This must be a cast from an integer or integer vector source type to allow
1444 // transformation of the logic operation to the source type.
1445 Type *DestTy = I.getType();
Sanjay Patel713f25e2016-02-23 17:41:34 +00001446 Type *SrcTy = Cast0->getSrcTy();
Sanjay Patel9bba7502016-03-03 19:19:04 +00001447 if (!SrcTy->isIntOrIntVectorTy())
1448 return nullptr;
1449
Sanjay Patel60312bc42016-09-12 00:16:23 +00001450 if (Instruction *Ret = foldLogicCastConstant(I, Cast0, Builder))
1451 return Ret;
Sanjay Patel0753c062016-07-21 00:24:18 +00001452
Sanjay Patel9bba7502016-03-03 19:19:04 +00001453 CastInst *Cast1 = dyn_cast<CastInst>(Op1);
1454 if (!Cast1)
1455 return nullptr;
1456
1457 // Both operands of the logic operation are casts. The casts must be of the
1458 // same type for reduction.
1459 auto CastOpcode = Cast0->getOpcode();
1460 if (CastOpcode != Cast1->getOpcode() || SrcTy != Cast1->getSrcTy())
Sanjay Patel713f25e2016-02-23 17:41:34 +00001461 return nullptr;
1462
1463 Value *Cast0Src = Cast0->getOperand(0);
1464 Value *Cast1Src = Cast1->getOperand(0);
Sanjay Patel713f25e2016-02-23 17:41:34 +00001465
Tobias Grosser8ef834c2016-07-19 09:06:08 +00001466 // fold logic(cast(A), cast(B)) -> cast(logic(A, B))
Tobias Grosser8757e382016-08-03 19:30:35 +00001467 if (shouldOptimizeCast(Cast0) && shouldOptimizeCast(Cast1)) {
Craig Topperbb4069e2017-07-07 23:16:26 +00001468 Value *NewOp = Builder.CreateBinOp(LogicOpc, Cast0Src, Cast1Src,
Sanjay Patel75b4ae22016-02-23 23:56:23 +00001469 I.getName());
Sanjay Patel713f25e2016-02-23 17:41:34 +00001470 return CastInst::Create(CastOpcode, NewOp, DestTy);
Sanjay Patel40e7ba02016-02-23 16:36:07 +00001471 }
Sanjay Patel713f25e2016-02-23 17:41:34 +00001472
Sanjay Pateldbbaca02016-02-24 17:00:34 +00001473 // For now, only 'and'/'or' have optimizations after this.
1474 if (LogicOpc == Instruction::Xor)
1475 return nullptr;
1476
Sanjay Patel75b4ae22016-02-23 23:56:23 +00001477 // If this is logic(cast(icmp), cast(icmp)), try to fold this even if the
Sanjay Patel713f25e2016-02-23 17:41:34 +00001478 // cast is otherwise not optimizable. This happens for vector sexts.
Sanjay Patel75b4ae22016-02-23 23:56:23 +00001479 ICmpInst *ICmp0 = dyn_cast<ICmpInst>(Cast0Src);
1480 ICmpInst *ICmp1 = dyn_cast<ICmpInst>(Cast1Src);
1481 if (ICmp0 && ICmp1) {
Craig Topperda6ea0d2017-06-16 05:10:37 +00001482 Value *Res = LogicOpc == Instruction::And ? foldAndOfICmps(ICmp0, ICmp1, I)
Craig Topperf2d3e6d2017-06-15 19:09:51 +00001483 : foldOrOfICmps(ICmp0, ICmp1, I);
Sanjay Patel75b4ae22016-02-23 23:56:23 +00001484 if (Res)
1485 return CastInst::Create(CastOpcode, Res, DestTy);
1486 return nullptr;
1487 }
Sanjay Patel713f25e2016-02-23 17:41:34 +00001488
Sanjay Patel75b4ae22016-02-23 23:56:23 +00001489 // If this is logic(cast(fcmp), cast(fcmp)), try to fold this even if the
Sanjay Patel713f25e2016-02-23 17:41:34 +00001490 // cast is otherwise not optimizable. This happens for vector sexts.
Sanjay Patel75b4ae22016-02-23 23:56:23 +00001491 FCmpInst *FCmp0 = dyn_cast<FCmpInst>(Cast0Src);
1492 FCmpInst *FCmp1 = dyn_cast<FCmpInst>(Cast1Src);
Sanjay Patel64fc5da2017-09-02 17:53:33 +00001493 if (FCmp0 && FCmp1)
1494 if (Value *R = foldLogicOfFCmps(FCmp0, FCmp1, LogicOpc == Instruction::And))
1495 return CastInst::Create(CastOpcode, R, DestTy);
Sanjay Patel713f25e2016-02-23 17:41:34 +00001496
Sanjay Patel40e7ba02016-02-23 16:36:07 +00001497 return nullptr;
1498}
1499
Sanjay Patele0c26e02017-04-23 22:00:02 +00001500static Instruction *foldAndToXor(BinaryOperator &I,
1501 InstCombiner::BuilderTy &Builder) {
1502 assert(I.getOpcode() == Instruction::And);
1503 Value *Op0 = I.getOperand(0);
1504 Value *Op1 = I.getOperand(1);
1505 Value *A, *B;
1506
1507 // Operand complexity canonicalization guarantees that the 'or' is Op0.
1508 // (A | B) & ~(A & B) --> A ^ B
1509 // (A | B) & ~(B & A) --> A ^ B
Roman Lebedev6959b8e2018-04-27 21:23:20 +00001510 if (match(&I, m_BinOp(m_Or(m_Value(A), m_Value(B)),
1511 m_Not(m_c_And(m_Deferred(A), m_Deferred(B))))))
Sanjay Patele0c26e02017-04-23 22:00:02 +00001512 return BinaryOperator::CreateXor(A, B);
1513
1514 // (A | ~B) & (~A | B) --> ~(A ^ B)
1515 // (A | ~B) & (B | ~A) --> ~(A ^ B)
1516 // (~B | A) & (~A | B) --> ~(A ^ B)
1517 // (~B | A) & (B | ~A) --> ~(A ^ B)
Craig Topper0de5e6a2017-06-22 16:12:02 +00001518 if (Op0->hasOneUse() || Op1->hasOneUse())
Roman Lebedev6959b8e2018-04-27 21:23:20 +00001519 if (match(&I, m_BinOp(m_c_Or(m_Value(A), m_Not(m_Value(B))),
1520 m_c_Or(m_Not(m_Deferred(A)), m_Deferred(B)))))
Craig Topper0de5e6a2017-06-22 16:12:02 +00001521 return BinaryOperator::CreateNot(Builder.CreateXor(A, B));
Sanjay Patele0c26e02017-04-23 22:00:02 +00001522
1523 return nullptr;
1524}
1525
1526static Instruction *foldOrToXor(BinaryOperator &I,
1527 InstCombiner::BuilderTy &Builder) {
1528 assert(I.getOpcode() == Instruction::Or);
1529 Value *Op0 = I.getOperand(0);
1530 Value *Op1 = I.getOperand(1);
1531 Value *A, *B;
1532
1533 // Operand complexity canonicalization guarantees that the 'and' is Op0.
1534 // (A & B) | ~(A | B) --> ~(A ^ B)
1535 // (A & B) | ~(B | A) --> ~(A ^ B)
Craig Topper0de5e6a2017-06-22 16:12:02 +00001536 if (Op0->hasOneUse() || Op1->hasOneUse())
1537 if (match(Op0, m_And(m_Value(A), m_Value(B))) &&
1538 match(Op1, m_Not(m_c_Or(m_Specific(A), m_Specific(B)))))
1539 return BinaryOperator::CreateNot(Builder.CreateXor(A, B));
Sanjay Patele0c26e02017-04-23 22:00:02 +00001540
1541 // (A & ~B) | (~A & B) --> A ^ B
1542 // (A & ~B) | (B & ~A) --> A ^ B
1543 // (~B & A) | (~A & B) --> A ^ B
1544 // (~B & A) | (B & ~A) --> A ^ B
1545 if (match(Op0, m_c_And(m_Value(A), m_Not(m_Value(B)))) &&
1546 match(Op1, m_c_And(m_Not(m_Specific(A)), m_Specific(B))))
1547 return BinaryOperator::CreateXor(A, B);
1548
1549 return nullptr;
1550}
1551
Sanjay Patel1d681122018-01-25 16:34:36 +00001552/// Return true if a constant shift amount is always less than the specified
1553/// bit-width. If not, the shift could create poison in the narrower type.
1554static bool canNarrowShiftAmt(Constant *C, unsigned BitWidth) {
1555 if (auto *ScalarC = dyn_cast<ConstantInt>(C))
1556 return ScalarC->getZExtValue() < BitWidth;
1557
1558 if (C->getType()->isVectorTy()) {
1559 // Check each element of a constant vector.
1560 unsigned NumElts = C->getType()->getVectorNumElements();
1561 for (unsigned i = 0; i != NumElts; ++i) {
1562 Constant *Elt = C->getAggregateElement(i);
1563 if (!Elt)
1564 return false;
1565 if (isa<UndefValue>(Elt))
1566 continue;
1567 auto *CI = dyn_cast<ConstantInt>(Elt);
1568 if (!CI || CI->getZExtValue() >= BitWidth)
1569 return false;
1570 }
1571 return true;
1572 }
1573
1574 // The constant is a constant expression or unknown.
1575 return false;
1576}
1577
1578/// Try to use narrower ops (sink zext ops) for an 'and' with binop operand and
1579/// a common zext operand: and (binop (zext X), C), (zext X).
1580Instruction *InstCombiner::narrowMaskedBinOp(BinaryOperator &And) {
1581 // This transform could also apply to {or, and, xor}, but there are better
1582 // folds for those cases, so we don't expect those patterns here. AShr is not
1583 // handled because it should always be transformed to LShr in this sequence.
1584 // The subtract transform is different because it has a constant on the left.
1585 // Add/mul commute the constant to RHS; sub with constant RHS becomes add.
1586 Value *Op0 = And.getOperand(0), *Op1 = And.getOperand(1);
1587 Constant *C;
1588 if (!match(Op0, m_OneUse(m_Add(m_Specific(Op1), m_Constant(C)))) &&
1589 !match(Op0, m_OneUse(m_Mul(m_Specific(Op1), m_Constant(C)))) &&
1590 !match(Op0, m_OneUse(m_LShr(m_Specific(Op1), m_Constant(C)))) &&
1591 !match(Op0, m_OneUse(m_Shl(m_Specific(Op1), m_Constant(C)))) &&
1592 !match(Op0, m_OneUse(m_Sub(m_Constant(C), m_Specific(Op1)))))
1593 return nullptr;
1594
1595 Value *X;
Craig Topperee99aa42018-03-12 18:46:05 +00001596 if (!match(Op1, m_ZExt(m_Value(X))) || Op1->hasNUsesOrMore(3))
Sanjay Patel1d681122018-01-25 16:34:36 +00001597 return nullptr;
1598
1599 Type *Ty = And.getType();
1600 if (!isa<VectorType>(Ty) && !shouldChangeType(Ty, X->getType()))
1601 return nullptr;
1602
1603 // If we're narrowing a shift, the shift amount must be safe (less than the
1604 // width) in the narrower type. If the shift amount is greater, instsimplify
1605 // usually handles that case, but we can't guarantee/assert it.
1606 Instruction::BinaryOps Opc = cast<BinaryOperator>(Op0)->getOpcode();
1607 if (Opc == Instruction::LShr || Opc == Instruction::Shl)
1608 if (!canNarrowShiftAmt(C, X->getType()->getScalarSizeInBits()))
1609 return nullptr;
1610
1611 // and (sub C, (zext X)), (zext X) --> zext (and (sub C', X), X)
1612 // and (binop (zext X), C), (zext X) --> zext (and (binop X, C'), X)
1613 Value *NewC = ConstantExpr::getTrunc(C, X->getType());
1614 Value *NewBO = Opc == Instruction::Sub ? Builder.CreateBinOp(Opc, NewC, X)
1615 : Builder.CreateBinOp(Opc, X, NewC);
1616 return new ZExtInst(Builder.CreateAnd(NewBO, X), Ty);
1617}
1618
Sanjay Patel2b9d4b42016-12-18 18:49:48 +00001619// FIXME: We use commutative matchers (m_c_*) for some, but not all, matches
1620// here. We should standardize that construct where it is needed or choose some
1621// other way to ensure that commutated variants of patterns are not missed.
Chris Lattner0a8191e2010-01-05 07:50:36 +00001622Instruction *InstCombiner::visitAnd(BinaryOperator &I) {
Sanjay Patel7b0fc752018-06-21 17:06:36 +00001623 if (Value *V = SimplifyAndInst(I.getOperand(0), I.getOperand(1),
1624 SQ.getWithInstruction(&I)))
Sanjay Patel4b198802016-02-01 22:23:39 +00001625 return replaceInstUsesWith(I, V);
Chris Lattner0a8191e2010-01-05 07:50:36 +00001626
Sanjay Patel70043b72018-07-13 01:18:07 +00001627 if (SimplifyAssociativeOrCommutative(I))
1628 return &I;
1629
Sanjay Patel79dceb22018-10-03 15:20:58 +00001630 if (Instruction *X = foldVectorBinop(I))
Sanjay Patelbbc6d602018-06-02 16:27:44 +00001631 return X;
1632
Craig Topper9d4171a2012-12-20 07:09:41 +00001633 // See if we can simplify any instructions used by the instruction whose sole
Chris Lattner0a8191e2010-01-05 07:50:36 +00001634 // purpose is to compute bits we don't care about.
1635 if (SimplifyDemandedInstructionBits(I))
Craig Topper9d4171a2012-12-20 07:09:41 +00001636 return &I;
Chris Lattner0a8191e2010-01-05 07:50:36 +00001637
Sanjay Patele0c26e02017-04-23 22:00:02 +00001638 // Do this before using distributive laws to catch simple and/or/not patterns.
Craig Topperbb4069e2017-07-07 23:16:26 +00001639 if (Instruction *Xor = foldAndToXor(I, Builder))
Sanjay Patele0c26e02017-04-23 22:00:02 +00001640 return Xor;
1641
1642 // (A|B)&(A|C) -> A|(B&C) etc
1643 if (Value *V = SimplifyUsingDistributiveLaws(I))
1644 return replaceInstUsesWith(I, V);
1645
Craig Topper95e41422017-07-06 16:24:23 +00001646 if (Value *V = SimplifyBSwap(I, Builder))
Sanjay Patel4b198802016-02-01 22:23:39 +00001647 return replaceInstUsesWith(I, V);
Simon Pilgrimbe24ab32014-12-04 09:44:01 +00001648
Sanjay Patel7b0fc752018-06-21 17:06:36 +00001649 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Sanjay Pateldac0ab22017-07-31 21:01:53 +00001650 const APInt *C;
1651 if (match(Op1, m_APInt(C))) {
1652 Value *X, *Y;
1653 if (match(Op0, m_OneUse(m_LogicalShift(m_One(), m_Value(X)))) &&
1654 C->isOneValue()) {
1655 // (1 << X) & 1 --> zext(X == 0)
1656 // (1 >> X) & 1 --> zext(X == 0)
Sanjay Patel3437ee22017-07-15 17:26:01 +00001657 Value *IsZero = Builder.CreateICmpEQ(X, ConstantInt::get(I.getType(), 0));
1658 return new ZExtInst(IsZero, I.getType());
1659 }
Sanjay Pateldac0ab22017-07-31 21:01:53 +00001660
Craig Toppera1693a22017-08-06 23:11:49 +00001661 const APInt *XorC;
1662 if (match(Op0, m_OneUse(m_Xor(m_Value(X), m_APInt(XorC))))) {
1663 // (X ^ C1) & C2 --> (X & C2) ^ (C1&C2)
1664 Constant *NewC = ConstantInt::get(I.getType(), *C & *XorC);
1665 Value *And = Builder.CreateAnd(X, Op1);
1666 And->takeName(Op0);
1667 return BinaryOperator::CreateXor(And, NewC);
1668 }
1669
Craig Topper7091a742017-08-07 18:10:39 +00001670 const APInt *OrC;
1671 if (match(Op0, m_OneUse(m_Or(m_Value(X), m_APInt(OrC))))) {
1672 // (X | C1) & C2 --> (X & C2^(C1&C2)) | (C1&C2)
1673 // NOTE: This reduces the number of bits set in the & mask, which
1674 // can expose opportunities for store narrowing for scalars.
1675 // NOTE: SimplifyDemandedBits should have already removed bits from C1
1676 // that aren't set in C2. Meaning we can replace (C1&C2) with C1 in
1677 // above, but this feels safer.
1678 APInt Together = *C & *OrC;
1679 Value *And = Builder.CreateAnd(X, ConstantInt::get(I.getType(),
1680 Together ^ *C));
1681 And->takeName(Op0);
1682 return BinaryOperator::CreateOr(And, ConstantInt::get(I.getType(),
1683 Together));
1684 }
1685
Sanjay Pateldac0ab22017-07-31 21:01:53 +00001686 // If the mask is only needed on one incoming arm, push the 'and' op up.
1687 if (match(Op0, m_OneUse(m_Xor(m_Value(X), m_Value(Y)))) ||
1688 match(Op0, m_OneUse(m_Or(m_Value(X), m_Value(Y))))) {
1689 APInt NotAndMask(~(*C));
1690 BinaryOperator::BinaryOps BinOp = cast<BinaryOperator>(Op0)->getOpcode();
1691 if (MaskedValueIsZero(X, NotAndMask, 0, &I)) {
1692 // Not masking anything out for the LHS, move mask to RHS.
1693 // and ({x}or X, Y), C --> {x}or X, (and Y, C)
1694 Value *NewRHS = Builder.CreateAnd(Y, Op1, Y->getName() + ".masked");
1695 return BinaryOperator::Create(BinOp, X, NewRHS);
1696 }
1697 if (!isa<Constant>(Y) && MaskedValueIsZero(Y, NotAndMask, 0, &I)) {
1698 // Not masking anything out for the RHS, move mask to LHS.
1699 // and ({x}or X, Y), C --> {x}or (and X, C), Y
1700 Value *NewLHS = Builder.CreateAnd(X, Op1, X->getName() + ".masked");
1701 return BinaryOperator::Create(BinOp, NewLHS, Y);
1702 }
1703 }
Craig Toppera1693a22017-08-06 23:11:49 +00001704
Sanjay Patel3437ee22017-07-15 17:26:01 +00001705 }
Sanjay Patel55b9f882017-07-15 15:29:47 +00001706
Chris Lattner0a8191e2010-01-05 07:50:36 +00001707 if (ConstantInt *AndRHS = dyn_cast<ConstantInt>(Op1)) {
1708 const APInt &AndRHSMask = AndRHS->getValue();
Chris Lattner0a8191e2010-01-05 07:50:36 +00001709
1710 // Optimize a variety of ((val OP C1) & C2) combinations...
1711 if (BinaryOperator *Op0I = dyn_cast<BinaryOperator>(Op0)) {
David Majnemerde55c602017-01-17 18:08:06 +00001712 // ((C1 OP zext(X)) & C2) -> zext((C1-X) & C2) if C2 fits in the bitwidth
1713 // of X and OP behaves well when given trunc(C1) and X.
Craig Topper16dc1652019-03-21 17:50:49 +00001714 // TODO: Do this for vectors by using m_APInt isntead of m_ConstantInt.
David Majnemerde55c602017-01-17 18:08:06 +00001715 switch (Op0I->getOpcode()) {
1716 default:
1717 break;
1718 case Instruction::Xor:
1719 case Instruction::Or:
1720 case Instruction::Mul:
1721 case Instruction::Add:
1722 case Instruction::Sub:
1723 Value *X;
1724 ConstantInt *C1;
Craig Topper16dc1652019-03-21 17:50:49 +00001725 // TODO: The one use restrictions could be relaxed a little if the AND
1726 // is going to be removed.
1727 if (match(Op0I, m_OneUse(m_c_BinOp(m_OneUse(m_ZExt(m_Value(X))),
1728 m_ConstantInt(C1))))) {
David Majnemerde55c602017-01-17 18:08:06 +00001729 if (AndRHSMask.isIntN(X->getType()->getScalarSizeInBits())) {
1730 auto *TruncC1 = ConstantExpr::getTrunc(C1, X->getType());
1731 Value *BinOp;
Sanjay Pateldac0ab22017-07-31 21:01:53 +00001732 Value *Op0LHS = Op0I->getOperand(0);
David Majnemerde55c602017-01-17 18:08:06 +00001733 if (isa<ZExtInst>(Op0LHS))
Craig Topperbb4069e2017-07-07 23:16:26 +00001734 BinOp = Builder.CreateBinOp(Op0I->getOpcode(), X, TruncC1);
David Majnemerde55c602017-01-17 18:08:06 +00001735 else
Craig Topperbb4069e2017-07-07 23:16:26 +00001736 BinOp = Builder.CreateBinOp(Op0I->getOpcode(), TruncC1, X);
David Majnemerde55c602017-01-17 18:08:06 +00001737 auto *TruncC2 = ConstantExpr::getTrunc(AndRHS, X->getType());
Craig Topperbb4069e2017-07-07 23:16:26 +00001738 auto *And = Builder.CreateAnd(BinOp, TruncC2);
David Majnemerde55c602017-01-17 18:08:06 +00001739 return new ZExtInst(And, I.getType());
1740 }
1741 }
1742 }
1743
Chris Lattner0a8191e2010-01-05 07:50:36 +00001744 if (ConstantInt *Op0CI = dyn_cast<ConstantInt>(Op0I->getOperand(1)))
1745 if (Instruction *Res = OptAndOp(Op0I, Op0CI, AndRHS, I))
1746 return Res;
Chris Lattnerdcef03f2011-02-10 05:17:27 +00001747 }
Craig Topper9d4171a2012-12-20 07:09:41 +00001748
Chris Lattnerdcef03f2011-02-10 05:17:27 +00001749 // If this is an integer truncation, and if the source is an 'and' with
1750 // immediate, transform it. This frequently occurs for bitfield accesses.
1751 {
Craig Topperf40110f2014-04-25 05:29:35 +00001752 Value *X = nullptr; ConstantInt *YC = nullptr;
Chris Lattnerdcef03f2011-02-10 05:17:27 +00001753 if (match(Op0, m_Trunc(m_And(m_Value(X), m_ConstantInt(YC))))) {
1754 // Change: and (trunc (and X, YC) to T), C2
1755 // into : and (trunc X to T), trunc(YC) & C2
Craig Topper9d4171a2012-12-20 07:09:41 +00001756 // This will fold the two constants together, which may allow
Chris Lattnerdcef03f2011-02-10 05:17:27 +00001757 // other simplifications.
Craig Topperbb4069e2017-07-07 23:16:26 +00001758 Value *NewCast = Builder.CreateTrunc(X, I.getType(), "and.shrunk");
Chris Lattnerdcef03f2011-02-10 05:17:27 +00001759 Constant *C3 = ConstantExpr::getTrunc(YC, I.getType());
1760 C3 = ConstantExpr::getAnd(C3, AndRHS);
1761 return BinaryOperator::CreateAnd(NewCast, C3);
Chris Lattner0a8191e2010-01-05 07:50:36 +00001762 }
1763 }
Craig Topper86173602017-04-04 20:26:25 +00001764 }
Chris Lattner0a8191e2010-01-05 07:50:36 +00001765
Sanjay Patel1d681122018-01-25 16:34:36 +00001766 if (Instruction *Z = narrowMaskedBinOp(I))
1767 return Z;
1768
Sanjay Patel8fdd87f2018-02-28 16:36:24 +00001769 if (Instruction *FoldedLogic = foldBinOpIntoSelectOrPhi(I))
1770 return FoldedLogic;
Chris Lattner0a8191e2010-01-05 07:50:36 +00001771
Craig Topperbb4069e2017-07-07 23:16:26 +00001772 if (Instruction *DeMorgan = matchDeMorgansLaws(I, Builder))
Sanjay Patelb54e62f2015-09-08 20:14:13 +00001773 return DeMorgan;
Craig Topper9d4171a2012-12-20 07:09:41 +00001774
Chris Lattner0a8191e2010-01-05 07:50:36 +00001775 {
Sanjay Patel9a801cb2018-07-31 13:00:03 +00001776 Value *A, *B, *C;
1777 // A & (A ^ B) --> A & ~B
1778 if (match(Op1, m_OneUse(m_c_Xor(m_Specific(Op0), m_Value(B)))))
1779 return BinaryOperator::CreateAnd(Op0, Builder.CreateNot(B));
1780 // (A ^ B) & A --> A & ~B
1781 if (match(Op0, m_OneUse(m_c_Xor(m_Specific(Op1), m_Value(B)))))
1782 return BinaryOperator::CreateAnd(Op1, Builder.CreateNot(B));
Chris Lattner0a8191e2010-01-05 07:50:36 +00001783
David Majnemer42af3602014-07-30 21:26:37 +00001784 // (A ^ B) & ((B ^ C) ^ A) -> (A ^ B) & ~C
1785 if (match(Op0, m_Xor(m_Value(A), m_Value(B))))
1786 if (match(Op1, m_Xor(m_Xor(m_Specific(B), m_Value(C)), m_Specific(A))))
Craig Toppera7529b62017-06-19 16:23:49 +00001787 if (Op1->hasOneUse() || IsFreeToInvert(C, C->hasOneUse()))
Craig Topperbb4069e2017-07-07 23:16:26 +00001788 return BinaryOperator::CreateAnd(Op0, Builder.CreateNot(C));
David Majnemer42af3602014-07-30 21:26:37 +00001789
1790 // ((A ^ C) ^ B) & (B ^ A) -> (B ^ A) & ~C
1791 if (match(Op0, m_Xor(m_Xor(m_Value(A), m_Value(C)), m_Value(B))))
1792 if (match(Op1, m_Xor(m_Specific(B), m_Specific(A))))
Craig Toppera7529b62017-06-19 16:23:49 +00001793 if (Op0->hasOneUse() || IsFreeToInvert(C, C->hasOneUse()))
Craig Topperbb4069e2017-07-07 23:16:26 +00001794 return BinaryOperator::CreateAnd(Op1, Builder.CreateNot(C));
Suyog Sarda1c6c2f62014-08-01 04:59:26 +00001795
1796 // (A | B) & ((~A) ^ B) -> (A & B)
Craig Topperba011432017-04-25 15:19:04 +00001797 // (A | B) & (B ^ (~A)) -> (A & B)
1798 // (B | A) & ((~A) ^ B) -> (A & B)
1799 // (B | A) & (B ^ (~A)) -> (A & B)
1800 if (match(Op1, m_c_Xor(m_Not(m_Value(A)), m_Value(B))) &&
1801 match(Op0, m_c_Or(m_Specific(A), m_Specific(B))))
Suyog Sarda1c6c2f62014-08-01 04:59:26 +00001802 return BinaryOperator::CreateAnd(A, B);
1803
1804 // ((~A) ^ B) & (A | B) -> (A & B)
Sanjay Patel2b9d4b42016-12-18 18:49:48 +00001805 // ((~A) ^ B) & (B | A) -> (A & B)
Craig Topperba011432017-04-25 15:19:04 +00001806 // (B ^ (~A)) & (A | B) -> (A & B)
1807 // (B ^ (~A)) & (B | A) -> (A & B)
1808 if (match(Op0, m_c_Xor(m_Not(m_Value(A)), m_Value(B))) &&
Sanjay Patel2b9d4b42016-12-18 18:49:48 +00001809 match(Op1, m_c_Or(m_Specific(A), m_Specific(B))))
Suyog Sarda1c6c2f62014-08-01 04:59:26 +00001810 return BinaryOperator::CreateAnd(A, B);
Chris Lattner0a8191e2010-01-05 07:50:36 +00001811 }
Craig Topper9d4171a2012-12-20 07:09:41 +00001812
David Majnemer5e96f1b2014-08-30 06:18:20 +00001813 {
1814 ICmpInst *LHS = dyn_cast<ICmpInst>(Op0);
1815 ICmpInst *RHS = dyn_cast<ICmpInst>(Op1);
1816 if (LHS && RHS)
Craig Topperda6ea0d2017-06-16 05:10:37 +00001817 if (Value *Res = foldAndOfICmps(LHS, RHS, I))
Sanjay Patel4b198802016-02-01 22:23:39 +00001818 return replaceInstUsesWith(I, Res);
Craig Topper9d4171a2012-12-20 07:09:41 +00001819
David Majnemer5e96f1b2014-08-30 06:18:20 +00001820 // TODO: Make this recursive; it's a little tricky because an arbitrary
1821 // number of 'and' instructions might have to be created.
1822 Value *X, *Y;
1823 if (LHS && match(Op1, m_OneUse(m_And(m_Value(X), m_Value(Y))))) {
1824 if (auto *Cmp = dyn_cast<ICmpInst>(X))
Craig Topperda6ea0d2017-06-16 05:10:37 +00001825 if (Value *Res = foldAndOfICmps(LHS, Cmp, I))
Craig Topperbb4069e2017-07-07 23:16:26 +00001826 return replaceInstUsesWith(I, Builder.CreateAnd(Res, Y));
David Majnemer5e96f1b2014-08-30 06:18:20 +00001827 if (auto *Cmp = dyn_cast<ICmpInst>(Y))
Craig Topperda6ea0d2017-06-16 05:10:37 +00001828 if (Value *Res = foldAndOfICmps(LHS, Cmp, I))
Craig Topperbb4069e2017-07-07 23:16:26 +00001829 return replaceInstUsesWith(I, Builder.CreateAnd(Res, X));
David Majnemer5e96f1b2014-08-30 06:18:20 +00001830 }
1831 if (RHS && match(Op0, m_OneUse(m_And(m_Value(X), m_Value(Y))))) {
1832 if (auto *Cmp = dyn_cast<ICmpInst>(X))
Craig Topperda6ea0d2017-06-16 05:10:37 +00001833 if (Value *Res = foldAndOfICmps(Cmp, RHS, I))
Craig Topperbb4069e2017-07-07 23:16:26 +00001834 return replaceInstUsesWith(I, Builder.CreateAnd(Res, Y));
David Majnemer5e96f1b2014-08-30 06:18:20 +00001835 if (auto *Cmp = dyn_cast<ICmpInst>(Y))
Craig Topperda6ea0d2017-06-16 05:10:37 +00001836 if (Value *Res = foldAndOfICmps(Cmp, RHS, I))
Craig Topperbb4069e2017-07-07 23:16:26 +00001837 return replaceInstUsesWith(I, Builder.CreateAnd(Res, X));
David Majnemer5e96f1b2014-08-30 06:18:20 +00001838 }
1839 }
1840
Chris Lattner4e8137d2010-02-11 06:26:33 +00001841 if (FCmpInst *LHS = dyn_cast<FCmpInst>(I.getOperand(0)))
1842 if (FCmpInst *RHS = dyn_cast<FCmpInst>(I.getOperand(1)))
Sanjay Patel64fc5da2017-09-02 17:53:33 +00001843 if (Value *Res = foldLogicOfFCmps(LHS, RHS, true))
Sanjay Patel4b198802016-02-01 22:23:39 +00001844 return replaceInstUsesWith(I, Res);
Craig Topper9d4171a2012-12-20 07:09:41 +00001845
Sanjay Patel5b820322019-03-19 16:39:17 +00001846 if (Instruction *FoldedFCmps = reassociateFCmps(I, Builder))
1847 return FoldedFCmps;
1848
Sanjay Patel40e7ba02016-02-23 16:36:07 +00001849 if (Instruction *CastedAnd = foldCastedBitwiseLogic(I))
1850 return CastedAnd;
Craig Topper9d4171a2012-12-20 07:09:41 +00001851
Craig Topper760ff6e2017-08-04 16:07:20 +00001852 // and(sext(A), B) / and(B, sext(A)) --> A ? B : 0, where A is i1 or <N x i1>.
1853 Value *A;
1854 if (match(Op0, m_OneUse(m_SExt(m_Value(A)))) &&
1855 A->getType()->isIntOrIntVectorTy(1))
1856 return SelectInst::Create(A, Op1, Constant::getNullValue(I.getType()));
1857 if (match(Op1, m_OneUse(m_SExt(m_Value(A)))) &&
1858 A->getType()->isIntOrIntVectorTy(1))
1859 return SelectInst::Create(A, Op0, Constant::getNullValue(I.getType()));
Nadav Rotem513bd8a2013-01-30 06:35:22 +00001860
Sanjay Patel70043b72018-07-13 01:18:07 +00001861 return nullptr;
Chris Lattner0a8191e2010-01-05 07:50:36 +00001862}
1863
Sanjay Patel60728422018-11-14 16:03:36 +00001864Instruction *InstCombiner::matchBSwap(BinaryOperator &Or) {
1865 assert(Or.getOpcode() == Instruction::Or && "bswap requires an 'or'");
1866 Value *Op0 = Or.getOperand(0), *Op1 = Or.getOperand(1);
Chad Rosiere5819e22016-05-26 14:58:51 +00001867
1868 // Look through zero extends.
1869 if (Instruction *Ext = dyn_cast<ZExtInst>(Op0))
1870 Op0 = Ext->getOperand(0);
1871
1872 if (Instruction *Ext = dyn_cast<ZExtInst>(Op1))
1873 Op1 = Ext->getOperand(0);
1874
1875 // (A | B) | C and A | (B | C) -> bswap if possible.
1876 bool OrOfOrs = match(Op0, m_Or(m_Value(), m_Value())) ||
1877 match(Op1, m_Or(m_Value(), m_Value()));
1878
1879 // (A >> B) | (C << D) and (A << B) | (B >> C) -> bswap if possible.
1880 bool OrOfShifts = match(Op0, m_LogicalShift(m_Value(), m_Value())) &&
1881 match(Op1, m_LogicalShift(m_Value(), m_Value()));
1882
1883 // (A & B) | (C & D) -> bswap if possible.
1884 bool OrOfAnds = match(Op0, m_And(m_Value(), m_Value())) &&
1885 match(Op1, m_And(m_Value(), m_Value()));
1886
Omer Paparo Bivas82ef8e12018-05-01 12:25:46 +00001887 // (A << B) | (C & D) -> bswap if possible.
1888 // The bigger pattern here is ((A & C1) << C2) | ((B >> C2) & C1), which is a
1889 // part of the bswap idiom for specific values of C1, C2 (e.g. C1 = 16711935,
1890 // C2 = 8 for i32).
1891 // This pattern can occur when the operands of the 'or' are not canonicalized
1892 // for some reason (not having only one use, for example).
1893 bool OrOfAndAndSh = (match(Op0, m_LogicalShift(m_Value(), m_Value())) &&
1894 match(Op1, m_And(m_Value(), m_Value()))) ||
1895 (match(Op0, m_And(m_Value(), m_Value())) &&
1896 match(Op1, m_LogicalShift(m_Value(), m_Value())));
1897
1898 if (!OrOfOrs && !OrOfShifts && !OrOfAnds && !OrOfAndAndSh)
Chad Rosiere5819e22016-05-26 14:58:51 +00001899 return nullptr;
1900
James Molloyf01488e2016-01-15 09:20:19 +00001901 SmallVector<Instruction*, 4> Insts;
Sanjay Patel60728422018-11-14 16:03:36 +00001902 if (!recognizeBSwapOrBitReverseIdiom(&Or, true, false, Insts))
Craig Topperf40110f2014-04-25 05:29:35 +00001903 return nullptr;
James Molloyf01488e2016-01-15 09:20:19 +00001904 Instruction *LastInst = Insts.pop_back_val();
1905 LastInst->removeFromParent();
Craig Topper9d4171a2012-12-20 07:09:41 +00001906
James Molloyf01488e2016-01-15 09:20:19 +00001907 for (auto *Inst : Insts)
1908 Worklist.Add(Inst);
1909 return LastInst;
Chris Lattner0a8191e2010-01-05 07:50:36 +00001910}
1911
Sanjay Pateld023dd62019-01-08 22:39:55 +00001912/// Transform UB-safe variants of bitwise rotate to the funnel shift intrinsic.
1913static Instruction *matchRotate(Instruction &Or) {
1914 // TODO: Can we reduce the code duplication between this and the related
1915 // rotate matching code under visitSelect and visitTrunc?
1916 unsigned Width = Or.getType()->getScalarSizeInBits();
1917 if (!isPowerOf2_32(Width))
1918 return nullptr;
1919
1920 // First, find an or'd pair of opposite shifts with the same shifted operand:
1921 // or (lshr ShVal, ShAmt0), (shl ShVal, ShAmt1)
Sanjay Patel587fd842019-02-11 19:26:27 +00001922 BinaryOperator *Or0, *Or1;
1923 if (!match(Or.getOperand(0), m_BinOp(Or0)) ||
1924 !match(Or.getOperand(1), m_BinOp(Or1)))
1925 return nullptr;
1926
Sanjay Pateld023dd62019-01-08 22:39:55 +00001927 Value *ShVal, *ShAmt0, *ShAmt1;
1928 if (!match(Or0, m_OneUse(m_LogicalShift(m_Value(ShVal), m_Value(ShAmt0)))) ||
1929 !match(Or1, m_OneUse(m_LogicalShift(m_Specific(ShVal), m_Value(ShAmt1)))))
1930 return nullptr;
1931
Sanjay Patel587fd842019-02-11 19:26:27 +00001932 BinaryOperator::BinaryOps ShiftOpcode0 = Or0->getOpcode();
1933 BinaryOperator::BinaryOps ShiftOpcode1 = Or1->getOpcode();
Sanjay Pateld023dd62019-01-08 22:39:55 +00001934 if (ShiftOpcode0 == ShiftOpcode1)
1935 return nullptr;
1936
1937 // Match the shift amount operands for a rotate pattern. This always matches
1938 // a subtraction on the R operand.
1939 auto matchShiftAmount = [](Value *L, Value *R, unsigned Width) -> Value * {
1940 // The shift amount may be masked with negation:
1941 // (shl ShVal, (X & (Width - 1))) | (lshr ShVal, ((-X) & (Width - 1)))
1942 Value *X;
1943 unsigned Mask = Width - 1;
1944 if (match(L, m_And(m_Value(X), m_SpecificInt(Mask))) &&
1945 match(R, m_And(m_Neg(m_Specific(X)), m_SpecificInt(Mask))))
1946 return X;
1947
Sanjay Patel760f61a2019-05-13 17:28:19 +00001948 // Similar to above, but the shift amount may be extended after masking,
1949 // so return the extended value as the parameter for the intrinsic.
1950 if (match(L, m_ZExt(m_And(m_Value(X), m_SpecificInt(Mask)))) &&
1951 match(R, m_And(m_Neg(m_ZExt(m_And(m_Specific(X), m_SpecificInt(Mask)))),
1952 m_SpecificInt(Mask))))
1953 return L;
1954
Sanjay Pateld023dd62019-01-08 22:39:55 +00001955 return nullptr;
1956 };
1957
1958 Value *ShAmt = matchShiftAmount(ShAmt0, ShAmt1, Width);
1959 bool SubIsOnLHS = false;
1960 if (!ShAmt) {
1961 ShAmt = matchShiftAmount(ShAmt1, ShAmt0, Width);
1962 SubIsOnLHS = true;
1963 }
1964 if (!ShAmt)
1965 return nullptr;
1966
1967 bool IsFshl = (!SubIsOnLHS && ShiftOpcode0 == BinaryOperator::Shl) ||
1968 (SubIsOnLHS && ShiftOpcode1 == BinaryOperator::Shl);
1969 Intrinsic::ID IID = IsFshl ? Intrinsic::fshl : Intrinsic::fshr;
1970 Function *F = Intrinsic::getDeclaration(Or.getModule(), IID, Or.getType());
1971 return IntrinsicInst::Create(F, { ShVal, ShVal, ShAmt });
1972}
1973
Sanjay Patelc00e48a2016-07-13 18:07:02 +00001974/// If all elements of two constant vectors are 0/-1 and inverses, return true.
1975static bool areInverseVectorBitmasks(Constant *C1, Constant *C2) {
1976 unsigned NumElts = C1->getType()->getVectorNumElements();
1977 for (unsigned i = 0; i != NumElts; ++i) {
1978 Constant *EltC1 = C1->getAggregateElement(i);
1979 Constant *EltC2 = C2->getAggregateElement(i);
1980 if (!EltC1 || !EltC2)
1981 return false;
1982
1983 // One element must be all ones, and the other must be all zeros.
Sanjay Patelc00e48a2016-07-13 18:07:02 +00001984 if (!((match(EltC1, m_Zero()) && match(EltC2, m_AllOnes())) ||
1985 (match(EltC2, m_Zero()) && match(EltC1, m_AllOnes()))))
1986 return false;
1987 }
1988 return true;
1989}
1990
Sanjay Patel7ad98ba2016-06-30 14:18:18 +00001991/// We have an expression of the form (A & C) | (B & D). If A is a scalar or
1992/// vector composed of all-zeros or all-ones values and is the bitwise 'not' of
1993/// B, it can be used as the condition operand of a select instruction.
Sanjay Patel3b206302018-10-24 15:17:56 +00001994Value *InstCombiner::getSelectCondition(Value *A, Value *B) {
1995 // Step 1: We may have peeked through bitcasts in the caller.
1996 // Exit immediately if we don't have (vector) integer types.
Sanjay Patel7ad98ba2016-06-30 14:18:18 +00001997 Type *Ty = A->getType();
Sanjay Patel3b206302018-10-24 15:17:56 +00001998 if (!Ty->isIntOrIntVectorTy() || !B->getType()->isIntOrIntVectorTy())
1999 return nullptr;
Sanjay Patel7ad98ba2016-06-30 14:18:18 +00002000
Sanjay Patel3b206302018-10-24 15:17:56 +00002001 // Step 2: We need 0 or all-1's bitmasks.
2002 if (ComputeNumSignBits(A) != Ty->getScalarSizeInBits())
2003 return nullptr;
2004
2005 // Step 3: If B is the 'not' value of A, we have our answer.
2006 if (match(A, m_Not(m_Specific(B)))) {
2007 // If these are scalars or vectors of i1, A can be used directly.
2008 if (Ty->isIntOrIntVectorTy(1))
2009 return A;
2010 return Builder.CreateTrunc(A, CmpInst::makeCmpResultType(Ty));
2011 }
2012
2013 // If both operands are constants, see if the constants are inverse bitmasks.
2014 Constant *AConst, *BConst;
2015 if (match(A, m_Constant(AConst)) && match(B, m_Constant(BConst)))
2016 if (AConst == ConstantExpr::getNot(BConst))
2017 return Builder.CreateZExtOrTrunc(A, CmpInst::makeCmpResultType(Ty));
2018
2019 // Look for more complex patterns. The 'not' op may be hidden behind various
2020 // casts. Look through sexts and bitcasts to find the booleans.
Sanjay Patel7ad98ba2016-06-30 14:18:18 +00002021 Value *Cond;
Sanjay Pateld1e81192017-06-22 15:46:54 +00002022 Value *NotB;
Sanjay Patel7ad98ba2016-06-30 14:18:18 +00002023 if (match(A, m_SExt(m_Value(Cond))) &&
Craig Topperfde47232017-07-09 07:04:03 +00002024 Cond->getType()->isIntOrIntVectorTy(1) &&
Sanjay Pateld1e81192017-06-22 15:46:54 +00002025 match(B, m_OneUse(m_Not(m_Value(NotB))))) {
2026 NotB = peekThroughBitcast(NotB, true);
2027 if (match(NotB, m_SExt(m_Specific(Cond))))
2028 return Cond;
2029 }
Sanjay Patel7ad98ba2016-06-30 14:18:18 +00002030
Sanjay Patelc00e48a2016-07-13 18:07:02 +00002031 // All scalar (and most vector) possibilities should be handled now.
2032 // Try more matches that only apply to non-splat constant vectors.
2033 if (!Ty->isVectorTy())
2034 return nullptr;
Sanjay Patel7ad98ba2016-06-30 14:18:18 +00002035
Sanjay Patelc00e48a2016-07-13 18:07:02 +00002036 // If both operands are xor'd with constants using the same sexted boolean
2037 // operand, see if the constants are inverse bitmasks.
Sanjay Patel3b206302018-10-24 15:17:56 +00002038 // TODO: Use ConstantExpr::getNot()?
2039 if (match(A, (m_Xor(m_SExt(m_Value(Cond)), m_Constant(AConst)))) &&
2040 match(B, (m_Xor(m_SExt(m_Specific(Cond)), m_Constant(BConst)))) &&
Craig Topperfde47232017-07-09 07:04:03 +00002041 Cond->getType()->isIntOrIntVectorTy(1) &&
Sanjay Patel3b206302018-10-24 15:17:56 +00002042 areInverseVectorBitmasks(AConst, BConst)) {
2043 AConst = ConstantExpr::getTrunc(AConst, CmpInst::makeCmpResultType(Ty));
2044 return Builder.CreateXor(Cond, AConst);
Sanjay Patelc00e48a2016-07-13 18:07:02 +00002045 }
Sanjay Patel7ad98ba2016-06-30 14:18:18 +00002046 return nullptr;
2047}
2048
2049/// We have an expression of the form (A & C) | (B & D). Try to simplify this
2050/// to "A' ? C : D", where A' is a boolean or vector of booleans.
Sanjay Patel3b206302018-10-24 15:17:56 +00002051Value *InstCombiner::matchSelectFromAndOr(Value *A, Value *C, Value *B,
2052 Value *D) {
Sanjay Patel4e8ebce2016-06-24 18:55:27 +00002053 // The potential condition of the select may be bitcasted. In that case, look
2054 // through its bitcast and the corresponding bitcast of the 'not' condition.
2055 Type *OrigType = A->getType();
Sanjay Patele800df8e2017-06-22 15:28:01 +00002056 A = peekThroughBitcast(A, true);
2057 B = peekThroughBitcast(B, true);
Sanjay Patel3b206302018-10-24 15:17:56 +00002058 if (Value *Cond = getSelectCondition(A, B)) {
Sanjay Patel6cf18af2016-06-03 14:42:07 +00002059 // ((bc Cond) & C) | ((bc ~Cond) & D) --> bc (select Cond, (bc C), (bc D))
Sanjay Patel4e8ebce2016-06-24 18:55:27 +00002060 // The bitcasts will either all exist or all not exist. The builder will
2061 // not create unnecessary casts if the types already match.
2062 Value *BitcastC = Builder.CreateBitCast(C, A->getType());
2063 Value *BitcastD = Builder.CreateBitCast(D, A->getType());
2064 Value *Select = Builder.CreateSelect(Cond, BitcastC, BitcastD);
2065 return Builder.CreateBitCast(Select, OrigType);
Sanjay Patel6cf18af2016-06-03 14:42:07 +00002066 }
Sanjay Patel5c0bc022016-06-02 18:03:05 +00002067
Craig Topperf40110f2014-04-25 05:29:35 +00002068 return nullptr;
Chris Lattner0a8191e2010-01-05 07:50:36 +00002069}
2070
Sanjay Patel18549272015-09-08 18:24:36 +00002071/// Fold (icmp)|(icmp) if possible.
Sanjay Patel5e456b92017-05-18 20:53:16 +00002072Value *InstCombiner::foldOrOfICmps(ICmpInst *LHS, ICmpInst *RHS,
Craig Topperf2d3e6d2017-06-15 19:09:51 +00002073 Instruction &CxtI) {
Nadav Rotem0ed2fdb2013-11-12 22:38:59 +00002074 // Fold (iszero(A & K1) | iszero(A & K2)) -> (A & (K1 | K2)) != (K1 | K2)
2075 // if K1 and K2 are a one-bit mask.
Craig Topperda6ea0d2017-06-16 05:10:37 +00002076 if (Value *V = foldAndOrOfICmpsOfAndWithPow2(LHS, RHS, false, CxtI))
2077 return V;
2078
2079 ICmpInst::Predicate PredL = LHS->getPredicate(), PredR = RHS->getPredicate();
2080
Sanjay Patel519a87a2017-04-05 17:38:34 +00002081 ConstantInt *LHSC = dyn_cast<ConstantInt>(LHS->getOperand(1));
2082 ConstantInt *RHSC = dyn_cast<ConstantInt>(RHS->getOperand(1));
Nadav Rotem0ed2fdb2013-11-12 22:38:59 +00002083
Yi Jiang1a4e73d2014-08-20 22:55:40 +00002084 // Fold (icmp ult/ule (A + C1), C3) | (icmp ult/ule (A + C2), C3)
2085 // --> (icmp ult/ule ((A & ~(C1 ^ C2)) + max(C1, C2)), C3)
2086 // The original condition actually refers to the following two ranges:
2087 // [MAX_UINT-C1+1, MAX_UINT-C1+1+C3] and [MAX_UINT-C2+1, MAX_UINT-C2+1+C3]
2088 // We can fold these two ranges if:
2089 // 1) C1 and C2 is unsigned greater than C3.
2090 // 2) The two ranges are separated.
2091 // 3) C1 ^ C2 is one-bit mask.
2092 // 4) LowRange1 ^ LowRange2 and HighRange1 ^ HighRange2 are one-bit mask.
2093 // This implies all values in the two ranges differ by exactly one bit.
2094
Sanjay Patel519a87a2017-04-05 17:38:34 +00002095 if ((PredL == ICmpInst::ICMP_ULT || PredL == ICmpInst::ICMP_ULE) &&
2096 PredL == PredR && LHSC && RHSC && LHS->hasOneUse() && RHS->hasOneUse() &&
2097 LHSC->getType() == RHSC->getType() &&
2098 LHSC->getValue() == (RHSC->getValue())) {
Yi Jiang1a4e73d2014-08-20 22:55:40 +00002099
2100 Value *LAdd = LHS->getOperand(0);
2101 Value *RAdd = RHS->getOperand(0);
2102
2103 Value *LAddOpnd, *RAddOpnd;
Sanjay Patel519a87a2017-04-05 17:38:34 +00002104 ConstantInt *LAddC, *RAddC;
2105 if (match(LAdd, m_Add(m_Value(LAddOpnd), m_ConstantInt(LAddC))) &&
2106 match(RAdd, m_Add(m_Value(RAddOpnd), m_ConstantInt(RAddC))) &&
2107 LAddC->getValue().ugt(LHSC->getValue()) &&
2108 RAddC->getValue().ugt(LHSC->getValue())) {
Yi Jiang1a4e73d2014-08-20 22:55:40 +00002109
Sanjay Patel519a87a2017-04-05 17:38:34 +00002110 APInt DiffC = LAddC->getValue() ^ RAddC->getValue();
2111 if (LAddOpnd == RAddOpnd && DiffC.isPowerOf2()) {
2112 ConstantInt *MaxAddC = nullptr;
2113 if (LAddC->getValue().ult(RAddC->getValue()))
2114 MaxAddC = RAddC;
Yi Jiang1a4e73d2014-08-20 22:55:40 +00002115 else
Sanjay Patel519a87a2017-04-05 17:38:34 +00002116 MaxAddC = LAddC;
Yi Jiang1a4e73d2014-08-20 22:55:40 +00002117
Sanjay Patel519a87a2017-04-05 17:38:34 +00002118 APInt RRangeLow = -RAddC->getValue();
2119 APInt RRangeHigh = RRangeLow + LHSC->getValue();
2120 APInt LRangeLow = -LAddC->getValue();
2121 APInt LRangeHigh = LRangeLow + LHSC->getValue();
Yi Jiang1a4e73d2014-08-20 22:55:40 +00002122 APInt LowRangeDiff = RRangeLow ^ LRangeLow;
2123 APInt HighRangeDiff = RRangeHigh ^ LRangeHigh;
2124 APInt RangeDiff = LRangeLow.sgt(RRangeLow) ? LRangeLow - RRangeLow
2125 : RRangeLow - LRangeLow;
2126
2127 if (LowRangeDiff.isPowerOf2() && LowRangeDiff == HighRangeDiff &&
Sanjay Patel519a87a2017-04-05 17:38:34 +00002128 RangeDiff.ugt(LHSC->getValue())) {
2129 Value *MaskC = ConstantInt::get(LAddC->getType(), ~DiffC);
Yi Jiang1a4e73d2014-08-20 22:55:40 +00002130
Craig Topperbb4069e2017-07-07 23:16:26 +00002131 Value *NewAnd = Builder.CreateAnd(LAddOpnd, MaskC);
2132 Value *NewAdd = Builder.CreateAdd(NewAnd, MaxAddC);
2133 return Builder.CreateICmp(LHS->getPredicate(), NewAdd, LHSC);
Yi Jiang1a4e73d2014-08-20 22:55:40 +00002134 }
2135 }
2136 }
2137 }
2138
Chris Lattner0a8191e2010-01-05 07:50:36 +00002139 // (icmp1 A, B) | (icmp2 A, B) --> (icmp3 A, B)
Sanjay Patel472652e2018-12-03 15:48:30 +00002140 if (predicatesFoldable(PredL, PredR)) {
Chris Lattner0a8191e2010-01-05 07:50:36 +00002141 if (LHS->getOperand(0) == RHS->getOperand(1) &&
2142 LHS->getOperand(1) == RHS->getOperand(0))
2143 LHS->swapOperands();
2144 if (LHS->getOperand(0) == RHS->getOperand(0) &&
2145 LHS->getOperand(1) == RHS->getOperand(1)) {
2146 Value *Op0 = LHS->getOperand(0), *Op1 = LHS->getOperand(1);
2147 unsigned Code = getICmpCode(LHS) | getICmpCode(RHS);
Sanjay Patel3d5bb152018-12-04 18:53:27 +00002148 bool IsSigned = LHS->isSigned() || RHS->isSigned();
2149 return getNewICmpValue(Code, IsSigned, Op0, Op1, Builder);
Chris Lattner0a8191e2010-01-05 07:50:36 +00002150 }
2151 }
Benjamin Kramer2bca3a62010-12-20 16:21:59 +00002152
2153 // handle (roughly):
2154 // (icmp ne (A & B), C) | (icmp ne (A & D), E)
Tim Northoverc0756c42013-09-04 11:57:13 +00002155 if (Value *V = foldLogOpOfMaskedICmps(LHS, RHS, false, Builder))
Benjamin Kramer2bca3a62010-12-20 16:21:59 +00002156 return V;
Owen Anderson3fe002d2010-09-08 22:16:17 +00002157
Sanjay Patele4159d22017-04-10 19:38:36 +00002158 Value *LHS0 = LHS->getOperand(0), *RHS0 = RHS->getOperand(0);
David Majnemerc2a990b2013-07-05 00:31:17 +00002159 if (LHS->hasOneUse() || RHS->hasOneUse()) {
2160 // (icmp eq B, 0) | (icmp ult A, B) -> (icmp ule A, B-1)
2161 // (icmp eq B, 0) | (icmp ugt B, A) -> (icmp ule A, B-1)
Craig Topperf40110f2014-04-25 05:29:35 +00002162 Value *A = nullptr, *B = nullptr;
Sanjay Patel519a87a2017-04-05 17:38:34 +00002163 if (PredL == ICmpInst::ICMP_EQ && LHSC && LHSC->isZero()) {
Sanjay Patele4159d22017-04-10 19:38:36 +00002164 B = LHS0;
2165 if (PredR == ICmpInst::ICMP_ULT && LHS0 == RHS->getOperand(1))
2166 A = RHS0;
2167 else if (PredR == ICmpInst::ICMP_UGT && LHS0 == RHS0)
David Majnemerc2a990b2013-07-05 00:31:17 +00002168 A = RHS->getOperand(1);
2169 }
2170 // (icmp ult A, B) | (icmp eq B, 0) -> (icmp ule A, B-1)
2171 // (icmp ugt B, A) | (icmp eq B, 0) -> (icmp ule A, B-1)
Sanjay Patel519a87a2017-04-05 17:38:34 +00002172 else if (PredR == ICmpInst::ICMP_EQ && RHSC && RHSC->isZero()) {
Sanjay Patele4159d22017-04-10 19:38:36 +00002173 B = RHS0;
2174 if (PredL == ICmpInst::ICMP_ULT && RHS0 == LHS->getOperand(1))
2175 A = LHS0;
2176 else if (PredL == ICmpInst::ICMP_UGT && LHS0 == RHS0)
David Majnemerc2a990b2013-07-05 00:31:17 +00002177 A = LHS->getOperand(1);
2178 }
2179 if (A && B)
Craig Topperbb4069e2017-07-07 23:16:26 +00002180 return Builder.CreateICmp(
David Majnemerc2a990b2013-07-05 00:31:17 +00002181 ICmpInst::ICMP_UGE,
Craig Topperbb4069e2017-07-07 23:16:26 +00002182 Builder.CreateAdd(B, ConstantInt::getSigned(B->getType(), -1)), A);
David Majnemerc2a990b2013-07-05 00:31:17 +00002183 }
2184
Erik Ecksteind1817522014-12-03 10:39:15 +00002185 // E.g. (icmp slt x, 0) | (icmp sgt x, n) --> icmp ugt x, n
2186 if (Value *V = simplifyRangeCheck(LHS, RHS, /*Inverted=*/true))
2187 return V;
2188
2189 // E.g. (icmp sgt x, n) | (icmp slt x, 0) --> icmp ugt x, n
2190 if (Value *V = simplifyRangeCheck(RHS, LHS, /*Inverted=*/true))
2191 return V;
Justin Bognerc7e4fbe2016-08-05 01:09:48 +00002192
Sanjay Patelef9f5862017-04-15 17:55:06 +00002193 if (Value *V = foldAndOrOfEqualityCmpsWithConstants(LHS, RHS, false, Builder))
2194 return V;
2195
Sanjay Patel2675b0c2019-06-24 22:35:26 +00002196 if (Value *V = foldIsPowerOf2(LHS, RHS, false /* JoinedByAnd */, Builder))
2197 return V;
2198
David Majnemerc2a990b2013-07-05 00:31:17 +00002199 // This only handles icmp of constants: (icmp1 A, C1) | (icmp2 B, C2).
Sanjay Patel519a87a2017-04-05 17:38:34 +00002200 if (!LHSC || !RHSC)
2201 return nullptr;
Chris Lattner0a8191e2010-01-05 07:50:36 +00002202
Sanjay Patel519a87a2017-04-05 17:38:34 +00002203 if (LHSC == RHSC && PredL == PredR) {
Owen Anderson8f306a72010-08-02 09:32:13 +00002204 // (icmp ne A, 0) | (icmp ne B, 0) --> (icmp ne (A|B), 0)
Sanjay Patel519a87a2017-04-05 17:38:34 +00002205 if (PredL == ICmpInst::ICMP_NE && LHSC->isZero()) {
Craig Topperbb4069e2017-07-07 23:16:26 +00002206 Value *NewOr = Builder.CreateOr(LHS0, RHS0);
2207 return Builder.CreateICmp(PredL, NewOr, LHSC);
Owen Anderson8f306a72010-08-02 09:32:13 +00002208 }
Benjamin Kramerda37e152012-01-08 18:32:24 +00002209 }
2210
Benjamin Kramerf7957d02010-12-20 20:00:31 +00002211 // (icmp ult (X + CA), C1) | (icmp eq X, C2) -> (icmp ule (X + CA), C1)
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002212 // iff C2 + CA == C1.
Sanjay Patel519a87a2017-04-05 17:38:34 +00002213 if (PredL == ICmpInst::ICMP_ULT && PredR == ICmpInst::ICMP_EQ) {
2214 ConstantInt *AddC;
Sanjay Patele4159d22017-04-10 19:38:36 +00002215 if (match(LHS0, m_Add(m_Specific(RHS0), m_ConstantInt(AddC))))
Sanjay Patel519a87a2017-04-05 17:38:34 +00002216 if (RHSC->getValue() + AddC->getValue() == LHSC->getValue())
Craig Topperbb4069e2017-07-07 23:16:26 +00002217 return Builder.CreateICmpULE(LHS0, LHSC);
Benjamin Kramer68531ba2010-12-20 16:18:51 +00002218 }
2219
Chris Lattner0a8191e2010-01-05 07:50:36 +00002220 // From here on, we only handle:
2221 // (icmp1 A, C1) | (icmp2 A, C2) --> something simpler.
Sanjay Patele4159d22017-04-10 19:38:36 +00002222 if (LHS0 != RHS0)
Sanjay Patel519a87a2017-04-05 17:38:34 +00002223 return nullptr;
Craig Topper9d4171a2012-12-20 07:09:41 +00002224
Sanjay Patel519a87a2017-04-05 17:38:34 +00002225 // ICMP_[US][GL]E X, C is folded to ICMP_[US][GL]T elsewhere.
2226 if (PredL == ICmpInst::ICMP_UGE || PredL == ICmpInst::ICMP_ULE ||
2227 PredR == ICmpInst::ICMP_UGE || PredR == ICmpInst::ICMP_ULE ||
2228 PredL == ICmpInst::ICMP_SGE || PredL == ICmpInst::ICMP_SLE ||
2229 PredR == ICmpInst::ICMP_SGE || PredR == ICmpInst::ICMP_SLE)
Craig Topperf40110f2014-04-25 05:29:35 +00002230 return nullptr;
Craig Topper9d4171a2012-12-20 07:09:41 +00002231
Chris Lattner0a8191e2010-01-05 07:50:36 +00002232 // We can't fold (ugt x, C) | (sgt x, C2).
Sanjay Patel472652e2018-12-03 15:48:30 +00002233 if (!predicatesFoldable(PredL, PredR))
Craig Topperf40110f2014-04-25 05:29:35 +00002234 return nullptr;
Craig Topper9d4171a2012-12-20 07:09:41 +00002235
Chris Lattner0a8191e2010-01-05 07:50:36 +00002236 // Ensure that the larger constant is on the RHS.
2237 bool ShouldSwap;
Sanjay Patel28611ac2017-04-11 15:57:32 +00002238 if (CmpInst::isSigned(PredL) ||
2239 (ICmpInst::isEquality(PredL) && CmpInst::isSigned(PredR)))
Sanjay Patel570e35c2017-04-10 16:55:57 +00002240 ShouldSwap = LHSC->getValue().sgt(RHSC->getValue());
Sanjay Patel28611ac2017-04-11 15:57:32 +00002241 else
2242 ShouldSwap = LHSC->getValue().ugt(RHSC->getValue());
Craig Topper9d4171a2012-12-20 07:09:41 +00002243
Chris Lattner0a8191e2010-01-05 07:50:36 +00002244 if (ShouldSwap) {
2245 std::swap(LHS, RHS);
Sanjay Patel519a87a2017-04-05 17:38:34 +00002246 std::swap(LHSC, RHSC);
2247 std::swap(PredL, PredR);
Chris Lattner0a8191e2010-01-05 07:50:36 +00002248 }
Craig Topper9d4171a2012-12-20 07:09:41 +00002249
Dan Gohman4a618822010-02-10 16:03:48 +00002250 // At this point, we know we have two icmp instructions
Chris Lattner0a8191e2010-01-05 07:50:36 +00002251 // comparing a value against two constants and or'ing the result
2252 // together. Because of the above check, we know that we only have
2253 // ICMP_EQ, ICMP_NE, ICMP_LT, and ICMP_GT here. We also know (from the
2254 // icmp folding check above), that the two constants are not
2255 // equal.
Sanjay Patel519a87a2017-04-05 17:38:34 +00002256 assert(LHSC != RHSC && "Compares not folded above?");
Chris Lattner0a8191e2010-01-05 07:50:36 +00002257
Sanjay Patel519a87a2017-04-05 17:38:34 +00002258 switch (PredL) {
2259 default:
2260 llvm_unreachable("Unknown integer condition code!");
Chris Lattner0a8191e2010-01-05 07:50:36 +00002261 case ICmpInst::ICMP_EQ:
Sanjay Patel519a87a2017-04-05 17:38:34 +00002262 switch (PredR) {
2263 default:
2264 llvm_unreachable("Unknown integer condition code!");
Chris Lattner0a8191e2010-01-05 07:50:36 +00002265 case ICmpInst::ICMP_EQ:
Sanjay Patel7cfe4162017-04-14 19:23:50 +00002266 // Potential folds for this case should already be handled.
2267 break;
Craig Toppere9abc812019-07-24 20:57:29 +00002268 case ICmpInst::ICMP_UGT:
2269 // (X == 0 || X u> C) -> (X-1) u>= C
2270 if (LHSC->isMinValue(false))
2271 return insertRangeTest(LHS0, LHSC->getValue() + 1, RHSC->getValue() + 1,
2272 false, false);
2273 // (X == 13 | X u> 14) -> no change
2274 break;
2275 case ICmpInst::ICMP_SGT:
2276 // (X == INT_MIN || X s> C) -> (X-(INT_MIN+1)) u>= C-INT_MIN
2277 if (LHSC->isMinValue(true))
2278 return insertRangeTest(LHS0, LHSC->getValue() + 1, RHSC->getValue() + 1,
2279 true, false);
2280 // (X == 13 | X s> 14) -> no change
Chris Lattner0a8191e2010-01-05 07:50:36 +00002281 break;
Chris Lattner0a8191e2010-01-05 07:50:36 +00002282 }
2283 break;
Chris Lattner0a8191e2010-01-05 07:50:36 +00002284 case ICmpInst::ICMP_ULT:
Sanjay Patel519a87a2017-04-05 17:38:34 +00002285 switch (PredR) {
2286 default:
2287 llvm_unreachable("Unknown integer condition code!");
2288 case ICmpInst::ICMP_EQ: // (X u< 13 | X == 14) -> no change
Craig Toppere9abc812019-07-24 20:57:29 +00002289 // (X u< C || X == UINT_MAX) => (X-C) u>= UINT_MAX-C
2290 if (RHSC->isMaxValue(false))
2291 return insertRangeTest(LHS0, LHSC->getValue(), RHSC->getValue(),
2292 false, false);
Chris Lattner0a8191e2010-01-05 07:50:36 +00002293 break;
Sanjay Patel519a87a2017-04-05 17:38:34 +00002294 case ICmpInst::ICMP_UGT: // (X u< 13 | X u> 15) -> (X-13) u> 2
Sanjay Patel599e65b2017-05-07 15:11:40 +00002295 assert(!RHSC->isMaxValue(false) && "Missed icmp simplification");
Sanjay Patele4159d22017-04-10 19:38:36 +00002296 return insertRangeTest(LHS0, LHSC->getValue(), RHSC->getValue() + 1,
2297 false, false);
Chris Lattner0a8191e2010-01-05 07:50:36 +00002298 }
2299 break;
2300 case ICmpInst::ICMP_SLT:
Sanjay Patel519a87a2017-04-05 17:38:34 +00002301 switch (PredR) {
2302 default:
2303 llvm_unreachable("Unknown integer condition code!");
Craig Toppere9abc812019-07-24 20:57:29 +00002304 case ICmpInst::ICMP_EQ:
2305 // (X s< C || X == INT_MAX) => (X-C) u>= INT_MAX-C
2306 if (RHSC->isMaxValue(true))
2307 return insertRangeTest(LHS0, LHSC->getValue(), RHSC->getValue(),
2308 true, false);
2309 // (X s< 13 | X == 14) -> no change
Chris Lattner0a8191e2010-01-05 07:50:36 +00002310 break;
Craig Toppere9abc812019-07-24 20:57:29 +00002311 case ICmpInst::ICMP_SGT: // (X s< 13 | X s> 15) -> (X-13) u> 2
Sanjay Patel599e65b2017-05-07 15:11:40 +00002312 assert(!RHSC->isMaxValue(true) && "Missed icmp simplification");
Sanjay Patele4159d22017-04-10 19:38:36 +00002313 return insertRangeTest(LHS0, LHSC->getValue(), RHSC->getValue() + 1, true,
Sanjay Patel519a87a2017-04-05 17:38:34 +00002314 false);
Chris Lattner0a8191e2010-01-05 07:50:36 +00002315 }
2316 break;
2317 }
Craig Topperf40110f2014-04-25 05:29:35 +00002318 return nullptr;
Chris Lattner0a8191e2010-01-05 07:50:36 +00002319}
2320
Sanjay Patel2b9d4b42016-12-18 18:49:48 +00002321// FIXME: We use commutative matchers (m_c_*) for some, but not all, matches
2322// here. We should standardize that construct where it is needed or choose some
2323// other way to ensure that commutated variants of patterns are not missed.
Chris Lattner0a8191e2010-01-05 07:50:36 +00002324Instruction *InstCombiner::visitOr(BinaryOperator &I) {
Sanjay Patel7b0fc752018-06-21 17:06:36 +00002325 if (Value *V = SimplifyOrInst(I.getOperand(0), I.getOperand(1),
2326 SQ.getWithInstruction(&I)))
Sanjay Patel4b198802016-02-01 22:23:39 +00002327 return replaceInstUsesWith(I, V);
Bill Wendlingaf13d822010-03-03 00:35:56 +00002328
Sanjay Patel70043b72018-07-13 01:18:07 +00002329 if (SimplifyAssociativeOrCommutative(I))
2330 return &I;
2331
Sanjay Patel79dceb22018-10-03 15:20:58 +00002332 if (Instruction *X = foldVectorBinop(I))
Sanjay Patelbbc6d602018-06-02 16:27:44 +00002333 return X;
2334
Craig Topper9d4171a2012-12-20 07:09:41 +00002335 // See if we can simplify any instructions used by the instruction whose sole
Chris Lattner0a8191e2010-01-05 07:50:36 +00002336 // purpose is to compute bits we don't care about.
2337 if (SimplifyDemandedInstructionBits(I))
2338 return &I;
2339
Sanjay Patele0c26e02017-04-23 22:00:02 +00002340 // Do this before using distributive laws to catch simple and/or/not patterns.
Craig Topperbb4069e2017-07-07 23:16:26 +00002341 if (Instruction *Xor = foldOrToXor(I, Builder))
Sanjay Patele0c26e02017-04-23 22:00:02 +00002342 return Xor;
2343
2344 // (A&B)|(A&C) -> A&(B|C) etc
2345 if (Value *V = SimplifyUsingDistributiveLaws(I))
2346 return replaceInstUsesWith(I, V);
2347
Craig Topper95e41422017-07-06 16:24:23 +00002348 if (Value *V = SimplifyBSwap(I, Builder))
Sanjay Patel4b198802016-02-01 22:23:39 +00002349 return replaceInstUsesWith(I, V);
Simon Pilgrimbe24ab32014-12-04 09:44:01 +00002350
Sanjay Patel8fdd87f2018-02-28 16:36:24 +00002351 if (Instruction *FoldedLogic = foldBinOpIntoSelectOrPhi(I))
2352 return FoldedLogic;
Chris Lattner0a8191e2010-01-05 07:50:36 +00002353
Sanjay Patel60728422018-11-14 16:03:36 +00002354 if (Instruction *BSwap = matchBSwap(I))
Chad Rosiere5819e22016-05-26 14:58:51 +00002355 return BSwap;
2356
Sanjay Pateld023dd62019-01-08 22:39:55 +00002357 if (Instruction *Rotate = matchRotate(I))
2358 return Rotate;
2359
Sanjay Patel099b1a42018-09-01 15:08:59 +00002360 Value *X, *Y;
2361 const APInt *CV;
2362 if (match(&I, m_c_Or(m_OneUse(m_Xor(m_Value(X), m_APInt(CV))), m_Value(Y))) &&
2363 !CV->isAllOnesValue() && MaskedValueIsZero(Y, *CV, 0, &I)) {
2364 // (X ^ C) | Y -> (X | Y) ^ C iff Y & C == 0
2365 // The check for a 'not' op is for efficiency (if Y is known zero --> ~X).
2366 Value *Or = Builder.CreateOr(X, Y);
2367 return BinaryOperator::CreateXor(Or, ConstantInt::get(I.getType(), *CV));
Chris Lattner0a8191e2010-01-05 07:50:36 +00002368 }
2369
Chris Lattner0a8191e2010-01-05 07:50:36 +00002370 // (A & C)|(B & D)
Sanjay Patel099b1a42018-09-01 15:08:59 +00002371 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
2372 Value *A, *B, *C, *D;
Chris Lattner0a8191e2010-01-05 07:50:36 +00002373 if (match(Op0, m_And(m_Value(A), m_Value(C))) &&
2374 match(Op1, m_And(m_Value(B), m_Value(D)))) {
Craig Topperafa07c52017-04-09 06:12:41 +00002375 ConstantInt *C1 = dyn_cast<ConstantInt>(C);
2376 ConstantInt *C2 = dyn_cast<ConstantInt>(D);
Chris Lattner0a8191e2010-01-05 07:50:36 +00002377 if (C1 && C2) { // (A & C1)|(B & C2)
Craig Topperf7200992017-08-14 00:04:21 +00002378 Value *V1 = nullptr, *V2 = nullptr;
Craig Topper73ba1c82017-06-07 07:40:37 +00002379 if ((C1->getValue() & C2->getValue()).isNullValue()) {
Chris Lattner95188692010-01-11 06:55:24 +00002380 // ((V | N) & C1) | (V & C2) --> (V|N) & (C1|C2)
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002381 // iff (C1&C2) == 0 and (N&~C1) == 0
Chris Lattner0a8191e2010-01-05 07:50:36 +00002382 if (match(A, m_Or(m_Value(V1), m_Value(V2))) &&
Hal Finkel60db0582014-09-07 18:57:58 +00002383 ((V1 == B &&
2384 MaskedValueIsZero(V2, ~C1->getValue(), 0, &I)) || // (V|N)
2385 (V2 == B &&
2386 MaskedValueIsZero(V1, ~C1->getValue(), 0, &I)))) // (N|V)
Chris Lattner0a8191e2010-01-05 07:50:36 +00002387 return BinaryOperator::CreateAnd(A,
Craig Topperbb4069e2017-07-07 23:16:26 +00002388 Builder.getInt(C1->getValue()|C2->getValue()));
Chris Lattner0a8191e2010-01-05 07:50:36 +00002389 // Or commutes, try both ways.
2390 if (match(B, m_Or(m_Value(V1), m_Value(V2))) &&
Hal Finkel60db0582014-09-07 18:57:58 +00002391 ((V1 == A &&
2392 MaskedValueIsZero(V2, ~C2->getValue(), 0, &I)) || // (V|N)
2393 (V2 == A &&
2394 MaskedValueIsZero(V1, ~C2->getValue(), 0, &I)))) // (N|V)
Chris Lattner0a8191e2010-01-05 07:50:36 +00002395 return BinaryOperator::CreateAnd(B,
Craig Topperbb4069e2017-07-07 23:16:26 +00002396 Builder.getInt(C1->getValue()|C2->getValue()));
Craig Topper9d4171a2012-12-20 07:09:41 +00002397
Chris Lattner95188692010-01-11 06:55:24 +00002398 // ((V|C3)&C1) | ((V|C4)&C2) --> (V|C3|C4)&(C1|C2)
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002399 // iff (C1&C2) == 0 and (C3&~C1) == 0 and (C4&~C2) == 0.
Craig Topperf40110f2014-04-25 05:29:35 +00002400 ConstantInt *C3 = nullptr, *C4 = nullptr;
Chris Lattner95188692010-01-11 06:55:24 +00002401 if (match(A, m_Or(m_Value(V1), m_ConstantInt(C3))) &&
Craig Topper73ba1c82017-06-07 07:40:37 +00002402 (C3->getValue() & ~C1->getValue()).isNullValue() &&
Chris Lattner95188692010-01-11 06:55:24 +00002403 match(B, m_Or(m_Specific(V1), m_ConstantInt(C4))) &&
Craig Topper73ba1c82017-06-07 07:40:37 +00002404 (C4->getValue() & ~C2->getValue()).isNullValue()) {
Craig Topperbb4069e2017-07-07 23:16:26 +00002405 V2 = Builder.CreateOr(V1, ConstantExpr::getOr(C3, C4), "bitfield");
Chris Lattner95188692010-01-11 06:55:24 +00002406 return BinaryOperator::CreateAnd(V2,
Craig Topperbb4069e2017-07-07 23:16:26 +00002407 Builder.getInt(C1->getValue()|C2->getValue()));
Chris Lattner95188692010-01-11 06:55:24 +00002408 }
Chris Lattner0a8191e2010-01-05 07:50:36 +00002409 }
Craig Topperf7200992017-08-14 00:04:21 +00002410
2411 if (C1->getValue() == ~C2->getValue()) {
2412 Value *X;
2413
2414 // ((X|B)&C1)|(B&C2) -> (X&C1) | B iff C1 == ~C2
2415 if (match(A, m_c_Or(m_Value(X), m_Specific(B))))
2416 return BinaryOperator::CreateOr(Builder.CreateAnd(X, C1), B);
2417 // (A&C2)|((X|A)&C1) -> (X&C2) | A iff C1 == ~C2
2418 if (match(B, m_c_Or(m_Specific(A), m_Value(X))))
2419 return BinaryOperator::CreateOr(Builder.CreateAnd(X, C2), A);
2420
2421 // ((X^B)&C1)|(B&C2) -> (X&C1) ^ B iff C1 == ~C2
2422 if (match(A, m_c_Xor(m_Value(X), m_Specific(B))))
2423 return BinaryOperator::CreateXor(Builder.CreateAnd(X, C1), B);
2424 // (A&C2)|((X^A)&C1) -> (X&C2) ^ A iff C1 == ~C2
2425 if (match(B, m_c_Xor(m_Specific(A), m_Value(X))))
2426 return BinaryOperator::CreateXor(Builder.CreateAnd(X, C2), A);
2427 }
Chris Lattner0a8191e2010-01-05 07:50:36 +00002428 }
Chris Lattner0a8191e2010-01-05 07:50:36 +00002429
Sanjay Patelf4a08ed2016-07-08 20:53:29 +00002430 // Don't try to form a select if it's unlikely that we'll get rid of at
2431 // least one of the operands. A select is generally more expensive than the
2432 // 'or' that it is replacing.
2433 if (Op0->hasOneUse() || Op1->hasOneUse()) {
2434 // (Cond & C) | (~Cond & D) -> Cond ? C : D, and commuted variants.
Sanjay Patel3b206302018-10-24 15:17:56 +00002435 if (Value *V = matchSelectFromAndOr(A, C, B, D))
Sanjay Patelf4a08ed2016-07-08 20:53:29 +00002436 return replaceInstUsesWith(I, V);
Sanjay Patel3b206302018-10-24 15:17:56 +00002437 if (Value *V = matchSelectFromAndOr(A, C, D, B))
Sanjay Patelf4a08ed2016-07-08 20:53:29 +00002438 return replaceInstUsesWith(I, V);
Sanjay Patel3b206302018-10-24 15:17:56 +00002439 if (Value *V = matchSelectFromAndOr(C, A, B, D))
Sanjay Patelf4a08ed2016-07-08 20:53:29 +00002440 return replaceInstUsesWith(I, V);
Sanjay Patel3b206302018-10-24 15:17:56 +00002441 if (Value *V = matchSelectFromAndOr(C, A, D, B))
Sanjay Patelf4a08ed2016-07-08 20:53:29 +00002442 return replaceInstUsesWith(I, V);
Sanjay Patel3b206302018-10-24 15:17:56 +00002443 if (Value *V = matchSelectFromAndOr(B, D, A, C))
Sanjay Patelf4a08ed2016-07-08 20:53:29 +00002444 return replaceInstUsesWith(I, V);
Sanjay Patel3b206302018-10-24 15:17:56 +00002445 if (Value *V = matchSelectFromAndOr(B, D, C, A))
Sanjay Patelf4a08ed2016-07-08 20:53:29 +00002446 return replaceInstUsesWith(I, V);
Sanjay Patel3b206302018-10-24 15:17:56 +00002447 if (Value *V = matchSelectFromAndOr(D, B, A, C))
Sanjay Patelf4a08ed2016-07-08 20:53:29 +00002448 return replaceInstUsesWith(I, V);
Sanjay Patel3b206302018-10-24 15:17:56 +00002449 if (Value *V = matchSelectFromAndOr(D, B, C, A))
Sanjay Patelf4a08ed2016-07-08 20:53:29 +00002450 return replaceInstUsesWith(I, V);
2451 }
Chris Lattner0a8191e2010-01-05 07:50:36 +00002452 }
Craig Topper9d4171a2012-12-20 07:09:41 +00002453
David Majnemer42af3602014-07-30 21:26:37 +00002454 // (A ^ B) | ((B ^ C) ^ A) -> (A ^ B) | C
2455 if (match(Op0, m_Xor(m_Value(A), m_Value(B))))
2456 if (match(Op1, m_Xor(m_Xor(m_Specific(B), m_Value(C)), m_Specific(A))))
Craig Toppera7529b62017-06-19 16:23:49 +00002457 return BinaryOperator::CreateOr(Op0, C);
David Majnemer42af3602014-07-30 21:26:37 +00002458
2459 // ((A ^ C) ^ B) | (B ^ A) -> (B ^ A) | C
2460 if (match(Op0, m_Xor(m_Xor(m_Value(A), m_Value(C)), m_Value(B))))
2461 if (match(Op1, m_Xor(m_Specific(B), m_Specific(A))))
Craig Toppera7529b62017-06-19 16:23:49 +00002462 return BinaryOperator::CreateOr(Op1, C);
David Majnemer42af3602014-07-30 21:26:37 +00002463
David Majnemerf1eda232014-08-14 06:41:38 +00002464 // ((B | C) & A) | B -> B | (A & C)
2465 if (match(Op0, m_And(m_Or(m_Specific(Op1), m_Value(C)), m_Value(A))))
Craig Topperbb4069e2017-07-07 23:16:26 +00002466 return BinaryOperator::CreateOr(Op1, Builder.CreateAnd(A, C));
David Majnemerf1eda232014-08-14 06:41:38 +00002467
Craig Topperbb4069e2017-07-07 23:16:26 +00002468 if (Instruction *DeMorgan = matchDeMorgansLaws(I, Builder))
Sanjay Patelb54e62f2015-09-08 20:14:13 +00002469 return DeMorgan;
Chris Lattner0a8191e2010-01-05 07:50:36 +00002470
Benjamin Kramerd5d7f372011-02-20 13:23:43 +00002471 // Canonicalize xor to the RHS.
Eli Friedmane06535b2012-03-16 00:52:42 +00002472 bool SwappedForXor = false;
2473 if (match(Op0, m_Xor(m_Value(), m_Value()))) {
Benjamin Kramerd5d7f372011-02-20 13:23:43 +00002474 std::swap(Op0, Op1);
Eli Friedmane06535b2012-03-16 00:52:42 +00002475 SwappedForXor = true;
2476 }
Benjamin Kramerd5d7f372011-02-20 13:23:43 +00002477
2478 // A | ( A ^ B) -> A | B
2479 // A | (~A ^ B) -> A | ~B
Chad Rosier7813dce2012-04-26 23:29:14 +00002480 // (A & B) | (A ^ B)
Benjamin Kramerd5d7f372011-02-20 13:23:43 +00002481 if (match(Op1, m_Xor(m_Value(A), m_Value(B)))) {
2482 if (Op0 == A || Op0 == B)
2483 return BinaryOperator::CreateOr(A, B);
2484
Chad Rosier7813dce2012-04-26 23:29:14 +00002485 if (match(Op0, m_And(m_Specific(A), m_Specific(B))) ||
2486 match(Op0, m_And(m_Specific(B), m_Specific(A))))
2487 return BinaryOperator::CreateOr(A, B);
2488
Benjamin Kramerd5d7f372011-02-20 13:23:43 +00002489 if (Op1->hasOneUse() && match(A, m_Not(m_Specific(Op0)))) {
Craig Topperbb4069e2017-07-07 23:16:26 +00002490 Value *Not = Builder.CreateNot(B, B->getName() + ".not");
Benjamin Kramerd5d7f372011-02-20 13:23:43 +00002491 return BinaryOperator::CreateOr(Not, Op0);
2492 }
2493 if (Op1->hasOneUse() && match(B, m_Not(m_Specific(Op0)))) {
Craig Topperbb4069e2017-07-07 23:16:26 +00002494 Value *Not = Builder.CreateNot(A, A->getName() + ".not");
Benjamin Kramerd5d7f372011-02-20 13:23:43 +00002495 return BinaryOperator::CreateOr(Not, Op0);
2496 }
2497 }
2498
2499 // A | ~(A | B) -> A | ~B
2500 // A | ~(A ^ B) -> A | ~B
Benjamin Kramerd5d7f372011-02-20 13:23:43 +00002501 if (match(Op1, m_Not(m_Value(A))))
2502 if (BinaryOperator *B = dyn_cast<BinaryOperator>(A))
Benjamin Kramer5b7a4e02011-02-20 15:20:01 +00002503 if ((Op0 == B->getOperand(0) || Op0 == B->getOperand(1)) &&
2504 Op1->hasOneUse() && (B->getOpcode() == Instruction::Or ||
2505 B->getOpcode() == Instruction::Xor)) {
2506 Value *NotOp = Op0 == B->getOperand(0) ? B->getOperand(1) :
2507 B->getOperand(0);
Craig Topperbb4069e2017-07-07 23:16:26 +00002508 Value *Not = Builder.CreateNot(NotOp, NotOp->getName() + ".not");
Benjamin Kramer5b7a4e02011-02-20 15:20:01 +00002509 return BinaryOperator::CreateOr(Not, Op0);
2510 }
Benjamin Kramerd5d7f372011-02-20 13:23:43 +00002511
Eli Friedmane06535b2012-03-16 00:52:42 +00002512 if (SwappedForXor)
2513 std::swap(Op0, Op1);
2514
David Majnemer3d6f80b2014-11-28 19:58:29 +00002515 {
2516 ICmpInst *LHS = dyn_cast<ICmpInst>(Op0);
2517 ICmpInst *RHS = dyn_cast<ICmpInst>(Op1);
2518 if (LHS && RHS)
Craig Topperf2d3e6d2017-06-15 19:09:51 +00002519 if (Value *Res = foldOrOfICmps(LHS, RHS, I))
Sanjay Patel4b198802016-02-01 22:23:39 +00002520 return replaceInstUsesWith(I, Res);
Craig Topper9d4171a2012-12-20 07:09:41 +00002521
David Majnemer3d6f80b2014-11-28 19:58:29 +00002522 // TODO: Make this recursive; it's a little tricky because an arbitrary
2523 // number of 'or' instructions might have to be created.
2524 Value *X, *Y;
2525 if (LHS && match(Op1, m_OneUse(m_Or(m_Value(X), m_Value(Y))))) {
2526 if (auto *Cmp = dyn_cast<ICmpInst>(X))
Craig Topperf2d3e6d2017-06-15 19:09:51 +00002527 if (Value *Res = foldOrOfICmps(LHS, Cmp, I))
Craig Topperbb4069e2017-07-07 23:16:26 +00002528 return replaceInstUsesWith(I, Builder.CreateOr(Res, Y));
David Majnemer3d6f80b2014-11-28 19:58:29 +00002529 if (auto *Cmp = dyn_cast<ICmpInst>(Y))
Craig Topperf2d3e6d2017-06-15 19:09:51 +00002530 if (Value *Res = foldOrOfICmps(LHS, Cmp, I))
Craig Topperbb4069e2017-07-07 23:16:26 +00002531 return replaceInstUsesWith(I, Builder.CreateOr(Res, X));
David Majnemer3d6f80b2014-11-28 19:58:29 +00002532 }
2533 if (RHS && match(Op0, m_OneUse(m_Or(m_Value(X), m_Value(Y))))) {
2534 if (auto *Cmp = dyn_cast<ICmpInst>(X))
Craig Topperf2d3e6d2017-06-15 19:09:51 +00002535 if (Value *Res = foldOrOfICmps(Cmp, RHS, I))
Craig Topperbb4069e2017-07-07 23:16:26 +00002536 return replaceInstUsesWith(I, Builder.CreateOr(Res, Y));
David Majnemer3d6f80b2014-11-28 19:58:29 +00002537 if (auto *Cmp = dyn_cast<ICmpInst>(Y))
Craig Topperf2d3e6d2017-06-15 19:09:51 +00002538 if (Value *Res = foldOrOfICmps(Cmp, RHS, I))
Craig Topperbb4069e2017-07-07 23:16:26 +00002539 return replaceInstUsesWith(I, Builder.CreateOr(Res, X));
David Majnemer3d6f80b2014-11-28 19:58:29 +00002540 }
2541 }
2542
Chris Lattner4e8137d2010-02-11 06:26:33 +00002543 if (FCmpInst *LHS = dyn_cast<FCmpInst>(I.getOperand(0)))
2544 if (FCmpInst *RHS = dyn_cast<FCmpInst>(I.getOperand(1)))
Sanjay Patel64fc5da2017-09-02 17:53:33 +00002545 if (Value *Res = foldLogicOfFCmps(LHS, RHS, false))
Sanjay Patel4b198802016-02-01 22:23:39 +00002546 return replaceInstUsesWith(I, Res);
Craig Topper9d4171a2012-12-20 07:09:41 +00002547
Sanjay Patel5b820322019-03-19 16:39:17 +00002548 if (Instruction *FoldedFCmps = reassociateFCmps(I, Builder))
2549 return FoldedFCmps;
2550
Sanjay Patel75b4ae22016-02-23 23:56:23 +00002551 if (Instruction *CastedOr = foldCastedBitwiseLogic(I))
2552 return CastedOr;
Eli Friedman23956262011-04-14 22:41:27 +00002553
Sanjay Patelcbfca9e2016-07-08 17:01:15 +00002554 // or(sext(A), B) / or(B, sext(A)) --> A ? -1 : B, where A is i1 or <N x i1>.
Sanjay Patel1b6b8242016-07-08 17:26:47 +00002555 if (match(Op0, m_OneUse(m_SExt(m_Value(A)))) &&
Craig Topperfde47232017-07-09 07:04:03 +00002556 A->getType()->isIntOrIntVectorTy(1))
Eli Friedman23956262011-04-14 22:41:27 +00002557 return SelectInst::Create(A, ConstantInt::getSigned(I.getType(), -1), Op1);
Sanjay Patel1b6b8242016-07-08 17:26:47 +00002558 if (match(Op1, m_OneUse(m_SExt(m_Value(A)))) &&
Craig Topperfde47232017-07-09 07:04:03 +00002559 A->getType()->isIntOrIntVectorTy(1))
Eli Friedman23956262011-04-14 22:41:27 +00002560 return SelectInst::Create(A, ConstantInt::getSigned(I.getType(), -1), Op0);
2561
Owen Andersonc237a842010-09-13 17:59:27 +00002562 // Note: If we've gotten to the point of visiting the outer OR, then the
2563 // inner one couldn't be simplified. If it was a constant, then it won't
2564 // be simplified by a later pass either, so we try swapping the inner/outer
2565 // ORs in the hopes that we'll be able to simplify it this way.
2566 // (X|C) | V --> (X|V) | C
Sanjay Patel099b1a42018-09-01 15:08:59 +00002567 ConstantInt *CI;
Owen Andersonc237a842010-09-13 17:59:27 +00002568 if (Op0->hasOneUse() && !isa<ConstantInt>(Op1) &&
Sanjay Patel099b1a42018-09-01 15:08:59 +00002569 match(Op0, m_Or(m_Value(A), m_ConstantInt(CI)))) {
Craig Topperbb4069e2017-07-07 23:16:26 +00002570 Value *Inner = Builder.CreateOr(A, Op1);
Owen Andersonc237a842010-09-13 17:59:27 +00002571 Inner->takeName(Op0);
Sanjay Patel099b1a42018-09-01 15:08:59 +00002572 return BinaryOperator::CreateOr(Inner, CI);
Owen Andersonc237a842010-09-13 17:59:27 +00002573 }
Craig Topper9d4171a2012-12-20 07:09:41 +00002574
Bill Wendling23242092013-02-16 23:41:36 +00002575 // Change (or (bool?A:B),(bool?C:D)) --> (bool?(or A,C):(or B,D))
2576 // Since this OR statement hasn't been optimized further yet, we hope
2577 // that this transformation will allow the new ORs to be optimized.
2578 {
Craig Topperf40110f2014-04-25 05:29:35 +00002579 Value *X = nullptr, *Y = nullptr;
Bill Wendling23242092013-02-16 23:41:36 +00002580 if (Op0->hasOneUse() && Op1->hasOneUse() &&
2581 match(Op0, m_Select(m_Value(X), m_Value(A), m_Value(B))) &&
2582 match(Op1, m_Select(m_Value(Y), m_Value(C), m_Value(D))) && X == Y) {
Craig Topperbb4069e2017-07-07 23:16:26 +00002583 Value *orTrue = Builder.CreateOr(A, C);
2584 Value *orFalse = Builder.CreateOr(B, D);
Bill Wendling23242092013-02-16 23:41:36 +00002585 return SelectInst::Create(X, orTrue, orFalse);
2586 }
2587 }
2588
Sanjay Patel70043b72018-07-13 01:18:07 +00002589 return nullptr;
Chris Lattner0a8191e2010-01-05 07:50:36 +00002590}
2591
Sanjay Pateld13b0bf2017-04-23 16:03:00 +00002592/// A ^ B can be specified using other logic ops in a variety of patterns. We
2593/// can fold these early and efficiently by morphing an existing instruction.
Craig Topperf60ab472017-07-02 01:15:51 +00002594static Instruction *foldXorToXor(BinaryOperator &I,
2595 InstCombiner::BuilderTy &Builder) {
Sanjay Pateld13b0bf2017-04-23 16:03:00 +00002596 assert(I.getOpcode() == Instruction::Xor);
2597 Value *Op0 = I.getOperand(0);
2598 Value *Op1 = I.getOperand(1);
2599 Value *A, *B;
2600
2601 // There are 4 commuted variants for each of the basic patterns.
2602
2603 // (A & B) ^ (A | B) -> A ^ B
2604 // (A & B) ^ (B | A) -> A ^ B
2605 // (A | B) ^ (A & B) -> A ^ B
2606 // (A | B) ^ (B & A) -> A ^ B
Roman Lebedev6959b8e2018-04-27 21:23:20 +00002607 if (match(&I, m_c_Xor(m_And(m_Value(A), m_Value(B)),
2608 m_c_Or(m_Deferred(A), m_Deferred(B))))) {
Sanjay Pateld13b0bf2017-04-23 16:03:00 +00002609 I.setOperand(0, A);
2610 I.setOperand(1, B);
2611 return &I;
2612 }
2613
2614 // (A | ~B) ^ (~A | B) -> A ^ B
2615 // (~B | A) ^ (~A | B) -> A ^ B
2616 // (~A | B) ^ (A | ~B) -> A ^ B
2617 // (B | ~A) ^ (A | ~B) -> A ^ B
Roman Lebedev6959b8e2018-04-27 21:23:20 +00002618 if (match(&I, m_Xor(m_c_Or(m_Value(A), m_Not(m_Value(B))),
2619 m_c_Or(m_Not(m_Deferred(A)), m_Deferred(B))))) {
Sanjay Pateld13b0bf2017-04-23 16:03:00 +00002620 I.setOperand(0, A);
2621 I.setOperand(1, B);
2622 return &I;
2623 }
2624
2625 // (A & ~B) ^ (~A & B) -> A ^ B
2626 // (~B & A) ^ (~A & B) -> A ^ B
2627 // (~A & B) ^ (A & ~B) -> A ^ B
2628 // (B & ~A) ^ (A & ~B) -> A ^ B
Roman Lebedev6959b8e2018-04-27 21:23:20 +00002629 if (match(&I, m_Xor(m_c_And(m_Value(A), m_Not(m_Value(B))),
2630 m_c_And(m_Not(m_Deferred(A)), m_Deferred(B))))) {
Sanjay Pateld13b0bf2017-04-23 16:03:00 +00002631 I.setOperand(0, A);
2632 I.setOperand(1, B);
2633 return &I;
2634 }
2635
Craig Topperf60ab472017-07-02 01:15:51 +00002636 // For the remaining cases we need to get rid of one of the operands.
2637 if (!Op0->hasOneUse() && !Op1->hasOneUse())
2638 return nullptr;
2639
2640 // (A | B) ^ ~(A & B) -> ~(A ^ B)
2641 // (A | B) ^ ~(B & A) -> ~(A ^ B)
2642 // (A & B) ^ ~(A | B) -> ~(A ^ B)
2643 // (A & B) ^ ~(B | A) -> ~(A ^ B)
2644 // Complexity sorting ensures the not will be on the right side.
2645 if ((match(Op0, m_Or(m_Value(A), m_Value(B))) &&
2646 match(Op1, m_Not(m_c_And(m_Specific(A), m_Specific(B))))) ||
2647 (match(Op0, m_And(m_Value(A), m_Value(B))) &&
2648 match(Op1, m_Not(m_c_Or(m_Specific(A), m_Specific(B))))))
2649 return BinaryOperator::CreateNot(Builder.CreateXor(A, B));
2650
Sanjay Pateld13b0bf2017-04-23 16:03:00 +00002651 return nullptr;
2652}
2653
Sanjay Patel5e456b92017-05-18 20:53:16 +00002654Value *InstCombiner::foldXorOfICmps(ICmpInst *LHS, ICmpInst *RHS) {
Sanjay Patel472652e2018-12-03 15:48:30 +00002655 if (predicatesFoldable(LHS->getPredicate(), RHS->getPredicate())) {
Sanjay Patel5e456b92017-05-18 20:53:16 +00002656 if (LHS->getOperand(0) == RHS->getOperand(1) &&
2657 LHS->getOperand(1) == RHS->getOperand(0))
2658 LHS->swapOperands();
2659 if (LHS->getOperand(0) == RHS->getOperand(0) &&
2660 LHS->getOperand(1) == RHS->getOperand(1)) {
2661 // (icmp1 A, B) ^ (icmp2 A, B) --> (icmp3 A, B)
2662 Value *Op0 = LHS->getOperand(0), *Op1 = LHS->getOperand(1);
2663 unsigned Code = getICmpCode(LHS) ^ getICmpCode(RHS);
Sanjay Patel3d5bb152018-12-04 18:53:27 +00002664 bool IsSigned = LHS->isSigned() || RHS->isSigned();
2665 return getNewICmpValue(Code, IsSigned, Op0, Op1, Builder);
Sanjay Patel5e456b92017-05-18 20:53:16 +00002666 }
2667 }
2668
Sanjay Patel94c91b72018-03-22 14:08:16 +00002669 // TODO: This can be generalized to compares of non-signbits using
2670 // decomposeBitTestICmp(). It could be enhanced more by using (something like)
2671 // foldLogOpOfMaskedICmps().
2672 ICmpInst::Predicate PredL = LHS->getPredicate(), PredR = RHS->getPredicate();
2673 Value *LHS0 = LHS->getOperand(0), *LHS1 = LHS->getOperand(1);
2674 Value *RHS0 = RHS->getOperand(0), *RHS1 = RHS->getOperand(1);
2675 if ((LHS->hasOneUse() || RHS->hasOneUse()) &&
Amara Emerson070ac762018-08-15 17:46:22 +00002676 LHS0->getType() == RHS0->getType() &&
2677 LHS0->getType()->isIntOrIntVectorTy()) {
Sanjay Patel94c91b72018-03-22 14:08:16 +00002678 // (X > -1) ^ (Y > -1) --> (X ^ Y) < 0
2679 // (X < 0) ^ (Y < 0) --> (X ^ Y) < 0
2680 if ((PredL == CmpInst::ICMP_SGT && match(LHS1, m_AllOnes()) &&
2681 PredR == CmpInst::ICMP_SGT && match(RHS1, m_AllOnes())) ||
2682 (PredL == CmpInst::ICMP_SLT && match(LHS1, m_Zero()) &&
2683 PredR == CmpInst::ICMP_SLT && match(RHS1, m_Zero()))) {
2684 Value *Zero = ConstantInt::getNullValue(LHS0->getType());
2685 return Builder.CreateICmpSLT(Builder.CreateXor(LHS0, RHS0), Zero);
2686 }
2687 // (X > -1) ^ (Y < 0) --> (X ^ Y) > -1
2688 // (X < 0) ^ (Y > -1) --> (X ^ Y) > -1
2689 if ((PredL == CmpInst::ICMP_SGT && match(LHS1, m_AllOnes()) &&
2690 PredR == CmpInst::ICMP_SLT && match(RHS1, m_Zero())) ||
2691 (PredL == CmpInst::ICMP_SLT && match(LHS1, m_Zero()) &&
2692 PredR == CmpInst::ICMP_SGT && match(RHS1, m_AllOnes()))) {
2693 Value *MinusOne = ConstantInt::getAllOnesValue(LHS0->getType());
2694 return Builder.CreateICmpSGT(Builder.CreateXor(LHS0, RHS0), MinusOne);
2695 }
2696 }
2697
Sanjay Pateladca8252017-06-20 12:40:55 +00002698 // Instead of trying to imitate the folds for and/or, decompose this 'xor'
2699 // into those logic ops. That is, try to turn this into an and-of-icmps
2700 // because we have many folds for that pattern.
2701 //
2702 // This is based on a truth table definition of xor:
2703 // X ^ Y --> (X | Y) & !(X & Y)
2704 if (Value *OrICmp = SimplifyBinOp(Instruction::Or, LHS, RHS, SQ)) {
2705 // TODO: If OrICmp is true, then the definition of xor simplifies to !(X&Y).
2706 // TODO: If OrICmp is false, the whole thing is false (InstSimplify?).
2707 if (Value *AndICmp = SimplifyBinOp(Instruction::And, LHS, RHS, SQ)) {
2708 // TODO: Independently handle cases where the 'and' side is a constant.
2709 if (OrICmp == LHS && AndICmp == RHS && RHS->hasOneUse()) {
2710 // (LHS | RHS) & !(LHS & RHS) --> LHS & !RHS
2711 RHS->setPredicate(RHS->getInversePredicate());
Craig Topperbb4069e2017-07-07 23:16:26 +00002712 return Builder.CreateAnd(LHS, RHS);
Sanjay Pateladca8252017-06-20 12:40:55 +00002713 }
2714 if (OrICmp == RHS && AndICmp == LHS && LHS->hasOneUse()) {
Sanjay Patel4ccbd582017-06-20 12:45:46 +00002715 // !(LHS & RHS) & (LHS | RHS) --> !LHS & RHS
Sanjay Pateladca8252017-06-20 12:40:55 +00002716 LHS->setPredicate(LHS->getInversePredicate());
Craig Topperbb4069e2017-07-07 23:16:26 +00002717 return Builder.CreateAnd(LHS, RHS);
Sanjay Pateladca8252017-06-20 12:40:55 +00002718 }
2719 }
2720 }
2721
Sanjay Patel5e456b92017-05-18 20:53:16 +00002722 return nullptr;
2723}
2724
Roman Lebedev13686792018-04-28 15:45:07 +00002725/// If we have a masked merge, in the canonical form of:
Roman Lebedevaa4faec2018-04-30 17:59:33 +00002726/// (assuming that A only has one use.)
Roman Lebedev13686792018-04-28 15:45:07 +00002727/// | A | |B|
2728/// ((x ^ y) & M) ^ y
2729/// | D |
2730/// * If M is inverted:
2731/// | D |
2732/// ((x ^ y) & ~M) ^ y
Roman Lebedevaa4faec2018-04-30 17:59:33 +00002733/// We can canonicalize by swapping the final xor operand
2734/// to eliminate the 'not' of the mask.
Roman Lebedev13686792018-04-28 15:45:07 +00002735/// ((x ^ y) & M) ^ x
Roman Lebedevaa4faec2018-04-30 17:59:33 +00002736/// * If M is a constant, and D has one use, we transform to 'and' / 'or' ops
2737/// because that shortens the dependency chain and improves analysis:
2738/// (x & M) | (y & ~M)
Roman Lebedev13686792018-04-28 15:45:07 +00002739static Instruction *visitMaskedMerge(BinaryOperator &I,
2740 InstCombiner::BuilderTy &Builder) {
2741 Value *B, *X, *D;
2742 Value *M;
2743 if (!match(&I, m_c_Xor(m_Value(B),
2744 m_OneUse(m_c_And(
2745 m_CombineAnd(m_c_Xor(m_Deferred(B), m_Value(X)),
2746 m_Value(D)),
2747 m_Value(M))))))
2748 return nullptr;
2749
2750 Value *NotM;
2751 if (match(M, m_Not(m_Value(NotM)))) {
2752 // De-invert the mask and swap the value in B part.
2753 Value *NewA = Builder.CreateAnd(D, NotM);
2754 return BinaryOperator::CreateXor(NewA, X);
2755 }
2756
Roman Lebedevaa4faec2018-04-30 17:59:33 +00002757 Constant *C;
2758 if (D->hasOneUse() && match(M, m_Constant(C))) {
2759 // Unfold.
2760 Value *LHS = Builder.CreateAnd(X, C);
2761 Value *NotC = Builder.CreateNot(C);
2762 Value *RHS = Builder.CreateAnd(B, NotC);
2763 return BinaryOperator::CreateOr(LHS, RHS);
2764 }
2765
Roman Lebedev13686792018-04-28 15:45:07 +00002766 return nullptr;
2767}
2768
Roman Lebedeva6776512018-08-08 13:31:19 +00002769// Transform
2770// ~(x ^ y)
2771// into:
2772// (~x) ^ y
2773// or into
2774// x ^ (~y)
2775static Instruction *sinkNotIntoXor(BinaryOperator &I,
2776 InstCombiner::BuilderTy &Builder) {
2777 Value *X, *Y;
2778 // FIXME: one-use check is not needed in general, but currently we are unable
2779 // to fold 'not' into 'icmp', if that 'icmp' has multiple uses. (D35182)
2780 if (!match(&I, m_Not(m_OneUse(m_Xor(m_Value(X), m_Value(Y))))))
2781 return nullptr;
2782
2783 // We only want to do the transform if it is free to do.
2784 if (IsFreeToInvert(X, X->hasOneUse())) {
2785 // Ok, good.
2786 } else if (IsFreeToInvert(Y, Y->hasOneUse())) {
2787 std::swap(X, Y);
2788 } else
2789 return nullptr;
2790
2791 Value *NotX = Builder.CreateNot(X, X->getName() + ".not");
2792 return BinaryOperator::CreateXor(NotX, Y, I.getName() + ".demorgan");
2793}
2794
Sanjay Patel2b9d4b42016-12-18 18:49:48 +00002795// FIXME: We use commutative matchers (m_c_*) for some, but not all, matches
2796// here. We should standardize that construct where it is needed or choose some
2797// other way to ensure that commutated variants of patterns are not missed.
Chris Lattner0a8191e2010-01-05 07:50:36 +00002798Instruction *InstCombiner::visitXor(BinaryOperator &I) {
Sanjay Patel7b0fc752018-06-21 17:06:36 +00002799 if (Value *V = SimplifyXorInst(I.getOperand(0), I.getOperand(1),
2800 SQ.getWithInstruction(&I)))
Sanjay Patel4b198802016-02-01 22:23:39 +00002801 return replaceInstUsesWith(I, V);
Chris Lattner0a8191e2010-01-05 07:50:36 +00002802
Sanjay Patel70043b72018-07-13 01:18:07 +00002803 if (SimplifyAssociativeOrCommutative(I))
2804 return &I;
2805
Sanjay Patel79dceb22018-10-03 15:20:58 +00002806 if (Instruction *X = foldVectorBinop(I))
Sanjay Patelbbc6d602018-06-02 16:27:44 +00002807 return X;
2808
Craig Topperbb4069e2017-07-07 23:16:26 +00002809 if (Instruction *NewXor = foldXorToXor(I, Builder))
Sanjay Pateld13b0bf2017-04-23 16:03:00 +00002810 return NewXor;
2811
Duncan Sandsfbb9ac32010-12-22 13:36:08 +00002812 // (A&B)^(A&C) -> A&(B^C) etc
2813 if (Value *V = SimplifyUsingDistributiveLaws(I))
Sanjay Patel4b198802016-02-01 22:23:39 +00002814 return replaceInstUsesWith(I, V);
Duncan Sandsadc7771f2010-11-23 14:23:47 +00002815
Craig Topper9d4171a2012-12-20 07:09:41 +00002816 // See if we can simplify any instructions used by the instruction whose sole
Chris Lattner0a8191e2010-01-05 07:50:36 +00002817 // purpose is to compute bits we don't care about.
2818 if (SimplifyDemandedInstructionBits(I))
2819 return &I;
Chris Lattner0a8191e2010-01-05 07:50:36 +00002820
Craig Topper95e41422017-07-06 16:24:23 +00002821 if (Value *V = SimplifyBSwap(I, Builder))
Sanjay Patel4b198802016-02-01 22:23:39 +00002822 return replaceInstUsesWith(I, V);
Simon Pilgrimbe24ab32014-12-04 09:44:01 +00002823
Sanjay Patel7b0fc752018-06-21 17:06:36 +00002824 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Craig Topper8bb49212018-08-13 00:38:27 +00002825
2826 // Fold (X & M) ^ (Y & ~M) -> (X & M) | (Y & ~M)
Craig Topper8caccc32018-08-13 00:54:23 +00002827 // This it a special case in haveNoCommonBitsSet, but the computeKnownBits
Craig Topper8bb49212018-08-13 00:38:27 +00002828 // calls in there are unnecessary as SimplifyDemandedInstructionBits should
2829 // have already taken care of those cases.
2830 Value *M;
2831 if (match(&I, m_c_Xor(m_c_And(m_Not(m_Value(M)), m_Value()),
2832 m_c_And(m_Deferred(M), m_Value()))))
Roman Lebedevf84bfb22018-04-15 18:59:44 +00002833 return BinaryOperator::CreateOr(Op0, Op1);
2834
Sanjay Patel6381db12017-05-02 15:31:40 +00002835 // Apply DeMorgan's Law for 'nand' / 'nor' logic with an inverted operand.
2836 Value *X, *Y;
2837
2838 // We must eliminate the and/or (one-use) for these transforms to not increase
2839 // the instruction count.
2840 // ~(~X & Y) --> (X | ~Y)
2841 // ~(Y & ~X) --> (X | ~Y)
2842 if (match(&I, m_Not(m_OneUse(m_c_And(m_Not(m_Value(X)), m_Value(Y)))))) {
Craig Topperbb4069e2017-07-07 23:16:26 +00002843 Value *NotY = Builder.CreateNot(Y, Y->getName() + ".not");
Sanjay Patel6381db12017-05-02 15:31:40 +00002844 return BinaryOperator::CreateOr(X, NotY);
2845 }
2846 // ~(~X | Y) --> (X & ~Y)
2847 // ~(Y | ~X) --> (X & ~Y)
2848 if (match(&I, m_Not(m_OneUse(m_c_Or(m_Not(m_Value(X)), m_Value(Y)))))) {
Craig Topperbb4069e2017-07-07 23:16:26 +00002849 Value *NotY = Builder.CreateNot(Y, Y->getName() + ".not");
Sanjay Patel6381db12017-05-02 15:31:40 +00002850 return BinaryOperator::CreateAnd(X, NotY);
2851 }
2852
Roman Lebedev13686792018-04-28 15:45:07 +00002853 if (Instruction *Xor = visitMaskedMerge(I, Builder))
2854 return Xor;
2855
Sanjay Patel3b863f82017-04-22 18:05:35 +00002856 // Is this a 'not' (~) fed by a binary operator?
Sanjay Patela1c88142017-05-08 20:49:59 +00002857 BinaryOperator *NotVal;
2858 if (match(&I, m_Not(m_BinOp(NotVal)))) {
2859 if (NotVal->getOpcode() == Instruction::And ||
2860 NotVal->getOpcode() == Instruction::Or) {
Sanjay Patel6381db12017-05-02 15:31:40 +00002861 // Apply DeMorgan's Law when inverts are free:
2862 // ~(X & Y) --> (~X | ~Y)
2863 // ~(X | Y) --> (~X & ~Y)
Sanjay Patela1c88142017-05-08 20:49:59 +00002864 if (IsFreeToInvert(NotVal->getOperand(0),
2865 NotVal->getOperand(0)->hasOneUse()) &&
2866 IsFreeToInvert(NotVal->getOperand(1),
2867 NotVal->getOperand(1)->hasOneUse())) {
Craig Topperbb4069e2017-07-07 23:16:26 +00002868 Value *NotX = Builder.CreateNot(NotVal->getOperand(0), "notlhs");
2869 Value *NotY = Builder.CreateNot(NotVal->getOperand(1), "notrhs");
Sanjay Patela1c88142017-05-08 20:49:59 +00002870 if (NotVal->getOpcode() == Instruction::And)
Sanjay Patel3b863f82017-04-22 18:05:35 +00002871 return BinaryOperator::CreateOr(NotX, NotY);
2872 return BinaryOperator::CreateAnd(NotX, NotY);
2873 }
Sanjay Patela1c88142017-05-08 20:49:59 +00002874 }
2875
Sanjay Patel78e4b4d2018-07-27 10:54:48 +00002876 // ~(X - Y) --> ~X + Y
Sanjay Patel17e709b2018-09-02 19:31:45 +00002877 if (match(NotVal, m_Sub(m_Value(X), m_Value(Y))))
2878 if (isa<Constant>(X) || NotVal->hasOneUse())
2879 return BinaryOperator::CreateAdd(Builder.CreateNot(X), Y);
Sanjay Patel78e4b4d2018-07-27 10:54:48 +00002880
Sanjay Patela1c88142017-05-08 20:49:59 +00002881 // ~(~X >>s Y) --> (X >>s Y)
2882 if (match(NotVal, m_AShr(m_Not(m_Value(X)), m_Value(Y))))
2883 return BinaryOperator::CreateAShr(X, Y);
2884
2885 // If we are inverting a right-shifted constant, we may be able to eliminate
2886 // the 'not' by inverting the constant and using the opposite shift type.
2887 // Canonicalization rules ensure that only a negative constant uses 'ashr',
2888 // but we must check that in case that transform has not fired yet.
Sanjay Patel2fe1f622018-09-03 18:40:56 +00002889
2890 // ~(C >>s Y) --> ~C >>u Y (when inverting the replicated sign bits)
Simon Pilgrim19495192018-02-10 21:46:09 +00002891 Constant *C;
2892 if (match(NotVal, m_AShr(m_Constant(C), m_Value(Y))) &&
Sanjay Patel2fe1f622018-09-03 18:40:56 +00002893 match(C, m_Negative()))
2894 return BinaryOperator::CreateLShr(ConstantExpr::getNot(C), Y);
Sanjay Patela1c88142017-05-08 20:49:59 +00002895
Sanjay Patel2fe1f622018-09-03 18:40:56 +00002896 // ~(C >>u Y) --> ~C >>s Y (when inverting the replicated sign bits)
Simon Pilgrim19495192018-02-10 21:46:09 +00002897 if (match(NotVal, m_LShr(m_Constant(C), m_Value(Y))) &&
Sanjay Patel2fe1f622018-09-03 18:40:56 +00002898 match(C, m_NonNegative()))
2899 return BinaryOperator::CreateAShr(ConstantExpr::getNot(C), Y);
Sanjay Pateld75064e2018-09-03 18:21:59 +00002900
2901 // ~(X + C) --> -(C + 1) - X
2902 if (match(Op0, m_Add(m_Value(X), m_Constant(C))))
2903 return BinaryOperator::CreateSub(ConstantExpr::getNeg(AddOne(C)), X);
Chris Lattner0a8191e2010-01-05 07:50:36 +00002904 }
Craig Topper9d4171a2012-12-20 07:09:41 +00002905
Sanjay Patel93bd15a2018-09-06 16:23:40 +00002906 // Use DeMorgan and reassociation to eliminate a 'not' op.
2907 Constant *C1;
2908 if (match(Op1, m_Constant(C1))) {
2909 Constant *C2;
2910 if (match(Op0, m_OneUse(m_Or(m_Not(m_Value(X)), m_Constant(C2))))) {
2911 // (~X | C2) ^ C1 --> ((X & ~C2) ^ -1) ^ C1 --> (X & ~C2) ^ ~C1
2912 Value *And = Builder.CreateAnd(X, ConstantExpr::getNot(C2));
2913 return BinaryOperator::CreateXor(And, ConstantExpr::getNot(C1));
2914 }
2915 if (match(Op0, m_OneUse(m_And(m_Not(m_Value(X)), m_Constant(C2))))) {
2916 // (~X & C2) ^ C1 --> ((X | ~C2) ^ -1) ^ C1 --> (X | ~C2) ^ ~C1
2917 Value *Or = Builder.CreateOr(X, ConstantExpr::getNot(C2));
2918 return BinaryOperator::CreateXor(Or, ConstantExpr::getNot(C1));
2919 }
2920 }
2921
Craig Topper798a19a2017-06-29 00:07:08 +00002922 // not (cmp A, B) = !cmp A, B
Craig Toppercc418b62017-07-05 20:31:00 +00002923 CmpInst::Predicate Pred;
Craig Topper798a19a2017-06-29 00:07:08 +00002924 if (match(&I, m_Not(m_OneUse(m_Cmp(Pred, m_Value(), m_Value()))))) {
Sanjay Patel33439f92017-04-12 15:11:33 +00002925 cast<CmpInst>(Op0)->setPredicate(CmpInst::getInversePredicate(Pred));
2926 return replaceInstUsesWith(I, Op0);
Benjamin Kramer443c7962015-02-12 20:26:46 +00002927 }
Chris Lattner0a8191e2010-01-05 07:50:36 +00002928
Craig Topperb5bf0162017-08-06 06:28:41 +00002929 {
2930 const APInt *RHSC;
2931 if (match(Op1, m_APInt(RHSC))) {
Craig Topper9a6110b2017-08-10 20:35:34 +00002932 Value *X;
Craig Topperb5bf0162017-08-06 06:28:41 +00002933 const APInt *C;
Sanjay Patel2fe1f622018-09-03 18:40:56 +00002934 if (RHSC->isSignMask() && match(Op0, m_Sub(m_APInt(C), m_Value(X)))) {
2935 // (C - X) ^ signmask -> (C + signmask - X)
2936 Constant *NewC = ConstantInt::get(I.getType(), *C + *RHSC);
2937 return BinaryOperator::CreateSub(NewC, X);
2938 }
2939 if (RHSC->isSignMask() && match(Op0, m_Add(m_Value(X), m_APInt(C)))) {
2940 // (X + C) ^ signmask -> (X + C + signmask)
2941 Constant *NewC = ConstantInt::get(I.getType(), *C + *RHSC);
2942 return BinaryOperator::CreateAdd(X, NewC);
Craig Topperb5bf0162017-08-06 06:28:41 +00002943 }
Craig Topper9a6110b2017-08-10 20:35:34 +00002944
2945 // (X|C1)^C2 -> X^(C1^C2) iff X&~C1 == 0
2946 if (match(Op0, m_Or(m_Value(X), m_APInt(C))) &&
2947 MaskedValueIsZero(X, *C, 0, &I)) {
2948 Constant *NewC = ConstantInt::get(I.getType(), *C ^ *RHSC);
2949 Worklist.Add(cast<Instruction>(Op0));
2950 I.setOperand(0, X);
2951 I.setOperand(1, NewC);
2952 return &I;
2953 }
Craig Topperb5bf0162017-08-06 06:28:41 +00002954 }
2955 }
2956
Craig Topper9d1821b2017-04-09 06:12:31 +00002957 if (ConstantInt *RHSC = dyn_cast<ConstantInt>(Op1)) {
Chris Lattner0a8191e2010-01-05 07:50:36 +00002958 if (BinaryOperator *Op0I = dyn_cast<BinaryOperator>(Op0)) {
Chris Lattner0a8191e2010-01-05 07:50:36 +00002959 if (ConstantInt *Op0CI = dyn_cast<ConstantInt>(Op0I->getOperand(1))) {
Craig Topper9a6110b2017-08-10 20:35:34 +00002960 if (Op0I->getOpcode() == Instruction::LShr) {
Shuxin Yang6ea79e82012-11-26 21:44:25 +00002961 // ((X^C1) >> C2) ^ C3 -> (X>>C2) ^ ((C1>>C2)^C3)
2962 // E1 = "X ^ C1"
Craig Topper9d4171a2012-12-20 07:09:41 +00002963 BinaryOperator *E1;
Shuxin Yang6ea79e82012-11-26 21:44:25 +00002964 ConstantInt *C1;
2965 if (Op0I->hasOneUse() &&
2966 (E1 = dyn_cast<BinaryOperator>(Op0I->getOperand(0))) &&
2967 E1->getOpcode() == Instruction::Xor &&
2968 (C1 = dyn_cast<ConstantInt>(E1->getOperand(1)))) {
2969 // fold (C1 >> C2) ^ C3
Craig Topper9d1821b2017-04-09 06:12:31 +00002970 ConstantInt *C2 = Op0CI, *C3 = RHSC;
Shuxin Yang6ea79e82012-11-26 21:44:25 +00002971 APInt FoldConst = C1->getValue().lshr(C2->getValue());
2972 FoldConst ^= C3->getValue();
2973 // Prepare the two operands.
Craig Topperbb4069e2017-07-07 23:16:26 +00002974 Value *Opnd0 = Builder.CreateLShr(E1->getOperand(0), C2);
Shuxin Yang6ea79e82012-11-26 21:44:25 +00002975 Opnd0->takeName(Op0I);
2976 cast<Instruction>(Opnd0)->setDebugLoc(I.getDebugLoc());
2977 Value *FoldVal = ConstantInt::get(Opnd0->getType(), FoldConst);
2978
2979 return BinaryOperator::CreateXor(Opnd0, FoldVal);
2980 }
Chris Lattner0a8191e2010-01-05 07:50:36 +00002981 }
2982 }
2983 }
Craig Topper86173602017-04-04 20:26:25 +00002984 }
Chris Lattner0a8191e2010-01-05 07:50:36 +00002985
Sanjay Patel8fdd87f2018-02-28 16:36:24 +00002986 if (Instruction *FoldedLogic = foldBinOpIntoSelectOrPhi(I))
2987 return FoldedLogic;
Chris Lattner0a8191e2010-01-05 07:50:36 +00002988
Sanjay Patela89f1832018-09-04 21:00:13 +00002989 // Y ^ (X | Y) --> X & ~Y
2990 // Y ^ (Y | X) --> X & ~Y
2991 if (match(Op1, m_OneUse(m_c_Or(m_Value(X), m_Specific(Op0)))))
2992 return BinaryOperator::CreateAnd(X, Builder.CreateNot(Op0));
2993 // (X | Y) ^ Y --> X & ~Y
2994 // (Y | X) ^ Y --> X & ~Y
2995 if (match(Op0, m_OneUse(m_c_Or(m_Value(X), m_Specific(Op1)))))
2996 return BinaryOperator::CreateAnd(X, Builder.CreateNot(Op1));
Craig Topper9d4171a2012-12-20 07:09:41 +00002997
Sanjay Patela89f1832018-09-04 21:00:13 +00002998 // Y ^ (X & Y) --> ~X & Y
2999 // Y ^ (Y & X) --> ~X & Y
3000 if (match(Op1, m_OneUse(m_c_And(m_Value(X), m_Specific(Op0)))))
3001 return BinaryOperator::CreateAnd(Op0, Builder.CreateNot(X));
3002 // (X & Y) ^ Y --> ~X & Y
3003 // (Y & X) ^ Y --> ~X & Y
Sanjay Patel0f70f862018-09-04 21:17:14 +00003004 // Canonical form is (X & C) ^ C; don't touch that.
Sanjay Patela89f1832018-09-04 21:00:13 +00003005 // TODO: A 'not' op is better for analysis and codegen, but demanded bits must
3006 // be fixed to prefer that (otherwise we get infinite looping).
Sanjay Patel0f70f862018-09-04 21:17:14 +00003007 if (!match(Op1, m_Constant()) &&
Sanjay Patela89f1832018-09-04 21:00:13 +00003008 match(Op0, m_OneUse(m_c_And(m_Value(X), m_Specific(Op1)))))
3009 return BinaryOperator::CreateAnd(Op1, Builder.CreateNot(X));
Craig Topper9d4171a2012-12-20 07:09:41 +00003010
Sanjay Patel63cf26c2018-09-04 23:22:13 +00003011 Value *A, *B, *C;
3012 // (A ^ B) ^ (A | C) --> (~A & C) ^ B -- There are 4 commuted variants.
3013 if (match(&I, m_c_Xor(m_OneUse(m_Xor(m_Value(A), m_Value(B))),
3014 m_OneUse(m_c_Or(m_Deferred(A), m_Value(C))))))
3015 return BinaryOperator::CreateXor(
3016 Builder.CreateAnd(Builder.CreateNot(A), C), B);
3017
3018 // (A ^ B) ^ (B | C) --> (~B & C) ^ A -- There are 4 commuted variants.
3019 if (match(&I, m_c_Xor(m_OneUse(m_Xor(m_Value(A), m_Value(B))),
3020 m_OneUse(m_c_Or(m_Deferred(B), m_Value(C))))))
3021 return BinaryOperator::CreateXor(
3022 Builder.CreateAnd(Builder.CreateNot(B), C), A);
3023
3024 // (A & B) ^ (A ^ B) -> (A | B)
3025 if (match(Op0, m_And(m_Value(A), m_Value(B))) &&
3026 match(Op1, m_c_Xor(m_Specific(A), m_Specific(B))))
3027 return BinaryOperator::CreateOr(A, B);
3028 // (A ^ B) ^ (A & B) -> (A | B)
3029 if (match(Op0, m_Xor(m_Value(A), m_Value(B))) &&
3030 match(Op1, m_c_And(m_Specific(A), m_Specific(B))))
3031 return BinaryOperator::CreateOr(A, B);
Duncan Sandsadc7771f2010-11-23 14:23:47 +00003032
Sanjay Patel2b9d4b42016-12-18 18:49:48 +00003033 // (A & ~B) ^ ~A -> ~(A & B)
3034 // (~B & A) ^ ~A -> ~(A & B)
Sanjay Patel2b9d4b42016-12-18 18:49:48 +00003035 if (match(Op0, m_c_And(m_Value(A), m_Not(m_Value(B)))) &&
Suyog Sarda56c9a872014-08-01 05:07:20 +00003036 match(Op1, m_Not(m_Specific(A))))
Craig Topperbb4069e2017-07-07 23:16:26 +00003037 return BinaryOperator::CreateNot(Builder.CreateAnd(A, B));
Suyog Sarda56c9a872014-08-01 05:07:20 +00003038
Sanjay Patel5e456b92017-05-18 20:53:16 +00003039 if (auto *LHS = dyn_cast<ICmpInst>(I.getOperand(0)))
3040 if (auto *RHS = dyn_cast<ICmpInst>(I.getOperand(1)))
3041 if (Value *V = foldXorOfICmps(LHS, RHS))
3042 return replaceInstUsesWith(I, V);
Chris Lattner0a8191e2010-01-05 07:50:36 +00003043
Sanjay Pateldbbaca02016-02-24 17:00:34 +00003044 if (Instruction *CastedXor = foldCastedBitwiseLogic(I))
3045 return CastedXor;
Chris Lattner0a8191e2010-01-05 07:50:36 +00003046
Sanjay Patel3cd1aa82018-06-06 21:58:12 +00003047 // Canonicalize a shifty way to code absolute value to the common pattern.
Sanjay Patel5a0cdac2017-12-16 16:41:17 +00003048 // There are 4 potential commuted variants. Move the 'ashr' candidate to Op1.
3049 // We're relying on the fact that we only do this transform when the shift has
3050 // exactly 2 uses and the add has exactly 1 use (otherwise, we might increase
3051 // instructions).
Craig Topperee99aa42018-03-12 18:46:05 +00003052 if (Op0->hasNUses(2))
Sanjay Patel5a0cdac2017-12-16 16:41:17 +00003053 std::swap(Op0, Op1);
3054
3055 const APInt *ShAmt;
3056 Type *Ty = I.getType();
3057 if (match(Op1, m_AShr(m_Value(A), m_APInt(ShAmt))) &&
Craig Topperee99aa42018-03-12 18:46:05 +00003058 Op1->hasNUses(2) && *ShAmt == Ty->getScalarSizeInBits() - 1 &&
Sanjay Patel5a0cdac2017-12-16 16:41:17 +00003059 match(Op0, m_OneUse(m_c_Add(m_Specific(A), m_Specific(Op1))))) {
3060 // B = ashr i32 A, 31 ; smear the sign bit
3061 // xor (add A, B), B ; add -1 and flip bits if negative
3062 // --> (A < 0) ? -A : A
3063 Value *Cmp = Builder.CreateICmpSLT(A, ConstantInt::getNullValue(Ty));
Craig Topperbd332582018-05-17 16:29:52 +00003064 // Copy the nuw/nsw flags from the add to the negate.
3065 auto *Add = cast<BinaryOperator>(Op0);
3066 Value *Neg = Builder.CreateNeg(A, "", Add->hasNoUnsignedWrap(),
3067 Add->hasNoSignedWrap());
3068 return SelectInst::Create(Cmp, Neg, A);
Sanjay Patel5a0cdac2017-12-16 16:41:17 +00003069 }
3070
Artur Gainullind9282012018-04-11 10:29:37 +00003071 // Eliminate a bitwise 'not' op of 'not' min/max by inverting the min/max:
3072 //
3073 // %notx = xor i32 %x, -1
3074 // %cmp1 = icmp sgt i32 %notx, %y
3075 // %smax = select i1 %cmp1, i32 %notx, i32 %y
3076 // %res = xor i32 %smax, -1
3077 // =>
3078 // %noty = xor i32 %y, -1
3079 // %cmp2 = icmp slt %x, %noty
3080 // %res = select i1 %cmp2, i32 %x, i32 %noty
3081 //
3082 // Same is applicable for smin/umax/umin.
Craig Topper3d8fe392018-08-21 19:17:00 +00003083 if (match(Op1, m_AllOnes()) && Op0->hasOneUse()) {
Artur Gainullind9282012018-04-11 10:29:37 +00003084 Value *LHS, *RHS;
3085 SelectPatternFlavor SPF = matchSelectPattern(Op0, LHS, RHS).Flavor;
Craig Topper3d8fe392018-08-21 19:17:00 +00003086 if (SelectPatternResult::isMinOrMax(SPF)) {
Craig Topper040c2b02018-09-07 16:19:50 +00003087 // It's possible we get here before the not has been simplified, so make
3088 // sure the input to the not isn't freely invertible.
3089 if (match(LHS, m_Not(m_Value(X))) && !IsFreeToInvert(X, X->hasOneUse())) {
Artur Gainullind9282012018-04-11 10:29:37 +00003090 Value *NotY = Builder.CreateNot(RHS);
3091 return SelectInst::Create(
3092 Builder.CreateICmp(getInverseMinMaxPred(SPF), X, NotY), X, NotY);
3093 }
Craig Topper040c2b02018-09-07 16:19:50 +00003094
3095 // It's possible we get here before the not has been simplified, so make
3096 // sure the input to the not isn't freely invertible.
3097 if (match(RHS, m_Not(m_Value(Y))) && !IsFreeToInvert(Y, Y->hasOneUse())) {
3098 Value *NotX = Builder.CreateNot(LHS);
3099 return SelectInst::Create(
3100 Builder.CreateICmp(getInverseMinMaxPred(SPF), NotX, Y), NotX, Y);
3101 }
Craig Topper8fc05ce2018-09-13 18:52:58 +00003102
3103 // If both sides are freely invertible, then we can get rid of the xor
3104 // completely.
3105 if (IsFreeToInvert(LHS, !LHS->hasNUsesOrMore(3)) &&
3106 IsFreeToInvert(RHS, !RHS->hasNUsesOrMore(3))) {
3107 Value *NotLHS = Builder.CreateNot(LHS);
3108 Value *NotRHS = Builder.CreateNot(RHS);
3109 return SelectInst::Create(
3110 Builder.CreateICmp(getInverseMinMaxPred(SPF), NotLHS, NotRHS),
3111 NotLHS, NotRHS);
3112 }
Artur Gainullind9282012018-04-11 10:29:37 +00003113 }
3114 }
3115
Roman Lebedeva6776512018-08-08 13:31:19 +00003116 if (Instruction *NewXor = sinkNotIntoXor(I, Builder))
3117 return NewXor;
3118
Sanjay Patel70043b72018-07-13 01:18:07 +00003119 return nullptr;
Chris Lattner0a8191e2010-01-05 07:50:36 +00003120}