blob: 81a89e67ea027a6a9abdd0aefc80dab41c57b0cd [file] [log] [blame]
Chris Lattner2188e402010-01-04 07:37:31 +00001//===- InstCombineCompares.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 Lattner2188e402010-01-04 07:37:31 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This file implements the visitICmp and visitFCmp functions.
10//
11//===----------------------------------------------------------------------===//
12
Chandler Carrutha9174582015-01-22 05:25:13 +000013#include "InstCombineInternal.h"
Matt Arsenault55e73122015-01-06 15:50:59 +000014#include "llvm/ADT/APSInt.h"
Silviu Barangaf29dfd32016-01-15 15:52:05 +000015#include "llvm/ADT/SetVector.h"
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +000016#include "llvm/ADT/Statistic.h"
Eli Friedman911e12f2011-07-20 21:57:23 +000017#include "llvm/Analysis/ConstantFolding.h"
Chris Lattner2188e402010-01-04 07:37:31 +000018#include "llvm/Analysis/InstructionSimplify.h"
Mehdi Aminib550cb12016-04-18 09:17:29 +000019#include "llvm/Analysis/TargetLibraryInfo.h"
Chandler Carruth8cd041e2014-03-04 12:24:34 +000020#include "llvm/IR/ConstantRange.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000021#include "llvm/IR/DataLayout.h"
Chandler Carruth03eb0de2014-03-04 10:40:04 +000022#include "llvm/IR/GetElementPtrTypeIterator.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000023#include "llvm/IR/IntrinsicInst.h"
Chandler Carruth820a9082014-03-04 11:08:18 +000024#include "llvm/IR/PatternMatch.h"
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +000025#include "llvm/Support/Debug.h"
Craig Topperb45eabc2017-04-26 16:39:58 +000026#include "llvm/Support/KnownBits.h"
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +000027
Chris Lattner2188e402010-01-04 07:37:31 +000028using namespace llvm;
29using namespace PatternMatch;
30
Chandler Carruth964daaa2014-04-22 02:55:47 +000031#define DEBUG_TYPE "instcombine"
32
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +000033// How many times is a select replaced by one of its operands?
34STATISTIC(NumSel, "Number of select opts");
35
Chris Lattner98457102011-02-10 05:23:05 +000036
Sanjay Patel5f0217f2016-06-05 16:46:18 +000037/// Compute Result = In1+In2, returning true if the result overflowed for this
38/// type.
Craig Topper6e025a32017-10-01 23:53:54 +000039static bool addWithOverflow(APInt &Result, const APInt &In1,
40 const APInt &In2, bool IsSigned = false) {
41 bool Overflow;
42 if (IsSigned)
43 Result = In1.sadd_ov(In2, Overflow);
44 else
45 Result = In1.uadd_ov(In2, Overflow);
Chris Lattner2188e402010-01-04 07:37:31 +000046
Craig Topper6e025a32017-10-01 23:53:54 +000047 return Overflow;
Chris Lattner2188e402010-01-04 07:37:31 +000048}
49
Sanjay Patel5f0217f2016-06-05 16:46:18 +000050/// Compute Result = In1-In2, returning true if the result overflowed for this
51/// type.
Craig Topper6e025a32017-10-01 23:53:54 +000052static bool subWithOverflow(APInt &Result, const APInt &In1,
53 const APInt &In2, bool IsSigned = false) {
54 bool Overflow;
55 if (IsSigned)
56 Result = In1.ssub_ov(In2, Overflow);
57 else
58 Result = In1.usub_ov(In2, Overflow);
Chris Lattner2188e402010-01-04 07:37:31 +000059
Craig Topper6e025a32017-10-01 23:53:54 +000060 return Overflow;
Chris Lattner2188e402010-01-04 07:37:31 +000061}
62
Balaram Makam569eaec2016-05-04 21:32:14 +000063/// Given an icmp instruction, return true if any use of this comparison is a
64/// branch on sign bit comparison.
Eric Christopher710c1c82017-06-30 01:35:31 +000065static bool hasBranchUse(ICmpInst &I) {
Balaram Makam569eaec2016-05-04 21:32:14 +000066 for (auto *U : I.users())
67 if (isa<BranchInst>(U))
Eric Christopher710c1c82017-06-30 01:35:31 +000068 return true;
Balaram Makam569eaec2016-05-04 21:32:14 +000069 return false;
70}
71
Sanjay Patel5f0217f2016-06-05 16:46:18 +000072/// Given an exploded icmp instruction, return true if the comparison only
73/// checks the sign bit. If it only checks the sign bit, set TrueIfSigned if the
74/// result of the comparison is true when the input value is signed.
Sanjay Patel79263662016-08-21 15:07:45 +000075static bool isSignBitCheck(ICmpInst::Predicate Pred, const APInt &RHS,
Chris Lattner2188e402010-01-04 07:37:31 +000076 bool &TrueIfSigned) {
Sanjay Patel5f0217f2016-06-05 16:46:18 +000077 switch (Pred) {
Chris Lattner2188e402010-01-04 07:37:31 +000078 case ICmpInst::ICMP_SLT: // True if LHS s< 0
79 TrueIfSigned = true;
Craig Topper73ba1c82017-06-07 07:40:37 +000080 return RHS.isNullValue();
Chris Lattner2188e402010-01-04 07:37:31 +000081 case ICmpInst::ICMP_SLE: // True if LHS s<= RHS and RHS == -1
82 TrueIfSigned = true;
Sanjay Patel79263662016-08-21 15:07:45 +000083 return RHS.isAllOnesValue();
Chris Lattner2188e402010-01-04 07:37:31 +000084 case ICmpInst::ICMP_SGT: // True if LHS s> -1
85 TrueIfSigned = false;
Sanjay Patel79263662016-08-21 15:07:45 +000086 return RHS.isAllOnesValue();
Chris Lattner2188e402010-01-04 07:37:31 +000087 case ICmpInst::ICMP_UGT:
88 // True if LHS u> RHS and RHS == high-bit-mask - 1
89 TrueIfSigned = true;
Sanjay Patel79263662016-08-21 15:07:45 +000090 return RHS.isMaxSignedValue();
Jim Grosbach129c52a2011-09-30 18:09:53 +000091 case ICmpInst::ICMP_UGE:
Chris Lattner2188e402010-01-04 07:37:31 +000092 // True if LHS u>= RHS and RHS == high-bit-mask (2^7, 2^15, 2^31, etc)
93 TrueIfSigned = true;
Craig Topperbcfd2d12017-04-20 16:56:25 +000094 return RHS.isSignMask();
Chris Lattner2188e402010-01-04 07:37:31 +000095 default:
96 return false;
97 }
98}
99
Arnaud A. de Grandmaison3ee88e82013-03-25 11:47:38 +0000100/// Returns true if the exploded icmp can be expressed as a signed comparison
101/// to zero and updates the predicate accordingly.
102/// The signedness of the comparison is preserved.
Sanjay Patel5b112842016-08-18 14:59:14 +0000103/// TODO: Refactor with decomposeBitTestICmp()?
104static bool isSignTest(ICmpInst::Predicate &Pred, const APInt &C) {
Sanjay Patel5f0217f2016-06-05 16:46:18 +0000105 if (!ICmpInst::isSigned(Pred))
Arnaud A. de Grandmaison9c383d62013-03-25 09:48:49 +0000106 return false;
107
Craig Topper73ba1c82017-06-07 07:40:37 +0000108 if (C.isNullValue())
Sanjay Patel5f0217f2016-06-05 16:46:18 +0000109 return ICmpInst::isRelational(Pred);
Arnaud A. de Grandmaison9c383d62013-03-25 09:48:49 +0000110
Craig Topper73ba1c82017-06-07 07:40:37 +0000111 if (C.isOneValue()) {
Sanjay Patel5f0217f2016-06-05 16:46:18 +0000112 if (Pred == ICmpInst::ICMP_SLT) {
113 Pred = ICmpInst::ICMP_SLE;
Arnaud A. de Grandmaison9c383d62013-03-25 09:48:49 +0000114 return true;
Arnaud A. de Grandmaison9c383d62013-03-25 09:48:49 +0000115 }
Sanjay Patel5b112842016-08-18 14:59:14 +0000116 } else if (C.isAllOnesValue()) {
Sanjay Patel5f0217f2016-06-05 16:46:18 +0000117 if (Pred == ICmpInst::ICMP_SGT) {
118 Pred = ICmpInst::ICMP_SGE;
Arnaud A. de Grandmaison9c383d62013-03-25 09:48:49 +0000119 return true;
Arnaud A. de Grandmaison9c383d62013-03-25 09:48:49 +0000120 }
Arnaud A. de Grandmaison3ee88e82013-03-25 11:47:38 +0000121 }
Arnaud A. de Grandmaison9c383d62013-03-25 09:48:49 +0000122
123 return false;
124}
125
Sanjay Patel5f0217f2016-06-05 16:46:18 +0000126/// Given a signed integer type and a set of known zero and one bits, compute
127/// the maximum and minimum values that could have the specified known zero and
128/// known one bits, returning them in Min/Max.
Craig Topperb45eabc2017-04-26 16:39:58 +0000129/// TODO: Move to method on KnownBits struct?
130static void computeSignedMinMaxValuesFromKnownBits(const KnownBits &Known,
Sanjay Patel5f0217f2016-06-05 16:46:18 +0000131 APInt &Min, APInt &Max) {
Craig Topperb45eabc2017-04-26 16:39:58 +0000132 assert(Known.getBitWidth() == Min.getBitWidth() &&
133 Known.getBitWidth() == Max.getBitWidth() &&
Chris Lattner2188e402010-01-04 07:37:31 +0000134 "KnownZero, KnownOne and Min, Max must have equal bitwidth.");
Craig Topperb45eabc2017-04-26 16:39:58 +0000135 APInt UnknownBits = ~(Known.Zero|Known.One);
Chris Lattner2188e402010-01-04 07:37:31 +0000136
137 // The minimum value is when all unknown bits are zeros, EXCEPT for the sign
138 // bit if it is unknown.
Craig Topperb45eabc2017-04-26 16:39:58 +0000139 Min = Known.One;
140 Max = Known.One|UnknownBits;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000141
Chris Lattner2188e402010-01-04 07:37:31 +0000142 if (UnknownBits.isNegative()) { // Sign bit is unknown
Craig Topper24db6b82017-04-28 16:58:05 +0000143 Min.setSignBit();
144 Max.clearSignBit();
Chris Lattner2188e402010-01-04 07:37:31 +0000145 }
146}
147
Sanjay Patel5f0217f2016-06-05 16:46:18 +0000148/// Given an unsigned integer type and a set of known zero and one bits, compute
149/// the maximum and minimum values that could have the specified known zero and
150/// known one bits, returning them in Min/Max.
Craig Topperb45eabc2017-04-26 16:39:58 +0000151/// TODO: Move to method on KnownBits struct?
152static void computeUnsignedMinMaxValuesFromKnownBits(const KnownBits &Known,
Chris Lattner2188e402010-01-04 07:37:31 +0000153 APInt &Min, APInt &Max) {
Craig Topperb45eabc2017-04-26 16:39:58 +0000154 assert(Known.getBitWidth() == Min.getBitWidth() &&
155 Known.getBitWidth() == Max.getBitWidth() &&
Chris Lattner2188e402010-01-04 07:37:31 +0000156 "Ty, KnownZero, KnownOne and Min, Max must have equal bitwidth.");
Craig Topperb45eabc2017-04-26 16:39:58 +0000157 APInt UnknownBits = ~(Known.Zero|Known.One);
Jim Grosbach129c52a2011-09-30 18:09:53 +0000158
Chris Lattner2188e402010-01-04 07:37:31 +0000159 // The minimum value is when the unknown bits are all zeros.
Craig Topperb45eabc2017-04-26 16:39:58 +0000160 Min = Known.One;
Chris Lattner2188e402010-01-04 07:37:31 +0000161 // The maximum value is when the unknown bits are all ones.
Craig Topperb45eabc2017-04-26 16:39:58 +0000162 Max = Known.One|UnknownBits;
Chris Lattner2188e402010-01-04 07:37:31 +0000163}
164
Sanjay Patel5f0217f2016-06-05 16:46:18 +0000165/// This is called when we see this pattern:
Chris Lattner2188e402010-01-04 07:37:31 +0000166/// cmp pred (load (gep GV, ...)), cmpcst
Sanjay Patel5f0217f2016-06-05 16:46:18 +0000167/// where GV is a global variable with a constant initializer. Try to simplify
168/// this into some simple computation that does not need the load. For example
Chris Lattner2188e402010-01-04 07:37:31 +0000169/// we can optimize "icmp eq (load (gep "foo", 0, i)), 0" into "icmp eq i, 3".
170///
171/// If AndCst is non-null, then the loaded value is masked with that constant
Sanjay Patel5f0217f2016-06-05 16:46:18 +0000172/// before doing the comparison. This handles cases like "A[i]&4 == 0".
Sanjay Patel43395062016-07-21 18:07:40 +0000173Instruction *InstCombiner::foldCmpLoadFromIndexedGlobal(GetElementPtrInst *GEP,
174 GlobalVariable *GV,
175 CmpInst &ICI,
176 ConstantInt *AndCst) {
Chris Lattnerfe741762012-01-31 02:55:06 +0000177 Constant *Init = GV->getInitializer();
178 if (!isa<ConstantArray>(Init) && !isa<ConstantDataArray>(Init))
Craig Topperf40110f2014-04-25 05:29:35 +0000179 return nullptr;
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000180
Chris Lattnerfe741762012-01-31 02:55:06 +0000181 uint64_t ArrayElementCount = Init->getType()->getArrayNumElements();
Davide Italiano2133bf52017-02-07 17:56:50 +0000182 // Don't blow up on huge arrays.
183 if (ArrayElementCount > MaxArraySizeForCombine)
184 return nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000185
Chris Lattner2188e402010-01-04 07:37:31 +0000186 // There are many forms of this optimization we can handle, for now, just do
187 // the simple index into a single-dimensional array.
188 //
189 // Require: GEP GV, 0, i {{, constant indices}}
190 if (GEP->getNumOperands() < 3 ||
191 !isa<ConstantInt>(GEP->getOperand(1)) ||
192 !cast<ConstantInt>(GEP->getOperand(1))->isZero() ||
193 isa<Constant>(GEP->getOperand(2)))
Craig Topperf40110f2014-04-25 05:29:35 +0000194 return nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +0000195
196 // Check that indices after the variable are constants and in-range for the
197 // type they index. Collect the indices. This is typically for arrays of
198 // structs.
199 SmallVector<unsigned, 4> LaterIndices;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000200
Chris Lattnerfe741762012-01-31 02:55:06 +0000201 Type *EltTy = Init->getType()->getArrayElementType();
Chris Lattner2188e402010-01-04 07:37:31 +0000202 for (unsigned i = 3, e = GEP->getNumOperands(); i != e; ++i) {
203 ConstantInt *Idx = dyn_cast<ConstantInt>(GEP->getOperand(i));
Craig Topperf40110f2014-04-25 05:29:35 +0000204 if (!Idx) return nullptr; // Variable index.
Jim Grosbach129c52a2011-09-30 18:09:53 +0000205
Chris Lattner2188e402010-01-04 07:37:31 +0000206 uint64_t IdxVal = Idx->getZExtValue();
Craig Topperf40110f2014-04-25 05:29:35 +0000207 if ((unsigned)IdxVal != IdxVal) return nullptr; // Too large array index.
Jim Grosbach129c52a2011-09-30 18:09:53 +0000208
Chris Lattner229907c2011-07-18 04:54:35 +0000209 if (StructType *STy = dyn_cast<StructType>(EltTy))
Chris Lattner2188e402010-01-04 07:37:31 +0000210 EltTy = STy->getElementType(IdxVal);
Chris Lattner229907c2011-07-18 04:54:35 +0000211 else if (ArrayType *ATy = dyn_cast<ArrayType>(EltTy)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000212 if (IdxVal >= ATy->getNumElements()) return nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +0000213 EltTy = ATy->getElementType();
214 } else {
Craig Topperf40110f2014-04-25 05:29:35 +0000215 return nullptr; // Unknown type.
Chris Lattner2188e402010-01-04 07:37:31 +0000216 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000217
Chris Lattner2188e402010-01-04 07:37:31 +0000218 LaterIndices.push_back(IdxVal);
219 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000220
Chris Lattner2188e402010-01-04 07:37:31 +0000221 enum { Overdefined = -3, Undefined = -2 };
222
223 // Variables for our state machines.
Jim Grosbach129c52a2011-09-30 18:09:53 +0000224
Chris Lattner2188e402010-01-04 07:37:31 +0000225 // FirstTrueElement/SecondTrueElement - Used to emit a comparison of the form
226 // "i == 47 | i == 87", where 47 is the first index the condition is true for,
227 // and 87 is the second (and last) index. FirstTrueElement is -2 when
228 // undefined, otherwise set to the first true element. SecondTrueElement is
229 // -2 when undefined, -3 when overdefined and >= 0 when that index is true.
230 int FirstTrueElement = Undefined, SecondTrueElement = Undefined;
231
232 // FirstFalseElement/SecondFalseElement - Used to emit a comparison of the
233 // form "i != 47 & i != 87". Same state transitions as for true elements.
234 int FirstFalseElement = Undefined, SecondFalseElement = Undefined;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000235
Chris Lattner2188e402010-01-04 07:37:31 +0000236 /// TrueRangeEnd/FalseRangeEnd - In conjunction with First*Element, these
237 /// define a state machine that triggers for ranges of values that the index
238 /// is true or false for. This triggers on things like "abbbbc"[i] == 'b'.
239 /// This is -2 when undefined, -3 when overdefined, and otherwise the last
240 /// index in the range (inclusive). We use -2 for undefined here because we
241 /// use relative comparisons and don't want 0-1 to match -1.
242 int TrueRangeEnd = Undefined, FalseRangeEnd = Undefined;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000243
Chris Lattner2188e402010-01-04 07:37:31 +0000244 // MagicBitvector - This is a magic bitvector where we set a bit if the
245 // comparison is true for element 'i'. If there are 64 elements or less in
246 // the array, this will fully represent all the comparison results.
247 uint64_t MagicBitvector = 0;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000248
Chris Lattner2188e402010-01-04 07:37:31 +0000249 // Scan the array and see if one of our patterns matches.
250 Constant *CompareRHS = cast<Constant>(ICI.getOperand(1));
Chris Lattnerfe741762012-01-31 02:55:06 +0000251 for (unsigned i = 0, e = ArrayElementCount; i != e; ++i) {
252 Constant *Elt = Init->getAggregateElement(i);
Craig Topperf40110f2014-04-25 05:29:35 +0000253 if (!Elt) return nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000254
Chris Lattner2188e402010-01-04 07:37:31 +0000255 // If this is indexing an array of structures, get the structure element.
256 if (!LaterIndices.empty())
Jay Foad57aa6362011-07-13 10:26:04 +0000257 Elt = ConstantExpr::getExtractValue(Elt, LaterIndices);
Jim Grosbach129c52a2011-09-30 18:09:53 +0000258
Chris Lattner2188e402010-01-04 07:37:31 +0000259 // If the element is masked, handle it.
260 if (AndCst) Elt = ConstantExpr::getAnd(Elt, AndCst);
Jim Grosbach129c52a2011-09-30 18:09:53 +0000261
Chris Lattner2188e402010-01-04 07:37:31 +0000262 // Find out if the comparison would be true or false for the i'th element.
263 Constant *C = ConstantFoldCompareInstOperands(ICI.getPredicate(), Elt,
Justin Bogner99798402016-08-05 01:06:44 +0000264 CompareRHS, DL, &TLI);
Chris Lattner2188e402010-01-04 07:37:31 +0000265 // If the result is undef for this element, ignore it.
266 if (isa<UndefValue>(C)) {
267 // Extend range state machines to cover this element in case there is an
268 // undef in the middle of the range.
269 if (TrueRangeEnd == (int)i-1)
270 TrueRangeEnd = i;
271 if (FalseRangeEnd == (int)i-1)
272 FalseRangeEnd = i;
273 continue;
274 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000275
Chris Lattner2188e402010-01-04 07:37:31 +0000276 // If we can't compute the result for any of the elements, we have to give
277 // up evaluating the entire conditional.
Craig Topperf40110f2014-04-25 05:29:35 +0000278 if (!isa<ConstantInt>(C)) return nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000279
Chris Lattner2188e402010-01-04 07:37:31 +0000280 // Otherwise, we know if the comparison is true or false for this element,
281 // update our state machines.
282 bool IsTrueForElt = !cast<ConstantInt>(C)->isZero();
Jim Grosbach129c52a2011-09-30 18:09:53 +0000283
Chris Lattner2188e402010-01-04 07:37:31 +0000284 // State machine for single/double/range index comparison.
285 if (IsTrueForElt) {
286 // Update the TrueElement state machine.
287 if (FirstTrueElement == Undefined)
288 FirstTrueElement = TrueRangeEnd = i; // First true element.
289 else {
290 // Update double-compare state machine.
291 if (SecondTrueElement == Undefined)
292 SecondTrueElement = i;
293 else
294 SecondTrueElement = Overdefined;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000295
Chris Lattner2188e402010-01-04 07:37:31 +0000296 // Update range state machine.
297 if (TrueRangeEnd == (int)i-1)
298 TrueRangeEnd = i;
299 else
300 TrueRangeEnd = Overdefined;
301 }
302 } else {
303 // Update the FalseElement state machine.
304 if (FirstFalseElement == Undefined)
305 FirstFalseElement = FalseRangeEnd = i; // First false element.
306 else {
307 // Update double-compare state machine.
308 if (SecondFalseElement == Undefined)
309 SecondFalseElement = i;
310 else
311 SecondFalseElement = Overdefined;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000312
Chris Lattner2188e402010-01-04 07:37:31 +0000313 // Update range state machine.
314 if (FalseRangeEnd == (int)i-1)
315 FalseRangeEnd = i;
316 else
317 FalseRangeEnd = Overdefined;
318 }
319 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000320
Chris Lattner2188e402010-01-04 07:37:31 +0000321 // If this element is in range, update our magic bitvector.
322 if (i < 64 && IsTrueForElt)
323 MagicBitvector |= 1ULL << i;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000324
Chris Lattner2188e402010-01-04 07:37:31 +0000325 // If all of our states become overdefined, bail out early. Since the
326 // predicate is expensive, only check it every 8 elements. This is only
327 // really useful for really huge arrays.
328 if ((i & 8) == 0 && i >= 64 && SecondTrueElement == Overdefined &&
329 SecondFalseElement == Overdefined && TrueRangeEnd == Overdefined &&
330 FalseRangeEnd == Overdefined)
Craig Topperf40110f2014-04-25 05:29:35 +0000331 return nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +0000332 }
333
334 // Now that we've scanned the entire array, emit our new comparison(s). We
335 // order the state machines in complexity of the generated code.
336 Value *Idx = GEP->getOperand(2);
337
Matt Arsenault5aeae182013-08-19 21:40:31 +0000338 // If the index is larger than the pointer size of the target, truncate the
339 // index down like the GEP would do implicitly. We don't have to do this for
340 // an inbounds GEP because the index can't be out of range.
Matt Arsenault84680622013-09-30 21:11:01 +0000341 if (!GEP->isInBounds()) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000342 Type *IntPtrTy = DL.getIntPtrType(GEP->getType());
Matt Arsenault84680622013-09-30 21:11:01 +0000343 unsigned PtrSize = IntPtrTy->getIntegerBitWidth();
344 if (Idx->getType()->getPrimitiveSizeInBits() > PtrSize)
Craig Topperbb4069e2017-07-07 23:16:26 +0000345 Idx = Builder.CreateTrunc(Idx, IntPtrTy);
Matt Arsenault84680622013-09-30 21:11:01 +0000346 }
Matt Arsenault5aeae182013-08-19 21:40:31 +0000347
Chris Lattner2188e402010-01-04 07:37:31 +0000348 // If the comparison is only true for one or two elements, emit direct
349 // comparisons.
350 if (SecondTrueElement != Overdefined) {
351 // None true -> false.
352 if (FirstTrueElement == Undefined)
Craig Topperbb4069e2017-07-07 23:16:26 +0000353 return replaceInstUsesWith(ICI, Builder.getFalse());
Jim Grosbach129c52a2011-09-30 18:09:53 +0000354
Chris Lattner2188e402010-01-04 07:37:31 +0000355 Value *FirstTrueIdx = ConstantInt::get(Idx->getType(), FirstTrueElement);
Jim Grosbach129c52a2011-09-30 18:09:53 +0000356
Chris Lattner2188e402010-01-04 07:37:31 +0000357 // True for one element -> 'i == 47'.
358 if (SecondTrueElement == Undefined)
359 return new ICmpInst(ICmpInst::ICMP_EQ, Idx, FirstTrueIdx);
Jim Grosbach129c52a2011-09-30 18:09:53 +0000360
Chris Lattner2188e402010-01-04 07:37:31 +0000361 // True for two elements -> 'i == 47 | i == 72'.
Craig Topperbb4069e2017-07-07 23:16:26 +0000362 Value *C1 = Builder.CreateICmpEQ(Idx, FirstTrueIdx);
Chris Lattner2188e402010-01-04 07:37:31 +0000363 Value *SecondTrueIdx = ConstantInt::get(Idx->getType(), SecondTrueElement);
Craig Topperbb4069e2017-07-07 23:16:26 +0000364 Value *C2 = Builder.CreateICmpEQ(Idx, SecondTrueIdx);
Chris Lattner2188e402010-01-04 07:37:31 +0000365 return BinaryOperator::CreateOr(C1, C2);
366 }
367
368 // If the comparison is only false for one or two elements, emit direct
369 // comparisons.
370 if (SecondFalseElement != Overdefined) {
371 // None false -> true.
372 if (FirstFalseElement == Undefined)
Craig Topperbb4069e2017-07-07 23:16:26 +0000373 return replaceInstUsesWith(ICI, Builder.getTrue());
Jim Grosbach129c52a2011-09-30 18:09:53 +0000374
Chris Lattner2188e402010-01-04 07:37:31 +0000375 Value *FirstFalseIdx = ConstantInt::get(Idx->getType(), FirstFalseElement);
376
377 // False for one element -> 'i != 47'.
378 if (SecondFalseElement == Undefined)
379 return new ICmpInst(ICmpInst::ICMP_NE, Idx, FirstFalseIdx);
Jim Grosbach129c52a2011-09-30 18:09:53 +0000380
Chris Lattner2188e402010-01-04 07:37:31 +0000381 // False for two elements -> 'i != 47 & i != 72'.
Craig Topperbb4069e2017-07-07 23:16:26 +0000382 Value *C1 = Builder.CreateICmpNE(Idx, FirstFalseIdx);
Chris Lattner2188e402010-01-04 07:37:31 +0000383 Value *SecondFalseIdx = ConstantInt::get(Idx->getType(),SecondFalseElement);
Craig Topperbb4069e2017-07-07 23:16:26 +0000384 Value *C2 = Builder.CreateICmpNE(Idx, SecondFalseIdx);
Chris Lattner2188e402010-01-04 07:37:31 +0000385 return BinaryOperator::CreateAnd(C1, C2);
386 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000387
Chris Lattner2188e402010-01-04 07:37:31 +0000388 // If the comparison can be replaced with a range comparison for the elements
389 // where it is true, emit the range check.
390 if (TrueRangeEnd != Overdefined) {
391 assert(TrueRangeEnd != FirstTrueElement && "Should emit single compare");
Jim Grosbach129c52a2011-09-30 18:09:53 +0000392
Chris Lattner2188e402010-01-04 07:37:31 +0000393 // Generate (i-FirstTrue) <u (TrueRangeEnd-FirstTrue+1).
394 if (FirstTrueElement) {
395 Value *Offs = ConstantInt::get(Idx->getType(), -FirstTrueElement);
Craig Topperbb4069e2017-07-07 23:16:26 +0000396 Idx = Builder.CreateAdd(Idx, Offs);
Chris Lattner2188e402010-01-04 07:37:31 +0000397 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000398
Chris Lattner2188e402010-01-04 07:37:31 +0000399 Value *End = ConstantInt::get(Idx->getType(),
400 TrueRangeEnd-FirstTrueElement+1);
401 return new ICmpInst(ICmpInst::ICMP_ULT, Idx, End);
402 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000403
Chris Lattner2188e402010-01-04 07:37:31 +0000404 // False range check.
405 if (FalseRangeEnd != Overdefined) {
406 assert(FalseRangeEnd != FirstFalseElement && "Should emit single compare");
407 // Generate (i-FirstFalse) >u (FalseRangeEnd-FirstFalse).
408 if (FirstFalseElement) {
409 Value *Offs = ConstantInt::get(Idx->getType(), -FirstFalseElement);
Craig Topperbb4069e2017-07-07 23:16:26 +0000410 Idx = Builder.CreateAdd(Idx, Offs);
Chris Lattner2188e402010-01-04 07:37:31 +0000411 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000412
Chris Lattner2188e402010-01-04 07:37:31 +0000413 Value *End = ConstantInt::get(Idx->getType(),
414 FalseRangeEnd-FirstFalseElement);
415 return new ICmpInst(ICmpInst::ICMP_UGT, Idx, End);
416 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000417
Arnaud A. de Grandmaisonf364bc62013-03-22 08:25:01 +0000418 // If a magic bitvector captures the entire comparison state
Chris Lattner2188e402010-01-04 07:37:31 +0000419 // of this load, replace it with computation that does:
420 // ((magic_cst >> i) & 1) != 0
Arnaud A. de Grandmaisonf364bc62013-03-22 08:25:01 +0000421 {
Craig Topperf40110f2014-04-25 05:29:35 +0000422 Type *Ty = nullptr;
Arnaud A. de Grandmaisonf364bc62013-03-22 08:25:01 +0000423
424 // Look for an appropriate type:
425 // - The type of Idx if the magic fits
Craig Topper386fc252017-11-07 17:37:32 +0000426 // - The smallest fitting legal type
Arnaud A. de Grandmaisonf364bc62013-03-22 08:25:01 +0000427 if (ArrayElementCount <= Idx->getType()->getIntegerBitWidth())
428 Ty = Idx->getType();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000429 else
430 Ty = DL.getSmallestLegalIntType(Init->getContext(), ArrayElementCount);
Arnaud A. de Grandmaisonf364bc62013-03-22 08:25:01 +0000431
Craig Topperf40110f2014-04-25 05:29:35 +0000432 if (Ty) {
Craig Topperbb4069e2017-07-07 23:16:26 +0000433 Value *V = Builder.CreateIntCast(Idx, Ty, false);
434 V = Builder.CreateLShr(ConstantInt::get(Ty, MagicBitvector), V);
435 V = Builder.CreateAnd(ConstantInt::get(Ty, 1), V);
Arnaud A. de Grandmaisonf364bc62013-03-22 08:25:01 +0000436 return new ICmpInst(ICmpInst::ICMP_NE, V, ConstantInt::get(Ty, 0));
437 }
Chris Lattner2188e402010-01-04 07:37:31 +0000438 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000439
Craig Topperf40110f2014-04-25 05:29:35 +0000440 return nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +0000441}
442
Sanjay Patel5f0217f2016-06-05 16:46:18 +0000443/// Return a value that can be used to compare the *offset* implied by a GEP to
444/// zero. For example, if we have &A[i], we want to return 'i' for
445/// "icmp ne i, 0". Note that, in general, indices can be complex, and scales
446/// are involved. The above expression would also be legal to codegen as
447/// "icmp ne (i*4), 0" (assuming A is a pointer to i32).
448/// This latter form is less amenable to optimization though, and we are allowed
Chris Lattner2188e402010-01-04 07:37:31 +0000449/// to generate the first by knowing that pointer arithmetic doesn't overflow.
450///
451/// If we can't emit an optimized form for this expression, this returns null.
Jim Grosbach129c52a2011-09-30 18:09:53 +0000452///
Sanjay Pateld93c4c02016-09-15 18:22:25 +0000453static Value *evaluateGEPOffsetExpression(User *GEP, InstCombiner &IC,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000454 const DataLayout &DL) {
Chris Lattner2188e402010-01-04 07:37:31 +0000455 gep_type_iterator GTI = gep_type_begin(GEP);
Jim Grosbach129c52a2011-09-30 18:09:53 +0000456
Chris Lattner2188e402010-01-04 07:37:31 +0000457 // Check to see if this gep only has a single variable index. If so, and if
458 // any constant indices are a multiple of its scale, then we can compute this
459 // in terms of the scale of the variable index. For example, if the GEP
460 // implies an offset of "12 + i*4", then we can codegen this as "3 + i",
461 // because the expression will cross zero at the same point.
462 unsigned i, e = GEP->getNumOperands();
463 int64_t Offset = 0;
464 for (i = 1; i != e; ++i, ++GTI) {
465 if (ConstantInt *CI = dyn_cast<ConstantInt>(GEP->getOperand(i))) {
466 // Compute the aggregate offset of constant indices.
467 if (CI->isZero()) continue;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000468
Chris Lattner2188e402010-01-04 07:37:31 +0000469 // Handle a struct index, which adds its field offset to the pointer.
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000470 if (StructType *STy = GTI.getStructTypeOrNull()) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000471 Offset += DL.getStructLayout(STy)->getElementOffset(CI->getZExtValue());
Chris Lattner2188e402010-01-04 07:37:31 +0000472 } else {
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000473 uint64_t Size = DL.getTypeAllocSize(GTI.getIndexedType());
Chris Lattner2188e402010-01-04 07:37:31 +0000474 Offset += Size*CI->getSExtValue();
475 }
476 } else {
477 // Found our variable index.
478 break;
479 }
480 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000481
Chris Lattner2188e402010-01-04 07:37:31 +0000482 // If there are no variable indices, we must have a constant offset, just
483 // evaluate it the general way.
Craig Topperf40110f2014-04-25 05:29:35 +0000484 if (i == e) return nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000485
Chris Lattner2188e402010-01-04 07:37:31 +0000486 Value *VariableIdx = GEP->getOperand(i);
487 // Determine the scale factor of the variable element. For example, this is
488 // 4 if the variable index is into an array of i32.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000489 uint64_t VariableScale = DL.getTypeAllocSize(GTI.getIndexedType());
Jim Grosbach129c52a2011-09-30 18:09:53 +0000490
Chris Lattner2188e402010-01-04 07:37:31 +0000491 // Verify that there are no other variable indices. If so, emit the hard way.
492 for (++i, ++GTI; i != e; ++i, ++GTI) {
493 ConstantInt *CI = dyn_cast<ConstantInt>(GEP->getOperand(i));
Craig Topperf40110f2014-04-25 05:29:35 +0000494 if (!CI) return nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000495
Chris Lattner2188e402010-01-04 07:37:31 +0000496 // Compute the aggregate offset of constant indices.
497 if (CI->isZero()) continue;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000498
Chris Lattner2188e402010-01-04 07:37:31 +0000499 // Handle a struct index, which adds its field offset to the pointer.
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000500 if (StructType *STy = GTI.getStructTypeOrNull()) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000501 Offset += DL.getStructLayout(STy)->getElementOffset(CI->getZExtValue());
Chris Lattner2188e402010-01-04 07:37:31 +0000502 } else {
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000503 uint64_t Size = DL.getTypeAllocSize(GTI.getIndexedType());
Chris Lattner2188e402010-01-04 07:37:31 +0000504 Offset += Size*CI->getSExtValue();
505 }
506 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000507
Chris Lattner2188e402010-01-04 07:37:31 +0000508 // Okay, we know we have a single variable index, which must be a
509 // pointer/array/vector index. If there is no offset, life is simple, return
510 // the index.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000511 Type *IntPtrTy = DL.getIntPtrType(GEP->getOperand(0)->getType());
Matt Arsenault745101d2013-08-21 19:53:10 +0000512 unsigned IntPtrWidth = IntPtrTy->getIntegerBitWidth();
Chris Lattner2188e402010-01-04 07:37:31 +0000513 if (Offset == 0) {
514 // Cast to intptrty in case a truncation occurs. If an extension is needed,
515 // we don't need to bother extending: the extension won't affect where the
516 // computation crosses zero.
Eli Friedman1754a252011-05-18 23:11:30 +0000517 if (VariableIdx->getType()->getPrimitiveSizeInBits() > IntPtrWidth) {
Craig Topperbb4069e2017-07-07 23:16:26 +0000518 VariableIdx = IC.Builder.CreateTrunc(VariableIdx, IntPtrTy);
Eli Friedman1754a252011-05-18 23:11:30 +0000519 }
Chris Lattner2188e402010-01-04 07:37:31 +0000520 return VariableIdx;
521 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000522
Chris Lattner2188e402010-01-04 07:37:31 +0000523 // Otherwise, there is an index. The computation we will do will be modulo
Nikita Popov36e03ac2018-12-12 23:19:03 +0000524 // the pointer size.
525 Offset = SignExtend64(Offset, IntPtrWidth);
526 VariableScale = SignExtend64(VariableScale, IntPtrWidth);
Jim Grosbach129c52a2011-09-30 18:09:53 +0000527
Chris Lattner2188e402010-01-04 07:37:31 +0000528 // To do this transformation, any constant index must be a multiple of the
529 // variable scale factor. For example, we can evaluate "12 + 4*i" as "3 + i",
530 // but we can't evaluate "10 + 3*i" in terms of i. Check that the offset is a
531 // multiple of the variable scale.
532 int64_t NewOffs = Offset / (int64_t)VariableScale;
533 if (Offset != NewOffs*(int64_t)VariableScale)
Craig Topperf40110f2014-04-25 05:29:35 +0000534 return nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000535
Chris Lattner2188e402010-01-04 07:37:31 +0000536 // Okay, we can do this evaluation. Start by converting the index to intptr.
Chris Lattner2188e402010-01-04 07:37:31 +0000537 if (VariableIdx->getType() != IntPtrTy)
Craig Topperbb4069e2017-07-07 23:16:26 +0000538 VariableIdx = IC.Builder.CreateIntCast(VariableIdx, IntPtrTy,
Eli Friedman1754a252011-05-18 23:11:30 +0000539 true /*Signed*/);
Chris Lattner2188e402010-01-04 07:37:31 +0000540 Constant *OffsetVal = ConstantInt::get(IntPtrTy, NewOffs);
Craig Topperbb4069e2017-07-07 23:16:26 +0000541 return IC.Builder.CreateAdd(VariableIdx, OffsetVal, "offset");
Chris Lattner2188e402010-01-04 07:37:31 +0000542}
543
Silviu Barangaf29dfd32016-01-15 15:52:05 +0000544/// Returns true if we can rewrite Start as a GEP with pointer Base
545/// and some integer offset. The nodes that need to be re-written
546/// for this transformation will be added to Explored.
547static bool canRewriteGEPAsOffset(Value *Start, Value *Base,
548 const DataLayout &DL,
549 SetVector<Value *> &Explored) {
550 SmallVector<Value *, 16> WorkList(1, Start);
551 Explored.insert(Base);
552
553 // The following traversal gives us an order which can be used
554 // when doing the final transformation. Since in the final
555 // transformation we create the PHI replacement instructions first,
556 // we don't have to get them in any particular order.
557 //
558 // However, for other instructions we will have to traverse the
559 // operands of an instruction first, which means that we have to
560 // do a post-order traversal.
561 while (!WorkList.empty()) {
562 SetVector<PHINode *> PHIs;
563
564 while (!WorkList.empty()) {
565 if (Explored.size() >= 100)
566 return false;
567
568 Value *V = WorkList.back();
569
570 if (Explored.count(V) != 0) {
571 WorkList.pop_back();
572 continue;
573 }
574
575 if (!isa<IntToPtrInst>(V) && !isa<PtrToIntInst>(V) &&
David Majnemer8b16da82016-09-15 20:10:09 +0000576 !isa<GetElementPtrInst>(V) && !isa<PHINode>(V))
Silviu Barangaf29dfd32016-01-15 15:52:05 +0000577 // We've found some value that we can't explore which is different from
578 // the base. Therefore we can't do this transformation.
579 return false;
580
581 if (isa<IntToPtrInst>(V) || isa<PtrToIntInst>(V)) {
582 auto *CI = dyn_cast<CastInst>(V);
583 if (!CI->isNoopCast(DL))
584 return false;
585
586 if (Explored.count(CI->getOperand(0)) == 0)
587 WorkList.push_back(CI->getOperand(0));
588 }
589
590 if (auto *GEP = dyn_cast<GEPOperator>(V)) {
591 // We're limiting the GEP to having one index. This will preserve
592 // the original pointer type. We could handle more cases in the
593 // future.
594 if (GEP->getNumIndices() != 1 || !GEP->isInBounds() ||
595 GEP->getType() != Start->getType())
596 return false;
597
598 if (Explored.count(GEP->getOperand(0)) == 0)
599 WorkList.push_back(GEP->getOperand(0));
600 }
601
602 if (WorkList.back() == V) {
603 WorkList.pop_back();
604 // We've finished visiting this node, mark it as such.
605 Explored.insert(V);
606 }
607
608 if (auto *PN = dyn_cast<PHINode>(V)) {
David Majnemercdf28732016-03-19 04:39:52 +0000609 // We cannot transform PHIs on unsplittable basic blocks.
610 if (isa<CatchSwitchInst>(PN->getParent()->getTerminator()))
611 return false;
Silviu Barangaf29dfd32016-01-15 15:52:05 +0000612 Explored.insert(PN);
613 PHIs.insert(PN);
614 }
615 }
616
617 // Explore the PHI nodes further.
618 for (auto *PN : PHIs)
619 for (Value *Op : PN->incoming_values())
620 if (Explored.count(Op) == 0)
621 WorkList.push_back(Op);
622 }
623
624 // Make sure that we can do this. Since we can't insert GEPs in a basic
625 // block before a PHI node, we can't easily do this transformation if
626 // we have PHI node users of transformed instructions.
627 for (Value *Val : Explored) {
628 for (Value *Use : Val->uses()) {
629
630 auto *PHI = dyn_cast<PHINode>(Use);
631 auto *Inst = dyn_cast<Instruction>(Val);
632
633 if (Inst == Base || Inst == PHI || !Inst || !PHI ||
634 Explored.count(PHI) == 0)
635 continue;
636
637 if (PHI->getParent() == Inst->getParent())
638 return false;
639 }
640 }
641 return true;
642}
643
644// Sets the appropriate insert point on Builder where we can add
645// a replacement Instruction for V (if that is possible).
646static void setInsertionPoint(IRBuilder<> &Builder, Value *V,
647 bool Before = true) {
648 if (auto *PHI = dyn_cast<PHINode>(V)) {
649 Builder.SetInsertPoint(&*PHI->getParent()->getFirstInsertionPt());
650 return;
651 }
652 if (auto *I = dyn_cast<Instruction>(V)) {
653 if (!Before)
654 I = &*std::next(I->getIterator());
655 Builder.SetInsertPoint(I);
656 return;
657 }
658 if (auto *A = dyn_cast<Argument>(V)) {
659 // Set the insertion point in the entry block.
660 BasicBlock &Entry = A->getParent()->getEntryBlock();
661 Builder.SetInsertPoint(&*Entry.getFirstInsertionPt());
662 return;
663 }
664 // Otherwise, this is a constant and we don't need to set a new
665 // insertion point.
666 assert(isa<Constant>(V) && "Setting insertion point for unknown value!");
667}
668
669/// Returns a re-written value of Start as an indexed GEP using Base as a
670/// pointer.
671static Value *rewriteGEPAsOffset(Value *Start, Value *Base,
672 const DataLayout &DL,
673 SetVector<Value *> &Explored) {
674 // Perform all the substitutions. This is a bit tricky because we can
675 // have cycles in our use-def chains.
676 // 1. Create the PHI nodes without any incoming values.
677 // 2. Create all the other values.
678 // 3. Add the edges for the PHI nodes.
679 // 4. Emit GEPs to get the original pointers.
680 // 5. Remove the original instructions.
681 Type *IndexType = IntegerType::get(
Elena Demikhovsky945b7e52018-02-14 06:58:08 +0000682 Base->getContext(), DL.getIndexTypeSizeInBits(Start->getType()));
Silviu Barangaf29dfd32016-01-15 15:52:05 +0000683
684 DenseMap<Value *, Value *> NewInsts;
685 NewInsts[Base] = ConstantInt::getNullValue(IndexType);
686
687 // Create the new PHI nodes, without adding any incoming values.
688 for (Value *Val : Explored) {
689 if (Val == Base)
690 continue;
691 // Create empty phi nodes. This avoids cyclic dependencies when creating
692 // the remaining instructions.
693 if (auto *PHI = dyn_cast<PHINode>(Val))
694 NewInsts[PHI] = PHINode::Create(IndexType, PHI->getNumIncomingValues(),
695 PHI->getName() + ".idx", PHI);
696 }
697 IRBuilder<> Builder(Base->getContext());
698
699 // Create all the other instructions.
700 for (Value *Val : Explored) {
701
702 if (NewInsts.find(Val) != NewInsts.end())
703 continue;
704
705 if (auto *CI = dyn_cast<CastInst>(Val)) {
706 NewInsts[CI] = NewInsts[CI->getOperand(0)];
707 continue;
708 }
709 if (auto *GEP = dyn_cast<GEPOperator>(Val)) {
710 Value *Index = NewInsts[GEP->getOperand(1)] ? NewInsts[GEP->getOperand(1)]
711 : GEP->getOperand(1);
712 setInsertionPoint(Builder, GEP);
713 // Indices might need to be sign extended. GEPs will magically do
714 // this, but we need to do it ourselves here.
715 if (Index->getType()->getScalarSizeInBits() !=
716 NewInsts[GEP->getOperand(0)]->getType()->getScalarSizeInBits()) {
717 Index = Builder.CreateSExtOrTrunc(
718 Index, NewInsts[GEP->getOperand(0)]->getType(),
719 GEP->getOperand(0)->getName() + ".sext");
720 }
721
722 auto *Op = NewInsts[GEP->getOperand(0)];
Craig Topper781aa182018-05-05 01:57:00 +0000723 if (isa<ConstantInt>(Op) && cast<ConstantInt>(Op)->isZero())
Silviu Barangaf29dfd32016-01-15 15:52:05 +0000724 NewInsts[GEP] = Index;
725 else
726 NewInsts[GEP] = Builder.CreateNSWAdd(
727 Op, Index, GEP->getOperand(0)->getName() + ".add");
728 continue;
729 }
730 if (isa<PHINode>(Val))
731 continue;
732
733 llvm_unreachable("Unexpected instruction type");
734 }
735
736 // Add the incoming values to the PHI nodes.
737 for (Value *Val : Explored) {
738 if (Val == Base)
739 continue;
740 // All the instructions have been created, we can now add edges to the
741 // phi nodes.
742 if (auto *PHI = dyn_cast<PHINode>(Val)) {
743 PHINode *NewPhi = static_cast<PHINode *>(NewInsts[PHI]);
744 for (unsigned I = 0, E = PHI->getNumIncomingValues(); I < E; ++I) {
745 Value *NewIncoming = PHI->getIncomingValue(I);
746
747 if (NewInsts.find(NewIncoming) != NewInsts.end())
748 NewIncoming = NewInsts[NewIncoming];
749
750 NewPhi->addIncoming(NewIncoming, PHI->getIncomingBlock(I));
751 }
752 }
753 }
754
755 for (Value *Val : Explored) {
756 if (Val == Base)
757 continue;
758
759 // Depending on the type, for external users we have to emit
760 // a GEP or a GEP + ptrtoint.
761 setInsertionPoint(Builder, Val, false);
762
763 // If required, create an inttoptr instruction for Base.
764 Value *NewBase = Base;
765 if (!Base->getType()->isPointerTy())
766 NewBase = Builder.CreateBitOrPointerCast(Base, Start->getType(),
767 Start->getName() + "to.ptr");
768
769 Value *GEP = Builder.CreateInBoundsGEP(
770 Start->getType()->getPointerElementType(), NewBase,
771 makeArrayRef(NewInsts[Val]), Val->getName() + ".ptr");
772
773 if (!Val->getType()->isPointerTy()) {
774 Value *Cast = Builder.CreatePointerCast(GEP, Val->getType(),
775 Val->getName() + ".conv");
776 GEP = Cast;
777 }
778 Val->replaceAllUsesWith(GEP);
779 }
780
781 return NewInsts[Start];
782}
783
784/// Looks through GEPs, IntToPtrInsts and PtrToIntInsts in order to express
785/// the input Value as a constant indexed GEP. Returns a pair containing
786/// the GEPs Pointer and Index.
787static std::pair<Value *, Value *>
788getAsConstantIndexedAddress(Value *V, const DataLayout &DL) {
789 Type *IndexType = IntegerType::get(V->getContext(),
Elena Demikhovsky945b7e52018-02-14 06:58:08 +0000790 DL.getIndexTypeSizeInBits(V->getType()));
Silviu Barangaf29dfd32016-01-15 15:52:05 +0000791
792 Constant *Index = ConstantInt::getNullValue(IndexType);
793 while (true) {
794 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
795 // We accept only inbouds GEPs here to exclude the possibility of
796 // overflow.
797 if (!GEP->isInBounds())
798 break;
799 if (GEP->hasAllConstantIndices() && GEP->getNumIndices() == 1 &&
800 GEP->getType() == V->getType()) {
801 V = GEP->getOperand(0);
802 Constant *GEPIndex = static_cast<Constant *>(GEP->getOperand(1));
803 Index = ConstantExpr::getAdd(
804 Index, ConstantExpr::getSExtOrBitCast(GEPIndex, IndexType));
805 continue;
806 }
807 break;
808 }
809 if (auto *CI = dyn_cast<IntToPtrInst>(V)) {
810 if (!CI->isNoopCast(DL))
811 break;
812 V = CI->getOperand(0);
813 continue;
814 }
815 if (auto *CI = dyn_cast<PtrToIntInst>(V)) {
816 if (!CI->isNoopCast(DL))
817 break;
818 V = CI->getOperand(0);
819 continue;
820 }
821 break;
822 }
823 return {V, Index};
824}
825
Sanjay Patel5f0217f2016-06-05 16:46:18 +0000826/// Converts (CMP GEPLHS, RHS) if this change would make RHS a constant.
827/// We can look through PHIs, GEPs and casts in order to determine a common base
828/// between GEPLHS and RHS.
Silviu Barangaf29dfd32016-01-15 15:52:05 +0000829static Instruction *transformToIndexedCompare(GEPOperator *GEPLHS, Value *RHS,
830 ICmpInst::Predicate Cond,
831 const DataLayout &DL) {
832 if (!GEPLHS->hasAllConstantIndices())
833 return nullptr;
834
Silviu Barangac6d21eb2017-01-31 14:04:15 +0000835 // Make sure the pointers have the same type.
836 if (GEPLHS->getType() != RHS->getType())
837 return nullptr;
838
Silviu Barangaf29dfd32016-01-15 15:52:05 +0000839 Value *PtrBase, *Index;
840 std::tie(PtrBase, Index) = getAsConstantIndexedAddress(GEPLHS, DL);
841
842 // The set of nodes that will take part in this transformation.
843 SetVector<Value *> Nodes;
844
845 if (!canRewriteGEPAsOffset(RHS, PtrBase, DL, Nodes))
846 return nullptr;
847
848 // We know we can re-write this as
849 // ((gep Ptr, OFFSET1) cmp (gep Ptr, OFFSET2)
850 // Since we've only looked through inbouds GEPs we know that we
851 // can't have overflow on either side. We can therefore re-write
852 // this as:
853 // OFFSET1 cmp OFFSET2
854 Value *NewRHS = rewriteGEPAsOffset(RHS, PtrBase, DL, Nodes);
855
856 // RewriteGEPAsOffset has replaced RHS and all of its uses with a re-written
857 // GEP having PtrBase as the pointer base, and has returned in NewRHS the
858 // offset. Since Index is the offset of LHS to the base pointer, we will now
859 // compare the offsets instead of comparing the pointers.
860 return new ICmpInst(ICmpInst::getSignedPredicate(Cond), Index, NewRHS);
861}
862
Sanjay Patel5f0217f2016-06-05 16:46:18 +0000863/// Fold comparisons between a GEP instruction and something else. At this point
864/// we know that the GEP is on the LHS of the comparison.
Sanjay Patel43395062016-07-21 18:07:40 +0000865Instruction *InstCombiner::foldGEPICmp(GEPOperator *GEPLHS, Value *RHS,
Chris Lattner2188e402010-01-04 07:37:31 +0000866 ICmpInst::Predicate Cond,
867 Instruction &I) {
Benjamin Kramer6ee86902012-02-21 13:31:09 +0000868 // Don't transform signed compares of GEPs into index compares. Even if the
869 // GEP is inbounds, the final add of the base pointer can have signed overflow
870 // and would change the result of the icmp.
871 // e.g. "&foo[0] <s &foo[1]" can't be folded to "true" because "foo" could be
Benjamin Kramerc7a22fe2012-02-21 13:40:06 +0000872 // the maximum signed value for the pointer type.
Benjamin Kramer6ee86902012-02-21 13:31:09 +0000873 if (ICmpInst::isSigned(Cond))
Craig Topperf40110f2014-04-25 05:29:35 +0000874 return nullptr;
Benjamin Kramer6ee86902012-02-21 13:31:09 +0000875
Matt Arsenault44f60d02014-06-09 19:20:29 +0000876 // Look through bitcasts and addrspacecasts. We do not however want to remove
877 // 0 GEPs.
878 if (!isa<GetElementPtrInst>(RHS))
879 RHS = RHS->stripPointerCasts();
Chris Lattner2188e402010-01-04 07:37:31 +0000880
881 Value *PtrBase = GEPLHS->getOperand(0);
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000882 if (PtrBase == RHS && GEPLHS->isInBounds()) {
Chris Lattner2188e402010-01-04 07:37:31 +0000883 // ((gep Ptr, OFFSET) cmp Ptr) ---> (OFFSET cmp 0).
884 // This transformation (ignoring the base and scales) is valid because we
885 // know pointers can't overflow since the gep is inbounds. See if we can
886 // output an optimized form.
Sanjay Pateld93c4c02016-09-15 18:22:25 +0000887 Value *Offset = evaluateGEPOffsetExpression(GEPLHS, *this, DL);
Jim Grosbach129c52a2011-09-30 18:09:53 +0000888
Chris Lattner2188e402010-01-04 07:37:31 +0000889 // If not, synthesize the offset the hard way.
Craig Topperf40110f2014-04-25 05:29:35 +0000890 if (!Offset)
Chris Lattner2188e402010-01-04 07:37:31 +0000891 Offset = EmitGEPOffset(GEPLHS);
892 return new ICmpInst(ICmpInst::getSignedPredicate(Cond), Offset,
893 Constant::getNullValue(Offset->getType()));
894 } else if (GEPOperator *GEPRHS = dyn_cast<GEPOperator>(RHS)) {
895 // If the base pointers are different, but the indices are the same, just
896 // compare the base pointer.
897 if (PtrBase != GEPRHS->getOperand(0)) {
898 bool IndicesTheSame = GEPLHS->getNumOperands()==GEPRHS->getNumOperands();
899 IndicesTheSame &= GEPLHS->getOperand(0)->getType() ==
900 GEPRHS->getOperand(0)->getType();
901 if (IndicesTheSame)
902 for (unsigned i = 1, e = GEPLHS->getNumOperands(); i != e; ++i)
903 if (GEPLHS->getOperand(i) != GEPRHS->getOperand(i)) {
904 IndicesTheSame = false;
905 break;
906 }
907
908 // If all indices are the same, just compare the base pointers.
Jesper Antonssonc954b862018-10-01 14:59:25 +0000909 Type *BaseType = GEPLHS->getOperand(0)->getType();
910 if (IndicesTheSame && CmpInst::makeCmpResultType(BaseType) == I.getType())
David Majnemer5953d372013-06-29 10:28:04 +0000911 return new ICmpInst(Cond, GEPLHS->getOperand(0), GEPRHS->getOperand(0));
Chris Lattner2188e402010-01-04 07:37:31 +0000912
Benjamin Kramer7adb1892012-02-20 15:07:47 +0000913 // If we're comparing GEPs with two base pointers that only differ in type
914 // and both GEPs have only constant indices or just one use, then fold
915 // the compare with the adjusted indices.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000916 if (GEPLHS->isInBounds() && GEPRHS->isInBounds() &&
Benjamin Kramer7adb1892012-02-20 15:07:47 +0000917 (GEPLHS->hasAllConstantIndices() || GEPLHS->hasOneUse()) &&
918 (GEPRHS->hasAllConstantIndices() || GEPRHS->hasOneUse()) &&
919 PtrBase->stripPointerCasts() ==
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000920 GEPRHS->getOperand(0)->stripPointerCasts()) {
Matt Arsenault44f60d02014-06-09 19:20:29 +0000921 Value *LOffset = EmitGEPOffset(GEPLHS);
922 Value *ROffset = EmitGEPOffset(GEPRHS);
923
924 // If we looked through an addrspacecast between different sized address
925 // spaces, the LHS and RHS pointers are different sized
926 // integers. Truncate to the smaller one.
927 Type *LHSIndexTy = LOffset->getType();
928 Type *RHSIndexTy = ROffset->getType();
929 if (LHSIndexTy != RHSIndexTy) {
930 if (LHSIndexTy->getPrimitiveSizeInBits() <
931 RHSIndexTy->getPrimitiveSizeInBits()) {
Craig Topperbb4069e2017-07-07 23:16:26 +0000932 ROffset = Builder.CreateTrunc(ROffset, LHSIndexTy);
Matt Arsenault44f60d02014-06-09 19:20:29 +0000933 } else
Craig Topperbb4069e2017-07-07 23:16:26 +0000934 LOffset = Builder.CreateTrunc(LOffset, RHSIndexTy);
Matt Arsenault44f60d02014-06-09 19:20:29 +0000935 }
936
Craig Topperbb4069e2017-07-07 23:16:26 +0000937 Value *Cmp = Builder.CreateICmp(ICmpInst::getSignedPredicate(Cond),
938 LOffset, ROffset);
Sanjay Patel4b198802016-02-01 22:23:39 +0000939 return replaceInstUsesWith(I, Cmp);
Benjamin Kramer7adb1892012-02-20 15:07:47 +0000940 }
941
Chris Lattner2188e402010-01-04 07:37:31 +0000942 // Otherwise, the base pointers are different and the indices are
Silviu Barangaf29dfd32016-01-15 15:52:05 +0000943 // different. Try convert this to an indexed compare by looking through
944 // PHIs/casts.
945 return transformToIndexedCompare(GEPLHS, RHS, Cond, DL);
Chris Lattner2188e402010-01-04 07:37:31 +0000946 }
947
948 // If one of the GEPs has all zero indices, recurse.
Benjamin Kramerd0993e02014-07-07 11:01:16 +0000949 if (GEPLHS->hasAllZeroIndices())
Sanjay Patel43395062016-07-21 18:07:40 +0000950 return foldGEPICmp(GEPRHS, GEPLHS->getOperand(0),
David Majnemer92a8a7d2013-06-29 09:45:35 +0000951 ICmpInst::getSwappedPredicate(Cond), I);
Chris Lattner2188e402010-01-04 07:37:31 +0000952
953 // If the other GEP has all zero indices, recurse.
Benjamin Kramerd0993e02014-07-07 11:01:16 +0000954 if (GEPRHS->hasAllZeroIndices())
Sanjay Patel43395062016-07-21 18:07:40 +0000955 return foldGEPICmp(GEPLHS, GEPRHS->getOperand(0), Cond, I);
Chris Lattner2188e402010-01-04 07:37:31 +0000956
Stuart Hastings66a82b92011-05-14 05:55:10 +0000957 bool GEPsInBounds = GEPLHS->isInBounds() && GEPRHS->isInBounds();
Chris Lattner2188e402010-01-04 07:37:31 +0000958 if (GEPLHS->getNumOperands() == GEPRHS->getNumOperands()) {
959 // If the GEPs only differ by one index, compare it.
960 unsigned NumDifferences = 0; // Keep track of # differences.
961 unsigned DiffOperand = 0; // The operand that differs.
962 for (unsigned i = 1, e = GEPRHS->getNumOperands(); i != e; ++i)
963 if (GEPLHS->getOperand(i) != GEPRHS->getOperand(i)) {
964 if (GEPLHS->getOperand(i)->getType()->getPrimitiveSizeInBits() !=
965 GEPRHS->getOperand(i)->getType()->getPrimitiveSizeInBits()) {
966 // Irreconcilable differences.
967 NumDifferences = 2;
968 break;
969 } else {
970 if (NumDifferences++) break;
971 DiffOperand = i;
972 }
973 }
974
Rafael Espindolaa7bbc0b2013-06-06 17:03:05 +0000975 if (NumDifferences == 0) // SAME GEP?
Sanjay Patel4b198802016-02-01 22:23:39 +0000976 return replaceInstUsesWith(I, // No comparison is needed here.
Jesper Antonsson719fa052018-09-20 13:37:28 +0000977 ConstantInt::get(I.getType(), ICmpInst::isTrueWhenEqual(Cond)));
Chris Lattner2188e402010-01-04 07:37:31 +0000978
Stuart Hastings66a82b92011-05-14 05:55:10 +0000979 else if (NumDifferences == 1 && GEPsInBounds) {
Chris Lattner2188e402010-01-04 07:37:31 +0000980 Value *LHSV = GEPLHS->getOperand(DiffOperand);
981 Value *RHSV = GEPRHS->getOperand(DiffOperand);
982 // Make sure we do a signed comparison here.
983 return new ICmpInst(ICmpInst::getSignedPredicate(Cond), LHSV, RHSV);
984 }
985 }
986
987 // Only lower this if the icmp is the only user of the GEP or if we expect
988 // the result to fold to a constant!
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000989 if (GEPsInBounds && (isa<ConstantExpr>(GEPLHS) || GEPLHS->hasOneUse()) &&
Chris Lattner2188e402010-01-04 07:37:31 +0000990 (isa<ConstantExpr>(GEPRHS) || GEPRHS->hasOneUse())) {
991 // ((gep Ptr, OFFSET1) cmp (gep Ptr, OFFSET2) ---> (OFFSET1 cmp OFFSET2)
992 Value *L = EmitGEPOffset(GEPLHS);
993 Value *R = EmitGEPOffset(GEPRHS);
994 return new ICmpInst(ICmpInst::getSignedPredicate(Cond), L, R);
995 }
996 }
Silviu Barangaf29dfd32016-01-15 15:52:05 +0000997
998 // Try convert this to an indexed compare by looking through PHIs/casts as a
999 // last resort.
1000 return transformToIndexedCompare(GEPLHS, RHS, Cond, DL);
Chris Lattner2188e402010-01-04 07:37:31 +00001001}
1002
Pete Cooper980a9352016-08-12 17:13:28 +00001003Instruction *InstCombiner::foldAllocaCmp(ICmpInst &ICI,
1004 const AllocaInst *Alloca,
1005 const Value *Other) {
Hans Wennborgf1f36512015-10-07 00:20:07 +00001006 assert(ICI.isEquality() && "Cannot fold non-equality comparison.");
1007
1008 // It would be tempting to fold away comparisons between allocas and any
1009 // pointer not based on that alloca (e.g. an argument). However, even
1010 // though such pointers cannot alias, they can still compare equal.
1011 //
1012 // But LLVM doesn't specify where allocas get their memory, so if the alloca
1013 // doesn't escape we can argue that it's impossible to guess its value, and we
1014 // can therefore act as if any such guesses are wrong.
1015 //
1016 // The code below checks that the alloca doesn't escape, and that it's only
1017 // used in a comparison once (the current instruction). The
1018 // single-comparison-use condition ensures that we're trivially folding all
1019 // comparisons against the alloca consistently, and avoids the risk of
1020 // erroneously folding a comparison of the pointer with itself.
1021
1022 unsigned MaxIter = 32; // Break cycles and bound to constant-time.
1023
Pete Cooper980a9352016-08-12 17:13:28 +00001024 SmallVector<const Use *, 32> Worklist;
1025 for (const Use &U : Alloca->uses()) {
Hans Wennborgf1f36512015-10-07 00:20:07 +00001026 if (Worklist.size() >= MaxIter)
1027 return nullptr;
1028 Worklist.push_back(&U);
1029 }
1030
1031 unsigned NumCmps = 0;
1032 while (!Worklist.empty()) {
1033 assert(Worklist.size() <= MaxIter);
Pete Cooper980a9352016-08-12 17:13:28 +00001034 const Use *U = Worklist.pop_back_val();
1035 const Value *V = U->getUser();
Hans Wennborgf1f36512015-10-07 00:20:07 +00001036 --MaxIter;
1037
1038 if (isa<BitCastInst>(V) || isa<GetElementPtrInst>(V) || isa<PHINode>(V) ||
1039 isa<SelectInst>(V)) {
1040 // Track the uses.
1041 } else if (isa<LoadInst>(V)) {
1042 // Loading from the pointer doesn't escape it.
1043 continue;
Pete Cooper980a9352016-08-12 17:13:28 +00001044 } else if (const auto *SI = dyn_cast<StoreInst>(V)) {
Hans Wennborgf1f36512015-10-07 00:20:07 +00001045 // Storing *to* the pointer is fine, but storing the pointer escapes it.
1046 if (SI->getValueOperand() == U->get())
1047 return nullptr;
1048 continue;
1049 } else if (isa<ICmpInst>(V)) {
1050 if (NumCmps++)
1051 return nullptr; // Found more than one cmp.
1052 continue;
Pete Cooper980a9352016-08-12 17:13:28 +00001053 } else if (const auto *Intrin = dyn_cast<IntrinsicInst>(V)) {
Hans Wennborgf1f36512015-10-07 00:20:07 +00001054 switch (Intrin->getIntrinsicID()) {
1055 // These intrinsics don't escape or compare the pointer. Memset is safe
1056 // because we don't allow ptrtoint. Memcpy and memmove are safe because
1057 // we don't allow stores, so src cannot point to V.
1058 case Intrinsic::lifetime_start: case Intrinsic::lifetime_end:
Hans Wennborgf1f36512015-10-07 00:20:07 +00001059 case Intrinsic::memcpy: case Intrinsic::memmove: case Intrinsic::memset:
1060 continue;
1061 default:
1062 return nullptr;
1063 }
1064 } else {
1065 return nullptr;
1066 }
Pete Cooper980a9352016-08-12 17:13:28 +00001067 for (const Use &U : V->uses()) {
Hans Wennborgf1f36512015-10-07 00:20:07 +00001068 if (Worklist.size() >= MaxIter)
1069 return nullptr;
1070 Worklist.push_back(&U);
1071 }
1072 }
1073
1074 Type *CmpTy = CmpInst::makeCmpResultType(Other->getType());
Sanjay Patel4b198802016-02-01 22:23:39 +00001075 return replaceInstUsesWith(
Hans Wennborgf1f36512015-10-07 00:20:07 +00001076 ICI,
1077 ConstantInt::get(CmpTy, !CmpInst::isTrueWhenEqual(ICI.getPredicate())));
1078}
1079
Craig Topperbee74792018-08-20 23:04:25 +00001080/// Fold "icmp pred (X+C), X".
1081Instruction *InstCombiner::foldICmpAddOpConst(Value *X, const APInt &C,
Sanjay Patel43395062016-07-21 18:07:40 +00001082 ICmpInst::Predicate Pred) {
Chris Lattner2188e402010-01-04 07:37:31 +00001083 // From this point on, we know that (X+C <= X) --> (X+C < X) because C != 0,
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00001084 // so the values can never be equal. Similarly for all other "or equals"
Chris Lattner2188e402010-01-04 07:37:31 +00001085 // operators.
Craig Topperbee74792018-08-20 23:04:25 +00001086 assert(!!C && "C should not be zero!");
Jim Grosbach129c52a2011-09-30 18:09:53 +00001087
Chris Lattner8c92b572010-01-08 17:48:19 +00001088 // (X+1) <u X --> X >u (MAXUINT-1) --> X == 255
Chris Lattner2188e402010-01-04 07:37:31 +00001089 // (X+2) <u X --> X >u (MAXUINT-2) --> X > 253
1090 // (X+MAXUINT) <u X --> X >u (MAXUINT-MAXUINT) --> X != 0
1091 if (Pred == ICmpInst::ICMP_ULT || Pred == ICmpInst::ICMP_ULE) {
Craig Topperbee74792018-08-20 23:04:25 +00001092 Constant *R = ConstantInt::get(X->getType(),
1093 APInt::getMaxValue(C.getBitWidth()) - C);
Chris Lattner2188e402010-01-04 07:37:31 +00001094 return new ICmpInst(ICmpInst::ICMP_UGT, X, R);
1095 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00001096
Chris Lattner2188e402010-01-04 07:37:31 +00001097 // (X+1) >u X --> X <u (0-1) --> X != 255
1098 // (X+2) >u X --> X <u (0-2) --> X <u 254
1099 // (X+MAXUINT) >u X --> X <u (0-MAXUINT) --> X <u 1 --> X == 0
Duncan Sandse5220012011-02-17 07:46:37 +00001100 if (Pred == ICmpInst::ICMP_UGT || Pred == ICmpInst::ICMP_UGE)
Craig Topperbee74792018-08-20 23:04:25 +00001101 return new ICmpInst(ICmpInst::ICMP_ULT, X,
1102 ConstantInt::get(X->getType(), -C));
Jim Grosbach129c52a2011-09-30 18:09:53 +00001103
Craig Topperbee74792018-08-20 23:04:25 +00001104 APInt SMax = APInt::getSignedMaxValue(C.getBitWidth());
Chris Lattner2188e402010-01-04 07:37:31 +00001105
1106 // (X+ 1) <s X --> X >s (MAXSINT-1) --> X == 127
1107 // (X+ 2) <s X --> X >s (MAXSINT-2) --> X >s 125
1108 // (X+MAXSINT) <s X --> X >s (MAXSINT-MAXSINT) --> X >s 0
1109 // (X+MINSINT) <s X --> X >s (MAXSINT-MINSINT) --> X >s -1
1110 // (X+ -2) <s X --> X >s (MAXSINT- -2) --> X >s 126
1111 // (X+ -1) <s X --> X >s (MAXSINT- -1) --> X != 127
Duncan Sandse5220012011-02-17 07:46:37 +00001112 if (Pred == ICmpInst::ICMP_SLT || Pred == ICmpInst::ICMP_SLE)
Craig Topperbee74792018-08-20 23:04:25 +00001113 return new ICmpInst(ICmpInst::ICMP_SGT, X,
1114 ConstantInt::get(X->getType(), SMax - C));
Jim Grosbach129c52a2011-09-30 18:09:53 +00001115
Chris Lattner2188e402010-01-04 07:37:31 +00001116 // (X+ 1) >s X --> X <s (MAXSINT-(1-1)) --> X != 127
1117 // (X+ 2) >s X --> X <s (MAXSINT-(2-1)) --> X <s 126
1118 // (X+MAXSINT) >s X --> X <s (MAXSINT-(MAXSINT-1)) --> X <s 1
1119 // (X+MINSINT) >s X --> X <s (MAXSINT-(MINSINT-1)) --> X <s -2
1120 // (X+ -2) >s X --> X <s (MAXSINT-(-2-1)) --> X <s -126
1121 // (X+ -1) >s X --> X <s (MAXSINT-(-1-1)) --> X == -128
Jim Grosbach129c52a2011-09-30 18:09:53 +00001122
Chris Lattner2188e402010-01-04 07:37:31 +00001123 assert(Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_SGE);
Craig Topperbee74792018-08-20 23:04:25 +00001124 return new ICmpInst(ICmpInst::ICMP_SLT, X,
1125 ConstantInt::get(X->getType(), SMax - (C - 1)));
Chris Lattner2188e402010-01-04 07:37:31 +00001126}
1127
Sanjay Patel8da42cc2016-09-15 22:26:31 +00001128/// Handle "(icmp eq/ne (ashr/lshr AP2, A), AP1)" ->
1129/// (icmp eq/ne A, Log2(AP2/AP1)) ->
1130/// (icmp eq/ne A, Log2(AP2) - Log2(AP1)).
1131Instruction *InstCombiner::foldICmpShrConstConst(ICmpInst &I, Value *A,
1132 const APInt &AP1,
1133 const APInt &AP2) {
Suyog Sarda3a8c2c12014-07-22 19:19:36 +00001134 assert(I.isEquality() && "Cannot fold icmp gt/lt");
1135
Suyog Sarda3a8c2c12014-07-22 19:19:36 +00001136 auto getICmp = [&I](CmpInst::Predicate Pred, Value *LHS, Value *RHS) {
1137 if (I.getPredicate() == I.ICMP_NE)
1138 Pred = CmpInst::getInversePredicate(Pred);
1139 return new ICmpInst(Pred, LHS, RHS);
1140 };
1141
David Majnemer2abb8182014-10-25 07:13:13 +00001142 // Don't bother doing any work for cases which InstSimplify handles.
Craig Topper73ba1c82017-06-07 07:40:37 +00001143 if (AP2.isNullValue())
David Majnemer2abb8182014-10-25 07:13:13 +00001144 return nullptr;
Sanjay Patel8da42cc2016-09-15 22:26:31 +00001145
1146 bool IsAShr = isa<AShrOperator>(I.getOperand(0));
David Majnemer2abb8182014-10-25 07:13:13 +00001147 if (IsAShr) {
1148 if (AP2.isAllOnesValue())
1149 return nullptr;
1150 if (AP2.isNegative() != AP1.isNegative())
1151 return nullptr;
1152 if (AP2.sgt(AP1))
1153 return nullptr;
1154 }
Suyog Sarda3a8c2c12014-07-22 19:19:36 +00001155
David Majnemerd2056022014-10-21 19:51:55 +00001156 if (!AP1)
Suyog Sarda3a8c2c12014-07-22 19:19:36 +00001157 // 'A' must be large enough to shift out the highest set bit.
1158 return getICmp(I.ICMP_UGT, A,
1159 ConstantInt::get(A->getType(), AP2.logBase2()));
Suyog Sarda3a8c2c12014-07-22 19:19:36 +00001160
David Majnemerd2056022014-10-21 19:51:55 +00001161 if (AP1 == AP2)
1162 return getICmp(I.ICMP_EQ, A, ConstantInt::getNullValue(A->getType()));
Suyog Sarda3a8c2c12014-07-22 19:19:36 +00001163
Andrea Di Biagio5b92b492014-09-17 11:32:31 +00001164 int Shift;
David Majnemerd2056022014-10-21 19:51:55 +00001165 if (IsAShr && AP1.isNegative())
David Majnemere5977eb2015-09-19 00:48:26 +00001166 Shift = AP1.countLeadingOnes() - AP2.countLeadingOnes();
Andrea Di Biagio5b92b492014-09-17 11:32:31 +00001167 else
David Majnemere5977eb2015-09-19 00:48:26 +00001168 Shift = AP1.countLeadingZeros() - AP2.countLeadingZeros();
Suyog Sarda3a8c2c12014-07-22 19:19:36 +00001169
David Majnemerd2056022014-10-21 19:51:55 +00001170 if (Shift > 0) {
David Majnemere5977eb2015-09-19 00:48:26 +00001171 if (IsAShr && AP1 == AP2.ashr(Shift)) {
1172 // There are multiple solutions if we are comparing against -1 and the LHS
David Majnemer47ce0b82015-09-19 00:48:31 +00001173 // of the ashr is not a power of two.
David Majnemere5977eb2015-09-19 00:48:26 +00001174 if (AP1.isAllOnesValue() && !AP2.isPowerOf2())
1175 return getICmp(I.ICMP_UGE, A, ConstantInt::get(A->getType(), Shift));
David Majnemerd2056022014-10-21 19:51:55 +00001176 return getICmp(I.ICMP_EQ, A, ConstantInt::get(A->getType(), Shift));
David Majnemere5977eb2015-09-19 00:48:26 +00001177 } else if (AP1 == AP2.lshr(Shift)) {
1178 return getICmp(I.ICMP_EQ, A, ConstantInt::get(A->getType(), Shift));
1179 }
David Majnemerd2056022014-10-21 19:51:55 +00001180 }
Sanjay Patel524fcdf2016-09-15 19:04:55 +00001181
Suyog Sarda3a8c2c12014-07-22 19:19:36 +00001182 // Shifting const2 will never be equal to const1.
Sanjay Patel524fcdf2016-09-15 19:04:55 +00001183 // FIXME: This should always be handled by InstSimplify?
1184 auto *TorF = ConstantInt::get(I.getType(), I.getPredicate() == I.ICMP_NE);
1185 return replaceInstUsesWith(I, TorF);
Suyog Sarda3a8c2c12014-07-22 19:19:36 +00001186}
Chris Lattner2188e402010-01-04 07:37:31 +00001187
Sanjay Patel8da42cc2016-09-15 22:26:31 +00001188/// Handle "(icmp eq/ne (shl AP2, A), AP1)" ->
1189/// (icmp eq/ne A, TrailingZeros(AP1) - TrailingZeros(AP2)).
1190Instruction *InstCombiner::foldICmpShlConstConst(ICmpInst &I, Value *A,
1191 const APInt &AP1,
1192 const APInt &AP2) {
David Majnemer59939ac2014-10-19 08:23:08 +00001193 assert(I.isEquality() && "Cannot fold icmp gt/lt");
1194
David Majnemer59939ac2014-10-19 08:23:08 +00001195 auto getICmp = [&I](CmpInst::Predicate Pred, Value *LHS, Value *RHS) {
1196 if (I.getPredicate() == I.ICMP_NE)
1197 Pred = CmpInst::getInversePredicate(Pred);
1198 return new ICmpInst(Pred, LHS, RHS);
1199 };
1200
David Majnemer2abb8182014-10-25 07:13:13 +00001201 // Don't bother doing any work for cases which InstSimplify handles.
Craig Topper73ba1c82017-06-07 07:40:37 +00001202 if (AP2.isNullValue())
David Majnemer2abb8182014-10-25 07:13:13 +00001203 return nullptr;
David Majnemer59939ac2014-10-19 08:23:08 +00001204
1205 unsigned AP2TrailingZeros = AP2.countTrailingZeros();
1206
1207 if (!AP1 && AP2TrailingZeros != 0)
Sanjay Patelaf91d1f2016-09-15 21:35:30 +00001208 return getICmp(
1209 I.ICMP_UGE, A,
1210 ConstantInt::get(A->getType(), AP2.getBitWidth() - AP2TrailingZeros));
David Majnemer59939ac2014-10-19 08:23:08 +00001211
1212 if (AP1 == AP2)
1213 return getICmp(I.ICMP_EQ, A, ConstantInt::getNullValue(A->getType()));
1214
1215 // Get the distance between the lowest bits that are set.
1216 int Shift = AP1.countTrailingZeros() - AP2TrailingZeros;
1217
1218 if (Shift > 0 && AP2.shl(Shift) == AP1)
1219 return getICmp(I.ICMP_EQ, A, ConstantInt::get(A->getType(), Shift));
1220
1221 // Shifting const2 will never be equal to const1.
Sanjay Patel524fcdf2016-09-15 19:04:55 +00001222 // FIXME: This should always be handled by InstSimplify?
1223 auto *TorF = ConstantInt::get(I.getType(), I.getPredicate() == I.ICMP_NE);
1224 return replaceInstUsesWith(I, TorF);
David Majnemer59939ac2014-10-19 08:23:08 +00001225}
1226
Sanjay Patel06b127a2016-09-15 14:37:50 +00001227/// The caller has matched a pattern of the form:
1228/// I = icmp ugt (add (add A, B), CI2), CI1
1229/// If this is of the form:
1230/// sum = a + b
1231/// if (sum+128 >u 255)
1232/// Then replace it with llvm.sadd.with.overflow.i8.
1233///
Sanjay Pateld93c4c02016-09-15 18:22:25 +00001234static Instruction *processUGT_ADDCST_ADD(ICmpInst &I, Value *A, Value *B,
Sanjay Patel06b127a2016-09-15 14:37:50 +00001235 ConstantInt *CI2, ConstantInt *CI1,
1236 InstCombiner &IC) {
1237 // The transformation we're trying to do here is to transform this into an
1238 // llvm.sadd.with.overflow. To do this, we have to replace the original add
1239 // with a narrower add, and discard the add-with-constant that is part of the
1240 // range check (if we can't eliminate it, this isn't profitable).
1241
1242 // In order to eliminate the add-with-constant, the compare can be its only
1243 // use.
1244 Instruction *AddWithCst = cast<Instruction>(I.getOperand(0));
1245 if (!AddWithCst->hasOneUse())
1246 return nullptr;
1247
1248 // If CI2 is 2^7, 2^15, 2^31, then it might be an sadd.with.overflow.
1249 if (!CI2->getValue().isPowerOf2())
1250 return nullptr;
1251 unsigned NewWidth = CI2->getValue().countTrailingZeros();
1252 if (NewWidth != 7 && NewWidth != 15 && NewWidth != 31)
1253 return nullptr;
1254
1255 // The width of the new add formed is 1 more than the bias.
1256 ++NewWidth;
1257
1258 // Check to see that CI1 is an all-ones value with NewWidth bits.
1259 if (CI1->getBitWidth() == NewWidth ||
1260 CI1->getValue() != APInt::getLowBitsSet(CI1->getBitWidth(), NewWidth))
1261 return nullptr;
1262
1263 // This is only really a signed overflow check if the inputs have been
1264 // sign-extended; check for that condition. For example, if CI2 is 2^31 and
1265 // the operands of the add are 64 bits wide, we need at least 33 sign bits.
1266 unsigned NeededSignBits = CI1->getBitWidth() - NewWidth + 1;
1267 if (IC.ComputeNumSignBits(A, 0, &I) < NeededSignBits ||
1268 IC.ComputeNumSignBits(B, 0, &I) < NeededSignBits)
1269 return nullptr;
1270
1271 // In order to replace the original add with a narrower
1272 // llvm.sadd.with.overflow, the only uses allowed are the add-with-constant
1273 // and truncates that discard the high bits of the add. Verify that this is
1274 // the case.
1275 Instruction *OrigAdd = cast<Instruction>(AddWithCst->getOperand(0));
1276 for (User *U : OrigAdd->users()) {
1277 if (U == AddWithCst)
1278 continue;
1279
1280 // Only accept truncates for now. We would really like a nice recursive
1281 // predicate like SimplifyDemandedBits, but which goes downwards the use-def
1282 // chain to see which bits of a value are actually demanded. If the
1283 // original add had another add which was then immediately truncated, we
1284 // could still do the transformation.
1285 TruncInst *TI = dyn_cast<TruncInst>(U);
1286 if (!TI || TI->getType()->getPrimitiveSizeInBits() > NewWidth)
1287 return nullptr;
1288 }
1289
1290 // If the pattern matches, truncate the inputs to the narrower type and
1291 // use the sadd_with_overflow intrinsic to efficiently compute both the
1292 // result and the overflow bit.
1293 Type *NewType = IntegerType::get(OrigAdd->getContext(), NewWidth);
1294 Value *F = Intrinsic::getDeclaration(I.getModule(),
1295 Intrinsic::sadd_with_overflow, NewType);
1296
Craig Topperbb4069e2017-07-07 23:16:26 +00001297 InstCombiner::BuilderTy &Builder = IC.Builder;
Sanjay Patel06b127a2016-09-15 14:37:50 +00001298
1299 // Put the new code above the original add, in case there are any uses of the
1300 // add between the add and the compare.
Craig Topperbb4069e2017-07-07 23:16:26 +00001301 Builder.SetInsertPoint(OrigAdd);
Sanjay Patel06b127a2016-09-15 14:37:50 +00001302
Craig Topperbb4069e2017-07-07 23:16:26 +00001303 Value *TruncA = Builder.CreateTrunc(A, NewType, A->getName() + ".trunc");
1304 Value *TruncB = Builder.CreateTrunc(B, NewType, B->getName() + ".trunc");
1305 CallInst *Call = Builder.CreateCall(F, {TruncA, TruncB}, "sadd");
1306 Value *Add = Builder.CreateExtractValue(Call, 0, "sadd.result");
1307 Value *ZExt = Builder.CreateZExt(Add, OrigAdd->getType());
Sanjay Patel06b127a2016-09-15 14:37:50 +00001308
1309 // The inner add was the result of the narrow add, zero extended to the
1310 // wider type. Replace it with the result computed by the intrinsic.
1311 IC.replaceInstUsesWith(*OrigAdd, ZExt);
1312
1313 // The original icmp gets replaced with the overflow value.
1314 return ExtractValueInst::Create(Call, 1, "sadd.overflow");
1315}
1316
Nikolai Bozhenov0e7ebbc2017-10-16 09:19:21 +00001317// Handle (icmp sgt smin(PosA, B) 0) -> (icmp sgt B 0)
1318Instruction *InstCombiner::foldICmpWithZero(ICmpInst &Cmp) {
1319 CmpInst::Predicate Pred = Cmp.getPredicate();
1320 Value *X = Cmp.getOperand(0);
1321
1322 if (match(Cmp.getOperand(1), m_Zero()) && Pred == ICmpInst::ICMP_SGT) {
1323 Value *A, *B;
1324 SelectPatternResult SPR = matchSelectPattern(X, A, B);
1325 if (SPR.Flavor == SPF_SMIN) {
1326 if (isKnownPositive(A, DL, 0, &AC, &Cmp, &DT))
1327 return new ICmpInst(Pred, B, Cmp.getOperand(1));
1328 if (isKnownPositive(B, DL, 0, &AC, &Cmp, &DT))
1329 return new ICmpInst(Pred, A, Cmp.getOperand(1));
1330 }
1331 }
1332 return nullptr;
1333}
1334
Sanjay Patela40bf9ff2018-12-04 15:35:17 +00001335/// Fold icmp Pred X, C.
Sanjay Pateld23b5ed2018-12-04 17:44:24 +00001336/// TODO: This code structure does not make sense. The saturating add fold
Sanjay Patela40bf9ff2018-12-04 15:35:17 +00001337/// should be moved to some other helper and extended as noted below (it is also
Sanjay Pateld23b5ed2018-12-04 17:44:24 +00001338/// possible that code has been made unnecessary - do we canonicalize IR to
1339/// overflow/saturating intrinsics or not?).
Sanjay Patel97459832016-09-15 15:11:12 +00001340Instruction *InstCombiner::foldICmpWithConstant(ICmpInst &Cmp) {
Sanjay Patel97459832016-09-15 15:11:12 +00001341 // Match the following pattern, which is a common idiom when writing
1342 // overflow-safe integer arithmetic functions. The source performs an addition
1343 // in wider type and explicitly checks for overflow using comparisons against
1344 // INT_MIN and INT_MAX. Simplify by using the sadd_with_overflow intrinsic.
1345 //
1346 // TODO: This could probably be generalized to handle other overflow-safe
1347 // operations if we worked out the formulas to compute the appropriate magic
1348 // constants.
1349 //
1350 // sum = a + b
1351 // if (sum+128 >u 255) ... -> llvm.sadd.with.overflow.i8
Sanjay Patela40bf9ff2018-12-04 15:35:17 +00001352 CmpInst::Predicate Pred = Cmp.getPredicate();
1353 Value *Op0 = Cmp.getOperand(0), *Op1 = Cmp.getOperand(1);
1354 Value *A, *B;
1355 ConstantInt *CI, *CI2; // I = icmp ugt (add (add A, B), CI2), CI
1356 if (Pred == ICmpInst::ICMP_UGT && match(Op1, m_ConstantInt(CI)) &&
1357 match(Op0, m_Add(m_Add(m_Value(A), m_Value(B)), m_ConstantInt(CI2))))
1358 if (Instruction *Res = processUGT_ADDCST_ADD(Cmp, A, B, CI2, CI, *this))
1359 return Res;
Sanjay Patel06b127a2016-09-15 14:37:50 +00001360
Sanjay Patela40bf9ff2018-12-04 15:35:17 +00001361 return nullptr;
1362}
1363
1364/// Canonicalize icmp instructions based on dominating conditions.
1365Instruction *InstCombiner::foldICmpWithDominatingICmp(ICmpInst &Cmp) {
Sanjay Pateld23b5ed2018-12-04 17:44:24 +00001366 // This is a cheap/incomplete check for dominance - just match a single
1367 // predecessor with a conditional branch.
1368 BasicBlock *CmpBB = Cmp.getParent();
1369 BasicBlock *DomBB = CmpBB->getSinglePredecessor();
1370 if (!DomBB)
Sanjay Patel40c53ea2016-09-15 16:23:20 +00001371 return nullptr;
Sanjay Patel06b127a2016-09-15 14:37:50 +00001372
Sanjay Pateld23b5ed2018-12-04 17:44:24 +00001373 Value *DomCond;
Sanjay Patel97459832016-09-15 15:11:12 +00001374 BasicBlock *TrueBB, *FalseBB;
Sanjay Pateld23b5ed2018-12-04 17:44:24 +00001375 if (!match(DomBB->getTerminator(), m_Br(m_Value(DomCond), TrueBB, FalseBB)))
1376 return nullptr;
1377
1378 assert((TrueBB == CmpBB || FalseBB == CmpBB) &&
1379 "Predecessor block does not point to successor?");
1380
1381 // The branch should get simplified. Don't bother simplifying this condition.
1382 if (TrueBB == FalseBB)
1383 return nullptr;
1384
Sanjay Patelbaffae92018-12-05 15:04:00 +00001385 // Try to simplify this compare to T/F based on the dominating condition.
1386 Optional<bool> Imp = isImpliedCondition(DomCond, &Cmp, DL, TrueBB == CmpBB);
1387 if (Imp)
1388 return replaceInstUsesWith(Cmp, ConstantInt::get(Cmp.getType(), *Imp));
1389
Sanjay Pateld23b5ed2018-12-04 17:44:24 +00001390 CmpInst::Predicate Pred = Cmp.getPredicate();
1391 Value *X = Cmp.getOperand(0), *Y = Cmp.getOperand(1);
1392 ICmpInst::Predicate DomPred;
1393 const APInt *C, *DomC;
1394 if (match(DomCond, m_ICmp(DomPred, m_Specific(X), m_APInt(DomC))) &&
1395 match(Y, m_APInt(C))) {
1396 // We have 2 compares of a variable with constants. Calculate the constant
1397 // ranges of those compares to see if we can transform the 2nd compare:
1398 // DomBB:
1399 // DomCond = icmp DomPred X, DomC
1400 // br DomCond, CmpBB, FalseBB
1401 // CmpBB:
1402 // Cmp = icmp Pred X, C
1403 ConstantRange CR = ConstantRange::makeAllowedICmpRegion(Pred, *C);
Sanjay Patel97459832016-09-15 15:11:12 +00001404 ConstantRange DominatingCR =
Sanjay Pateld23b5ed2018-12-04 17:44:24 +00001405 (CmpBB == TrueBB) ? ConstantRange::makeExactICmpRegion(DomPred, *DomC)
1406 : ConstantRange::makeExactICmpRegion(
1407 CmpInst::getInversePredicate(DomPred), *DomC);
Sanjay Patel97459832016-09-15 15:11:12 +00001408 ConstantRange Intersection = DominatingCR.intersectWith(CR);
1409 ConstantRange Difference = DominatingCR.difference(CR);
1410 if (Intersection.isEmptySet())
Craig Topperbb4069e2017-07-07 23:16:26 +00001411 return replaceInstUsesWith(Cmp, Builder.getFalse());
Sanjay Patel97459832016-09-15 15:11:12 +00001412 if (Difference.isEmptySet())
Craig Topperbb4069e2017-07-07 23:16:26 +00001413 return replaceInstUsesWith(Cmp, Builder.getTrue());
Sanjay Patel06b127a2016-09-15 14:37:50 +00001414
Sanjay Patel97459832016-09-15 15:11:12 +00001415 // Canonicalizing a sign bit comparison that gets used in a branch,
1416 // pessimizes codegen by generating branch on zero instruction instead
1417 // of a test and branch. So we avoid canonicalizing in such situations
1418 // because test and branch instruction has better branch displacement
1419 // than compare and branch instruction.
Sanjay Pateld23b5ed2018-12-04 17:44:24 +00001420 bool UnusedBit;
1421 bool IsSignBit = isSignBitCheck(Pred, *C, UnusedBit);
Eric Christophera95aac32017-06-30 01:57:48 +00001422 if (Cmp.isEquality() || (IsSignBit && hasBranchUse(Cmp)))
1423 return nullptr;
1424
Sanjay Pateld23b5ed2018-12-04 17:44:24 +00001425 if (const APInt *EqC = Intersection.getSingleElement())
1426 return new ICmpInst(ICmpInst::ICMP_EQ, X, Builder.getInt(*EqC));
1427 if (const APInt *NeC = Difference.getSingleElement())
1428 return new ICmpInst(ICmpInst::ICMP_NE, X, Builder.getInt(*NeC));
Sanjay Patel06b127a2016-09-15 14:37:50 +00001429 }
1430
1431 return nullptr;
1432}
1433
Sanjay Patel5f4ce4e2016-08-18 20:25:16 +00001434/// Fold icmp (trunc X, Y), C.
1435Instruction *InstCombiner::foldICmpTruncConstant(ICmpInst &Cmp,
Craig Topper524c44f2017-08-23 05:46:07 +00001436 TruncInst *Trunc,
Craig Topper8ed1aa92017-10-03 05:31:07 +00001437 const APInt &C) {
Sanjay Patel5f4ce4e2016-08-18 20:25:16 +00001438 ICmpInst::Predicate Pred = Cmp.getPredicate();
1439 Value *X = Trunc->getOperand(0);
Craig Topper8ed1aa92017-10-03 05:31:07 +00001440 if (C.isOneValue() && C.getBitWidth() > 1) {
Sanjay Patela3f4f082016-08-16 17:54:36 +00001441 // icmp slt trunc(signum(V)) 1 --> icmp slt V, 1
1442 Value *V = nullptr;
Sanjay Patel5f4ce4e2016-08-18 20:25:16 +00001443 if (Pred == ICmpInst::ICMP_SLT && match(X, m_Signum(m_Value(V))))
Sanjay Patela3f4f082016-08-16 17:54:36 +00001444 return new ICmpInst(ICmpInst::ICMP_SLT, V,
1445 ConstantInt::get(V->getType(), 1));
1446 }
Sanjay Patel5f4ce4e2016-08-18 20:25:16 +00001447
1448 if (Cmp.isEquality() && Trunc->hasOneUse()) {
Sanjay Patela3f4f082016-08-16 17:54:36 +00001449 // Simplify icmp eq (trunc x to i8), 42 -> icmp eq x, 42|highbits if all
1450 // of the high bits truncated out of x are known.
Sanjay Patel40e8ca42016-08-18 20:28:54 +00001451 unsigned DstBits = Trunc->getType()->getScalarSizeInBits(),
1452 SrcBits = X->getType()->getScalarSizeInBits();
Craig Topper8205a1a2017-05-24 16:53:07 +00001453 KnownBits Known = computeKnownBits(X, 0, &Cmp);
Sanjay Patela3f4f082016-08-16 17:54:36 +00001454
1455 // If all the high bits are known, we can do this xform.
Craig Topperb45eabc2017-04-26 16:39:58 +00001456 if ((Known.Zero | Known.One).countLeadingOnes() >= SrcBits - DstBits) {
Sanjay Patela3f4f082016-08-16 17:54:36 +00001457 // Pull in the high bits from known-ones set.
Craig Topper8ed1aa92017-10-03 05:31:07 +00001458 APInt NewRHS = C.zext(SrcBits);
Craig Topperb45eabc2017-04-26 16:39:58 +00001459 NewRHS |= Known.One & APInt::getHighBitsSet(SrcBits, SrcBits - DstBits);
Sanjay Patel40e8ca42016-08-18 20:28:54 +00001460 return new ICmpInst(Pred, X, ConstantInt::get(X->getType(), NewRHS));
Sanjay Patela3f4f082016-08-16 17:54:36 +00001461 }
1462 }
Sanjay Patel5f4ce4e2016-08-18 20:25:16 +00001463
Sanjay Patela3f4f082016-08-16 17:54:36 +00001464 return nullptr;
1465}
1466
Sanjay Patel6d5f4482016-08-17 19:23:42 +00001467/// Fold icmp (xor X, Y), C.
Sanjay Patelc9196c42016-08-22 21:24:29 +00001468Instruction *InstCombiner::foldICmpXorConstant(ICmpInst &Cmp,
1469 BinaryOperator *Xor,
Craig Topper8ed1aa92017-10-03 05:31:07 +00001470 const APInt &C) {
Sanjay Patel4c5e60d2016-08-18 14:10:48 +00001471 Value *X = Xor->getOperand(0);
1472 Value *Y = Xor->getOperand(1);
Sanjay Pateldaffec912016-08-17 19:45:18 +00001473 const APInt *XorC;
Sanjay Patel4c5e60d2016-08-18 14:10:48 +00001474 if (!match(Y, m_APInt(XorC)))
Sanjay Patel6d5f4482016-08-17 19:23:42 +00001475 return nullptr;
Sanjay Patela3f4f082016-08-16 17:54:36 +00001476
Sanjay Patel6d5f4482016-08-17 19:23:42 +00001477 // If this is a comparison that tests the signbit (X < 0) or (x > -1),
1478 // fold the xor.
1479 ICmpInst::Predicate Pred = Cmp.getPredicate();
Craig Topperdf63b962017-10-03 19:14:23 +00001480 bool TrueIfSigned = false;
1481 if (isSignBitCheck(Cmp.getPredicate(), C, TrueIfSigned)) {
Sanjay Patela3f4f082016-08-16 17:54:36 +00001482
Sanjay Patel6d5f4482016-08-17 19:23:42 +00001483 // If the sign bit of the XorCst is not set, there is no change to
1484 // the operation, just stop using the Xor.
Sanjay Pateldaffec912016-08-17 19:45:18 +00001485 if (!XorC->isNegative()) {
1486 Cmp.setOperand(0, X);
Sanjay Patel6d5f4482016-08-17 19:23:42 +00001487 Worklist.Add(Xor);
1488 return &Cmp;
Sanjay Patela3f4f082016-08-16 17:54:36 +00001489 }
1490
Craig Topperdf63b962017-10-03 19:14:23 +00001491 // Emit the opposite comparison.
1492 if (TrueIfSigned)
1493 return new ICmpInst(ICmpInst::ICMP_SGT, X,
1494 ConstantInt::getAllOnesValue(X->getType()));
Sanjay Patel6d5f4482016-08-17 19:23:42 +00001495 else
Craig Topperdf63b962017-10-03 19:14:23 +00001496 return new ICmpInst(ICmpInst::ICMP_SLT, X,
1497 ConstantInt::getNullValue(X->getType()));
Sanjay Patela3f4f082016-08-16 17:54:36 +00001498 }
Sanjay Patel6d5f4482016-08-17 19:23:42 +00001499
1500 if (Xor->hasOneUse()) {
Craig Topperbcfd2d12017-04-20 16:56:25 +00001501 // (icmp u/s (xor X SignMask), C) -> (icmp s/u X, (xor C SignMask))
1502 if (!Cmp.isEquality() && XorC->isSignMask()) {
Sanjay Pateldaffec912016-08-17 19:45:18 +00001503 Pred = Cmp.isSigned() ? Cmp.getUnsignedPredicate()
1504 : Cmp.getSignedPredicate();
Craig Topper8ed1aa92017-10-03 05:31:07 +00001505 return new ICmpInst(Pred, X, ConstantInt::get(X->getType(), C ^ *XorC));
Sanjay Patel6d5f4482016-08-17 19:23:42 +00001506 }
1507
Craig Topperbcfd2d12017-04-20 16:56:25 +00001508 // (icmp u/s (xor X ~SignMask), C) -> (icmp s/u X, (xor C ~SignMask))
Sanjay Pateldaffec912016-08-17 19:45:18 +00001509 if (!Cmp.isEquality() && XorC->isMaxSignedValue()) {
1510 Pred = Cmp.isSigned() ? Cmp.getUnsignedPredicate()
1511 : Cmp.getSignedPredicate();
Sanjay Patel6d5f4482016-08-17 19:23:42 +00001512 Pred = Cmp.getSwappedPredicate(Pred);
Craig Topper8ed1aa92017-10-03 05:31:07 +00001513 return new ICmpInst(Pred, X, ConstantInt::get(X->getType(), C ^ *XorC));
Sanjay Patel6d5f4482016-08-17 19:23:42 +00001514 }
1515 }
1516
Sanjay Patel26725bd2018-09-11 22:00:15 +00001517 // Mask constant magic can eliminate an 'xor' with unsigned compares.
1518 if (Pred == ICmpInst::ICMP_UGT) {
1519 // (xor X, ~C) >u C --> X <u ~C (when C+1 is a power of 2)
1520 if (*XorC == ~C && (C + 1).isPowerOf2())
1521 return new ICmpInst(ICmpInst::ICMP_ULT, X, Y);
1522 // (xor X, C) >u C --> X >u C (when C+1 is a power of 2)
1523 if (*XorC == C && (C + 1).isPowerOf2())
1524 return new ICmpInst(ICmpInst::ICMP_UGT, X, Y);
1525 }
1526 if (Pred == ICmpInst::ICMP_ULT) {
1527 // (xor X, -C) <u C --> X >u ~C (when C is a power of 2)
1528 if (*XorC == -C && C.isPowerOf2())
1529 return new ICmpInst(ICmpInst::ICMP_UGT, X,
1530 ConstantInt::get(X->getType(), ~C));
1531 // (xor X, C) <u C --> X >u ~C (when -C is a power of 2)
1532 if (*XorC == C && (-C).isPowerOf2())
1533 return new ICmpInst(ICmpInst::ICMP_UGT, X,
1534 ConstantInt::get(X->getType(), ~C));
1535 }
Sanjay Patela3f4f082016-08-16 17:54:36 +00001536 return nullptr;
1537}
1538
Sanjay Patel14e0e182016-08-26 18:28:46 +00001539/// Fold icmp (and (sh X, Y), C2), C1.
1540Instruction *InstCombiner::foldICmpAndShift(ICmpInst &Cmp, BinaryOperator *And,
Craig Topper8ed1aa92017-10-03 05:31:07 +00001541 const APInt &C1, const APInt &C2) {
Sanjay Patel9b40f982016-09-07 22:33:03 +00001542 BinaryOperator *Shift = dyn_cast<BinaryOperator>(And->getOperand(0));
1543 if (!Shift || !Shift->isShift())
Sanjay Patelda9c5622016-08-26 17:15:22 +00001544 return nullptr;
Sanjay Patela3f4f082016-08-16 17:54:36 +00001545
Sanjay Patelda9c5622016-08-26 17:15:22 +00001546 // If this is: (X >> C3) & C2 != C1 (where any shift and any compare could
1547 // exist), turn it into (X & (C2 << C3)) != (C1 << C3). This happens a LOT in
1548 // code produced by the clang front-end, for bitfield access.
Sanjay Patelda9c5622016-08-26 17:15:22 +00001549 // This seemingly simple opportunity to fold away a shift turns out to be
1550 // rather complicated. See PR17827 for details.
Sanjay Patel9b40f982016-09-07 22:33:03 +00001551 unsigned ShiftOpcode = Shift->getOpcode();
1552 bool IsShl = ShiftOpcode == Instruction::Shl;
1553 const APInt *C3;
1554 if (match(Shift->getOperand(1), m_APInt(C3))) {
Sanjay Patelda9c5622016-08-26 17:15:22 +00001555 bool CanFold = false;
Craig Topper7a930922017-10-04 23:06:13 +00001556 if (ShiftOpcode == Instruction::Shl) {
Sanjay Patelda9c5622016-08-26 17:15:22 +00001557 // For a left shift, we can fold if the comparison is not signed. We can
1558 // also fold a signed comparison if the mask value and comparison value
1559 // are not negative. These constraints may not be obvious, but we can
1560 // prove that they are correct using an SMT solver.
Craig Topper8ed1aa92017-10-03 05:31:07 +00001561 if (!Cmp.isSigned() || (!C2.isNegative() && !C1.isNegative()))
Sanjay Patelda9c5622016-08-26 17:15:22 +00001562 CanFold = true;
Craig Topper7a930922017-10-04 23:06:13 +00001563 } else {
1564 bool IsAshr = ShiftOpcode == Instruction::AShr;
Sanjay Patelda9c5622016-08-26 17:15:22 +00001565 // For a logical right shift, we can fold if the comparison is not signed.
1566 // We can also fold a signed comparison if the shifted mask value and the
1567 // shifted comparison value are not negative. These constraints may not be
1568 // obvious, but we can prove that they are correct using an SMT solver.
Craig Topper7a930922017-10-04 23:06:13 +00001569 // For an arithmetic shift right we can do the same, if we ensure
1570 // the And doesn't use any bits being shifted in. Normally these would
1571 // be turned into lshr by SimplifyDemandedBits, but not if there is an
1572 // additional user.
1573 if (!IsAshr || (C2.shl(*C3).lshr(*C3) == C2)) {
1574 if (!Cmp.isSigned() ||
1575 (!C2.shl(*C3).isNegative() && !C1.shl(*C3).isNegative()))
1576 CanFold = true;
1577 }
Sanjay Patela3f4f082016-08-16 17:54:36 +00001578 }
1579
Sanjay Patelda9c5622016-08-26 17:15:22 +00001580 if (CanFold) {
Craig Topper8ed1aa92017-10-03 05:31:07 +00001581 APInt NewCst = IsShl ? C1.lshr(*C3) : C1.shl(*C3);
Sanjay Patel9b40f982016-09-07 22:33:03 +00001582 APInt SameAsC1 = IsShl ? NewCst.shl(*C3) : NewCst.lshr(*C3);
Sanjay Patelda9c5622016-08-26 17:15:22 +00001583 // Check to see if we are shifting out any of the bits being compared.
Craig Topper8ed1aa92017-10-03 05:31:07 +00001584 if (SameAsC1 != C1) {
Sanjay Patelda9c5622016-08-26 17:15:22 +00001585 // If we shifted bits out, the fold is not going to work out. As a
1586 // special case, check to see if this means that the result is always
1587 // true or false now.
1588 if (Cmp.getPredicate() == ICmpInst::ICMP_EQ)
Sanjay Patel1c608f42016-09-08 16:54:02 +00001589 return replaceInstUsesWith(Cmp, ConstantInt::getFalse(Cmp.getType()));
Sanjay Patelda9c5622016-08-26 17:15:22 +00001590 if (Cmp.getPredicate() == ICmpInst::ICMP_NE)
Sanjay Patel1c608f42016-09-08 16:54:02 +00001591 return replaceInstUsesWith(Cmp, ConstantInt::getTrue(Cmp.getType()));
Sanjay Patela3f4f082016-08-16 17:54:36 +00001592 } else {
Sanjay Patel9b40f982016-09-07 22:33:03 +00001593 Cmp.setOperand(1, ConstantInt::get(And->getType(), NewCst));
Craig Topper8ed1aa92017-10-03 05:31:07 +00001594 APInt NewAndCst = IsShl ? C2.lshr(*C3) : C2.shl(*C3);
Sanjay Patel9b40f982016-09-07 22:33:03 +00001595 And->setOperand(1, ConstantInt::get(And->getType(), NewAndCst));
Sanjay Patelda9c5622016-08-26 17:15:22 +00001596 And->setOperand(0, Shift->getOperand(0));
1597 Worklist.Add(Shift); // Shift is dead.
1598 return &Cmp;
Sanjay Patela3f4f082016-08-16 17:54:36 +00001599 }
Sanjay Patelda9c5622016-08-26 17:15:22 +00001600 }
1601 }
Sanjay Patela3f4f082016-08-16 17:54:36 +00001602
Sanjay Patelda9c5622016-08-26 17:15:22 +00001603 // Turn ((X >> Y) & C2) == 0 into (X & (C2 << Y)) == 0. The latter is
1604 // preferable because it allows the C2 << Y expression to be hoisted out of a
1605 // loop if Y is invariant and X is not.
Craig Topper8ed1aa92017-10-03 05:31:07 +00001606 if (Shift->hasOneUse() && C1.isNullValue() && Cmp.isEquality() &&
Sanjay Patelda9c5622016-08-26 17:15:22 +00001607 !Shift->isArithmeticShift() && !isa<Constant>(Shift->getOperand(0))) {
1608 // Compute C2 << Y.
Sanjay Patel9b40f982016-09-07 22:33:03 +00001609 Value *NewShift =
Craig Topperbb4069e2017-07-07 23:16:26 +00001610 IsShl ? Builder.CreateLShr(And->getOperand(1), Shift->getOperand(1))
1611 : Builder.CreateShl(And->getOperand(1), Shift->getOperand(1));
Sanjay Patela3f4f082016-08-16 17:54:36 +00001612
Sanjay Patelda9c5622016-08-26 17:15:22 +00001613 // Compute X & (C2 << Y).
Craig Topperbb4069e2017-07-07 23:16:26 +00001614 Value *NewAnd = Builder.CreateAnd(Shift->getOperand(0), NewShift);
Sanjay Patelda9c5622016-08-26 17:15:22 +00001615 Cmp.setOperand(0, NewAnd);
1616 return &Cmp;
1617 }
1618
Sanjay Patel14e0e182016-08-26 18:28:46 +00001619 return nullptr;
1620}
1621
1622/// Fold icmp (and X, C2), C1.
1623Instruction *InstCombiner::foldICmpAndConstConst(ICmpInst &Cmp,
1624 BinaryOperator *And,
Craig Topper8ed1aa92017-10-03 05:31:07 +00001625 const APInt &C1) {
Sanjay Patel05aadf82018-10-10 20:47:46 +00001626 // For vectors: icmp ne (and X, 1), 0 --> trunc X to N x i1
1627 // TODO: We canonicalize to the longer form for scalars because we have
1628 // better analysis/folds for icmp, and codegen may be better with icmp.
1629 if (Cmp.getPredicate() == CmpInst::ICMP_NE && Cmp.getType()->isVectorTy() &&
1630 C1.isNullValue() && match(And->getOperand(1), m_One()))
1631 return new TruncInst(And->getOperand(0), Cmp.getType());
1632
Sanjay Patel6b490972016-09-04 14:32:15 +00001633 const APInt *C2;
1634 if (!match(And->getOperand(1), m_APInt(C2)))
Sanjay Patel14e0e182016-08-26 18:28:46 +00001635 return nullptr;
1636
Craig Topper8bf62212017-09-26 18:47:25 +00001637 if (!And->hasOneUse())
Sanjay Patel14e0e182016-08-26 18:28:46 +00001638 return nullptr;
1639
Sanjay Patel6b490972016-09-04 14:32:15 +00001640 // If the LHS is an 'and' of a truncate and we can widen the and/compare to
1641 // the input width without changing the value produced, eliminate the cast:
1642 //
1643 // icmp (and (trunc W), C2), C1 -> icmp (and W, C2'), C1'
1644 //
1645 // We can do this transformation if the constants do not have their sign bits
1646 // set or if it is an equality comparison. Extending a relational comparison
1647 // when we're checking the sign bit would not work.
1648 Value *W;
Craig Topper8bf62212017-09-26 18:47:25 +00001649 if (match(And->getOperand(0), m_OneUse(m_Trunc(m_Value(W)))) &&
Craig Topper8ed1aa92017-10-03 05:31:07 +00001650 (Cmp.isEquality() || (!C1.isNegative() && !C2->isNegative()))) {
Sanjay Patel6b490972016-09-04 14:32:15 +00001651 // TODO: Is this a good transform for vectors? Wider types may reduce
1652 // throughput. Should this transform be limited (even for scalars) by using
Sanjay Patel2217f752017-01-31 17:25:42 +00001653 // shouldChangeType()?
Sanjay Patel6b490972016-09-04 14:32:15 +00001654 if (!Cmp.getType()->isVectorTy()) {
1655 Type *WideType = W->getType();
1656 unsigned WideScalarBits = WideType->getScalarSizeInBits();
Craig Topper8ed1aa92017-10-03 05:31:07 +00001657 Constant *ZextC1 = ConstantInt::get(WideType, C1.zext(WideScalarBits));
Sanjay Patel6b490972016-09-04 14:32:15 +00001658 Constant *ZextC2 = ConstantInt::get(WideType, C2->zext(WideScalarBits));
Craig Topperbb4069e2017-07-07 23:16:26 +00001659 Value *NewAnd = Builder.CreateAnd(W, ZextC2, And->getName());
Sanjay Patel6b490972016-09-04 14:32:15 +00001660 return new ICmpInst(Cmp.getPredicate(), NewAnd, ZextC1);
Sanjay Patel14e0e182016-08-26 18:28:46 +00001661 }
1662 }
1663
Craig Topper8ed1aa92017-10-03 05:31:07 +00001664 if (Instruction *I = foldICmpAndShift(Cmp, And, C1, *C2))
Sanjay Patel14e0e182016-08-26 18:28:46 +00001665 return I;
1666
Sanjay Patelda9c5622016-08-26 17:15:22 +00001667 // (icmp pred (and (or (lshr A, B), A), 1), 0) -->
Sanjay Patel6b490972016-09-04 14:32:15 +00001668 // (icmp pred (and A, (or (shl 1, B), 1), 0))
Sanjay Patelda9c5622016-08-26 17:15:22 +00001669 //
1670 // iff pred isn't signed
Craig Topper8ed1aa92017-10-03 05:31:07 +00001671 if (!Cmp.isSigned() && C1.isNullValue() && And->getOperand(0)->hasOneUse() &&
Craig Topper73ba1c82017-06-07 07:40:37 +00001672 match(And->getOperand(1), m_One())) {
Sanjay Pateldef931e2016-09-07 20:50:44 +00001673 Constant *One = cast<Constant>(And->getOperand(1));
1674 Value *Or = And->getOperand(0);
Sanjay Patelda9c5622016-08-26 17:15:22 +00001675 Value *A, *B, *LShr;
Sanjay Pateldef931e2016-09-07 20:50:44 +00001676 if (match(Or, m_Or(m_Value(LShr), m_Value(A))) &&
1677 match(LShr, m_LShr(m_Specific(A), m_Value(B)))) {
1678 unsigned UsesRemoved = 0;
1679 if (And->hasOneUse())
1680 ++UsesRemoved;
1681 if (Or->hasOneUse())
1682 ++UsesRemoved;
1683 if (LShr->hasOneUse())
1684 ++UsesRemoved;
1685
1686 // Compute A & ((1 << B) | 1)
1687 Value *NewOr = nullptr;
1688 if (auto *C = dyn_cast<Constant>(B)) {
1689 if (UsesRemoved >= 1)
1690 NewOr = ConstantExpr::getOr(ConstantExpr::getNUWShl(One, C), One);
1691 } else {
1692 if (UsesRemoved >= 3)
Craig Topperbb4069e2017-07-07 23:16:26 +00001693 NewOr = Builder.CreateOr(Builder.CreateShl(One, B, LShr->getName(),
1694 /*HasNUW=*/true),
1695 One, Or->getName());
Sanjay Pateldef931e2016-09-07 20:50:44 +00001696 }
1697 if (NewOr) {
Craig Topperbb4069e2017-07-07 23:16:26 +00001698 Value *NewAnd = Builder.CreateAnd(A, NewOr, And->getName());
Sanjay Pateldef931e2016-09-07 20:50:44 +00001699 Cmp.setOperand(0, NewAnd);
1700 return &Cmp;
Sanjay Patela3f4f082016-08-16 17:54:36 +00001701 }
1702 }
Sanjay Patela3f4f082016-08-16 17:54:36 +00001703 }
Sanjay Patelda9c5622016-08-26 17:15:22 +00001704
Sanjay Pateld3c7bb282016-08-26 16:42:33 +00001705 return nullptr;
1706}
1707
1708/// Fold icmp (and X, Y), C.
1709Instruction *InstCombiner::foldICmpAndConstant(ICmpInst &Cmp,
1710 BinaryOperator *And,
Craig Topper8ed1aa92017-10-03 05:31:07 +00001711 const APInt &C) {
Sanjay Pateld3c7bb282016-08-26 16:42:33 +00001712 if (Instruction *I = foldICmpAndConstConst(Cmp, And, C))
1713 return I;
1714
Sanjay Patel5c5311f2016-08-28 18:18:00 +00001715 // TODO: These all require that Y is constant too, so refactor with the above.
Sanjay Patela3f4f082016-08-16 17:54:36 +00001716
Sanjay Patel5c5311f2016-08-28 18:18:00 +00001717 // Try to optimize things like "A[i] & 42 == 0" to index computations.
1718 Value *X = And->getOperand(0);
1719 Value *Y = And->getOperand(1);
1720 if (auto *LI = dyn_cast<LoadInst>(X))
1721 if (auto *GEP = dyn_cast<GetElementPtrInst>(LI->getOperand(0)))
1722 if (auto *GV = dyn_cast<GlobalVariable>(GEP->getOperand(0)))
Sanjay Patela3f4f082016-08-16 17:54:36 +00001723 if (GV->isConstant() && GV->hasDefinitiveInitializer() &&
Sanjay Patel5c5311f2016-08-28 18:18:00 +00001724 !LI->isVolatile() && isa<ConstantInt>(Y)) {
1725 ConstantInt *C2 = cast<ConstantInt>(Y);
1726 if (Instruction *Res = foldCmpLoadFromIndexedGlobal(GEP, GV, Cmp, C2))
Sanjay Patela3f4f082016-08-16 17:54:36 +00001727 return Res;
1728 }
Sanjay Patel5c5311f2016-08-28 18:18:00 +00001729
1730 if (!Cmp.isEquality())
1731 return nullptr;
Sanjay Patela3f4f082016-08-16 17:54:36 +00001732
1733 // X & -C == -C -> X > u ~C
1734 // X & -C != -C -> X <= u ~C
1735 // iff C is a power of 2
Craig Topper8ed1aa92017-10-03 05:31:07 +00001736 if (Cmp.getOperand(1) == Y && (-C).isPowerOf2()) {
Sanjay Patel5c5311f2016-08-28 18:18:00 +00001737 auto NewPred = Cmp.getPredicate() == CmpInst::ICMP_EQ ? CmpInst::ICMP_UGT
1738 : CmpInst::ICMP_ULE;
1739 return new ICmpInst(NewPred, X, SubOne(cast<Constant>(Cmp.getOperand(1))));
1740 }
Sanjay Patela3f4f082016-08-16 17:54:36 +00001741
Sanjay Patel5c5311f2016-08-28 18:18:00 +00001742 // (X & C2) == 0 -> (trunc X) >= 0
1743 // (X & C2) != 0 -> (trunc X) < 0
1744 // iff C2 is a power of 2 and it masks the sign bit of a legal integer type.
1745 const APInt *C2;
Craig Topper8ed1aa92017-10-03 05:31:07 +00001746 if (And->hasOneUse() && C.isNullValue() && match(Y, m_APInt(C2))) {
Sanjay Patel5c5311f2016-08-28 18:18:00 +00001747 int32_t ExactLogBase2 = C2->exactLogBase2();
1748 if (ExactLogBase2 != -1 && DL.isLegalInteger(ExactLogBase2 + 1)) {
1749 Type *NTy = IntegerType::get(Cmp.getContext(), ExactLogBase2 + 1);
1750 if (And->getType()->isVectorTy())
1751 NTy = VectorType::get(NTy, And->getType()->getVectorNumElements());
Craig Topperbb4069e2017-07-07 23:16:26 +00001752 Value *Trunc = Builder.CreateTrunc(X, NTy);
Sanjay Patel5c5311f2016-08-28 18:18:00 +00001753 auto NewPred = Cmp.getPredicate() == CmpInst::ICMP_EQ ? CmpInst::ICMP_SGE
1754 : CmpInst::ICMP_SLT;
1755 return new ICmpInst(NewPred, Trunc, Constant::getNullValue(NTy));
Sanjay Patela3f4f082016-08-16 17:54:36 +00001756 }
1757 }
Sanjay Patel5c5311f2016-08-28 18:18:00 +00001758
Sanjay Patela3f4f082016-08-16 17:54:36 +00001759 return nullptr;
1760}
1761
Sanjay Patel943e92e2016-08-17 16:30:43 +00001762/// Fold icmp (or X, Y), C.
Sanjay Patelc9196c42016-08-22 21:24:29 +00001763Instruction *InstCombiner::foldICmpOrConstant(ICmpInst &Cmp, BinaryOperator *Or,
Craig Topper8ed1aa92017-10-03 05:31:07 +00001764 const APInt &C) {
Sanjay Patel943e92e2016-08-17 16:30:43 +00001765 ICmpInst::Predicate Pred = Cmp.getPredicate();
Craig Topper8ed1aa92017-10-03 05:31:07 +00001766 if (C.isOneValue()) {
Sanjay Patela3f4f082016-08-16 17:54:36 +00001767 // icmp slt signum(V) 1 --> icmp slt V, 1
1768 Value *V = nullptr;
Sanjay Patel943e92e2016-08-17 16:30:43 +00001769 if (Pred == ICmpInst::ICMP_SLT && match(Or, m_Signum(m_Value(V))))
Sanjay Patela3f4f082016-08-16 17:54:36 +00001770 return new ICmpInst(ICmpInst::ICMP_SLT, V,
1771 ConstantInt::get(V->getType(), 1));
1772 }
1773
Sanjay Patel50c82c42017-04-05 17:57:05 +00001774 // X | C == C --> X <=u C
1775 // X | C != C --> X >u C
1776 // iff C+1 is a power of 2 (C is a bitmask of the low bits)
1777 if (Cmp.isEquality() && Cmp.getOperand(1) == Or->getOperand(1) &&
Craig Topper8ed1aa92017-10-03 05:31:07 +00001778 (C + 1).isPowerOf2()) {
Sanjay Patel50c82c42017-04-05 17:57:05 +00001779 Pred = (Pred == CmpInst::ICMP_EQ) ? CmpInst::ICMP_ULE : CmpInst::ICMP_UGT;
1780 return new ICmpInst(Pred, Or->getOperand(0), Or->getOperand(1));
1781 }
1782
Craig Topper8ed1aa92017-10-03 05:31:07 +00001783 if (!Cmp.isEquality() || !C.isNullValue() || !Or->hasOneUse())
Sanjay Patela3f4f082016-08-16 17:54:36 +00001784 return nullptr;
1785
1786 Value *P, *Q;
Sanjay Patel943e92e2016-08-17 16:30:43 +00001787 if (match(Or, m_Or(m_PtrToInt(m_Value(P)), m_PtrToInt(m_Value(Q))))) {
Sanjay Patela3f4f082016-08-16 17:54:36 +00001788 // Simplify icmp eq (or (ptrtoint P), (ptrtoint Q)), 0
1789 // -> and (icmp eq P, null), (icmp eq Q, null).
Reid Klecknera871d382016-08-19 16:53:18 +00001790 Value *CmpP =
Craig Topperbb4069e2017-07-07 23:16:26 +00001791 Builder.CreateICmp(Pred, P, ConstantInt::getNullValue(P->getType()));
Reid Klecknera871d382016-08-19 16:53:18 +00001792 Value *CmpQ =
Craig Topperbb4069e2017-07-07 23:16:26 +00001793 Builder.CreateICmp(Pred, Q, ConstantInt::getNullValue(Q->getType()));
Sanjay Patel3f4db3e2017-07-14 15:09:49 +00001794 auto BOpc = Pred == CmpInst::ICMP_EQ ? Instruction::And : Instruction::Or;
1795 return BinaryOperator::Create(BOpc, CmpP, CmpQ);
1796 }
1797
1798 // Are we using xors to bitwise check for a pair of (in)equalities? Convert to
1799 // a shorter form that has more potential to be folded even further.
1800 Value *X1, *X2, *X3, *X4;
1801 if (match(Or->getOperand(0), m_OneUse(m_Xor(m_Value(X1), m_Value(X2)))) &&
1802 match(Or->getOperand(1), m_OneUse(m_Xor(m_Value(X3), m_Value(X4))))) {
1803 // ((X1 ^ X2) || (X3 ^ X4)) == 0 --> (X1 == X2) && (X3 == X4)
1804 // ((X1 ^ X2) || (X3 ^ X4)) != 0 --> (X1 != X2) || (X3 != X4)
1805 Value *Cmp12 = Builder.CreateICmp(Pred, X1, X2);
1806 Value *Cmp34 = Builder.CreateICmp(Pred, X3, X4);
1807 auto BOpc = Pred == CmpInst::ICMP_EQ ? Instruction::And : Instruction::Or;
1808 return BinaryOperator::Create(BOpc, Cmp12, Cmp34);
Sanjay Patela3f4f082016-08-16 17:54:36 +00001809 }
Sanjay Patel943e92e2016-08-17 16:30:43 +00001810
Sanjay Patela3f4f082016-08-16 17:54:36 +00001811 return nullptr;
1812}
1813
Sanjay Patel63478072016-08-18 15:44:44 +00001814/// Fold icmp (mul X, Y), C.
Sanjay Patelc9196c42016-08-22 21:24:29 +00001815Instruction *InstCombiner::foldICmpMulConstant(ICmpInst &Cmp,
1816 BinaryOperator *Mul,
Craig Topper8ed1aa92017-10-03 05:31:07 +00001817 const APInt &C) {
Sanjay Patel63478072016-08-18 15:44:44 +00001818 const APInt *MulC;
1819 if (!match(Mul->getOperand(1), m_APInt(MulC)))
Sanjay Patela3f4f082016-08-16 17:54:36 +00001820 return nullptr;
1821
Sanjay Patel63478072016-08-18 15:44:44 +00001822 // If this is a test of the sign bit and the multiply is sign-preserving with
1823 // a constant operand, use the multiply LHS operand instead.
1824 ICmpInst::Predicate Pred = Cmp.getPredicate();
Craig Topper8ed1aa92017-10-03 05:31:07 +00001825 if (isSignTest(Pred, C) && Mul->hasNoSignedWrap()) {
Sanjay Patel63478072016-08-18 15:44:44 +00001826 if (MulC->isNegative())
1827 Pred = ICmpInst::getSwappedPredicate(Pred);
1828 return new ICmpInst(Pred, Mul->getOperand(0),
1829 Constant::getNullValue(Mul->getType()));
1830 }
Sanjay Patela3f4f082016-08-16 17:54:36 +00001831
1832 return nullptr;
1833}
1834
Sanjay Patel98cd99d2016-08-18 21:28:30 +00001835/// Fold icmp (shl 1, Y), C.
1836static Instruction *foldICmpShlOne(ICmpInst &Cmp, Instruction *Shl,
Craig Topper8ed1aa92017-10-03 05:31:07 +00001837 const APInt &C) {
Sanjay Patel98cd99d2016-08-18 21:28:30 +00001838 Value *Y;
1839 if (!match(Shl, m_Shl(m_One(), m_Value(Y))))
1840 return nullptr;
1841
1842 Type *ShiftType = Shl->getType();
Craig Topper8ed1aa92017-10-03 05:31:07 +00001843 unsigned TypeBits = C.getBitWidth();
1844 bool CIsPowerOf2 = C.isPowerOf2();
Sanjay Patel98cd99d2016-08-18 21:28:30 +00001845 ICmpInst::Predicate Pred = Cmp.getPredicate();
1846 if (Cmp.isUnsigned()) {
1847 // (1 << Y) pred C -> Y pred Log2(C)
1848 if (!CIsPowerOf2) {
1849 // (1 << Y) < 30 -> Y <= 4
1850 // (1 << Y) <= 30 -> Y <= 4
1851 // (1 << Y) >= 30 -> Y > 4
1852 // (1 << Y) > 30 -> Y > 4
1853 if (Pred == ICmpInst::ICMP_ULT)
1854 Pred = ICmpInst::ICMP_ULE;
1855 else if (Pred == ICmpInst::ICMP_UGE)
1856 Pred = ICmpInst::ICMP_UGT;
1857 }
1858
1859 // (1 << Y) >= 2147483648 -> Y >= 31 -> Y == 31
1860 // (1 << Y) < 2147483648 -> Y < 31 -> Y != 31
Craig Topper8ed1aa92017-10-03 05:31:07 +00001861 unsigned CLog2 = C.logBase2();
Sanjay Patel98cd99d2016-08-18 21:28:30 +00001862 if (CLog2 == TypeBits - 1) {
1863 if (Pred == ICmpInst::ICMP_UGE)
1864 Pred = ICmpInst::ICMP_EQ;
1865 else if (Pred == ICmpInst::ICMP_ULT)
1866 Pred = ICmpInst::ICMP_NE;
1867 }
1868 return new ICmpInst(Pred, Y, ConstantInt::get(ShiftType, CLog2));
1869 } else if (Cmp.isSigned()) {
1870 Constant *BitWidthMinusOne = ConstantInt::get(ShiftType, TypeBits - 1);
Craig Topper8ed1aa92017-10-03 05:31:07 +00001871 if (C.isAllOnesValue()) {
Sanjay Patel98cd99d2016-08-18 21:28:30 +00001872 // (1 << Y) <= -1 -> Y == 31
1873 if (Pred == ICmpInst::ICMP_SLE)
1874 return new ICmpInst(ICmpInst::ICMP_EQ, Y, BitWidthMinusOne);
1875
1876 // (1 << Y) > -1 -> Y != 31
1877 if (Pred == ICmpInst::ICMP_SGT)
1878 return new ICmpInst(ICmpInst::ICMP_NE, Y, BitWidthMinusOne);
Craig Topper8ed1aa92017-10-03 05:31:07 +00001879 } else if (!C) {
Sanjay Patel98cd99d2016-08-18 21:28:30 +00001880 // (1 << Y) < 0 -> Y == 31
1881 // (1 << Y) <= 0 -> Y == 31
1882 if (Pred == ICmpInst::ICMP_SLT || Pred == ICmpInst::ICMP_SLE)
1883 return new ICmpInst(ICmpInst::ICMP_EQ, Y, BitWidthMinusOne);
1884
1885 // (1 << Y) >= 0 -> Y != 31
1886 // (1 << Y) > 0 -> Y != 31
1887 if (Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_SGE)
1888 return new ICmpInst(ICmpInst::ICMP_NE, Y, BitWidthMinusOne);
1889 }
1890 } else if (Cmp.isEquality() && CIsPowerOf2) {
Craig Topper8ed1aa92017-10-03 05:31:07 +00001891 return new ICmpInst(Pred, Y, ConstantInt::get(ShiftType, C.logBase2()));
Sanjay Patel98cd99d2016-08-18 21:28:30 +00001892 }
1893
1894 return nullptr;
1895}
1896
Sanjay Patel38b75062016-08-19 17:20:37 +00001897/// Fold icmp (shl X, Y), C.
Sanjay Patelc9196c42016-08-22 21:24:29 +00001898Instruction *InstCombiner::foldICmpShlConstant(ICmpInst &Cmp,
1899 BinaryOperator *Shl,
Craig Topper8ed1aa92017-10-03 05:31:07 +00001900 const APInt &C) {
Sanjay Patel8da42cc2016-09-15 22:26:31 +00001901 const APInt *ShiftVal;
1902 if (Cmp.isEquality() && match(Shl->getOperand(0), m_APInt(ShiftVal)))
Craig Topper8ed1aa92017-10-03 05:31:07 +00001903 return foldICmpShlConstConst(Cmp, Shl->getOperand(1), C, *ShiftVal);
Sanjay Patel8da42cc2016-09-15 22:26:31 +00001904
Sanjay Patelfa7de602016-08-19 22:33:26 +00001905 const APInt *ShiftAmt;
1906 if (!match(Shl->getOperand(1), m_APInt(ShiftAmt)))
Sanjay Patel38b75062016-08-19 17:20:37 +00001907 return foldICmpShlOne(Cmp, Shl, C);
Sanjay Patela867afe2016-08-19 16:12:16 +00001908
Sanjay Patel38b75062016-08-19 17:20:37 +00001909 // Check that the shift amount is in range. If not, don't perform undefined
Sanjay Patel940c0612017-01-09 16:27:56 +00001910 // shifts. When the shift is visited, it will be simplified.
Craig Topper8ed1aa92017-10-03 05:31:07 +00001911 unsigned TypeBits = C.getBitWidth();
Sanjay Patelfa7de602016-08-19 22:33:26 +00001912 if (ShiftAmt->uge(TypeBits))
Sanjay Patela3f4f082016-08-16 17:54:36 +00001913 return nullptr;
1914
Sanjay Patele38e79c2016-08-19 17:34:05 +00001915 ICmpInst::Predicate Pred = Cmp.getPredicate();
1916 Value *X = Shl->getOperand(0);
Sanjay Patel14715b32017-01-17 21:25:16 +00001917 Type *ShType = Shl->getType();
1918
Sanjay Patel291c3d82017-01-19 16:12:10 +00001919 // NSW guarantees that we are only shifting out sign bits from the high bits,
1920 // so we can ASHR the compare constant without needing a mask and eliminate
1921 // the shift.
1922 if (Shl->hasNoSignedWrap()) {
1923 if (Pred == ICmpInst::ICMP_SGT) {
1924 // icmp Pred (shl nsw X, ShiftAmt), C --> icmp Pred X, (C >>s ShiftAmt)
Craig Topper8ed1aa92017-10-03 05:31:07 +00001925 APInt ShiftedC = C.ashr(*ShiftAmt);
Sanjay Patel291c3d82017-01-19 16:12:10 +00001926 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC));
1927 }
Sanjay Patel6fb13572018-01-09 18:56:03 +00001928 if ((Pred == ICmpInst::ICMP_EQ || Pred == ICmpInst::ICMP_NE) &&
1929 C.ashr(*ShiftAmt).shl(*ShiftAmt) == C) {
Craig Topper8ed1aa92017-10-03 05:31:07 +00001930 APInt ShiftedC = C.ashr(*ShiftAmt);
Sanjay Patel291c3d82017-01-19 16:12:10 +00001931 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC));
1932 }
1933 if (Pred == ICmpInst::ICMP_SLT) {
1934 // SLE is the same as above, but SLE is canonicalized to SLT, so convert:
1935 // (X << S) <=s C is equiv to X <=s (C >> S) for all C
1936 // (X << S) <s (C + 1) is equiv to X <s (C >> S) + 1 if C <s SMAX
1937 // (X << S) <s C is equiv to X <s ((C - 1) >> S) + 1 if C >s SMIN
Craig Topper8ed1aa92017-10-03 05:31:07 +00001938 assert(!C.isMinSignedValue() && "Unexpected icmp slt");
1939 APInt ShiftedC = (C - 1).ashr(*ShiftAmt) + 1;
Sanjay Patel291c3d82017-01-19 16:12:10 +00001940 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC));
1941 }
1942 // If this is a signed comparison to 0 and the shift is sign preserving,
1943 // use the shift LHS operand instead; isSignTest may change 'Pred', so only
1944 // do that if we're sure to not continue on in this function.
Craig Topper8ed1aa92017-10-03 05:31:07 +00001945 if (isSignTest(Pred, C))
Sanjay Patel291c3d82017-01-19 16:12:10 +00001946 return new ICmpInst(Pred, X, Constant::getNullValue(ShType));
1947 }
Sanjay Patel14715b32017-01-17 21:25:16 +00001948
Sanjay Patel291c3d82017-01-19 16:12:10 +00001949 // NUW guarantees that we are only shifting out zero bits from the high bits,
1950 // so we can LSHR the compare constant without needing a mask and eliminate
1951 // the shift.
Sanjay Patel14715b32017-01-17 21:25:16 +00001952 if (Shl->hasNoUnsignedWrap()) {
Sanjay Patelae23d652017-01-18 21:16:12 +00001953 if (Pred == ICmpInst::ICMP_UGT) {
Sanjay Patel14715b32017-01-17 21:25:16 +00001954 // icmp Pred (shl nuw X, ShiftAmt), C --> icmp Pred X, (C >>u ShiftAmt)
Craig Topper8ed1aa92017-10-03 05:31:07 +00001955 APInt ShiftedC = C.lshr(*ShiftAmt);
Sanjay Patel14715b32017-01-17 21:25:16 +00001956 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC));
1957 }
Sanjay Patel6fb13572018-01-09 18:56:03 +00001958 if ((Pred == ICmpInst::ICMP_EQ || Pred == ICmpInst::ICMP_NE) &&
1959 C.lshr(*ShiftAmt).shl(*ShiftAmt) == C) {
Craig Topper8ed1aa92017-10-03 05:31:07 +00001960 APInt ShiftedC = C.lshr(*ShiftAmt);
Sanjay Patelae23d652017-01-18 21:16:12 +00001961 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC));
1962 }
Sanjay Patel14715b32017-01-17 21:25:16 +00001963 if (Pred == ICmpInst::ICMP_ULT) {
1964 // ULE is the same as above, but ULE is canonicalized to ULT, so convert:
1965 // (X << S) <=u C is equiv to X <=u (C >> S) for all C
1966 // (X << S) <u (C + 1) is equiv to X <u (C >> S) + 1 if C <u ~0u
1967 // (X << S) <u C is equiv to X <u ((C - 1) >> S) + 1 if C >u 0
Craig Topper8ed1aa92017-10-03 05:31:07 +00001968 assert(C.ugt(0) && "ult 0 should have been eliminated");
1969 APInt ShiftedC = (C - 1).lshr(*ShiftAmt) + 1;
Sanjay Patel14715b32017-01-17 21:25:16 +00001970 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC));
1971 }
1972 }
1973
Sanjay Patel291c3d82017-01-19 16:12:10 +00001974 if (Cmp.isEquality() && Shl->hasOneUse()) {
1975 // Strength-reduce the shift into an 'and'.
1976 Constant *Mask = ConstantInt::get(
1977 ShType,
1978 APInt::getLowBitsSet(TypeBits, TypeBits - ShiftAmt->getZExtValue()));
Craig Topperbb4069e2017-07-07 23:16:26 +00001979 Value *And = Builder.CreateAnd(X, Mask, Shl->getName() + ".mask");
Craig Topper8ed1aa92017-10-03 05:31:07 +00001980 Constant *LShrC = ConstantInt::get(ShType, C.lshr(*ShiftAmt));
Sanjay Patel291c3d82017-01-19 16:12:10 +00001981 return new ICmpInst(Pred, And, LShrC);
Sanjay Patela3f4f082016-08-16 17:54:36 +00001982 }
1983
Sanjay Patela3f4f082016-08-16 17:54:36 +00001984 // Otherwise, if this is a comparison of the sign bit, simplify to and/test.
1985 bool TrueIfSigned = false;
Craig Topper8ed1aa92017-10-03 05:31:07 +00001986 if (Shl->hasOneUse() && isSignBitCheck(Pred, C, TrueIfSigned)) {
Sanjay Patel7ffcde72016-08-21 16:35:34 +00001987 // (X << 31) <s 0 --> (X & 1) != 0
Sanjay Patela3f4f082016-08-16 17:54:36 +00001988 Constant *Mask = ConstantInt::get(
Sanjay Patel14715b32017-01-17 21:25:16 +00001989 ShType,
Sanjay Patelfa7de602016-08-19 22:33:26 +00001990 APInt::getOneBitSet(TypeBits, TypeBits - ShiftAmt->getZExtValue() - 1));
Craig Topperbb4069e2017-07-07 23:16:26 +00001991 Value *And = Builder.CreateAnd(X, Mask, Shl->getName() + ".mask");
Sanjay Patela3f4f082016-08-16 17:54:36 +00001992 return new ICmpInst(TrueIfSigned ? ICmpInst::ICMP_NE : ICmpInst::ICMP_EQ,
Sanjay Patel14715b32017-01-17 21:25:16 +00001993 And, Constant::getNullValue(ShType));
Sanjay Patelc0339c72016-11-01 19:19:29 +00001994 }
1995
Sanjay Patel643d21a2016-08-21 17:10:07 +00001996 // Transform (icmp pred iM (shl iM %v, N), C)
1997 // -> (icmp pred i(M-N) (trunc %v iM to i(M-N)), (trunc (C>>N))
1998 // Transform the shl to a trunc if (trunc (C>>N)) has no loss and M-N.
Sanjay Patel940c0612017-01-09 16:27:56 +00001999 // This enables us to get rid of the shift in favor of a trunc that may be
Sanjay Patela3f4f082016-08-16 17:54:36 +00002000 // free on the target. It has the additional benefit of comparing to a
Sanjay Patel940c0612017-01-09 16:27:56 +00002001 // smaller constant that may be more target-friendly.
Sanjay Patelfa7de602016-08-19 22:33:26 +00002002 unsigned Amt = ShiftAmt->getLimitedValue(TypeBits - 1);
Craig Topper8ed1aa92017-10-03 05:31:07 +00002003 if (Shl->hasOneUse() && Amt != 0 && C.countTrailingZeros() >= Amt &&
Sanjay Patelf3dda132016-10-25 20:11:47 +00002004 DL.isLegalInteger(TypeBits - Amt)) {
Sanjay Patel643d21a2016-08-21 17:10:07 +00002005 Type *TruncTy = IntegerType::get(Cmp.getContext(), TypeBits - Amt);
Sanjay Patel14715b32017-01-17 21:25:16 +00002006 if (ShType->isVectorTy())
2007 TruncTy = VectorType::get(TruncTy, ShType->getVectorNumElements());
Sanjay Patel643d21a2016-08-21 17:10:07 +00002008 Constant *NewC =
Craig Topper8ed1aa92017-10-03 05:31:07 +00002009 ConstantInt::get(TruncTy, C.ashr(*ShiftAmt).trunc(TypeBits - Amt));
Craig Topperbb4069e2017-07-07 23:16:26 +00002010 return new ICmpInst(Pred, Builder.CreateTrunc(X, TruncTy), NewC);
Sanjay Patela3f4f082016-08-16 17:54:36 +00002011 }
2012
2013 return nullptr;
2014}
2015
Sanjay Patela3920492016-08-22 20:45:06 +00002016/// Fold icmp ({al}shr X, Y), C.
Sanjay Patelc9196c42016-08-22 21:24:29 +00002017Instruction *InstCombiner::foldICmpShrConstant(ICmpInst &Cmp,
2018 BinaryOperator *Shr,
Craig Topper8ed1aa92017-10-03 05:31:07 +00002019 const APInt &C) {
Sanjay Patela3920492016-08-22 20:45:06 +00002020 // An exact shr only shifts out zero bits, so:
2021 // icmp eq/ne (shr X, Y), 0 --> icmp eq/ne X, 0
Sanjay Pateld64e9882016-08-23 22:05:55 +00002022 Value *X = Shr->getOperand(0);
Sanjay Patelc9196c42016-08-22 21:24:29 +00002023 CmpInst::Predicate Pred = Cmp.getPredicate();
Craig Topper73ba1c82017-06-07 07:40:37 +00002024 if (Cmp.isEquality() && Shr->isExact() && Shr->hasOneUse() &&
Craig Topper8ed1aa92017-10-03 05:31:07 +00002025 C.isNullValue())
Sanjay Pateld64e9882016-08-23 22:05:55 +00002026 return new ICmpInst(Pred, X, Cmp.getOperand(1));
Sanjay Patela3920492016-08-22 20:45:06 +00002027
Sanjay Patel8da42cc2016-09-15 22:26:31 +00002028 const APInt *ShiftVal;
2029 if (Cmp.isEquality() && match(Shr->getOperand(0), m_APInt(ShiftVal)))
Craig Topper8ed1aa92017-10-03 05:31:07 +00002030 return foldICmpShrConstConst(Cmp, Shr->getOperand(1), C, *ShiftVal);
Sanjay Patel8da42cc2016-09-15 22:26:31 +00002031
Sanjay Pateld398d4a2016-08-24 22:22:06 +00002032 const APInt *ShiftAmt;
2033 if (!match(Shr->getOperand(1), m_APInt(ShiftAmt)))
Sanjay Patela3f4f082016-08-16 17:54:36 +00002034 return nullptr;
2035
Sanjay Pateld398d4a2016-08-24 22:22:06 +00002036 // Check that the shift amount is in range. If not, don't perform undefined
2037 // shifts. When the shift is visited it will be simplified.
Craig Topper8ed1aa92017-10-03 05:31:07 +00002038 unsigned TypeBits = C.getBitWidth();
Sanjay Pateld398d4a2016-08-24 22:22:06 +00002039 unsigned ShAmtVal = ShiftAmt->getLimitedValue(TypeBits);
Sanjay Pateldcac0df2016-08-23 21:25:13 +00002040 if (ShAmtVal >= TypeBits || ShAmtVal == 0)
2041 return nullptr;
2042
Sanjay Pateld64e9882016-08-23 22:05:55 +00002043 bool IsAShr = Shr->getOpcode() == Instruction::AShr;
Sanjay Patel7ac2db62017-10-05 21:11:49 +00002044 bool IsExact = Shr->isExact();
2045 Type *ShrTy = Shr->getType();
2046 // TODO: If we could guarantee that InstSimplify would handle all of the
2047 // constant-value-based preconditions in the folds below, then we could assert
2048 // those conditions rather than checking them. This is difficult because of
2049 // undef/poison (PR34838).
2050 if (IsAShr) {
2051 if (Pred == CmpInst::ICMP_SLT || (Pred == CmpInst::ICMP_SGT && IsExact)) {
2052 // icmp slt (ashr X, ShAmtC), C --> icmp slt X, (C << ShAmtC)
2053 // icmp sgt (ashr exact X, ShAmtC), C --> icmp sgt X, (C << ShAmtC)
2054 APInt ShiftedC = C.shl(ShAmtVal);
2055 if (ShiftedC.ashr(ShAmtVal) == C)
2056 return new ICmpInst(Pred, X, ConstantInt::get(ShrTy, ShiftedC));
2057 }
2058 if (Pred == CmpInst::ICMP_SGT) {
2059 // icmp sgt (ashr X, ShAmtC), C --> icmp sgt X, ((C + 1) << ShAmtC) - 1
2060 APInt ShiftedC = (C + 1).shl(ShAmtVal) - 1;
2061 if (!C.isMaxSignedValue() && !(C + 1).shl(ShAmtVal).isMinSignedValue() &&
2062 (ShiftedC + 1).ashr(ShAmtVal) == (C + 1))
2063 return new ICmpInst(Pred, X, ConstantInt::get(ShrTy, ShiftedC));
2064 }
2065 } else {
2066 if (Pred == CmpInst::ICMP_ULT || (Pred == CmpInst::ICMP_UGT && IsExact)) {
2067 // icmp ult (lshr X, ShAmtC), C --> icmp ult X, (C << ShAmtC)
2068 // icmp ugt (lshr exact X, ShAmtC), C --> icmp ugt X, (C << ShAmtC)
2069 APInt ShiftedC = C.shl(ShAmtVal);
2070 if (ShiftedC.lshr(ShAmtVal) == C)
2071 return new ICmpInst(Pred, X, ConstantInt::get(ShrTy, ShiftedC));
2072 }
2073 if (Pred == CmpInst::ICMP_UGT) {
2074 // icmp ugt (lshr X, ShAmtC), C --> icmp ugt X, ((C + 1) << ShAmtC) - 1
2075 APInt ShiftedC = (C + 1).shl(ShAmtVal) - 1;
2076 if ((ShiftedC + 1).lshr(ShAmtVal) == (C + 1))
2077 return new ICmpInst(Pred, X, ConstantInt::get(ShrTy, ShiftedC));
2078 }
Sanjay Pateldcac0df2016-08-23 21:25:13 +00002079 }
2080
Sanjay Patel7ac2db62017-10-05 21:11:49 +00002081 if (!Cmp.isEquality())
2082 return nullptr;
2083
Sanjay Pateld398d4a2016-08-24 22:22:06 +00002084 // Handle equality comparisons of shift-by-constant.
2085
Sanjay Patel8e297742016-08-24 13:55:55 +00002086 // If the comparison constant changes with the shift, the comparison cannot
2087 // succeed (bits of the comparison constant cannot match the shifted value).
2088 // This should be known by InstSimplify and already be folded to true/false.
Craig Topper8ed1aa92017-10-03 05:31:07 +00002089 assert(((IsAShr && C.shl(ShAmtVal).ashr(ShAmtVal) == C) ||
2090 (!IsAShr && C.shl(ShAmtVal).lshr(ShAmtVal) == C)) &&
Sanjay Patel8e297742016-08-24 13:55:55 +00002091 "Expected icmp+shr simplify did not occur.");
2092
Sanjay Patel934738a2017-10-15 15:39:15 +00002093 // If the bits shifted out are known zero, compare the unshifted value:
Sanjay Pateldcac0df2016-08-23 21:25:13 +00002094 // (X & 4) >> 1 == 2 --> (X & 4) == 4.
Sanjay Patel934738a2017-10-15 15:39:15 +00002095 if (Shr->isExact())
Sanjay Patel42135be2017-10-16 14:47:24 +00002096 return new ICmpInst(Pred, X, ConstantInt::get(ShrTy, C << ShAmtVal));
Sanjay Patelf11b5b42017-10-05 14:26:15 +00002097
Sanjay Patel934738a2017-10-15 15:39:15 +00002098 if (Shr->hasOneUse()) {
2099 // Canonicalize the shift into an 'and':
2100 // icmp eq/ne (shr X, ShAmt), C --> icmp eq/ne (and X, HiMask), (C << ShAmt)
Sanjay Pateld398d4a2016-08-24 22:22:06 +00002101 APInt Val(APInt::getHighBitsSet(TypeBits, TypeBits - ShAmtVal));
Sanjay Patel7ac2db62017-10-05 21:11:49 +00002102 Constant *Mask = ConstantInt::get(ShrTy, Val);
Craig Topperbb4069e2017-07-07 23:16:26 +00002103 Value *And = Builder.CreateAnd(X, Mask, Shr->getName() + ".mask");
Sanjay Patel42135be2017-10-16 14:47:24 +00002104 return new ICmpInst(Pred, And, ConstantInt::get(ShrTy, C << ShAmtVal));
Sanjay Pateldcac0df2016-08-23 21:25:13 +00002105 }
Sanjay Patela3f4f082016-08-16 17:54:36 +00002106
2107 return nullptr;
2108}
2109
Sanjay Patel12a41052016-08-18 17:37:26 +00002110/// Fold icmp (udiv X, Y), C.
2111Instruction *InstCombiner::foldICmpUDivConstant(ICmpInst &Cmp,
Sanjay Patelc9196c42016-08-22 21:24:29 +00002112 BinaryOperator *UDiv,
Craig Topper8ed1aa92017-10-03 05:31:07 +00002113 const APInt &C) {
Sanjay Patelfa5ca2b2016-08-18 17:55:59 +00002114 const APInt *C2;
2115 if (!match(UDiv->getOperand(0), m_APInt(C2)))
2116 return nullptr;
2117
Craig Topper29c282e2017-06-07 07:40:29 +00002118 assert(*C2 != 0 && "udiv 0, X should have been simplified already.");
Sanjay Patelfa5ca2b2016-08-18 17:55:59 +00002119
2120 // (icmp ugt (udiv C2, Y), C) -> (icmp ule Y, C2/(C+1))
2121 Value *Y = UDiv->getOperand(1);
2122 if (Cmp.getPredicate() == ICmpInst::ICMP_UGT) {
Craig Topper8ed1aa92017-10-03 05:31:07 +00002123 assert(!C.isMaxValue() &&
Sanjay Patelfa5ca2b2016-08-18 17:55:59 +00002124 "icmp ugt X, UINT_MAX should have been simplified already.");
2125 return new ICmpInst(ICmpInst::ICMP_ULE, Y,
Craig Topper8ed1aa92017-10-03 05:31:07 +00002126 ConstantInt::get(Y->getType(), C2->udiv(C + 1)));
Sanjay Patelfa5ca2b2016-08-18 17:55:59 +00002127 }
2128
2129 // (icmp ult (udiv C2, Y), C) -> (icmp ugt Y, C2/C)
2130 if (Cmp.getPredicate() == ICmpInst::ICMP_ULT) {
Craig Topper8ed1aa92017-10-03 05:31:07 +00002131 assert(C != 0 && "icmp ult X, 0 should have been simplified already.");
Sanjay Patelfa5ca2b2016-08-18 17:55:59 +00002132 return new ICmpInst(ICmpInst::ICMP_UGT, Y,
Craig Topper8ed1aa92017-10-03 05:31:07 +00002133 ConstantInt::get(Y->getType(), C2->udiv(C)));
Sanjay Patela3f4f082016-08-16 17:54:36 +00002134 }
2135
2136 return nullptr;
2137}
2138
Sanjay Patelf7ba0892016-08-26 15:53:01 +00002139/// Fold icmp ({su}div X, Y), C.
2140Instruction *InstCombiner::foldICmpDivConstant(ICmpInst &Cmp,
2141 BinaryOperator *Div,
Craig Topper8ed1aa92017-10-03 05:31:07 +00002142 const APInt &C) {
Sanjay Patela7cb4772016-08-30 17:10:49 +00002143 // Fold: icmp pred ([us]div X, C2), C -> range test
Sanjay Patela3f4f082016-08-16 17:54:36 +00002144 // Fold this div into the comparison, producing a range check.
2145 // Determine, based on the divide type, what the range is being
2146 // checked. If there is an overflow on the low or high side, remember
2147 // it, otherwise compute the range [low, hi) bounding the new value.
2148 // See: InsertRangeTest above for the kinds of replacements possible.
Sanjay Patela7cb4772016-08-30 17:10:49 +00002149 const APInt *C2;
2150 if (!match(Div->getOperand(1), m_APInt(C2)))
Sanjay Patel16554142016-08-24 23:03:36 +00002151 return nullptr;
2152
Sanjay Patel16554142016-08-24 23:03:36 +00002153 // FIXME: If the operand types don't match the type of the divide
2154 // then don't attempt this transform. The code below doesn't have the
2155 // logic to deal with a signed divide and an unsigned compare (and
Sanjay Patela7cb4772016-08-30 17:10:49 +00002156 // vice versa). This is because (x /s C2) <s C produces different
2157 // results than (x /s C2) <u C or (x /u C2) <s C or even
2158 // (x /u C2) <u C. Simply casting the operands and result won't
Sanjay Patel16554142016-08-24 23:03:36 +00002159 // work. :( The if statement below tests that condition and bails
2160 // if it finds it.
Sanjay Patelf7ba0892016-08-26 15:53:01 +00002161 bool DivIsSigned = Div->getOpcode() == Instruction::SDiv;
2162 if (!Cmp.isEquality() && DivIsSigned != Cmp.isSigned())
Sanjay Patel16554142016-08-24 23:03:36 +00002163 return nullptr;
Sanjay Patela7cb4772016-08-30 17:10:49 +00002164
Sanjay Pateleea2ef72016-09-05 23:38:22 +00002165 // The ProdOV computation fails on divide by 0 and divide by -1. Cases with
2166 // INT_MIN will also fail if the divisor is 1. Although folds of all these
2167 // division-by-constant cases should be present, we can not assert that they
2168 // have happened before we reach this icmp instruction.
Craig Topper73ba1c82017-06-07 07:40:37 +00002169 if (C2->isNullValue() || C2->isOneValue() ||
2170 (DivIsSigned && C2->isAllOnesValue()))
Sanjay Pateleea2ef72016-09-05 23:38:22 +00002171 return nullptr;
Sanjay Patelb3714572016-08-30 17:31:34 +00002172
Craig Topper6e025a32017-10-01 23:53:54 +00002173 // Compute Prod = C * C2. We are essentially solving an equation of
2174 // form X / C2 = C. We solve for X by multiplying C2 and C.
Sanjay Patel541aef42016-08-31 21:57:21 +00002175 // By solving for X, we can turn this into a range check instead of computing
2176 // a divide.
Craig Topper8ed1aa92017-10-03 05:31:07 +00002177 APInt Prod = C * *C2;
Sanjay Patel16554142016-08-24 23:03:36 +00002178
Sanjay Patel541aef42016-08-31 21:57:21 +00002179 // Determine if the product overflows by seeing if the product is not equal to
2180 // the divide. Make sure we do the same kind of divide as in the LHS
2181 // instruction that we're folding.
Craig Topper8ed1aa92017-10-03 05:31:07 +00002182 bool ProdOV = (DivIsSigned ? Prod.sdiv(*C2) : Prod.udiv(*C2)) != C;
Sanjay Patel16554142016-08-24 23:03:36 +00002183
Sanjay Patelf7ba0892016-08-26 15:53:01 +00002184 ICmpInst::Predicate Pred = Cmp.getPredicate();
Sanjay Patel16554142016-08-24 23:03:36 +00002185
2186 // If the division is known to be exact, then there is no remainder from the
2187 // divide, so the covered range size is unit, otherwise it is the divisor.
Craig Topper6e025a32017-10-01 23:53:54 +00002188 APInt RangeSize = Div->isExact() ? APInt(C2->getBitWidth(), 1) : *C2;
Sanjay Patel16554142016-08-24 23:03:36 +00002189
2190 // Figure out the interval that is being checked. For example, a comparison
2191 // like "X /u 5 == 0" is really checking that X is in the interval [0, 5).
2192 // Compute this interval based on the constants involved and the signedness of
2193 // the compare/divide. This computes a half-open interval, keeping track of
2194 // whether either value in the interval overflows. After analysis each
2195 // overflow variable is set to 0 if it's corresponding bound variable is valid
2196 // -1 if overflowed off the bottom end, or +1 if overflowed off the top end.
2197 int LoOverflow = 0, HiOverflow = 0;
Craig Topper6e025a32017-10-01 23:53:54 +00002198 APInt LoBound, HiBound;
Sanjay Patel16554142016-08-24 23:03:36 +00002199
2200 if (!DivIsSigned) { // udiv
2201 // e.g. X/5 op 3 --> [15, 20)
2202 LoBound = Prod;
2203 HiOverflow = LoOverflow = ProdOV;
2204 if (!HiOverflow) {
2205 // If this is not an exact divide, then many values in the range collapse
2206 // to the same result value.
Sanjay Pateld93c4c02016-09-15 18:22:25 +00002207 HiOverflow = addWithOverflow(HiBound, LoBound, RangeSize, false);
Sanjay Patel16554142016-08-24 23:03:36 +00002208 }
Sanjay Patel541aef42016-08-31 21:57:21 +00002209 } else if (C2->isStrictlyPositive()) { // Divisor is > 0.
Craig Topper8ed1aa92017-10-03 05:31:07 +00002210 if (C.isNullValue()) { // (X / pos) op 0
Sanjay Patel16554142016-08-24 23:03:36 +00002211 // Can't overflow. e.g. X/2 op 0 --> [-1, 2)
Craig Topper6e025a32017-10-01 23:53:54 +00002212 LoBound = -(RangeSize - 1);
Sanjay Patel16554142016-08-24 23:03:36 +00002213 HiBound = RangeSize;
Craig Topper8ed1aa92017-10-03 05:31:07 +00002214 } else if (C.isStrictlyPositive()) { // (X / pos) op pos
Sanjay Patel16554142016-08-24 23:03:36 +00002215 LoBound = Prod; // e.g. X/5 op 3 --> [15, 20)
2216 HiOverflow = LoOverflow = ProdOV;
2217 if (!HiOverflow)
Sanjay Pateld93c4c02016-09-15 18:22:25 +00002218 HiOverflow = addWithOverflow(HiBound, Prod, RangeSize, true);
Sanjay Patel16554142016-08-24 23:03:36 +00002219 } else { // (X / pos) op neg
2220 // e.g. X/5 op -3 --> [-15-4, -15+1) --> [-19, -14)
Craig Topper6e025a32017-10-01 23:53:54 +00002221 HiBound = Prod + 1;
Sanjay Patel16554142016-08-24 23:03:36 +00002222 LoOverflow = HiOverflow = ProdOV ? -1 : 0;
2223 if (!LoOverflow) {
Craig Topper6e025a32017-10-01 23:53:54 +00002224 APInt DivNeg = -RangeSize;
Sanjay Pateld93c4c02016-09-15 18:22:25 +00002225 LoOverflow = addWithOverflow(LoBound, HiBound, DivNeg, true) ? -1 : 0;
Sanjay Patel16554142016-08-24 23:03:36 +00002226 }
2227 }
Sanjay Patel541aef42016-08-31 21:57:21 +00002228 } else if (C2->isNegative()) { // Divisor is < 0.
Sanjay Patelf7ba0892016-08-26 15:53:01 +00002229 if (Div->isExact())
Craig Topper6e025a32017-10-01 23:53:54 +00002230 RangeSize.negate();
Craig Topper8ed1aa92017-10-03 05:31:07 +00002231 if (C.isNullValue()) { // (X / neg) op 0
Sanjay Patel16554142016-08-24 23:03:36 +00002232 // e.g. X/-5 op 0 --> [-4, 5)
Craig Topper6e025a32017-10-01 23:53:54 +00002233 LoBound = RangeSize + 1;
2234 HiBound = -RangeSize;
2235 if (HiBound == *C2) { // -INTMIN = INTMIN
Sanjay Patel16554142016-08-24 23:03:36 +00002236 HiOverflow = 1; // [INTMIN+1, overflow)
Craig Topper6e025a32017-10-01 23:53:54 +00002237 HiBound = APInt(); // e.g. X/INTMIN = 0 --> X > INTMIN
Sanjay Patel16554142016-08-24 23:03:36 +00002238 }
Craig Topper8ed1aa92017-10-03 05:31:07 +00002239 } else if (C.isStrictlyPositive()) { // (X / neg) op pos
Sanjay Patel16554142016-08-24 23:03:36 +00002240 // e.g. X/-5 op 3 --> [-19, -14)
Craig Topper6e025a32017-10-01 23:53:54 +00002241 HiBound = Prod + 1;
Sanjay Patel16554142016-08-24 23:03:36 +00002242 HiOverflow = LoOverflow = ProdOV ? -1 : 0;
2243 if (!LoOverflow)
Sanjay Pateld93c4c02016-09-15 18:22:25 +00002244 LoOverflow = addWithOverflow(LoBound, HiBound, RangeSize, true) ? -1:0;
Sanjay Patel16554142016-08-24 23:03:36 +00002245 } else { // (X / neg) op neg
2246 LoBound = Prod; // e.g. X/-5 op -3 --> [15, 20)
2247 LoOverflow = HiOverflow = ProdOV;
2248 if (!HiOverflow)
Sanjay Pateld93c4c02016-09-15 18:22:25 +00002249 HiOverflow = subWithOverflow(HiBound, Prod, RangeSize, true);
Sanjay Patel16554142016-08-24 23:03:36 +00002250 }
2251
2252 // Dividing by a negative swaps the condition. LT <-> GT
2253 Pred = ICmpInst::getSwappedPredicate(Pred);
2254 }
2255
Sanjay Patelf7ba0892016-08-26 15:53:01 +00002256 Value *X = Div->getOperand(0);
Sanjay Patel16554142016-08-24 23:03:36 +00002257 switch (Pred) {
2258 default: llvm_unreachable("Unhandled icmp opcode!");
2259 case ICmpInst::ICMP_EQ:
2260 if (LoOverflow && HiOverflow)
Craig Topperbb4069e2017-07-07 23:16:26 +00002261 return replaceInstUsesWith(Cmp, Builder.getFalse());
Sanjay Patel16554142016-08-24 23:03:36 +00002262 if (HiOverflow)
2263 return new ICmpInst(DivIsSigned ? ICmpInst::ICMP_SGE :
Craig Topper6e025a32017-10-01 23:53:54 +00002264 ICmpInst::ICMP_UGE, X,
2265 ConstantInt::get(Div->getType(), LoBound));
Sanjay Patel16554142016-08-24 23:03:36 +00002266 if (LoOverflow)
2267 return new ICmpInst(DivIsSigned ? ICmpInst::ICMP_SLT :
Craig Topper6e025a32017-10-01 23:53:54 +00002268 ICmpInst::ICMP_ULT, X,
2269 ConstantInt::get(Div->getType(), HiBound));
Sanjay Patel85d79742016-08-31 19:49:56 +00002270 return replaceInstUsesWith(
Craig Topper6e025a32017-10-01 23:53:54 +00002271 Cmp, insertRangeTest(X, LoBound, HiBound, DivIsSigned, true));
Sanjay Patel16554142016-08-24 23:03:36 +00002272 case ICmpInst::ICMP_NE:
2273 if (LoOverflow && HiOverflow)
Craig Topperbb4069e2017-07-07 23:16:26 +00002274 return replaceInstUsesWith(Cmp, Builder.getTrue());
Sanjay Patel16554142016-08-24 23:03:36 +00002275 if (HiOverflow)
2276 return new ICmpInst(DivIsSigned ? ICmpInst::ICMP_SLT :
Craig Topper6e025a32017-10-01 23:53:54 +00002277 ICmpInst::ICMP_ULT, X,
2278 ConstantInt::get(Div->getType(), LoBound));
Sanjay Patel16554142016-08-24 23:03:36 +00002279 if (LoOverflow)
2280 return new ICmpInst(DivIsSigned ? ICmpInst::ICMP_SGE :
Craig Topper6e025a32017-10-01 23:53:54 +00002281 ICmpInst::ICMP_UGE, X,
2282 ConstantInt::get(Div->getType(), HiBound));
Sanjay Patel541aef42016-08-31 21:57:21 +00002283 return replaceInstUsesWith(Cmp,
Craig Topper6e025a32017-10-01 23:53:54 +00002284 insertRangeTest(X, LoBound, HiBound,
Sanjay Patel541aef42016-08-31 21:57:21 +00002285 DivIsSigned, false));
Sanjay Patel16554142016-08-24 23:03:36 +00002286 case ICmpInst::ICMP_ULT:
2287 case ICmpInst::ICMP_SLT:
2288 if (LoOverflow == +1) // Low bound is greater than input range.
Craig Topperbb4069e2017-07-07 23:16:26 +00002289 return replaceInstUsesWith(Cmp, Builder.getTrue());
Sanjay Patel16554142016-08-24 23:03:36 +00002290 if (LoOverflow == -1) // Low bound is less than input range.
Craig Topperbb4069e2017-07-07 23:16:26 +00002291 return replaceInstUsesWith(Cmp, Builder.getFalse());
Craig Topper6e025a32017-10-01 23:53:54 +00002292 return new ICmpInst(Pred, X, ConstantInt::get(Div->getType(), LoBound));
Sanjay Patel16554142016-08-24 23:03:36 +00002293 case ICmpInst::ICMP_UGT:
2294 case ICmpInst::ICMP_SGT:
2295 if (HiOverflow == +1) // High bound greater than input range.
Craig Topperbb4069e2017-07-07 23:16:26 +00002296 return replaceInstUsesWith(Cmp, Builder.getFalse());
Sanjay Patel16554142016-08-24 23:03:36 +00002297 if (HiOverflow == -1) // High bound less than input range.
Craig Topperbb4069e2017-07-07 23:16:26 +00002298 return replaceInstUsesWith(Cmp, Builder.getTrue());
Sanjay Patel16554142016-08-24 23:03:36 +00002299 if (Pred == ICmpInst::ICMP_UGT)
Craig Topper6e025a32017-10-01 23:53:54 +00002300 return new ICmpInst(ICmpInst::ICMP_UGE, X,
2301 ConstantInt::get(Div->getType(), HiBound));
2302 return new ICmpInst(ICmpInst::ICMP_SGE, X,
2303 ConstantInt::get(Div->getType(), HiBound));
Sanjay Patel16554142016-08-24 23:03:36 +00002304 }
Sanjay Patela3f4f082016-08-16 17:54:36 +00002305
2306 return nullptr;
2307}
2308
Sanjay Patelb9aa67b2016-08-16 21:26:10 +00002309/// Fold icmp (sub X, Y), C.
Sanjay Patelc9196c42016-08-22 21:24:29 +00002310Instruction *InstCombiner::foldICmpSubConstant(ICmpInst &Cmp,
2311 BinaryOperator *Sub,
Craig Topper8ed1aa92017-10-03 05:31:07 +00002312 const APInt &C) {
Sanjay Patel886a5422016-09-15 18:05:17 +00002313 Value *X = Sub->getOperand(0), *Y = Sub->getOperand(1);
2314 ICmpInst::Predicate Pred = Cmp.getPredicate();
2315
2316 // The following transforms are only worth it if the only user of the subtract
2317 // is the icmp.
2318 if (!Sub->hasOneUse())
Sanjay Patela3f4f082016-08-16 17:54:36 +00002319 return nullptr;
2320
Sanjay Patel886a5422016-09-15 18:05:17 +00002321 if (Sub->hasNoSignedWrap()) {
2322 // (icmp sgt (sub nsw X, Y), -1) -> (icmp sge X, Y)
Craig Topper8ed1aa92017-10-03 05:31:07 +00002323 if (Pred == ICmpInst::ICMP_SGT && C.isAllOnesValue())
Sanjay Patel886a5422016-09-15 18:05:17 +00002324 return new ICmpInst(ICmpInst::ICMP_SGE, X, Y);
Sanjay Patela3f4f082016-08-16 17:54:36 +00002325
Sanjay Patel886a5422016-09-15 18:05:17 +00002326 // (icmp sgt (sub nsw X, Y), 0) -> (icmp sgt X, Y)
Craig Topper8ed1aa92017-10-03 05:31:07 +00002327 if (Pred == ICmpInst::ICMP_SGT && C.isNullValue())
Sanjay Patel886a5422016-09-15 18:05:17 +00002328 return new ICmpInst(ICmpInst::ICMP_SGT, X, Y);
2329
2330 // (icmp slt (sub nsw X, Y), 0) -> (icmp slt X, Y)
Craig Topper8ed1aa92017-10-03 05:31:07 +00002331 if (Pred == ICmpInst::ICMP_SLT && C.isNullValue())
Sanjay Patel886a5422016-09-15 18:05:17 +00002332 return new ICmpInst(ICmpInst::ICMP_SLT, X, Y);
2333
2334 // (icmp slt (sub nsw X, Y), 1) -> (icmp sle X, Y)
Craig Topper8ed1aa92017-10-03 05:31:07 +00002335 if (Pred == ICmpInst::ICMP_SLT && C.isOneValue())
Sanjay Patel886a5422016-09-15 18:05:17 +00002336 return new ICmpInst(ICmpInst::ICMP_SLE, X, Y);
2337 }
2338
2339 const APInt *C2;
2340 if (!match(X, m_APInt(C2)))
2341 return nullptr;
2342
2343 // C2 - Y <u C -> (Y | (C - 1)) == C2
2344 // iff (C2 & (C - 1)) == C - 1 and C is a power of 2
Craig Topper8ed1aa92017-10-03 05:31:07 +00002345 if (Pred == ICmpInst::ICMP_ULT && C.isPowerOf2() &&
2346 (*C2 & (C - 1)) == (C - 1))
2347 return new ICmpInst(ICmpInst::ICMP_EQ, Builder.CreateOr(Y, C - 1), X);
Sanjay Patel886a5422016-09-15 18:05:17 +00002348
2349 // C2 - Y >u C -> (Y | C) != C2
2350 // iff C2 & C == C and C + 1 is a power of 2
Craig Topper8ed1aa92017-10-03 05:31:07 +00002351 if (Pred == ICmpInst::ICMP_UGT && (C + 1).isPowerOf2() && (*C2 & C) == C)
2352 return new ICmpInst(ICmpInst::ICMP_NE, Builder.CreateOr(Y, C), X);
Sanjay Patela3f4f082016-08-16 17:54:36 +00002353
2354 return nullptr;
2355}
2356
Sanjay Patel60ea1b42016-08-16 22:34:42 +00002357/// Fold icmp (add X, Y), C.
Sanjay Patelc9196c42016-08-22 21:24:29 +00002358Instruction *InstCombiner::foldICmpAddConstant(ICmpInst &Cmp,
2359 BinaryOperator *Add,
Craig Topper8ed1aa92017-10-03 05:31:07 +00002360 const APInt &C) {
Sanjay Patel4f7eb2a2016-08-17 15:24:30 +00002361 Value *Y = Add->getOperand(1);
2362 const APInt *C2;
2363 if (Cmp.isEquality() || !match(Y, m_APInt(C2)))
Sanjay Patela3f4f082016-08-16 17:54:36 +00002364 return nullptr;
2365
Sanjay Patel4f7eb2a2016-08-17 15:24:30 +00002366 // Fold icmp pred (add X, C2), C.
Sanjay Patel60ea1b42016-08-16 22:34:42 +00002367 Value *X = Add->getOperand(0);
Sanjay Patel4f7eb2a2016-08-17 15:24:30 +00002368 Type *Ty = Add->getType();
Sanjay Patel6dd2eae2017-02-08 16:19:36 +00002369 CmpInst::Predicate Pred = Cmp.getPredicate();
Sanjay Patel45b7e692017-02-12 16:40:30 +00002370
Tim Northover12c1f762018-09-10 14:26:44 +00002371 if (!Add->hasOneUse())
2372 return nullptr;
2373
Sanjay Patel45b7e692017-02-12 16:40:30 +00002374 // If the add does not wrap, we can always adjust the compare by subtracting
Nicola Zaghen9588ad92018-09-04 10:29:48 +00002375 // the constants. Equality comparisons are handled elsewhere. SGE/SLE/UGE/ULE
2376 // are canonicalized to SGT/SLT/UGT/ULT.
2377 if ((Add->hasNoSignedWrap() &&
2378 (Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_SLT)) ||
2379 (Add->hasNoUnsignedWrap() &&
2380 (Pred == ICmpInst::ICMP_UGT || Pred == ICmpInst::ICMP_ULT))) {
Sanjay Patel45b7e692017-02-12 16:40:30 +00002381 bool Overflow;
Nicola Zaghen9588ad92018-09-04 10:29:48 +00002382 APInt NewC =
2383 Cmp.isSigned() ? C.ssub_ov(*C2, Overflow) : C.usub_ov(*C2, Overflow);
Sanjay Patel45b7e692017-02-12 16:40:30 +00002384 // If there is overflow, the result must be true or false.
2385 // TODO: Can we assert there is no overflow because InstSimplify always
2386 // handles those cases?
2387 if (!Overflow)
2388 // icmp Pred (add nsw X, C2), C --> icmp Pred X, (C - C2)
2389 return new ICmpInst(Pred, X, ConstantInt::get(Ty, NewC));
2390 }
2391
Craig Topper8ed1aa92017-10-03 05:31:07 +00002392 auto CR = ConstantRange::makeExactICmpRegion(Pred, C).subtract(*C2);
Sanjay Patel60ea1b42016-08-16 22:34:42 +00002393 const APInt &Upper = CR.getUpper();
2394 const APInt &Lower = CR.getLower();
2395 if (Cmp.isSigned()) {
Craig Topperbcfd2d12017-04-20 16:56:25 +00002396 if (Lower.isSignMask())
Sanjay Patel4f7eb2a2016-08-17 15:24:30 +00002397 return new ICmpInst(ICmpInst::ICMP_SLT, X, ConstantInt::get(Ty, Upper));
Craig Topperbcfd2d12017-04-20 16:56:25 +00002398 if (Upper.isSignMask())
Sanjay Patel4f7eb2a2016-08-17 15:24:30 +00002399 return new ICmpInst(ICmpInst::ICMP_SGE, X, ConstantInt::get(Ty, Lower));
Sanjay Patel60ea1b42016-08-16 22:34:42 +00002400 } else {
2401 if (Lower.isMinValue())
Sanjay Patel4f7eb2a2016-08-17 15:24:30 +00002402 return new ICmpInst(ICmpInst::ICMP_ULT, X, ConstantInt::get(Ty, Upper));
Sanjay Patel60ea1b42016-08-16 22:34:42 +00002403 if (Upper.isMinValue())
Sanjay Patel4f7eb2a2016-08-17 15:24:30 +00002404 return new ICmpInst(ICmpInst::ICMP_UGE, X, ConstantInt::get(Ty, Lower));
Sanjay Patel60ea1b42016-08-16 22:34:42 +00002405 }
Sanjay Patela3f4f082016-08-16 17:54:36 +00002406
Sanjay Patel4f7eb2a2016-08-17 15:24:30 +00002407 // X+C <u C2 -> (X & -C2) == C
2408 // iff C & (C2-1) == 0
2409 // C2 is a power of 2
Craig Topper8ed1aa92017-10-03 05:31:07 +00002410 if (Pred == ICmpInst::ICMP_ULT && C.isPowerOf2() && (*C2 & (C - 1)) == 0)
2411 return new ICmpInst(ICmpInst::ICMP_EQ, Builder.CreateAnd(X, -C),
Sanjay Patel4f7eb2a2016-08-17 15:24:30 +00002412 ConstantExpr::getNeg(cast<Constant>(Y)));
2413
2414 // X+C >u C2 -> (X & ~C2) != C
2415 // iff C & C2 == 0
2416 // C2+1 is a power of 2
Craig Topper8ed1aa92017-10-03 05:31:07 +00002417 if (Pred == ICmpInst::ICMP_UGT && (C + 1).isPowerOf2() && (*C2 & C) == 0)
2418 return new ICmpInst(ICmpInst::ICMP_NE, Builder.CreateAnd(X, ~C),
Sanjay Patel4f7eb2a2016-08-17 15:24:30 +00002419 ConstantExpr::getNeg(cast<Constant>(Y)));
2420
Sanjay Patela3f4f082016-08-16 17:54:36 +00002421 return nullptr;
2422}
2423
Anna Thomasd67165c2017-06-23 13:41:45 +00002424bool InstCombiner::matchThreeWayIntCompare(SelectInst *SI, Value *&LHS,
2425 Value *&RHS, ConstantInt *&Less,
2426 ConstantInt *&Equal,
2427 ConstantInt *&Greater) {
2428 // TODO: Generalize this to work with other comparison idioms or ensure
2429 // they get canonicalized into this form.
2430
2431 // select i1 (a == b), i32 Equal, i32 (select i1 (a < b), i32 Less, i32
2432 // Greater), where Equal, Less and Greater are placeholders for any three
2433 // constants.
2434 ICmpInst::Predicate PredA, PredB;
2435 if (match(SI->getTrueValue(), m_ConstantInt(Equal)) &&
2436 match(SI->getCondition(), m_ICmp(PredA, m_Value(LHS), m_Value(RHS))) &&
2437 PredA == ICmpInst::ICMP_EQ &&
2438 match(SI->getFalseValue(),
2439 m_Select(m_ICmp(PredB, m_Specific(LHS), m_Specific(RHS)),
2440 m_ConstantInt(Less), m_ConstantInt(Greater))) &&
2441 PredB == ICmpInst::ICMP_SLT) {
2442 return true;
2443 }
2444 return false;
2445}
2446
2447Instruction *InstCombiner::foldICmpSelectConstant(ICmpInst &Cmp,
Craig Topper524c44f2017-08-23 05:46:07 +00002448 SelectInst *Select,
Anna Thomasd67165c2017-06-23 13:41:45 +00002449 ConstantInt *C) {
2450
2451 assert(C && "Cmp RHS should be a constant int!");
2452 // If we're testing a constant value against the result of a three way
2453 // comparison, the result can be expressed directly in terms of the
2454 // original values being compared. Note: We could possibly be more
2455 // aggressive here and remove the hasOneUse test. The original select is
2456 // really likely to simplify or sink when we remove a test of the result.
2457 Value *OrigLHS, *OrigRHS;
2458 ConstantInt *C1LessThan, *C2Equal, *C3GreaterThan;
2459 if (Cmp.hasOneUse() &&
Craig Topper524c44f2017-08-23 05:46:07 +00002460 matchThreeWayIntCompare(Select, OrigLHS, OrigRHS, C1LessThan, C2Equal,
2461 C3GreaterThan)) {
Anna Thomasd67165c2017-06-23 13:41:45 +00002462 assert(C1LessThan && C2Equal && C3GreaterThan);
2463
2464 bool TrueWhenLessThan =
2465 ConstantExpr::getCompare(Cmp.getPredicate(), C1LessThan, C)
2466 ->isAllOnesValue();
2467 bool TrueWhenEqual =
2468 ConstantExpr::getCompare(Cmp.getPredicate(), C2Equal, C)
2469 ->isAllOnesValue();
2470 bool TrueWhenGreaterThan =
2471 ConstantExpr::getCompare(Cmp.getPredicate(), C3GreaterThan, C)
2472 ->isAllOnesValue();
2473
2474 // This generates the new instruction that will replace the original Cmp
2475 // Instruction. Instead of enumerating the various combinations when
2476 // TrueWhenLessThan, TrueWhenEqual and TrueWhenGreaterThan are true versus
2477 // false, we rely on chaining of ORs and future passes of InstCombine to
2478 // simplify the OR further (i.e. a s< b || a == b becomes a s<= b).
2479
2480 // When none of the three constants satisfy the predicate for the RHS (C),
2481 // the entire original Cmp can be simplified to a false.
Craig Topperbb4069e2017-07-07 23:16:26 +00002482 Value *Cond = Builder.getFalse();
Anna Thomasd67165c2017-06-23 13:41:45 +00002483 if (TrueWhenLessThan)
Craig Topperbb4069e2017-07-07 23:16:26 +00002484 Cond = Builder.CreateOr(Cond, Builder.CreateICmp(ICmpInst::ICMP_SLT, OrigLHS, OrigRHS));
Anna Thomasd67165c2017-06-23 13:41:45 +00002485 if (TrueWhenEqual)
Craig Topperbb4069e2017-07-07 23:16:26 +00002486 Cond = Builder.CreateOr(Cond, Builder.CreateICmp(ICmpInst::ICMP_EQ, OrigLHS, OrigRHS));
Anna Thomasd67165c2017-06-23 13:41:45 +00002487 if (TrueWhenGreaterThan)
Craig Topperbb4069e2017-07-07 23:16:26 +00002488 Cond = Builder.CreateOr(Cond, Builder.CreateICmp(ICmpInst::ICMP_SGT, OrigLHS, OrigRHS));
Anna Thomasd67165c2017-06-23 13:41:45 +00002489
2490 return replaceInstUsesWith(Cmp, Cond);
2491 }
2492 return nullptr;
2493}
2494
Daniel Neilson901acfa2018-04-03 17:26:20 +00002495Instruction *InstCombiner::foldICmpBitCastConstant(ICmpInst &Cmp,
2496 BitCastInst *Bitcast,
2497 const APInt &C) {
2498 // Folding: icmp <pred> iN X, C
2499 // where X = bitcast <M x iK> (shufflevector <M x iK> %vec, undef, SC)) to iN
2500 // and C is a splat of a K-bit pattern
2501 // and SC is a constant vector = <C', C', C', ..., C'>
2502 // Into:
2503 // %E = extractelement <M x iK> %vec, i32 C'
2504 // icmp <pred> iK %E, trunc(C)
2505 if (!Bitcast->getType()->isIntegerTy() ||
2506 !Bitcast->getSrcTy()->isIntOrIntVectorTy())
2507 return nullptr;
2508
2509 Value *BCIOp = Bitcast->getOperand(0);
2510 Value *Vec = nullptr; // 1st vector arg of the shufflevector
2511 Constant *Mask = nullptr; // Mask arg of the shufflevector
2512 if (match(BCIOp,
2513 m_ShuffleVector(m_Value(Vec), m_Undef(), m_Constant(Mask)))) {
2514 // Check whether every element of Mask is the same constant
2515 if (auto *Elem = dyn_cast_or_null<ConstantInt>(Mask->getSplatValue())) {
2516 auto *VecTy = cast<VectorType>(BCIOp->getType());
2517 auto *EltTy = cast<IntegerType>(VecTy->getElementType());
2518 auto Pred = Cmp.getPredicate();
2519 if (C.isSplat(EltTy->getBitWidth())) {
2520 // Fold the icmp based on the value of C
2521 // If C is M copies of an iK sized bit pattern,
2522 // then:
2523 // => %E = extractelement <N x iK> %vec, i32 Elem
2524 // icmp <pred> iK %SplatVal, <pattern>
2525 Value *Extract = Builder.CreateExtractElement(Vec, Elem);
2526 Value *NewC = ConstantInt::get(EltTy, C.trunc(EltTy->getBitWidth()));
2527 return new ICmpInst(Pred, Extract, NewC);
2528 }
2529 }
2530 }
2531 return nullptr;
2532}
2533
Sanjay Patelf58f68c2016-09-10 15:03:44 +00002534/// Try to fold integer comparisons with a constant operand: icmp Pred X, C
2535/// where X is some kind of instruction.
2536Instruction *InstCombiner::foldICmpInstWithConstant(ICmpInst &Cmp) {
Sanjay Patelc9196c42016-08-22 21:24:29 +00002537 const APInt *C;
2538 if (!match(Cmp.getOperand(1), m_APInt(C)))
Sanjay Patel1e5b2d12016-08-16 16:08:11 +00002539 return nullptr;
2540
Craig Toppera94069f2017-08-23 05:46:08 +00002541 if (auto *BO = dyn_cast<BinaryOperator>(Cmp.getOperand(0))) {
Sanjay Patelc9196c42016-08-22 21:24:29 +00002542 switch (BO->getOpcode()) {
2543 case Instruction::Xor:
Craig Topper8ed1aa92017-10-03 05:31:07 +00002544 if (Instruction *I = foldICmpXorConstant(Cmp, BO, *C))
Sanjay Patelc9196c42016-08-22 21:24:29 +00002545 return I;
2546 break;
2547 case Instruction::And:
Craig Topper8ed1aa92017-10-03 05:31:07 +00002548 if (Instruction *I = foldICmpAndConstant(Cmp, BO, *C))
Sanjay Patelc9196c42016-08-22 21:24:29 +00002549 return I;
2550 break;
2551 case Instruction::Or:
Craig Topper8ed1aa92017-10-03 05:31:07 +00002552 if (Instruction *I = foldICmpOrConstant(Cmp, BO, *C))
Sanjay Patelc9196c42016-08-22 21:24:29 +00002553 return I;
2554 break;
2555 case Instruction::Mul:
Craig Topper8ed1aa92017-10-03 05:31:07 +00002556 if (Instruction *I = foldICmpMulConstant(Cmp, BO, *C))
Sanjay Patelc9196c42016-08-22 21:24:29 +00002557 return I;
2558 break;
2559 case Instruction::Shl:
Craig Topper8ed1aa92017-10-03 05:31:07 +00002560 if (Instruction *I = foldICmpShlConstant(Cmp, BO, *C))
Sanjay Patelc9196c42016-08-22 21:24:29 +00002561 return I;
2562 break;
2563 case Instruction::LShr:
2564 case Instruction::AShr:
Craig Topper8ed1aa92017-10-03 05:31:07 +00002565 if (Instruction *I = foldICmpShrConstant(Cmp, BO, *C))
Sanjay Patelc9196c42016-08-22 21:24:29 +00002566 return I;
2567 break;
2568 case Instruction::UDiv:
Craig Topper8ed1aa92017-10-03 05:31:07 +00002569 if (Instruction *I = foldICmpUDivConstant(Cmp, BO, *C))
Sanjay Patelc9196c42016-08-22 21:24:29 +00002570 return I;
2571 LLVM_FALLTHROUGH;
2572 case Instruction::SDiv:
Craig Topper8ed1aa92017-10-03 05:31:07 +00002573 if (Instruction *I = foldICmpDivConstant(Cmp, BO, *C))
Sanjay Patelc9196c42016-08-22 21:24:29 +00002574 return I;
2575 break;
2576 case Instruction::Sub:
Craig Topper8ed1aa92017-10-03 05:31:07 +00002577 if (Instruction *I = foldICmpSubConstant(Cmp, BO, *C))
Sanjay Patelc9196c42016-08-22 21:24:29 +00002578 return I;
2579 break;
2580 case Instruction::Add:
Craig Topper8ed1aa92017-10-03 05:31:07 +00002581 if (Instruction *I = foldICmpAddConstant(Cmp, BO, *C))
Sanjay Patelc9196c42016-08-22 21:24:29 +00002582 return I;
2583 break;
2584 default:
2585 break;
2586 }
Sanjay Patelf58f68c2016-09-10 15:03:44 +00002587 // TODO: These folds could be refactored to be part of the above calls.
Craig Topper8ed1aa92017-10-03 05:31:07 +00002588 if (Instruction *I = foldICmpBinOpEqualityWithConstant(Cmp, BO, *C))
Sanjay Patelf58f68c2016-09-10 15:03:44 +00002589 return I;
Chris Lattner2188e402010-01-04 07:37:31 +00002590 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00002591
Anna Thomasd67165c2017-06-23 13:41:45 +00002592 // Match against CmpInst LHS being instructions other than binary operators.
Craig Topper524c44f2017-08-23 05:46:07 +00002593
2594 if (auto *SI = dyn_cast<SelectInst>(Cmp.getOperand(0))) {
2595 // For now, we only support constant integers while folding the
2596 // ICMP(SELECT)) pattern. We can extend this to support vector of integers
2597 // similar to the cases handled by binary ops above.
2598 if (ConstantInt *ConstRHS = dyn_cast<ConstantInt>(Cmp.getOperand(1)))
2599 if (Instruction *I = foldICmpSelectConstant(Cmp, SI, ConstRHS))
Anna Thomasd67165c2017-06-23 13:41:45 +00002600 return I;
Craig Topper524c44f2017-08-23 05:46:07 +00002601 }
2602
2603 if (auto *TI = dyn_cast<TruncInst>(Cmp.getOperand(0))) {
Craig Topper8ed1aa92017-10-03 05:31:07 +00002604 if (Instruction *I = foldICmpTruncConstant(Cmp, TI, *C))
Craig Topper524c44f2017-08-23 05:46:07 +00002605 return I;
Anna Thomasd67165c2017-06-23 13:41:45 +00002606 }
Sanjay Patelc9196c42016-08-22 21:24:29 +00002607
Daniel Neilson901acfa2018-04-03 17:26:20 +00002608 if (auto *BCI = dyn_cast<BitCastInst>(Cmp.getOperand(0))) {
2609 if (Instruction *I = foldICmpBitCastConstant(Cmp, BCI, *C))
2610 return I;
2611 }
2612
Nikita Popov6515db22019-01-19 09:56:01 +00002613 if (auto *II = dyn_cast<IntrinsicInst>(Cmp.getOperand(0)))
2614 if (Instruction *I = foldICmpIntrinsicWithConstant(Cmp, II, *C))
2615 return I;
Sanjay Patelf58f68c2016-09-10 15:03:44 +00002616
Sanjay Patel1710e7c2016-07-21 17:15:49 +00002617 return nullptr;
2618}
Jim Grosbach129c52a2011-09-30 18:09:53 +00002619
Sanjay Patel0a3d72b2016-09-10 15:33:39 +00002620/// Fold an icmp equality instruction with binary operator LHS and constant RHS:
2621/// icmp eq/ne BO, C.
2622Instruction *InstCombiner::foldICmpBinOpEqualityWithConstant(ICmpInst &Cmp,
2623 BinaryOperator *BO,
Craig Topper8ed1aa92017-10-03 05:31:07 +00002624 const APInt &C) {
Sanjay Patel0a3d72b2016-09-10 15:33:39 +00002625 // TODO: Some of these folds could work with arbitrary constants, but this
2626 // function is limited to scalar and vector splat constants.
2627 if (!Cmp.isEquality())
Sanjay Patel1710e7c2016-07-21 17:15:49 +00002628 return nullptr;
2629
Sanjay Patel0a3d72b2016-09-10 15:33:39 +00002630 ICmpInst::Predicate Pred = Cmp.getPredicate();
2631 bool isICMP_NE = Pred == ICmpInst::ICMP_NE;
2632 Constant *RHS = cast<Constant>(Cmp.getOperand(1));
Sanjay Patel51a767c2016-08-03 17:23:08 +00002633 Value *BOp0 = BO->getOperand(0), *BOp1 = BO->getOperand(1);
Sanjay Patel1710e7c2016-07-21 17:15:49 +00002634
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002635 switch (BO->getOpcode()) {
2636 case Instruction::SRem:
2637 // If we have a signed (X % (2^c)) == 0, turn it into an unsigned one.
Craig Topper8ed1aa92017-10-03 05:31:07 +00002638 if (C.isNullValue() && BO->hasOneUse()) {
Sanjay Patel2e9675f2016-08-03 19:48:40 +00002639 const APInt *BOC;
2640 if (match(BOp1, m_APInt(BOC)) && BOC->sgt(1) && BOC->isPowerOf2()) {
Craig Topperbb4069e2017-07-07 23:16:26 +00002641 Value *NewRem = Builder.CreateURem(BOp0, BOp1, BO->getName());
Sanjay Patel0a3d72b2016-09-10 15:33:39 +00002642 return new ICmpInst(Pred, NewRem,
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002643 Constant::getNullValue(BO->getType()));
Chris Lattner2188e402010-01-04 07:37:31 +00002644 }
Sanjay Patel1710e7c2016-07-21 17:15:49 +00002645 }
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002646 break;
Sanjay Patel00a324e2016-08-03 22:08:44 +00002647 case Instruction::Add: {
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002648 // Replace ((add A, B) != C) with (A != C-B) if B & C are constants.
Sanjay Patel00a324e2016-08-03 22:08:44 +00002649 const APInt *BOC;
2650 if (match(BOp1, m_APInt(BOC))) {
2651 if (BO->hasOneUse()) {
2652 Constant *SubC = ConstantExpr::getSub(RHS, cast<Constant>(BOp1));
Sanjay Patel0a3d72b2016-09-10 15:33:39 +00002653 return new ICmpInst(Pred, BOp0, SubC);
Sanjay Patel00a324e2016-08-03 22:08:44 +00002654 }
Craig Topper8ed1aa92017-10-03 05:31:07 +00002655 } else if (C.isNullValue()) {
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002656 // Replace ((add A, B) != 0) with (A != -B) if A or B is
2657 // efficiently invertible, or if the add has just this one use.
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002658 if (Value *NegVal = dyn_castNegVal(BOp1))
Sanjay Patel0a3d72b2016-09-10 15:33:39 +00002659 return new ICmpInst(Pred, BOp0, NegVal);
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002660 if (Value *NegVal = dyn_castNegVal(BOp0))
Sanjay Patel0a3d72b2016-09-10 15:33:39 +00002661 return new ICmpInst(Pred, NegVal, BOp1);
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002662 if (BO->hasOneUse()) {
Craig Topperbb4069e2017-07-07 23:16:26 +00002663 Value *Neg = Builder.CreateNeg(BOp1);
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002664 Neg->takeName(BO);
Sanjay Patel0a3d72b2016-09-10 15:33:39 +00002665 return new ICmpInst(Pred, BOp0, Neg);
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002666 }
2667 }
2668 break;
Sanjay Patel00a324e2016-08-03 22:08:44 +00002669 }
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002670 case Instruction::Xor:
2671 if (BO->hasOneUse()) {
Sanjay Patel51a767c2016-08-03 17:23:08 +00002672 if (Constant *BOC = dyn_cast<Constant>(BOp1)) {
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002673 // For the xor case, we can xor two constants together, eliminating
2674 // the explicit xor.
Sanjay Patel0a3d72b2016-09-10 15:33:39 +00002675 return new ICmpInst(Pred, BOp0, ConstantExpr::getXor(RHS, BOC));
Craig Topper8ed1aa92017-10-03 05:31:07 +00002676 } else if (C.isNullValue()) {
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002677 // Replace ((xor A, B) != 0) with (A != B)
Sanjay Patel0a3d72b2016-09-10 15:33:39 +00002678 return new ICmpInst(Pred, BOp0, BOp1);
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002679 }
2680 }
2681 break;
2682 case Instruction::Sub:
2683 if (BO->hasOneUse()) {
Sanjay Patel9d591d12016-08-04 15:19:25 +00002684 const APInt *BOC;
2685 if (match(BOp0, m_APInt(BOC))) {
Sanjay Patel362ff5c2016-09-15 17:01:17 +00002686 // Replace ((sub BOC, B) != C) with (B != BOC-C).
Sanjay Patel9d591d12016-08-04 15:19:25 +00002687 Constant *SubC = ConstantExpr::getSub(cast<Constant>(BOp0), RHS);
Sanjay Patel0a3d72b2016-09-10 15:33:39 +00002688 return new ICmpInst(Pred, BOp1, SubC);
Craig Topper8ed1aa92017-10-03 05:31:07 +00002689 } else if (C.isNullValue()) {
Sanjay Patel362ff5c2016-09-15 17:01:17 +00002690 // Replace ((sub A, B) != 0) with (A != B).
Sanjay Patel0a3d72b2016-09-10 15:33:39 +00002691 return new ICmpInst(Pred, BOp0, BOp1);
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002692 }
2693 }
2694 break;
Sanjay Patelb3de75d2016-08-04 19:12:12 +00002695 case Instruction::Or: {
2696 const APInt *BOC;
2697 if (match(BOp1, m_APInt(BOC)) && BO->hasOneUse() && RHS->isAllOnesValue()) {
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002698 // Comparing if all bits outside of a constant mask are set?
2699 // Replace (X | C) == -1 with (X & ~C) == ~C.
2700 // This removes the -1 constant.
Sanjay Patelb3de75d2016-08-04 19:12:12 +00002701 Constant *NotBOC = ConstantExpr::getNot(cast<Constant>(BOp1));
Craig Topperbb4069e2017-07-07 23:16:26 +00002702 Value *And = Builder.CreateAnd(BOp0, NotBOC);
Sanjay Patel0a3d72b2016-09-10 15:33:39 +00002703 return new ICmpInst(Pred, And, NotBOC);
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002704 }
2705 break;
Sanjay Patelb3de75d2016-08-04 19:12:12 +00002706 }
Sanjay Pateld938e882016-08-04 20:05:02 +00002707 case Instruction::And: {
2708 const APInt *BOC;
2709 if (match(BOp1, m_APInt(BOC))) {
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002710 // If we have ((X & C) == C), turn it into ((X & C) != 0).
Craig Topper8ed1aa92017-10-03 05:31:07 +00002711 if (C == *BOC && C.isPowerOf2())
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002712 return new ICmpInst(isICMP_NE ? ICmpInst::ICMP_EQ : ICmpInst::ICMP_NE,
Sanjay Patelab50a932016-08-02 22:38:33 +00002713 BO, Constant::getNullValue(RHS->getType()));
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002714
2715 // Don't perform the following transforms if the AND has multiple uses
2716 if (!BO->hasOneUse())
2717 break;
2718
2719 // Replace (and X, (1 << size(X)-1) != 0) with x s< 0
Craig Topperbcfd2d12017-04-20 16:56:25 +00002720 if (BOC->isSignMask()) {
Sanjay Patel51a767c2016-08-03 17:23:08 +00002721 Constant *Zero = Constant::getNullValue(BOp0->getType());
Sanjay Patel0a3d72b2016-09-10 15:33:39 +00002722 auto NewPred = isICMP_NE ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_SGE;
2723 return new ICmpInst(NewPred, BOp0, Zero);
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002724 }
2725
2726 // ((X & ~7) == 0) --> X < 8
Craig Topper8ed1aa92017-10-03 05:31:07 +00002727 if (C.isNullValue() && (~(*BOC) + 1).isPowerOf2()) {
Sanjay Pateld938e882016-08-04 20:05:02 +00002728 Constant *NegBOC = ConstantExpr::getNeg(cast<Constant>(BOp1));
Sanjay Patel0a3d72b2016-09-10 15:33:39 +00002729 auto NewPred = isICMP_NE ? ICmpInst::ICMP_UGE : ICmpInst::ICMP_ULT;
2730 return new ICmpInst(NewPred, BOp0, NegBOC);
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002731 }
2732 }
2733 break;
Sanjay Pateld938e882016-08-04 20:05:02 +00002734 }
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002735 case Instruction::Mul:
Craig Topper8ed1aa92017-10-03 05:31:07 +00002736 if (C.isNullValue() && BO->hasNoSignedWrap()) {
Sanjay Patel3bade132016-08-04 22:19:27 +00002737 const APInt *BOC;
Craig Topper73ba1c82017-06-07 07:40:37 +00002738 if (match(BOp1, m_APInt(BOC)) && !BOC->isNullValue()) {
Sanjay Patel3bade132016-08-04 22:19:27 +00002739 // The trivial case (mul X, 0) is handled by InstSimplify.
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002740 // General case : (mul X, C) != 0 iff X != 0
2741 // (mul X, C) == 0 iff X == 0
Sanjay Patel0a3d72b2016-09-10 15:33:39 +00002742 return new ICmpInst(Pred, BOp0, Constant::getNullValue(RHS->getType()));
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002743 }
2744 }
2745 break;
Sanjay Patel6ebd5852016-07-23 00:28:39 +00002746 case Instruction::UDiv:
Craig Topper8ed1aa92017-10-03 05:31:07 +00002747 if (C.isNullValue()) {
Sanjay Patel6ebd5852016-07-23 00:28:39 +00002748 // (icmp eq/ne (udiv A, B), 0) -> (icmp ugt/ule i32 B, A)
Sanjay Patel0a3d72b2016-09-10 15:33:39 +00002749 auto NewPred = isICMP_NE ? ICmpInst::ICMP_ULE : ICmpInst::ICMP_UGT;
2750 return new ICmpInst(NewPred, BOp1, BOp0);
Sanjay Patel6ebd5852016-07-23 00:28:39 +00002751 }
2752 break;
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002753 default:
2754 break;
2755 }
2756 return nullptr;
2757}
2758
Nikita Popov6515db22019-01-19 09:56:01 +00002759/// Fold an equality icmp with LLVM intrinsic and constant operand.
2760Instruction *InstCombiner::foldICmpEqIntrinsicWithConstant(ICmpInst &Cmp,
2761 IntrinsicInst *II,
2762 const APInt &C) {
Sanjay Patelb51e0722017-07-02 16:05:11 +00002763 Type *Ty = II->getType();
Nikita Popov20853a72018-12-18 19:59:50 +00002764 unsigned BitWidth = C.getBitWidth();
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002765 switch (II->getIntrinsicID()) {
2766 case Intrinsic::bswap:
2767 Worklist.Add(II);
Sanjay Patel0a3d72b2016-09-10 15:33:39 +00002768 Cmp.setOperand(0, II->getArgOperand(0));
Craig Topper8ed1aa92017-10-03 05:31:07 +00002769 Cmp.setOperand(1, ConstantInt::get(Ty, C.byteSwap()));
Sanjay Patel0a3d72b2016-09-10 15:33:39 +00002770 return &Cmp;
Sanjay Patelb51e0722017-07-02 16:05:11 +00002771
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002772 case Intrinsic::ctlz:
Nikita Popov20853a72018-12-18 19:59:50 +00002773 case Intrinsic::cttz: {
Amaury Sechet6bea6742016-08-04 05:27:20 +00002774 // ctz(A) == bitwidth(A) -> A == 0 and likewise for !=
Nikita Popov20853a72018-12-18 19:59:50 +00002775 if (C == BitWidth) {
Sanjay Patel1710e7c2016-07-21 17:15:49 +00002776 Worklist.Add(II);
Sanjay Patel0a3d72b2016-09-10 15:33:39 +00002777 Cmp.setOperand(0, II->getArgOperand(0));
Sanjay Patelb51e0722017-07-02 16:05:11 +00002778 Cmp.setOperand(1, ConstantInt::getNullValue(Ty));
Sanjay Patel0a3d72b2016-09-10 15:33:39 +00002779 return &Cmp;
Chris Lattner2188e402010-01-04 07:37:31 +00002780 }
Nikita Popov20853a72018-12-18 19:59:50 +00002781
2782 // ctz(A) == C -> A & Mask1 == Mask2, where Mask2 only has bit C set
2783 // and Mask1 has bits 0..C+1 set. Similar for ctl, but for high bits.
2784 // Limit to one use to ensure we don't increase instruction count.
2785 unsigned Num = C.getLimitedValue(BitWidth);
2786 if (Num != BitWidth && II->hasOneUse()) {
2787 bool IsTrailing = II->getIntrinsicID() == Intrinsic::cttz;
2788 APInt Mask1 = IsTrailing ? APInt::getLowBitsSet(BitWidth, Num + 1)
2789 : APInt::getHighBitsSet(BitWidth, Num + 1);
2790 APInt Mask2 = IsTrailing
2791 ? APInt::getOneBitSet(BitWidth, Num)
2792 : APInt::getOneBitSet(BitWidth, BitWidth - Num - 1);
2793 Cmp.setOperand(0, Builder.CreateAnd(II->getArgOperand(0), Mask1));
2794 Cmp.setOperand(1, ConstantInt::get(Ty, Mask2));
2795 Worklist.Add(II);
2796 return &Cmp;
2797 }
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002798 break;
Nikita Popov20853a72018-12-18 19:59:50 +00002799 }
Sanjay Patelb51e0722017-07-02 16:05:11 +00002800
Amaury Sechet6bea6742016-08-04 05:27:20 +00002801 case Intrinsic::ctpop: {
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002802 // popcount(A) == 0 -> A == 0 and likewise for !=
Amaury Sechet6bea6742016-08-04 05:27:20 +00002803 // popcount(A) == bitwidth(A) -> A == -1 and likewise for !=
Craig Topper8ed1aa92017-10-03 05:31:07 +00002804 bool IsZero = C.isNullValue();
Nikita Popov20853a72018-12-18 19:59:50 +00002805 if (IsZero || C == BitWidth) {
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002806 Worklist.Add(II);
Sanjay Patel0a3d72b2016-09-10 15:33:39 +00002807 Cmp.setOperand(0, II->getArgOperand(0));
Sanjay Patelb51e0722017-07-02 16:05:11 +00002808 auto *NewOp =
2809 IsZero ? Constant::getNullValue(Ty) : Constant::getAllOnesValue(Ty);
Sanjay Patel0a3d72b2016-09-10 15:33:39 +00002810 Cmp.setOperand(1, NewOp);
2811 return &Cmp;
Amaury Sechet6bea6742016-08-04 05:27:20 +00002812 }
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002813 break;
Sanjay Patel0a3d72b2016-09-10 15:33:39 +00002814 }
Sanjay Patel18fa9d32016-07-21 23:27:36 +00002815 default:
2816 break;
Chris Lattner2188e402010-01-04 07:37:31 +00002817 }
Sanjay Patelb51e0722017-07-02 16:05:11 +00002818
Craig Topperf40110f2014-04-25 05:29:35 +00002819 return nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +00002820}
2821
Nikita Popov6515db22019-01-19 09:56:01 +00002822/// Fold an icmp with LLVM intrinsic and constant operand: icmp Pred II, C.
2823Instruction *InstCombiner::foldICmpIntrinsicWithConstant(ICmpInst &Cmp,
2824 IntrinsicInst *II,
2825 const APInt &C) {
2826 if (Cmp.isEquality())
2827 return foldICmpEqIntrinsicWithConstant(Cmp, II, C);
2828
2829 Type *Ty = II->getType();
2830 unsigned BitWidth = C.getBitWidth();
2831 switch (II->getIntrinsicID()) {
2832 case Intrinsic::ctlz: {
2833 // ctlz(0bXXXXXXXX) > 3 -> 0bXXXXXXXX < 0b00010000
2834 if (Cmp.getPredicate() == ICmpInst::ICMP_UGT && C.ult(BitWidth)) {
2835 unsigned Num = C.getLimitedValue();
2836 APInt Limit = APInt::getOneBitSet(BitWidth, BitWidth - Num - 1);
2837 return CmpInst::Create(Instruction::ICmp, ICmpInst::ICMP_ULT,
2838 II->getArgOperand(0), ConstantInt::get(Ty, Limit));
2839 }
2840
2841 // ctlz(0bXXXXXXXX) < 3 -> 0bXXXXXXXX > 0b00011111
2842 if (Cmp.getPredicate() == ICmpInst::ICMP_ULT &&
2843 C.uge(1) && C.ule(BitWidth)) {
2844 unsigned Num = C.getLimitedValue();
2845 APInt Limit = APInt::getLowBitsSet(BitWidth, BitWidth - Num);
2846 return CmpInst::Create(Instruction::ICmp, ICmpInst::ICMP_UGT,
2847 II->getArgOperand(0), ConstantInt::get(Ty, Limit));
2848 }
2849 break;
2850 }
2851 case Intrinsic::cttz: {
2852 // Limit to one use to ensure we don't increase instruction count.
2853 if (!II->hasOneUse())
2854 return nullptr;
2855
2856 // cttz(0bXXXXXXXX) > 3 -> 0bXXXXXXXX & 0b00001111 == 0
2857 if (Cmp.getPredicate() == ICmpInst::ICMP_UGT && C.ult(BitWidth)) {
2858 APInt Mask = APInt::getLowBitsSet(BitWidth, C.getLimitedValue() + 1);
2859 return CmpInst::Create(Instruction::ICmp, ICmpInst::ICMP_EQ,
2860 Builder.CreateAnd(II->getArgOperand(0), Mask),
2861 ConstantInt::getNullValue(Ty));
2862 }
2863
2864 // cttz(0bXXXXXXXX) < 3 -> 0bXXXXXXXX & 0b00000111 != 0
2865 if (Cmp.getPredicate() == ICmpInst::ICMP_ULT &&
2866 C.uge(1) && C.ule(BitWidth)) {
2867 APInt Mask = APInt::getLowBitsSet(BitWidth, C.getLimitedValue());
2868 return CmpInst::Create(Instruction::ICmp, ICmpInst::ICMP_NE,
2869 Builder.CreateAnd(II->getArgOperand(0), Mask),
2870 ConstantInt::getNullValue(Ty));
2871 }
2872 break;
2873 }
2874 default:
2875 break;
2876 }
2877
2878 return nullptr;
2879}
2880
Sanjay Patel10494b22016-09-16 16:10:22 +00002881/// Handle icmp with constant (but not simple integer constant) RHS.
2882Instruction *InstCombiner::foldICmpInstWithConstantNotInt(ICmpInst &I) {
2883 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
2884 Constant *RHSC = dyn_cast<Constant>(Op1);
2885 Instruction *LHSI = dyn_cast<Instruction>(Op0);
2886 if (!RHSC || !LHSI)
2887 return nullptr;
2888
2889 switch (LHSI->getOpcode()) {
2890 case Instruction::GetElementPtr:
2891 // icmp pred GEP (P, int 0, int 0, int 0), null -> icmp pred P, null
2892 if (RHSC->isNullValue() &&
2893 cast<GetElementPtrInst>(LHSI)->hasAllZeroIndices())
2894 return new ICmpInst(
2895 I.getPredicate(), LHSI->getOperand(0),
2896 Constant::getNullValue(LHSI->getOperand(0)->getType()));
2897 break;
2898 case Instruction::PHI:
2899 // Only fold icmp into the PHI if the phi and icmp are in the same
2900 // block. If in the same block, we're encouraging jump threading. If
2901 // not, we are just pessimizing the code by making an i1 phi.
2902 if (LHSI->getParent() == I.getParent())
Craig Topperfb71b7d2017-04-14 19:20:12 +00002903 if (Instruction *NV = foldOpIntoPhi(I, cast<PHINode>(LHSI)))
Sanjay Patel10494b22016-09-16 16:10:22 +00002904 return NV;
2905 break;
2906 case Instruction::Select: {
2907 // If either operand of the select is a constant, we can fold the
2908 // comparison into the select arms, which will cause one to be
2909 // constant folded and the select turned into a bitwise or.
2910 Value *Op1 = nullptr, *Op2 = nullptr;
2911 ConstantInt *CI = nullptr;
2912 if (Constant *C = dyn_cast<Constant>(LHSI->getOperand(1))) {
2913 Op1 = ConstantExpr::getICmp(I.getPredicate(), C, RHSC);
2914 CI = dyn_cast<ConstantInt>(Op1);
2915 }
2916 if (Constant *C = dyn_cast<Constant>(LHSI->getOperand(2))) {
2917 Op2 = ConstantExpr::getICmp(I.getPredicate(), C, RHSC);
2918 CI = dyn_cast<ConstantInt>(Op2);
2919 }
2920
2921 // We only want to perform this transformation if it will not lead to
2922 // additional code. This is true if either both sides of the select
2923 // fold to a constant (in which case the icmp is replaced with a select
2924 // which will usually simplify) or this is the only user of the
2925 // select (in which case we are trading a select+icmp for a simpler
2926 // select+icmp) or all uses of the select can be replaced based on
2927 // dominance information ("Global cases").
2928 bool Transform = false;
2929 if (Op1 && Op2)
2930 Transform = true;
2931 else if (Op1 || Op2) {
2932 // Local case
2933 if (LHSI->hasOneUse())
2934 Transform = true;
2935 // Global cases
2936 else if (CI && !CI->isZero())
2937 // When Op1 is constant try replacing select with second operand.
2938 // Otherwise Op2 is constant and try replacing select with first
2939 // operand.
2940 Transform =
2941 replacedSelectWithOperand(cast<SelectInst>(LHSI), &I, Op1 ? 2 : 1);
2942 }
2943 if (Transform) {
2944 if (!Op1)
Craig Topperbb4069e2017-07-07 23:16:26 +00002945 Op1 = Builder.CreateICmp(I.getPredicate(), LHSI->getOperand(1), RHSC,
2946 I.getName());
Sanjay Patel10494b22016-09-16 16:10:22 +00002947 if (!Op2)
Craig Topperbb4069e2017-07-07 23:16:26 +00002948 Op2 = Builder.CreateICmp(I.getPredicate(), LHSI->getOperand(2), RHSC,
2949 I.getName());
Sanjay Patel10494b22016-09-16 16:10:22 +00002950 return SelectInst::Create(LHSI->getOperand(0), Op1, Op2);
2951 }
2952 break;
2953 }
2954 case Instruction::IntToPtr:
2955 // icmp pred inttoptr(X), null -> icmp pred X, 0
2956 if (RHSC->isNullValue() &&
2957 DL.getIntPtrType(RHSC->getType()) == LHSI->getOperand(0)->getType())
2958 return new ICmpInst(
2959 I.getPredicate(), LHSI->getOperand(0),
2960 Constant::getNullValue(LHSI->getOperand(0)->getType()));
2961 break;
2962
2963 case Instruction::Load:
2964 // Try to optimize things like "A[i] > 4" to index computations.
2965 if (GetElementPtrInst *GEP =
2966 dyn_cast<GetElementPtrInst>(LHSI->getOperand(0))) {
2967 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(GEP->getOperand(0)))
2968 if (GV->isConstant() && GV->hasDefinitiveInitializer() &&
2969 !cast<LoadInst>(LHSI)->isVolatile())
2970 if (Instruction *Res = foldCmpLoadFromIndexedGlobal(GEP, GV, I))
2971 return Res;
2972 }
2973 break;
2974 }
2975
2976 return nullptr;
2977}
2978
Roman Lebedev68d54cf2018-07-11 19:05:04 +00002979/// Some comparisons can be simplified.
2980/// In this case, we are looking for comparisons that look like
2981/// a check for a lossy truncation.
2982/// Folds:
Roman Lebedev183a4652018-09-19 13:35:27 +00002983/// icmp SrcPred (x & Mask), x to icmp DstPred x, Mask
2984/// Where Mask is some pattern that produces all-ones in low bits:
2985/// (-1 >> y)
Roman Lebedevf50023d2018-09-19 13:35:46 +00002986/// ((-1 << y) >> y) <- non-canonical, has extra uses
Roman Lebedev183a4652018-09-19 13:35:27 +00002987/// ~(-1 << y)
Roman Lebedevca2bdb02018-09-19 13:35:40 +00002988/// ((1 << y) + (-1)) <- non-canonical, has extra uses
Roman Lebedev68d54cf2018-07-11 19:05:04 +00002989/// The Mask can be a constant, too.
Roman Lebedevc7bc4c02018-07-14 20:08:52 +00002990/// For some predicates, the operands are commutative.
2991/// For others, x can only be on a specific side.
Roman Lebedev68d54cf2018-07-11 19:05:04 +00002992static Value *foldICmpWithLowBitMaskedVal(ICmpInst &I,
2993 InstCombiner::BuilderTy &Builder) {
2994 ICmpInst::Predicate SrcPred;
Roman Lebedevf50023d2018-09-19 13:35:46 +00002995 Value *X, *M, *Y;
2996 auto m_VariableMask = m_CombineOr(
2997 m_CombineOr(m_Not(m_Shl(m_AllOnes(), m_Value())),
2998 m_Add(m_Shl(m_One(), m_Value()), m_AllOnes())),
2999 m_CombineOr(m_LShr(m_AllOnes(), m_Value()),
3000 m_LShr(m_Shl(m_AllOnes(), m_Value(Y)), m_Deferred(Y))));
Roman Lebedev183a4652018-09-19 13:35:27 +00003001 auto m_Mask = m_CombineOr(m_VariableMask, m_LowBitMask());
Roman Lebedev68d54cf2018-07-11 19:05:04 +00003002 if (!match(&I, m_c_ICmp(SrcPred,
3003 m_c_And(m_CombineAnd(m_Mask, m_Value(M)), m_Value(X)),
3004 m_Deferred(X))))
3005 return nullptr;
3006
3007 ICmpInst::Predicate DstPred;
3008 switch (SrcPred) {
3009 case ICmpInst::Predicate::ICMP_EQ:
3010 // x & (-1 >> y) == x -> x u<= (-1 >> y)
3011 DstPred = ICmpInst::Predicate::ICMP_ULE;
3012 break;
Roman Lebedev74f899f2018-07-12 14:56:12 +00003013 case ICmpInst::Predicate::ICMP_NE:
3014 // x & (-1 >> y) != x -> x u> (-1 >> y)
3015 DstPred = ICmpInst::Predicate::ICMP_UGT;
3016 break;
Roman Lebedev74f611a2018-07-14 16:44:43 +00003017 case ICmpInst::Predicate::ICMP_UGT:
3018 // x u> x & (-1 >> y) -> x u> (-1 >> y)
3019 assert(X == I.getOperand(0) && "instsimplify took care of commut. variant");
3020 DstPred = ICmpInst::Predicate::ICMP_UGT;
3021 break;
Roman Lebedevfac48472018-07-14 12:20:06 +00003022 case ICmpInst::Predicate::ICMP_UGE:
3023 // x & (-1 >> y) u>= x -> x u<= (-1 >> y)
3024 assert(X == I.getOperand(1) && "instsimplify took care of commut. variant");
3025 DstPred = ICmpInst::Predicate::ICMP_ULE;
3026 break;
Roman Lebedeve3dc5872018-07-14 12:20:16 +00003027 case ICmpInst::Predicate::ICMP_ULT:
3028 // x & (-1 >> y) u< x -> x u> (-1 >> y)
3029 assert(X == I.getOperand(1) && "instsimplify took care of commut. variant");
3030 DstPred = ICmpInst::Predicate::ICMP_UGT;
3031 break;
Roman Lebedev0f5ec892018-07-14 16:44:54 +00003032 case ICmpInst::Predicate::ICMP_ULE:
3033 // x u<= x & (-1 >> y) -> x u<= (-1 >> y)
3034 assert(X == I.getOperand(0) && "instsimplify took care of commut. variant");
3035 DstPred = ICmpInst::Predicate::ICMP_ULE;
3036 break;
Roman Lebedev859e14a2018-07-14 20:08:16 +00003037 case ICmpInst::Predicate::ICMP_SGT:
3038 // x s> x & (-1 >> y) -> x s> (-1 >> y)
3039 if (X != I.getOperand(0)) // X must be on LHS of comparison!
3040 return nullptr; // Ignore the other case.
3041 DstPred = ICmpInst::Predicate::ICMP_SGT;
3042 break;
Roman Lebedevf1442612018-07-14 20:08:37 +00003043 case ICmpInst::Predicate::ICMP_SGE:
3044 // x & (-1 >> y) s>= x -> x s<= (-1 >> y)
3045 if (X != I.getOperand(1)) // X must be on RHS of comparison!
3046 return nullptr; // Ignore the other case.
Roman Lebedev7bf2fed2018-12-03 20:07:58 +00003047 if (!match(M, m_Constant())) // Can not do this fold with non-constant.
3048 return nullptr;
Roman Lebedev98cb1212018-12-06 08:14:24 +00003049 if (!match(M, m_NonNegative())) // Must not have any -1 vector elements.
3050 return nullptr;
Roman Lebedevf1442612018-07-14 20:08:37 +00003051 DstPred = ICmpInst::Predicate::ICMP_SLE;
3052 break;
Roman Lebedevb972fc32018-07-14 20:08:47 +00003053 case ICmpInst::Predicate::ICMP_SLT:
3054 // x & (-1 >> y) s< x -> x s> (-1 >> y)
3055 if (X != I.getOperand(1)) // X must be on RHS of comparison!
3056 return nullptr; // Ignore the other case.
Roman Lebedev7bf2fed2018-12-03 20:07:58 +00003057 if (!match(M, m_Constant())) // Can not do this fold with non-constant.
3058 return nullptr;
Roman Lebedev98cb1212018-12-06 08:14:24 +00003059 if (!match(M, m_NonNegative())) // Must not have any -1 vector elements.
3060 return nullptr;
Roman Lebedevb972fc32018-07-14 20:08:47 +00003061 DstPred = ICmpInst::Predicate::ICMP_SGT;
3062 break;
Roman Lebedev1e61e352018-07-14 20:08:26 +00003063 case ICmpInst::Predicate::ICMP_SLE:
3064 // x s<= x & (-1 >> y) -> x s<= (-1 >> y)
3065 if (X != I.getOperand(0)) // X must be on LHS of comparison!
3066 return nullptr; // Ignore the other case.
3067 DstPred = ICmpInst::Predicate::ICMP_SLE;
3068 break;
Roman Lebedev68d54cf2018-07-11 19:05:04 +00003069 default:
Roman Lebedevc7bc4c02018-07-14 20:08:52 +00003070 llvm_unreachable("All possible folds are handled.");
Roman Lebedev68d54cf2018-07-11 19:05:04 +00003071 }
3072
3073 return Builder.CreateICmp(DstPred, X, M);
3074}
3075
Roman Lebedev3cb87e92018-07-18 10:55:17 +00003076/// Some comparisons can be simplified.
3077/// In this case, we are looking for comparisons that look like
3078/// a check for a lossy signed truncation.
3079/// Folds: (MaskedBits is a constant.)
3080/// ((%x << MaskedBits) a>> MaskedBits) SrcPred %x
3081/// Into:
3082/// (add %x, (1 << (KeptBits-1))) DstPred (1 << KeptBits)
3083/// Where KeptBits = bitwidth(%x) - MaskedBits
3084static Value *
3085foldICmpWithTruncSignExtendedVal(ICmpInst &I,
3086 InstCombiner::BuilderTy &Builder) {
3087 ICmpInst::Predicate SrcPred;
3088 Value *X;
3089 const APInt *C0, *C1; // FIXME: non-splats, potentially with undef.
3090 // We are ok with 'shl' having multiple uses, but 'ashr' must be one-use.
3091 if (!match(&I, m_c_ICmp(SrcPred,
3092 m_OneUse(m_AShr(m_Shl(m_Value(X), m_APInt(C0)),
3093 m_APInt(C1))),
3094 m_Deferred(X))))
3095 return nullptr;
3096
3097 // Potential handling of non-splats: for each element:
3098 // * if both are undef, replace with constant 0.
3099 // Because (1<<0) is OK and is 1, and ((1<<0)>>1) is also OK and is 0.
3100 // * if both are not undef, and are different, bailout.
3101 // * else, only one is undef, then pick the non-undef one.
3102
3103 // The shift amount must be equal.
3104 if (*C0 != *C1)
3105 return nullptr;
3106 const APInt &MaskedBits = *C0;
3107 assert(MaskedBits != 0 && "shift by zero should be folded away already.");
3108
3109 ICmpInst::Predicate DstPred;
3110 switch (SrcPred) {
3111 case ICmpInst::Predicate::ICMP_EQ:
3112 // ((%x << MaskedBits) a>> MaskedBits) == %x
3113 // =>
3114 // (add %x, (1 << (KeptBits-1))) u< (1 << KeptBits)
3115 DstPred = ICmpInst::Predicate::ICMP_ULT;
3116 break;
3117 case ICmpInst::Predicate::ICMP_NE:
3118 // ((%x << MaskedBits) a>> MaskedBits) != %x
3119 // =>
3120 // (add %x, (1 << (KeptBits-1))) u>= (1 << KeptBits)
3121 DstPred = ICmpInst::Predicate::ICMP_UGE;
3122 break;
3123 // FIXME: are more folds possible?
3124 default:
3125 return nullptr;
3126 }
3127
3128 auto *XType = X->getType();
3129 const unsigned XBitWidth = XType->getScalarSizeInBits();
3130 const APInt BitWidth = APInt(XBitWidth, XBitWidth);
3131 assert(BitWidth.ugt(MaskedBits) && "shifts should leave some bits untouched");
3132
3133 // KeptBits = bitwidth(%x) - MaskedBits
3134 const APInt KeptBits = BitWidth - MaskedBits;
3135 assert(KeptBits.ugt(0) && KeptBits.ult(BitWidth) && "unreachable");
3136 // ICmpCst = (1 << KeptBits)
3137 const APInt ICmpCst = APInt(XBitWidth, 1).shl(KeptBits);
3138 assert(ICmpCst.isPowerOf2());
3139 // AddCst = (1 << (KeptBits-1))
3140 const APInt AddCst = ICmpCst.lshr(1);
3141 assert(AddCst.ult(ICmpCst) && AddCst.isPowerOf2());
3142
3143 // T0 = add %x, AddCst
3144 Value *T0 = Builder.CreateAdd(X, ConstantInt::get(XType, AddCst));
3145 // T1 = T0 DstPred ICmpCst
3146 Value *T1 = Builder.CreateICmp(DstPred, T0, ConstantInt::get(XType, ICmpCst));
3147
3148 return T1;
3149}
3150
Sanjay Patel10494b22016-09-16 16:10:22 +00003151/// Try to fold icmp (binop), X or icmp X, (binop).
Sanjay Patel2df38a82017-05-08 16:21:55 +00003152/// TODO: A large part of this logic is duplicated in InstSimplify's
3153/// simplifyICmpWithBinOp(). We should be able to share that and avoid the code
3154/// duplication.
Sanjay Patel10494b22016-09-16 16:10:22 +00003155Instruction *InstCombiner::foldICmpBinOp(ICmpInst &I) {
3156 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
3157
3158 // Special logic for binary operators.
3159 BinaryOperator *BO0 = dyn_cast<BinaryOperator>(Op0);
3160 BinaryOperator *BO1 = dyn_cast<BinaryOperator>(Op1);
3161 if (!BO0 && !BO1)
3162 return nullptr;
3163
Sanjay Patel2a062632017-05-08 16:33:42 +00003164 const CmpInst::Predicate Pred = I.getPredicate();
Sanjay Patel1cf07342018-09-11 22:40:20 +00003165 Value *X;
3166
3167 // Convert add-with-unsigned-overflow comparisons into a 'not' with compare.
3168 // (Op1 + X) <u Op1 --> ~Op1 <u X
3169 // Op0 >u (Op0 + X) --> X >u ~Op0
3170 if (match(Op0, m_OneUse(m_c_Add(m_Specific(Op1), m_Value(X)))) &&
3171 Pred == ICmpInst::ICMP_ULT)
3172 return new ICmpInst(Pred, Builder.CreateNot(Op1), X);
3173 if (match(Op1, m_OneUse(m_c_Add(m_Specific(Op0), m_Value(X)))) &&
3174 Pred == ICmpInst::ICMP_UGT)
3175 return new ICmpInst(Pred, X, Builder.CreateNot(Op0));
3176
Sanjay Patel10494b22016-09-16 16:10:22 +00003177 bool NoOp0WrapProblem = false, NoOp1WrapProblem = false;
3178 if (BO0 && isa<OverflowingBinaryOperator>(BO0))
3179 NoOp0WrapProblem =
3180 ICmpInst::isEquality(Pred) ||
3181 (CmpInst::isUnsigned(Pred) && BO0->hasNoUnsignedWrap()) ||
3182 (CmpInst::isSigned(Pred) && BO0->hasNoSignedWrap());
3183 if (BO1 && isa<OverflowingBinaryOperator>(BO1))
3184 NoOp1WrapProblem =
3185 ICmpInst::isEquality(Pred) ||
3186 (CmpInst::isUnsigned(Pred) && BO1->hasNoUnsignedWrap()) ||
3187 (CmpInst::isSigned(Pred) && BO1->hasNoSignedWrap());
3188
3189 // Analyze the case when either Op0 or Op1 is an add instruction.
3190 // Op0 = A + B (or A and B are null); Op1 = C + D (or C and D are null).
3191 Value *A = nullptr, *B = nullptr, *C = nullptr, *D = nullptr;
3192 if (BO0 && BO0->getOpcode() == Instruction::Add) {
3193 A = BO0->getOperand(0);
3194 B = BO0->getOperand(1);
3195 }
3196 if (BO1 && BO1->getOpcode() == Instruction::Add) {
3197 C = BO1->getOperand(0);
3198 D = BO1->getOperand(1);
3199 }
3200
Sanjay Patel10494b22016-09-16 16:10:22 +00003201 // icmp (X+Y), X -> icmp Y, 0 for equalities or if there is no overflow.
3202 if ((A == Op1 || B == Op1) && NoOp0WrapProblem)
3203 return new ICmpInst(Pred, A == Op1 ? B : A,
3204 Constant::getNullValue(Op1->getType()));
3205
3206 // icmp X, (X+Y) -> icmp 0, Y for equalities or if there is no overflow.
3207 if ((C == Op0 || D == Op0) && NoOp1WrapProblem)
3208 return new ICmpInst(Pred, Constant::getNullValue(Op0->getType()),
3209 C == Op0 ? D : C);
3210
3211 // icmp (X+Y), (X+Z) -> icmp Y, Z for equalities or if there is no overflow.
3212 if (A && C && (A == C || A == D || B == C || B == D) && NoOp0WrapProblem &&
3213 NoOp1WrapProblem &&
3214 // Try not to increase register pressure.
3215 BO0->hasOneUse() && BO1->hasOneUse()) {
3216 // Determine Y and Z in the form icmp (X+Y), (X+Z).
3217 Value *Y, *Z;
3218 if (A == C) {
3219 // C + B == C + D -> B == D
3220 Y = B;
3221 Z = D;
3222 } else if (A == D) {
3223 // D + B == C + D -> B == C
3224 Y = B;
3225 Z = C;
3226 } else if (B == C) {
3227 // A + C == C + D -> A == D
3228 Y = A;
3229 Z = D;
3230 } else {
3231 assert(B == D);
3232 // A + D == C + D -> A == C
3233 Y = A;
3234 Z = C;
3235 }
3236 return new ICmpInst(Pred, Y, Z);
3237 }
3238
3239 // icmp slt (X + -1), Y -> icmp sle X, Y
3240 if (A && NoOp0WrapProblem && Pred == CmpInst::ICMP_SLT &&
3241 match(B, m_AllOnes()))
3242 return new ICmpInst(CmpInst::ICMP_SLE, A, Op1);
3243
3244 // icmp sge (X + -1), Y -> icmp sgt X, Y
3245 if (A && NoOp0WrapProblem && Pred == CmpInst::ICMP_SGE &&
3246 match(B, m_AllOnes()))
3247 return new ICmpInst(CmpInst::ICMP_SGT, A, Op1);
3248
3249 // icmp sle (X + 1), Y -> icmp slt X, Y
3250 if (A && NoOp0WrapProblem && Pred == CmpInst::ICMP_SLE && match(B, m_One()))
3251 return new ICmpInst(CmpInst::ICMP_SLT, A, Op1);
3252
3253 // icmp sgt (X + 1), Y -> icmp sge X, Y
3254 if (A && NoOp0WrapProblem && Pred == CmpInst::ICMP_SGT && match(B, m_One()))
3255 return new ICmpInst(CmpInst::ICMP_SGE, A, Op1);
3256
3257 // icmp sgt X, (Y + -1) -> icmp sge X, Y
3258 if (C && NoOp1WrapProblem && Pred == CmpInst::ICMP_SGT &&
3259 match(D, m_AllOnes()))
3260 return new ICmpInst(CmpInst::ICMP_SGE, Op0, C);
3261
3262 // icmp sle X, (Y + -1) -> icmp slt X, Y
3263 if (C && NoOp1WrapProblem && Pred == CmpInst::ICMP_SLE &&
3264 match(D, m_AllOnes()))
3265 return new ICmpInst(CmpInst::ICMP_SLT, Op0, C);
3266
3267 // icmp sge X, (Y + 1) -> icmp sgt X, Y
3268 if (C && NoOp1WrapProblem && Pred == CmpInst::ICMP_SGE && match(D, m_One()))
3269 return new ICmpInst(CmpInst::ICMP_SGT, Op0, C);
3270
3271 // icmp slt X, (Y + 1) -> icmp sle X, Y
3272 if (C && NoOp1WrapProblem && Pred == CmpInst::ICMP_SLT && match(D, m_One()))
3273 return new ICmpInst(CmpInst::ICMP_SLE, Op0, C);
3274
Sanjay Patel40f40172017-01-13 23:25:46 +00003275 // TODO: The subtraction-related identities shown below also hold, but
3276 // canonicalization from (X -nuw 1) to (X + -1) means that the combinations
3277 // wouldn't happen even if they were implemented.
3278 //
3279 // icmp ult (X - 1), Y -> icmp ule X, Y
3280 // icmp uge (X - 1), Y -> icmp ugt X, Y
3281 // icmp ugt X, (Y - 1) -> icmp uge X, Y
3282 // icmp ule X, (Y - 1) -> icmp ult X, Y
3283
3284 // icmp ule (X + 1), Y -> icmp ult X, Y
3285 if (A && NoOp0WrapProblem && Pred == CmpInst::ICMP_ULE && match(B, m_One()))
3286 return new ICmpInst(CmpInst::ICMP_ULT, A, Op1);
3287
3288 // icmp ugt (X + 1), Y -> icmp uge X, Y
3289 if (A && NoOp0WrapProblem && Pred == CmpInst::ICMP_UGT && match(B, m_One()))
3290 return new ICmpInst(CmpInst::ICMP_UGE, A, Op1);
3291
3292 // icmp uge X, (Y + 1) -> icmp ugt X, Y
3293 if (C && NoOp1WrapProblem && Pred == CmpInst::ICMP_UGE && match(D, m_One()))
3294 return new ICmpInst(CmpInst::ICMP_UGT, Op0, C);
3295
3296 // icmp ult X, (Y + 1) -> icmp ule X, Y
3297 if (C && NoOp1WrapProblem && Pred == CmpInst::ICMP_ULT && match(D, m_One()))
3298 return new ICmpInst(CmpInst::ICMP_ULE, Op0, C);
3299
Sanjay Patel10494b22016-09-16 16:10:22 +00003300 // if C1 has greater magnitude than C2:
3301 // icmp (X + C1), (Y + C2) -> icmp (X + C3), Y
3302 // s.t. C3 = C1 - C2
3303 //
3304 // if C2 has greater magnitude than C1:
3305 // icmp (X + C1), (Y + C2) -> icmp X, (Y + C3)
3306 // s.t. C3 = C2 - C1
3307 if (A && C && NoOp0WrapProblem && NoOp1WrapProblem &&
3308 (BO0->hasOneUse() || BO1->hasOneUse()) && !I.isUnsigned())
3309 if (ConstantInt *C1 = dyn_cast<ConstantInt>(B))
3310 if (ConstantInt *C2 = dyn_cast<ConstantInt>(D)) {
3311 const APInt &AP1 = C1->getValue();
3312 const APInt &AP2 = C2->getValue();
3313 if (AP1.isNegative() == AP2.isNegative()) {
3314 APInt AP1Abs = C1->getValue().abs();
3315 APInt AP2Abs = C2->getValue().abs();
3316 if (AP1Abs.uge(AP2Abs)) {
Craig Topperbb4069e2017-07-07 23:16:26 +00003317 ConstantInt *C3 = Builder.getInt(AP1 - AP2);
3318 Value *NewAdd = Builder.CreateNSWAdd(A, C3);
Sanjay Patel10494b22016-09-16 16:10:22 +00003319 return new ICmpInst(Pred, NewAdd, C);
3320 } else {
Craig Topperbb4069e2017-07-07 23:16:26 +00003321 ConstantInt *C3 = Builder.getInt(AP2 - AP1);
3322 Value *NewAdd = Builder.CreateNSWAdd(C, C3);
Sanjay Patel10494b22016-09-16 16:10:22 +00003323 return new ICmpInst(Pred, A, NewAdd);
3324 }
3325 }
3326 }
3327
3328 // Analyze the case when either Op0 or Op1 is a sub instruction.
3329 // Op0 = A - B (or A and B are null); Op1 = C - D (or C and D are null).
3330 A = nullptr;
3331 B = nullptr;
3332 C = nullptr;
3333 D = nullptr;
3334 if (BO0 && BO0->getOpcode() == Instruction::Sub) {
3335 A = BO0->getOperand(0);
3336 B = BO0->getOperand(1);
3337 }
3338 if (BO1 && BO1->getOpcode() == Instruction::Sub) {
3339 C = BO1->getOperand(0);
3340 D = BO1->getOperand(1);
3341 }
3342
3343 // icmp (X-Y), X -> icmp 0, Y for equalities or if there is no overflow.
3344 if (A == Op1 && NoOp0WrapProblem)
3345 return new ICmpInst(Pred, Constant::getNullValue(Op1->getType()), B);
Sanjay Patel10494b22016-09-16 16:10:22 +00003346 // icmp X, (X-Y) -> icmp Y, 0 for equalities or if there is no overflow.
3347 if (C == Op0 && NoOp1WrapProblem)
3348 return new ICmpInst(Pred, D, Constant::getNullValue(Op0->getType()));
3349
Sanjay Patelcbb04502018-04-02 20:37:40 +00003350 // (A - B) >u A --> A <u B
3351 if (A == Op1 && Pred == ICmpInst::ICMP_UGT)
3352 return new ICmpInst(ICmpInst::ICMP_ULT, A, B);
3353 // C <u (C - D) --> C <u D
3354 if (C == Op0 && Pred == ICmpInst::ICMP_ULT)
3355 return new ICmpInst(ICmpInst::ICMP_ULT, C, D);
3356
Sanjay Patel10494b22016-09-16 16:10:22 +00003357 // icmp (Y-X), (Z-X) -> icmp Y, Z for equalities or if there is no overflow.
3358 if (B && D && B == D && NoOp0WrapProblem && NoOp1WrapProblem &&
3359 // Try not to increase register pressure.
3360 BO0->hasOneUse() && BO1->hasOneUse())
3361 return new ICmpInst(Pred, A, C);
Sanjay Patel10494b22016-09-16 16:10:22 +00003362 // icmp (X-Y), (X-Z) -> icmp Z, Y for equalities or if there is no overflow.
3363 if (A && C && A == C && NoOp0WrapProblem && NoOp1WrapProblem &&
3364 // Try not to increase register pressure.
3365 BO0->hasOneUse() && BO1->hasOneUse())
3366 return new ICmpInst(Pred, D, B);
3367
3368 // icmp (0-X) < cst --> x > -cst
3369 if (NoOp0WrapProblem && ICmpInst::isSigned(Pred)) {
3370 Value *X;
3371 if (match(BO0, m_Neg(m_Value(X))))
Chen Zhengb9722732018-07-16 00:51:40 +00003372 if (Constant *RHSC = dyn_cast<Constant>(Op1))
3373 if (RHSC->isNotMinSignedValue())
Sanjay Patel10494b22016-09-16 16:10:22 +00003374 return new ICmpInst(I.getSwappedPredicate(), X,
3375 ConstantExpr::getNeg(RHSC));
3376 }
3377
3378 BinaryOperator *SRem = nullptr;
3379 // icmp (srem X, Y), Y
3380 if (BO0 && BO0->getOpcode() == Instruction::SRem && Op1 == BO0->getOperand(1))
3381 SRem = BO0;
3382 // icmp Y, (srem X, Y)
3383 else if (BO1 && BO1->getOpcode() == Instruction::SRem &&
3384 Op0 == BO1->getOperand(1))
3385 SRem = BO1;
3386 if (SRem) {
3387 // We don't check hasOneUse to avoid increasing register pressure because
3388 // the value we use is the same value this instruction was already using.
3389 switch (SRem == BO0 ? ICmpInst::getSwappedPredicate(Pred) : Pred) {
3390 default:
3391 break;
3392 case ICmpInst::ICMP_EQ:
3393 return replaceInstUsesWith(I, ConstantInt::getFalse(I.getType()));
3394 case ICmpInst::ICMP_NE:
3395 return replaceInstUsesWith(I, ConstantInt::getTrue(I.getType()));
3396 case ICmpInst::ICMP_SGT:
3397 case ICmpInst::ICMP_SGE:
3398 return new ICmpInst(ICmpInst::ICMP_SGT, SRem->getOperand(1),
3399 Constant::getAllOnesValue(SRem->getType()));
3400 case ICmpInst::ICMP_SLT:
3401 case ICmpInst::ICMP_SLE:
3402 return new ICmpInst(ICmpInst::ICMP_SLT, SRem->getOperand(1),
3403 Constant::getNullValue(SRem->getType()));
3404 }
3405 }
3406
3407 if (BO0 && BO1 && BO0->getOpcode() == BO1->getOpcode() && BO0->hasOneUse() &&
3408 BO1->hasOneUse() && BO0->getOperand(1) == BO1->getOperand(1)) {
3409 switch (BO0->getOpcode()) {
3410 default:
3411 break;
3412 case Instruction::Add:
3413 case Instruction::Sub:
Sanjay Pateld3106ad2017-05-23 17:29:58 +00003414 case Instruction::Xor: {
Sanjay Patel10494b22016-09-16 16:10:22 +00003415 if (I.isEquality()) // a+x icmp eq/ne b+x --> a icmp b
Sanjay Patel2a062632017-05-08 16:33:42 +00003416 return new ICmpInst(Pred, BO0->getOperand(0), BO1->getOperand(0));
Sanjay Pateld3106ad2017-05-23 17:29:58 +00003417
3418 const APInt *C;
3419 if (match(BO0->getOperand(1), m_APInt(C))) {
3420 // icmp u/s (a ^ signmask), (b ^ signmask) --> icmp s/u a, b
3421 if (C->isSignMask()) {
Sanjay Patel2a062632017-05-08 16:33:42 +00003422 ICmpInst::Predicate NewPred =
Sanjay Patel10494b22016-09-16 16:10:22 +00003423 I.isSigned() ? I.getUnsignedPredicate() : I.getSignedPredicate();
Sanjay Patel2a062632017-05-08 16:33:42 +00003424 return new ICmpInst(NewPred, BO0->getOperand(0), BO1->getOperand(0));
Sanjay Patel10494b22016-09-16 16:10:22 +00003425 }
3426
Sanjay Pateld3106ad2017-05-23 17:29:58 +00003427 // icmp u/s (a ^ maxsignval), (b ^ maxsignval) --> icmp s/u' a, b
3428 if (BO0->getOpcode() == Instruction::Xor && C->isMaxSignedValue()) {
Sanjay Patel2a062632017-05-08 16:33:42 +00003429 ICmpInst::Predicate NewPred =
Sanjay Patel10494b22016-09-16 16:10:22 +00003430 I.isSigned() ? I.getUnsignedPredicate() : I.getSignedPredicate();
Sanjay Patel2a062632017-05-08 16:33:42 +00003431 NewPred = I.getSwappedPredicate(NewPred);
3432 return new ICmpInst(NewPred, BO0->getOperand(0), BO1->getOperand(0));
Sanjay Patel10494b22016-09-16 16:10:22 +00003433 }
3434 }
3435 break;
Sanjay Pateld3106ad2017-05-23 17:29:58 +00003436 }
Sanjay Patel07b1ba52017-05-24 22:58:17 +00003437 case Instruction::Mul: {
Sanjay Patel10494b22016-09-16 16:10:22 +00003438 if (!I.isEquality())
3439 break;
3440
Sanjay Patel07b1ba52017-05-24 22:58:17 +00003441 const APInt *C;
Craig Topper73ba1c82017-06-07 07:40:37 +00003442 if (match(BO0->getOperand(1), m_APInt(C)) && !C->isNullValue() &&
3443 !C->isOneValue()) {
Sanjay Patel07b1ba52017-05-24 22:58:17 +00003444 // icmp eq/ne (X * C), (Y * C) --> icmp (X & Mask), (Y & Mask)
3445 // Mask = -1 >> count-trailing-zeros(C).
Sanjay Patel51506122017-05-25 14:13:57 +00003446 if (unsigned TZs = C->countTrailingZeros()) {
Sanjay Patel07b1ba52017-05-24 22:58:17 +00003447 Constant *Mask = ConstantInt::get(
3448 BO0->getType(),
Sanjay Patel51506122017-05-25 14:13:57 +00003449 APInt::getLowBitsSet(C->getBitWidth(), C->getBitWidth() - TZs));
Craig Topperbb4069e2017-07-07 23:16:26 +00003450 Value *And1 = Builder.CreateAnd(BO0->getOperand(0), Mask);
3451 Value *And2 = Builder.CreateAnd(BO1->getOperand(0), Mask);
Sanjay Patel2a062632017-05-08 16:33:42 +00003452 return new ICmpInst(Pred, And1, And2);
Sanjay Patel10494b22016-09-16 16:10:22 +00003453 }
Sanjay Patel51506122017-05-25 14:13:57 +00003454 // If there are no trailing zeros in the multiplier, just eliminate
3455 // the multiplies (no masking is needed):
3456 // icmp eq/ne (X * C), (Y * C) --> icmp eq/ne X, Y
3457 return new ICmpInst(Pred, BO0->getOperand(0), BO1->getOperand(0));
Sanjay Patel10494b22016-09-16 16:10:22 +00003458 }
3459 break;
Sanjay Patel07b1ba52017-05-24 22:58:17 +00003460 }
Sanjay Patel10494b22016-09-16 16:10:22 +00003461 case Instruction::UDiv:
3462 case Instruction::LShr:
Sanjay Patel878715f2017-05-15 19:27:53 +00003463 if (I.isSigned() || !BO0->isExact() || !BO1->isExact())
Sanjay Patel10494b22016-09-16 16:10:22 +00003464 break;
Sanjay Patel878715f2017-05-15 19:27:53 +00003465 return new ICmpInst(Pred, BO0->getOperand(0), BO1->getOperand(0));
3466
Sanjay Patel10494b22016-09-16 16:10:22 +00003467 case Instruction::SDiv:
Sanjay Patel878715f2017-05-15 19:27:53 +00003468 if (!I.isEquality() || !BO0->isExact() || !BO1->isExact())
3469 break;
3470 return new ICmpInst(Pred, BO0->getOperand(0), BO1->getOperand(0));
3471
Sanjay Patel10494b22016-09-16 16:10:22 +00003472 case Instruction::AShr:
3473 if (!BO0->isExact() || !BO1->isExact())
3474 break;
Sanjay Patel2a062632017-05-08 16:33:42 +00003475 return new ICmpInst(Pred, BO0->getOperand(0), BO1->getOperand(0));
Sanjay Patel878715f2017-05-15 19:27:53 +00003476
Sanjay Patel10494b22016-09-16 16:10:22 +00003477 case Instruction::Shl: {
3478 bool NUW = BO0->hasNoUnsignedWrap() && BO1->hasNoUnsignedWrap();
3479 bool NSW = BO0->hasNoSignedWrap() && BO1->hasNoSignedWrap();
3480 if (!NUW && !NSW)
3481 break;
3482 if (!NSW && I.isSigned())
3483 break;
Sanjay Patel2a062632017-05-08 16:33:42 +00003484 return new ICmpInst(Pred, BO0->getOperand(0), BO1->getOperand(0));
Sanjay Patel10494b22016-09-16 16:10:22 +00003485 }
3486 }
3487 }
3488
3489 if (BO0) {
3490 // Transform A & (L - 1) `ult` L --> L != 0
3491 auto LSubOne = m_Add(m_Specific(Op1), m_AllOnes());
Craig Topper72ee6942017-06-24 06:24:01 +00003492 auto BitwiseAnd = m_c_And(m_Value(), LSubOne);
Sanjay Patel10494b22016-09-16 16:10:22 +00003493
Sanjay Patel2a062632017-05-08 16:33:42 +00003494 if (match(BO0, BitwiseAnd) && Pred == ICmpInst::ICMP_ULT) {
Sanjay Patel10494b22016-09-16 16:10:22 +00003495 auto *Zero = Constant::getNullValue(BO0->getType());
3496 return new ICmpInst(ICmpInst::ICMP_NE, Op1, Zero);
3497 }
3498 }
3499
Roman Lebedev68d54cf2018-07-11 19:05:04 +00003500 if (Value *V = foldICmpWithLowBitMaskedVal(I, Builder))
3501 return replaceInstUsesWith(I, V);
3502
Roman Lebedev3cb87e92018-07-18 10:55:17 +00003503 if (Value *V = foldICmpWithTruncSignExtendedVal(I, Builder))
3504 return replaceInstUsesWith(I, V);
3505
Sanjay Patel10494b22016-09-16 16:10:22 +00003506 return nullptr;
3507}
3508
Sanjay Pateldd46b522016-12-19 17:32:37 +00003509/// Fold icmp Pred min|max(X, Y), X.
3510static Instruction *foldICmpWithMinMax(ICmpInst &Cmp) {
Sanjay Pateld6406412016-12-15 19:13:37 +00003511 ICmpInst::Predicate Pred = Cmp.getPredicate();
3512 Value *Op0 = Cmp.getOperand(0);
3513 Value *X = Cmp.getOperand(1);
3514
Sanjay Pateldd46b522016-12-19 17:32:37 +00003515 // Canonicalize minimum or maximum operand to LHS of the icmp.
Sanjay Patel8296c6c2016-12-19 16:28:53 +00003516 if (match(X, m_c_SMin(m_Specific(Op0), m_Value())) ||
Sanjay Pateldd46b522016-12-19 17:32:37 +00003517 match(X, m_c_SMax(m_Specific(Op0), m_Value())) ||
3518 match(X, m_c_UMin(m_Specific(Op0), m_Value())) ||
3519 match(X, m_c_UMax(m_Specific(Op0), m_Value()))) {
Sanjay Pateld6406412016-12-15 19:13:37 +00003520 std::swap(Op0, X);
3521 Pred = Cmp.getSwappedPredicate();
3522 }
3523
3524 Value *Y;
Sanjay Patel8296c6c2016-12-19 16:28:53 +00003525 if (match(Op0, m_c_SMin(m_Specific(X), m_Value(Y)))) {
Sanjay Pateldd46b522016-12-19 17:32:37 +00003526 // smin(X, Y) == X --> X s<= Y
3527 // smin(X, Y) s>= X --> X s<= Y
Sanjay Patel8296c6c2016-12-19 16:28:53 +00003528 if (Pred == CmpInst::ICMP_EQ || Pred == CmpInst::ICMP_SGE)
3529 return new ICmpInst(ICmpInst::ICMP_SLE, X, Y);
3530
Sanjay Pateldd46b522016-12-19 17:32:37 +00003531 // smin(X, Y) != X --> X s> Y
3532 // smin(X, Y) s< X --> X s> Y
Sanjay Patel8296c6c2016-12-19 16:28:53 +00003533 if (Pred == CmpInst::ICMP_NE || Pred == CmpInst::ICMP_SLT)
3534 return new ICmpInst(ICmpInst::ICMP_SGT, X, Y);
3535
3536 // These cases should be handled in InstSimplify:
Sanjay Pateldd46b522016-12-19 17:32:37 +00003537 // smin(X, Y) s<= X --> true
3538 // smin(X, Y) s> X --> false
Sanjay Pateld6406412016-12-15 19:13:37 +00003539 return nullptr;
Sanjay Patel8296c6c2016-12-19 16:28:53 +00003540 }
Sanjay Pateldd46b522016-12-19 17:32:37 +00003541
Sanjay Patel8296c6c2016-12-19 16:28:53 +00003542 if (match(Op0, m_c_SMax(m_Specific(X), m_Value(Y)))) {
Sanjay Pateldd46b522016-12-19 17:32:37 +00003543 // smax(X, Y) == X --> X s>= Y
3544 // smax(X, Y) s<= X --> X s>= Y
Sanjay Patel8296c6c2016-12-19 16:28:53 +00003545 if (Pred == CmpInst::ICMP_EQ || Pred == CmpInst::ICMP_SLE)
3546 return new ICmpInst(ICmpInst::ICMP_SGE, X, Y);
Sanjay Pateld6406412016-12-15 19:13:37 +00003547
Sanjay Pateldd46b522016-12-19 17:32:37 +00003548 // smax(X, Y) != X --> X s< Y
3549 // smax(X, Y) s> X --> X s< Y
Sanjay Patel8296c6c2016-12-19 16:28:53 +00003550 if (Pred == CmpInst::ICMP_NE || Pred == CmpInst::ICMP_SGT)
3551 return new ICmpInst(ICmpInst::ICMP_SLT, X, Y);
Sanjay Pateld6406412016-12-15 19:13:37 +00003552
Sanjay Patel8296c6c2016-12-19 16:28:53 +00003553 // These cases should be handled in InstSimplify:
Sanjay Pateldd46b522016-12-19 17:32:37 +00003554 // smax(X, Y) s>= X --> true
3555 // smax(X, Y) s< X --> false
3556 return nullptr;
3557 }
3558
3559 if (match(Op0, m_c_UMin(m_Specific(X), m_Value(Y)))) {
3560 // umin(X, Y) == X --> X u<= Y
3561 // umin(X, Y) u>= X --> X u<= Y
3562 if (Pred == CmpInst::ICMP_EQ || Pred == CmpInst::ICMP_UGE)
3563 return new ICmpInst(ICmpInst::ICMP_ULE, X, Y);
3564
3565 // umin(X, Y) != X --> X u> Y
3566 // umin(X, Y) u< X --> X u> Y
3567 if (Pred == CmpInst::ICMP_NE || Pred == CmpInst::ICMP_ULT)
3568 return new ICmpInst(ICmpInst::ICMP_UGT, X, Y);
3569
3570 // These cases should be handled in InstSimplify:
3571 // umin(X, Y) u<= X --> true
3572 // umin(X, Y) u> X --> false
3573 return nullptr;
3574 }
3575
3576 if (match(Op0, m_c_UMax(m_Specific(X), m_Value(Y)))) {
3577 // umax(X, Y) == X --> X u>= Y
3578 // umax(X, Y) u<= X --> X u>= Y
3579 if (Pred == CmpInst::ICMP_EQ || Pred == CmpInst::ICMP_ULE)
3580 return new ICmpInst(ICmpInst::ICMP_UGE, X, Y);
3581
3582 // umax(X, Y) != X --> X u< Y
3583 // umax(X, Y) u> X --> X u< Y
3584 if (Pred == CmpInst::ICMP_NE || Pred == CmpInst::ICMP_UGT)
3585 return new ICmpInst(ICmpInst::ICMP_ULT, X, Y);
3586
3587 // These cases should be handled in InstSimplify:
3588 // umax(X, Y) u>= X --> true
3589 // umax(X, Y) u< X --> false
Sanjay Patel8296c6c2016-12-19 16:28:53 +00003590 return nullptr;
3591 }
Sanjay Pateld6406412016-12-15 19:13:37 +00003592
Sanjay Pateld6406412016-12-15 19:13:37 +00003593 return nullptr;
3594}
3595
Sanjay Patel10494b22016-09-16 16:10:22 +00003596Instruction *InstCombiner::foldICmpEquality(ICmpInst &I) {
3597 if (!I.isEquality())
3598 return nullptr;
3599
3600 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Sanjay Patel4e96f192017-06-28 16:39:06 +00003601 const CmpInst::Predicate Pred = I.getPredicate();
Sanjay Patel10494b22016-09-16 16:10:22 +00003602 Value *A, *B, *C, *D;
3603 if (match(Op0, m_Xor(m_Value(A), m_Value(B)))) {
3604 if (A == Op1 || B == Op1) { // (A^B) == A -> B == 0
3605 Value *OtherVal = A == Op1 ? B : A;
Sanjay Patel4e96f192017-06-28 16:39:06 +00003606 return new ICmpInst(Pred, OtherVal, Constant::getNullValue(A->getType()));
Sanjay Patel10494b22016-09-16 16:10:22 +00003607 }
3608
3609 if (match(Op1, m_Xor(m_Value(C), m_Value(D)))) {
3610 // A^c1 == C^c2 --> A == C^(c1^c2)
3611 ConstantInt *C1, *C2;
3612 if (match(B, m_ConstantInt(C1)) && match(D, m_ConstantInt(C2)) &&
3613 Op1->hasOneUse()) {
Craig Topperbb4069e2017-07-07 23:16:26 +00003614 Constant *NC = Builder.getInt(C1->getValue() ^ C2->getValue());
3615 Value *Xor = Builder.CreateXor(C, NC);
Sanjay Patel4e96f192017-06-28 16:39:06 +00003616 return new ICmpInst(Pred, A, Xor);
Sanjay Patel10494b22016-09-16 16:10:22 +00003617 }
3618
3619 // A^B == A^D -> B == D
3620 if (A == C)
Sanjay Patel4e96f192017-06-28 16:39:06 +00003621 return new ICmpInst(Pred, B, D);
Sanjay Patel10494b22016-09-16 16:10:22 +00003622 if (A == D)
Sanjay Patel4e96f192017-06-28 16:39:06 +00003623 return new ICmpInst(Pred, B, C);
Sanjay Patel10494b22016-09-16 16:10:22 +00003624 if (B == C)
Sanjay Patel4e96f192017-06-28 16:39:06 +00003625 return new ICmpInst(Pred, A, D);
Sanjay Patel10494b22016-09-16 16:10:22 +00003626 if (B == D)
Sanjay Patel4e96f192017-06-28 16:39:06 +00003627 return new ICmpInst(Pred, A, C);
Sanjay Patel10494b22016-09-16 16:10:22 +00003628 }
3629 }
3630
3631 if (match(Op1, m_Xor(m_Value(A), m_Value(B))) && (A == Op0 || B == Op0)) {
3632 // A == (A^B) -> B == 0
3633 Value *OtherVal = A == Op0 ? B : A;
Sanjay Patel4e96f192017-06-28 16:39:06 +00003634 return new ICmpInst(Pred, OtherVal, Constant::getNullValue(A->getType()));
Sanjay Patel10494b22016-09-16 16:10:22 +00003635 }
3636
3637 // (X&Z) == (Y&Z) -> (X^Y) & Z == 0
3638 if (match(Op0, m_OneUse(m_And(m_Value(A), m_Value(B)))) &&
3639 match(Op1, m_OneUse(m_And(m_Value(C), m_Value(D))))) {
3640 Value *X = nullptr, *Y = nullptr, *Z = nullptr;
3641
3642 if (A == C) {
3643 X = B;
3644 Y = D;
3645 Z = A;
3646 } else if (A == D) {
3647 X = B;
3648 Y = C;
3649 Z = A;
3650 } else if (B == C) {
3651 X = A;
3652 Y = D;
3653 Z = B;
3654 } else if (B == D) {
3655 X = A;
3656 Y = C;
3657 Z = B;
3658 }
3659
3660 if (X) { // Build (X^Y) & Z
Craig Topperbb4069e2017-07-07 23:16:26 +00003661 Op1 = Builder.CreateXor(X, Y);
3662 Op1 = Builder.CreateAnd(Op1, Z);
Sanjay Patel10494b22016-09-16 16:10:22 +00003663 I.setOperand(0, Op1);
3664 I.setOperand(1, Constant::getNullValue(Op1->getType()));
3665 return &I;
3666 }
3667 }
3668
3669 // Transform (zext A) == (B & (1<<X)-1) --> A == (trunc B)
3670 // and (B & (1<<X)-1) == (zext A) --> A == (trunc B)
3671 ConstantInt *Cst1;
3672 if ((Op0->hasOneUse() && match(Op0, m_ZExt(m_Value(A))) &&
3673 match(Op1, m_And(m_Value(B), m_ConstantInt(Cst1)))) ||
3674 (Op1->hasOneUse() && match(Op0, m_And(m_Value(B), m_ConstantInt(Cst1))) &&
3675 match(Op1, m_ZExt(m_Value(A))))) {
3676 APInt Pow2 = Cst1->getValue() + 1;
3677 if (Pow2.isPowerOf2() && isa<IntegerType>(A->getType()) &&
3678 Pow2.logBase2() == cast<IntegerType>(A->getType())->getBitWidth())
Craig Topperbb4069e2017-07-07 23:16:26 +00003679 return new ICmpInst(Pred, A, Builder.CreateTrunc(B, A->getType()));
Sanjay Patel10494b22016-09-16 16:10:22 +00003680 }
3681
3682 // (A >> C) == (B >> C) --> (A^B) u< (1 << C)
3683 // For lshr and ashr pairs.
3684 if ((match(Op0, m_OneUse(m_LShr(m_Value(A), m_ConstantInt(Cst1)))) &&
3685 match(Op1, m_OneUse(m_LShr(m_Value(B), m_Specific(Cst1))))) ||
3686 (match(Op0, m_OneUse(m_AShr(m_Value(A), m_ConstantInt(Cst1)))) &&
3687 match(Op1, m_OneUse(m_AShr(m_Value(B), m_Specific(Cst1)))))) {
3688 unsigned TypeBits = Cst1->getBitWidth();
3689 unsigned ShAmt = (unsigned)Cst1->getLimitedValue(TypeBits);
3690 if (ShAmt < TypeBits && ShAmt != 0) {
Sanjay Patel4e96f192017-06-28 16:39:06 +00003691 ICmpInst::Predicate NewPred =
3692 Pred == ICmpInst::ICMP_NE ? ICmpInst::ICMP_UGE : ICmpInst::ICMP_ULT;
Craig Topperbb4069e2017-07-07 23:16:26 +00003693 Value *Xor = Builder.CreateXor(A, B, I.getName() + ".unshifted");
Sanjay Patel10494b22016-09-16 16:10:22 +00003694 APInt CmpVal = APInt::getOneBitSet(TypeBits, ShAmt);
Craig Topperbb4069e2017-07-07 23:16:26 +00003695 return new ICmpInst(NewPred, Xor, Builder.getInt(CmpVal));
Sanjay Patel10494b22016-09-16 16:10:22 +00003696 }
3697 }
3698
3699 // (A << C) == (B << C) --> ((A^B) & (~0U >> C)) == 0
3700 if (match(Op0, m_OneUse(m_Shl(m_Value(A), m_ConstantInt(Cst1)))) &&
3701 match(Op1, m_OneUse(m_Shl(m_Value(B), m_Specific(Cst1))))) {
3702 unsigned TypeBits = Cst1->getBitWidth();
3703 unsigned ShAmt = (unsigned)Cst1->getLimitedValue(TypeBits);
3704 if (ShAmt < TypeBits && ShAmt != 0) {
Craig Topperbb4069e2017-07-07 23:16:26 +00003705 Value *Xor = Builder.CreateXor(A, B, I.getName() + ".unshifted");
Sanjay Patel10494b22016-09-16 16:10:22 +00003706 APInt AndVal = APInt::getLowBitsSet(TypeBits, TypeBits - ShAmt);
Craig Topperbb4069e2017-07-07 23:16:26 +00003707 Value *And = Builder.CreateAnd(Xor, Builder.getInt(AndVal),
Sanjay Patel10494b22016-09-16 16:10:22 +00003708 I.getName() + ".mask");
Sanjay Patel4e96f192017-06-28 16:39:06 +00003709 return new ICmpInst(Pred, And, Constant::getNullValue(Cst1->getType()));
Sanjay Patel10494b22016-09-16 16:10:22 +00003710 }
3711 }
3712
3713 // Transform "icmp eq (trunc (lshr(X, cst1)), cst" to
3714 // "icmp (and X, mask), cst"
3715 uint64_t ShAmt = 0;
3716 if (Op0->hasOneUse() &&
3717 match(Op0, m_Trunc(m_OneUse(m_LShr(m_Value(A), m_ConstantInt(ShAmt))))) &&
3718 match(Op1, m_ConstantInt(Cst1)) &&
3719 // Only do this when A has multiple uses. This is most important to do
3720 // when it exposes other optimizations.
3721 !A->hasOneUse()) {
3722 unsigned ASize = cast<IntegerType>(A->getType())->getPrimitiveSizeInBits();
3723
3724 if (ShAmt < ASize) {
3725 APInt MaskV =
3726 APInt::getLowBitsSet(ASize, Op0->getType()->getPrimitiveSizeInBits());
3727 MaskV <<= ShAmt;
3728
3729 APInt CmpV = Cst1->getValue().zext(ASize);
3730 CmpV <<= ShAmt;
3731
Craig Topperbb4069e2017-07-07 23:16:26 +00003732 Value *Mask = Builder.CreateAnd(A, Builder.getInt(MaskV));
3733 return new ICmpInst(Pred, Mask, Builder.getInt(CmpV));
Sanjay Patel10494b22016-09-16 16:10:22 +00003734 }
3735 }
3736
Sanjay Patelc3d5cf02017-07-02 14:34:50 +00003737 // If both operands are byte-swapped or bit-reversed, just compare the
3738 // original values.
3739 // TODO: Move this to a function similar to foldICmpIntrinsicWithConstant()
3740 // and handle more intrinsics.
3741 if ((match(Op0, m_BSwap(m_Value(A))) && match(Op1, m_BSwap(m_Value(B)))) ||
Simon Pilgrimdf2657a2017-07-02 16:31:16 +00003742 (match(Op0, m_BitReverse(m_Value(A))) &&
3743 match(Op1, m_BitReverse(m_Value(B)))))
Sanjay Patelc3d5cf02017-07-02 14:34:50 +00003744 return new ICmpInst(Pred, A, B);
3745
Sanjay Patel10494b22016-09-16 16:10:22 +00003746 return nullptr;
3747}
3748
Sanjay Patel6f8f47b2016-06-05 00:12:32 +00003749/// Handle icmp (cast x to y), (cast/cst). We only handle extending casts so
3750/// far.
Sanjay Patel43395062016-07-21 18:07:40 +00003751Instruction *InstCombiner::foldICmpWithCastAndCast(ICmpInst &ICmp) {
Sanjay Patel6f8f47b2016-06-05 00:12:32 +00003752 const CastInst *LHSCI = cast<CastInst>(ICmp.getOperand(0));
Chris Lattner2188e402010-01-04 07:37:31 +00003753 Value *LHSCIOp = LHSCI->getOperand(0);
Chris Lattner229907c2011-07-18 04:54:35 +00003754 Type *SrcTy = LHSCIOp->getType();
3755 Type *DestTy = LHSCI->getType();
Chris Lattner2188e402010-01-04 07:37:31 +00003756 Value *RHSCIOp;
3757
Jim Grosbach129c52a2011-09-30 18:09:53 +00003758 // Turn icmp (ptrtoint x), (ptrtoint/c) into a compare of the input if the
Chris Lattner2188e402010-01-04 07:37:31 +00003759 // integer type is the same size as the pointer type.
Daniel Neilsonbdda1152018-03-05 18:05:51 +00003760 const auto& CompatibleSizes = [&](Type* SrcTy, Type* DestTy) -> bool {
3761 if (isa<VectorType>(SrcTy)) {
3762 SrcTy = cast<VectorType>(SrcTy)->getElementType();
3763 DestTy = cast<VectorType>(DestTy)->getElementType();
3764 }
3765 return DL.getPointerTypeSizeInBits(SrcTy) == DestTy->getIntegerBitWidth();
3766 };
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003767 if (LHSCI->getOpcode() == Instruction::PtrToInt &&
Daniel Neilsonbdda1152018-03-05 18:05:51 +00003768 CompatibleSizes(SrcTy, DestTy)) {
Craig Topperf40110f2014-04-25 05:29:35 +00003769 Value *RHSOp = nullptr;
Sanjay Patel6f8f47b2016-06-05 00:12:32 +00003770 if (auto *RHSC = dyn_cast<PtrToIntOperator>(ICmp.getOperand(1))) {
Michael Liaod266b922015-02-13 04:51:26 +00003771 Value *RHSCIOp = RHSC->getOperand(0);
3772 if (RHSCIOp->getType()->getPointerAddressSpace() ==
3773 LHSCIOp->getType()->getPointerAddressSpace()) {
3774 RHSOp = RHSC->getOperand(0);
3775 // If the pointer types don't match, insert a bitcast.
3776 if (LHSCIOp->getType() != RHSOp->getType())
Craig Topperbb4069e2017-07-07 23:16:26 +00003777 RHSOp = Builder.CreateBitCast(RHSOp, LHSCIOp->getType());
Michael Liaod266b922015-02-13 04:51:26 +00003778 }
Sanjay Patel6f8f47b2016-06-05 00:12:32 +00003779 } else if (auto *RHSC = dyn_cast<Constant>(ICmp.getOperand(1))) {
Chris Lattner2188e402010-01-04 07:37:31 +00003780 RHSOp = ConstantExpr::getIntToPtr(RHSC, SrcTy);
Sanjay Patel6f8f47b2016-06-05 00:12:32 +00003781 }
Chris Lattner2188e402010-01-04 07:37:31 +00003782
3783 if (RHSOp)
Sanjay Patel6f8f47b2016-06-05 00:12:32 +00003784 return new ICmpInst(ICmp.getPredicate(), LHSCIOp, RHSOp);
Chris Lattner2188e402010-01-04 07:37:31 +00003785 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00003786
Chris Lattner2188e402010-01-04 07:37:31 +00003787 // The code below only handles extension cast instructions, so far.
3788 // Enforce this.
3789 if (LHSCI->getOpcode() != Instruction::ZExt &&
3790 LHSCI->getOpcode() != Instruction::SExt)
Craig Topperf40110f2014-04-25 05:29:35 +00003791 return nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +00003792
3793 bool isSignedExt = LHSCI->getOpcode() == Instruction::SExt;
Sanjay Patel6f8f47b2016-06-05 00:12:32 +00003794 bool isSignedCmp = ICmp.isSigned();
Chris Lattner2188e402010-01-04 07:37:31 +00003795
Sanjay Patel6f8f47b2016-06-05 00:12:32 +00003796 if (auto *CI = dyn_cast<CastInst>(ICmp.getOperand(1))) {
Chris Lattner2188e402010-01-04 07:37:31 +00003797 // Not an extension from the same type?
3798 RHSCIOp = CI->getOperand(0);
Jim Grosbach129c52a2011-09-30 18:09:53 +00003799 if (RHSCIOp->getType() != LHSCIOp->getType())
Craig Topperf40110f2014-04-25 05:29:35 +00003800 return nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +00003801
Chris Lattner2188e402010-01-04 07:37:31 +00003802 // If the signedness of the two casts doesn't agree (i.e. one is a sext
3803 // and the other is a zext), then we can't handle this.
3804 if (CI->getOpcode() != LHSCI->getOpcode())
Craig Topperf40110f2014-04-25 05:29:35 +00003805 return nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +00003806
3807 // Deal with equality cases early.
Sanjay Patel6f8f47b2016-06-05 00:12:32 +00003808 if (ICmp.isEquality())
3809 return new ICmpInst(ICmp.getPredicate(), LHSCIOp, RHSCIOp);
Chris Lattner2188e402010-01-04 07:37:31 +00003810
3811 // A signed comparison of sign extended values simplifies into a
3812 // signed comparison.
3813 if (isSignedCmp && isSignedExt)
Sanjay Patel6f8f47b2016-06-05 00:12:32 +00003814 return new ICmpInst(ICmp.getPredicate(), LHSCIOp, RHSCIOp);
Chris Lattner2188e402010-01-04 07:37:31 +00003815
3816 // The other three cases all fold into an unsigned comparison.
Sanjay Patel6f8f47b2016-06-05 00:12:32 +00003817 return new ICmpInst(ICmp.getUnsignedPredicate(), LHSCIOp, RHSCIOp);
Chris Lattner2188e402010-01-04 07:37:31 +00003818 }
3819
Sanjay Patel4c204232016-06-04 20:39:22 +00003820 // If we aren't dealing with a constant on the RHS, exit early.
Sanjay Patel6f8f47b2016-06-05 00:12:32 +00003821 auto *C = dyn_cast<Constant>(ICmp.getOperand(1));
3822 if (!C)
Craig Topperf40110f2014-04-25 05:29:35 +00003823 return nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +00003824
3825 // Compute the constant that would happen if we truncated to SrcTy then
Sanjay Patelc774f8c2016-06-04 21:20:44 +00003826 // re-extended to DestTy.
Sanjay Patel6f8f47b2016-06-05 00:12:32 +00003827 Constant *Res1 = ConstantExpr::getTrunc(C, SrcTy);
Sanjay Patelc774f8c2016-06-04 21:20:44 +00003828 Constant *Res2 = ConstantExpr::getCast(LHSCI->getOpcode(), Res1, DestTy);
Chris Lattner2188e402010-01-04 07:37:31 +00003829
3830 // If the re-extended constant didn't change...
Sanjay Patel6f8f47b2016-06-05 00:12:32 +00003831 if (Res2 == C) {
Chris Lattner2188e402010-01-04 07:37:31 +00003832 // Deal with equality cases early.
Sanjay Patel6f8f47b2016-06-05 00:12:32 +00003833 if (ICmp.isEquality())
3834 return new ICmpInst(ICmp.getPredicate(), LHSCIOp, Res1);
Chris Lattner2188e402010-01-04 07:37:31 +00003835
3836 // A signed comparison of sign extended values simplifies into a
3837 // signed comparison.
3838 if (isSignedExt && isSignedCmp)
Sanjay Patel6f8f47b2016-06-05 00:12:32 +00003839 return new ICmpInst(ICmp.getPredicate(), LHSCIOp, Res1);
Chris Lattner2188e402010-01-04 07:37:31 +00003840
3841 // The other three cases all fold into an unsigned comparison.
Sanjay Patel6f8f47b2016-06-05 00:12:32 +00003842 return new ICmpInst(ICmp.getUnsignedPredicate(), LHSCIOp, Res1);
Chris Lattner2188e402010-01-04 07:37:31 +00003843 }
3844
Sanjay Patel6a333c32016-06-06 16:56:57 +00003845 // The re-extended constant changed, partly changed (in the case of a vector),
3846 // or could not be determined to be equal (in the case of a constant
3847 // expression), so the constant cannot be represented in the shorter type.
3848 // Consequently, we cannot emit a simple comparison.
Duncan Sands8fb2c382011-01-20 13:21:55 +00003849 // All the cases that fold to true or false will have already been handled
3850 // by SimplifyICmpInst, so only deal with the tricky case.
Chris Lattner2188e402010-01-04 07:37:31 +00003851
Sanjay Patel6a333c32016-06-06 16:56:57 +00003852 if (isSignedCmp || !isSignedExt || !isa<ConstantInt>(C))
Craig Topperf40110f2014-04-25 05:29:35 +00003853 return nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +00003854
3855 // Evaluate the comparison for LT (we invert for GT below). LE and GE cases
3856 // should have been folded away previously and not enter in here.
Duncan Sands8fb2c382011-01-20 13:21:55 +00003857
3858 // We're performing an unsigned comp with a sign extended value.
3859 // This is true if the input is >= 0. [aka >s -1]
3860 Constant *NegOne = Constant::getAllOnesValue(SrcTy);
Craig Topperbb4069e2017-07-07 23:16:26 +00003861 Value *Result = Builder.CreateICmpSGT(LHSCIOp, NegOne, ICmp.getName());
Chris Lattner2188e402010-01-04 07:37:31 +00003862
3863 // Finally, return the value computed.
Sanjay Patel6f8f47b2016-06-05 00:12:32 +00003864 if (ICmp.getPredicate() == ICmpInst::ICMP_ULT)
3865 return replaceInstUsesWith(ICmp, Result);
Chris Lattner2188e402010-01-04 07:37:31 +00003866
Sanjay Patel6f8f47b2016-06-05 00:12:32 +00003867 assert(ICmp.getPredicate() == ICmpInst::ICMP_UGT && "ICmp should be folded!");
Chris Lattner2188e402010-01-04 07:37:31 +00003868 return BinaryOperator::CreateNot(Result);
3869}
3870
Sanjoy Dasb0984472015-04-08 04:27:22 +00003871bool InstCombiner::OptimizeOverflowCheck(OverflowCheckFlavor OCF, Value *LHS,
3872 Value *RHS, Instruction &OrigI,
3873 Value *&Result, Constant *&Overflow) {
Sanjoy Das827529e2015-08-11 21:33:55 +00003874 if (OrigI.isCommutative() && isa<Constant>(LHS) && !isa<Constant>(RHS))
3875 std::swap(LHS, RHS);
Sanjoy Dasb0984472015-04-08 04:27:22 +00003876
3877 auto SetResult = [&](Value *OpResult, Constant *OverflowVal, bool ReuseName) {
3878 Result = OpResult;
3879 Overflow = OverflowVal;
3880 if (ReuseName)
3881 Result->takeName(&OrigI);
3882 return true;
3883 };
3884
Sanjoy Das6f5dca72015-08-28 19:09:31 +00003885 // If the overflow check was an add followed by a compare, the insertion point
3886 // may be pointing to the compare. We want to insert the new instructions
3887 // before the add in case there are uses of the add between the add and the
3888 // compare.
Craig Topperbb4069e2017-07-07 23:16:26 +00003889 Builder.SetInsertPoint(&OrigI);
Sanjoy Das6f5dca72015-08-28 19:09:31 +00003890
Sanjoy Dasb0984472015-04-08 04:27:22 +00003891 switch (OCF) {
3892 case OCF_INVALID:
3893 llvm_unreachable("bad overflow check kind!");
3894
3895 case OCF_UNSIGNED_ADD: {
3896 OverflowResult OR = computeOverflowForUnsignedAdd(LHS, RHS, &OrigI);
3897 if (OR == OverflowResult::NeverOverflows)
Craig Topperbb4069e2017-07-07 23:16:26 +00003898 return SetResult(Builder.CreateNUWAdd(LHS, RHS), Builder.getFalse(),
Sanjoy Dasb0984472015-04-08 04:27:22 +00003899 true);
3900
3901 if (OR == OverflowResult::AlwaysOverflows)
Craig Topperbb4069e2017-07-07 23:16:26 +00003902 return SetResult(Builder.CreateAdd(LHS, RHS), Builder.getTrue(), true);
Justin Bognercd1d5aa2016-08-17 20:30:52 +00003903
3904 // Fall through uadd into sadd
3905 LLVM_FALLTHROUGH;
Sanjoy Dasb0984472015-04-08 04:27:22 +00003906 }
Sanjoy Dasb0984472015-04-08 04:27:22 +00003907 case OCF_SIGNED_ADD: {
David Majnemer27e89ba2015-05-21 23:04:21 +00003908 // X + 0 -> {X, false}
3909 if (match(RHS, m_Zero()))
Craig Topperbb4069e2017-07-07 23:16:26 +00003910 return SetResult(LHS, Builder.getFalse(), false);
Sanjoy Dasb0984472015-04-08 04:27:22 +00003911
3912 // We can strength reduce this signed add into a regular add if we can prove
3913 // that it will never overflow.
3914 if (OCF == OCF_SIGNED_ADD)
Craig Topper2b1fc322017-05-22 06:25:31 +00003915 if (willNotOverflowSignedAdd(LHS, RHS, OrigI))
Craig Topperbb4069e2017-07-07 23:16:26 +00003916 return SetResult(Builder.CreateNSWAdd(LHS, RHS), Builder.getFalse(),
Sanjoy Dasb0984472015-04-08 04:27:22 +00003917 true);
Sanjoy Das72cb5e12015-06-05 18:04:42 +00003918 break;
Sanjoy Dasb0984472015-04-08 04:27:22 +00003919 }
3920
3921 case OCF_UNSIGNED_SUB:
3922 case OCF_SIGNED_SUB: {
David Majnemer27e89ba2015-05-21 23:04:21 +00003923 // X - 0 -> {X, false}
3924 if (match(RHS, m_Zero()))
Craig Topperbb4069e2017-07-07 23:16:26 +00003925 return SetResult(LHS, Builder.getFalse(), false);
Sanjoy Dasb0984472015-04-08 04:27:22 +00003926
3927 if (OCF == OCF_SIGNED_SUB) {
Craig Topper2b1fc322017-05-22 06:25:31 +00003928 if (willNotOverflowSignedSub(LHS, RHS, OrigI))
Craig Topperbb4069e2017-07-07 23:16:26 +00003929 return SetResult(Builder.CreateNSWSub(LHS, RHS), Builder.getFalse(),
Sanjoy Dasb0984472015-04-08 04:27:22 +00003930 true);
3931 } else {
Craig Topper2b1fc322017-05-22 06:25:31 +00003932 if (willNotOverflowUnsignedSub(LHS, RHS, OrigI))
Craig Topperbb4069e2017-07-07 23:16:26 +00003933 return SetResult(Builder.CreateNUWSub(LHS, RHS), Builder.getFalse(),
Sanjoy Dasb0984472015-04-08 04:27:22 +00003934 true);
3935 }
3936 break;
3937 }
3938
3939 case OCF_UNSIGNED_MUL: {
3940 OverflowResult OR = computeOverflowForUnsignedMul(LHS, RHS, &OrigI);
3941 if (OR == OverflowResult::NeverOverflows)
Craig Topperbb4069e2017-07-07 23:16:26 +00003942 return SetResult(Builder.CreateNUWMul(LHS, RHS), Builder.getFalse(),
Sanjoy Dasb0984472015-04-08 04:27:22 +00003943 true);
3944 if (OR == OverflowResult::AlwaysOverflows)
Craig Topperbb4069e2017-07-07 23:16:26 +00003945 return SetResult(Builder.CreateMul(LHS, RHS), Builder.getTrue(), true);
Justin Bognercd1d5aa2016-08-17 20:30:52 +00003946 LLVM_FALLTHROUGH;
3947 }
Sanjoy Dasb0984472015-04-08 04:27:22 +00003948 case OCF_SIGNED_MUL:
3949 // X * undef -> undef
3950 if (isa<UndefValue>(RHS))
Craig Topperbb4069e2017-07-07 23:16:26 +00003951 return SetResult(RHS, UndefValue::get(Builder.getInt1Ty()), false);
Sanjoy Dasb0984472015-04-08 04:27:22 +00003952
David Majnemer27e89ba2015-05-21 23:04:21 +00003953 // X * 0 -> {0, false}
3954 if (match(RHS, m_Zero()))
Craig Topperbb4069e2017-07-07 23:16:26 +00003955 return SetResult(RHS, Builder.getFalse(), false);
Sanjoy Dasb0984472015-04-08 04:27:22 +00003956
David Majnemer27e89ba2015-05-21 23:04:21 +00003957 // X * 1 -> {X, false}
3958 if (match(RHS, m_One()))
Craig Topperbb4069e2017-07-07 23:16:26 +00003959 return SetResult(LHS, Builder.getFalse(), false);
Sanjoy Dasb0984472015-04-08 04:27:22 +00003960
3961 if (OCF == OCF_SIGNED_MUL)
Craig Topper2b1fc322017-05-22 06:25:31 +00003962 if (willNotOverflowSignedMul(LHS, RHS, OrigI))
Craig Topperbb4069e2017-07-07 23:16:26 +00003963 return SetResult(Builder.CreateNSWMul(LHS, RHS), Builder.getFalse(),
Sanjoy Dasb0984472015-04-08 04:27:22 +00003964 true);
Sanjoy Dasc80dad62015-06-05 18:04:46 +00003965 break;
Sanjoy Dasb0984472015-04-08 04:27:22 +00003966 }
3967
3968 return false;
3969}
3970
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00003971/// Recognize and process idiom involving test for multiplication
Serge Pavlov4bb54d52014-04-13 18:23:41 +00003972/// overflow.
3973///
3974/// The caller has matched a pattern of the form:
3975/// I = cmp u (mul(zext A, zext B), V
3976/// The function checks if this is a test for overflow and if so replaces
3977/// multiplication with call to 'mul.with.overflow' intrinsic.
3978///
3979/// \param I Compare instruction.
3980/// \param MulVal Result of 'mult' instruction. It is one of the arguments of
3981/// the compare instruction. Must be of integer type.
3982/// \param OtherVal The other argument of compare instruction.
3983/// \returns Instruction which must replace the compare instruction, NULL if no
3984/// replacement required.
Sanjay Pateld93c4c02016-09-15 18:22:25 +00003985static Instruction *processUMulZExtIdiom(ICmpInst &I, Value *MulVal,
Serge Pavlov4bb54d52014-04-13 18:23:41 +00003986 Value *OtherVal, InstCombiner &IC) {
Benjamin Kramerc96a7f82014-06-24 10:47:52 +00003987 // Don't bother doing this transformation for pointers, don't do it for
3988 // vectors.
3989 if (!isa<IntegerType>(MulVal->getType()))
3990 return nullptr;
3991
Serge Pavlov4bb54d52014-04-13 18:23:41 +00003992 assert(I.getOperand(0) == MulVal || I.getOperand(1) == MulVal);
3993 assert(I.getOperand(0) == OtherVal || I.getOperand(1) == OtherVal);
David Majnemerdaa24b92015-09-05 20:44:56 +00003994 auto *MulInstr = dyn_cast<Instruction>(MulVal);
3995 if (!MulInstr)
3996 return nullptr;
Serge Pavlov4bb54d52014-04-13 18:23:41 +00003997 assert(MulInstr->getOpcode() == Instruction::Mul);
3998
David Majnemer634ca232014-11-01 23:46:05 +00003999 auto *LHS = cast<ZExtOperator>(MulInstr->getOperand(0)),
4000 *RHS = cast<ZExtOperator>(MulInstr->getOperand(1));
Serge Pavlov4bb54d52014-04-13 18:23:41 +00004001 assert(LHS->getOpcode() == Instruction::ZExt);
4002 assert(RHS->getOpcode() == Instruction::ZExt);
4003 Value *A = LHS->getOperand(0), *B = RHS->getOperand(0);
4004
4005 // Calculate type and width of the result produced by mul.with.overflow.
4006 Type *TyA = A->getType(), *TyB = B->getType();
4007 unsigned WidthA = TyA->getPrimitiveSizeInBits(),
4008 WidthB = TyB->getPrimitiveSizeInBits();
4009 unsigned MulWidth;
4010 Type *MulType;
4011 if (WidthB > WidthA) {
4012 MulWidth = WidthB;
4013 MulType = TyB;
4014 } else {
4015 MulWidth = WidthA;
4016 MulType = TyA;
4017 }
4018
4019 // In order to replace the original mul with a narrower mul.with.overflow,
4020 // all uses must ignore upper bits of the product. The number of used low
4021 // bits must be not greater than the width of mul.with.overflow.
4022 if (MulVal->hasNUsesOrMore(2))
4023 for (User *U : MulVal->users()) {
4024 if (U == &I)
4025 continue;
4026 if (TruncInst *TI = dyn_cast<TruncInst>(U)) {
4027 // Check if truncation ignores bits above MulWidth.
4028 unsigned TruncWidth = TI->getType()->getPrimitiveSizeInBits();
4029 if (TruncWidth > MulWidth)
Craig Topperf40110f2014-04-25 05:29:35 +00004030 return nullptr;
Serge Pavlov4bb54d52014-04-13 18:23:41 +00004031 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(U)) {
4032 // Check if AND ignores bits above MulWidth.
4033 if (BO->getOpcode() != Instruction::And)
Craig Topperf40110f2014-04-25 05:29:35 +00004034 return nullptr;
Serge Pavlov4bb54d52014-04-13 18:23:41 +00004035 if (ConstantInt *CI = dyn_cast<ConstantInt>(BO->getOperand(1))) {
4036 const APInt &CVal = CI->getValue();
4037 if (CVal.getBitWidth() - CVal.countLeadingZeros() > MulWidth)
Craig Topperf40110f2014-04-25 05:29:35 +00004038 return nullptr;
Davide Italiano579064e2017-07-16 18:56:30 +00004039 } else {
4040 // In this case we could have the operand of the binary operation
4041 // being defined in another block, and performing the replacement
4042 // could break the dominance relation.
4043 return nullptr;
Serge Pavlov4bb54d52014-04-13 18:23:41 +00004044 }
4045 } else {
4046 // Other uses prohibit this transformation.
Craig Topperf40110f2014-04-25 05:29:35 +00004047 return nullptr;
Serge Pavlov4bb54d52014-04-13 18:23:41 +00004048 }
4049 }
4050
4051 // Recognize patterns
4052 switch (I.getPredicate()) {
4053 case ICmpInst::ICMP_EQ:
4054 case ICmpInst::ICMP_NE:
4055 // Recognize pattern:
4056 // mulval = mul(zext A, zext B)
4057 // cmp eq/neq mulval, zext trunc mulval
4058 if (ZExtInst *Zext = dyn_cast<ZExtInst>(OtherVal))
4059 if (Zext->hasOneUse()) {
4060 Value *ZextArg = Zext->getOperand(0);
4061 if (TruncInst *Trunc = dyn_cast<TruncInst>(ZextArg))
4062 if (Trunc->getType()->getPrimitiveSizeInBits() == MulWidth)
4063 break; //Recognized
4064 }
4065
4066 // Recognize pattern:
4067 // mulval = mul(zext A, zext B)
4068 // cmp eq/neq mulval, and(mulval, mask), mask selects low MulWidth bits.
4069 ConstantInt *CI;
4070 Value *ValToMask;
4071 if (match(OtherVal, m_And(m_Value(ValToMask), m_ConstantInt(CI)))) {
4072 if (ValToMask != MulVal)
Craig Topperf40110f2014-04-25 05:29:35 +00004073 return nullptr;
Serge Pavlov4bb54d52014-04-13 18:23:41 +00004074 const APInt &CVal = CI->getValue() + 1;
4075 if (CVal.isPowerOf2()) {
4076 unsigned MaskWidth = CVal.logBase2();
4077 if (MaskWidth == MulWidth)
4078 break; // Recognized
4079 }
4080 }
Craig Topperf40110f2014-04-25 05:29:35 +00004081 return nullptr;
Serge Pavlov4bb54d52014-04-13 18:23:41 +00004082
4083 case ICmpInst::ICMP_UGT:
4084 // Recognize pattern:
4085 // mulval = mul(zext A, zext B)
4086 // cmp ugt mulval, max
4087 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal)) {
4088 APInt MaxVal = APInt::getMaxValue(MulWidth);
4089 MaxVal = MaxVal.zext(CI->getBitWidth());
4090 if (MaxVal.eq(CI->getValue()))
4091 break; // Recognized
4092 }
Craig Topperf40110f2014-04-25 05:29:35 +00004093 return nullptr;
Serge Pavlov4bb54d52014-04-13 18:23:41 +00004094
4095 case ICmpInst::ICMP_UGE:
4096 // Recognize pattern:
4097 // mulval = mul(zext A, zext B)
4098 // cmp uge mulval, max+1
4099 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal)) {
4100 APInt MaxVal = APInt::getOneBitSet(CI->getBitWidth(), MulWidth);
4101 if (MaxVal.eq(CI->getValue()))
4102 break; // Recognized
4103 }
Craig Topperf40110f2014-04-25 05:29:35 +00004104 return nullptr;
Serge Pavlov4bb54d52014-04-13 18:23:41 +00004105
4106 case ICmpInst::ICMP_ULE:
4107 // Recognize pattern:
4108 // mulval = mul(zext A, zext B)
4109 // cmp ule mulval, max
4110 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal)) {
4111 APInt MaxVal = APInt::getMaxValue(MulWidth);
4112 MaxVal = MaxVal.zext(CI->getBitWidth());
4113 if (MaxVal.eq(CI->getValue()))
4114 break; // Recognized
4115 }
Craig Topperf40110f2014-04-25 05:29:35 +00004116 return nullptr;
Serge Pavlov4bb54d52014-04-13 18:23:41 +00004117
4118 case ICmpInst::ICMP_ULT:
4119 // Recognize pattern:
4120 // mulval = mul(zext A, zext B)
4121 // cmp ule mulval, max + 1
4122 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal)) {
Serge Pavlovb5f3ddc2014-04-14 02:20:19 +00004123 APInt MaxVal = APInt::getOneBitSet(CI->getBitWidth(), MulWidth);
Serge Pavlov4bb54d52014-04-13 18:23:41 +00004124 if (MaxVal.eq(CI->getValue()))
4125 break; // Recognized
4126 }
Craig Topperf40110f2014-04-25 05:29:35 +00004127 return nullptr;
Serge Pavlov4bb54d52014-04-13 18:23:41 +00004128
4129 default:
Craig Topperf40110f2014-04-25 05:29:35 +00004130 return nullptr;
Serge Pavlov4bb54d52014-04-13 18:23:41 +00004131 }
4132
Craig Topperbb4069e2017-07-07 23:16:26 +00004133 InstCombiner::BuilderTy &Builder = IC.Builder;
4134 Builder.SetInsertPoint(MulInstr);
Serge Pavlov4bb54d52014-04-13 18:23:41 +00004135
4136 // Replace: mul(zext A, zext B) --> mul.with.overflow(A, B)
4137 Value *MulA = A, *MulB = B;
4138 if (WidthA < MulWidth)
Craig Topperbb4069e2017-07-07 23:16:26 +00004139 MulA = Builder.CreateZExt(A, MulType);
Serge Pavlov4bb54d52014-04-13 18:23:41 +00004140 if (WidthB < MulWidth)
Craig Topperbb4069e2017-07-07 23:16:26 +00004141 MulB = Builder.CreateZExt(B, MulType);
Sanjay Patelaf674fb2015-12-14 17:24:23 +00004142 Value *F = Intrinsic::getDeclaration(I.getModule(),
4143 Intrinsic::umul_with_overflow, MulType);
Craig Topperbb4069e2017-07-07 23:16:26 +00004144 CallInst *Call = Builder.CreateCall(F, {MulA, MulB}, "umul");
Serge Pavlov4bb54d52014-04-13 18:23:41 +00004145 IC.Worklist.Add(MulInstr);
4146
4147 // If there are uses of mul result other than the comparison, we know that
4148 // they are truncation or binary AND. Change them to use result of
Serge Pavlovb5f3ddc2014-04-14 02:20:19 +00004149 // mul.with.overflow and adjust properly mask/size.
Serge Pavlov4bb54d52014-04-13 18:23:41 +00004150 if (MulVal->hasNUsesOrMore(2)) {
Craig Topperbb4069e2017-07-07 23:16:26 +00004151 Value *Mul = Builder.CreateExtractValue(Call, 0, "umul.value");
Joseph Tremoulet6f406d42018-06-15 16:52:40 +00004152 for (auto UI = MulVal->user_begin(), UE = MulVal->user_end(); UI != UE;) {
4153 User *U = *UI++;
Serge Pavlov4bb54d52014-04-13 18:23:41 +00004154 if (U == &I || U == OtherVal)
4155 continue;
4156 if (TruncInst *TI = dyn_cast<TruncInst>(U)) {
4157 if (TI->getType()->getPrimitiveSizeInBits() == MulWidth)
Sanjay Patel4b198802016-02-01 22:23:39 +00004158 IC.replaceInstUsesWith(*TI, Mul);
Serge Pavlov4bb54d52014-04-13 18:23:41 +00004159 else
4160 TI->setOperand(0, Mul);
4161 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(U)) {
4162 assert(BO->getOpcode() == Instruction::And);
4163 // Replace (mul & mask) --> zext (mul.with.overflow & short_mask)
Davide Italiano579064e2017-07-16 18:56:30 +00004164 ConstantInt *CI = cast<ConstantInt>(BO->getOperand(1));
4165 APInt ShortMask = CI->getValue().trunc(MulWidth);
Craig Topperbb4069e2017-07-07 23:16:26 +00004166 Value *ShortAnd = Builder.CreateAnd(Mul, ShortMask);
Davide Italiano579064e2017-07-16 18:56:30 +00004167 Instruction *Zext =
4168 cast<Instruction>(Builder.CreateZExt(ShortAnd, BO->getType()));
4169 IC.Worklist.Add(Zext);
Sanjay Patel4b198802016-02-01 22:23:39 +00004170 IC.replaceInstUsesWith(*BO, Zext);
Serge Pavlov4bb54d52014-04-13 18:23:41 +00004171 } else {
4172 llvm_unreachable("Unexpected Binary operation");
4173 }
Davide Italiano579064e2017-07-16 18:56:30 +00004174 IC.Worklist.Add(cast<Instruction>(U));
Serge Pavlov4bb54d52014-04-13 18:23:41 +00004175 }
4176 }
4177 if (isa<Instruction>(OtherVal))
4178 IC.Worklist.Add(cast<Instruction>(OtherVal));
4179
4180 // The original icmp gets replaced with the overflow value, maybe inverted
4181 // depending on predicate.
4182 bool Inverse = false;
4183 switch (I.getPredicate()) {
4184 case ICmpInst::ICMP_NE:
4185 break;
4186 case ICmpInst::ICMP_EQ:
4187 Inverse = true;
4188 break;
4189 case ICmpInst::ICMP_UGT:
4190 case ICmpInst::ICMP_UGE:
4191 if (I.getOperand(0) == MulVal)
4192 break;
4193 Inverse = true;
4194 break;
4195 case ICmpInst::ICMP_ULT:
4196 case ICmpInst::ICMP_ULE:
4197 if (I.getOperand(1) == MulVal)
4198 break;
4199 Inverse = true;
4200 break;
4201 default:
4202 llvm_unreachable("Unexpected predicate");
4203 }
4204 if (Inverse) {
Craig Topperbb4069e2017-07-07 23:16:26 +00004205 Value *Res = Builder.CreateExtractValue(Call, 1);
Serge Pavlov4bb54d52014-04-13 18:23:41 +00004206 return BinaryOperator::CreateNot(Res);
4207 }
4208
4209 return ExtractValueInst::Create(Call, 1);
4210}
4211
Sanjay Patel5f0217f2016-06-05 16:46:18 +00004212/// When performing a comparison against a constant, it is possible that not all
4213/// the bits in the LHS are demanded. This helper method computes the mask that
4214/// IS demanded.
Craig Topper3edda872017-09-22 18:57:23 +00004215static APInt getDemandedBitsLHSMask(ICmpInst &I, unsigned BitWidth) {
Craig Topper18887bf2017-09-20 23:48:58 +00004216 const APInt *RHS;
4217 if (!match(I.getOperand(1), m_APInt(RHS)))
4218 return APInt::getAllOnesValue(BitWidth);
Jim Grosbach129c52a2011-09-30 18:09:53 +00004219
Craig Topper3edda872017-09-22 18:57:23 +00004220 // If this is a normal comparison, it demands all bits. If it is a sign bit
4221 // comparison, it only demands the sign bit.
4222 bool UnusedBit;
4223 if (isSignBitCheck(I.getPredicate(), *RHS, UnusedBit))
4224 return APInt::getSignMask(BitWidth);
4225
Owen Andersond490c2d2011-01-11 00:36:45 +00004226 switch (I.getPredicate()) {
Jim Grosbach129c52a2011-09-30 18:09:53 +00004227 // For a UGT comparison, we don't care about any bits that
Owen Andersond490c2d2011-01-11 00:36:45 +00004228 // correspond to the trailing ones of the comparand. The value of these
4229 // bits doesn't impact the outcome of the comparison, because any value
4230 // greater than the RHS must differ in a bit higher than these due to carry.
Craig Topper18887bf2017-09-20 23:48:58 +00004231 case ICmpInst::ICMP_UGT:
4232 return APInt::getBitsSetFrom(BitWidth, RHS->countTrailingOnes());
Jim Grosbach129c52a2011-09-30 18:09:53 +00004233
Owen Andersond490c2d2011-01-11 00:36:45 +00004234 // Similarly, for a ULT comparison, we don't care about the trailing zeros.
4235 // Any value less than the RHS must differ in a higher bit because of carries.
Craig Topper18887bf2017-09-20 23:48:58 +00004236 case ICmpInst::ICMP_ULT:
4237 return APInt::getBitsSetFrom(BitWidth, RHS->countTrailingZeros());
Jim Grosbach129c52a2011-09-30 18:09:53 +00004238
Owen Andersond490c2d2011-01-11 00:36:45 +00004239 default:
4240 return APInt::getAllOnesValue(BitWidth);
4241 }
Owen Andersond490c2d2011-01-11 00:36:45 +00004242}
Chris Lattner2188e402010-01-04 07:37:31 +00004243
Sanjay Patel4ccae1c2018-02-02 18:39:05 +00004244/// Check if the order of \p Op0 and \p Op1 as operands in an ICmpInst
Quentin Colombet5ab55552013-09-09 20:56:48 +00004245/// should be swapped.
Alp Tokercb402912014-01-24 17:20:08 +00004246/// The decision is based on how many times these two operands are reused
Quentin Colombet5ab55552013-09-09 20:56:48 +00004247/// as subtract operands and their positions in those instructions.
Sanjay Patel4ccae1c2018-02-02 18:39:05 +00004248/// The rationale is that several architectures use the same instruction for
4249/// both subtract and cmp. Thus, it is better if the order of those operands
Quentin Colombet5ab55552013-09-09 20:56:48 +00004250/// match.
4251/// \return true if Op0 and Op1 should be swapped.
Sanjay Patel4ccae1c2018-02-02 18:39:05 +00004252static bool swapMayExposeCSEOpportunities(const Value *Op0, const Value *Op1) {
4253 // Filter out pointer values as those cannot appear directly in subtract.
Quentin Colombet5ab55552013-09-09 20:56:48 +00004254 // FIXME: we may want to go through inttoptrs or bitcasts.
4255 if (Op0->getType()->isPointerTy())
4256 return false;
Sanjay Patel1ea86972018-02-02 19:08:12 +00004257 // If a subtract already has the same operands as a compare, swapping would be
4258 // bad. If a subtract has the same operands as a compare but in reverse order,
4259 // then swapping is good.
4260 int GoodToSwap = 0;
Chandler Carruthcdf47882014-03-09 03:16:01 +00004261 for (const User *U : Op0->users()) {
Sanjay Patel1ea86972018-02-02 19:08:12 +00004262 if (match(U, m_Sub(m_Specific(Op1), m_Specific(Op0))))
4263 GoodToSwap++;
4264 else if (match(U, m_Sub(m_Specific(Op0), m_Specific(Op1))))
4265 GoodToSwap--;
Quentin Colombet5ab55552013-09-09 20:56:48 +00004266 }
Sanjay Patel1ea86972018-02-02 19:08:12 +00004267 return GoodToSwap > 0;
Quentin Colombet5ab55552013-09-09 20:56:48 +00004268}
4269
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00004270/// Check that one use is in the same block as the definition and all
Sanjay Patel53523312016-09-12 14:25:46 +00004271/// other uses are in blocks dominated by a given block.
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +00004272///
4273/// \param DI Definition
4274/// \param UI Use
4275/// \param DB Block that must dominate all uses of \p DI outside
4276/// the parent block
4277/// \return true when \p UI is the only use of \p DI in the parent block
4278/// and all other uses of \p DI are in blocks dominated by \p DB.
4279///
4280bool InstCombiner::dominatesAllUses(const Instruction *DI,
4281 const Instruction *UI,
4282 const BasicBlock *DB) const {
4283 assert(DI && UI && "Instruction not defined\n");
Sanjay Patel53523312016-09-12 14:25:46 +00004284 // Ignore incomplete definitions.
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +00004285 if (!DI->getParent())
4286 return false;
Sanjay Patel53523312016-09-12 14:25:46 +00004287 // DI and UI must be in the same block.
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +00004288 if (DI->getParent() != UI->getParent())
4289 return false;
Sanjay Patel53523312016-09-12 14:25:46 +00004290 // Protect from self-referencing blocks.
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +00004291 if (DI->getParent() == DB)
4292 return false;
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +00004293 for (const User *U : DI->users()) {
4294 auto *Usr = cast<Instruction>(U);
Justin Bogner99798402016-08-05 01:06:44 +00004295 if (Usr != UI && !DT.dominates(DB, Usr->getParent()))
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +00004296 return false;
4297 }
4298 return true;
4299}
4300
Sanjay Patel5f0217f2016-06-05 16:46:18 +00004301/// Return true when the instruction sequence within a block is select-cmp-br.
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +00004302static bool isChainSelectCmpBranch(const SelectInst *SI) {
4303 const BasicBlock *BB = SI->getParent();
4304 if (!BB)
4305 return false;
4306 auto *BI = dyn_cast_or_null<BranchInst>(BB->getTerminator());
4307 if (!BI || BI->getNumSuccessors() != 2)
4308 return false;
4309 auto *IC = dyn_cast<ICmpInst>(BI->getCondition());
4310 if (!IC || (IC->getOperand(0) != SI && IC->getOperand(1) != SI))
4311 return false;
4312 return true;
4313}
4314
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00004315/// True when a select result is replaced by one of its operands
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +00004316/// in select-icmp sequence. This will eventually result in the elimination
4317/// of the select.
4318///
4319/// \param SI Select instruction
4320/// \param Icmp Compare instruction
4321/// \param SIOpd Operand that replaces the select
4322///
4323/// Notes:
4324/// - The replacement is global and requires dominator information
4325/// - The caller is responsible for the actual replacement
4326///
4327/// Example:
4328///
4329/// entry:
4330/// %4 = select i1 %3, %C* %0, %C* null
4331/// %5 = icmp eq %C* %4, null
4332/// br i1 %5, label %9, label %7
4333/// ...
4334/// ; <label>:7 ; preds = %entry
4335/// %8 = getelementptr inbounds %C* %4, i64 0, i32 0
4336/// ...
4337///
4338/// can be transformed to
4339///
4340/// %5 = icmp eq %C* %0, null
4341/// %6 = select i1 %3, i1 %5, i1 true
4342/// br i1 %6, label %9, label %7
4343/// ...
4344/// ; <label>:7 ; preds = %entry
4345/// %8 = getelementptr inbounds %C* %0, i64 0, i32 0 // replace by %0!
4346///
4347/// Similar when the first operand of the select is a constant or/and
4348/// the compare is for not equal rather than equal.
4349///
4350/// NOTE: The function is only called when the select and compare constants
4351/// are equal, the optimization can work only for EQ predicates. This is not a
4352/// major restriction since a NE compare should be 'normalized' to an equal
4353/// compare, which usually happens in the combiner and test case
Sanjay Patel53523312016-09-12 14:25:46 +00004354/// select-cmp-br.ll checks for it.
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +00004355bool InstCombiner::replacedSelectWithOperand(SelectInst *SI,
4356 const ICmpInst *Icmp,
4357 const unsigned SIOpd) {
David Majnemer83484fd2014-11-22 06:09:28 +00004358 assert((SIOpd == 1 || SIOpd == 2) && "Invalid select operand!");
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +00004359 if (isChainSelectCmpBranch(SI) && Icmp->getPredicate() == ICmpInst::ICMP_EQ) {
4360 BasicBlock *Succ = SI->getParent()->getTerminator()->getSuccessor(1);
Bjorn Petterssone5027cf2017-03-02 15:18:58 +00004361 // The check for the single predecessor is not the best that can be
Sanjay Patel53523312016-09-12 14:25:46 +00004362 // done. But it protects efficiently against cases like when SI's
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +00004363 // home block has two successors, Succ and Succ1, and Succ1 predecessor
4364 // of Succ. Then SI can't be replaced by SIOpd because the use that gets
4365 // replaced can be reached on either path. So the uniqueness check
4366 // guarantees that the path all uses of SI (outside SI's parent) are on
4367 // is disjoint from all other paths out of SI. But that information
4368 // is more expensive to compute, and the trade-off here is in favor
Bjorn Petterssone5027cf2017-03-02 15:18:58 +00004369 // of compile-time. It should also be noticed that we check for a single
4370 // predecessor and not only uniqueness. This to handle the situation when
4371 // Succ and Succ1 points to the same basic block.
4372 if (Succ->getSinglePredecessor() && dominatesAllUses(SI, Icmp, Succ)) {
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +00004373 NumSel++;
4374 SI->replaceUsesOutsideBlock(SI->getOperand(SIOpd), SI->getParent());
4375 return true;
4376 }
4377 }
4378 return false;
4379}
4380
Sanjay Patel3151dec2016-09-12 15:24:31 +00004381/// Try to fold the comparison based on range information we can get by checking
4382/// whether bits are known to be zero or one in the inputs.
4383Instruction *InstCombiner::foldICmpUsingKnownBits(ICmpInst &I) {
4384 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
4385 Type *Ty = Op0->getType();
Sanjay Patel0531f0a2016-09-12 15:52:28 +00004386 ICmpInst::Predicate Pred = I.getPredicate();
Sanjay Patel3151dec2016-09-12 15:24:31 +00004387
4388 // Get scalar or pointer size.
4389 unsigned BitWidth = Ty->isIntOrIntVectorTy()
4390 ? Ty->getScalarSizeInBits()
Elena Demikhovsky945b7e52018-02-14 06:58:08 +00004391 : DL.getIndexTypeSizeInBits(Ty->getScalarType());
Sanjay Patel3151dec2016-09-12 15:24:31 +00004392
4393 if (!BitWidth)
4394 return nullptr;
4395
Craig Topperb45eabc2017-04-26 16:39:58 +00004396 KnownBits Op0Known(BitWidth);
4397 KnownBits Op1Known(BitWidth);
Sanjay Patel3151dec2016-09-12 15:24:31 +00004398
Craig Topper47596dd2017-03-25 06:52:52 +00004399 if (SimplifyDemandedBits(&I, 0,
Craig Topper3edda872017-09-22 18:57:23 +00004400 getDemandedBitsLHSMask(I, BitWidth),
Craig Topperb45eabc2017-04-26 16:39:58 +00004401 Op0Known, 0))
Sanjay Patel3151dec2016-09-12 15:24:31 +00004402 return &I;
4403
Craig Topper47596dd2017-03-25 06:52:52 +00004404 if (SimplifyDemandedBits(&I, 1, APInt::getAllOnesValue(BitWidth),
Craig Topperb45eabc2017-04-26 16:39:58 +00004405 Op1Known, 0))
Sanjay Patel3151dec2016-09-12 15:24:31 +00004406 return &I;
4407
4408 // Given the known and unknown bits, compute a range that the LHS could be
4409 // in. Compute the Min, Max and RHS values based on the known bits. For the
4410 // EQ and NE we use unsigned values.
4411 APInt Op0Min(BitWidth, 0), Op0Max(BitWidth, 0);
4412 APInt Op1Min(BitWidth, 0), Op1Max(BitWidth, 0);
4413 if (I.isSigned()) {
Craig Topperb45eabc2017-04-26 16:39:58 +00004414 computeSignedMinMaxValuesFromKnownBits(Op0Known, Op0Min, Op0Max);
4415 computeSignedMinMaxValuesFromKnownBits(Op1Known, Op1Min, Op1Max);
Sanjay Patel3151dec2016-09-12 15:24:31 +00004416 } else {
Craig Topperb45eabc2017-04-26 16:39:58 +00004417 computeUnsignedMinMaxValuesFromKnownBits(Op0Known, Op0Min, Op0Max);
4418 computeUnsignedMinMaxValuesFromKnownBits(Op1Known, Op1Min, Op1Max);
Sanjay Patel3151dec2016-09-12 15:24:31 +00004419 }
4420
Sanjay Patelc63f9012018-01-04 14:31:56 +00004421 // If Min and Max are known to be the same, then SimplifyDemandedBits figured
4422 // out that the LHS or RHS is a constant. Constant fold this now, so that
Sanjay Patel0531f0a2016-09-12 15:52:28 +00004423 // code below can assume that Min != Max.
Sanjay Patel3151dec2016-09-12 15:24:31 +00004424 if (!isa<Constant>(Op0) && Op0Min == Op0Max)
Sanjay Patelc63f9012018-01-04 14:31:56 +00004425 return new ICmpInst(Pred, ConstantExpr::getIntegerValue(Ty, Op0Min), Op1);
Sanjay Patel3151dec2016-09-12 15:24:31 +00004426 if (!isa<Constant>(Op1) && Op1Min == Op1Max)
Sanjay Patelc63f9012018-01-04 14:31:56 +00004427 return new ICmpInst(Pred, Op0, ConstantExpr::getIntegerValue(Ty, Op1Min));
Sanjay Patel3151dec2016-09-12 15:24:31 +00004428
4429 // Based on the range information we know about the LHS, see if we can
4430 // simplify this comparison. For example, (x&4) < 8 is always true.
Sanjay Patel0531f0a2016-09-12 15:52:28 +00004431 switch (Pred) {
Sanjay Patel3151dec2016-09-12 15:24:31 +00004432 default:
4433 llvm_unreachable("Unknown icmp opcode!");
Sanjay Patel9efb1bd2016-09-14 23:38:56 +00004434 case ICmpInst::ICMP_EQ:
Sanjay Patel3151dec2016-09-12 15:24:31 +00004435 case ICmpInst::ICMP_NE: {
Sanjay Patel9efb1bd2016-09-14 23:38:56 +00004436 if (Op0Max.ult(Op1Min) || Op0Min.ugt(Op1Max)) {
4437 return Pred == CmpInst::ICMP_EQ
4438 ? replaceInstUsesWith(I, ConstantInt::getFalse(I.getType()))
4439 : replaceInstUsesWith(I, ConstantInt::getTrue(I.getType()));
4440 }
Sanjay Patel3151dec2016-09-12 15:24:31 +00004441
Sanjay Patel0531f0a2016-09-12 15:52:28 +00004442 // If all bits are known zero except for one, then we know at most one bit
4443 // is set. If the comparison is against zero, then this is a check to see if
4444 // *that* bit is set.
Craig Topperb45eabc2017-04-26 16:39:58 +00004445 APInt Op0KnownZeroInverted = ~Op0Known.Zero;
Craig Topperf0aeee02017-05-05 17:36:09 +00004446 if (Op1Known.isZero()) {
Sanjay Patel3151dec2016-09-12 15:24:31 +00004447 // If the LHS is an AND with the same constant, look through it.
4448 Value *LHS = nullptr;
Sanjay Patel7577a3d2016-09-15 14:15:47 +00004449 const APInt *LHSC;
4450 if (!match(Op0, m_And(m_Value(LHS), m_APInt(LHSC))) ||
4451 *LHSC != Op0KnownZeroInverted)
Sanjay Patel3151dec2016-09-12 15:24:31 +00004452 LHS = Op0;
4453
Sanjay Patel9efb1bd2016-09-14 23:38:56 +00004454 Value *X;
Sanjay Patel3151dec2016-09-12 15:24:31 +00004455 if (match(LHS, m_Shl(m_One(), m_Value(X)))) {
4456 APInt ValToCheck = Op0KnownZeroInverted;
Sanjay Patel9efb1bd2016-09-14 23:38:56 +00004457 Type *XTy = X->getType();
Sanjay Patel3151dec2016-09-12 15:24:31 +00004458 if (ValToCheck.isPowerOf2()) {
Sanjay Patel9efb1bd2016-09-14 23:38:56 +00004459 // ((1 << X) & 8) == 0 -> X != 3
4460 // ((1 << X) & 8) != 0 -> X == 3
4461 auto *CmpC = ConstantInt::get(XTy, ValToCheck.countTrailingZeros());
4462 auto NewPred = ICmpInst::getInversePredicate(Pred);
4463 return new ICmpInst(NewPred, X, CmpC);
Sanjay Patel3151dec2016-09-12 15:24:31 +00004464 } else if ((++ValToCheck).isPowerOf2()) {
Sanjay Patel9efb1bd2016-09-14 23:38:56 +00004465 // ((1 << X) & 7) == 0 -> X >= 3
4466 // ((1 << X) & 7) != 0 -> X < 3
4467 auto *CmpC = ConstantInt::get(XTy, ValToCheck.countTrailingZeros());
4468 auto NewPred =
4469 Pred == CmpInst::ICMP_EQ ? CmpInst::ICMP_UGE : CmpInst::ICMP_ULT;
4470 return new ICmpInst(NewPred, X, CmpC);
Sanjay Patel3151dec2016-09-12 15:24:31 +00004471 }
4472 }
4473
Sanjay Patel9efb1bd2016-09-14 23:38:56 +00004474 // Check if the LHS is 8 >>u x and the result is a power of 2 like 1.
Sanjay Patel3151dec2016-09-12 15:24:31 +00004475 const APInt *CI;
Craig Topper73ba1c82017-06-07 07:40:37 +00004476 if (Op0KnownZeroInverted.isOneValue() &&
Sanjay Patel9efb1bd2016-09-14 23:38:56 +00004477 match(LHS, m_LShr(m_Power2(CI), m_Value(X)))) {
4478 // ((8 >>u X) & 1) == 0 -> X != 3
4479 // ((8 >>u X) & 1) != 0 -> X == 3
4480 unsigned CmpVal = CI->countTrailingZeros();
4481 auto NewPred = ICmpInst::getInversePredicate(Pred);
4482 return new ICmpInst(NewPred, X, ConstantInt::get(X->getType(), CmpVal));
4483 }
Sanjay Patel3151dec2016-09-12 15:24:31 +00004484 }
4485 break;
4486 }
4487 case ICmpInst::ICMP_ULT: {
4488 if (Op0Max.ult(Op1Min)) // A <u B -> true if max(A) < min(B)
4489 return replaceInstUsesWith(I, ConstantInt::getTrue(I.getType()));
4490 if (Op0Min.uge(Op1Max)) // A <u B -> false if min(A) >= max(B)
4491 return replaceInstUsesWith(I, ConstantInt::getFalse(I.getType()));
4492 if (Op1Min == Op0Max) // A <u B -> A != B if max(A) == min(B)
4493 return new ICmpInst(ICmpInst::ICMP_NE, Op0, Op1);
4494
Craig Topper0cd25942017-09-27 22:57:18 +00004495 const APInt *CmpC;
4496 if (match(Op1, m_APInt(CmpC))) {
Sanjay Patel3151dec2016-09-12 15:24:31 +00004497 // A <u C -> A == C-1 if min(A)+1 == C
Craig Topper0cd25942017-09-27 22:57:18 +00004498 if (*CmpC == Op0Min + 1)
Craig Topper2c9b7d72017-09-22 18:57:20 +00004499 return new ICmpInst(ICmpInst::ICMP_EQ, Op0,
Craig Topper0cd25942017-09-27 22:57:18 +00004500 ConstantInt::get(Op1->getType(), *CmpC - 1));
Craig Topper30dc9792017-09-25 21:15:00 +00004501 // X <u C --> X == 0, if the number of zero bits in the bottom of X
4502 // exceeds the log2 of C.
Craig Topper0cd25942017-09-27 22:57:18 +00004503 if (Op0Known.countMinTrailingZeros() >= CmpC->ceilLogBase2())
Craig Topper30dc9792017-09-25 21:15:00 +00004504 return new ICmpInst(ICmpInst::ICMP_EQ, Op0,
4505 Constant::getNullValue(Op1->getType()));
Sanjay Patel3151dec2016-09-12 15:24:31 +00004506 }
4507 break;
4508 }
4509 case ICmpInst::ICMP_UGT: {
4510 if (Op0Min.ugt(Op1Max)) // A >u B -> true if min(A) > max(B)
4511 return replaceInstUsesWith(I, ConstantInt::getTrue(I.getType()));
Sanjay Patel3151dec2016-09-12 15:24:31 +00004512 if (Op0Max.ule(Op1Min)) // A >u B -> false if max(A) <= max(B)
4513 return replaceInstUsesWith(I, ConstantInt::getFalse(I.getType()));
Sanjay Patel3151dec2016-09-12 15:24:31 +00004514 if (Op1Max == Op0Min) // A >u B -> A != B if min(A) == max(B)
4515 return new ICmpInst(ICmpInst::ICMP_NE, Op0, Op1);
4516
Craig Topper0cd25942017-09-27 22:57:18 +00004517 const APInt *CmpC;
4518 if (match(Op1, m_APInt(CmpC))) {
Sanjay Patel3151dec2016-09-12 15:24:31 +00004519 // A >u C -> A == C+1 if max(a)-1 == C
Craig Topper0cd25942017-09-27 22:57:18 +00004520 if (*CmpC == Op0Max - 1)
Sanjay Patel3151dec2016-09-12 15:24:31 +00004521 return new ICmpInst(ICmpInst::ICMP_EQ, Op0,
Craig Topper0cd25942017-09-27 22:57:18 +00004522 ConstantInt::get(Op1->getType(), *CmpC + 1));
Craig Topper30dc9792017-09-25 21:15:00 +00004523 // X >u C --> X != 0, if the number of zero bits in the bottom of X
4524 // exceeds the log2 of C.
Craig Topper0cd25942017-09-27 22:57:18 +00004525 if (Op0Known.countMinTrailingZeros() >= CmpC->getActiveBits())
Craig Topper30dc9792017-09-25 21:15:00 +00004526 return new ICmpInst(ICmpInst::ICMP_NE, Op0,
4527 Constant::getNullValue(Op1->getType()));
Sanjay Patel3151dec2016-09-12 15:24:31 +00004528 }
4529 break;
4530 }
Craig Topper0cd25942017-09-27 22:57:18 +00004531 case ICmpInst::ICMP_SLT: {
Sanjay Patel3151dec2016-09-12 15:24:31 +00004532 if (Op0Max.slt(Op1Min)) // A <s B -> true if max(A) < min(C)
4533 return replaceInstUsesWith(I, ConstantInt::getTrue(I.getType()));
4534 if (Op0Min.sge(Op1Max)) // A <s B -> false if min(A) >= max(C)
4535 return replaceInstUsesWith(I, ConstantInt::getFalse(I.getType()));
4536 if (Op1Min == Op0Max) // A <s B -> A != B if max(A) == min(B)
4537 return new ICmpInst(ICmpInst::ICMP_NE, Op0, Op1);
Craig Topper0cd25942017-09-27 22:57:18 +00004538 const APInt *CmpC;
4539 if (match(Op1, m_APInt(CmpC))) {
4540 if (*CmpC == Op0Min + 1) // A <s C -> A == C-1 if min(A)+1 == C
Sanjay Patel3151dec2016-09-12 15:24:31 +00004541 return new ICmpInst(ICmpInst::ICMP_EQ, Op0,
Craig Topper0cd25942017-09-27 22:57:18 +00004542 ConstantInt::get(Op1->getType(), *CmpC - 1));
Sanjay Patel3151dec2016-09-12 15:24:31 +00004543 }
4544 break;
Craig Topper0cd25942017-09-27 22:57:18 +00004545 }
4546 case ICmpInst::ICMP_SGT: {
Sanjay Patel3151dec2016-09-12 15:24:31 +00004547 if (Op0Min.sgt(Op1Max)) // A >s B -> true if min(A) > max(B)
4548 return replaceInstUsesWith(I, ConstantInt::getTrue(I.getType()));
4549 if (Op0Max.sle(Op1Min)) // A >s B -> false if max(A) <= min(B)
4550 return replaceInstUsesWith(I, ConstantInt::getFalse(I.getType()));
Sanjay Patel3151dec2016-09-12 15:24:31 +00004551 if (Op1Max == Op0Min) // A >s B -> A != B if min(A) == max(B)
4552 return new ICmpInst(ICmpInst::ICMP_NE, Op0, Op1);
Craig Topper0cd25942017-09-27 22:57:18 +00004553 const APInt *CmpC;
4554 if (match(Op1, m_APInt(CmpC))) {
4555 if (*CmpC == Op0Max - 1) // A >s C -> A == C+1 if max(A)-1 == C
Sanjay Patel3151dec2016-09-12 15:24:31 +00004556 return new ICmpInst(ICmpInst::ICMP_EQ, Op0,
Craig Topper0cd25942017-09-27 22:57:18 +00004557 ConstantInt::get(Op1->getType(), *CmpC + 1));
Sanjay Patel3151dec2016-09-12 15:24:31 +00004558 }
4559 break;
Craig Topper0cd25942017-09-27 22:57:18 +00004560 }
Sanjay Patel3151dec2016-09-12 15:24:31 +00004561 case ICmpInst::ICMP_SGE:
4562 assert(!isa<ConstantInt>(Op1) && "ICMP_SGE with ConstantInt not folded!");
4563 if (Op0Min.sge(Op1Max)) // A >=s B -> true if min(A) >= max(B)
4564 return replaceInstUsesWith(I, ConstantInt::getTrue(I.getType()));
4565 if (Op0Max.slt(Op1Min)) // A >=s B -> false if max(A) < min(B)
4566 return replaceInstUsesWith(I, ConstantInt::getFalse(I.getType()));
Craig Topperea927ba2017-09-22 21:47:22 +00004567 if (Op1Min == Op0Max) // A >=s B -> A == B if max(A) == min(B)
4568 return new ICmpInst(ICmpInst::ICMP_EQ, Op0, Op1);
Sanjay Patel3151dec2016-09-12 15:24:31 +00004569 break;
4570 case ICmpInst::ICMP_SLE:
4571 assert(!isa<ConstantInt>(Op1) && "ICMP_SLE with ConstantInt not folded!");
4572 if (Op0Max.sle(Op1Min)) // A <=s B -> true if max(A) <= min(B)
4573 return replaceInstUsesWith(I, ConstantInt::getTrue(I.getType()));
4574 if (Op0Min.sgt(Op1Max)) // A <=s B -> false if min(A) > max(B)
4575 return replaceInstUsesWith(I, ConstantInt::getFalse(I.getType()));
Craig Topperea927ba2017-09-22 21:47:22 +00004576 if (Op1Max == Op0Min) // A <=s B -> A == B if min(A) == max(B)
4577 return new ICmpInst(ICmpInst::ICMP_EQ, Op0, Op1);
Sanjay Patel3151dec2016-09-12 15:24:31 +00004578 break;
4579 case ICmpInst::ICMP_UGE:
4580 assert(!isa<ConstantInt>(Op1) && "ICMP_UGE with ConstantInt not folded!");
4581 if (Op0Min.uge(Op1Max)) // A >=u B -> true if min(A) >= max(B)
4582 return replaceInstUsesWith(I, ConstantInt::getTrue(I.getType()));
4583 if (Op0Max.ult(Op1Min)) // A >=u B -> false if max(A) < min(B)
4584 return replaceInstUsesWith(I, ConstantInt::getFalse(I.getType()));
Craig Topperea927ba2017-09-22 21:47:22 +00004585 if (Op1Min == Op0Max) // A >=u B -> A == B if max(A) == min(B)
4586 return new ICmpInst(ICmpInst::ICMP_EQ, Op0, Op1);
Sanjay Patel3151dec2016-09-12 15:24:31 +00004587 break;
4588 case ICmpInst::ICMP_ULE:
4589 assert(!isa<ConstantInt>(Op1) && "ICMP_ULE with ConstantInt not folded!");
4590 if (Op0Max.ule(Op1Min)) // A <=u B -> true if max(A) <= min(B)
4591 return replaceInstUsesWith(I, ConstantInt::getTrue(I.getType()));
4592 if (Op0Min.ugt(Op1Max)) // A <=u B -> false if min(A) > max(B)
4593 return replaceInstUsesWith(I, ConstantInt::getFalse(I.getType()));
Craig Topperea927ba2017-09-22 21:47:22 +00004594 if (Op1Max == Op0Min) // A <=u B -> A == B if min(A) == max(B)
4595 return new ICmpInst(ICmpInst::ICMP_EQ, Op0, Op1);
Sanjay Patel3151dec2016-09-12 15:24:31 +00004596 break;
4597 }
4598
4599 // Turn a signed comparison into an unsigned one if both operands are known to
4600 // have the same sign.
4601 if (I.isSigned() &&
Craig Topperb45eabc2017-04-26 16:39:58 +00004602 ((Op0Known.Zero.isNegative() && Op1Known.Zero.isNegative()) ||
4603 (Op0Known.One.isNegative() && Op1Known.One.isNegative())))
Sanjay Patel3151dec2016-09-12 15:24:31 +00004604 return new ICmpInst(I.getUnsignedPredicate(), Op0, Op1);
4605
4606 return nullptr;
4607}
4608
Sanjay Pateld5b0e542016-04-29 16:22:25 +00004609/// If we have an icmp le or icmp ge instruction with a constant operand, turn
4610/// it into the appropriate icmp lt or icmp gt instruction. This transform
4611/// allows them to be folded in visitICmpInst.
Sanjay Patele9b2c322016-05-17 00:57:57 +00004612static ICmpInst *canonicalizeCmpWithConstant(ICmpInst &I) {
4613 ICmpInst::Predicate Pred = I.getPredicate();
4614 if (Pred != ICmpInst::ICMP_SLE && Pred != ICmpInst::ICMP_SGE &&
4615 Pred != ICmpInst::ICMP_ULE && Pred != ICmpInst::ICMP_UGE)
4616 return nullptr;
4617
Sanjay Pateld5b0e542016-04-29 16:22:25 +00004618 Value *Op0 = I.getOperand(0);
4619 Value *Op1 = I.getOperand(1);
Sanjay Patele9b2c322016-05-17 00:57:57 +00004620 auto *Op1C = dyn_cast<Constant>(Op1);
4621 if (!Op1C)
4622 return nullptr;
Sanjay Pateld5b0e542016-04-29 16:22:25 +00004623
Sanjay Patele9b2c322016-05-17 00:57:57 +00004624 // Check if the constant operand can be safely incremented/decremented without
4625 // overflowing/underflowing. For scalars, SimplifyICmpInst has already handled
4626 // the edge cases for us, so we just assert on them. For vectors, we must
4627 // handle the edge cases.
4628 Type *Op1Type = Op1->getType();
4629 bool IsSigned = I.isSigned();
4630 bool IsLE = (Pred == ICmpInst::ICMP_SLE || Pred == ICmpInst::ICMP_ULE);
Sanjay Patel18254932016-05-17 01:12:31 +00004631 auto *CI = dyn_cast<ConstantInt>(Op1C);
4632 if (CI) {
Sanjay Patele9b2c322016-05-17 00:57:57 +00004633 // A <= MAX -> TRUE ; A >= MIN -> TRUE
4634 assert(IsLE ? !CI->isMaxValue(IsSigned) : !CI->isMinValue(IsSigned));
4635 } else if (Op1Type->isVectorTy()) {
Sanjay Patelb79ab272016-05-13 15:10:46 +00004636 // TODO? If the edge cases for vectors were guaranteed to be handled as they
Sanjay Patele9b2c322016-05-17 00:57:57 +00004637 // are for scalar, we could remove the min/max checks. However, to do that,
4638 // we would have to use insertelement/shufflevector to replace edge values.
4639 unsigned NumElts = Op1Type->getVectorNumElements();
4640 for (unsigned i = 0; i != NumElts; ++i) {
4641 Constant *Elt = Op1C->getAggregateElement(i);
Benjamin Kramerca9a0fe2016-05-17 12:08:55 +00004642 if (!Elt)
4643 return nullptr;
4644
Sanjay Patele9b2c322016-05-17 00:57:57 +00004645 if (isa<UndefValue>(Elt))
4646 continue;
Sanjay Patel06b127a2016-09-15 14:37:50 +00004647
Sanjay Patele9b2c322016-05-17 00:57:57 +00004648 // Bail out if we can't determine if this constant is min/max or if we
4649 // know that this constant is min/max.
4650 auto *CI = dyn_cast<ConstantInt>(Elt);
4651 if (!CI || (IsLE ? CI->isMaxValue(IsSigned) : CI->isMinValue(IsSigned)))
4652 return nullptr;
Sanjay Patelb79ab272016-05-13 15:10:46 +00004653 }
Sanjay Patele9b2c322016-05-17 00:57:57 +00004654 } else {
4655 // ConstantExpr?
4656 return nullptr;
Sanjay Patelb79ab272016-05-13 15:10:46 +00004657 }
Sanjay Pateld5b0e542016-04-29 16:22:25 +00004658
Sanjay Patele9b2c322016-05-17 00:57:57 +00004659 // Increment or decrement the constant and set the new comparison predicate:
4660 // ULE -> ULT ; UGE -> UGT ; SLE -> SLT ; SGE -> SGT
Sanjay Patel22b01fe2016-05-17 20:20:40 +00004661 Constant *OneOrNegOne = ConstantInt::get(Op1Type, IsLE ? 1 : -1, true);
Sanjay Patele9b2c322016-05-17 00:57:57 +00004662 CmpInst::Predicate NewPred = IsLE ? ICmpInst::ICMP_ULT: ICmpInst::ICMP_UGT;
4663 NewPred = IsSigned ? ICmpInst::getSignedPredicate(NewPred) : NewPred;
4664 return new ICmpInst(NewPred, Op0, ConstantExpr::getAdd(Op1C, OneOrNegOne));
Sanjay Pateld5b0e542016-04-29 16:22:25 +00004665}
4666
Sanjay Patele5747e32017-05-17 22:15:07 +00004667/// Integer compare with boolean values can always be turned into bitwise ops.
4668static Instruction *canonicalizeICmpBool(ICmpInst &I,
4669 InstCombiner::BuilderTy &Builder) {
4670 Value *A = I.getOperand(0), *B = I.getOperand(1);
Craig Topperfde47232017-07-09 07:04:03 +00004671 assert(A->getType()->isIntOrIntVectorTy(1) && "Bools only");
Sanjay Patele5747e32017-05-17 22:15:07 +00004672
Sanjay Patelba212c22017-05-17 22:29:40 +00004673 // A boolean compared to true/false can be simplified to Op0/true/false in
4674 // 14 out of the 20 (10 predicates * 2 constants) possible combinations.
4675 // Cases not handled by InstSimplify are always 'not' of Op0.
4676 if (match(B, m_Zero())) {
4677 switch (I.getPredicate()) {
4678 case CmpInst::ICMP_EQ: // A == 0 -> !A
4679 case CmpInst::ICMP_ULE: // A <=u 0 -> !A
4680 case CmpInst::ICMP_SGE: // A >=s 0 -> !A
4681 return BinaryOperator::CreateNot(A);
4682 default:
4683 llvm_unreachable("ICmp i1 X, C not simplified as expected.");
4684 }
4685 } else if (match(B, m_One())) {
4686 switch (I.getPredicate()) {
4687 case CmpInst::ICMP_NE: // A != 1 -> !A
4688 case CmpInst::ICMP_ULT: // A <u 1 -> !A
4689 case CmpInst::ICMP_SGT: // A >s -1 -> !A
4690 return BinaryOperator::CreateNot(A);
4691 default:
4692 llvm_unreachable("ICmp i1 X, C not simplified as expected.");
4693 }
4694 }
4695
Sanjay Patele5747e32017-05-17 22:15:07 +00004696 switch (I.getPredicate()) {
4697 default:
4698 llvm_unreachable("Invalid icmp instruction!");
4699 case ICmpInst::ICMP_EQ:
4700 // icmp eq i1 A, B -> ~(A ^ B)
4701 return BinaryOperator::CreateNot(Builder.CreateXor(A, B));
4702
4703 case ICmpInst::ICMP_NE:
4704 // icmp ne i1 A, B -> A ^ B
4705 return BinaryOperator::CreateXor(A, B);
4706
4707 case ICmpInst::ICMP_UGT:
4708 // icmp ugt -> icmp ult
4709 std::swap(A, B);
4710 LLVM_FALLTHROUGH;
4711 case ICmpInst::ICMP_ULT:
4712 // icmp ult i1 A, B -> ~A & B
4713 return BinaryOperator::CreateAnd(Builder.CreateNot(A), B);
4714
4715 case ICmpInst::ICMP_SGT:
4716 // icmp sgt -> icmp slt
4717 std::swap(A, B);
4718 LLVM_FALLTHROUGH;
4719 case ICmpInst::ICMP_SLT:
4720 // icmp slt i1 A, B -> A & ~B
4721 return BinaryOperator::CreateAnd(Builder.CreateNot(B), A);
4722
4723 case ICmpInst::ICMP_UGE:
4724 // icmp uge -> icmp ule
4725 std::swap(A, B);
4726 LLVM_FALLTHROUGH;
4727 case ICmpInst::ICMP_ULE:
4728 // icmp ule i1 A, B -> ~A | B
4729 return BinaryOperator::CreateOr(Builder.CreateNot(A), B);
4730
4731 case ICmpInst::ICMP_SGE:
4732 // icmp sge -> icmp sle
4733 std::swap(A, B);
4734 LLVM_FALLTHROUGH;
4735 case ICmpInst::ICMP_SLE:
4736 // icmp sle i1 A, B -> A | ~B
4737 return BinaryOperator::CreateOr(Builder.CreateNot(B), A);
4738 }
4739}
4740
Roman Lebedev75404fb2018-09-12 18:19:43 +00004741// Transform pattern like:
Roman Lebedev1b7fc872018-09-15 12:04:13 +00004742// (1 << Y) u<= X or ~(-1 << Y) u< X or ((1 << Y)+(-1)) u< X
4743// (1 << Y) u> X or ~(-1 << Y) u>= X or ((1 << Y)+(-1)) u>= X
Roman Lebedev75404fb2018-09-12 18:19:43 +00004744// Into:
4745// (X l>> Y) != 0
4746// (X l>> Y) == 0
4747static Instruction *foldICmpWithHighBitMask(ICmpInst &Cmp,
4748 InstCombiner::BuilderTy &Builder) {
Roman Lebedev6dc87002018-09-13 20:33:12 +00004749 ICmpInst::Predicate Pred, NewPred;
Roman Lebedev75404fb2018-09-12 18:19:43 +00004750 Value *X, *Y;
Roman Lebedev6dc87002018-09-13 20:33:12 +00004751 if (match(&Cmp,
4752 m_c_ICmp(Pred, m_OneUse(m_Shl(m_One(), m_Value(Y))), m_Value(X)))) {
4753 // We want X to be the icmp's second operand, so swap predicate if it isn't.
4754 if (Cmp.getOperand(0) == X)
4755 Pred = Cmp.getSwappedPredicate();
Roman Lebedev75404fb2018-09-12 18:19:43 +00004756
Roman Lebedev6dc87002018-09-13 20:33:12 +00004757 switch (Pred) {
4758 case ICmpInst::ICMP_ULE:
4759 NewPred = ICmpInst::ICMP_NE;
4760 break;
4761 case ICmpInst::ICMP_UGT:
4762 NewPred = ICmpInst::ICMP_EQ;
4763 break;
4764 default:
4765 return nullptr;
4766 }
Roman Lebedev1b7fc872018-09-15 12:04:13 +00004767 } else if (match(&Cmp, m_c_ICmp(Pred,
4768 m_OneUse(m_CombineOr(
4769 m_Not(m_Shl(m_AllOnes(), m_Value(Y))),
4770 m_Add(m_Shl(m_One(), m_Value(Y)),
4771 m_AllOnes()))),
4772 m_Value(X)))) {
4773 // The variant with 'add' is not canonical, (the variant with 'not' is)
4774 // we only get it because it has extra uses, and can't be canonicalized,
4775
Roman Lebedev6dc87002018-09-13 20:33:12 +00004776 // We want X to be the icmp's second operand, so swap predicate if it isn't.
4777 if (Cmp.getOperand(0) == X)
4778 Pred = Cmp.getSwappedPredicate();
Roman Lebedev75404fb2018-09-12 18:19:43 +00004779
Roman Lebedev6dc87002018-09-13 20:33:12 +00004780 switch (Pred) {
4781 case ICmpInst::ICMP_ULT:
4782 NewPred = ICmpInst::ICMP_NE;
4783 break;
4784 case ICmpInst::ICMP_UGE:
4785 NewPred = ICmpInst::ICMP_EQ;
4786 break;
4787 default:
4788 return nullptr;
4789 }
4790 } else
Roman Lebedev75404fb2018-09-12 18:19:43 +00004791 return nullptr;
Roman Lebedev75404fb2018-09-12 18:19:43 +00004792
4793 Value *NewX = Builder.CreateLShr(X, Y, X->getName() + ".highbits");
4794 Constant *Zero = Constant::getNullValue(NewX->getType());
4795 return CmpInst::Create(Instruction::ICmp, NewPred, NewX, Zero);
4796}
4797
Sanjay Patel039f5562018-08-16 12:52:17 +00004798static Instruction *foldVectorCmp(CmpInst &Cmp,
4799 InstCombiner::BuilderTy &Builder) {
4800 // If both arguments of the cmp are shuffles that use the same mask and
4801 // shuffle within a single vector, move the shuffle after the cmp.
4802 Value *LHS = Cmp.getOperand(0), *RHS = Cmp.getOperand(1);
4803 Value *V1, *V2;
4804 Constant *M;
4805 if (match(LHS, m_ShuffleVector(m_Value(V1), m_Undef(), m_Constant(M))) &&
4806 match(RHS, m_ShuffleVector(m_Value(V2), m_Undef(), m_Specific(M))) &&
4807 V1->getType() == V2->getType() &&
4808 (LHS->hasOneUse() || RHS->hasOneUse())) {
4809 // cmp (shuffle V1, M), (shuffle V2, M) --> shuffle (cmp V1, V2), M
4810 CmpInst::Predicate P = Cmp.getPredicate();
4811 Value *NewCmp = isa<ICmpInst>(Cmp) ? Builder.CreateICmp(P, V1, V2)
4812 : Builder.CreateFCmp(P, V1, V2);
4813 return new ShuffleVectorInst(NewCmp, UndefValue::get(NewCmp->getType()), M);
4814 }
4815 return nullptr;
4816}
4817
Chris Lattner2188e402010-01-04 07:37:31 +00004818Instruction *InstCombiner::visitICmpInst(ICmpInst &I) {
4819 bool Changed = false;
Chris Lattner9306ffa2010-02-01 19:54:45 +00004820 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Quentin Colombet5ab55552013-09-09 20:56:48 +00004821 unsigned Op0Cplxity = getComplexity(Op0);
4822 unsigned Op1Cplxity = getComplexity(Op1);
Jim Grosbach129c52a2011-09-30 18:09:53 +00004823
Chris Lattner2188e402010-01-04 07:37:31 +00004824 /// Orders the operands of the compare so that they are listed from most
4825 /// complex to least complex. This puts constants before unary operators,
4826 /// before binary operators.
Quentin Colombet5ab55552013-09-09 20:56:48 +00004827 if (Op0Cplxity < Op1Cplxity ||
Sanjay Patel4c204232016-06-04 20:39:22 +00004828 (Op0Cplxity == Op1Cplxity && swapMayExposeCSEOpportunities(Op0, Op1))) {
Chris Lattner2188e402010-01-04 07:37:31 +00004829 I.swapOperands();
Chris Lattner9306ffa2010-02-01 19:54:45 +00004830 std::swap(Op0, Op1);
Chris Lattner2188e402010-01-04 07:37:31 +00004831 Changed = true;
4832 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00004833
Daniel Berlin2c75c632017-04-26 20:56:07 +00004834 if (Value *V = SimplifyICmpInst(I.getPredicate(), Op0, Op1,
4835 SQ.getWithInstruction(&I)))
Sanjay Patel4b198802016-02-01 22:23:39 +00004836 return replaceInstUsesWith(I, V);
Jim Grosbach129c52a2011-09-30 18:09:53 +00004837
Uriel Korach18972232017-09-10 08:31:22 +00004838 // Comparing -val or val with non-zero is the same as just comparing val
Pete Cooperfdddc272011-12-01 19:13:26 +00004839 // ie, abs(val) != 0 -> val != 0
Sanjay Patel4c204232016-06-04 20:39:22 +00004840 if (I.getPredicate() == ICmpInst::ICMP_NE && match(Op1, m_Zero())) {
Pete Cooperfdddc272011-12-01 19:13:26 +00004841 Value *Cond, *SelectTrue, *SelectFalse;
4842 if (match(Op0, m_Select(m_Value(Cond), m_Value(SelectTrue),
Pete Cooperbc5c5242011-12-01 03:58:40 +00004843 m_Value(SelectFalse)))) {
Pete Cooperfdddc272011-12-01 19:13:26 +00004844 if (Value *V = dyn_castNegVal(SelectTrue)) {
4845 if (V == SelectFalse)
4846 return CmpInst::Create(Instruction::ICmp, I.getPredicate(), V, Op1);
4847 }
4848 else if (Value *V = dyn_castNegVal(SelectFalse)) {
4849 if (V == SelectTrue)
4850 return CmpInst::Create(Instruction::ICmp, I.getPredicate(), V, Op1);
Pete Cooperbc5c5242011-12-01 03:58:40 +00004851 }
4852 }
4853 }
4854
Craig Topperfde47232017-07-09 07:04:03 +00004855 if (Op0->getType()->isIntOrIntVectorTy(1))
Craig Topperbb4069e2017-07-07 23:16:26 +00004856 if (Instruction *Res = canonicalizeICmpBool(I, Builder))
Sanjay Patele5747e32017-05-17 22:15:07 +00004857 return Res;
Chris Lattner2188e402010-01-04 07:37:31 +00004858
Sanjay Patele9b2c322016-05-17 00:57:57 +00004859 if (ICmpInst *NewICmp = canonicalizeCmpWithConstant(I))
Sanjay Pateld5b0e542016-04-29 16:22:25 +00004860 return NewICmp;
4861
Sanjay Patel06b127a2016-09-15 14:37:50 +00004862 if (Instruction *Res = foldICmpWithConstant(I))
4863 return Res;
Chris Lattner2188e402010-01-04 07:37:31 +00004864
Sanjay Pateld23b5ed2018-12-04 17:44:24 +00004865 if (Instruction *Res = foldICmpWithDominatingICmp(I))
4866 return Res;
4867
Max Kazantsev20da7e42018-07-06 04:04:13 +00004868 if (Instruction *Res = foldICmpUsingKnownBits(I))
4869 return Res;
4870
Chris Lattner2188e402010-01-04 07:37:31 +00004871 // Test if the ICmpInst instruction is used exclusively by a select as
4872 // part of a minimum or maximum operation. If so, refrain from doing
4873 // any other folding. This helps out other analyses which understand
4874 // non-obfuscated minimum and maximum idioms, such as ScalarEvolution
4875 // and CodeGen. And in this case, at least one of the comparison
4876 // operands has at least one user besides the compare (the select),
4877 // which would often largely negate the benefit of folding anyway.
Craig Topperd3e57812017-11-12 02:28:21 +00004878 //
4879 // Do the same for the other patterns recognized by matchSelectPattern.
Chris Lattner2188e402010-01-04 07:37:31 +00004880 if (I.hasOneUse())
Craig Topperd3e57812017-11-12 02:28:21 +00004881 if (SelectInst *SI = dyn_cast<SelectInst>(I.user_back())) {
4882 Value *A, *B;
4883 SelectPatternResult SPR = matchSelectPattern(SI, A, B);
4884 if (SPR.Flavor != SPF_UNKNOWN)
Craig Topperf40110f2014-04-25 05:29:35 +00004885 return nullptr;
Craig Topperd3e57812017-11-12 02:28:21 +00004886 }
Chris Lattner2188e402010-01-04 07:37:31 +00004887
Nikolai Bozhenov0e7ebbc2017-10-16 09:19:21 +00004888 // Do this after checking for min/max to prevent infinite looping.
4889 if (Instruction *Res = foldICmpWithZero(I))
4890 return Res;
4891
Sanjay Patelfebcb9c2017-01-27 23:26:27 +00004892 // FIXME: We only do this after checking for min/max to prevent infinite
4893 // looping caused by a reverse canonicalization of these patterns for min/max.
4894 // FIXME: The organization of folds is a mess. These would naturally go into
4895 // canonicalizeCmpWithConstant(), but we can't move all of the above folds
4896 // down here after the min/max restriction.
4897 ICmpInst::Predicate Pred = I.getPredicate();
4898 const APInt *C;
4899 if (match(Op1, m_APInt(C))) {
4900 // For i32: x >u 2147483647 -> x <s 0 -> true if sign bit set
4901 if (Pred == ICmpInst::ICMP_UGT && C->isMaxSignedValue()) {
4902 Constant *Zero = Constant::getNullValue(Op0->getType());
4903 return new ICmpInst(ICmpInst::ICMP_SLT, Op0, Zero);
4904 }
4905
4906 // For i32: x <u 2147483648 -> x >s -1 -> true if sign bit clear
4907 if (Pred == ICmpInst::ICMP_ULT && C->isMinSignedValue()) {
4908 Constant *AllOnes = Constant::getAllOnesValue(Op0->getType());
4909 return new ICmpInst(ICmpInst::ICMP_SGT, Op0, AllOnes);
4910 }
4911 }
4912
Sanjay Patelf58f68c2016-09-10 15:03:44 +00004913 if (Instruction *Res = foldICmpInstWithConstant(I))
Sanjay Patel1271bf92016-07-23 13:06:49 +00004914 return Res;
4915
Sanjay Patel10494b22016-09-16 16:10:22 +00004916 if (Instruction *Res = foldICmpInstWithConstantNotInt(I))
4917 return Res;
Chris Lattner2188e402010-01-04 07:37:31 +00004918
4919 // If we can optimize a 'icmp GEP, P' or 'icmp P, GEP', do so now.
4920 if (GEPOperator *GEP = dyn_cast<GEPOperator>(Op0))
Sanjay Patel43395062016-07-21 18:07:40 +00004921 if (Instruction *NI = foldGEPICmp(GEP, Op1, I.getPredicate(), I))
Chris Lattner2188e402010-01-04 07:37:31 +00004922 return NI;
4923 if (GEPOperator *GEP = dyn_cast<GEPOperator>(Op1))
Sanjay Patel43395062016-07-21 18:07:40 +00004924 if (Instruction *NI = foldGEPICmp(GEP, Op0,
Chris Lattner2188e402010-01-04 07:37:31 +00004925 ICmpInst::getSwappedPredicate(I.getPredicate()), I))
4926 return NI;
4927
Hans Wennborgf1f36512015-10-07 00:20:07 +00004928 // Try to optimize equality comparisons against alloca-based pointers.
4929 if (Op0->getType()->isPointerTy() && I.isEquality()) {
4930 assert(Op1->getType()->isPointerTy() && "Comparing pointer with non-pointer?");
4931 if (auto *Alloca = dyn_cast<AllocaInst>(GetUnderlyingObject(Op0, DL)))
Sanjay Patel43395062016-07-21 18:07:40 +00004932 if (Instruction *New = foldAllocaCmp(I, Alloca, Op1))
Hans Wennborgf1f36512015-10-07 00:20:07 +00004933 return New;
4934 if (auto *Alloca = dyn_cast<AllocaInst>(GetUnderlyingObject(Op1, DL)))
Sanjay Patel43395062016-07-21 18:07:40 +00004935 if (Instruction *New = foldAllocaCmp(I, Alloca, Op0))
Hans Wennborgf1f36512015-10-07 00:20:07 +00004936 return New;
4937 }
4938
Sanjay Patel841aac02018-03-25 14:01:42 +00004939 // Zero-equality and sign-bit checks are preserved through sitofp + bitcast.
Roman Lebedeve6da3062018-03-18 15:53:02 +00004940 Value *X;
Sanjay Patel745a9c62018-03-24 15:45:02 +00004941 if (match(Op0, m_BitCast(m_SIToFP(m_Value(X))))) {
Sanjay Patel841aac02018-03-25 14:01:42 +00004942 // icmp eq (bitcast (sitofp X)), 0 --> icmp eq X, 0
4943 // icmp ne (bitcast (sitofp X)), 0 --> icmp ne X, 0
4944 // icmp slt (bitcast (sitofp X)), 0 --> icmp slt X, 0
4945 // icmp sgt (bitcast (sitofp X)), 0 --> icmp sgt X, 0
4946 if ((Pred == ICmpInst::ICMP_EQ || Pred == ICmpInst::ICMP_SLT ||
4947 Pred == ICmpInst::ICMP_NE || Pred == ICmpInst::ICMP_SGT) &&
4948 match(Op1, m_Zero()))
Sanjay Patel745a9c62018-03-24 15:45:02 +00004949 return new ICmpInst(Pred, X, ConstantInt::getNullValue(X->getType()));
Sanjay Patel841aac02018-03-25 14:01:42 +00004950
4951 // icmp slt (bitcast (sitofp X)), 1 --> icmp slt X, 1
4952 if (Pred == ICmpInst::ICMP_SLT && match(Op1, m_One()))
4953 return new ICmpInst(Pred, X, ConstantInt::get(X->getType(), 1));
4954
4955 // icmp sgt (bitcast (sitofp X)), -1 --> icmp sgt X, -1
Sanjay Patel745a9c62018-03-24 15:45:02 +00004956 if (Pred == ICmpInst::ICMP_SGT && match(Op1, m_AllOnes()))
4957 return new ICmpInst(Pred, X, ConstantInt::getAllOnesValue(X->getType()));
4958 }
Roman Lebedeve6da3062018-03-18 15:53:02 +00004959
4960 // Zero-equality checks are preserved through unsigned floating-point casts:
4961 // icmp eq (bitcast (uitofp X)), 0 --> icmp eq X, 0
4962 // icmp ne (bitcast (uitofp X)), 0 --> icmp ne X, 0
4963 if (match(Op0, m_BitCast(m_UIToFP(m_Value(X)))))
4964 if (I.isEquality() && match(Op1, m_Zero()))
4965 return new ICmpInst(Pred, X, ConstantInt::getNullValue(X->getType()));
4966
Chris Lattner2188e402010-01-04 07:37:31 +00004967 // Test to see if the operands of the icmp are casted versions of other
4968 // values. If the ptr->ptr cast can be stripped off both arguments, we do so
4969 // now.
4970 if (BitCastInst *CI = dyn_cast<BitCastInst>(Op0)) {
Jim Grosbach129c52a2011-09-30 18:09:53 +00004971 if (Op0->getType()->isPointerTy() &&
4972 (isa<Constant>(Op1) || isa<BitCastInst>(Op1))) {
Chris Lattner2188e402010-01-04 07:37:31 +00004973 // We keep moving the cast from the left operand over to the right
4974 // operand, where it can often be eliminated completely.
4975 Op0 = CI->getOperand(0);
4976
4977 // If operand #1 is a bitcast instruction, it must also be a ptr->ptr cast
4978 // so eliminate it as well.
4979 if (BitCastInst *CI2 = dyn_cast<BitCastInst>(Op1))
4980 Op1 = CI2->getOperand(0);
4981
4982 // If Op1 is a constant, we can fold the cast into the constant.
4983 if (Op0->getType() != Op1->getType()) {
4984 if (Constant *Op1C = dyn_cast<Constant>(Op1)) {
4985 Op1 = ConstantExpr::getBitCast(Op1C, Op0->getType());
4986 } else {
4987 // Otherwise, cast the RHS right before the icmp
Craig Topperbb4069e2017-07-07 23:16:26 +00004988 Op1 = Builder.CreateBitCast(Op1, Op0->getType());
Chris Lattner2188e402010-01-04 07:37:31 +00004989 }
4990 }
4991 return new ICmpInst(I.getPredicate(), Op0, Op1);
4992 }
4993 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00004994
Chris Lattner2188e402010-01-04 07:37:31 +00004995 if (isa<CastInst>(Op0)) {
4996 // Handle the special case of: icmp (cast bool to X), <cst>
4997 // This comes up when you have code like
4998 // int X = A < B;
4999 // if (X) ...
5000 // For generality, we handle any zero-extension of any operand comparison
5001 // with a constant or another cast from the same type.
5002 if (isa<Constant>(Op1) || isa<CastInst>(Op1))
Sanjay Patel43395062016-07-21 18:07:40 +00005003 if (Instruction *R = foldICmpWithCastAndCast(I))
Chris Lattner2188e402010-01-04 07:37:31 +00005004 return R;
5005 }
Chris Lattner2188e402010-01-04 07:37:31 +00005006
Sanjay Patel10494b22016-09-16 16:10:22 +00005007 if (Instruction *Res = foldICmpBinOp(I))
5008 return Res;
Duncan Sandse5220012011-02-17 07:46:37 +00005009
Sanjay Pateldd46b522016-12-19 17:32:37 +00005010 if (Instruction *Res = foldICmpWithMinMax(I))
Sanjay Pateld6406412016-12-15 19:13:37 +00005011 return Res;
5012
Sanjay Patel10494b22016-09-16 16:10:22 +00005013 {
5014 Value *A, *B;
David Majnemer1a08acc2013-04-12 17:25:07 +00005015 // Transform (A & ~B) == 0 --> (A & B) != 0
5016 // and (A & ~B) != 0 --> (A & B) == 0
5017 // if A is a power of 2.
5018 if (match(Op0, m_And(m_Value(A), m_Not(m_Value(B)))) &&
Chandler Carruth66b31302015-01-04 12:03:27 +00005019 match(Op1, m_Zero()) &&
Craig Topperd4039f72017-05-25 21:51:12 +00005020 isKnownToBeAPowerOfTwo(A, false, 0, &I) && I.isEquality())
Craig Topperbb4069e2017-07-07 23:16:26 +00005021 return new ICmpInst(I.getInversePredicate(), Builder.CreateAnd(A, B),
David Majnemer1a08acc2013-04-12 17:25:07 +00005022 Op1);
5023
Sanjay Patel4dc85eb2017-06-02 16:11:14 +00005024 // ~X < ~Y --> Y < X
5025 // ~X < C --> X > ~C
Chris Lattnerf3c4eef2011-01-15 05:41:33 +00005026 if (match(Op0, m_Not(m_Value(A)))) {
5027 if (match(Op1, m_Not(m_Value(B))))
5028 return new ICmpInst(I.getPredicate(), B, A);
Sanjay Patel4dc85eb2017-06-02 16:11:14 +00005029
Sanjay Patelce241f42017-06-02 16:29:41 +00005030 const APInt *C;
5031 if (match(Op1, m_APInt(C)))
Sanjay Patel4dc85eb2017-06-02 16:11:14 +00005032 return new ICmpInst(I.getSwappedPredicate(), A,
Sanjay Patelce241f42017-06-02 16:29:41 +00005033 ConstantInt::get(Op1->getType(), ~(*C)));
Chris Lattnerf3c4eef2011-01-15 05:41:33 +00005034 }
Chris Lattner5e0c0c72010-12-19 19:37:52 +00005035
Sanjoy Dasb6c59142015-04-10 21:07:09 +00005036 Instruction *AddI = nullptr;
5037 if (match(&I, m_UAddWithOverflow(m_Value(A), m_Value(B),
5038 m_Instruction(AddI))) &&
5039 isa<IntegerType>(A->getType())) {
5040 Value *Result;
5041 Constant *Overflow;
5042 if (OptimizeOverflowCheck(OCF_UNSIGNED_ADD, A, B, *AddI, Result,
5043 Overflow)) {
Sanjay Patel4b198802016-02-01 22:23:39 +00005044 replaceInstUsesWith(*AddI, Result);
5045 return replaceInstUsesWith(I, Overflow);
Sanjoy Dasb6c59142015-04-10 21:07:09 +00005046 }
5047 }
Serge Pavlov4bb54d52014-04-13 18:23:41 +00005048
5049 // (zext a) * (zext b) --> llvm.umul.with.overflow.
5050 if (match(Op0, m_Mul(m_ZExt(m_Value(A)), m_ZExt(m_Value(B))))) {
Sanjay Pateld93c4c02016-09-15 18:22:25 +00005051 if (Instruction *R = processUMulZExtIdiom(I, Op0, Op1, *this))
Serge Pavlov4bb54d52014-04-13 18:23:41 +00005052 return R;
5053 }
5054 if (match(Op1, m_Mul(m_ZExt(m_Value(A)), m_ZExt(m_Value(B))))) {
Sanjay Pateld93c4c02016-09-15 18:22:25 +00005055 if (Instruction *R = processUMulZExtIdiom(I, Op1, Op0, *this))
Serge Pavlov4bb54d52014-04-13 18:23:41 +00005056 return R;
5057 }
Chris Lattner2188e402010-01-04 07:37:31 +00005058 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00005059
Sanjay Patel10494b22016-09-16 16:10:22 +00005060 if (Instruction *Res = foldICmpEquality(I))
5061 return Res;
Jim Grosbach129c52a2011-09-30 18:09:53 +00005062
David Majnemerc1eca5a2014-11-06 23:23:30 +00005063 // The 'cmpxchg' instruction returns an aggregate containing the old value and
5064 // an i1 which indicates whether or not we successfully did the swap.
5065 //
5066 // Replace comparisons between the old value and the expected value with the
5067 // indicator that 'cmpxchg' returns.
5068 //
5069 // N.B. This transform is only valid when the 'cmpxchg' is not permitted to
5070 // spuriously fail. In those cases, the old value may equal the expected
5071 // value but it is possible for the swap to not occur.
5072 if (I.getPredicate() == ICmpInst::ICMP_EQ)
5073 if (auto *EVI = dyn_cast<ExtractValueInst>(Op0))
5074 if (auto *ACXI = dyn_cast<AtomicCmpXchgInst>(EVI->getAggregateOperand()))
5075 if (EVI->getIndices()[0] == 0 && ACXI->getCompareOperand() == Op1 &&
5076 !ACXI->isWeak())
5077 return ExtractValueInst::Create(ACXI, 1);
5078
Chris Lattner2188e402010-01-04 07:37:31 +00005079 {
Craig Topperbee74792018-08-20 23:04:25 +00005080 Value *X;
5081 const APInt *C;
Chris Lattner2188e402010-01-04 07:37:31 +00005082 // icmp X+Cst, X
Craig Topperbee74792018-08-20 23:04:25 +00005083 if (match(Op0, m_Add(m_Value(X), m_APInt(C))) && Op1 == X)
5084 return foldICmpAddOpConst(X, *C, I.getPredicate());
Chris Lattner2188e402010-01-04 07:37:31 +00005085
5086 // icmp X, X+Cst
Craig Topperbee74792018-08-20 23:04:25 +00005087 if (match(Op1, m_Add(m_Value(X), m_APInt(C))) && Op0 == X)
5088 return foldICmpAddOpConst(X, *C, I.getSwappedPredicate());
Chris Lattner2188e402010-01-04 07:37:31 +00005089 }
Roman Lebedev68d54cf2018-07-11 19:05:04 +00005090
Roman Lebedev75404fb2018-09-12 18:19:43 +00005091 if (Instruction *Res = foldICmpWithHighBitMask(I, Builder))
5092 return Res;
5093
Sanjay Patel039f5562018-08-16 12:52:17 +00005094 if (I.getType()->isVectorTy())
5095 if (Instruction *Res = foldVectorCmp(I, Builder))
5096 return Res;
5097
Craig Topperf40110f2014-04-25 05:29:35 +00005098 return Changed ? &I : nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +00005099}
5100
Sanjay Patel5f0217f2016-06-05 16:46:18 +00005101/// Fold fcmp ([us]itofp x, cst) if possible.
Sanjay Patel43395062016-07-21 18:07:40 +00005102Instruction *InstCombiner::foldFCmpIntToFPConst(FCmpInst &I, Instruction *LHSI,
Chris Lattner2188e402010-01-04 07:37:31 +00005103 Constant *RHSC) {
Craig Topperf40110f2014-04-25 05:29:35 +00005104 if (!isa<ConstantFP>(RHSC)) return nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +00005105 const APFloat &RHS = cast<ConstantFP>(RHSC)->getValueAPF();
Jim Grosbach129c52a2011-09-30 18:09:53 +00005106
Chris Lattner2188e402010-01-04 07:37:31 +00005107 // Get the width of the mantissa. We don't want to hack on conversions that
5108 // might lose information from the integer, e.g. "i64 -> float"
5109 int MantissaWidth = LHSI->getType()->getFPMantissaWidth();
Craig Topperf40110f2014-04-25 05:29:35 +00005110 if (MantissaWidth == -1) return nullptr; // Unknown.
Jim Grosbach129c52a2011-09-30 18:09:53 +00005111
Matt Arsenault55e73122015-01-06 15:50:59 +00005112 IntegerType *IntTy = cast<IntegerType>(LHSI->getOperand(0)->getType());
5113
Chris Lattner2188e402010-01-04 07:37:31 +00005114 bool LHSUnsigned = isa<UIToFPInst>(LHSI);
Jim Grosbach129c52a2011-09-30 18:09:53 +00005115
Matt Arsenault55e73122015-01-06 15:50:59 +00005116 if (I.isEquality()) {
5117 FCmpInst::Predicate P = I.getPredicate();
5118 bool IsExact = false;
5119 APSInt RHSCvt(IntTy->getBitWidth(), LHSUnsigned);
5120 RHS.convertToInteger(RHSCvt, APFloat::rmNearestTiesToEven, &IsExact);
5121
5122 // If the floating point constant isn't an integer value, we know if we will
5123 // ever compare equal / not equal to it.
5124 if (!IsExact) {
5125 // TODO: Can never be -0.0 and other non-representable values
5126 APFloat RHSRoundInt(RHS);
5127 RHSRoundInt.roundToIntegral(APFloat::rmNearestTiesToEven);
5128 if (RHS.compare(RHSRoundInt) != APFloat::cmpEqual) {
5129 if (P == FCmpInst::FCMP_OEQ || P == FCmpInst::FCMP_UEQ)
Craig Topperbb4069e2017-07-07 23:16:26 +00005130 return replaceInstUsesWith(I, Builder.getFalse());
Matt Arsenault55e73122015-01-06 15:50:59 +00005131
5132 assert(P == FCmpInst::FCMP_ONE || P == FCmpInst::FCMP_UNE);
Craig Topperbb4069e2017-07-07 23:16:26 +00005133 return replaceInstUsesWith(I, Builder.getTrue());
Matt Arsenault55e73122015-01-06 15:50:59 +00005134 }
5135 }
5136
5137 // TODO: If the constant is exactly representable, is it always OK to do
5138 // equality compares as integer?
5139 }
5140
Arch D. Robison8ed08542015-09-15 17:51:59 +00005141 // Check to see that the input is converted from an integer type that is small
5142 // enough that preserves all bits. TODO: check here for "known" sign bits.
5143 // This would allow us to handle (fptosi (x >>s 62) to float) if x is i64 f.e.
5144 unsigned InputSize = IntTy->getScalarSizeInBits();
Matt Arsenault55e73122015-01-06 15:50:59 +00005145
Justin Bognerc7e4fbe2016-08-05 01:09:48 +00005146 // Following test does NOT adjust InputSize downwards for signed inputs,
5147 // because the most negative value still requires all the mantissa bits
Arch D. Robison8ed08542015-09-15 17:51:59 +00005148 // to distinguish it from one less than that value.
5149 if ((int)InputSize > MantissaWidth) {
5150 // Conversion would lose accuracy. Check if loss can impact comparison.
5151 int Exp = ilogb(RHS);
5152 if (Exp == APFloat::IEK_Inf) {
5153 int MaxExponent = ilogb(APFloat::getLargest(RHS.getSemantics()));
Justin Bognerc7e4fbe2016-08-05 01:09:48 +00005154 if (MaxExponent < (int)InputSize - !LHSUnsigned)
Arch D. Robison8ed08542015-09-15 17:51:59 +00005155 // Conversion could create infinity.
5156 return nullptr;
5157 } else {
Justin Bognerc7e4fbe2016-08-05 01:09:48 +00005158 // Note that if RHS is zero or NaN, then Exp is negative
Arch D. Robison8ed08542015-09-15 17:51:59 +00005159 // and first condition is trivially false.
Justin Bognerc7e4fbe2016-08-05 01:09:48 +00005160 if (MantissaWidth <= Exp && Exp <= (int)InputSize - !LHSUnsigned)
Arch D. Robison8ed08542015-09-15 17:51:59 +00005161 // Conversion could affect comparison.
5162 return nullptr;
5163 }
5164 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00005165
Chris Lattner2188e402010-01-04 07:37:31 +00005166 // Otherwise, we can potentially simplify the comparison. We know that it
5167 // will always come through as an integer value and we know the constant is
5168 // not a NAN (it would have been previously simplified).
5169 assert(!RHS.isNaN() && "NaN comparison not already folded!");
Jim Grosbach129c52a2011-09-30 18:09:53 +00005170
Chris Lattner2188e402010-01-04 07:37:31 +00005171 ICmpInst::Predicate Pred;
5172 switch (I.getPredicate()) {
5173 default: llvm_unreachable("Unexpected predicate!");
5174 case FCmpInst::FCMP_UEQ:
5175 case FCmpInst::FCMP_OEQ:
5176 Pred = ICmpInst::ICMP_EQ;
5177 break;
5178 case FCmpInst::FCMP_UGT:
5179 case FCmpInst::FCMP_OGT:
5180 Pred = LHSUnsigned ? ICmpInst::ICMP_UGT : ICmpInst::ICMP_SGT;
5181 break;
5182 case FCmpInst::FCMP_UGE:
5183 case FCmpInst::FCMP_OGE:
5184 Pred = LHSUnsigned ? ICmpInst::ICMP_UGE : ICmpInst::ICMP_SGE;
5185 break;
5186 case FCmpInst::FCMP_ULT:
5187 case FCmpInst::FCMP_OLT:
5188 Pred = LHSUnsigned ? ICmpInst::ICMP_ULT : ICmpInst::ICMP_SLT;
5189 break;
5190 case FCmpInst::FCMP_ULE:
5191 case FCmpInst::FCMP_OLE:
5192 Pred = LHSUnsigned ? ICmpInst::ICMP_ULE : ICmpInst::ICMP_SLE;
5193 break;
5194 case FCmpInst::FCMP_UNE:
5195 case FCmpInst::FCMP_ONE:
5196 Pred = ICmpInst::ICMP_NE;
5197 break;
5198 case FCmpInst::FCMP_ORD:
Craig Topperbb4069e2017-07-07 23:16:26 +00005199 return replaceInstUsesWith(I, Builder.getTrue());
Chris Lattner2188e402010-01-04 07:37:31 +00005200 case FCmpInst::FCMP_UNO:
Craig Topperbb4069e2017-07-07 23:16:26 +00005201 return replaceInstUsesWith(I, Builder.getFalse());
Chris Lattner2188e402010-01-04 07:37:31 +00005202 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00005203
Chris Lattner2188e402010-01-04 07:37:31 +00005204 // Now we know that the APFloat is a normal number, zero or inf.
Jim Grosbach129c52a2011-09-30 18:09:53 +00005205
Chris Lattner2188e402010-01-04 07:37:31 +00005206 // See if the FP constant is too large for the integer. For example,
5207 // comparing an i8 to 300.0.
5208 unsigned IntWidth = IntTy->getScalarSizeInBits();
Jim Grosbach129c52a2011-09-30 18:09:53 +00005209
Chris Lattner2188e402010-01-04 07:37:31 +00005210 if (!LHSUnsigned) {
5211 // If the RHS value is > SignedMax, fold the comparison. This handles +INF
5212 // and large values.
Michael Gottesman79b09672013-06-27 21:58:19 +00005213 APFloat SMax(RHS.getSemantics());
Chris Lattner2188e402010-01-04 07:37:31 +00005214 SMax.convertFromAPInt(APInt::getSignedMaxValue(IntWidth), true,
5215 APFloat::rmNearestTiesToEven);
5216 if (SMax.compare(RHS) == APFloat::cmpLessThan) { // smax < 13123.0
5217 if (Pred == ICmpInst::ICMP_NE || Pred == ICmpInst::ICMP_SLT ||
5218 Pred == ICmpInst::ICMP_SLE)
Craig Topperbb4069e2017-07-07 23:16:26 +00005219 return replaceInstUsesWith(I, Builder.getTrue());
5220 return replaceInstUsesWith(I, Builder.getFalse());
Chris Lattner2188e402010-01-04 07:37:31 +00005221 }
5222 } else {
5223 // If the RHS value is > UnsignedMax, fold the comparison. This handles
5224 // +INF and large values.
Michael Gottesman79b09672013-06-27 21:58:19 +00005225 APFloat UMax(RHS.getSemantics());
Chris Lattner2188e402010-01-04 07:37:31 +00005226 UMax.convertFromAPInt(APInt::getMaxValue(IntWidth), false,
5227 APFloat::rmNearestTiesToEven);
5228 if (UMax.compare(RHS) == APFloat::cmpLessThan) { // umax < 13123.0
5229 if (Pred == ICmpInst::ICMP_NE || Pred == ICmpInst::ICMP_ULT ||
5230 Pred == ICmpInst::ICMP_ULE)
Craig Topperbb4069e2017-07-07 23:16:26 +00005231 return replaceInstUsesWith(I, Builder.getTrue());
5232 return replaceInstUsesWith(I, Builder.getFalse());
Chris Lattner2188e402010-01-04 07:37:31 +00005233 }
5234 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00005235
Chris Lattner2188e402010-01-04 07:37:31 +00005236 if (!LHSUnsigned) {
5237 // See if the RHS value is < SignedMin.
Michael Gottesman79b09672013-06-27 21:58:19 +00005238 APFloat SMin(RHS.getSemantics());
Chris Lattner2188e402010-01-04 07:37:31 +00005239 SMin.convertFromAPInt(APInt::getSignedMinValue(IntWidth), true,
5240 APFloat::rmNearestTiesToEven);
5241 if (SMin.compare(RHS) == APFloat::cmpGreaterThan) { // smin > 12312.0
5242 if (Pred == ICmpInst::ICMP_NE || Pred == ICmpInst::ICMP_SGT ||
5243 Pred == ICmpInst::ICMP_SGE)
Craig Topperbb4069e2017-07-07 23:16:26 +00005244 return replaceInstUsesWith(I, Builder.getTrue());
5245 return replaceInstUsesWith(I, Builder.getFalse());
Chris Lattner2188e402010-01-04 07:37:31 +00005246 }
Devang Patel698452b2012-02-13 23:05:18 +00005247 } else {
5248 // See if the RHS value is < UnsignedMin.
Michael Gottesman79b09672013-06-27 21:58:19 +00005249 APFloat SMin(RHS.getSemantics());
Devang Patel698452b2012-02-13 23:05:18 +00005250 SMin.convertFromAPInt(APInt::getMinValue(IntWidth), true,
5251 APFloat::rmNearestTiesToEven);
5252 if (SMin.compare(RHS) == APFloat::cmpGreaterThan) { // umin > 12312.0
5253 if (Pred == ICmpInst::ICMP_NE || Pred == ICmpInst::ICMP_UGT ||
5254 Pred == ICmpInst::ICMP_UGE)
Craig Topperbb4069e2017-07-07 23:16:26 +00005255 return replaceInstUsesWith(I, Builder.getTrue());
5256 return replaceInstUsesWith(I, Builder.getFalse());
Devang Patel698452b2012-02-13 23:05:18 +00005257 }
Chris Lattner2188e402010-01-04 07:37:31 +00005258 }
5259
5260 // Okay, now we know that the FP constant fits in the range [SMIN, SMAX] or
5261 // [0, UMAX], but it may still be fractional. See if it is fractional by
5262 // casting the FP value to the integer value and back, checking for equality.
5263 // Don't do this for zero, because -0.0 is not fractional.
5264 Constant *RHSInt = LHSUnsigned
5265 ? ConstantExpr::getFPToUI(RHSC, IntTy)
5266 : ConstantExpr::getFPToSI(RHSC, IntTy);
5267 if (!RHS.isZero()) {
5268 bool Equal = LHSUnsigned
5269 ? ConstantExpr::getUIToFP(RHSInt, RHSC->getType()) == RHSC
5270 : ConstantExpr::getSIToFP(RHSInt, RHSC->getType()) == RHSC;
5271 if (!Equal) {
5272 // If we had a comparison against a fractional value, we have to adjust
5273 // the compare predicate and sometimes the value. RHSC is rounded towards
5274 // zero at this point.
5275 switch (Pred) {
5276 default: llvm_unreachable("Unexpected integer comparison!");
5277 case ICmpInst::ICMP_NE: // (float)int != 4.4 --> true
Craig Topperbb4069e2017-07-07 23:16:26 +00005278 return replaceInstUsesWith(I, Builder.getTrue());
Chris Lattner2188e402010-01-04 07:37:31 +00005279 case ICmpInst::ICMP_EQ: // (float)int == 4.4 --> false
Craig Topperbb4069e2017-07-07 23:16:26 +00005280 return replaceInstUsesWith(I, Builder.getFalse());
Chris Lattner2188e402010-01-04 07:37:31 +00005281 case ICmpInst::ICMP_ULE:
5282 // (float)int <= 4.4 --> int <= 4
5283 // (float)int <= -4.4 --> false
5284 if (RHS.isNegative())
Craig Topperbb4069e2017-07-07 23:16:26 +00005285 return replaceInstUsesWith(I, Builder.getFalse());
Chris Lattner2188e402010-01-04 07:37:31 +00005286 break;
5287 case ICmpInst::ICMP_SLE:
5288 // (float)int <= 4.4 --> int <= 4
5289 // (float)int <= -4.4 --> int < -4
5290 if (RHS.isNegative())
5291 Pred = ICmpInst::ICMP_SLT;
5292 break;
5293 case ICmpInst::ICMP_ULT:
5294 // (float)int < -4.4 --> false
5295 // (float)int < 4.4 --> int <= 4
5296 if (RHS.isNegative())
Craig Topperbb4069e2017-07-07 23:16:26 +00005297 return replaceInstUsesWith(I, Builder.getFalse());
Chris Lattner2188e402010-01-04 07:37:31 +00005298 Pred = ICmpInst::ICMP_ULE;
5299 break;
5300 case ICmpInst::ICMP_SLT:
5301 // (float)int < -4.4 --> int < -4
5302 // (float)int < 4.4 --> int <= 4
5303 if (!RHS.isNegative())
5304 Pred = ICmpInst::ICMP_SLE;
5305 break;
5306 case ICmpInst::ICMP_UGT:
5307 // (float)int > 4.4 --> int > 4
5308 // (float)int > -4.4 --> true
5309 if (RHS.isNegative())
Craig Topperbb4069e2017-07-07 23:16:26 +00005310 return replaceInstUsesWith(I, Builder.getTrue());
Chris Lattner2188e402010-01-04 07:37:31 +00005311 break;
5312 case ICmpInst::ICMP_SGT:
5313 // (float)int > 4.4 --> int > 4
5314 // (float)int > -4.4 --> int >= -4
5315 if (RHS.isNegative())
5316 Pred = ICmpInst::ICMP_SGE;
5317 break;
5318 case ICmpInst::ICMP_UGE:
5319 // (float)int >= -4.4 --> true
5320 // (float)int >= 4.4 --> int > 4
Bob Wilson61f3ad52012-08-07 22:35:16 +00005321 if (RHS.isNegative())
Craig Topperbb4069e2017-07-07 23:16:26 +00005322 return replaceInstUsesWith(I, Builder.getTrue());
Chris Lattner2188e402010-01-04 07:37:31 +00005323 Pred = ICmpInst::ICMP_UGT;
5324 break;
5325 case ICmpInst::ICMP_SGE:
5326 // (float)int >= -4.4 --> int >= -4
5327 // (float)int >= 4.4 --> int > 4
5328 if (!RHS.isNegative())
5329 Pred = ICmpInst::ICMP_SGT;
5330 break;
5331 }
5332 }
5333 }
5334
5335 // Lower this FP comparison into an appropriate integer version of the
5336 // comparison.
5337 return new ICmpInst(Pred, LHSI->getOperand(0), RHSInt);
5338}
5339
Sanjay Patelc3f50ff2018-09-27 15:59:24 +00005340/// Fold (C / X) < 0.0 --> X < 0.0 if possible. Swap predicate if necessary.
5341static Instruction *foldFCmpReciprocalAndZero(FCmpInst &I, Instruction *LHSI,
5342 Constant *RHSC) {
5343 // When C is not 0.0 and infinities are not allowed:
5344 // (C / X) < 0.0 is a sign-bit test of X
5345 // (C / X) < 0.0 --> X < 0.0 (if C is positive)
5346 // (C / X) < 0.0 --> X > 0.0 (if C is negative, swap the predicate)
5347 //
5348 // Proof:
5349 // Multiply (C / X) < 0.0 by X * X / C.
5350 // - X is non zero, if it is the flag 'ninf' is violated.
5351 // - C defines the sign of X * X * C. Thus it also defines whether to swap
5352 // the predicate. C is also non zero by definition.
5353 //
5354 // Thus X * X / C is non zero and the transformation is valid. [qed]
5355
5356 FCmpInst::Predicate Pred = I.getPredicate();
5357
5358 // Check that predicates are valid.
5359 if ((Pred != FCmpInst::FCMP_OGT) && (Pred != FCmpInst::FCMP_OLT) &&
5360 (Pred != FCmpInst::FCMP_OGE) && (Pred != FCmpInst::FCMP_OLE))
5361 return nullptr;
5362
5363 // Check that RHS operand is zero.
5364 if (!match(RHSC, m_AnyZeroFP()))
5365 return nullptr;
5366
5367 // Check fastmath flags ('ninf').
5368 if (!LHSI->hasNoInfs() || !I.hasNoInfs())
5369 return nullptr;
5370
5371 // Check the properties of the dividend. It must not be zero to avoid a
5372 // division by zero (see Proof).
5373 const APFloat *C;
5374 if (!match(LHSI->getOperand(0), m_APFloat(C)))
5375 return nullptr;
5376
5377 if (C->isZero())
5378 return nullptr;
5379
5380 // Get swapped predicate if necessary.
5381 if (C->isNegative())
5382 Pred = I.getSwappedPredicate();
5383
Sanjay Pateld1172a02018-11-07 00:00:42 +00005384 return new FCmpInst(Pred, LHSI->getOperand(1), RHSC, "", &I);
Sanjay Patelc3f50ff2018-09-27 15:59:24 +00005385}
5386
Sanjay Patel1c254c62018-10-31 16:34:43 +00005387/// Optimize fabs(X) compared with zero.
5388static Instruction *foldFabsWithFcmpZero(FCmpInst &I) {
5389 Value *X;
5390 if (!match(I.getOperand(0), m_Intrinsic<Intrinsic::fabs>(m_Value(X))) ||
5391 !match(I.getOperand(1), m_PosZeroFP()))
5392 return nullptr;
5393
Sanjay Patel57a08b32018-11-07 16:15:01 +00005394 auto replacePredAndOp0 = [](FCmpInst *I, FCmpInst::Predicate P, Value *X) {
5395 I->setPredicate(P);
5396 I->setOperand(0, X);
5397 return I;
5398 };
5399
Sanjay Patel1c254c62018-10-31 16:34:43 +00005400 switch (I.getPredicate()) {
5401 case FCmpInst::FCMP_UGE:
5402 case FCmpInst::FCMP_OLT:
5403 // fabs(X) >= 0.0 --> true
5404 // fabs(X) < 0.0 --> false
5405 llvm_unreachable("fcmp should have simplified");
5406
5407 case FCmpInst::FCMP_OGT:
5408 // fabs(X) > 0.0 --> X != 0.0
Sanjay Patel57a08b32018-11-07 16:15:01 +00005409 return replacePredAndOp0(&I, FCmpInst::FCMP_ONE, X);
Sanjay Patel1c254c62018-10-31 16:34:43 +00005410
Sanjay Patelfa5f1462018-11-07 15:33:03 +00005411 case FCmpInst::FCMP_UGT:
5412 // fabs(X) u> 0.0 --> X u!= 0.0
Sanjay Patel57a08b32018-11-07 16:15:01 +00005413 return replacePredAndOp0(&I, FCmpInst::FCMP_UNE, X);
Sanjay Patelfa5f1462018-11-07 15:33:03 +00005414
Sanjay Patel1c254c62018-10-31 16:34:43 +00005415 case FCmpInst::FCMP_OLE:
5416 // fabs(X) <= 0.0 --> X == 0.0
Sanjay Patel57a08b32018-11-07 16:15:01 +00005417 return replacePredAndOp0(&I, FCmpInst::FCMP_OEQ, X);
Sanjay Patel1c254c62018-10-31 16:34:43 +00005418
Sanjay Patelfa5f1462018-11-07 15:33:03 +00005419 case FCmpInst::FCMP_ULE:
5420 // fabs(X) u<= 0.0 --> X u== 0.0
Sanjay Patel57a08b32018-11-07 16:15:01 +00005421 return replacePredAndOp0(&I, FCmpInst::FCMP_UEQ, X);
Sanjay Patelfa5f1462018-11-07 15:33:03 +00005422
Sanjay Patel1c254c62018-10-31 16:34:43 +00005423 case FCmpInst::FCMP_OGE:
5424 // fabs(X) >= 0.0 --> !isnan(X)
5425 assert(!I.hasNoNaNs() && "fcmp should have simplified");
Sanjay Patel57a08b32018-11-07 16:15:01 +00005426 return replacePredAndOp0(&I, FCmpInst::FCMP_ORD, X);
Sanjay Patel1c254c62018-10-31 16:34:43 +00005427
Sanjay Patel76faf512018-11-07 15:11:32 +00005428 case FCmpInst::FCMP_ULT:
5429 // fabs(X) u< 0.0 --> isnan(X)
5430 assert(!I.hasNoNaNs() && "fcmp should have simplified");
Sanjay Patel57a08b32018-11-07 16:15:01 +00005431 return replacePredAndOp0(&I, FCmpInst::FCMP_UNO, X);
Sanjay Patel76faf512018-11-07 15:11:32 +00005432
Sanjay Patel1c254c62018-10-31 16:34:43 +00005433 case FCmpInst::FCMP_OEQ:
5434 case FCmpInst::FCMP_UEQ:
5435 case FCmpInst::FCMP_ONE:
5436 case FCmpInst::FCMP_UNE:
Sanjay Patelbb521e62018-11-07 15:44:26 +00005437 case FCmpInst::FCMP_ORD:
5438 case FCmpInst::FCMP_UNO:
5439 // Look through the fabs() because it doesn't change anything but the sign.
5440 // fabs(X) == 0.0 --> X == 0.0,
Sanjay Patel1c254c62018-10-31 16:34:43 +00005441 // fabs(X) != 0.0 --> X != 0.0
Sanjay Patelbb521e62018-11-07 15:44:26 +00005442 // isnan(fabs(X)) --> isnan(X)
5443 // !isnan(fabs(X) --> !isnan(X)
Sanjay Patel57a08b32018-11-07 16:15:01 +00005444 return replacePredAndOp0(&I, I.getPredicate(), X);
Sanjay Patel1c254c62018-10-31 16:34:43 +00005445
5446 default:
5447 return nullptr;
5448 }
5449}
5450
Chris Lattner2188e402010-01-04 07:37:31 +00005451Instruction *InstCombiner::visitFCmpInst(FCmpInst &I) {
5452 bool Changed = false;
Jim Grosbach129c52a2011-09-30 18:09:53 +00005453
Chris Lattner2188e402010-01-04 07:37:31 +00005454 /// Orders the operands of the compare so that they are listed from most
5455 /// complex to least complex. This puts constants before unary operators,
5456 /// before binary operators.
5457 if (getComplexity(I.getOperand(0)) < getComplexity(I.getOperand(1))) {
5458 I.swapOperands();
5459 Changed = true;
5460 }
5461
Sanjay Patel6b139462017-09-02 15:11:55 +00005462 const CmpInst::Predicate Pred = I.getPredicate();
Chris Lattner2188e402010-01-04 07:37:31 +00005463 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Sanjay Patel6b139462017-09-02 15:11:55 +00005464 if (Value *V = SimplifyFCmpInst(Pred, Op0, Op1, I.getFastMathFlags(),
5465 SQ.getWithInstruction(&I)))
Sanjay Patel4b198802016-02-01 22:23:39 +00005466 return replaceInstUsesWith(I, V);
Chris Lattner2188e402010-01-04 07:37:31 +00005467
5468 // Simplify 'fcmp pred X, X'
5469 if (Op0 == Op1) {
Sanjay Patel6b139462017-09-02 15:11:55 +00005470 switch (Pred) {
5471 default: break;
Chris Lattner2188e402010-01-04 07:37:31 +00005472 case FCmpInst::FCMP_UNO: // True if unordered: isnan(X) | isnan(Y)
5473 case FCmpInst::FCMP_ULT: // True if unordered or less than
5474 case FCmpInst::FCMP_UGT: // True if unordered or greater than
5475 case FCmpInst::FCMP_UNE: // True if unordered or not equal
5476 // Canonicalize these to be 'fcmp uno %X, 0.0'.
5477 I.setPredicate(FCmpInst::FCMP_UNO);
5478 I.setOperand(1, Constant::getNullValue(Op0->getType()));
5479 return &I;
Jim Grosbach129c52a2011-09-30 18:09:53 +00005480
Chris Lattner2188e402010-01-04 07:37:31 +00005481 case FCmpInst::FCMP_ORD: // True if ordered (no nans)
5482 case FCmpInst::FCMP_OEQ: // True if ordered and equal
5483 case FCmpInst::FCMP_OGE: // True if ordered and greater than or equal
5484 case FCmpInst::FCMP_OLE: // True if ordered and less than or equal
5485 // Canonicalize these to be 'fcmp ord %X, 0.0'.
5486 I.setPredicate(FCmpInst::FCMP_ORD);
5487 I.setOperand(1, Constant::getNullValue(Op0->getType()));
5488 return &I;
5489 }
5490 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00005491
Sanjay Patel6840c5f2017-09-05 23:13:13 +00005492 // If we're just checking for a NaN (ORD/UNO) and have a non-NaN operand,
5493 // then canonicalize the operand to 0.0.
5494 if (Pred == CmpInst::FCMP_ORD || Pred == CmpInst::FCMP_UNO) {
Matt Arsenaultd54b7f02018-08-09 22:40:08 +00005495 if (!match(Op0, m_PosZeroFP()) && isKnownNeverNaN(Op0, &TLI)) {
Sanjay Patel6840c5f2017-09-05 23:13:13 +00005496 I.setOperand(0, ConstantFP::getNullValue(Op0->getType()));
5497 return &I;
5498 }
Matt Arsenaultd54b7f02018-08-09 22:40:08 +00005499 if (!match(Op1, m_PosZeroFP()) && isKnownNeverNaN(Op1, &TLI)) {
Sanjay Patel6840c5f2017-09-05 23:13:13 +00005500 I.setOperand(1, ConstantFP::getNullValue(Op0->getType()));
5501 return &I;
5502 }
5503 }
5504
James Molloy2b21a7c2015-05-20 18:41:25 +00005505 // Test if the FCmpInst instruction is used exclusively by a select as
5506 // part of a minimum or maximum operation. If so, refrain from doing
5507 // any other folding. This helps out other analyses which understand
5508 // non-obfuscated minimum and maximum idioms, such as ScalarEvolution
5509 // and CodeGen. And in this case, at least one of the comparison
5510 // operands has at least one user besides the compare (the select),
5511 // which would often largely negate the benefit of folding anyway.
5512 if (I.hasOneUse())
Craig Topperd3e57812017-11-12 02:28:21 +00005513 if (SelectInst *SI = dyn_cast<SelectInst>(I.user_back())) {
5514 Value *A, *B;
5515 SelectPatternResult SPR = matchSelectPattern(SI, A, B);
5516 if (SPR.Flavor != SPF_UNKNOWN)
James Molloy2b21a7c2015-05-20 18:41:25 +00005517 return nullptr;
Craig Topperd3e57812017-11-12 02:28:21 +00005518 }
James Molloy2b21a7c2015-05-20 18:41:25 +00005519
Sanjay Patelc26fd1e2018-11-05 17:26:42 +00005520 // The sign of 0.0 is ignored by fcmp, so canonicalize to +0.0:
5521 // fcmp Pred X, -0.0 --> fcmp Pred X, 0.0
5522 if (match(Op1, m_AnyZeroFP()) && !match(Op1, m_PosZeroFP())) {
5523 I.setOperand(1, ConstantFP::getNullValue(Op1->getType()));
5524 return &I;
5525 }
5526
Sanjay Patel4c39dfc2018-10-30 20:52:25 +00005527 // Handle fcmp with instruction LHS and constant RHS.
5528 Instruction *LHSI;
5529 Constant *RHSC;
5530 if (match(Op0, m_Instruction(LHSI)) && match(Op1, m_Constant(RHSC))) {
5531 switch (LHSI->getOpcode()) {
Sanjay Patel4c39dfc2018-10-30 20:52:25 +00005532 case Instruction::PHI:
5533 // Only fold fcmp into the PHI if the phi and fcmp are in the same
5534 // block. If in the same block, we're encouraging jump threading. If
5535 // not, we are just pessimizing the code by making an i1 phi.
5536 if (LHSI->getParent() == I.getParent())
5537 if (Instruction *NV = foldOpIntoPhi(I, cast<PHINode>(LHSI)))
Chris Lattner2188e402010-01-04 07:37:31 +00005538 return NV;
Sanjay Patel4c39dfc2018-10-30 20:52:25 +00005539 break;
5540 case Instruction::SIToFP:
5541 case Instruction::UIToFP:
5542 if (Instruction *NV = foldFCmpIntToFPConst(I, LHSI, RHSC))
5543 return NV;
5544 break;
Sanjay Patel4c39dfc2018-10-30 20:52:25 +00005545 case Instruction::FDiv:
5546 if (Instruction *NV = foldFCmpReciprocalAndZero(I, LHSI, RHSC))
5547 return NV;
5548 break;
5549 case Instruction::Load:
5550 if (auto *GEP = dyn_cast<GetElementPtrInst>(LHSI->getOperand(0)))
5551 if (auto *GV = dyn_cast<GlobalVariable>(GEP->getOperand(0)))
5552 if (GV->isConstant() && GV->hasDefinitiveInitializer() &&
5553 !cast<LoadInst>(LHSI)->isVolatile())
5554 if (Instruction *Res = foldCmpLoadFromIndexedGlobal(GEP, GV, I))
5555 return Res;
5556 break;
Sanjay Patel1c254c62018-10-31 16:34:43 +00005557 }
Chris Lattner2188e402010-01-04 07:37:31 +00005558 }
5559
Sanjay Pateld1172a02018-11-07 00:00:42 +00005560 if (Instruction *R = foldFabsWithFcmpZero(I))
5561 return R;
5562
Benjamin Kramerd159d942011-03-31 10:12:22 +00005563 Value *X, *Y;
Sanjay Patel70282a02018-11-06 15:49:45 +00005564 if (match(Op0, m_FNeg(m_Value(X)))) {
Sanjay Pateld1172a02018-11-07 00:00:42 +00005565 // fcmp pred (fneg X), (fneg Y) -> fcmp swap(pred) X, Y
5566 if (match(Op1, m_FNeg(m_Value(Y))))
5567 return new FCmpInst(I.getSwappedPredicate(), X, Y, "", &I);
Sanjay Patel70282a02018-11-06 15:49:45 +00005568
Sanjay Pateld1172a02018-11-07 00:00:42 +00005569 // fcmp pred (fneg X), C --> fcmp swap(pred) X, -C
Sanjay Patel70282a02018-11-06 15:49:45 +00005570 Constant *C;
5571 if (match(Op1, m_Constant(C))) {
Sanjay Patel70282a02018-11-06 15:49:45 +00005572 Constant *NegC = ConstantExpr::getFNeg(C);
Sanjay Pateld1172a02018-11-07 00:00:42 +00005573 return new FCmpInst(I.getSwappedPredicate(), X, NegC, "", &I);
Sanjay Patel70282a02018-11-06 15:49:45 +00005574 }
5575 }
Benjamin Kramerd159d942011-03-31 10:12:22 +00005576
Sanjay Patel7c3ee4d2018-11-06 16:37:35 +00005577 if (match(Op0, m_FPExt(m_Value(X)))) {
Sanjay Pateld1172a02018-11-07 00:00:42 +00005578 // fcmp (fpext X), (fpext Y) -> fcmp X, Y
5579 if (match(Op1, m_FPExt(m_Value(Y))) && X->getType() == Y->getType())
5580 return new FCmpInst(Pred, X, Y, "", &I);
Sanjay Patel7c3ee4d2018-11-06 16:37:35 +00005581
Sanjay Pateld1172a02018-11-07 00:00:42 +00005582 // fcmp (fpext X), C -> fcmp X, (fptrunc C) if fptrunc is lossless
Sanjay Patel724014a2018-11-06 17:20:20 +00005583 const APFloat *C;
5584 if (match(Op1, m_APFloat(C))) {
Sanjay Patel724014a2018-11-06 17:20:20 +00005585 const fltSemantics &FPSem =
5586 X->getType()->getScalarType()->getFltSemantics();
Sanjay Patel7c3ee4d2018-11-06 16:37:35 +00005587 bool Lossy;
Sanjay Patel724014a2018-11-06 17:20:20 +00005588 APFloat TruncC = *C;
5589 TruncC.convert(FPSem, APFloat::rmNearestTiesToEven, &Lossy);
Sanjay Patel7c3ee4d2018-11-06 16:37:35 +00005590
5591 // Avoid lossy conversions and denormals.
5592 // Zero is a special case that's OK to convert.
Sanjay Patel724014a2018-11-06 17:20:20 +00005593 APFloat Fabs = TruncC;
Sanjay Patel7c3ee4d2018-11-06 16:37:35 +00005594 Fabs.clearSign();
5595 if (!Lossy &&
5596 ((Fabs.compare(APFloat::getSmallestNormalized(FPSem)) !=
Sanjay Patel46bf3922018-11-06 16:45:27 +00005597 APFloat::cmpLessThan) || Fabs.isZero())) {
Sanjay Patel724014a2018-11-06 17:20:20 +00005598 Constant *NewC = ConstantFP::get(X->getType(), TruncC);
Sanjay Pateld1172a02018-11-07 00:00:42 +00005599 return new FCmpInst(Pred, X, NewC, "", &I);
Sanjay Patel46bf3922018-11-06 16:45:27 +00005600 }
Sanjay Patel7c3ee4d2018-11-06 16:37:35 +00005601 }
Sanjay Patel1b85f0022018-11-06 16:23:03 +00005602 }
Benjamin Kramer2ccfbc82011-03-31 10:11:58 +00005603
Sanjay Patel039f5562018-08-16 12:52:17 +00005604 if (I.getType()->isVectorTy())
5605 if (Instruction *Res = foldVectorCmp(I, Builder))
5606 return Res;
5607
Craig Topperf40110f2014-04-25 05:29:35 +00005608 return Changed ? &I : nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +00005609}