blob: f48d89b426b07b9ae5ae0e542dd525ccfca0dc6b [file] [log] [blame]
Chris Lattner2188e402010-01-04 07:37:31 +00001//===- InstCombineCompares.cpp --------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the visitICmp and visitFCmp functions.
11//
12//===----------------------------------------------------------------------===//
13
Chandler Carrutha9174582015-01-22 05:25:13 +000014#include "InstCombineInternal.h"
Matt Arsenault55e73122015-01-06 15:50:59 +000015#include "llvm/ADT/APSInt.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"
19#include "llvm/Analysis/MemoryBuiltins.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/CommandLine.h"
26#include "llvm/Support/Debug.h"
Chandler Carruth62d42152015-01-15 02:16:27 +000027#include "llvm/Analysis/TargetLibraryInfo.h"
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +000028
Chris Lattner2188e402010-01-04 07:37:31 +000029using namespace llvm;
30using namespace PatternMatch;
31
Chandler Carruth964daaa2014-04-22 02:55:47 +000032#define DEBUG_TYPE "instcombine"
33
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +000034// How many times is a select replaced by one of its operands?
35STATISTIC(NumSel, "Number of select opts");
36
37// Initialization Routines
38
Chris Lattner98457102011-02-10 05:23:05 +000039static ConstantInt *getOne(Constant *C) {
40 return ConstantInt::get(cast<IntegerType>(C->getType()), 1);
41}
42
Chris Lattner2188e402010-01-04 07:37:31 +000043static ConstantInt *ExtractElement(Constant *V, Constant *Idx) {
44 return cast<ConstantInt>(ConstantExpr::getExtractElement(V, Idx));
45}
46
47static bool HasAddOverflow(ConstantInt *Result,
48 ConstantInt *In1, ConstantInt *In2,
49 bool IsSigned) {
Chris Lattnerb1a15122011-07-15 06:08:15 +000050 if (!IsSigned)
Chris Lattner2188e402010-01-04 07:37:31 +000051 return Result->getValue().ult(In1->getValue());
Chris Lattnerb1a15122011-07-15 06:08:15 +000052
53 if (In2->isNegative())
54 return Result->getValue().sgt(In1->getValue());
55 return Result->getValue().slt(In1->getValue());
Chris Lattner2188e402010-01-04 07:37:31 +000056}
57
58/// AddWithOverflow - Compute Result = In1+In2, returning true if the result
59/// overflowed for this type.
60static bool AddWithOverflow(Constant *&Result, Constant *In1,
61 Constant *In2, bool IsSigned = false) {
62 Result = ConstantExpr::getAdd(In1, In2);
63
Chris Lattner229907c2011-07-18 04:54:35 +000064 if (VectorType *VTy = dyn_cast<VectorType>(In1->getType())) {
Chris Lattner2188e402010-01-04 07:37:31 +000065 for (unsigned i = 0, e = VTy->getNumElements(); i != e; ++i) {
66 Constant *Idx = ConstantInt::get(Type::getInt32Ty(In1->getContext()), i);
67 if (HasAddOverflow(ExtractElement(Result, Idx),
68 ExtractElement(In1, Idx),
69 ExtractElement(In2, Idx),
70 IsSigned))
71 return true;
72 }
73 return false;
74 }
75
76 return HasAddOverflow(cast<ConstantInt>(Result),
77 cast<ConstantInt>(In1), cast<ConstantInt>(In2),
78 IsSigned);
79}
80
81static bool HasSubOverflow(ConstantInt *Result,
82 ConstantInt *In1, ConstantInt *In2,
83 bool IsSigned) {
Chris Lattnerb1a15122011-07-15 06:08:15 +000084 if (!IsSigned)
Chris Lattner2188e402010-01-04 07:37:31 +000085 return Result->getValue().ugt(In1->getValue());
Jim Grosbach129c52a2011-09-30 18:09:53 +000086
Chris Lattnerb1a15122011-07-15 06:08:15 +000087 if (In2->isNegative())
88 return Result->getValue().slt(In1->getValue());
89
90 return Result->getValue().sgt(In1->getValue());
Chris Lattner2188e402010-01-04 07:37:31 +000091}
92
93/// SubWithOverflow - Compute Result = In1-In2, returning true if the result
94/// overflowed for this type.
95static bool SubWithOverflow(Constant *&Result, Constant *In1,
96 Constant *In2, bool IsSigned = false) {
97 Result = ConstantExpr::getSub(In1, In2);
98
Chris Lattner229907c2011-07-18 04:54:35 +000099 if (VectorType *VTy = dyn_cast<VectorType>(In1->getType())) {
Chris Lattner2188e402010-01-04 07:37:31 +0000100 for (unsigned i = 0, e = VTy->getNumElements(); i != e; ++i) {
101 Constant *Idx = ConstantInt::get(Type::getInt32Ty(In1->getContext()), i);
102 if (HasSubOverflow(ExtractElement(Result, Idx),
103 ExtractElement(In1, Idx),
104 ExtractElement(In2, Idx),
105 IsSigned))
106 return true;
107 }
108 return false;
109 }
110
111 return HasSubOverflow(cast<ConstantInt>(Result),
112 cast<ConstantInt>(In1), cast<ConstantInt>(In2),
113 IsSigned);
114}
115
116/// isSignBitCheck - Given an exploded icmp instruction, return true if the
117/// comparison only checks the sign bit. If it only checks the sign bit, set
118/// TrueIfSigned if the result of the comparison is true when the input value is
119/// signed.
120static bool isSignBitCheck(ICmpInst::Predicate pred, ConstantInt *RHS,
121 bool &TrueIfSigned) {
122 switch (pred) {
123 case ICmpInst::ICMP_SLT: // True if LHS s< 0
124 TrueIfSigned = true;
125 return RHS->isZero();
126 case ICmpInst::ICMP_SLE: // True if LHS s<= RHS and RHS == -1
127 TrueIfSigned = true;
128 return RHS->isAllOnesValue();
129 case ICmpInst::ICMP_SGT: // True if LHS s> -1
130 TrueIfSigned = false;
131 return RHS->isAllOnesValue();
132 case ICmpInst::ICMP_UGT:
133 // True if LHS u> RHS and RHS == high-bit-mask - 1
134 TrueIfSigned = true;
Chris Lattnerb1a15122011-07-15 06:08:15 +0000135 return RHS->isMaxValue(true);
Jim Grosbach129c52a2011-09-30 18:09:53 +0000136 case ICmpInst::ICMP_UGE:
Chris Lattner2188e402010-01-04 07:37:31 +0000137 // True if LHS u>= RHS and RHS == high-bit-mask (2^7, 2^15, 2^31, etc)
138 TrueIfSigned = true;
139 return RHS->getValue().isSignBit();
140 default:
141 return false;
142 }
143}
144
Arnaud A. de Grandmaison3ee88e82013-03-25 11:47:38 +0000145/// Returns true if the exploded icmp can be expressed as a signed comparison
146/// to zero and updates the predicate accordingly.
147/// The signedness of the comparison is preserved.
Arnaud A. de Grandmaison9c383d62013-03-25 09:48:49 +0000148static bool isSignTest(ICmpInst::Predicate &pred, const ConstantInt *RHS) {
149 if (!ICmpInst::isSigned(pred))
150 return false;
151
152 if (RHS->isZero())
Arnaud A. de Grandmaison3ee88e82013-03-25 11:47:38 +0000153 return ICmpInst::isRelational(pred);
Arnaud A. de Grandmaison9c383d62013-03-25 09:48:49 +0000154
Arnaud A. de Grandmaison3ee88e82013-03-25 11:47:38 +0000155 if (RHS->isOne()) {
156 if (pred == ICmpInst::ICMP_SLT) {
Arnaud A. de Grandmaison9c383d62013-03-25 09:48:49 +0000157 pred = ICmpInst::ICMP_SLE;
158 return true;
Arnaud A. de Grandmaison9c383d62013-03-25 09:48:49 +0000159 }
Arnaud A. de Grandmaison3ee88e82013-03-25 11:47:38 +0000160 } else if (RHS->isAllOnesValue()) {
161 if (pred == ICmpInst::ICMP_SGT) {
Arnaud A. de Grandmaison9c383d62013-03-25 09:48:49 +0000162 pred = ICmpInst::ICMP_SGE;
163 return true;
Arnaud A. de Grandmaison9c383d62013-03-25 09:48:49 +0000164 }
Arnaud A. de Grandmaison3ee88e82013-03-25 11:47:38 +0000165 }
Arnaud A. de Grandmaison9c383d62013-03-25 09:48:49 +0000166
167 return false;
168}
169
Chris Lattner2188e402010-01-04 07:37:31 +0000170// isHighOnes - Return true if the constant is of the form 1+0+.
171// This is the same as lowones(~X).
172static bool isHighOnes(const ConstantInt *CI) {
173 return (~CI->getValue() + 1).isPowerOf2();
174}
175
Jim Grosbach129c52a2011-09-30 18:09:53 +0000176/// ComputeSignedMinMaxValuesFromKnownBits - Given a signed integer type and a
Chris Lattner2188e402010-01-04 07:37:31 +0000177/// set of known zero and one bits, compute the maximum and minimum values that
178/// could have the specified known zero and known one bits, returning them in
179/// min/max.
180static void ComputeSignedMinMaxValuesFromKnownBits(const APInt& KnownZero,
181 const APInt& KnownOne,
182 APInt& Min, APInt& Max) {
183 assert(KnownZero.getBitWidth() == KnownOne.getBitWidth() &&
184 KnownZero.getBitWidth() == Min.getBitWidth() &&
185 KnownZero.getBitWidth() == Max.getBitWidth() &&
186 "KnownZero, KnownOne and Min, Max must have equal bitwidth.");
187 APInt UnknownBits = ~(KnownZero|KnownOne);
188
189 // The minimum value is when all unknown bits are zeros, EXCEPT for the sign
190 // bit if it is unknown.
191 Min = KnownOne;
192 Max = KnownOne|UnknownBits;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000193
Chris Lattner2188e402010-01-04 07:37:31 +0000194 if (UnknownBits.isNegative()) { // Sign bit is unknown
Jay Foad25a5e4c2010-12-01 08:53:58 +0000195 Min.setBit(Min.getBitWidth()-1);
196 Max.clearBit(Max.getBitWidth()-1);
Chris Lattner2188e402010-01-04 07:37:31 +0000197 }
198}
199
200// ComputeUnsignedMinMaxValuesFromKnownBits - Given an unsigned integer type and
201// a set of known zero and one bits, compute the maximum and minimum values that
202// could have the specified known zero and known one bits, returning them in
203// min/max.
204static void ComputeUnsignedMinMaxValuesFromKnownBits(const APInt &KnownZero,
205 const APInt &KnownOne,
206 APInt &Min, APInt &Max) {
207 assert(KnownZero.getBitWidth() == KnownOne.getBitWidth() &&
208 KnownZero.getBitWidth() == Min.getBitWidth() &&
209 KnownZero.getBitWidth() == Max.getBitWidth() &&
210 "Ty, KnownZero, KnownOne and Min, Max must have equal bitwidth.");
211 APInt UnknownBits = ~(KnownZero|KnownOne);
Jim Grosbach129c52a2011-09-30 18:09:53 +0000212
Chris Lattner2188e402010-01-04 07:37:31 +0000213 // The minimum value is when the unknown bits are all zeros.
214 Min = KnownOne;
215 // The maximum value is when the unknown bits are all ones.
216 Max = KnownOne|UnknownBits;
217}
218
219
220
221/// FoldCmpLoadFromIndexedGlobal - Called we see this pattern:
222/// cmp pred (load (gep GV, ...)), cmpcst
223/// where GV is a global variable with a constant initializer. Try to simplify
224/// this into some simple computation that does not need the load. For example
225/// we can optimize "icmp eq (load (gep "foo", 0, i)), 0" into "icmp eq i, 3".
226///
227/// If AndCst is non-null, then the loaded value is masked with that constant
228/// before doing the comparison. This handles cases like "A[i]&4 == 0".
229Instruction *InstCombiner::
230FoldCmpLoadFromIndexedGlobal(GetElementPtrInst *GEP, GlobalVariable *GV,
231 CmpInst &ICI, ConstantInt *AndCst) {
Matt Arsenault5aeae182013-08-19 21:40:31 +0000232 // We need TD information to know the pointer size unless this is inbounds.
Craig Topperf40110f2014-04-25 05:29:35 +0000233 if (!GEP->isInBounds() && !DL)
234 return nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000235
Chris Lattnerfe741762012-01-31 02:55:06 +0000236 Constant *Init = GV->getInitializer();
237 if (!isa<ConstantArray>(Init) && !isa<ConstantDataArray>(Init))
Craig Topperf40110f2014-04-25 05:29:35 +0000238 return nullptr;
Jim Grosbachbdbd7342013-04-05 21:20:12 +0000239
Chris Lattnerfe741762012-01-31 02:55:06 +0000240 uint64_t ArrayElementCount = Init->getType()->getArrayNumElements();
Craig Topperf40110f2014-04-25 05:29:35 +0000241 if (ArrayElementCount > 1024) return nullptr; // Don't blow up on huge arrays.
Jim Grosbach129c52a2011-09-30 18:09:53 +0000242
Chris Lattner2188e402010-01-04 07:37:31 +0000243 // There are many forms of this optimization we can handle, for now, just do
244 // the simple index into a single-dimensional array.
245 //
246 // Require: GEP GV, 0, i {{, constant indices}}
247 if (GEP->getNumOperands() < 3 ||
248 !isa<ConstantInt>(GEP->getOperand(1)) ||
249 !cast<ConstantInt>(GEP->getOperand(1))->isZero() ||
250 isa<Constant>(GEP->getOperand(2)))
Craig Topperf40110f2014-04-25 05:29:35 +0000251 return nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +0000252
253 // Check that indices after the variable are constants and in-range for the
254 // type they index. Collect the indices. This is typically for arrays of
255 // structs.
256 SmallVector<unsigned, 4> LaterIndices;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000257
Chris Lattnerfe741762012-01-31 02:55:06 +0000258 Type *EltTy = Init->getType()->getArrayElementType();
Chris Lattner2188e402010-01-04 07:37:31 +0000259 for (unsigned i = 3, e = GEP->getNumOperands(); i != e; ++i) {
260 ConstantInt *Idx = dyn_cast<ConstantInt>(GEP->getOperand(i));
Craig Topperf40110f2014-04-25 05:29:35 +0000261 if (!Idx) return nullptr; // Variable index.
Jim Grosbach129c52a2011-09-30 18:09:53 +0000262
Chris Lattner2188e402010-01-04 07:37:31 +0000263 uint64_t IdxVal = Idx->getZExtValue();
Craig Topperf40110f2014-04-25 05:29:35 +0000264 if ((unsigned)IdxVal != IdxVal) return nullptr; // Too large array index.
Jim Grosbach129c52a2011-09-30 18:09:53 +0000265
Chris Lattner229907c2011-07-18 04:54:35 +0000266 if (StructType *STy = dyn_cast<StructType>(EltTy))
Chris Lattner2188e402010-01-04 07:37:31 +0000267 EltTy = STy->getElementType(IdxVal);
Chris Lattner229907c2011-07-18 04:54:35 +0000268 else if (ArrayType *ATy = dyn_cast<ArrayType>(EltTy)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000269 if (IdxVal >= ATy->getNumElements()) return nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +0000270 EltTy = ATy->getElementType();
271 } else {
Craig Topperf40110f2014-04-25 05:29:35 +0000272 return nullptr; // Unknown type.
Chris Lattner2188e402010-01-04 07:37:31 +0000273 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000274
Chris Lattner2188e402010-01-04 07:37:31 +0000275 LaterIndices.push_back(IdxVal);
276 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000277
Chris Lattner2188e402010-01-04 07:37:31 +0000278 enum { Overdefined = -3, Undefined = -2 };
279
280 // Variables for our state machines.
Jim Grosbach129c52a2011-09-30 18:09:53 +0000281
Chris Lattner2188e402010-01-04 07:37:31 +0000282 // FirstTrueElement/SecondTrueElement - Used to emit a comparison of the form
283 // "i == 47 | i == 87", where 47 is the first index the condition is true for,
284 // and 87 is the second (and last) index. FirstTrueElement is -2 when
285 // undefined, otherwise set to the first true element. SecondTrueElement is
286 // -2 when undefined, -3 when overdefined and >= 0 when that index is true.
287 int FirstTrueElement = Undefined, SecondTrueElement = Undefined;
288
289 // FirstFalseElement/SecondFalseElement - Used to emit a comparison of the
290 // form "i != 47 & i != 87". Same state transitions as for true elements.
291 int FirstFalseElement = Undefined, SecondFalseElement = Undefined;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000292
Chris Lattner2188e402010-01-04 07:37:31 +0000293 /// TrueRangeEnd/FalseRangeEnd - In conjunction with First*Element, these
294 /// define a state machine that triggers for ranges of values that the index
295 /// is true or false for. This triggers on things like "abbbbc"[i] == 'b'.
296 /// This is -2 when undefined, -3 when overdefined, and otherwise the last
297 /// index in the range (inclusive). We use -2 for undefined here because we
298 /// use relative comparisons and don't want 0-1 to match -1.
299 int TrueRangeEnd = Undefined, FalseRangeEnd = Undefined;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000300
Chris Lattner2188e402010-01-04 07:37:31 +0000301 // MagicBitvector - This is a magic bitvector where we set a bit if the
302 // comparison is true for element 'i'. If there are 64 elements or less in
303 // the array, this will fully represent all the comparison results.
304 uint64_t MagicBitvector = 0;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000305
306
Chris Lattner2188e402010-01-04 07:37:31 +0000307 // Scan the array and see if one of our patterns matches.
308 Constant *CompareRHS = cast<Constant>(ICI.getOperand(1));
Chris Lattnerfe741762012-01-31 02:55:06 +0000309 for (unsigned i = 0, e = ArrayElementCount; i != e; ++i) {
310 Constant *Elt = Init->getAggregateElement(i);
Craig Topperf40110f2014-04-25 05:29:35 +0000311 if (!Elt) return nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000312
Chris Lattner2188e402010-01-04 07:37:31 +0000313 // If this is indexing an array of structures, get the structure element.
314 if (!LaterIndices.empty())
Jay Foad57aa6362011-07-13 10:26:04 +0000315 Elt = ConstantExpr::getExtractValue(Elt, LaterIndices);
Jim Grosbach129c52a2011-09-30 18:09:53 +0000316
Chris Lattner2188e402010-01-04 07:37:31 +0000317 // If the element is masked, handle it.
318 if (AndCst) Elt = ConstantExpr::getAnd(Elt, AndCst);
Jim Grosbach129c52a2011-09-30 18:09:53 +0000319
Chris Lattner2188e402010-01-04 07:37:31 +0000320 // Find out if the comparison would be true or false for the i'th element.
321 Constant *C = ConstantFoldCompareInstOperands(ICI.getPredicate(), Elt,
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000322 CompareRHS, DL, TLI);
Chris Lattner2188e402010-01-04 07:37:31 +0000323 // If the result is undef for this element, ignore it.
324 if (isa<UndefValue>(C)) {
325 // Extend range state machines to cover this element in case there is an
326 // undef in the middle of the range.
327 if (TrueRangeEnd == (int)i-1)
328 TrueRangeEnd = i;
329 if (FalseRangeEnd == (int)i-1)
330 FalseRangeEnd = i;
331 continue;
332 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000333
Chris Lattner2188e402010-01-04 07:37:31 +0000334 // If we can't compute the result for any of the elements, we have to give
335 // up evaluating the entire conditional.
Craig Topperf40110f2014-04-25 05:29:35 +0000336 if (!isa<ConstantInt>(C)) return nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000337
Chris Lattner2188e402010-01-04 07:37:31 +0000338 // Otherwise, we know if the comparison is true or false for this element,
339 // update our state machines.
340 bool IsTrueForElt = !cast<ConstantInt>(C)->isZero();
Jim Grosbach129c52a2011-09-30 18:09:53 +0000341
Chris Lattner2188e402010-01-04 07:37:31 +0000342 // State machine for single/double/range index comparison.
343 if (IsTrueForElt) {
344 // Update the TrueElement state machine.
345 if (FirstTrueElement == Undefined)
346 FirstTrueElement = TrueRangeEnd = i; // First true element.
347 else {
348 // Update double-compare state machine.
349 if (SecondTrueElement == Undefined)
350 SecondTrueElement = i;
351 else
352 SecondTrueElement = Overdefined;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000353
Chris Lattner2188e402010-01-04 07:37:31 +0000354 // Update range state machine.
355 if (TrueRangeEnd == (int)i-1)
356 TrueRangeEnd = i;
357 else
358 TrueRangeEnd = Overdefined;
359 }
360 } else {
361 // Update the FalseElement state machine.
362 if (FirstFalseElement == Undefined)
363 FirstFalseElement = FalseRangeEnd = i; // First false element.
364 else {
365 // Update double-compare state machine.
366 if (SecondFalseElement == Undefined)
367 SecondFalseElement = i;
368 else
369 SecondFalseElement = Overdefined;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000370
Chris Lattner2188e402010-01-04 07:37:31 +0000371 // Update range state machine.
372 if (FalseRangeEnd == (int)i-1)
373 FalseRangeEnd = i;
374 else
375 FalseRangeEnd = Overdefined;
376 }
377 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000378
379
Chris Lattner2188e402010-01-04 07:37:31 +0000380 // If this element is in range, update our magic bitvector.
381 if (i < 64 && IsTrueForElt)
382 MagicBitvector |= 1ULL << i;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000383
Chris Lattner2188e402010-01-04 07:37:31 +0000384 // If all of our states become overdefined, bail out early. Since the
385 // predicate is expensive, only check it every 8 elements. This is only
386 // really useful for really huge arrays.
387 if ((i & 8) == 0 && i >= 64 && SecondTrueElement == Overdefined &&
388 SecondFalseElement == Overdefined && TrueRangeEnd == Overdefined &&
389 FalseRangeEnd == Overdefined)
Craig Topperf40110f2014-04-25 05:29:35 +0000390 return nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +0000391 }
392
393 // Now that we've scanned the entire array, emit our new comparison(s). We
394 // order the state machines in complexity of the generated code.
395 Value *Idx = GEP->getOperand(2);
396
Matt Arsenault5aeae182013-08-19 21:40:31 +0000397 // If the index is larger than the pointer size of the target, truncate the
398 // index down like the GEP would do implicitly. We don't have to do this for
399 // an inbounds GEP because the index can't be out of range.
Matt Arsenault84680622013-09-30 21:11:01 +0000400 if (!GEP->isInBounds()) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000401 Type *IntPtrTy = DL->getIntPtrType(GEP->getType());
Matt Arsenault84680622013-09-30 21:11:01 +0000402 unsigned PtrSize = IntPtrTy->getIntegerBitWidth();
403 if (Idx->getType()->getPrimitiveSizeInBits() > PtrSize)
404 Idx = Builder->CreateTrunc(Idx, IntPtrTy);
405 }
Matt Arsenault5aeae182013-08-19 21:40:31 +0000406
Chris Lattner2188e402010-01-04 07:37:31 +0000407 // If the comparison is only true for one or two elements, emit direct
408 // comparisons.
409 if (SecondTrueElement != Overdefined) {
410 // None true -> false.
411 if (FirstTrueElement == Undefined)
Jakub Staszakbddea112013-06-06 20:18:46 +0000412 return ReplaceInstUsesWith(ICI, Builder->getFalse());
Jim Grosbach129c52a2011-09-30 18:09:53 +0000413
Chris Lattner2188e402010-01-04 07:37:31 +0000414 Value *FirstTrueIdx = ConstantInt::get(Idx->getType(), FirstTrueElement);
Jim Grosbach129c52a2011-09-30 18:09:53 +0000415
Chris Lattner2188e402010-01-04 07:37:31 +0000416 // True for one element -> 'i == 47'.
417 if (SecondTrueElement == Undefined)
418 return new ICmpInst(ICmpInst::ICMP_EQ, Idx, FirstTrueIdx);
Jim Grosbach129c52a2011-09-30 18:09:53 +0000419
Chris Lattner2188e402010-01-04 07:37:31 +0000420 // True for two elements -> 'i == 47 | i == 72'.
421 Value *C1 = Builder->CreateICmpEQ(Idx, FirstTrueIdx);
422 Value *SecondTrueIdx = ConstantInt::get(Idx->getType(), SecondTrueElement);
423 Value *C2 = Builder->CreateICmpEQ(Idx, SecondTrueIdx);
424 return BinaryOperator::CreateOr(C1, C2);
425 }
426
427 // If the comparison is only false for one or two elements, emit direct
428 // comparisons.
429 if (SecondFalseElement != Overdefined) {
430 // None false -> true.
431 if (FirstFalseElement == Undefined)
Jakub Staszakbddea112013-06-06 20:18:46 +0000432 return ReplaceInstUsesWith(ICI, Builder->getTrue());
Jim Grosbach129c52a2011-09-30 18:09:53 +0000433
Chris Lattner2188e402010-01-04 07:37:31 +0000434 Value *FirstFalseIdx = ConstantInt::get(Idx->getType(), FirstFalseElement);
435
436 // False for one element -> 'i != 47'.
437 if (SecondFalseElement == Undefined)
438 return new ICmpInst(ICmpInst::ICMP_NE, Idx, FirstFalseIdx);
Jim Grosbach129c52a2011-09-30 18:09:53 +0000439
Chris Lattner2188e402010-01-04 07:37:31 +0000440 // False for two elements -> 'i != 47 & i != 72'.
441 Value *C1 = Builder->CreateICmpNE(Idx, FirstFalseIdx);
442 Value *SecondFalseIdx = ConstantInt::get(Idx->getType(),SecondFalseElement);
443 Value *C2 = Builder->CreateICmpNE(Idx, SecondFalseIdx);
444 return BinaryOperator::CreateAnd(C1, C2);
445 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000446
Chris Lattner2188e402010-01-04 07:37:31 +0000447 // If the comparison can be replaced with a range comparison for the elements
448 // where it is true, emit the range check.
449 if (TrueRangeEnd != Overdefined) {
450 assert(TrueRangeEnd != FirstTrueElement && "Should emit single compare");
Jim Grosbach129c52a2011-09-30 18:09:53 +0000451
Chris Lattner2188e402010-01-04 07:37:31 +0000452 // Generate (i-FirstTrue) <u (TrueRangeEnd-FirstTrue+1).
453 if (FirstTrueElement) {
454 Value *Offs = ConstantInt::get(Idx->getType(), -FirstTrueElement);
455 Idx = Builder->CreateAdd(Idx, Offs);
456 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000457
Chris Lattner2188e402010-01-04 07:37:31 +0000458 Value *End = ConstantInt::get(Idx->getType(),
459 TrueRangeEnd-FirstTrueElement+1);
460 return new ICmpInst(ICmpInst::ICMP_ULT, Idx, End);
461 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000462
Chris Lattner2188e402010-01-04 07:37:31 +0000463 // False range check.
464 if (FalseRangeEnd != Overdefined) {
465 assert(FalseRangeEnd != FirstFalseElement && "Should emit single compare");
466 // Generate (i-FirstFalse) >u (FalseRangeEnd-FirstFalse).
467 if (FirstFalseElement) {
468 Value *Offs = ConstantInt::get(Idx->getType(), -FirstFalseElement);
469 Idx = Builder->CreateAdd(Idx, Offs);
470 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000471
Chris Lattner2188e402010-01-04 07:37:31 +0000472 Value *End = ConstantInt::get(Idx->getType(),
473 FalseRangeEnd-FirstFalseElement);
474 return new ICmpInst(ICmpInst::ICMP_UGT, Idx, End);
475 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000476
477
Arnaud A. de Grandmaisonf364bc62013-03-22 08:25:01 +0000478 // If a magic bitvector captures the entire comparison state
Chris Lattner2188e402010-01-04 07:37:31 +0000479 // of this load, replace it with computation that does:
480 // ((magic_cst >> i) & 1) != 0
Arnaud A. de Grandmaisonf364bc62013-03-22 08:25:01 +0000481 {
Craig Topperf40110f2014-04-25 05:29:35 +0000482 Type *Ty = nullptr;
Arnaud A. de Grandmaisonf364bc62013-03-22 08:25:01 +0000483
484 // Look for an appropriate type:
485 // - The type of Idx if the magic fits
486 // - The smallest fitting legal type if we have a DataLayout
487 // - Default to i32
488 if (ArrayElementCount <= Idx->getType()->getIntegerBitWidth())
489 Ty = Idx->getType();
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000490 else if (DL)
491 Ty = DL->getSmallestLegalIntType(Init->getContext(), ArrayElementCount);
Arnaud A. de Grandmaisonf364bc62013-03-22 08:25:01 +0000492 else if (ArrayElementCount <= 32)
Chris Lattner2188e402010-01-04 07:37:31 +0000493 Ty = Type::getInt32Ty(Init->getContext());
Arnaud A. de Grandmaisonf364bc62013-03-22 08:25:01 +0000494
Craig Topperf40110f2014-04-25 05:29:35 +0000495 if (Ty) {
Arnaud A. de Grandmaisonf364bc62013-03-22 08:25:01 +0000496 Value *V = Builder->CreateIntCast(Idx, Ty, false);
497 V = Builder->CreateLShr(ConstantInt::get(Ty, MagicBitvector), V);
498 V = Builder->CreateAnd(ConstantInt::get(Ty, 1), V);
499 return new ICmpInst(ICmpInst::ICMP_NE, V, ConstantInt::get(Ty, 0));
500 }
Chris Lattner2188e402010-01-04 07:37:31 +0000501 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000502
Craig Topperf40110f2014-04-25 05:29:35 +0000503 return nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +0000504}
505
506
507/// EvaluateGEPOffsetExpression - Return a value that can be used to compare
508/// the *offset* implied by a GEP to zero. For example, if we have &A[i], we
509/// want to return 'i' for "icmp ne i, 0". Note that, in general, indices can
510/// be complex, and scales are involved. The above expression would also be
511/// legal to codegen as "icmp ne (i*4), 0" (assuming A is a pointer to i32).
512/// This later form is less amenable to optimization though, and we are allowed
513/// to generate the first by knowing that pointer arithmetic doesn't overflow.
514///
515/// If we can't emit an optimized form for this expression, this returns null.
Jim Grosbach129c52a2011-09-30 18:09:53 +0000516///
Eli Friedman1754a252011-05-18 23:11:30 +0000517static Value *EvaluateGEPOffsetExpression(User *GEP, InstCombiner &IC) {
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000518 const DataLayout &DL = *IC.getDataLayout();
Chris Lattner2188e402010-01-04 07:37:31 +0000519 gep_type_iterator GTI = gep_type_begin(GEP);
Jim Grosbach129c52a2011-09-30 18:09:53 +0000520
Chris Lattner2188e402010-01-04 07:37:31 +0000521 // Check to see if this gep only has a single variable index. If so, and if
522 // any constant indices are a multiple of its scale, then we can compute this
523 // in terms of the scale of the variable index. For example, if the GEP
524 // implies an offset of "12 + i*4", then we can codegen this as "3 + i",
525 // because the expression will cross zero at the same point.
526 unsigned i, e = GEP->getNumOperands();
527 int64_t Offset = 0;
528 for (i = 1; i != e; ++i, ++GTI) {
529 if (ConstantInt *CI = dyn_cast<ConstantInt>(GEP->getOperand(i))) {
530 // Compute the aggregate offset of constant indices.
531 if (CI->isZero()) continue;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000532
Chris Lattner2188e402010-01-04 07:37:31 +0000533 // Handle a struct index, which adds its field offset to the pointer.
Chris Lattner229907c2011-07-18 04:54:35 +0000534 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000535 Offset += DL.getStructLayout(STy)->getElementOffset(CI->getZExtValue());
Chris Lattner2188e402010-01-04 07:37:31 +0000536 } else {
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000537 uint64_t Size = DL.getTypeAllocSize(GTI.getIndexedType());
Chris Lattner2188e402010-01-04 07:37:31 +0000538 Offset += Size*CI->getSExtValue();
539 }
540 } else {
541 // Found our variable index.
542 break;
543 }
544 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000545
Chris Lattner2188e402010-01-04 07:37:31 +0000546 // If there are no variable indices, we must have a constant offset, just
547 // evaluate it the general way.
Craig Topperf40110f2014-04-25 05:29:35 +0000548 if (i == e) return nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000549
Chris Lattner2188e402010-01-04 07:37:31 +0000550 Value *VariableIdx = GEP->getOperand(i);
551 // Determine the scale factor of the variable element. For example, this is
552 // 4 if the variable index is into an array of i32.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000553 uint64_t VariableScale = DL.getTypeAllocSize(GTI.getIndexedType());
Jim Grosbach129c52a2011-09-30 18:09:53 +0000554
Chris Lattner2188e402010-01-04 07:37:31 +0000555 // Verify that there are no other variable indices. If so, emit the hard way.
556 for (++i, ++GTI; i != e; ++i, ++GTI) {
557 ConstantInt *CI = dyn_cast<ConstantInt>(GEP->getOperand(i));
Craig Topperf40110f2014-04-25 05:29:35 +0000558 if (!CI) return nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000559
Chris Lattner2188e402010-01-04 07:37:31 +0000560 // Compute the aggregate offset of constant indices.
561 if (CI->isZero()) continue;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000562
Chris Lattner2188e402010-01-04 07:37:31 +0000563 // Handle a struct index, which adds its field offset to the pointer.
Chris Lattner229907c2011-07-18 04:54:35 +0000564 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000565 Offset += DL.getStructLayout(STy)->getElementOffset(CI->getZExtValue());
Chris Lattner2188e402010-01-04 07:37:31 +0000566 } else {
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000567 uint64_t Size = DL.getTypeAllocSize(GTI.getIndexedType());
Chris Lattner2188e402010-01-04 07:37:31 +0000568 Offset += Size*CI->getSExtValue();
569 }
570 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000571
Matt Arsenault745101d2013-08-21 19:53:10 +0000572
573
Chris Lattner2188e402010-01-04 07:37:31 +0000574 // Okay, we know we have a single variable index, which must be a
575 // pointer/array/vector index. If there is no offset, life is simple, return
576 // the index.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000577 Type *IntPtrTy = DL.getIntPtrType(GEP->getOperand(0)->getType());
Matt Arsenault745101d2013-08-21 19:53:10 +0000578 unsigned IntPtrWidth = IntPtrTy->getIntegerBitWidth();
Chris Lattner2188e402010-01-04 07:37:31 +0000579 if (Offset == 0) {
580 // Cast to intptrty in case a truncation occurs. If an extension is needed,
581 // we don't need to bother extending: the extension won't affect where the
582 // computation crosses zero.
Eli Friedman1754a252011-05-18 23:11:30 +0000583 if (VariableIdx->getType()->getPrimitiveSizeInBits() > IntPtrWidth) {
Eli Friedman1754a252011-05-18 23:11:30 +0000584 VariableIdx = IC.Builder->CreateTrunc(VariableIdx, IntPtrTy);
585 }
Chris Lattner2188e402010-01-04 07:37:31 +0000586 return VariableIdx;
587 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000588
Chris Lattner2188e402010-01-04 07:37:31 +0000589 // Otherwise, there is an index. The computation we will do will be modulo
590 // the pointer size, so get it.
591 uint64_t PtrSizeMask = ~0ULL >> (64-IntPtrWidth);
Jim Grosbach129c52a2011-09-30 18:09:53 +0000592
Chris Lattner2188e402010-01-04 07:37:31 +0000593 Offset &= PtrSizeMask;
594 VariableScale &= PtrSizeMask;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000595
Chris Lattner2188e402010-01-04 07:37:31 +0000596 // To do this transformation, any constant index must be a multiple of the
597 // variable scale factor. For example, we can evaluate "12 + 4*i" as "3 + i",
598 // but we can't evaluate "10 + 3*i" in terms of i. Check that the offset is a
599 // multiple of the variable scale.
600 int64_t NewOffs = Offset / (int64_t)VariableScale;
601 if (Offset != NewOffs*(int64_t)VariableScale)
Craig Topperf40110f2014-04-25 05:29:35 +0000602 return nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000603
Chris Lattner2188e402010-01-04 07:37:31 +0000604 // Okay, we can do this evaluation. Start by converting the index to intptr.
Chris Lattner2188e402010-01-04 07:37:31 +0000605 if (VariableIdx->getType() != IntPtrTy)
Eli Friedman1754a252011-05-18 23:11:30 +0000606 VariableIdx = IC.Builder->CreateIntCast(VariableIdx, IntPtrTy,
607 true /*Signed*/);
Chris Lattner2188e402010-01-04 07:37:31 +0000608 Constant *OffsetVal = ConstantInt::get(IntPtrTy, NewOffs);
Eli Friedman1754a252011-05-18 23:11:30 +0000609 return IC.Builder->CreateAdd(VariableIdx, OffsetVal, "offset");
Chris Lattner2188e402010-01-04 07:37:31 +0000610}
611
612/// FoldGEPICmp - Fold comparisons between a GEP instruction and something
613/// else. At this point we know that the GEP is on the LHS of the comparison.
614Instruction *InstCombiner::FoldGEPICmp(GEPOperator *GEPLHS, Value *RHS,
615 ICmpInst::Predicate Cond,
616 Instruction &I) {
Benjamin Kramer6ee86902012-02-21 13:31:09 +0000617 // Don't transform signed compares of GEPs into index compares. Even if the
618 // GEP is inbounds, the final add of the base pointer can have signed overflow
619 // and would change the result of the icmp.
620 // e.g. "&foo[0] <s &foo[1]" can't be folded to "true" because "foo" could be
Benjamin Kramerc7a22fe2012-02-21 13:40:06 +0000621 // the maximum signed value for the pointer type.
Benjamin Kramer6ee86902012-02-21 13:31:09 +0000622 if (ICmpInst::isSigned(Cond))
Craig Topperf40110f2014-04-25 05:29:35 +0000623 return nullptr;
Benjamin Kramer6ee86902012-02-21 13:31:09 +0000624
Matt Arsenault44f60d02014-06-09 19:20:29 +0000625 // Look through bitcasts and addrspacecasts. We do not however want to remove
626 // 0 GEPs.
627 if (!isa<GetElementPtrInst>(RHS))
628 RHS = RHS->stripPointerCasts();
Chris Lattner2188e402010-01-04 07:37:31 +0000629
630 Value *PtrBase = GEPLHS->getOperand(0);
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000631 if (DL && PtrBase == RHS && GEPLHS->isInBounds()) {
Chris Lattner2188e402010-01-04 07:37:31 +0000632 // ((gep Ptr, OFFSET) cmp Ptr) ---> (OFFSET cmp 0).
633 // This transformation (ignoring the base and scales) is valid because we
634 // know pointers can't overflow since the gep is inbounds. See if we can
635 // output an optimized form.
Eli Friedman1754a252011-05-18 23:11:30 +0000636 Value *Offset = EvaluateGEPOffsetExpression(GEPLHS, *this);
Jim Grosbach129c52a2011-09-30 18:09:53 +0000637
Chris Lattner2188e402010-01-04 07:37:31 +0000638 // If not, synthesize the offset the hard way.
Craig Topperf40110f2014-04-25 05:29:35 +0000639 if (!Offset)
Chris Lattner2188e402010-01-04 07:37:31 +0000640 Offset = EmitGEPOffset(GEPLHS);
641 return new ICmpInst(ICmpInst::getSignedPredicate(Cond), Offset,
642 Constant::getNullValue(Offset->getType()));
643 } else if (GEPOperator *GEPRHS = dyn_cast<GEPOperator>(RHS)) {
644 // If the base pointers are different, but the indices are the same, just
645 // compare the base pointer.
646 if (PtrBase != GEPRHS->getOperand(0)) {
647 bool IndicesTheSame = GEPLHS->getNumOperands()==GEPRHS->getNumOperands();
648 IndicesTheSame &= GEPLHS->getOperand(0)->getType() ==
649 GEPRHS->getOperand(0)->getType();
650 if (IndicesTheSame)
651 for (unsigned i = 1, e = GEPLHS->getNumOperands(); i != e; ++i)
652 if (GEPLHS->getOperand(i) != GEPRHS->getOperand(i)) {
653 IndicesTheSame = false;
654 break;
655 }
656
657 // If all indices are the same, just compare the base pointers.
658 if (IndicesTheSame)
David Majnemer5953d372013-06-29 10:28:04 +0000659 return new ICmpInst(Cond, GEPLHS->getOperand(0), GEPRHS->getOperand(0));
Chris Lattner2188e402010-01-04 07:37:31 +0000660
Benjamin Kramer7adb1892012-02-20 15:07:47 +0000661 // If we're comparing GEPs with two base pointers that only differ in type
662 // and both GEPs have only constant indices or just one use, then fold
663 // the compare with the adjusted indices.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000664 if (DL && GEPLHS->isInBounds() && GEPRHS->isInBounds() &&
Benjamin Kramer7adb1892012-02-20 15:07:47 +0000665 (GEPLHS->hasAllConstantIndices() || GEPLHS->hasOneUse()) &&
666 (GEPRHS->hasAllConstantIndices() || GEPRHS->hasOneUse()) &&
667 PtrBase->stripPointerCasts() ==
668 GEPRHS->getOperand(0)->stripPointerCasts()) {
Matt Arsenault44f60d02014-06-09 19:20:29 +0000669 Value *LOffset = EmitGEPOffset(GEPLHS);
670 Value *ROffset = EmitGEPOffset(GEPRHS);
671
672 // If we looked through an addrspacecast between different sized address
673 // spaces, the LHS and RHS pointers are different sized
674 // integers. Truncate to the smaller one.
675 Type *LHSIndexTy = LOffset->getType();
676 Type *RHSIndexTy = ROffset->getType();
677 if (LHSIndexTy != RHSIndexTy) {
678 if (LHSIndexTy->getPrimitiveSizeInBits() <
679 RHSIndexTy->getPrimitiveSizeInBits()) {
680 ROffset = Builder->CreateTrunc(ROffset, LHSIndexTy);
681 } else
682 LOffset = Builder->CreateTrunc(LOffset, RHSIndexTy);
683 }
684
Benjamin Kramer7adb1892012-02-20 15:07:47 +0000685 Value *Cmp = Builder->CreateICmp(ICmpInst::getSignedPredicate(Cond),
Matt Arsenault44f60d02014-06-09 19:20:29 +0000686 LOffset, ROffset);
Benjamin Kramer7adb1892012-02-20 15:07:47 +0000687 return ReplaceInstUsesWith(I, Cmp);
688 }
689
Chris Lattner2188e402010-01-04 07:37:31 +0000690 // Otherwise, the base pointers are different and the indices are
691 // different, bail out.
Craig Topperf40110f2014-04-25 05:29:35 +0000692 return nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +0000693 }
694
695 // If one of the GEPs has all zero indices, recurse.
Benjamin Kramerd0993e02014-07-07 11:01:16 +0000696 if (GEPLHS->hasAllZeroIndices())
Chris Lattner2188e402010-01-04 07:37:31 +0000697 return FoldGEPICmp(GEPRHS, GEPLHS->getOperand(0),
David Majnemer92a8a7d2013-06-29 09:45:35 +0000698 ICmpInst::getSwappedPredicate(Cond), I);
Chris Lattner2188e402010-01-04 07:37:31 +0000699
700 // If the other GEP has all zero indices, recurse.
Benjamin Kramerd0993e02014-07-07 11:01:16 +0000701 if (GEPRHS->hasAllZeroIndices())
Chris Lattner2188e402010-01-04 07:37:31 +0000702 return FoldGEPICmp(GEPLHS, GEPRHS->getOperand(0), Cond, I);
703
Stuart Hastings66a82b92011-05-14 05:55:10 +0000704 bool GEPsInBounds = GEPLHS->isInBounds() && GEPRHS->isInBounds();
Chris Lattner2188e402010-01-04 07:37:31 +0000705 if (GEPLHS->getNumOperands() == GEPRHS->getNumOperands()) {
706 // If the GEPs only differ by one index, compare it.
707 unsigned NumDifferences = 0; // Keep track of # differences.
708 unsigned DiffOperand = 0; // The operand that differs.
709 for (unsigned i = 1, e = GEPRHS->getNumOperands(); i != e; ++i)
710 if (GEPLHS->getOperand(i) != GEPRHS->getOperand(i)) {
711 if (GEPLHS->getOperand(i)->getType()->getPrimitiveSizeInBits() !=
712 GEPRHS->getOperand(i)->getType()->getPrimitiveSizeInBits()) {
713 // Irreconcilable differences.
714 NumDifferences = 2;
715 break;
716 } else {
717 if (NumDifferences++) break;
718 DiffOperand = i;
719 }
720 }
721
Rafael Espindolaa7bbc0b2013-06-06 17:03:05 +0000722 if (NumDifferences == 0) // SAME GEP?
723 return ReplaceInstUsesWith(I, // No comparison is needed here.
Jakub Staszakbddea112013-06-06 20:18:46 +0000724 Builder->getInt1(ICmpInst::isTrueWhenEqual(Cond)));
Chris Lattner2188e402010-01-04 07:37:31 +0000725
Stuart Hastings66a82b92011-05-14 05:55:10 +0000726 else if (NumDifferences == 1 && GEPsInBounds) {
Chris Lattner2188e402010-01-04 07:37:31 +0000727 Value *LHSV = GEPLHS->getOperand(DiffOperand);
728 Value *RHSV = GEPRHS->getOperand(DiffOperand);
729 // Make sure we do a signed comparison here.
730 return new ICmpInst(ICmpInst::getSignedPredicate(Cond), LHSV, RHSV);
731 }
732 }
733
734 // Only lower this if the icmp is the only user of the GEP or if we expect
735 // the result to fold to a constant!
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000736 if (DL &&
Stuart Hastings66a82b92011-05-14 05:55:10 +0000737 GEPsInBounds &&
Chris Lattner2188e402010-01-04 07:37:31 +0000738 (isa<ConstantExpr>(GEPLHS) || GEPLHS->hasOneUse()) &&
739 (isa<ConstantExpr>(GEPRHS) || GEPRHS->hasOneUse())) {
740 // ((gep Ptr, OFFSET1) cmp (gep Ptr, OFFSET2) ---> (OFFSET1 cmp OFFSET2)
741 Value *L = EmitGEPOffset(GEPLHS);
742 Value *R = EmitGEPOffset(GEPRHS);
743 return new ICmpInst(ICmpInst::getSignedPredicate(Cond), L, R);
744 }
745 }
Craig Topperf40110f2014-04-25 05:29:35 +0000746 return nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +0000747}
748
749/// FoldICmpAddOpCst - Fold "icmp pred (X+CI), X".
Benjamin Kramer0e2d1622013-09-20 22:12:42 +0000750Instruction *InstCombiner::FoldICmpAddOpCst(Instruction &ICI,
Chris Lattner2188e402010-01-04 07:37:31 +0000751 Value *X, ConstantInt *CI,
Benjamin Kramer0e2d1622013-09-20 22:12:42 +0000752 ICmpInst::Predicate Pred) {
Chris Lattner2188e402010-01-04 07:37:31 +0000753 // From this point on, we know that (X+C <= X) --> (X+C < X) because C != 0,
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000754 // so the values can never be equal. Similarly for all other "or equals"
Chris Lattner2188e402010-01-04 07:37:31 +0000755 // operators.
Jim Grosbach129c52a2011-09-30 18:09:53 +0000756
Chris Lattner8c92b572010-01-08 17:48:19 +0000757 // (X+1) <u X --> X >u (MAXUINT-1) --> X == 255
Chris Lattner2188e402010-01-04 07:37:31 +0000758 // (X+2) <u X --> X >u (MAXUINT-2) --> X > 253
759 // (X+MAXUINT) <u X --> X >u (MAXUINT-MAXUINT) --> X != 0
760 if (Pred == ICmpInst::ICMP_ULT || Pred == ICmpInst::ICMP_ULE) {
Jim Grosbach129c52a2011-09-30 18:09:53 +0000761 Value *R =
Chris Lattner8c92b572010-01-08 17:48:19 +0000762 ConstantExpr::getSub(ConstantInt::getAllOnesValue(CI->getType()), CI);
Chris Lattner2188e402010-01-04 07:37:31 +0000763 return new ICmpInst(ICmpInst::ICMP_UGT, X, R);
764 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000765
Chris Lattner2188e402010-01-04 07:37:31 +0000766 // (X+1) >u X --> X <u (0-1) --> X != 255
767 // (X+2) >u X --> X <u (0-2) --> X <u 254
768 // (X+MAXUINT) >u X --> X <u (0-MAXUINT) --> X <u 1 --> X == 0
Duncan Sandse5220012011-02-17 07:46:37 +0000769 if (Pred == ICmpInst::ICMP_UGT || Pred == ICmpInst::ICMP_UGE)
Chris Lattner2188e402010-01-04 07:37:31 +0000770 return new ICmpInst(ICmpInst::ICMP_ULT, X, ConstantExpr::getNeg(CI));
Jim Grosbach129c52a2011-09-30 18:09:53 +0000771
Chris Lattner2188e402010-01-04 07:37:31 +0000772 unsigned BitWidth = CI->getType()->getPrimitiveSizeInBits();
773 ConstantInt *SMax = ConstantInt::get(X->getContext(),
774 APInt::getSignedMaxValue(BitWidth));
775
776 // (X+ 1) <s X --> X >s (MAXSINT-1) --> X == 127
777 // (X+ 2) <s X --> X >s (MAXSINT-2) --> X >s 125
778 // (X+MAXSINT) <s X --> X >s (MAXSINT-MAXSINT) --> X >s 0
779 // (X+MINSINT) <s X --> X >s (MAXSINT-MINSINT) --> X >s -1
780 // (X+ -2) <s X --> X >s (MAXSINT- -2) --> X >s 126
781 // (X+ -1) <s X --> X >s (MAXSINT- -1) --> X != 127
Duncan Sandse5220012011-02-17 07:46:37 +0000782 if (Pred == ICmpInst::ICMP_SLT || Pred == ICmpInst::ICMP_SLE)
Chris Lattner2188e402010-01-04 07:37:31 +0000783 return new ICmpInst(ICmpInst::ICMP_SGT, X, ConstantExpr::getSub(SMax, CI));
Jim Grosbach129c52a2011-09-30 18:09:53 +0000784
Chris Lattner2188e402010-01-04 07:37:31 +0000785 // (X+ 1) >s X --> X <s (MAXSINT-(1-1)) --> X != 127
786 // (X+ 2) >s X --> X <s (MAXSINT-(2-1)) --> X <s 126
787 // (X+MAXSINT) >s X --> X <s (MAXSINT-(MAXSINT-1)) --> X <s 1
788 // (X+MINSINT) >s X --> X <s (MAXSINT-(MINSINT-1)) --> X <s -2
789 // (X+ -2) >s X --> X <s (MAXSINT-(-2-1)) --> X <s -126
790 // (X+ -1) >s X --> X <s (MAXSINT-(-1-1)) --> X == -128
Jim Grosbach129c52a2011-09-30 18:09:53 +0000791
Chris Lattner2188e402010-01-04 07:37:31 +0000792 assert(Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_SGE);
Jakub Staszakbddea112013-06-06 20:18:46 +0000793 Constant *C = Builder->getInt(CI->getValue()-1);
Chris Lattner2188e402010-01-04 07:37:31 +0000794 return new ICmpInst(ICmpInst::ICMP_SLT, X, ConstantExpr::getSub(SMax, C));
795}
796
797/// FoldICmpDivCst - Fold "icmp pred, ([su]div X, DivRHS), CmpRHS" where DivRHS
798/// and CmpRHS are both known to be integer constants.
799Instruction *InstCombiner::FoldICmpDivCst(ICmpInst &ICI, BinaryOperator *DivI,
800 ConstantInt *DivRHS) {
801 ConstantInt *CmpRHS = cast<ConstantInt>(ICI.getOperand(1));
802 const APInt &CmpRHSV = CmpRHS->getValue();
Jim Grosbach129c52a2011-09-30 18:09:53 +0000803
804 // FIXME: If the operand types don't match the type of the divide
Chris Lattner2188e402010-01-04 07:37:31 +0000805 // then don't attempt this transform. The code below doesn't have the
806 // logic to deal with a signed divide and an unsigned compare (and
Jim Grosbach129c52a2011-09-30 18:09:53 +0000807 // vice versa). This is because (x /s C1) <s C2 produces different
Chris Lattner2188e402010-01-04 07:37:31 +0000808 // results than (x /s C1) <u C2 or (x /u C1) <s C2 or even
Jim Grosbach129c52a2011-09-30 18:09:53 +0000809 // (x /u C1) <u C2. Simply casting the operands and result won't
810 // work. :( The if statement below tests that condition and bails
Chris Lattner98457102011-02-10 05:23:05 +0000811 // if it finds it.
Chris Lattner2188e402010-01-04 07:37:31 +0000812 bool DivIsSigned = DivI->getOpcode() == Instruction::SDiv;
813 if (!ICI.isEquality() && DivIsSigned != ICI.isSigned())
Craig Topperf40110f2014-04-25 05:29:35 +0000814 return nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +0000815 if (DivRHS->isZero())
Craig Topperf40110f2014-04-25 05:29:35 +0000816 return nullptr; // The ProdOV computation fails on divide by zero.
Chris Lattner2188e402010-01-04 07:37:31 +0000817 if (DivIsSigned && DivRHS->isAllOnesValue())
Craig Topperf40110f2014-04-25 05:29:35 +0000818 return nullptr; // The overflow computation also screws up here
Chris Lattner43273af2011-02-13 08:07:21 +0000819 if (DivRHS->isOne()) {
820 // This eliminates some funny cases with INT_MIN.
821 ICI.setOperand(0, DivI->getOperand(0)); // X/1 == X.
822 return &ICI;
823 }
Chris Lattner2188e402010-01-04 07:37:31 +0000824
825 // Compute Prod = CI * DivRHS. We are essentially solving an equation
Jim Grosbach129c52a2011-09-30 18:09:53 +0000826 // of form X/C1=C2. We solve for X by multiplying C1 (DivRHS) and
827 // C2 (CI). By solving for X we can turn this into a range check
828 // instead of computing a divide.
Chris Lattner2188e402010-01-04 07:37:31 +0000829 Constant *Prod = ConstantExpr::getMul(CmpRHS, DivRHS);
830
831 // Determine if the product overflows by seeing if the product is
832 // not equal to the divide. Make sure we do the same kind of divide
Jim Grosbach129c52a2011-09-30 18:09:53 +0000833 // as in the LHS instruction that we're folding.
Chris Lattner2188e402010-01-04 07:37:31 +0000834 bool ProdOV = (DivIsSigned ? ConstantExpr::getSDiv(Prod, DivRHS) :
835 ConstantExpr::getUDiv(Prod, DivRHS)) != CmpRHS;
836
837 // Get the ICmp opcode
838 ICmpInst::Predicate Pred = ICI.getPredicate();
839
Chris Lattner98457102011-02-10 05:23:05 +0000840 /// If the division is known to be exact, then there is no remainder from the
841 /// divide, so the covered range size is unit, otherwise it is the divisor.
842 ConstantInt *RangeSize = DivI->isExact() ? getOne(Prod) : DivRHS;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000843
Chris Lattner2188e402010-01-04 07:37:31 +0000844 // Figure out the interval that is being checked. For example, a comparison
Jim Grosbach129c52a2011-09-30 18:09:53 +0000845 // like "X /u 5 == 0" is really checking that X is in the interval [0, 5).
Chris Lattner2188e402010-01-04 07:37:31 +0000846 // Compute this interval based on the constants involved and the signedness of
847 // the compare/divide. This computes a half-open interval, keeping track of
848 // whether either value in the interval overflows. After analysis each
849 // overflow variable is set to 0 if it's corresponding bound variable is valid
850 // -1 if overflowed off the bottom end, or +1 if overflowed off the top end.
851 int LoOverflow = 0, HiOverflow = 0;
Craig Topperf40110f2014-04-25 05:29:35 +0000852 Constant *LoBound = nullptr, *HiBound = nullptr;
Chris Lattner98457102011-02-10 05:23:05 +0000853
Chris Lattner2188e402010-01-04 07:37:31 +0000854 if (!DivIsSigned) { // udiv
855 // e.g. X/5 op 3 --> [15, 20)
856 LoBound = Prod;
857 HiOverflow = LoOverflow = ProdOV;
Chris Lattner98457102011-02-10 05:23:05 +0000858 if (!HiOverflow) {
859 // If this is not an exact divide, then many values in the range collapse
860 // to the same result value.
861 HiOverflow = AddWithOverflow(HiBound, LoBound, RangeSize, false);
862 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000863
Chris Lattner2188e402010-01-04 07:37:31 +0000864 } else if (DivRHS->getValue().isStrictlyPositive()) { // Divisor is > 0.
865 if (CmpRHSV == 0) { // (X / pos) op 0
866 // Can't overflow. e.g. X/2 op 0 --> [-1, 2)
Chris Lattner98457102011-02-10 05:23:05 +0000867 LoBound = ConstantExpr::getNeg(SubOne(RangeSize));
868 HiBound = RangeSize;
Chris Lattner2188e402010-01-04 07:37:31 +0000869 } else if (CmpRHSV.isStrictlyPositive()) { // (X / pos) op pos
870 LoBound = Prod; // e.g. X/5 op 3 --> [15, 20)
871 HiOverflow = LoOverflow = ProdOV;
872 if (!HiOverflow)
Chris Lattner98457102011-02-10 05:23:05 +0000873 HiOverflow = AddWithOverflow(HiBound, Prod, RangeSize, true);
Chris Lattner2188e402010-01-04 07:37:31 +0000874 } else { // (X / pos) op neg
875 // e.g. X/5 op -3 --> [-15-4, -15+1) --> [-19, -14)
876 HiBound = AddOne(Prod);
877 LoOverflow = HiOverflow = ProdOV ? -1 : 0;
878 if (!LoOverflow) {
Chris Lattner98457102011-02-10 05:23:05 +0000879 ConstantInt *DivNeg =cast<ConstantInt>(ConstantExpr::getNeg(RangeSize));
Chris Lattner2188e402010-01-04 07:37:31 +0000880 LoOverflow = AddWithOverflow(LoBound, HiBound, DivNeg, true) ? -1 : 0;
Chris Lattner98457102011-02-10 05:23:05 +0000881 }
Chris Lattner2188e402010-01-04 07:37:31 +0000882 }
Chris Lattnerb1a15122011-07-15 06:08:15 +0000883 } else if (DivRHS->isNegative()) { // Divisor is < 0.
Chris Lattner98457102011-02-10 05:23:05 +0000884 if (DivI->isExact())
885 RangeSize = cast<ConstantInt>(ConstantExpr::getNeg(RangeSize));
Chris Lattner2188e402010-01-04 07:37:31 +0000886 if (CmpRHSV == 0) { // (X / neg) op 0
887 // e.g. X/-5 op 0 --> [-4, 5)
Chris Lattner98457102011-02-10 05:23:05 +0000888 LoBound = AddOne(RangeSize);
889 HiBound = cast<ConstantInt>(ConstantExpr::getNeg(RangeSize));
Chris Lattner2188e402010-01-04 07:37:31 +0000890 if (HiBound == DivRHS) { // -INTMIN = INTMIN
891 HiOverflow = 1; // [INTMIN+1, overflow)
Craig Topperf40110f2014-04-25 05:29:35 +0000892 HiBound = nullptr; // e.g. X/INTMIN = 0 --> X > INTMIN
Chris Lattner2188e402010-01-04 07:37:31 +0000893 }
894 } else if (CmpRHSV.isStrictlyPositive()) { // (X / neg) op pos
895 // e.g. X/-5 op 3 --> [-19, -14)
896 HiBound = AddOne(Prod);
897 HiOverflow = LoOverflow = ProdOV ? -1 : 0;
898 if (!LoOverflow)
Chris Lattner98457102011-02-10 05:23:05 +0000899 LoOverflow = AddWithOverflow(LoBound, HiBound, RangeSize, true) ? -1:0;
Chris Lattner2188e402010-01-04 07:37:31 +0000900 } else { // (X / neg) op neg
901 LoBound = Prod; // e.g. X/-5 op -3 --> [15, 20)
902 LoOverflow = HiOverflow = ProdOV;
903 if (!HiOverflow)
Chris Lattner98457102011-02-10 05:23:05 +0000904 HiOverflow = SubWithOverflow(HiBound, Prod, RangeSize, true);
Chris Lattner2188e402010-01-04 07:37:31 +0000905 }
Jim Grosbach129c52a2011-09-30 18:09:53 +0000906
Chris Lattner2188e402010-01-04 07:37:31 +0000907 // Dividing by a negative swaps the condition. LT <-> GT
908 Pred = ICmpInst::getSwappedPredicate(Pred);
909 }
910
911 Value *X = DivI->getOperand(0);
912 switch (Pred) {
913 default: llvm_unreachable("Unhandled icmp opcode!");
914 case ICmpInst::ICMP_EQ:
915 if (LoOverflow && HiOverflow)
Jakub Staszakbddea112013-06-06 20:18:46 +0000916 return ReplaceInstUsesWith(ICI, Builder->getFalse());
Chris Lattner067459c2010-03-05 08:46:26 +0000917 if (HiOverflow)
Chris Lattner2188e402010-01-04 07:37:31 +0000918 return new ICmpInst(DivIsSigned ? ICmpInst::ICMP_SGE :
919 ICmpInst::ICMP_UGE, X, LoBound);
Chris Lattner067459c2010-03-05 08:46:26 +0000920 if (LoOverflow)
Chris Lattner2188e402010-01-04 07:37:31 +0000921 return new ICmpInst(DivIsSigned ? ICmpInst::ICMP_SLT :
922 ICmpInst::ICMP_ULT, X, HiBound);
Chris Lattner98457102011-02-10 05:23:05 +0000923 return ReplaceInstUsesWith(ICI, InsertRangeTest(X, LoBound, HiBound,
924 DivIsSigned, true));
Chris Lattner2188e402010-01-04 07:37:31 +0000925 case ICmpInst::ICMP_NE:
926 if (LoOverflow && HiOverflow)
Jakub Staszakbddea112013-06-06 20:18:46 +0000927 return ReplaceInstUsesWith(ICI, Builder->getTrue());
Chris Lattner067459c2010-03-05 08:46:26 +0000928 if (HiOverflow)
Chris Lattner2188e402010-01-04 07:37:31 +0000929 return new ICmpInst(DivIsSigned ? ICmpInst::ICMP_SLT :
930 ICmpInst::ICMP_ULT, X, LoBound);
Chris Lattner067459c2010-03-05 08:46:26 +0000931 if (LoOverflow)
Chris Lattner2188e402010-01-04 07:37:31 +0000932 return new ICmpInst(DivIsSigned ? ICmpInst::ICMP_SGE :
933 ICmpInst::ICMP_UGE, X, HiBound);
Chris Lattner067459c2010-03-05 08:46:26 +0000934 return ReplaceInstUsesWith(ICI, InsertRangeTest(X, LoBound, HiBound,
935 DivIsSigned, false));
Chris Lattner2188e402010-01-04 07:37:31 +0000936 case ICmpInst::ICMP_ULT:
937 case ICmpInst::ICMP_SLT:
938 if (LoOverflow == +1) // Low bound is greater than input range.
Jakub Staszakbddea112013-06-06 20:18:46 +0000939 return ReplaceInstUsesWith(ICI, Builder->getTrue());
Chris Lattner2188e402010-01-04 07:37:31 +0000940 if (LoOverflow == -1) // Low bound is less than input range.
Jakub Staszakbddea112013-06-06 20:18:46 +0000941 return ReplaceInstUsesWith(ICI, Builder->getFalse());
Chris Lattner2188e402010-01-04 07:37:31 +0000942 return new ICmpInst(Pred, X, LoBound);
943 case ICmpInst::ICMP_UGT:
944 case ICmpInst::ICMP_SGT:
945 if (HiOverflow == +1) // High bound greater than input range.
Jakub Staszakbddea112013-06-06 20:18:46 +0000946 return ReplaceInstUsesWith(ICI, Builder->getFalse());
Chris Lattner98457102011-02-10 05:23:05 +0000947 if (HiOverflow == -1) // High bound less than input range.
Jakub Staszakbddea112013-06-06 20:18:46 +0000948 return ReplaceInstUsesWith(ICI, Builder->getTrue());
Chris Lattner2188e402010-01-04 07:37:31 +0000949 if (Pred == ICmpInst::ICMP_UGT)
950 return new ICmpInst(ICmpInst::ICMP_UGE, X, HiBound);
Chris Lattner98457102011-02-10 05:23:05 +0000951 return new ICmpInst(ICmpInst::ICMP_SGE, X, HiBound);
Chris Lattner2188e402010-01-04 07:37:31 +0000952 }
953}
954
Chris Lattnerd369f572011-02-13 07:43:07 +0000955/// FoldICmpShrCst - Handle "icmp(([al]shr X, cst1), cst2)".
956Instruction *InstCombiner::FoldICmpShrCst(ICmpInst &ICI, BinaryOperator *Shr,
957 ConstantInt *ShAmt) {
Chris Lattnerd369f572011-02-13 07:43:07 +0000958 const APInt &CmpRHSV = cast<ConstantInt>(ICI.getOperand(1))->getValue();
Jim Grosbach129c52a2011-09-30 18:09:53 +0000959
Chris Lattnerd369f572011-02-13 07:43:07 +0000960 // Check that the shift amount is in range. If not, don't perform
961 // undefined shifts. When the shift is visited it will be
962 // simplified.
963 uint32_t TypeBits = CmpRHSV.getBitWidth();
964 uint32_t ShAmtVal = (uint32_t)ShAmt->getLimitedValue(TypeBits);
Chris Lattner43273af2011-02-13 08:07:21 +0000965 if (ShAmtVal >= TypeBits || ShAmtVal == 0)
Craig Topperf40110f2014-04-25 05:29:35 +0000966 return nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000967
Chris Lattner43273af2011-02-13 08:07:21 +0000968 if (!ICI.isEquality()) {
969 // If we have an unsigned comparison and an ashr, we can't simplify this.
970 // Similarly for signed comparisons with lshr.
971 if (ICI.isSigned() != (Shr->getOpcode() == Instruction::AShr))
Craig Topperf40110f2014-04-25 05:29:35 +0000972 return nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000973
Eli Friedman865866e2011-05-25 23:26:20 +0000974 // Otherwise, all lshr and most exact ashr's are equivalent to a udiv/sdiv
975 // by a power of 2. Since we already have logic to simplify these,
976 // transform to div and then simplify the resultant comparison.
Chris Lattner43273af2011-02-13 08:07:21 +0000977 if (Shr->getOpcode() == Instruction::AShr &&
Eli Friedman865866e2011-05-25 23:26:20 +0000978 (!Shr->isExact() || ShAmtVal == TypeBits - 1))
Craig Topperf40110f2014-04-25 05:29:35 +0000979 return nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000980
Chris Lattner43273af2011-02-13 08:07:21 +0000981 // Revisit the shift (to delete it).
982 Worklist.Add(Shr);
Jim Grosbach129c52a2011-09-30 18:09:53 +0000983
Chris Lattner43273af2011-02-13 08:07:21 +0000984 Constant *DivCst =
985 ConstantInt::get(Shr->getType(), APInt::getOneBitSet(TypeBits, ShAmtVal));
Jim Grosbach129c52a2011-09-30 18:09:53 +0000986
Chris Lattner43273af2011-02-13 08:07:21 +0000987 Value *Tmp =
988 Shr->getOpcode() == Instruction::AShr ?
989 Builder->CreateSDiv(Shr->getOperand(0), DivCst, "", Shr->isExact()) :
990 Builder->CreateUDiv(Shr->getOperand(0), DivCst, "", Shr->isExact());
Jim Grosbach129c52a2011-09-30 18:09:53 +0000991
Chris Lattner43273af2011-02-13 08:07:21 +0000992 ICI.setOperand(0, Tmp);
Jim Grosbach129c52a2011-09-30 18:09:53 +0000993
Chris Lattner43273af2011-02-13 08:07:21 +0000994 // If the builder folded the binop, just return it.
995 BinaryOperator *TheDiv = dyn_cast<BinaryOperator>(Tmp);
Craig Topperf40110f2014-04-25 05:29:35 +0000996 if (!TheDiv)
Chris Lattner43273af2011-02-13 08:07:21 +0000997 return &ICI;
Jim Grosbach129c52a2011-09-30 18:09:53 +0000998
Chris Lattner43273af2011-02-13 08:07:21 +0000999 // Otherwise, fold this div/compare.
1000 assert(TheDiv->getOpcode() == Instruction::SDiv ||
1001 TheDiv->getOpcode() == Instruction::UDiv);
Jim Grosbach129c52a2011-09-30 18:09:53 +00001002
Chris Lattner43273af2011-02-13 08:07:21 +00001003 Instruction *Res = FoldICmpDivCst(ICI, TheDiv, cast<ConstantInt>(DivCst));
1004 assert(Res && "This div/cst should have folded!");
1005 return Res;
1006 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00001007
1008
Chris Lattnerd369f572011-02-13 07:43:07 +00001009 // If we are comparing against bits always shifted out, the
1010 // comparison cannot succeed.
1011 APInt Comp = CmpRHSV << ShAmtVal;
Jakub Staszakbddea112013-06-06 20:18:46 +00001012 ConstantInt *ShiftedCmpRHS = Builder->getInt(Comp);
Chris Lattnerd369f572011-02-13 07:43:07 +00001013 if (Shr->getOpcode() == Instruction::LShr)
1014 Comp = Comp.lshr(ShAmtVal);
1015 else
1016 Comp = Comp.ashr(ShAmtVal);
Jim Grosbach129c52a2011-09-30 18:09:53 +00001017
Chris Lattnerd369f572011-02-13 07:43:07 +00001018 if (Comp != CmpRHSV) { // Comparing against a bit that we know is zero.
1019 bool IsICMP_NE = ICI.getPredicate() == ICmpInst::ICMP_NE;
Jakub Staszakbddea112013-06-06 20:18:46 +00001020 Constant *Cst = Builder->getInt1(IsICMP_NE);
Chris Lattnerd369f572011-02-13 07:43:07 +00001021 return ReplaceInstUsesWith(ICI, Cst);
1022 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00001023
Chris Lattnerd369f572011-02-13 07:43:07 +00001024 // Otherwise, check to see if the bits shifted out are known to be zero.
1025 // If so, we can compare against the unshifted value:
1026 // (X & 4) >> 1 == 2 --> (X & 4) == 4.
Chris Lattner9bd7fdf2011-02-13 18:30:09 +00001027 if (Shr->hasOneUse() && Shr->isExact())
Chris Lattnerd369f572011-02-13 07:43:07 +00001028 return new ICmpInst(ICI.getPredicate(), Shr->getOperand(0), ShiftedCmpRHS);
Jim Grosbach129c52a2011-09-30 18:09:53 +00001029
Chris Lattnerd369f572011-02-13 07:43:07 +00001030 if (Shr->hasOneUse()) {
1031 // Otherwise strength reduce the shift into an and.
1032 APInt Val(APInt::getHighBitsSet(TypeBits, TypeBits - ShAmtVal));
Jakub Staszakbddea112013-06-06 20:18:46 +00001033 Constant *Mask = Builder->getInt(Val);
Jim Grosbach129c52a2011-09-30 18:09:53 +00001034
Chris Lattnerd369f572011-02-13 07:43:07 +00001035 Value *And = Builder->CreateAnd(Shr->getOperand(0),
1036 Mask, Shr->getName()+".mask");
1037 return new ICmpInst(ICI.getPredicate(), And, ShiftedCmpRHS);
1038 }
Craig Topperf40110f2014-04-25 05:29:35 +00001039 return nullptr;
Chris Lattnerd369f572011-02-13 07:43:07 +00001040}
1041
Suyog Sarda3a8c2c12014-07-22 19:19:36 +00001042/// FoldICmpCstShrCst - Handle "(icmp eq/ne (ashr/lshr const2, A), const1)" ->
1043/// (icmp eq/ne A, Log2(const2/const1)) ->
1044/// (icmp eq/ne A, Log2(const2) - Log2(const1)).
1045Instruction *InstCombiner::FoldICmpCstShrCst(ICmpInst &I, Value *Op, Value *A,
1046 ConstantInt *CI1,
1047 ConstantInt *CI2) {
1048 assert(I.isEquality() && "Cannot fold icmp gt/lt");
1049
1050 auto getConstant = [&I, this](bool IsTrue) {
1051 if (I.getPredicate() == I.ICMP_NE)
1052 IsTrue = !IsTrue;
1053 return ReplaceInstUsesWith(I, ConstantInt::get(I.getType(), IsTrue));
1054 };
1055
1056 auto getICmp = [&I](CmpInst::Predicate Pred, Value *LHS, Value *RHS) {
1057 if (I.getPredicate() == I.ICMP_NE)
1058 Pred = CmpInst::getInversePredicate(Pred);
1059 return new ICmpInst(Pred, LHS, RHS);
1060 };
1061
1062 APInt AP1 = CI1->getValue();
1063 APInt AP2 = CI2->getValue();
1064
David Majnemer2abb8182014-10-25 07:13:13 +00001065 // Don't bother doing any work for cases which InstSimplify handles.
1066 if (AP2 == 0)
1067 return nullptr;
1068 bool IsAShr = isa<AShrOperator>(Op);
1069 if (IsAShr) {
1070 if (AP2.isAllOnesValue())
1071 return nullptr;
1072 if (AP2.isNegative() != AP1.isNegative())
1073 return nullptr;
1074 if (AP2.sgt(AP1))
1075 return nullptr;
1076 }
Suyog Sarda3a8c2c12014-07-22 19:19:36 +00001077
David Majnemerd2056022014-10-21 19:51:55 +00001078 if (!AP1)
Suyog Sarda3a8c2c12014-07-22 19:19:36 +00001079 // 'A' must be large enough to shift out the highest set bit.
1080 return getICmp(I.ICMP_UGT, A,
1081 ConstantInt::get(A->getType(), AP2.logBase2()));
Suyog Sarda3a8c2c12014-07-22 19:19:36 +00001082
David Majnemerd2056022014-10-21 19:51:55 +00001083 if (AP1 == AP2)
1084 return getICmp(I.ICMP_EQ, A, ConstantInt::getNullValue(A->getType()));
Suyog Sarda3a8c2c12014-07-22 19:19:36 +00001085
Suyog Sarda3a8c2c12014-07-22 19:19:36 +00001086 // Get the distance between the highest bit that's set.
Andrea Di Biagio5b92b492014-09-17 11:32:31 +00001087 int Shift;
David Majnemerd2056022014-10-21 19:51:55 +00001088 // Both the constants are negative, take their positive to calculate log.
1089 if (IsAShr && AP1.isNegative())
Andrea Di Biagio458a6692014-10-09 12:41:49 +00001090 // Get the ones' complement of AP2 and AP1 when computing the distance.
1091 Shift = (~AP2).logBase2() - (~AP1).logBase2();
Andrea Di Biagio5b92b492014-09-17 11:32:31 +00001092 else
1093 Shift = AP2.logBase2() - AP1.logBase2();
Suyog Sarda3a8c2c12014-07-22 19:19:36 +00001094
David Majnemerd2056022014-10-21 19:51:55 +00001095 if (Shift > 0) {
1096 if (IsAShr ? AP1 == AP2.ashr(Shift) : AP1 == AP2.lshr(Shift))
1097 return getICmp(I.ICMP_EQ, A, ConstantInt::get(A->getType(), Shift));
1098 }
Suyog Sarda3a8c2c12014-07-22 19:19:36 +00001099 // Shifting const2 will never be equal to const1.
1100 return getConstant(false);
1101}
Chris Lattner2188e402010-01-04 07:37:31 +00001102
David Majnemer59939ac2014-10-19 08:23:08 +00001103/// FoldICmpCstShlCst - Handle "(icmp eq/ne (shl const2, A), const1)" ->
1104/// (icmp eq/ne A, TrailingZeros(const1) - TrailingZeros(const2)).
1105Instruction *InstCombiner::FoldICmpCstShlCst(ICmpInst &I, Value *Op, Value *A,
1106 ConstantInt *CI1,
1107 ConstantInt *CI2) {
1108 assert(I.isEquality() && "Cannot fold icmp gt/lt");
1109
1110 auto getConstant = [&I, this](bool IsTrue) {
1111 if (I.getPredicate() == I.ICMP_NE)
1112 IsTrue = !IsTrue;
1113 return ReplaceInstUsesWith(I, ConstantInt::get(I.getType(), IsTrue));
1114 };
1115
1116 auto getICmp = [&I](CmpInst::Predicate Pred, Value *LHS, Value *RHS) {
1117 if (I.getPredicate() == I.ICMP_NE)
1118 Pred = CmpInst::getInversePredicate(Pred);
1119 return new ICmpInst(Pred, LHS, RHS);
1120 };
1121
1122 APInt AP1 = CI1->getValue();
1123 APInt AP2 = CI2->getValue();
1124
David Majnemer2abb8182014-10-25 07:13:13 +00001125 // Don't bother doing any work for cases which InstSimplify handles.
1126 if (AP2 == 0)
1127 return nullptr;
David Majnemer59939ac2014-10-19 08:23:08 +00001128
1129 unsigned AP2TrailingZeros = AP2.countTrailingZeros();
1130
1131 if (!AP1 && AP2TrailingZeros != 0)
1132 return getICmp(I.ICMP_UGE, A,
1133 ConstantInt::get(A->getType(), AP2.getBitWidth() - AP2TrailingZeros));
1134
1135 if (AP1 == AP2)
1136 return getICmp(I.ICMP_EQ, A, ConstantInt::getNullValue(A->getType()));
1137
1138 // Get the distance between the lowest bits that are set.
1139 int Shift = AP1.countTrailingZeros() - AP2TrailingZeros;
1140
1141 if (Shift > 0 && AP2.shl(Shift) == AP1)
1142 return getICmp(I.ICMP_EQ, A, ConstantInt::get(A->getType(), Shift));
1143
1144 // Shifting const2 will never be equal to const1.
1145 return getConstant(false);
1146}
1147
Chris Lattner2188e402010-01-04 07:37:31 +00001148/// visitICmpInstWithInstAndIntCst - Handle "icmp (instr, intcst)".
1149///
1150Instruction *InstCombiner::visitICmpInstWithInstAndIntCst(ICmpInst &ICI,
1151 Instruction *LHSI,
1152 ConstantInt *RHS) {
1153 const APInt &RHSV = RHS->getValue();
Jim Grosbach129c52a2011-09-30 18:09:53 +00001154
Chris Lattner2188e402010-01-04 07:37:31 +00001155 switch (LHSI->getOpcode()) {
1156 case Instruction::Trunc:
1157 if (ICI.isEquality() && LHSI->hasOneUse()) {
1158 // Simplify icmp eq (trunc x to i8), 42 -> icmp eq x, 42|highbits if all
1159 // of the high bits truncated out of x are known.
1160 unsigned DstBits = LHSI->getType()->getPrimitiveSizeInBits(),
1161 SrcBits = LHSI->getOperand(0)->getType()->getPrimitiveSizeInBits();
Chris Lattner2188e402010-01-04 07:37:31 +00001162 APInt KnownZero(SrcBits, 0), KnownOne(SrcBits, 0);
Hal Finkel60db0582014-09-07 18:57:58 +00001163 computeKnownBits(LHSI->getOperand(0), KnownZero, KnownOne, 0, &ICI);
Jim Grosbach129c52a2011-09-30 18:09:53 +00001164
Chris Lattner2188e402010-01-04 07:37:31 +00001165 // If all the high bits are known, we can do this xform.
1166 if ((KnownZero|KnownOne).countLeadingOnes() >= SrcBits-DstBits) {
1167 // Pull in the high bits from known-ones set.
Jay Foad583abbc2010-12-07 08:25:19 +00001168 APInt NewRHS = RHS->getValue().zext(SrcBits);
Eli Friedmane0a64d82012-05-11 01:32:59 +00001169 NewRHS |= KnownOne & APInt::getHighBitsSet(SrcBits, SrcBits-DstBits);
Chris Lattner2188e402010-01-04 07:37:31 +00001170 return new ICmpInst(ICI.getPredicate(), LHSI->getOperand(0),
Jakub Staszakbddea112013-06-06 20:18:46 +00001171 Builder->getInt(NewRHS));
Chris Lattner2188e402010-01-04 07:37:31 +00001172 }
1173 }
1174 break;
Jim Grosbach129c52a2011-09-30 18:09:53 +00001175
Kay Tiong Khoo564560f2013-12-02 22:11:56 +00001176 case Instruction::Xor: // (icmp pred (xor X, XorCst), CI)
1177 if (ConstantInt *XorCst = dyn_cast<ConstantInt>(LHSI->getOperand(1))) {
Chris Lattner2188e402010-01-04 07:37:31 +00001178 // If this is a comparison that tests the signbit (X < 0) or (x > -1),
1179 // fold the xor.
1180 if ((ICI.getPredicate() == ICmpInst::ICMP_SLT && RHSV == 0) ||
1181 (ICI.getPredicate() == ICmpInst::ICMP_SGT && RHSV.isAllOnesValue())) {
1182 Value *CompareVal = LHSI->getOperand(0);
Jim Grosbach129c52a2011-09-30 18:09:53 +00001183
Kay Tiong Khoo564560f2013-12-02 22:11:56 +00001184 // If the sign bit of the XorCst is not set, there is no change to
Chris Lattner2188e402010-01-04 07:37:31 +00001185 // the operation, just stop using the Xor.
Kay Tiong Khoo564560f2013-12-02 22:11:56 +00001186 if (!XorCst->isNegative()) {
Chris Lattner2188e402010-01-04 07:37:31 +00001187 ICI.setOperand(0, CompareVal);
1188 Worklist.Add(LHSI);
1189 return &ICI;
1190 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00001191
Chris Lattner2188e402010-01-04 07:37:31 +00001192 // Was the old condition true if the operand is positive?
1193 bool isTrueIfPositive = ICI.getPredicate() == ICmpInst::ICMP_SGT;
Jim Grosbach129c52a2011-09-30 18:09:53 +00001194
Chris Lattner2188e402010-01-04 07:37:31 +00001195 // If so, the new one isn't.
1196 isTrueIfPositive ^= true;
Jim Grosbach129c52a2011-09-30 18:09:53 +00001197
Chris Lattner2188e402010-01-04 07:37:31 +00001198 if (isTrueIfPositive)
1199 return new ICmpInst(ICmpInst::ICMP_SGT, CompareVal,
1200 SubOne(RHS));
1201 else
1202 return new ICmpInst(ICmpInst::ICMP_SLT, CompareVal,
1203 AddOne(RHS));
1204 }
1205
1206 if (LHSI->hasOneUse()) {
1207 // (icmp u/s (xor A SignBit), C) -> (icmp s/u A, (xor C SignBit))
Kay Tiong Khoo564560f2013-12-02 22:11:56 +00001208 if (!ICI.isEquality() && XorCst->getValue().isSignBit()) {
1209 const APInt &SignBit = XorCst->getValue();
Chris Lattner2188e402010-01-04 07:37:31 +00001210 ICmpInst::Predicate Pred = ICI.isSigned()
1211 ? ICI.getUnsignedPredicate()
1212 : ICI.getSignedPredicate();
1213 return new ICmpInst(Pred, LHSI->getOperand(0),
Jakub Staszakbddea112013-06-06 20:18:46 +00001214 Builder->getInt(RHSV ^ SignBit));
Chris Lattner2188e402010-01-04 07:37:31 +00001215 }
1216
1217 // (icmp u/s (xor A ~SignBit), C) -> (icmp s/u (xor C ~SignBit), A)
Kay Tiong Khoo564560f2013-12-02 22:11:56 +00001218 if (!ICI.isEquality() && XorCst->isMaxValue(true)) {
1219 const APInt &NotSignBit = XorCst->getValue();
Chris Lattner2188e402010-01-04 07:37:31 +00001220 ICmpInst::Predicate Pred = ICI.isSigned()
1221 ? ICI.getUnsignedPredicate()
1222 : ICI.getSignedPredicate();
1223 Pred = ICI.getSwappedPredicate(Pred);
1224 return new ICmpInst(Pred, LHSI->getOperand(0),
Jakub Staszakbddea112013-06-06 20:18:46 +00001225 Builder->getInt(RHSV ^ NotSignBit));
Chris Lattner2188e402010-01-04 07:37:31 +00001226 }
1227 }
David Majnemer72d76272013-07-09 09:20:58 +00001228
1229 // (icmp ugt (xor X, C), ~C) -> (icmp ult X, C)
1230 // iff -C is a power of 2
1231 if (ICI.getPredicate() == ICmpInst::ICMP_UGT &&
Kay Tiong Khoo564560f2013-12-02 22:11:56 +00001232 XorCst->getValue() == ~RHSV && (RHSV + 1).isPowerOf2())
1233 return new ICmpInst(ICmpInst::ICMP_ULT, LHSI->getOperand(0), XorCst);
David Majnemer72d76272013-07-09 09:20:58 +00001234
1235 // (icmp ult (xor X, C), -C) -> (icmp uge X, C)
1236 // iff -C is a power of 2
1237 if (ICI.getPredicate() == ICmpInst::ICMP_ULT &&
Kay Tiong Khoo564560f2013-12-02 22:11:56 +00001238 XorCst->getValue() == -RHSV && RHSV.isPowerOf2())
1239 return new ICmpInst(ICmpInst::ICMP_UGE, LHSI->getOperand(0), XorCst);
Chris Lattner2188e402010-01-04 07:37:31 +00001240 }
1241 break;
Kay Tiong Khoo564560f2013-12-02 22:11:56 +00001242 case Instruction::And: // (icmp pred (and X, AndCst), RHS)
Chris Lattner2188e402010-01-04 07:37:31 +00001243 if (LHSI->hasOneUse() && isa<ConstantInt>(LHSI->getOperand(1)) &&
1244 LHSI->getOperand(0)->hasOneUse()) {
Kay Tiong Khoo564560f2013-12-02 22:11:56 +00001245 ConstantInt *AndCst = cast<ConstantInt>(LHSI->getOperand(1));
Jim Grosbach129c52a2011-09-30 18:09:53 +00001246
Chris Lattner2188e402010-01-04 07:37:31 +00001247 // If the LHS is an AND of a truncating cast, we can widen the
1248 // and/compare to be the input width without changing the value
1249 // produced, eliminating a cast.
1250 if (TruncInst *Cast = dyn_cast<TruncInst>(LHSI->getOperand(0))) {
1251 // We can do this transformation if either the AND constant does not
Jim Grosbach129c52a2011-09-30 18:09:53 +00001252 // have its sign bit set or if it is an equality comparison.
Chris Lattner2188e402010-01-04 07:37:31 +00001253 // Extending a relational comparison when we're checking the sign
1254 // bit would not work.
Benjamin Kramer35159c12011-06-12 22:47:53 +00001255 if (ICI.isEquality() ||
Kay Tiong Khoo564560f2013-12-02 22:11:56 +00001256 (!AndCst->isNegative() && RHSV.isNonNegative())) {
Benjamin Kramer35159c12011-06-12 22:47:53 +00001257 Value *NewAnd =
Chris Lattner2188e402010-01-04 07:37:31 +00001258 Builder->CreateAnd(Cast->getOperand(0),
Kay Tiong Khoo564560f2013-12-02 22:11:56 +00001259 ConstantExpr::getZExt(AndCst, Cast->getSrcTy()));
Benjamin Kramer35159c12011-06-12 22:47:53 +00001260 NewAnd->takeName(LHSI);
Chris Lattner2188e402010-01-04 07:37:31 +00001261 return new ICmpInst(ICI.getPredicate(), NewAnd,
Benjamin Kramer35159c12011-06-12 22:47:53 +00001262 ConstantExpr::getZExt(RHS, Cast->getSrcTy()));
Chris Lattner2188e402010-01-04 07:37:31 +00001263 }
1264 }
Benjamin Kramer91f914c2011-06-12 22:48:00 +00001265
1266 // If the LHS is an AND of a zext, and we have an equality compare, we can
1267 // shrink the and/compare to the smaller type, eliminating the cast.
1268 if (ZExtInst *Cast = dyn_cast<ZExtInst>(LHSI->getOperand(0))) {
Chris Lattner229907c2011-07-18 04:54:35 +00001269 IntegerType *Ty = cast<IntegerType>(Cast->getSrcTy());
Benjamin Kramer91f914c2011-06-12 22:48:00 +00001270 // Make sure we don't compare the upper bits, SimplifyDemandedBits
1271 // should fold the icmp to true/false in that case.
1272 if (ICI.isEquality() && RHSV.getActiveBits() <= Ty->getBitWidth()) {
1273 Value *NewAnd =
1274 Builder->CreateAnd(Cast->getOperand(0),
Kay Tiong Khoo564560f2013-12-02 22:11:56 +00001275 ConstantExpr::getTrunc(AndCst, Ty));
Benjamin Kramer91f914c2011-06-12 22:48:00 +00001276 NewAnd->takeName(LHSI);
1277 return new ICmpInst(ICI.getPredicate(), NewAnd,
1278 ConstantExpr::getTrunc(RHS, Ty));
1279 }
1280 }
1281
Chris Lattner2188e402010-01-04 07:37:31 +00001282 // If this is: (X >> C1) & C2 != C3 (where any shift and any compare
1283 // could exist), turn it into (X & (C2 << C1)) != (C3 << C1). This
1284 // happens a LOT in code produced by the C front-end, for bitfield
1285 // access.
1286 BinaryOperator *Shift = dyn_cast<BinaryOperator>(LHSI->getOperand(0));
1287 if (Shift && !Shift->isShift())
Craig Topperf40110f2014-04-25 05:29:35 +00001288 Shift = nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +00001289
Chris Lattner2188e402010-01-04 07:37:31 +00001290 ConstantInt *ShAmt;
Craig Topperf40110f2014-04-25 05:29:35 +00001291 ShAmt = Shift ? dyn_cast<ConstantInt>(Shift->getOperand(1)) : nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +00001292
Kay Tiong Khooa570b5a2013-12-19 18:07:17 +00001293 // This seemingly simple opportunity to fold away a shift turns out to
1294 // be rather complicated. See PR17827
1295 // ( http://llvm.org/bugs/show_bug.cgi?id=17827 ) for details.
Chris Lattner2188e402010-01-04 07:37:31 +00001296 if (ShAmt) {
Kay Tiong Khoo5389f742013-12-02 18:43:59 +00001297 bool CanFold = false;
1298 unsigned ShiftOpcode = Shift->getOpcode();
1299 if (ShiftOpcode == Instruction::AShr) {
Kay Tiong Khooa570b5a2013-12-19 18:07:17 +00001300 // There may be some constraints that make this possible,
1301 // but nothing simple has been discovered yet.
1302 CanFold = false;
1303 } else if (ShiftOpcode == Instruction::Shl) {
1304 // For a left shift, we can fold if the comparison is not signed.
1305 // We can also fold a signed comparison if the mask value and
1306 // comparison value are not negative. These constraints may not be
1307 // obvious, but we can prove that they are correct using an SMT
Kay Tiong Khooe37d5202013-12-19 18:35:54 +00001308 // solver.
Kay Tiong Khooa570b5a2013-12-19 18:07:17 +00001309 if (!ICI.isSigned() || (!AndCst->isNegative() && !RHS->isNegative()))
Chris Lattner2188e402010-01-04 07:37:31 +00001310 CanFold = true;
Kay Tiong Khooa570b5a2013-12-19 18:07:17 +00001311 } else if (ShiftOpcode == Instruction::LShr) {
1312 // For a logical right shift, we can fold if the comparison is not
1313 // signed. We can also fold a signed comparison if the shifted mask
1314 // value and the shifted comparison value are not negative.
1315 // These constraints may not be obvious, but we can prove that they
Kay Tiong Khooe37d5202013-12-19 18:35:54 +00001316 // are correct using an SMT solver.
Kay Tiong Khooa570b5a2013-12-19 18:07:17 +00001317 if (!ICI.isSigned())
1318 CanFold = true;
1319 else {
1320 ConstantInt *ShiftedAndCst =
1321 cast<ConstantInt>(ConstantExpr::getShl(AndCst, ShAmt));
1322 ConstantInt *ShiftedRHSCst =
1323 cast<ConstantInt>(ConstantExpr::getShl(RHS, ShAmt));
1324
1325 if (!ShiftedAndCst->isNegative() && !ShiftedRHSCst->isNegative())
1326 CanFold = true;
1327 }
Chris Lattner2188e402010-01-04 07:37:31 +00001328 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00001329
Chris Lattner2188e402010-01-04 07:37:31 +00001330 if (CanFold) {
1331 Constant *NewCst;
Kay Tiong Khood7b00ca2013-12-02 22:23:32 +00001332 if (ShiftOpcode == Instruction::Shl)
Chris Lattner2188e402010-01-04 07:37:31 +00001333 NewCst = ConstantExpr::getLShr(RHS, ShAmt);
1334 else
1335 NewCst = ConstantExpr::getShl(RHS, ShAmt);
Jim Grosbach129c52a2011-09-30 18:09:53 +00001336
Chris Lattner2188e402010-01-04 07:37:31 +00001337 // Check to see if we are shifting out any of the bits being
1338 // compared.
Kay Tiong Khood7b00ca2013-12-02 22:23:32 +00001339 if (ConstantExpr::get(ShiftOpcode, NewCst, ShAmt) != RHS) {
Chris Lattner2188e402010-01-04 07:37:31 +00001340 // If we shifted bits out, the fold is not going to work out.
1341 // As a special case, check to see if this means that the
1342 // result is always true or false now.
1343 if (ICI.getPredicate() == ICmpInst::ICMP_EQ)
Jakub Staszakbddea112013-06-06 20:18:46 +00001344 return ReplaceInstUsesWith(ICI, Builder->getFalse());
Chris Lattner2188e402010-01-04 07:37:31 +00001345 if (ICI.getPredicate() == ICmpInst::ICMP_NE)
Jakub Staszakbddea112013-06-06 20:18:46 +00001346 return ReplaceInstUsesWith(ICI, Builder->getTrue());
Chris Lattner2188e402010-01-04 07:37:31 +00001347 } else {
1348 ICI.setOperand(1, NewCst);
Kay Tiong Khoo564560f2013-12-02 22:11:56 +00001349 Constant *NewAndCst;
Kay Tiong Khood7b00ca2013-12-02 22:23:32 +00001350 if (ShiftOpcode == Instruction::Shl)
Kay Tiong Khoo564560f2013-12-02 22:11:56 +00001351 NewAndCst = ConstantExpr::getLShr(AndCst, ShAmt);
Chris Lattner2188e402010-01-04 07:37:31 +00001352 else
Kay Tiong Khoo564560f2013-12-02 22:11:56 +00001353 NewAndCst = ConstantExpr::getShl(AndCst, ShAmt);
1354 LHSI->setOperand(1, NewAndCst);
Chris Lattner2188e402010-01-04 07:37:31 +00001355 LHSI->setOperand(0, Shift->getOperand(0));
1356 Worklist.Add(Shift); // Shift is dead.
1357 return &ICI;
1358 }
1359 }
1360 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00001361
Chris Lattner2188e402010-01-04 07:37:31 +00001362 // Turn ((X >> Y) & C) == 0 into (X & (C << Y)) == 0. The later is
1363 // preferable because it allows the C<<Y expression to be hoisted out
1364 // of a loop if Y is invariant and X is not.
1365 if (Shift && Shift->hasOneUse() && RHSV == 0 &&
1366 ICI.isEquality() && !Shift->isArithmeticShift() &&
1367 !isa<Constant>(Shift->getOperand(0))) {
1368 // Compute C << Y.
1369 Value *NS;
1370 if (Shift->getOpcode() == Instruction::LShr) {
Kay Tiong Khoo564560f2013-12-02 22:11:56 +00001371 NS = Builder->CreateShl(AndCst, Shift->getOperand(1));
Chris Lattner2188e402010-01-04 07:37:31 +00001372 } else {
1373 // Insert a logical shift.
Kay Tiong Khoo564560f2013-12-02 22:11:56 +00001374 NS = Builder->CreateLShr(AndCst, Shift->getOperand(1));
Chris Lattner2188e402010-01-04 07:37:31 +00001375 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00001376
Chris Lattner2188e402010-01-04 07:37:31 +00001377 // Compute X & (C << Y).
Jim Grosbach129c52a2011-09-30 18:09:53 +00001378 Value *NewAnd =
Chris Lattner2188e402010-01-04 07:37:31 +00001379 Builder->CreateAnd(Shift->getOperand(0), NS, LHSI->getName());
Jim Grosbach129c52a2011-09-30 18:09:53 +00001380
Chris Lattner2188e402010-01-04 07:37:31 +00001381 ICI.setOperand(0, NewAnd);
1382 return &ICI;
1383 }
Paul Redmond5917f4c2012-12-19 19:47:13 +00001384
David Majnemer0ffccf72014-08-24 09:10:57 +00001385 // (icmp pred (and (or (lshr X, Y), X), 1), 0) -->
1386 // (icmp pred (and X, (or (shl 1, Y), 1), 0))
1387 //
1388 // iff pred isn't signed
1389 {
1390 Value *X, *Y, *LShr;
1391 if (!ICI.isSigned() && RHSV == 0) {
1392 if (match(LHSI->getOperand(1), m_One())) {
1393 Constant *One = cast<Constant>(LHSI->getOperand(1));
1394 Value *Or = LHSI->getOperand(0);
1395 if (match(Or, m_Or(m_Value(LShr), m_Value(X))) &&
1396 match(LShr, m_LShr(m_Specific(X), m_Value(Y)))) {
1397 unsigned UsesRemoved = 0;
1398 if (LHSI->hasOneUse())
1399 ++UsesRemoved;
1400 if (Or->hasOneUse())
1401 ++UsesRemoved;
1402 if (LShr->hasOneUse())
1403 ++UsesRemoved;
1404 Value *NewOr = nullptr;
1405 // Compute X & ((1 << Y) | 1)
1406 if (auto *C = dyn_cast<Constant>(Y)) {
1407 if (UsesRemoved >= 1)
1408 NewOr =
1409 ConstantExpr::getOr(ConstantExpr::getNUWShl(One, C), One);
1410 } else {
1411 if (UsesRemoved >= 3)
1412 NewOr = Builder->CreateOr(Builder->CreateShl(One, Y,
1413 LShr->getName(),
1414 /*HasNUW=*/true),
1415 One, Or->getName());
1416 }
1417 if (NewOr) {
1418 Value *NewAnd = Builder->CreateAnd(X, NewOr, LHSI->getName());
1419 ICI.setOperand(0, NewAnd);
1420 return &ICI;
1421 }
1422 }
1423 }
1424 }
1425 }
1426
Kay Tiong Khoo564560f2013-12-02 22:11:56 +00001427 // Replace ((X & AndCst) > RHSV) with ((X & AndCst) != 0), if any
1428 // bit set in (X & AndCst) will produce a result greater than RHSV.
Paul Redmond5917f4c2012-12-19 19:47:13 +00001429 if (ICI.getPredicate() == ICmpInst::ICMP_UGT) {
Kay Tiong Khoo564560f2013-12-02 22:11:56 +00001430 unsigned NTZ = AndCst->getValue().countTrailingZeros();
1431 if ((NTZ < AndCst->getBitWidth()) &&
1432 APInt::getOneBitSet(AndCst->getBitWidth(), NTZ).ugt(RHSV))
Paul Redmond5917f4c2012-12-19 19:47:13 +00001433 return new ICmpInst(ICmpInst::ICMP_NE, LHSI,
1434 Constant::getNullValue(RHS->getType()));
1435 }
Chris Lattner2188e402010-01-04 07:37:31 +00001436 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00001437
Chris Lattner2188e402010-01-04 07:37:31 +00001438 // Try to optimize things like "A[i]&42 == 0" to index computations.
1439 if (LoadInst *LI = dyn_cast<LoadInst>(LHSI->getOperand(0))) {
1440 if (GetElementPtrInst *GEP =
1441 dyn_cast<GetElementPtrInst>(LI->getOperand(0)))
1442 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(GEP->getOperand(0)))
1443 if (GV->isConstant() && GV->hasDefinitiveInitializer() &&
1444 !LI->isVolatile() && isa<ConstantInt>(LHSI->getOperand(1))) {
1445 ConstantInt *C = cast<ConstantInt>(LHSI->getOperand(1));
1446 if (Instruction *Res = FoldCmpLoadFromIndexedGlobal(GEP, GV,ICI, C))
1447 return Res;
1448 }
1449 }
David Majnemer414d4e52013-07-09 08:09:32 +00001450
1451 // X & -C == -C -> X > u ~C
1452 // X & -C != -C -> X <= u ~C
1453 // iff C is a power of 2
1454 if (ICI.isEquality() && RHS == LHSI->getOperand(1) && (-RHSV).isPowerOf2())
1455 return new ICmpInst(
1456 ICI.getPredicate() == ICmpInst::ICMP_EQ ? ICmpInst::ICMP_UGT
1457 : ICmpInst::ICMP_ULE,
1458 LHSI->getOperand(0), SubOne(RHS));
Chris Lattner2188e402010-01-04 07:37:31 +00001459 break;
1460
1461 case Instruction::Or: {
1462 if (!ICI.isEquality() || !RHS->isNullValue() || !LHSI->hasOneUse())
1463 break;
1464 Value *P, *Q;
1465 if (match(LHSI, m_Or(m_PtrToInt(m_Value(P)), m_PtrToInt(m_Value(Q))))) {
1466 // Simplify icmp eq (or (ptrtoint P), (ptrtoint Q)), 0
1467 // -> and (icmp eq P, null), (icmp eq Q, null).
Chris Lattner2188e402010-01-04 07:37:31 +00001468 Value *ICIP = Builder->CreateICmp(ICI.getPredicate(), P,
1469 Constant::getNullValue(P->getType()));
1470 Value *ICIQ = Builder->CreateICmp(ICI.getPredicate(), Q,
1471 Constant::getNullValue(Q->getType()));
1472 Instruction *Op;
1473 if (ICI.getPredicate() == ICmpInst::ICMP_EQ)
1474 Op = BinaryOperator::CreateAnd(ICIP, ICIQ);
1475 else
1476 Op = BinaryOperator::CreateOr(ICIP, ICIQ);
1477 return Op;
1478 }
1479 break;
1480 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00001481
Arnaud A. de Grandmaison9c383d62013-03-25 09:48:49 +00001482 case Instruction::Mul: { // (icmp pred (mul X, Val), CI)
1483 ConstantInt *Val = dyn_cast<ConstantInt>(LHSI->getOperand(1));
1484 if (!Val) break;
1485
Arnaud A. de Grandmaison3ee88e82013-03-25 11:47:38 +00001486 // If this is a signed comparison to 0 and the mul is sign preserving,
1487 // use the mul LHS operand instead.
1488 ICmpInst::Predicate pred = ICI.getPredicate();
1489 if (isSignTest(pred, RHS) && !Val->isZero() &&
1490 cast<BinaryOperator>(LHSI)->hasNoSignedWrap())
1491 return new ICmpInst(Val->isNegative() ?
1492 ICmpInst::getSwappedPredicate(pred) : pred,
1493 LHSI->getOperand(0),
1494 Constant::getNullValue(RHS->getType()));
Arnaud A. de Grandmaison9c383d62013-03-25 09:48:49 +00001495
1496 break;
1497 }
1498
Chris Lattner2188e402010-01-04 07:37:31 +00001499 case Instruction::Shl: { // (icmp pred (shl X, ShAmt), CI)
Chris Lattner2188e402010-01-04 07:37:31 +00001500 uint32_t TypeBits = RHSV.getBitWidth();
David Majnemerb889e402013-06-28 23:42:03 +00001501 ConstantInt *ShAmt = dyn_cast<ConstantInt>(LHSI->getOperand(1));
1502 if (!ShAmt) {
1503 Value *X;
1504 // (1 << X) pred P2 -> X pred Log2(P2)
1505 if (match(LHSI, m_Shl(m_One(), m_Value(X)))) {
1506 bool RHSVIsPowerOf2 = RHSV.isPowerOf2();
1507 ICmpInst::Predicate Pred = ICI.getPredicate();
1508 if (ICI.isUnsigned()) {
1509 if (!RHSVIsPowerOf2) {
1510 // (1 << X) < 30 -> X <= 4
1511 // (1 << X) <= 30 -> X <= 4
1512 // (1 << X) >= 30 -> X > 4
1513 // (1 << X) > 30 -> X > 4
1514 if (Pred == ICmpInst::ICMP_ULT)
1515 Pred = ICmpInst::ICMP_ULE;
1516 else if (Pred == ICmpInst::ICMP_UGE)
1517 Pred = ICmpInst::ICMP_UGT;
1518 }
1519 unsigned RHSLog2 = RHSV.logBase2();
1520
1521 // (1 << X) >= 2147483648 -> X >= 31 -> X == 31
David Majnemerb889e402013-06-28 23:42:03 +00001522 // (1 << X) < 2147483648 -> X < 31 -> X != 31
1523 if (RHSLog2 == TypeBits-1) {
1524 if (Pred == ICmpInst::ICMP_UGE)
1525 Pred = ICmpInst::ICMP_EQ;
David Majnemerb889e402013-06-28 23:42:03 +00001526 else if (Pred == ICmpInst::ICMP_ULT)
1527 Pred = ICmpInst::ICMP_NE;
1528 }
1529
1530 return new ICmpInst(Pred, X,
1531 ConstantInt::get(RHS->getType(), RHSLog2));
1532 } else if (ICI.isSigned()) {
1533 if (RHSV.isAllOnesValue()) {
1534 // (1 << X) <= -1 -> X == 31
1535 if (Pred == ICmpInst::ICMP_SLE)
1536 return new ICmpInst(ICmpInst::ICMP_EQ, X,
1537 ConstantInt::get(RHS->getType(), TypeBits-1));
1538
1539 // (1 << X) > -1 -> X != 31
1540 if (Pred == ICmpInst::ICMP_SGT)
1541 return new ICmpInst(ICmpInst::ICMP_NE, X,
1542 ConstantInt::get(RHS->getType(), TypeBits-1));
1543 } else if (!RHSV) {
1544 // (1 << X) < 0 -> X == 31
1545 // (1 << X) <= 0 -> X == 31
1546 if (Pred == ICmpInst::ICMP_SLT || Pred == ICmpInst::ICMP_SLE)
1547 return new ICmpInst(ICmpInst::ICMP_EQ, X,
1548 ConstantInt::get(RHS->getType(), TypeBits-1));
1549
1550 // (1 << X) >= 0 -> X != 31
1551 // (1 << X) > 0 -> X != 31
1552 if (Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_SGE)
1553 return new ICmpInst(ICmpInst::ICMP_NE, X,
1554 ConstantInt::get(RHS->getType(), TypeBits-1));
1555 }
1556 } else if (ICI.isEquality()) {
1557 if (RHSVIsPowerOf2)
1558 return new ICmpInst(
1559 Pred, X, ConstantInt::get(RHS->getType(), RHSV.logBase2()));
David Majnemerb889e402013-06-28 23:42:03 +00001560 }
1561 }
1562 break;
1563 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00001564
Chris Lattner2188e402010-01-04 07:37:31 +00001565 // Check that the shift amount is in range. If not, don't perform
1566 // undefined shifts. When the shift is visited it will be
1567 // simplified.
1568 if (ShAmt->uge(TypeBits))
1569 break;
Jim Grosbach129c52a2011-09-30 18:09:53 +00001570
Chris Lattner2188e402010-01-04 07:37:31 +00001571 if (ICI.isEquality()) {
1572 // If we are comparing against bits always shifted out, the
1573 // comparison cannot succeed.
1574 Constant *Comp =
1575 ConstantExpr::getShl(ConstantExpr::getLShr(RHS, ShAmt),
1576 ShAmt);
1577 if (Comp != RHS) {// Comparing against a bit that we know is zero.
1578 bool IsICMP_NE = ICI.getPredicate() == ICmpInst::ICMP_NE;
Jakub Staszakbddea112013-06-06 20:18:46 +00001579 Constant *Cst = Builder->getInt1(IsICMP_NE);
Chris Lattner2188e402010-01-04 07:37:31 +00001580 return ReplaceInstUsesWith(ICI, Cst);
1581 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00001582
Chris Lattner98457102011-02-10 05:23:05 +00001583 // If the shift is NUW, then it is just shifting out zeros, no need for an
1584 // AND.
1585 if (cast<BinaryOperator>(LHSI)->hasNoUnsignedWrap())
1586 return new ICmpInst(ICI.getPredicate(), LHSI->getOperand(0),
1587 ConstantExpr::getLShr(RHS, ShAmt));
Jim Grosbach129c52a2011-09-30 18:09:53 +00001588
Arnaud A. de Grandmaison9c383d62013-03-25 09:48:49 +00001589 // If the shift is NSW and we compare to 0, then it is just shifting out
1590 // sign bits, no need for an AND either.
1591 if (cast<BinaryOperator>(LHSI)->hasNoSignedWrap() && RHSV == 0)
1592 return new ICmpInst(ICI.getPredicate(), LHSI->getOperand(0),
1593 ConstantExpr::getLShr(RHS, ShAmt));
1594
Chris Lattner2188e402010-01-04 07:37:31 +00001595 if (LHSI->hasOneUse()) {
1596 // Otherwise strength reduce the shift into an and.
1597 uint32_t ShAmtVal = (uint32_t)ShAmt->getLimitedValue(TypeBits);
Jakub Staszakbddea112013-06-06 20:18:46 +00001598 Constant *Mask = Builder->getInt(APInt::getLowBitsSet(TypeBits,
1599 TypeBits - ShAmtVal));
Jim Grosbach129c52a2011-09-30 18:09:53 +00001600
Chris Lattner2188e402010-01-04 07:37:31 +00001601 Value *And =
1602 Builder->CreateAnd(LHSI->getOperand(0),Mask, LHSI->getName()+".mask");
1603 return new ICmpInst(ICI.getPredicate(), And,
Chris Lattner98457102011-02-10 05:23:05 +00001604 ConstantExpr::getLShr(RHS, ShAmt));
Chris Lattner2188e402010-01-04 07:37:31 +00001605 }
1606 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00001607
Arnaud A. de Grandmaison9c383d62013-03-25 09:48:49 +00001608 // If this is a signed comparison to 0 and the shift is sign preserving,
1609 // use the shift LHS operand instead.
1610 ICmpInst::Predicate pred = ICI.getPredicate();
1611 if (isSignTest(pred, RHS) &&
1612 cast<BinaryOperator>(LHSI)->hasNoSignedWrap())
1613 return new ICmpInst(pred,
1614 LHSI->getOperand(0),
1615 Constant::getNullValue(RHS->getType()));
1616
Chris Lattner2188e402010-01-04 07:37:31 +00001617 // Otherwise, if this is a comparison of the sign bit, simplify to and/test.
1618 bool TrueIfSigned = false;
1619 if (LHSI->hasOneUse() &&
1620 isSignBitCheck(ICI.getPredicate(), RHS, TrueIfSigned)) {
1621 // (X << 31) <s 0 --> (X&1) != 0
Chris Lattner43273af2011-02-13 08:07:21 +00001622 Constant *Mask = ConstantInt::get(LHSI->getOperand(0)->getType(),
Jim Grosbach129c52a2011-09-30 18:09:53 +00001623 APInt::getOneBitSet(TypeBits,
Chris Lattner43273af2011-02-13 08:07:21 +00001624 TypeBits-ShAmt->getZExtValue()-1));
Chris Lattner2188e402010-01-04 07:37:31 +00001625 Value *And =
1626 Builder->CreateAnd(LHSI->getOperand(0), Mask, LHSI->getName()+".mask");
1627 return new ICmpInst(TrueIfSigned ? ICmpInst::ICMP_NE : ICmpInst::ICMP_EQ,
1628 And, Constant::getNullValue(And->getType()));
1629 }
Arnaud A. de Grandmaison61c167c2013-02-15 14:35:47 +00001630
1631 // Transform (icmp pred iM (shl iM %v, N), CI)
Arnaud A. de Grandmaison71533052013-03-13 14:40:37 +00001632 // -> (icmp pred i(M-N) (trunc %v iM to i(M-N)), (trunc (CI>>N))
1633 // Transform the shl to a trunc if (trunc (CI>>N)) has no loss and M-N.
Arnaud A. de Grandmaison61c167c2013-02-15 14:35:47 +00001634 // This enables to get rid of the shift in favor of a trunc which can be
1635 // free on the target. It has the additional benefit of comparing to a
1636 // smaller constant, which will be target friendly.
1637 unsigned Amt = ShAmt->getLimitedValue(TypeBits-1);
Arnaud A. de Grandmaison71533052013-03-13 14:40:37 +00001638 if (LHSI->hasOneUse() &&
1639 Amt != 0 && RHSV.countTrailingZeros() >= Amt) {
Arnaud A. de Grandmaison61c167c2013-02-15 14:35:47 +00001640 Type *NTy = IntegerType::get(ICI.getContext(), TypeBits - Amt);
1641 Constant *NCI = ConstantExpr::getTrunc(
1642 ConstantExpr::getAShr(RHS,
1643 ConstantInt::get(RHS->getType(), Amt)),
1644 NTy);
1645 return new ICmpInst(ICI.getPredicate(),
1646 Builder->CreateTrunc(LHSI->getOperand(0), NTy),
Arnaud A. de Grandmaison1fd843e2013-02-15 15:18:17 +00001647 NCI);
Arnaud A. de Grandmaison61c167c2013-02-15 14:35:47 +00001648 }
1649
Chris Lattner2188e402010-01-04 07:37:31 +00001650 break;
1651 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00001652
Chris Lattner2188e402010-01-04 07:37:31 +00001653 case Instruction::LShr: // (icmp pred (shr X, ShAmt), CI)
Nick Lewycky174a7052011-02-28 08:31:40 +00001654 case Instruction::AShr: {
1655 // Handle equality comparisons of shift-by-constant.
1656 BinaryOperator *BO = cast<BinaryOperator>(LHSI);
1657 if (ConstantInt *ShAmt = dyn_cast<ConstantInt>(LHSI->getOperand(1))) {
1658 if (Instruction *Res = FoldICmpShrCst(ICI, BO, ShAmt))
Chris Lattnerd369f572011-02-13 07:43:07 +00001659 return Res;
Nick Lewycky174a7052011-02-28 08:31:40 +00001660 }
1661
1662 // Handle exact shr's.
1663 if (ICI.isEquality() && BO->isExact() && BO->hasOneUse()) {
1664 if (RHSV.isMinValue())
1665 return new ICmpInst(ICI.getPredicate(), BO->getOperand(0), RHS);
1666 }
Chris Lattner2188e402010-01-04 07:37:31 +00001667 break;
Nick Lewycky174a7052011-02-28 08:31:40 +00001668 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00001669
Chris Lattner2188e402010-01-04 07:37:31 +00001670 case Instruction::SDiv:
1671 case Instruction::UDiv:
1672 // Fold: icmp pred ([us]div X, C1), C2 -> range test
Jim Grosbach129c52a2011-09-30 18:09:53 +00001673 // Fold this div into the comparison, producing a range check.
1674 // Determine, based on the divide type, what the range is being
1675 // checked. If there is an overflow on the low or high side, remember
Chris Lattner2188e402010-01-04 07:37:31 +00001676 // it, otherwise compute the range [low, hi) bounding the new value.
1677 // See: InsertRangeTest above for the kinds of replacements possible.
1678 if (ConstantInt *DivRHS = dyn_cast<ConstantInt>(LHSI->getOperand(1)))
1679 if (Instruction *R = FoldICmpDivCst(ICI, cast<BinaryOperator>(LHSI),
1680 DivRHS))
1681 return R;
1682 break;
1683
David Majnemerf2a9a512013-07-09 07:50:59 +00001684 case Instruction::Sub: {
1685 ConstantInt *LHSC = dyn_cast<ConstantInt>(LHSI->getOperand(0));
1686 if (!LHSC) break;
1687 const APInt &LHSV = LHSC->getValue();
1688
1689 // C1-X <u C2 -> (X|(C2-1)) == C1
1690 // iff C1 & (C2-1) == C2-1
1691 // C2 is a power of 2
1692 if (ICI.getPredicate() == ICmpInst::ICMP_ULT && LHSI->hasOneUse() &&
1693 RHSV.isPowerOf2() && (LHSV & (RHSV - 1)) == (RHSV - 1))
1694 return new ICmpInst(ICmpInst::ICMP_EQ,
1695 Builder->CreateOr(LHSI->getOperand(1), RHSV - 1),
1696 LHSC);
1697
David Majnemereeed73b2013-07-09 09:24:35 +00001698 // C1-X >u C2 -> (X|C2) != C1
David Majnemerf2a9a512013-07-09 07:50:59 +00001699 // iff C1 & C2 == C2
1700 // C2+1 is a power of 2
1701 if (ICI.getPredicate() == ICmpInst::ICMP_UGT && LHSI->hasOneUse() &&
1702 (RHSV + 1).isPowerOf2() && (LHSV & RHSV) == RHSV)
1703 return new ICmpInst(ICmpInst::ICMP_NE,
1704 Builder->CreateOr(LHSI->getOperand(1), RHSV), LHSC);
1705 break;
1706 }
1707
Chris Lattner2188e402010-01-04 07:37:31 +00001708 case Instruction::Add:
1709 // Fold: icmp pred (add X, C1), C2
1710 if (!ICI.isEquality()) {
1711 ConstantInt *LHSC = dyn_cast<ConstantInt>(LHSI->getOperand(1));
1712 if (!LHSC) break;
1713 const APInt &LHSV = LHSC->getValue();
1714
1715 ConstantRange CR = ICI.makeConstantRange(ICI.getPredicate(), RHSV)
1716 .subtract(LHSV);
1717
1718 if (ICI.isSigned()) {
1719 if (CR.getLower().isSignBit()) {
1720 return new ICmpInst(ICmpInst::ICMP_SLT, LHSI->getOperand(0),
Jakub Staszakbddea112013-06-06 20:18:46 +00001721 Builder->getInt(CR.getUpper()));
Chris Lattner2188e402010-01-04 07:37:31 +00001722 } else if (CR.getUpper().isSignBit()) {
1723 return new ICmpInst(ICmpInst::ICMP_SGE, LHSI->getOperand(0),
Jakub Staszakbddea112013-06-06 20:18:46 +00001724 Builder->getInt(CR.getLower()));
Chris Lattner2188e402010-01-04 07:37:31 +00001725 }
1726 } else {
1727 if (CR.getLower().isMinValue()) {
1728 return new ICmpInst(ICmpInst::ICMP_ULT, LHSI->getOperand(0),
Jakub Staszakbddea112013-06-06 20:18:46 +00001729 Builder->getInt(CR.getUpper()));
Chris Lattner2188e402010-01-04 07:37:31 +00001730 } else if (CR.getUpper().isMinValue()) {
1731 return new ICmpInst(ICmpInst::ICMP_UGE, LHSI->getOperand(0),
Jakub Staszakbddea112013-06-06 20:18:46 +00001732 Builder->getInt(CR.getLower()));
Chris Lattner2188e402010-01-04 07:37:31 +00001733 }
1734 }
David Majnemerfa90a0b2013-07-08 11:53:08 +00001735
David Majnemerbafa5372013-07-09 07:58:32 +00001736 // X-C1 <u C2 -> (X & -C2) == C1
1737 // iff C1 & (C2-1) == 0
1738 // C2 is a power of 2
David Majnemerfa90a0b2013-07-08 11:53:08 +00001739 if (ICI.getPredicate() == ICmpInst::ICMP_ULT && LHSI->hasOneUse() &&
David Majnemerbafa5372013-07-09 07:58:32 +00001740 RHSV.isPowerOf2() && (LHSV & (RHSV - 1)) == 0)
David Majnemerfa90a0b2013-07-08 11:53:08 +00001741 return new ICmpInst(ICmpInst::ICMP_EQ,
1742 Builder->CreateAnd(LHSI->getOperand(0), -RHSV),
1743 ConstantExpr::getNeg(LHSC));
David Majnemerbafa5372013-07-09 07:58:32 +00001744
David Majnemereeed73b2013-07-09 09:24:35 +00001745 // X-C1 >u C2 -> (X & ~C2) != C1
David Majnemerbafa5372013-07-09 07:58:32 +00001746 // iff C1 & C2 == 0
1747 // C2+1 is a power of 2
1748 if (ICI.getPredicate() == ICmpInst::ICMP_UGT && LHSI->hasOneUse() &&
1749 (RHSV + 1).isPowerOf2() && (LHSV & RHSV) == 0)
1750 return new ICmpInst(ICmpInst::ICMP_NE,
1751 Builder->CreateAnd(LHSI->getOperand(0), ~RHSV),
1752 ConstantExpr::getNeg(LHSC));
Chris Lattner2188e402010-01-04 07:37:31 +00001753 }
1754 break;
1755 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00001756
Chris Lattner2188e402010-01-04 07:37:31 +00001757 // Simplify icmp_eq and icmp_ne instructions with integer constant RHS.
1758 if (ICI.isEquality()) {
1759 bool isICMP_NE = ICI.getPredicate() == ICmpInst::ICMP_NE;
Jim Grosbach129c52a2011-09-30 18:09:53 +00001760
1761 // If the first operand is (add|sub|and|or|xor|rem) with a constant, and
Chris Lattner2188e402010-01-04 07:37:31 +00001762 // the second operand is a constant, simplify a bit.
1763 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(LHSI)) {
1764 switch (BO->getOpcode()) {
1765 case Instruction::SRem:
1766 // If we have a signed (X % (2^c)) == 0, turn it into an unsigned one.
1767 if (RHSV == 0 && isa<ConstantInt>(BO->getOperand(1)) &&BO->hasOneUse()){
1768 const APInt &V = cast<ConstantInt>(BO->getOperand(1))->getValue();
Dan Gohman4ce1fb12010-04-08 23:03:40 +00001769 if (V.sgt(1) && V.isPowerOf2()) {
Chris Lattner2188e402010-01-04 07:37:31 +00001770 Value *NewRem =
1771 Builder->CreateURem(BO->getOperand(0), BO->getOperand(1),
1772 BO->getName());
1773 return new ICmpInst(ICI.getPredicate(), NewRem,
1774 Constant::getNullValue(BO->getType()));
1775 }
1776 }
1777 break;
1778 case Instruction::Add:
1779 // Replace ((add A, B) != C) with (A != C-B) if B & C are constants.
1780 if (ConstantInt *BOp1C = dyn_cast<ConstantInt>(BO->getOperand(1))) {
1781 if (BO->hasOneUse())
1782 return new ICmpInst(ICI.getPredicate(), BO->getOperand(0),
1783 ConstantExpr::getSub(RHS, BOp1C));
1784 } else if (RHSV == 0) {
1785 // Replace ((add A, B) != 0) with (A != -B) if A or B is
1786 // efficiently invertible, or if the add has just this one use.
1787 Value *BOp0 = BO->getOperand(0), *BOp1 = BO->getOperand(1);
Jim Grosbach129c52a2011-09-30 18:09:53 +00001788
Chris Lattner2188e402010-01-04 07:37:31 +00001789 if (Value *NegVal = dyn_castNegVal(BOp1))
1790 return new ICmpInst(ICI.getPredicate(), BOp0, NegVal);
Chris Lattner31b106d2011-04-26 20:02:45 +00001791 if (Value *NegVal = dyn_castNegVal(BOp0))
Chris Lattner2188e402010-01-04 07:37:31 +00001792 return new ICmpInst(ICI.getPredicate(), NegVal, BOp1);
Chris Lattner31b106d2011-04-26 20:02:45 +00001793 if (BO->hasOneUse()) {
Chris Lattner2188e402010-01-04 07:37:31 +00001794 Value *Neg = Builder->CreateNeg(BOp1);
1795 Neg->takeName(BO);
1796 return new ICmpInst(ICI.getPredicate(), BOp0, Neg);
1797 }
1798 }
1799 break;
1800 case Instruction::Xor:
1801 // For the xor case, we can xor two constants together, eliminating
1802 // the explicit xor.
Benjamin Kramerc9708492011-06-13 15:24:24 +00001803 if (Constant *BOC = dyn_cast<Constant>(BO->getOperand(1))) {
1804 return new ICmpInst(ICI.getPredicate(), BO->getOperand(0),
Chris Lattner2188e402010-01-04 07:37:31 +00001805 ConstantExpr::getXor(RHS, BOC));
Benjamin Kramerc9708492011-06-13 15:24:24 +00001806 } else if (RHSV == 0) {
1807 // Replace ((xor A, B) != 0) with (A != B)
Chris Lattner2188e402010-01-04 07:37:31 +00001808 return new ICmpInst(ICI.getPredicate(), BO->getOperand(0),
1809 BO->getOperand(1));
Benjamin Kramerc9708492011-06-13 15:24:24 +00001810 }
Chris Lattner2188e402010-01-04 07:37:31 +00001811 break;
Benjamin Kramerc9708492011-06-13 15:24:24 +00001812 case Instruction::Sub:
1813 // Replace ((sub A, B) != C) with (B != A-C) if A & C are constants.
1814 if (ConstantInt *BOp0C = dyn_cast<ConstantInt>(BO->getOperand(0))) {
1815 if (BO->hasOneUse())
1816 return new ICmpInst(ICI.getPredicate(), BO->getOperand(1),
1817 ConstantExpr::getSub(BOp0C, RHS));
1818 } else if (RHSV == 0) {
1819 // Replace ((sub A, B) != 0) with (A != B)
1820 return new ICmpInst(ICI.getPredicate(), BO->getOperand(0),
1821 BO->getOperand(1));
1822 }
1823 break;
Chris Lattner2188e402010-01-04 07:37:31 +00001824 case Instruction::Or:
1825 // If bits are being or'd in that are not present in the constant we
1826 // are comparing against, then the comparison could never succeed!
Eli Friedman0428a612010-07-29 18:03:33 +00001827 if (ConstantInt *BOC = dyn_cast<ConstantInt>(BO->getOperand(1))) {
Chris Lattner2188e402010-01-04 07:37:31 +00001828 Constant *NotCI = ConstantExpr::getNot(RHS);
1829 if (!ConstantExpr::getAnd(BOC, NotCI)->isNullValue())
Jakub Staszakbddea112013-06-06 20:18:46 +00001830 return ReplaceInstUsesWith(ICI, Builder->getInt1(isICMP_NE));
Chris Lattner2188e402010-01-04 07:37:31 +00001831 }
1832 break;
Jim Grosbach129c52a2011-09-30 18:09:53 +00001833
Chris Lattner2188e402010-01-04 07:37:31 +00001834 case Instruction::And:
1835 if (ConstantInt *BOC = dyn_cast<ConstantInt>(BO->getOperand(1))) {
1836 // If bits are being compared against that are and'd out, then the
1837 // comparison can never succeed!
1838 if ((RHSV & ~BOC->getValue()) != 0)
Jakub Staszakbddea112013-06-06 20:18:46 +00001839 return ReplaceInstUsesWith(ICI, Builder->getInt1(isICMP_NE));
Jim Grosbach129c52a2011-09-30 18:09:53 +00001840
Chris Lattner2188e402010-01-04 07:37:31 +00001841 // If we have ((X & C) == C), turn it into ((X & C) != 0).
1842 if (RHS == BOC && RHSV.isPowerOf2())
1843 return new ICmpInst(isICMP_NE ? ICmpInst::ICMP_EQ :
1844 ICmpInst::ICMP_NE, LHSI,
1845 Constant::getNullValue(RHS->getType()));
Benjamin Kramer9eca5fe2011-07-04 20:16:36 +00001846
1847 // Don't perform the following transforms if the AND has multiple uses
1848 if (!BO->hasOneUse())
1849 break;
1850
Chris Lattner2188e402010-01-04 07:37:31 +00001851 // Replace (and X, (1 << size(X)-1) != 0) with x s< 0
1852 if (BOC->getValue().isSignBit()) {
1853 Value *X = BO->getOperand(0);
1854 Constant *Zero = Constant::getNullValue(X->getType());
Jim Grosbach129c52a2011-09-30 18:09:53 +00001855 ICmpInst::Predicate pred = isICMP_NE ?
Chris Lattner2188e402010-01-04 07:37:31 +00001856 ICmpInst::ICMP_SLT : ICmpInst::ICMP_SGE;
1857 return new ICmpInst(pred, X, Zero);
1858 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00001859
Chris Lattner2188e402010-01-04 07:37:31 +00001860 // ((X & ~7) == 0) --> X < 8
1861 if (RHSV == 0 && isHighOnes(BOC)) {
1862 Value *X = BO->getOperand(0);
1863 Constant *NegX = ConstantExpr::getNeg(BOC);
Jim Grosbach129c52a2011-09-30 18:09:53 +00001864 ICmpInst::Predicate pred = isICMP_NE ?
Chris Lattner2188e402010-01-04 07:37:31 +00001865 ICmpInst::ICMP_UGE : ICmpInst::ICMP_ULT;
1866 return new ICmpInst(pred, X, NegX);
1867 }
1868 }
Arnaud A. de Grandmaison9c383d62013-03-25 09:48:49 +00001869 break;
1870 case Instruction::Mul:
Arnaud A. de Grandmaison3ee88e82013-03-25 11:47:38 +00001871 if (RHSV == 0 && BO->hasNoSignedWrap()) {
Arnaud A. de Grandmaison9c383d62013-03-25 09:48:49 +00001872 if (ConstantInt *BOC = dyn_cast<ConstantInt>(BO->getOperand(1))) {
1873 // The trivial case (mul X, 0) is handled by InstSimplify
1874 // General case : (mul X, C) != 0 iff X != 0
1875 // (mul X, C) == 0 iff X == 0
1876 if (!BOC->isZero())
1877 return new ICmpInst(ICI.getPredicate(), BO->getOperand(0),
1878 Constant::getNullValue(RHS->getType()));
1879 }
1880 }
1881 break;
Chris Lattner2188e402010-01-04 07:37:31 +00001882 default: break;
1883 }
1884 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(LHSI)) {
1885 // Handle icmp {eq|ne} <intrinsic>, intcst.
Chris Lattner54f4e392010-01-05 18:09:56 +00001886 switch (II->getIntrinsicID()) {
1887 case Intrinsic::bswap:
Chris Lattner2188e402010-01-04 07:37:31 +00001888 Worklist.Add(II);
Gabor Greif7ccec092010-06-24 16:11:44 +00001889 ICI.setOperand(0, II->getArgOperand(0));
Jakub Staszakbddea112013-06-06 20:18:46 +00001890 ICI.setOperand(1, Builder->getInt(RHSV.byteSwap()));
Chris Lattner2188e402010-01-04 07:37:31 +00001891 return &ICI;
Chris Lattner54f4e392010-01-05 18:09:56 +00001892 case Intrinsic::ctlz:
1893 case Intrinsic::cttz:
1894 // ctz(A) == bitwidth(a) -> A == 0 and likewise for !=
1895 if (RHSV == RHS->getType()->getBitWidth()) {
1896 Worklist.Add(II);
Gabor Greif7ccec092010-06-24 16:11:44 +00001897 ICI.setOperand(0, II->getArgOperand(0));
Chris Lattner54f4e392010-01-05 18:09:56 +00001898 ICI.setOperand(1, ConstantInt::get(RHS->getType(), 0));
1899 return &ICI;
1900 }
1901 break;
1902 case Intrinsic::ctpop:
1903 // popcount(A) == 0 -> A == 0 and likewise for !=
1904 if (RHS->isZero()) {
1905 Worklist.Add(II);
Gabor Greif7ccec092010-06-24 16:11:44 +00001906 ICI.setOperand(0, II->getArgOperand(0));
Chris Lattner54f4e392010-01-05 18:09:56 +00001907 ICI.setOperand(1, RHS);
1908 return &ICI;
1909 }
1910 break;
1911 default:
Duncan Sands41b4a6b2010-07-12 08:16:59 +00001912 break;
Chris Lattner2188e402010-01-04 07:37:31 +00001913 }
1914 }
1915 }
Craig Topperf40110f2014-04-25 05:29:35 +00001916 return nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +00001917}
1918
1919/// visitICmpInstWithCastAndCast - Handle icmp (cast x to y), (cast/cst).
1920/// We only handle extending casts so far.
1921///
1922Instruction *InstCombiner::visitICmpInstWithCastAndCast(ICmpInst &ICI) {
1923 const CastInst *LHSCI = cast<CastInst>(ICI.getOperand(0));
1924 Value *LHSCIOp = LHSCI->getOperand(0);
Chris Lattner229907c2011-07-18 04:54:35 +00001925 Type *SrcTy = LHSCIOp->getType();
1926 Type *DestTy = LHSCI->getType();
Chris Lattner2188e402010-01-04 07:37:31 +00001927 Value *RHSCIOp;
1928
Jim Grosbach129c52a2011-09-30 18:09:53 +00001929 // Turn icmp (ptrtoint x), (ptrtoint/c) into a compare of the input if the
Chris Lattner2188e402010-01-04 07:37:31 +00001930 // integer type is the same size as the pointer type.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001931 if (DL && LHSCI->getOpcode() == Instruction::PtrToInt &&
1932 DL->getPointerTypeSizeInBits(SrcTy) == DestTy->getIntegerBitWidth()) {
Craig Topperf40110f2014-04-25 05:29:35 +00001933 Value *RHSOp = nullptr;
Michael Liaod266b922015-02-13 04:51:26 +00001934 if (PtrToIntOperator *RHSC = dyn_cast<PtrToIntOperator>(ICI.getOperand(1))) {
1935 Value *RHSCIOp = RHSC->getOperand(0);
1936 if (RHSCIOp->getType()->getPointerAddressSpace() ==
1937 LHSCIOp->getType()->getPointerAddressSpace()) {
1938 RHSOp = RHSC->getOperand(0);
1939 // If the pointer types don't match, insert a bitcast.
1940 if (LHSCIOp->getType() != RHSOp->getType())
1941 RHSOp = Builder->CreateBitCast(RHSOp, LHSCIOp->getType());
1942 }
1943 } else if (Constant *RHSC = dyn_cast<Constant>(ICI.getOperand(1)))
Chris Lattner2188e402010-01-04 07:37:31 +00001944 RHSOp = ConstantExpr::getIntToPtr(RHSC, SrcTy);
Chris Lattner2188e402010-01-04 07:37:31 +00001945
1946 if (RHSOp)
1947 return new ICmpInst(ICI.getPredicate(), LHSCIOp, RHSOp);
1948 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00001949
Chris Lattner2188e402010-01-04 07:37:31 +00001950 // The code below only handles extension cast instructions, so far.
1951 // Enforce this.
1952 if (LHSCI->getOpcode() != Instruction::ZExt &&
1953 LHSCI->getOpcode() != Instruction::SExt)
Craig Topperf40110f2014-04-25 05:29:35 +00001954 return nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +00001955
1956 bool isSignedExt = LHSCI->getOpcode() == Instruction::SExt;
1957 bool isSignedCmp = ICI.isSigned();
1958
1959 if (CastInst *CI = dyn_cast<CastInst>(ICI.getOperand(1))) {
1960 // Not an extension from the same type?
1961 RHSCIOp = CI->getOperand(0);
Jim Grosbach129c52a2011-09-30 18:09:53 +00001962 if (RHSCIOp->getType() != LHSCIOp->getType())
Craig Topperf40110f2014-04-25 05:29:35 +00001963 return nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +00001964
Chris Lattner2188e402010-01-04 07:37:31 +00001965 // If the signedness of the two casts doesn't agree (i.e. one is a sext
1966 // and the other is a zext), then we can't handle this.
1967 if (CI->getOpcode() != LHSCI->getOpcode())
Craig Topperf40110f2014-04-25 05:29:35 +00001968 return nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +00001969
1970 // Deal with equality cases early.
1971 if (ICI.isEquality())
1972 return new ICmpInst(ICI.getPredicate(), LHSCIOp, RHSCIOp);
1973
1974 // A signed comparison of sign extended values simplifies into a
1975 // signed comparison.
1976 if (isSignedCmp && isSignedExt)
1977 return new ICmpInst(ICI.getPredicate(), LHSCIOp, RHSCIOp);
1978
1979 // The other three cases all fold into an unsigned comparison.
1980 return new ICmpInst(ICI.getUnsignedPredicate(), LHSCIOp, RHSCIOp);
1981 }
1982
1983 // If we aren't dealing with a constant on the RHS, exit early
1984 ConstantInt *CI = dyn_cast<ConstantInt>(ICI.getOperand(1));
1985 if (!CI)
Craig Topperf40110f2014-04-25 05:29:35 +00001986 return nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +00001987
1988 // Compute the constant that would happen if we truncated to SrcTy then
1989 // reextended to DestTy.
1990 Constant *Res1 = ConstantExpr::getTrunc(CI, SrcTy);
1991 Constant *Res2 = ConstantExpr::getCast(LHSCI->getOpcode(),
1992 Res1, DestTy);
1993
1994 // If the re-extended constant didn't change...
1995 if (Res2 == CI) {
1996 // Deal with equality cases early.
1997 if (ICI.isEquality())
1998 return new ICmpInst(ICI.getPredicate(), LHSCIOp, Res1);
1999
2000 // A signed comparison of sign extended values simplifies into a
2001 // signed comparison.
2002 if (isSignedExt && isSignedCmp)
2003 return new ICmpInst(ICI.getPredicate(), LHSCIOp, Res1);
2004
2005 // The other three cases all fold into an unsigned comparison.
2006 return new ICmpInst(ICI.getUnsignedPredicate(), LHSCIOp, Res1);
2007 }
2008
Jim Grosbach129c52a2011-09-30 18:09:53 +00002009 // The re-extended constant changed so the constant cannot be represented
Chris Lattner2188e402010-01-04 07:37:31 +00002010 // in the shorter type. Consequently, we cannot emit a simple comparison.
Duncan Sands8fb2c382011-01-20 13:21:55 +00002011 // All the cases that fold to true or false will have already been handled
2012 // by SimplifyICmpInst, so only deal with the tricky case.
Chris Lattner2188e402010-01-04 07:37:31 +00002013
Duncan Sands8fb2c382011-01-20 13:21:55 +00002014 if (isSignedCmp || !isSignedExt)
Craig Topperf40110f2014-04-25 05:29:35 +00002015 return nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +00002016
2017 // Evaluate the comparison for LT (we invert for GT below). LE and GE cases
2018 // should have been folded away previously and not enter in here.
Duncan Sands8fb2c382011-01-20 13:21:55 +00002019
2020 // We're performing an unsigned comp with a sign extended value.
2021 // This is true if the input is >= 0. [aka >s -1]
2022 Constant *NegOne = Constant::getAllOnesValue(SrcTy);
2023 Value *Result = Builder->CreateICmpSGT(LHSCIOp, NegOne, ICI.getName());
Chris Lattner2188e402010-01-04 07:37:31 +00002024
2025 // Finally, return the value computed.
Duncan Sands8fb2c382011-01-20 13:21:55 +00002026 if (ICI.getPredicate() == ICmpInst::ICMP_ULT)
Chris Lattner2188e402010-01-04 07:37:31 +00002027 return ReplaceInstUsesWith(ICI, Result);
2028
Duncan Sands8fb2c382011-01-20 13:21:55 +00002029 assert(ICI.getPredicate() == ICmpInst::ICMP_UGT && "ICmp should be folded!");
Chris Lattner2188e402010-01-04 07:37:31 +00002030 return BinaryOperator::CreateNot(Result);
2031}
2032
Chris Lattneree61c1d2010-12-19 17:52:50 +00002033/// ProcessUGT_ADDCST_ADD - The caller has matched a pattern of the form:
2034/// I = icmp ugt (add (add A, B), CI2), CI1
Chris Lattnerc56c8452010-12-19 18:22:06 +00002035/// If this is of the form:
2036/// sum = a + b
2037/// if (sum+128 >u 255)
2038/// Then replace it with llvm.sadd.with.overflow.i8.
2039///
Chris Lattneree61c1d2010-12-19 17:52:50 +00002040static Instruction *ProcessUGT_ADDCST_ADD(ICmpInst &I, Value *A, Value *B,
2041 ConstantInt *CI2, ConstantInt *CI1,
Chris Lattnerce2995a2010-12-19 18:38:44 +00002042 InstCombiner &IC) {
Chris Lattnerf29562d2010-12-19 17:59:02 +00002043 // The transformation we're trying to do here is to transform this into an
2044 // llvm.sadd.with.overflow. To do this, we have to replace the original add
2045 // with a narrower add, and discard the add-with-constant that is part of the
2046 // range check (if we can't eliminate it, this isn't profitable).
Jim Grosbach129c52a2011-09-30 18:09:53 +00002047
Chris Lattnerf29562d2010-12-19 17:59:02 +00002048 // In order to eliminate the add-with-constant, the compare can be its only
2049 // use.
Chris Lattnerc56c8452010-12-19 18:22:06 +00002050 Instruction *AddWithCst = cast<Instruction>(I.getOperand(0));
Craig Topperf40110f2014-04-25 05:29:35 +00002051 if (!AddWithCst->hasOneUse()) return nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +00002052
Chris Lattnerc56c8452010-12-19 18:22:06 +00002053 // If CI2 is 2^7, 2^15, 2^31, then it might be an sadd.with.overflow.
Craig Topperf40110f2014-04-25 05:29:35 +00002054 if (!CI2->getValue().isPowerOf2()) return nullptr;
Chris Lattnerc56c8452010-12-19 18:22:06 +00002055 unsigned NewWidth = CI2->getValue().countTrailingZeros();
Craig Topperf40110f2014-04-25 05:29:35 +00002056 if (NewWidth != 7 && NewWidth != 15 && NewWidth != 31) return nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +00002057
Chris Lattnerc56c8452010-12-19 18:22:06 +00002058 // The width of the new add formed is 1 more than the bias.
2059 ++NewWidth;
Jim Grosbach129c52a2011-09-30 18:09:53 +00002060
Chris Lattnerc56c8452010-12-19 18:22:06 +00002061 // Check to see that CI1 is an all-ones value with NewWidth bits.
2062 if (CI1->getBitWidth() == NewWidth ||
2063 CI1->getValue() != APInt::getLowBitsSet(CI1->getBitWidth(), NewWidth))
Craig Topperf40110f2014-04-25 05:29:35 +00002064 return nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +00002065
Eli Friedmanb3f9b062011-11-28 23:32:19 +00002066 // This is only really a signed overflow check if the inputs have been
2067 // sign-extended; check for that condition. For example, if CI2 is 2^31 and
2068 // the operands of the add are 64 bits wide, we need at least 33 sign bits.
2069 unsigned NeededSignBits = CI1->getBitWidth() - NewWidth + 1;
Hal Finkel60db0582014-09-07 18:57:58 +00002070 if (IC.ComputeNumSignBits(A, 0, &I) < NeededSignBits ||
2071 IC.ComputeNumSignBits(B, 0, &I) < NeededSignBits)
Craig Topperf40110f2014-04-25 05:29:35 +00002072 return nullptr;
Eli Friedmanb3f9b062011-11-28 23:32:19 +00002073
Jim Grosbach129c52a2011-09-30 18:09:53 +00002074 // In order to replace the original add with a narrower
Chris Lattnerc56c8452010-12-19 18:22:06 +00002075 // llvm.sadd.with.overflow, the only uses allowed are the add-with-constant
2076 // and truncates that discard the high bits of the add. Verify that this is
2077 // the case.
2078 Instruction *OrigAdd = cast<Instruction>(AddWithCst->getOperand(0));
Chandler Carruthcdf47882014-03-09 03:16:01 +00002079 for (User *U : OrigAdd->users()) {
2080 if (U == AddWithCst) continue;
Jim Grosbach129c52a2011-09-30 18:09:53 +00002081
Chris Lattnerc56c8452010-12-19 18:22:06 +00002082 // Only accept truncates for now. We would really like a nice recursive
2083 // predicate like SimplifyDemandedBits, but which goes downwards the use-def
2084 // chain to see which bits of a value are actually demanded. If the
2085 // original add had another add which was then immediately truncated, we
2086 // could still do the transformation.
Chandler Carruthcdf47882014-03-09 03:16:01 +00002087 TruncInst *TI = dyn_cast<TruncInst>(U);
Craig Topperf40110f2014-04-25 05:29:35 +00002088 if (!TI || TI->getType()->getPrimitiveSizeInBits() > NewWidth)
2089 return nullptr;
Chris Lattnerc56c8452010-12-19 18:22:06 +00002090 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00002091
Chris Lattneree61c1d2010-12-19 17:52:50 +00002092 // If the pattern matches, truncate the inputs to the narrower type and
2093 // use the sadd_with_overflow intrinsic to efficiently compute both the
2094 // result and the overflow bit.
Chris Lattner79874562010-12-19 18:35:09 +00002095 Module *M = I.getParent()->getParent()->getParent();
Jim Grosbach129c52a2011-09-30 18:09:53 +00002096
Jay Foadb804a2b2011-07-12 14:06:48 +00002097 Type *NewType = IntegerType::get(OrigAdd->getContext(), NewWidth);
Chris Lattner79874562010-12-19 18:35:09 +00002098 Value *F = Intrinsic::getDeclaration(M, Intrinsic::sadd_with_overflow,
Benjamin Kramere6e19332011-07-14 17:45:39 +00002099 NewType);
Chris Lattner79874562010-12-19 18:35:09 +00002100
Chris Lattnerce2995a2010-12-19 18:38:44 +00002101 InstCombiner::BuilderTy *Builder = IC.Builder;
Jim Grosbach129c52a2011-09-30 18:09:53 +00002102
Chris Lattner79874562010-12-19 18:35:09 +00002103 // Put the new code above the original add, in case there are any uses of the
2104 // add between the add and the compare.
Chris Lattner5e0c0c72010-12-19 19:37:52 +00002105 Builder->SetInsertPoint(OrigAdd);
Jim Grosbach129c52a2011-09-30 18:09:53 +00002106
Chris Lattner79874562010-12-19 18:35:09 +00002107 Value *TruncA = Builder->CreateTrunc(A, NewType, A->getName()+".trunc");
2108 Value *TruncB = Builder->CreateTrunc(B, NewType, B->getName()+".trunc");
2109 CallInst *Call = Builder->CreateCall2(F, TruncA, TruncB, "sadd");
2110 Value *Add = Builder->CreateExtractValue(Call, 0, "sadd.result");
2111 Value *ZExt = Builder->CreateZExt(Add, OrigAdd->getType());
Jim Grosbach129c52a2011-09-30 18:09:53 +00002112
Chris Lattneree61c1d2010-12-19 17:52:50 +00002113 // The inner add was the result of the narrow add, zero extended to the
2114 // wider type. Replace it with the result computed by the intrinsic.
Chris Lattnerce2995a2010-12-19 18:38:44 +00002115 IC.ReplaceInstUsesWith(*OrigAdd, ZExt);
Jim Grosbach129c52a2011-09-30 18:09:53 +00002116
Chris Lattner79874562010-12-19 18:35:09 +00002117 // The original icmp gets replaced with the overflow value.
2118 return ExtractValueInst::Create(Call, 1, "sadd.overflow");
Chris Lattneree61c1d2010-12-19 17:52:50 +00002119}
Chris Lattner2188e402010-01-04 07:37:31 +00002120
Chris Lattner5e0c0c72010-12-19 19:37:52 +00002121static Instruction *ProcessUAddIdiom(Instruction &I, Value *OrigAddV,
2122 InstCombiner &IC) {
2123 // Don't bother doing this transformation for pointers, don't do it for
2124 // vectors.
Craig Topperf40110f2014-04-25 05:29:35 +00002125 if (!isa<IntegerType>(OrigAddV->getType())) return nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +00002126
Chris Lattner5e0c0c72010-12-19 19:37:52 +00002127 // If the add is a constant expr, then we don't bother transforming it.
2128 Instruction *OrigAdd = dyn_cast<Instruction>(OrigAddV);
Craig Topperf40110f2014-04-25 05:29:35 +00002129 if (!OrigAdd) return nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +00002130
Chris Lattner5e0c0c72010-12-19 19:37:52 +00002131 Value *LHS = OrigAdd->getOperand(0), *RHS = OrigAdd->getOperand(1);
Jim Grosbach129c52a2011-09-30 18:09:53 +00002132
Chris Lattner5e0c0c72010-12-19 19:37:52 +00002133 // Put the new code above the original add, in case there are any uses of the
2134 // add between the add and the compare.
2135 InstCombiner::BuilderTy *Builder = IC.Builder;
2136 Builder->SetInsertPoint(OrigAdd);
2137
2138 Module *M = I.getParent()->getParent()->getParent();
Jay Foadb804a2b2011-07-12 14:06:48 +00002139 Type *Ty = LHS->getType();
Benjamin Kramere6e19332011-07-14 17:45:39 +00002140 Value *F = Intrinsic::getDeclaration(M, Intrinsic::uadd_with_overflow, Ty);
Chris Lattner5e0c0c72010-12-19 19:37:52 +00002141 CallInst *Call = Builder->CreateCall2(F, LHS, RHS, "uadd");
2142 Value *Add = Builder->CreateExtractValue(Call, 0);
2143
2144 IC.ReplaceInstUsesWith(*OrigAdd, Add);
2145
2146 // The original icmp gets replaced with the overflow value.
2147 return ExtractValueInst::Create(Call, 1, "uadd.overflow");
2148}
2149
Serge Pavlov4bb54d52014-04-13 18:23:41 +00002150/// \brief Recognize and process idiom involving test for multiplication
2151/// overflow.
2152///
2153/// The caller has matched a pattern of the form:
2154/// I = cmp u (mul(zext A, zext B), V
2155/// The function checks if this is a test for overflow and if so replaces
2156/// multiplication with call to 'mul.with.overflow' intrinsic.
2157///
2158/// \param I Compare instruction.
2159/// \param MulVal Result of 'mult' instruction. It is one of the arguments of
2160/// the compare instruction. Must be of integer type.
2161/// \param OtherVal The other argument of compare instruction.
2162/// \returns Instruction which must replace the compare instruction, NULL if no
2163/// replacement required.
2164static Instruction *ProcessUMulZExtIdiom(ICmpInst &I, Value *MulVal,
2165 Value *OtherVal, InstCombiner &IC) {
Benjamin Kramerc96a7f82014-06-24 10:47:52 +00002166 // Don't bother doing this transformation for pointers, don't do it for
2167 // vectors.
2168 if (!isa<IntegerType>(MulVal->getType()))
2169 return nullptr;
2170
Serge Pavlov4bb54d52014-04-13 18:23:41 +00002171 assert(I.getOperand(0) == MulVal || I.getOperand(1) == MulVal);
2172 assert(I.getOperand(0) == OtherVal || I.getOperand(1) == OtherVal);
Serge Pavlov4bb54d52014-04-13 18:23:41 +00002173 Instruction *MulInstr = cast<Instruction>(MulVal);
2174 assert(MulInstr->getOpcode() == Instruction::Mul);
2175
David Majnemer634ca232014-11-01 23:46:05 +00002176 auto *LHS = cast<ZExtOperator>(MulInstr->getOperand(0)),
2177 *RHS = cast<ZExtOperator>(MulInstr->getOperand(1));
Serge Pavlov4bb54d52014-04-13 18:23:41 +00002178 assert(LHS->getOpcode() == Instruction::ZExt);
2179 assert(RHS->getOpcode() == Instruction::ZExt);
2180 Value *A = LHS->getOperand(0), *B = RHS->getOperand(0);
2181
2182 // Calculate type and width of the result produced by mul.with.overflow.
2183 Type *TyA = A->getType(), *TyB = B->getType();
2184 unsigned WidthA = TyA->getPrimitiveSizeInBits(),
2185 WidthB = TyB->getPrimitiveSizeInBits();
2186 unsigned MulWidth;
2187 Type *MulType;
2188 if (WidthB > WidthA) {
2189 MulWidth = WidthB;
2190 MulType = TyB;
2191 } else {
2192 MulWidth = WidthA;
2193 MulType = TyA;
2194 }
2195
2196 // In order to replace the original mul with a narrower mul.with.overflow,
2197 // all uses must ignore upper bits of the product. The number of used low
2198 // bits must be not greater than the width of mul.with.overflow.
2199 if (MulVal->hasNUsesOrMore(2))
2200 for (User *U : MulVal->users()) {
2201 if (U == &I)
2202 continue;
2203 if (TruncInst *TI = dyn_cast<TruncInst>(U)) {
2204 // Check if truncation ignores bits above MulWidth.
2205 unsigned TruncWidth = TI->getType()->getPrimitiveSizeInBits();
2206 if (TruncWidth > MulWidth)
Craig Topperf40110f2014-04-25 05:29:35 +00002207 return nullptr;
Serge Pavlov4bb54d52014-04-13 18:23:41 +00002208 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(U)) {
2209 // Check if AND ignores bits above MulWidth.
2210 if (BO->getOpcode() != Instruction::And)
Craig Topperf40110f2014-04-25 05:29:35 +00002211 return nullptr;
Serge Pavlov4bb54d52014-04-13 18:23:41 +00002212 if (ConstantInt *CI = dyn_cast<ConstantInt>(BO->getOperand(1))) {
2213 const APInt &CVal = CI->getValue();
2214 if (CVal.getBitWidth() - CVal.countLeadingZeros() > MulWidth)
Craig Topperf40110f2014-04-25 05:29:35 +00002215 return nullptr;
Serge Pavlov4bb54d52014-04-13 18:23:41 +00002216 }
2217 } else {
2218 // Other uses prohibit this transformation.
Craig Topperf40110f2014-04-25 05:29:35 +00002219 return nullptr;
Serge Pavlov4bb54d52014-04-13 18:23:41 +00002220 }
2221 }
2222
2223 // Recognize patterns
2224 switch (I.getPredicate()) {
2225 case ICmpInst::ICMP_EQ:
2226 case ICmpInst::ICMP_NE:
2227 // Recognize pattern:
2228 // mulval = mul(zext A, zext B)
2229 // cmp eq/neq mulval, zext trunc mulval
2230 if (ZExtInst *Zext = dyn_cast<ZExtInst>(OtherVal))
2231 if (Zext->hasOneUse()) {
2232 Value *ZextArg = Zext->getOperand(0);
2233 if (TruncInst *Trunc = dyn_cast<TruncInst>(ZextArg))
2234 if (Trunc->getType()->getPrimitiveSizeInBits() == MulWidth)
2235 break; //Recognized
2236 }
2237
2238 // Recognize pattern:
2239 // mulval = mul(zext A, zext B)
2240 // cmp eq/neq mulval, and(mulval, mask), mask selects low MulWidth bits.
2241 ConstantInt *CI;
2242 Value *ValToMask;
2243 if (match(OtherVal, m_And(m_Value(ValToMask), m_ConstantInt(CI)))) {
2244 if (ValToMask != MulVal)
Craig Topperf40110f2014-04-25 05:29:35 +00002245 return nullptr;
Serge Pavlov4bb54d52014-04-13 18:23:41 +00002246 const APInt &CVal = CI->getValue() + 1;
2247 if (CVal.isPowerOf2()) {
2248 unsigned MaskWidth = CVal.logBase2();
2249 if (MaskWidth == MulWidth)
2250 break; // Recognized
2251 }
2252 }
Craig Topperf40110f2014-04-25 05:29:35 +00002253 return nullptr;
Serge Pavlov4bb54d52014-04-13 18:23:41 +00002254
2255 case ICmpInst::ICMP_UGT:
2256 // Recognize pattern:
2257 // mulval = mul(zext A, zext B)
2258 // cmp ugt mulval, max
2259 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal)) {
2260 APInt MaxVal = APInt::getMaxValue(MulWidth);
2261 MaxVal = MaxVal.zext(CI->getBitWidth());
2262 if (MaxVal.eq(CI->getValue()))
2263 break; // Recognized
2264 }
Craig Topperf40110f2014-04-25 05:29:35 +00002265 return nullptr;
Serge Pavlov4bb54d52014-04-13 18:23:41 +00002266
2267 case ICmpInst::ICMP_UGE:
2268 // Recognize pattern:
2269 // mulval = mul(zext A, zext B)
2270 // cmp uge mulval, max+1
2271 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal)) {
2272 APInt MaxVal = APInt::getOneBitSet(CI->getBitWidth(), MulWidth);
2273 if (MaxVal.eq(CI->getValue()))
2274 break; // Recognized
2275 }
Craig Topperf40110f2014-04-25 05:29:35 +00002276 return nullptr;
Serge Pavlov4bb54d52014-04-13 18:23:41 +00002277
2278 case ICmpInst::ICMP_ULE:
2279 // Recognize pattern:
2280 // mulval = mul(zext A, zext B)
2281 // cmp ule mulval, max
2282 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal)) {
2283 APInt MaxVal = APInt::getMaxValue(MulWidth);
2284 MaxVal = MaxVal.zext(CI->getBitWidth());
2285 if (MaxVal.eq(CI->getValue()))
2286 break; // Recognized
2287 }
Craig Topperf40110f2014-04-25 05:29:35 +00002288 return nullptr;
Serge Pavlov4bb54d52014-04-13 18:23:41 +00002289
2290 case ICmpInst::ICMP_ULT:
2291 // Recognize pattern:
2292 // mulval = mul(zext A, zext B)
2293 // cmp ule mulval, max + 1
2294 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal)) {
Serge Pavlovb5f3ddc2014-04-14 02:20:19 +00002295 APInt MaxVal = APInt::getOneBitSet(CI->getBitWidth(), MulWidth);
Serge Pavlov4bb54d52014-04-13 18:23:41 +00002296 if (MaxVal.eq(CI->getValue()))
2297 break; // Recognized
2298 }
Craig Topperf40110f2014-04-25 05:29:35 +00002299 return nullptr;
Serge Pavlov4bb54d52014-04-13 18:23:41 +00002300
2301 default:
Craig Topperf40110f2014-04-25 05:29:35 +00002302 return nullptr;
Serge Pavlov4bb54d52014-04-13 18:23:41 +00002303 }
2304
2305 InstCombiner::BuilderTy *Builder = IC.Builder;
2306 Builder->SetInsertPoint(MulInstr);
2307 Module *M = I.getParent()->getParent()->getParent();
2308
2309 // Replace: mul(zext A, zext B) --> mul.with.overflow(A, B)
2310 Value *MulA = A, *MulB = B;
2311 if (WidthA < MulWidth)
2312 MulA = Builder->CreateZExt(A, MulType);
2313 if (WidthB < MulWidth)
2314 MulB = Builder->CreateZExt(B, MulType);
2315 Value *F =
2316 Intrinsic::getDeclaration(M, Intrinsic::umul_with_overflow, MulType);
2317 CallInst *Call = Builder->CreateCall2(F, MulA, MulB, "umul");
2318 IC.Worklist.Add(MulInstr);
2319
2320 // If there are uses of mul result other than the comparison, we know that
2321 // they are truncation or binary AND. Change them to use result of
Serge Pavlovb5f3ddc2014-04-14 02:20:19 +00002322 // mul.with.overflow and adjust properly mask/size.
Serge Pavlov4bb54d52014-04-13 18:23:41 +00002323 if (MulVal->hasNUsesOrMore(2)) {
2324 Value *Mul = Builder->CreateExtractValue(Call, 0, "umul.value");
2325 for (User *U : MulVal->users()) {
2326 if (U == &I || U == OtherVal)
2327 continue;
2328 if (TruncInst *TI = dyn_cast<TruncInst>(U)) {
2329 if (TI->getType()->getPrimitiveSizeInBits() == MulWidth)
2330 IC.ReplaceInstUsesWith(*TI, Mul);
2331 else
2332 TI->setOperand(0, Mul);
2333 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(U)) {
2334 assert(BO->getOpcode() == Instruction::And);
2335 // Replace (mul & mask) --> zext (mul.with.overflow & short_mask)
2336 ConstantInt *CI = cast<ConstantInt>(BO->getOperand(1));
2337 APInt ShortMask = CI->getValue().trunc(MulWidth);
2338 Value *ShortAnd = Builder->CreateAnd(Mul, ShortMask);
2339 Instruction *Zext =
2340 cast<Instruction>(Builder->CreateZExt(ShortAnd, BO->getType()));
2341 IC.Worklist.Add(Zext);
2342 IC.ReplaceInstUsesWith(*BO, Zext);
2343 } else {
2344 llvm_unreachable("Unexpected Binary operation");
2345 }
2346 IC.Worklist.Add(cast<Instruction>(U));
2347 }
2348 }
2349 if (isa<Instruction>(OtherVal))
2350 IC.Worklist.Add(cast<Instruction>(OtherVal));
2351
2352 // The original icmp gets replaced with the overflow value, maybe inverted
2353 // depending on predicate.
2354 bool Inverse = false;
2355 switch (I.getPredicate()) {
2356 case ICmpInst::ICMP_NE:
2357 break;
2358 case ICmpInst::ICMP_EQ:
2359 Inverse = true;
2360 break;
2361 case ICmpInst::ICMP_UGT:
2362 case ICmpInst::ICMP_UGE:
2363 if (I.getOperand(0) == MulVal)
2364 break;
2365 Inverse = true;
2366 break;
2367 case ICmpInst::ICMP_ULT:
2368 case ICmpInst::ICMP_ULE:
2369 if (I.getOperand(1) == MulVal)
2370 break;
2371 Inverse = true;
2372 break;
2373 default:
2374 llvm_unreachable("Unexpected predicate");
2375 }
2376 if (Inverse) {
2377 Value *Res = Builder->CreateExtractValue(Call, 1);
2378 return BinaryOperator::CreateNot(Res);
2379 }
2380
2381 return ExtractValueInst::Create(Call, 1);
2382}
2383
Owen Andersond490c2d2011-01-11 00:36:45 +00002384// DemandedBitsLHSMask - When performing a comparison against a constant,
2385// it is possible that not all the bits in the LHS are demanded. This helper
2386// method computes the mask that IS demanded.
2387static APInt DemandedBitsLHSMask(ICmpInst &I,
2388 unsigned BitWidth, bool isSignCheck) {
2389 if (isSignCheck)
2390 return APInt::getSignBit(BitWidth);
Jim Grosbach129c52a2011-09-30 18:09:53 +00002391
Owen Andersond490c2d2011-01-11 00:36:45 +00002392 ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(1));
2393 if (!CI) return APInt::getAllOnesValue(BitWidth);
Owen Anderson0022a4b2011-01-11 18:26:37 +00002394 const APInt &RHS = CI->getValue();
Jim Grosbach129c52a2011-09-30 18:09:53 +00002395
Owen Andersond490c2d2011-01-11 00:36:45 +00002396 switch (I.getPredicate()) {
Jim Grosbach129c52a2011-09-30 18:09:53 +00002397 // For a UGT comparison, we don't care about any bits that
Owen Andersond490c2d2011-01-11 00:36:45 +00002398 // correspond to the trailing ones of the comparand. The value of these
2399 // bits doesn't impact the outcome of the comparison, because any value
2400 // greater than the RHS must differ in a bit higher than these due to carry.
2401 case ICmpInst::ICMP_UGT: {
2402 unsigned trailingOnes = RHS.countTrailingOnes();
2403 APInt lowBitsSet = APInt::getLowBitsSet(BitWidth, trailingOnes);
2404 return ~lowBitsSet;
2405 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00002406
Owen Andersond490c2d2011-01-11 00:36:45 +00002407 // Similarly, for a ULT comparison, we don't care about the trailing zeros.
2408 // Any value less than the RHS must differ in a higher bit because of carries.
2409 case ICmpInst::ICMP_ULT: {
2410 unsigned trailingZeros = RHS.countTrailingZeros();
2411 APInt lowBitsSet = APInt::getLowBitsSet(BitWidth, trailingZeros);
2412 return ~lowBitsSet;
2413 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00002414
Owen Andersond490c2d2011-01-11 00:36:45 +00002415 default:
2416 return APInt::getAllOnesValue(BitWidth);
2417 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00002418
Owen Andersond490c2d2011-01-11 00:36:45 +00002419}
Chris Lattner2188e402010-01-04 07:37:31 +00002420
Quentin Colombet5ab55552013-09-09 20:56:48 +00002421/// \brief Check if the order of \p Op0 and \p Op1 as operand in an ICmpInst
2422/// should be swapped.
Alp Tokercb402912014-01-24 17:20:08 +00002423/// The decision is based on how many times these two operands are reused
Quentin Colombet5ab55552013-09-09 20:56:48 +00002424/// as subtract operands and their positions in those instructions.
2425/// The rational is that several architectures use the same instruction for
2426/// both subtract and cmp, thus it is better if the order of those operands
2427/// match.
2428/// \return true if Op0 and Op1 should be swapped.
2429static bool swapMayExposeCSEOpportunities(const Value * Op0,
2430 const Value * Op1) {
2431 // Filter out pointer value as those cannot appears directly in subtract.
2432 // FIXME: we may want to go through inttoptrs or bitcasts.
2433 if (Op0->getType()->isPointerTy())
2434 return false;
2435 // Count every uses of both Op0 and Op1 in a subtract.
2436 // Each time Op0 is the first operand, count -1: swapping is bad, the
2437 // subtract has already the same layout as the compare.
2438 // Each time Op0 is the second operand, count +1: swapping is good, the
Alp Tokercb402912014-01-24 17:20:08 +00002439 // subtract has a different layout as the compare.
Quentin Colombet5ab55552013-09-09 20:56:48 +00002440 // At the end, if the benefit is greater than 0, Op0 should come second to
2441 // expose more CSE opportunities.
2442 int GlobalSwapBenefits = 0;
Chandler Carruthcdf47882014-03-09 03:16:01 +00002443 for (const User *U : Op0->users()) {
2444 const BinaryOperator *BinOp = dyn_cast<BinaryOperator>(U);
Quentin Colombet5ab55552013-09-09 20:56:48 +00002445 if (!BinOp || BinOp->getOpcode() != Instruction::Sub)
2446 continue;
2447 // If Op0 is the first argument, this is not beneficial to swap the
2448 // arguments.
2449 int LocalSwapBenefits = -1;
2450 unsigned Op1Idx = 1;
2451 if (BinOp->getOperand(Op1Idx) == Op0) {
2452 Op1Idx = 0;
2453 LocalSwapBenefits = 1;
2454 }
2455 if (BinOp->getOperand(Op1Idx) != Op1)
2456 continue;
2457 GlobalSwapBenefits += LocalSwapBenefits;
2458 }
2459 return GlobalSwapBenefits > 0;
2460}
2461
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +00002462/// \brief Check that one use is in the same block as the definition and all
2463/// other uses are in blocks dominated by a given block
2464///
2465/// \param DI Definition
2466/// \param UI Use
2467/// \param DB Block that must dominate all uses of \p DI outside
2468/// the parent block
2469/// \return true when \p UI is the only use of \p DI in the parent block
2470/// and all other uses of \p DI are in blocks dominated by \p DB.
2471///
2472bool InstCombiner::dominatesAllUses(const Instruction *DI,
2473 const Instruction *UI,
2474 const BasicBlock *DB) const {
2475 assert(DI && UI && "Instruction not defined\n");
2476 // ignore incomplete definitions
2477 if (!DI->getParent())
2478 return false;
2479 // DI and UI must be in the same block
2480 if (DI->getParent() != UI->getParent())
2481 return false;
2482 // Protect from self-referencing blocks
2483 if (DI->getParent() == DB)
2484 return false;
2485 // DominatorTree available?
2486 if (!DT)
2487 return false;
2488 for (const User *U : DI->users()) {
2489 auto *Usr = cast<Instruction>(U);
2490 if (Usr != UI && !DT->dominates(DB, Usr->getParent()))
2491 return false;
2492 }
2493 return true;
2494}
2495
2496///
2497/// true when the instruction sequence within a block is select-cmp-br.
2498///
2499static bool isChainSelectCmpBranch(const SelectInst *SI) {
2500 const BasicBlock *BB = SI->getParent();
2501 if (!BB)
2502 return false;
2503 auto *BI = dyn_cast_or_null<BranchInst>(BB->getTerminator());
2504 if (!BI || BI->getNumSuccessors() != 2)
2505 return false;
2506 auto *IC = dyn_cast<ICmpInst>(BI->getCondition());
2507 if (!IC || (IC->getOperand(0) != SI && IC->getOperand(1) != SI))
2508 return false;
2509 return true;
2510}
2511
2512///
2513/// \brief True when a select result is replaced by one of its operands
2514/// in select-icmp sequence. This will eventually result in the elimination
2515/// of the select.
2516///
2517/// \param SI Select instruction
2518/// \param Icmp Compare instruction
2519/// \param SIOpd Operand that replaces the select
2520///
2521/// Notes:
2522/// - The replacement is global and requires dominator information
2523/// - The caller is responsible for the actual replacement
2524///
2525/// Example:
2526///
2527/// entry:
2528/// %4 = select i1 %3, %C* %0, %C* null
2529/// %5 = icmp eq %C* %4, null
2530/// br i1 %5, label %9, label %7
2531/// ...
2532/// ; <label>:7 ; preds = %entry
2533/// %8 = getelementptr inbounds %C* %4, i64 0, i32 0
2534/// ...
2535///
2536/// can be transformed to
2537///
2538/// %5 = icmp eq %C* %0, null
2539/// %6 = select i1 %3, i1 %5, i1 true
2540/// br i1 %6, label %9, label %7
2541/// ...
2542/// ; <label>:7 ; preds = %entry
2543/// %8 = getelementptr inbounds %C* %0, i64 0, i32 0 // replace by %0!
2544///
2545/// Similar when the first operand of the select is a constant or/and
2546/// the compare is for not equal rather than equal.
2547///
2548/// NOTE: The function is only called when the select and compare constants
2549/// are equal, the optimization can work only for EQ predicates. This is not a
2550/// major restriction since a NE compare should be 'normalized' to an equal
2551/// compare, which usually happens in the combiner and test case
2552/// select-cmp-br.ll
2553/// checks for it.
2554bool InstCombiner::replacedSelectWithOperand(SelectInst *SI,
2555 const ICmpInst *Icmp,
2556 const unsigned SIOpd) {
David Majnemer83484fd2014-11-22 06:09:28 +00002557 assert((SIOpd == 1 || SIOpd == 2) && "Invalid select operand!");
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +00002558 if (isChainSelectCmpBranch(SI) && Icmp->getPredicate() == ICmpInst::ICMP_EQ) {
2559 BasicBlock *Succ = SI->getParent()->getTerminator()->getSuccessor(1);
2560 // The check for the unique predecessor is not the best that can be
2561 // done. But it protects efficiently against cases like when SI's
2562 // home block has two successors, Succ and Succ1, and Succ1 predecessor
2563 // of Succ. Then SI can't be replaced by SIOpd because the use that gets
2564 // replaced can be reached on either path. So the uniqueness check
2565 // guarantees that the path all uses of SI (outside SI's parent) are on
2566 // is disjoint from all other paths out of SI. But that information
2567 // is more expensive to compute, and the trade-off here is in favor
2568 // of compile-time.
2569 if (Succ->getUniquePredecessor() && dominatesAllUses(SI, Icmp, Succ)) {
2570 NumSel++;
2571 SI->replaceUsesOutsideBlock(SI->getOperand(SIOpd), SI->getParent());
2572 return true;
2573 }
2574 }
2575 return false;
2576}
2577
Chris Lattner2188e402010-01-04 07:37:31 +00002578Instruction *InstCombiner::visitICmpInst(ICmpInst &I) {
2579 bool Changed = false;
Chris Lattner9306ffa2010-02-01 19:54:45 +00002580 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Quentin Colombet5ab55552013-09-09 20:56:48 +00002581 unsigned Op0Cplxity = getComplexity(Op0);
2582 unsigned Op1Cplxity = getComplexity(Op1);
Jim Grosbach129c52a2011-09-30 18:09:53 +00002583
Chris Lattner2188e402010-01-04 07:37:31 +00002584 /// Orders the operands of the compare so that they are listed from most
2585 /// complex to least complex. This puts constants before unary operators,
2586 /// before binary operators.
Quentin Colombet5ab55552013-09-09 20:56:48 +00002587 if (Op0Cplxity < Op1Cplxity ||
2588 (Op0Cplxity == Op1Cplxity &&
2589 swapMayExposeCSEOpportunities(Op0, Op1))) {
Chris Lattner2188e402010-01-04 07:37:31 +00002590 I.swapOperands();
Chris Lattner9306ffa2010-02-01 19:54:45 +00002591 std::swap(Op0, Op1);
Chris Lattner2188e402010-01-04 07:37:31 +00002592 Changed = true;
2593 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00002594
Chandler Carruth66b31302015-01-04 12:03:27 +00002595 if (Value *V = SimplifyICmpInst(I.getPredicate(), Op0, Op1, DL, TLI, DT, AC))
Chris Lattner2188e402010-01-04 07:37:31 +00002596 return ReplaceInstUsesWith(I, V);
Jim Grosbach129c52a2011-09-30 18:09:53 +00002597
Pete Cooperbc5c5242011-12-01 03:58:40 +00002598 // comparing -val or val with non-zero is the same as just comparing val
Pete Cooperfdddc272011-12-01 19:13:26 +00002599 // ie, abs(val) != 0 -> val != 0
Pete Cooperbc5c5242011-12-01 03:58:40 +00002600 if (I.getPredicate() == ICmpInst::ICMP_NE && match(Op1, m_Zero()))
2601 {
Pete Cooperfdddc272011-12-01 19:13:26 +00002602 Value *Cond, *SelectTrue, *SelectFalse;
2603 if (match(Op0, m_Select(m_Value(Cond), m_Value(SelectTrue),
Pete Cooperbc5c5242011-12-01 03:58:40 +00002604 m_Value(SelectFalse)))) {
Pete Cooperfdddc272011-12-01 19:13:26 +00002605 if (Value *V = dyn_castNegVal(SelectTrue)) {
2606 if (V == SelectFalse)
2607 return CmpInst::Create(Instruction::ICmp, I.getPredicate(), V, Op1);
2608 }
2609 else if (Value *V = dyn_castNegVal(SelectFalse)) {
2610 if (V == SelectTrue)
2611 return CmpInst::Create(Instruction::ICmp, I.getPredicate(), V, Op1);
Pete Cooperbc5c5242011-12-01 03:58:40 +00002612 }
2613 }
2614 }
2615
Chris Lattner229907c2011-07-18 04:54:35 +00002616 Type *Ty = Op0->getType();
Chris Lattner2188e402010-01-04 07:37:31 +00002617
2618 // icmp's with boolean values can always be turned into bitwise operations
Duncan Sands9dff9be2010-02-15 16:12:20 +00002619 if (Ty->isIntegerTy(1)) {
Chris Lattner2188e402010-01-04 07:37:31 +00002620 switch (I.getPredicate()) {
2621 default: llvm_unreachable("Invalid icmp instruction!");
2622 case ICmpInst::ICMP_EQ: { // icmp eq i1 A, B -> ~(A^B)
2623 Value *Xor = Builder->CreateXor(Op0, Op1, I.getName()+"tmp");
2624 return BinaryOperator::CreateNot(Xor);
2625 }
2626 case ICmpInst::ICMP_NE: // icmp eq i1 A, B -> A^B
2627 return BinaryOperator::CreateXor(Op0, Op1);
2628
2629 case ICmpInst::ICMP_UGT:
2630 std::swap(Op0, Op1); // Change icmp ugt -> icmp ult
2631 // FALL THROUGH
2632 case ICmpInst::ICMP_ULT:{ // icmp ult i1 A, B -> ~A & B
2633 Value *Not = Builder->CreateNot(Op0, I.getName()+"tmp");
2634 return BinaryOperator::CreateAnd(Not, Op1);
2635 }
2636 case ICmpInst::ICMP_SGT:
2637 std::swap(Op0, Op1); // Change icmp sgt -> icmp slt
2638 // FALL THROUGH
2639 case ICmpInst::ICMP_SLT: { // icmp slt i1 A, B -> A & ~B
2640 Value *Not = Builder->CreateNot(Op1, I.getName()+"tmp");
2641 return BinaryOperator::CreateAnd(Not, Op0);
2642 }
2643 case ICmpInst::ICMP_UGE:
2644 std::swap(Op0, Op1); // Change icmp uge -> icmp ule
2645 // FALL THROUGH
2646 case ICmpInst::ICMP_ULE: { // icmp ule i1 A, B -> ~A | B
2647 Value *Not = Builder->CreateNot(Op0, I.getName()+"tmp");
2648 return BinaryOperator::CreateOr(Not, Op1);
2649 }
2650 case ICmpInst::ICMP_SGE:
2651 std::swap(Op0, Op1); // Change icmp sge -> icmp sle
2652 // FALL THROUGH
2653 case ICmpInst::ICMP_SLE: { // icmp sle i1 A, B -> A | ~B
2654 Value *Not = Builder->CreateNot(Op1, I.getName()+"tmp");
2655 return BinaryOperator::CreateOr(Not, Op0);
2656 }
2657 }
2658 }
2659
2660 unsigned BitWidth = 0;
Chris Lattner5e0c0c72010-12-19 19:37:52 +00002661 if (Ty->isIntOrIntVectorTy())
Chris Lattner2188e402010-01-04 07:37:31 +00002662 BitWidth = Ty->getScalarSizeInBits();
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002663 else if (DL) // Pointers require DL info to get their size.
2664 BitWidth = DL->getTypeSizeInBits(Ty->getScalarType());
Jim Grosbach129c52a2011-09-30 18:09:53 +00002665
Chris Lattner2188e402010-01-04 07:37:31 +00002666 bool isSignBit = false;
2667
2668 // See if we are doing a comparison with a constant.
2669 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
Craig Topperf40110f2014-04-25 05:29:35 +00002670 Value *A = nullptr, *B = nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +00002671
Owen Anderson1294ea72010-12-17 18:08:00 +00002672 // Match the following pattern, which is a common idiom when writing
2673 // overflow-safe integer arithmetic function. The source performs an
2674 // addition in wider type, and explicitly checks for overflow using
2675 // comparisons against INT_MIN and INT_MAX. Simplify this by using the
2676 // sadd_with_overflow intrinsic.
Chris Lattneree61c1d2010-12-19 17:52:50 +00002677 //
2678 // TODO: This could probably be generalized to handle other overflow-safe
Jim Grosbach129c52a2011-09-30 18:09:53 +00002679 // operations if we worked out the formulas to compute the appropriate
Owen Anderson1294ea72010-12-17 18:08:00 +00002680 // magic constants.
Jim Grosbach129c52a2011-09-30 18:09:53 +00002681 //
Chris Lattneree61c1d2010-12-19 17:52:50 +00002682 // sum = a + b
2683 // if (sum+128 >u 255) ... -> llvm.sadd.with.overflow.i8
Owen Anderson1294ea72010-12-17 18:08:00 +00002684 {
Chris Lattneree61c1d2010-12-19 17:52:50 +00002685 ConstantInt *CI2; // I = icmp ugt (add (add A, B), CI2), CI
Owen Anderson1294ea72010-12-17 18:08:00 +00002686 if (I.getPredicate() == ICmpInst::ICMP_UGT &&
Chris Lattneree61c1d2010-12-19 17:52:50 +00002687 match(Op0, m_Add(m_Add(m_Value(A), m_Value(B)), m_ConstantInt(CI2))))
Chris Lattnerce2995a2010-12-19 18:38:44 +00002688 if (Instruction *Res = ProcessUGT_ADDCST_ADD(I, A, B, CI2, CI, *this))
Chris Lattneree61c1d2010-12-19 17:52:50 +00002689 return Res;
Owen Anderson1294ea72010-12-17 18:08:00 +00002690 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00002691
David Majnemera0afb552015-01-14 19:26:56 +00002692 // The following transforms are only 'worth it' if the only user of the
2693 // subtraction is the icmp.
2694 if (Op0->hasOneUse()) {
2695 // (icmp ne/eq (sub A B) 0) -> (icmp ne/eq A, B)
2696 if (I.isEquality() && CI->isZero() &&
2697 match(Op0, m_Sub(m_Value(A), m_Value(B))))
2698 return new ICmpInst(I.getPredicate(), A, B);
2699
2700 // (icmp sgt (sub nsw A B), -1) -> (icmp sge A, B)
2701 if (I.getPredicate() == ICmpInst::ICMP_SGT && CI->isAllOnesValue() &&
2702 match(Op0, m_NSWSub(m_Value(A), m_Value(B))))
2703 return new ICmpInst(ICmpInst::ICMP_SGE, A, B);
2704
2705 // (icmp sgt (sub nsw A B), 0) -> (icmp sgt A, B)
2706 if (I.getPredicate() == ICmpInst::ICMP_SGT && CI->isZero() &&
2707 match(Op0, m_NSWSub(m_Value(A), m_Value(B))))
2708 return new ICmpInst(ICmpInst::ICMP_SGT, A, B);
2709
2710 // (icmp slt (sub nsw A B), 0) -> (icmp slt A, B)
2711 if (I.getPredicate() == ICmpInst::ICMP_SLT && CI->isZero() &&
2712 match(Op0, m_NSWSub(m_Value(A), m_Value(B))))
2713 return new ICmpInst(ICmpInst::ICMP_SLT, A, B);
2714
2715 // (icmp slt (sub nsw A B), 1) -> (icmp sle A, B)
2716 if (I.getPredicate() == ICmpInst::ICMP_SLT && CI->isOne() &&
2717 match(Op0, m_NSWSub(m_Value(A), m_Value(B))))
2718 return new ICmpInst(ICmpInst::ICMP_SLE, A, B);
Chris Lattner2188e402010-01-04 07:37:31 +00002719 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00002720
Chris Lattner2188e402010-01-04 07:37:31 +00002721 // If we have an icmp le or icmp ge instruction, turn it into the
2722 // appropriate icmp lt or icmp gt instruction. This allows us to rely on
2723 // them being folded in the code below. The SimplifyICmpInst code has
2724 // already handled the edge cases for us, so we just assert on them.
2725 switch (I.getPredicate()) {
2726 default: break;
2727 case ICmpInst::ICMP_ULE:
2728 assert(!CI->isMaxValue(false)); // A <=u MAX -> TRUE
2729 return new ICmpInst(ICmpInst::ICMP_ULT, Op0,
Jakub Staszakbddea112013-06-06 20:18:46 +00002730 Builder->getInt(CI->getValue()+1));
Chris Lattner2188e402010-01-04 07:37:31 +00002731 case ICmpInst::ICMP_SLE:
2732 assert(!CI->isMaxValue(true)); // A <=s MAX -> TRUE
2733 return new ICmpInst(ICmpInst::ICMP_SLT, Op0,
Jakub Staszakbddea112013-06-06 20:18:46 +00002734 Builder->getInt(CI->getValue()+1));
Chris Lattner2188e402010-01-04 07:37:31 +00002735 case ICmpInst::ICMP_UGE:
Nick Lewycky6b4454192011-02-28 06:20:05 +00002736 assert(!CI->isMinValue(false)); // A >=u MIN -> TRUE
Chris Lattner2188e402010-01-04 07:37:31 +00002737 return new ICmpInst(ICmpInst::ICMP_UGT, Op0,
Jakub Staszakbddea112013-06-06 20:18:46 +00002738 Builder->getInt(CI->getValue()-1));
Chris Lattner2188e402010-01-04 07:37:31 +00002739 case ICmpInst::ICMP_SGE:
Nick Lewycky6b4454192011-02-28 06:20:05 +00002740 assert(!CI->isMinValue(true)); // A >=s MIN -> TRUE
Chris Lattner2188e402010-01-04 07:37:31 +00002741 return new ICmpInst(ICmpInst::ICMP_SGT, Op0,
Jakub Staszakbddea112013-06-06 20:18:46 +00002742 Builder->getInt(CI->getValue()-1));
Chris Lattner2188e402010-01-04 07:37:31 +00002743 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00002744
Suyog Sarda3a8c2c12014-07-22 19:19:36 +00002745 if (I.isEquality()) {
2746 ConstantInt *CI2;
2747 if (match(Op0, m_AShr(m_ConstantInt(CI2), m_Value(A))) ||
2748 match(Op0, m_LShr(m_ConstantInt(CI2), m_Value(A)))) {
David Majnemer59939ac2014-10-19 08:23:08 +00002749 // (icmp eq/ne (ashr/lshr const2, A), const1)
David Majnemer2abb8182014-10-25 07:13:13 +00002750 if (Instruction *Inst = FoldICmpCstShrCst(I, Op0, A, CI, CI2))
2751 return Inst;
Suyog Sarda3a8c2c12014-07-22 19:19:36 +00002752 }
David Majnemer59939ac2014-10-19 08:23:08 +00002753 if (match(Op0, m_Shl(m_ConstantInt(CI2), m_Value(A)))) {
2754 // (icmp eq/ne (shl const2, A), const1)
David Majnemer2abb8182014-10-25 07:13:13 +00002755 if (Instruction *Inst = FoldICmpCstShlCst(I, Op0, A, CI, CI2))
2756 return Inst;
David Majnemer59939ac2014-10-19 08:23:08 +00002757 }
Suyog Sarda3a8c2c12014-07-22 19:19:36 +00002758 }
2759
Chris Lattner2188e402010-01-04 07:37:31 +00002760 // If this comparison is a normal comparison, it demands all
2761 // bits, if it is a sign bit comparison, it only demands the sign bit.
2762 bool UnusedBit;
2763 isSignBit = isSignBitCheck(I.getPredicate(), CI, UnusedBit);
2764 }
2765
2766 // See if we can fold the comparison based on range information we can get
2767 // by checking whether bits are known to be zero or one in the input.
2768 if (BitWidth != 0) {
2769 APInt Op0KnownZero(BitWidth, 0), Op0KnownOne(BitWidth, 0);
2770 APInt Op1KnownZero(BitWidth, 0), Op1KnownOne(BitWidth, 0);
2771
2772 if (SimplifyDemandedBits(I.getOperandUse(0),
Owen Andersond490c2d2011-01-11 00:36:45 +00002773 DemandedBitsLHSMask(I, BitWidth, isSignBit),
Chris Lattner2188e402010-01-04 07:37:31 +00002774 Op0KnownZero, Op0KnownOne, 0))
2775 return &I;
2776 if (SimplifyDemandedBits(I.getOperandUse(1),
2777 APInt::getAllOnesValue(BitWidth),
2778 Op1KnownZero, Op1KnownOne, 0))
2779 return &I;
2780
2781 // Given the known and unknown bits, compute a range that the LHS could be
2782 // in. Compute the Min, Max and RHS values based on the known bits. For the
2783 // EQ and NE we use unsigned values.
2784 APInt Op0Min(BitWidth, 0), Op0Max(BitWidth, 0);
2785 APInt Op1Min(BitWidth, 0), Op1Max(BitWidth, 0);
2786 if (I.isSigned()) {
2787 ComputeSignedMinMaxValuesFromKnownBits(Op0KnownZero, Op0KnownOne,
2788 Op0Min, Op0Max);
2789 ComputeSignedMinMaxValuesFromKnownBits(Op1KnownZero, Op1KnownOne,
2790 Op1Min, Op1Max);
2791 } else {
2792 ComputeUnsignedMinMaxValuesFromKnownBits(Op0KnownZero, Op0KnownOne,
2793 Op0Min, Op0Max);
2794 ComputeUnsignedMinMaxValuesFromKnownBits(Op1KnownZero, Op1KnownOne,
2795 Op1Min, Op1Max);
2796 }
2797
2798 // If Min and Max are known to be the same, then SimplifyDemandedBits
2799 // figured out that the LHS is a constant. Just constant fold this now so
2800 // that code below can assume that Min != Max.
2801 if (!isa<Constant>(Op0) && Op0Min == Op0Max)
2802 return new ICmpInst(I.getPredicate(),
Nick Lewycky92db8e82011-03-06 03:36:19 +00002803 ConstantInt::get(Op0->getType(), Op0Min), Op1);
Chris Lattner2188e402010-01-04 07:37:31 +00002804 if (!isa<Constant>(Op1) && Op1Min == Op1Max)
2805 return new ICmpInst(I.getPredicate(), Op0,
Nick Lewycky92db8e82011-03-06 03:36:19 +00002806 ConstantInt::get(Op1->getType(), Op1Min));
Chris Lattner2188e402010-01-04 07:37:31 +00002807
2808 // Based on the range information we know about the LHS, see if we can
Nick Lewycky6b4454192011-02-28 06:20:05 +00002809 // simplify this comparison. For example, (x&4) < 8 is always true.
Chris Lattner2188e402010-01-04 07:37:31 +00002810 switch (I.getPredicate()) {
2811 default: llvm_unreachable("Unknown icmp opcode!");
Chris Lattnerf7e89612010-11-21 06:44:42 +00002812 case ICmpInst::ICMP_EQ: {
Chris Lattner2188e402010-01-04 07:37:31 +00002813 if (Op0Max.ult(Op1Min) || Op0Min.ugt(Op1Max))
Nick Lewycky92db8e82011-03-06 03:36:19 +00002814 return ReplaceInstUsesWith(I, ConstantInt::getFalse(I.getType()));
Jim Grosbach129c52a2011-09-30 18:09:53 +00002815
Chris Lattnerf7e89612010-11-21 06:44:42 +00002816 // If all bits are known zero except for one, then we know at most one
2817 // bit is set. If the comparison is against zero, then this is a check
2818 // to see if *that* bit is set.
2819 APInt Op0KnownZeroInverted = ~Op0KnownZero;
Dinesh Dwivedice5d35a2014-06-02 07:57:24 +00002820 if (~Op1KnownZero == 0) {
Chris Lattnerf7e89612010-11-21 06:44:42 +00002821 // If the LHS is an AND with the same constant, look through it.
Craig Topperf40110f2014-04-25 05:29:35 +00002822 Value *LHS = nullptr;
2823 ConstantInt *LHSC = nullptr;
Chris Lattnerf7e89612010-11-21 06:44:42 +00002824 if (!match(Op0, m_And(m_Value(LHS), m_ConstantInt(LHSC))) ||
2825 LHSC->getValue() != Op0KnownZeroInverted)
2826 LHS = Op0;
Jim Grosbach129c52a2011-09-30 18:09:53 +00002827
Chris Lattnerf7e89612010-11-21 06:44:42 +00002828 // If the LHS is 1 << x, and we know the result is a power of 2 like 8,
Chris Lattnere5afa152010-11-23 02:42:04 +00002829 // then turn "((1 << x)&8) == 0" into "x != 3".
Dinesh Dwivedice5d35a2014-06-02 07:57:24 +00002830 // or turn "((1 << x)&7) == 0" into "x > 2".
Craig Topperf40110f2014-04-25 05:29:35 +00002831 Value *X = nullptr;
Chris Lattnerf7e89612010-11-21 06:44:42 +00002832 if (match(LHS, m_Shl(m_One(), m_Value(X)))) {
Dinesh Dwivedice5d35a2014-06-02 07:57:24 +00002833 APInt ValToCheck = Op0KnownZeroInverted;
2834 if (ValToCheck.isPowerOf2()) {
2835 unsigned CmpVal = ValToCheck.countTrailingZeros();
2836 return new ICmpInst(ICmpInst::ICMP_NE, X,
2837 ConstantInt::get(X->getType(), CmpVal));
2838 } else if ((++ValToCheck).isPowerOf2()) {
2839 unsigned CmpVal = ValToCheck.countTrailingZeros() - 1;
2840 return new ICmpInst(ICmpInst::ICMP_UGT, X,
2841 ConstantInt::get(X->getType(), CmpVal));
2842 }
Chris Lattnerf7e89612010-11-21 06:44:42 +00002843 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00002844
Chris Lattnerf7e89612010-11-21 06:44:42 +00002845 // If the LHS is 8 >>u x, and we know the result is a power of 2 like 1,
Chris Lattnere5afa152010-11-23 02:42:04 +00002846 // then turn "((8 >>u x)&1) == 0" into "x != 3".
Chris Lattner98457102011-02-10 05:23:05 +00002847 const APInt *CI;
Chris Lattnerf7e89612010-11-21 06:44:42 +00002848 if (Op0KnownZeroInverted == 1 &&
Chris Lattner98457102011-02-10 05:23:05 +00002849 match(LHS, m_LShr(m_Power2(CI), m_Value(X))))
Chris Lattnere5afa152010-11-23 02:42:04 +00002850 return new ICmpInst(ICmpInst::ICMP_NE, X,
Chris Lattner98457102011-02-10 05:23:05 +00002851 ConstantInt::get(X->getType(),
2852 CI->countTrailingZeros()));
Chris Lattnerf7e89612010-11-21 06:44:42 +00002853 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00002854
Chris Lattner2188e402010-01-04 07:37:31 +00002855 break;
Chris Lattnerf7e89612010-11-21 06:44:42 +00002856 }
2857 case ICmpInst::ICMP_NE: {
Chris Lattner2188e402010-01-04 07:37:31 +00002858 if (Op0Max.ult(Op1Min) || Op0Min.ugt(Op1Max))
Nick Lewycky92db8e82011-03-06 03:36:19 +00002859 return ReplaceInstUsesWith(I, ConstantInt::getTrue(I.getType()));
Jim Grosbach129c52a2011-09-30 18:09:53 +00002860
Chris Lattnerf7e89612010-11-21 06:44:42 +00002861 // If all bits are known zero except for one, then we know at most one
2862 // bit is set. If the comparison is against zero, then this is a check
2863 // to see if *that* bit is set.
2864 APInt Op0KnownZeroInverted = ~Op0KnownZero;
Dinesh Dwivedice5d35a2014-06-02 07:57:24 +00002865 if (~Op1KnownZero == 0) {
Chris Lattnerf7e89612010-11-21 06:44:42 +00002866 // If the LHS is an AND with the same constant, look through it.
Craig Topperf40110f2014-04-25 05:29:35 +00002867 Value *LHS = nullptr;
2868 ConstantInt *LHSC = nullptr;
Chris Lattnerf7e89612010-11-21 06:44:42 +00002869 if (!match(Op0, m_And(m_Value(LHS), m_ConstantInt(LHSC))) ||
2870 LHSC->getValue() != Op0KnownZeroInverted)
2871 LHS = Op0;
Jim Grosbach129c52a2011-09-30 18:09:53 +00002872
Chris Lattnerf7e89612010-11-21 06:44:42 +00002873 // If the LHS is 1 << x, and we know the result is a power of 2 like 8,
Chris Lattnere5afa152010-11-23 02:42:04 +00002874 // then turn "((1 << x)&8) != 0" into "x == 3".
Dinesh Dwivedice5d35a2014-06-02 07:57:24 +00002875 // or turn "((1 << x)&7) != 0" into "x < 3".
Craig Topperf40110f2014-04-25 05:29:35 +00002876 Value *X = nullptr;
Chris Lattnerf7e89612010-11-21 06:44:42 +00002877 if (match(LHS, m_Shl(m_One(), m_Value(X)))) {
Dinesh Dwivedice5d35a2014-06-02 07:57:24 +00002878 APInt ValToCheck = Op0KnownZeroInverted;
2879 if (ValToCheck.isPowerOf2()) {
2880 unsigned CmpVal = ValToCheck.countTrailingZeros();
2881 return new ICmpInst(ICmpInst::ICMP_EQ, X,
2882 ConstantInt::get(X->getType(), CmpVal));
2883 } else if ((++ValToCheck).isPowerOf2()) {
2884 unsigned CmpVal = ValToCheck.countTrailingZeros();
2885 return new ICmpInst(ICmpInst::ICMP_ULT, X,
2886 ConstantInt::get(X->getType(), CmpVal));
2887 }
Chris Lattnerf7e89612010-11-21 06:44:42 +00002888 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00002889
Chris Lattnerf7e89612010-11-21 06:44:42 +00002890 // If the LHS is 8 >>u x, and we know the result is a power of 2 like 1,
Chris Lattnere5afa152010-11-23 02:42:04 +00002891 // then turn "((8 >>u x)&1) != 0" into "x == 3".
Chris Lattner98457102011-02-10 05:23:05 +00002892 const APInt *CI;
Chris Lattnerf7e89612010-11-21 06:44:42 +00002893 if (Op0KnownZeroInverted == 1 &&
Chris Lattner98457102011-02-10 05:23:05 +00002894 match(LHS, m_LShr(m_Power2(CI), m_Value(X))))
Chris Lattnere5afa152010-11-23 02:42:04 +00002895 return new ICmpInst(ICmpInst::ICMP_EQ, X,
Chris Lattner98457102011-02-10 05:23:05 +00002896 ConstantInt::get(X->getType(),
2897 CI->countTrailingZeros()));
Chris Lattnerf7e89612010-11-21 06:44:42 +00002898 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00002899
Chris Lattner2188e402010-01-04 07:37:31 +00002900 break;
Chris Lattnerf7e89612010-11-21 06:44:42 +00002901 }
Chris Lattner2188e402010-01-04 07:37:31 +00002902 case ICmpInst::ICMP_ULT:
2903 if (Op0Max.ult(Op1Min)) // A <u B -> true if max(A) < min(B)
Nick Lewycky92db8e82011-03-06 03:36:19 +00002904 return ReplaceInstUsesWith(I, ConstantInt::getTrue(I.getType()));
Chris Lattner2188e402010-01-04 07:37:31 +00002905 if (Op0Min.uge(Op1Max)) // A <u B -> false if min(A) >= max(B)
Nick Lewycky92db8e82011-03-06 03:36:19 +00002906 return ReplaceInstUsesWith(I, ConstantInt::getFalse(I.getType()));
Chris Lattner2188e402010-01-04 07:37:31 +00002907 if (Op1Min == Op0Max) // A <u B -> A != B if max(A) == min(B)
2908 return new ICmpInst(ICmpInst::ICMP_NE, Op0, Op1);
2909 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
2910 if (Op1Max == Op0Min+1) // A <u C -> A == C-1 if min(A)+1 == C
2911 return new ICmpInst(ICmpInst::ICMP_EQ, Op0,
Jakub Staszakbddea112013-06-06 20:18:46 +00002912 Builder->getInt(CI->getValue()-1));
Chris Lattner2188e402010-01-04 07:37:31 +00002913
2914 // (x <u 2147483648) -> (x >s -1) -> true if sign bit clear
2915 if (CI->isMinValue(true))
2916 return new ICmpInst(ICmpInst::ICMP_SGT, Op0,
2917 Constant::getAllOnesValue(Op0->getType()));
2918 }
2919 break;
2920 case ICmpInst::ICMP_UGT:
2921 if (Op0Min.ugt(Op1Max)) // A >u B -> true if min(A) > max(B)
Nick Lewycky92db8e82011-03-06 03:36:19 +00002922 return ReplaceInstUsesWith(I, ConstantInt::getTrue(I.getType()));
Chris Lattner2188e402010-01-04 07:37:31 +00002923 if (Op0Max.ule(Op1Min)) // A >u B -> false if max(A) <= max(B)
Nick Lewycky92db8e82011-03-06 03:36:19 +00002924 return ReplaceInstUsesWith(I, ConstantInt::getFalse(I.getType()));
Chris Lattner2188e402010-01-04 07:37:31 +00002925
2926 if (Op1Max == Op0Min) // A >u B -> A != B if min(A) == max(B)
2927 return new ICmpInst(ICmpInst::ICMP_NE, Op0, Op1);
2928 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
2929 if (Op1Min == Op0Max-1) // A >u C -> A == C+1 if max(a)-1 == C
2930 return new ICmpInst(ICmpInst::ICMP_EQ, Op0,
Jakub Staszakbddea112013-06-06 20:18:46 +00002931 Builder->getInt(CI->getValue()+1));
Chris Lattner2188e402010-01-04 07:37:31 +00002932
2933 // (x >u 2147483647) -> (x <s 0) -> true if sign bit set
2934 if (CI->isMaxValue(true))
2935 return new ICmpInst(ICmpInst::ICMP_SLT, Op0,
2936 Constant::getNullValue(Op0->getType()));
2937 }
2938 break;
2939 case ICmpInst::ICMP_SLT:
2940 if (Op0Max.slt(Op1Min)) // A <s B -> true if max(A) < min(C)
Nick Lewycky92db8e82011-03-06 03:36:19 +00002941 return ReplaceInstUsesWith(I, ConstantInt::getTrue(I.getType()));
Chris Lattner2188e402010-01-04 07:37:31 +00002942 if (Op0Min.sge(Op1Max)) // A <s B -> false if min(A) >= max(C)
Nick Lewycky92db8e82011-03-06 03:36:19 +00002943 return ReplaceInstUsesWith(I, ConstantInt::getFalse(I.getType()));
Chris Lattner2188e402010-01-04 07:37:31 +00002944 if (Op1Min == Op0Max) // A <s B -> A != B if max(A) == min(B)
2945 return new ICmpInst(ICmpInst::ICMP_NE, Op0, Op1);
2946 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
2947 if (Op1Max == Op0Min+1) // A <s C -> A == C-1 if min(A)+1 == C
2948 return new ICmpInst(ICmpInst::ICMP_EQ, Op0,
Jakub Staszakbddea112013-06-06 20:18:46 +00002949 Builder->getInt(CI->getValue()-1));
Chris Lattner2188e402010-01-04 07:37:31 +00002950 }
2951 break;
2952 case ICmpInst::ICMP_SGT:
2953 if (Op0Min.sgt(Op1Max)) // A >s B -> true if min(A) > max(B)
Nick Lewycky92db8e82011-03-06 03:36:19 +00002954 return ReplaceInstUsesWith(I, ConstantInt::getTrue(I.getType()));
Chris Lattner2188e402010-01-04 07:37:31 +00002955 if (Op0Max.sle(Op1Min)) // A >s B -> false if max(A) <= min(B)
Nick Lewycky92db8e82011-03-06 03:36:19 +00002956 return ReplaceInstUsesWith(I, ConstantInt::getFalse(I.getType()));
Chris Lattner2188e402010-01-04 07:37:31 +00002957
2958 if (Op1Max == Op0Min) // A >s B -> A != B if min(A) == max(B)
2959 return new ICmpInst(ICmpInst::ICMP_NE, Op0, Op1);
2960 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
2961 if (Op1Min == Op0Max-1) // A >s C -> A == C+1 if max(A)-1 == C
2962 return new ICmpInst(ICmpInst::ICMP_EQ, Op0,
Jakub Staszakbddea112013-06-06 20:18:46 +00002963 Builder->getInt(CI->getValue()+1));
Chris Lattner2188e402010-01-04 07:37:31 +00002964 }
2965 break;
2966 case ICmpInst::ICMP_SGE:
2967 assert(!isa<ConstantInt>(Op1) && "ICMP_SGE with ConstantInt not folded!");
2968 if (Op0Min.sge(Op1Max)) // A >=s B -> true if min(A) >= max(B)
Nick Lewycky92db8e82011-03-06 03:36:19 +00002969 return ReplaceInstUsesWith(I, ConstantInt::getTrue(I.getType()));
Chris Lattner2188e402010-01-04 07:37:31 +00002970 if (Op0Max.slt(Op1Min)) // A >=s B -> false if max(A) < min(B)
Nick Lewycky92db8e82011-03-06 03:36:19 +00002971 return ReplaceInstUsesWith(I, ConstantInt::getFalse(I.getType()));
Chris Lattner2188e402010-01-04 07:37:31 +00002972 break;
2973 case ICmpInst::ICMP_SLE:
2974 assert(!isa<ConstantInt>(Op1) && "ICMP_SLE with ConstantInt not folded!");
2975 if (Op0Max.sle(Op1Min)) // A <=s B -> true if max(A) <= min(B)
Nick Lewycky92db8e82011-03-06 03:36:19 +00002976 return ReplaceInstUsesWith(I, ConstantInt::getTrue(I.getType()));
Chris Lattner2188e402010-01-04 07:37:31 +00002977 if (Op0Min.sgt(Op1Max)) // A <=s B -> false if min(A) > max(B)
Nick Lewycky92db8e82011-03-06 03:36:19 +00002978 return ReplaceInstUsesWith(I, ConstantInt::getFalse(I.getType()));
Chris Lattner2188e402010-01-04 07:37:31 +00002979 break;
2980 case ICmpInst::ICMP_UGE:
2981 assert(!isa<ConstantInt>(Op1) && "ICMP_UGE with ConstantInt not folded!");
2982 if (Op0Min.uge(Op1Max)) // A >=u B -> true if min(A) >= max(B)
Nick Lewycky92db8e82011-03-06 03:36:19 +00002983 return ReplaceInstUsesWith(I, ConstantInt::getTrue(I.getType()));
Chris Lattner2188e402010-01-04 07:37:31 +00002984 if (Op0Max.ult(Op1Min)) // A >=u B -> false if max(A) < min(B)
Nick Lewycky92db8e82011-03-06 03:36:19 +00002985 return ReplaceInstUsesWith(I, ConstantInt::getFalse(I.getType()));
Chris Lattner2188e402010-01-04 07:37:31 +00002986 break;
2987 case ICmpInst::ICMP_ULE:
2988 assert(!isa<ConstantInt>(Op1) && "ICMP_ULE with ConstantInt not folded!");
2989 if (Op0Max.ule(Op1Min)) // A <=u B -> true if max(A) <= min(B)
Nick Lewycky92db8e82011-03-06 03:36:19 +00002990 return ReplaceInstUsesWith(I, ConstantInt::getTrue(I.getType()));
Chris Lattner2188e402010-01-04 07:37:31 +00002991 if (Op0Min.ugt(Op1Max)) // A <=u B -> false if min(A) > max(B)
Nick Lewycky92db8e82011-03-06 03:36:19 +00002992 return ReplaceInstUsesWith(I, ConstantInt::getFalse(I.getType()));
Chris Lattner2188e402010-01-04 07:37:31 +00002993 break;
2994 }
2995
2996 // Turn a signed comparison into an unsigned one if both operands
2997 // are known to have the same sign.
2998 if (I.isSigned() &&
2999 ((Op0KnownZero.isNegative() && Op1KnownZero.isNegative()) ||
3000 (Op0KnownOne.isNegative() && Op1KnownOne.isNegative())))
3001 return new ICmpInst(I.getUnsignedPredicate(), Op0, Op1);
3002 }
3003
3004 // Test if the ICmpInst instruction is used exclusively by a select as
3005 // part of a minimum or maximum operation. If so, refrain from doing
3006 // any other folding. This helps out other analyses which understand
3007 // non-obfuscated minimum and maximum idioms, such as ScalarEvolution
3008 // and CodeGen. And in this case, at least one of the comparison
3009 // operands has at least one user besides the compare (the select),
3010 // which would often largely negate the benefit of folding anyway.
3011 if (I.hasOneUse())
Chandler Carruthcdf47882014-03-09 03:16:01 +00003012 if (SelectInst *SI = dyn_cast<SelectInst>(*I.user_begin()))
Chris Lattner2188e402010-01-04 07:37:31 +00003013 if ((SI->getOperand(1) == Op0 && SI->getOperand(2) == Op1) ||
3014 (SI->getOperand(2) == Op0 && SI->getOperand(1) == Op1))
Craig Topperf40110f2014-04-25 05:29:35 +00003015 return nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +00003016
3017 // See if we are doing a comparison between a constant and an instruction that
3018 // can be folded into the comparison.
3019 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
Jim Grosbach129c52a2011-09-30 18:09:53 +00003020 // Since the RHS is a ConstantInt (CI), if the left hand side is an
3021 // instruction, see if that instruction also has constants so that the
3022 // instruction can be folded into the icmp
Chris Lattner2188e402010-01-04 07:37:31 +00003023 if (Instruction *LHSI = dyn_cast<Instruction>(Op0))
3024 if (Instruction *Res = visitICmpInstWithInstAndIntCst(I, LHSI, CI))
3025 return Res;
3026 }
3027
3028 // Handle icmp with constant (but not simple integer constant) RHS
3029 if (Constant *RHSC = dyn_cast<Constant>(Op1)) {
3030 if (Instruction *LHSI = dyn_cast<Instruction>(Op0))
3031 switch (LHSI->getOpcode()) {
3032 case Instruction::GetElementPtr:
3033 // icmp pred GEP (P, int 0, int 0, int 0), null -> icmp pred P, null
3034 if (RHSC->isNullValue() &&
3035 cast<GetElementPtrInst>(LHSI)->hasAllZeroIndices())
3036 return new ICmpInst(I.getPredicate(), LHSI->getOperand(0),
3037 Constant::getNullValue(LHSI->getOperand(0)->getType()));
3038 break;
3039 case Instruction::PHI:
3040 // Only fold icmp into the PHI if the phi and icmp are in the same
3041 // block. If in the same block, we're encouraging jump threading. If
3042 // not, we are just pessimizing the code by making an i1 phi.
3043 if (LHSI->getParent() == I.getParent())
Chris Lattnerea7131a2011-01-16 05:14:26 +00003044 if (Instruction *NV = FoldOpIntoPhi(I))
Chris Lattner2188e402010-01-04 07:37:31 +00003045 return NV;
3046 break;
3047 case Instruction::Select: {
3048 // If either operand of the select is a constant, we can fold the
3049 // comparison into the select arms, which will cause one to be
3050 // constant folded and the select turned into a bitwise or.
Craig Topperf40110f2014-04-25 05:29:35 +00003051 Value *Op1 = nullptr, *Op2 = nullptr;
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +00003052 ConstantInt *CI = 0;
3053 if (Constant *C = dyn_cast<Constant>(LHSI->getOperand(1))) {
Chris Lattner2188e402010-01-04 07:37:31 +00003054 Op1 = ConstantExpr::getICmp(I.getPredicate(), C, RHSC);
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +00003055 CI = dyn_cast<ConstantInt>(Op1);
3056 }
3057 if (Constant *C = dyn_cast<Constant>(LHSI->getOperand(2))) {
Chris Lattner2188e402010-01-04 07:37:31 +00003058 Op2 = ConstantExpr::getICmp(I.getPredicate(), C, RHSC);
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +00003059 CI = dyn_cast<ConstantInt>(Op2);
3060 }
Chris Lattner2188e402010-01-04 07:37:31 +00003061
3062 // We only want to perform this transformation if it will not lead to
3063 // additional code. This is true if either both sides of the select
3064 // fold to a constant (in which case the icmp is replaced with a select
3065 // which will usually simplify) or this is the only user of the
3066 // select (in which case we are trading a select+icmp for a simpler
Gerolf Hoflehnerec6217c2014-11-21 23:36:44 +00003067 // select+icmp) or all uses of the select can be replaced based on
3068 // dominance information ("Global cases").
3069 bool Transform = false;
3070 if (Op1 && Op2)
3071 Transform = true;
3072 else if (Op1 || Op2) {
3073 // Local case
3074 if (LHSI->hasOneUse())
3075 Transform = true;
3076 // Global cases
3077 else if (CI && !CI->isZero())
3078 // When Op1 is constant try replacing select with second operand.
3079 // Otherwise Op2 is constant and try replacing select with first
3080 // operand.
3081 Transform = replacedSelectWithOperand(cast<SelectInst>(LHSI), &I,
3082 Op1 ? 2 : 1);
3083 }
3084 if (Transform) {
Chris Lattner2188e402010-01-04 07:37:31 +00003085 if (!Op1)
3086 Op1 = Builder->CreateICmp(I.getPredicate(), LHSI->getOperand(1),
3087 RHSC, I.getName());
3088 if (!Op2)
3089 Op2 = Builder->CreateICmp(I.getPredicate(), LHSI->getOperand(2),
3090 RHSC, I.getName());
3091 return SelectInst::Create(LHSI->getOperand(0), Op1, Op2);
3092 }
3093 break;
3094 }
Chris Lattner2188e402010-01-04 07:37:31 +00003095 case Instruction::IntToPtr:
3096 // icmp pred inttoptr(X), null -> icmp pred X, 0
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003097 if (RHSC->isNullValue() && DL &&
3098 DL->getIntPtrType(RHSC->getType()) ==
Chris Lattner2188e402010-01-04 07:37:31 +00003099 LHSI->getOperand(0)->getType())
3100 return new ICmpInst(I.getPredicate(), LHSI->getOperand(0),
3101 Constant::getNullValue(LHSI->getOperand(0)->getType()));
3102 break;
3103
3104 case Instruction::Load:
3105 // Try to optimize things like "A[i] > 4" to index computations.
3106 if (GetElementPtrInst *GEP =
3107 dyn_cast<GetElementPtrInst>(LHSI->getOperand(0))) {
3108 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(GEP->getOperand(0)))
3109 if (GV->isConstant() && GV->hasDefinitiveInitializer() &&
3110 !cast<LoadInst>(LHSI)->isVolatile())
3111 if (Instruction *Res = FoldCmpLoadFromIndexedGlobal(GEP, GV, I))
3112 return Res;
3113 }
3114 break;
3115 }
3116 }
3117
3118 // If we can optimize a 'icmp GEP, P' or 'icmp P, GEP', do so now.
3119 if (GEPOperator *GEP = dyn_cast<GEPOperator>(Op0))
3120 if (Instruction *NI = FoldGEPICmp(GEP, Op1, I.getPredicate(), I))
3121 return NI;
3122 if (GEPOperator *GEP = dyn_cast<GEPOperator>(Op1))
3123 if (Instruction *NI = FoldGEPICmp(GEP, Op0,
3124 ICmpInst::getSwappedPredicate(I.getPredicate()), I))
3125 return NI;
3126
3127 // Test to see if the operands of the icmp are casted versions of other
3128 // values. If the ptr->ptr cast can be stripped off both arguments, we do so
3129 // now.
3130 if (BitCastInst *CI = dyn_cast<BitCastInst>(Op0)) {
Jim Grosbach129c52a2011-09-30 18:09:53 +00003131 if (Op0->getType()->isPointerTy() &&
3132 (isa<Constant>(Op1) || isa<BitCastInst>(Op1))) {
Chris Lattner2188e402010-01-04 07:37:31 +00003133 // We keep moving the cast from the left operand over to the right
3134 // operand, where it can often be eliminated completely.
3135 Op0 = CI->getOperand(0);
3136
3137 // If operand #1 is a bitcast instruction, it must also be a ptr->ptr cast
3138 // so eliminate it as well.
3139 if (BitCastInst *CI2 = dyn_cast<BitCastInst>(Op1))
3140 Op1 = CI2->getOperand(0);
3141
3142 // If Op1 is a constant, we can fold the cast into the constant.
3143 if (Op0->getType() != Op1->getType()) {
3144 if (Constant *Op1C = dyn_cast<Constant>(Op1)) {
3145 Op1 = ConstantExpr::getBitCast(Op1C, Op0->getType());
3146 } else {
3147 // Otherwise, cast the RHS right before the icmp
3148 Op1 = Builder->CreateBitCast(Op1, Op0->getType());
3149 }
3150 }
3151 return new ICmpInst(I.getPredicate(), Op0, Op1);
3152 }
3153 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00003154
Chris Lattner2188e402010-01-04 07:37:31 +00003155 if (isa<CastInst>(Op0)) {
3156 // Handle the special case of: icmp (cast bool to X), <cst>
3157 // This comes up when you have code like
3158 // int X = A < B;
3159 // if (X) ...
3160 // For generality, we handle any zero-extension of any operand comparison
3161 // with a constant or another cast from the same type.
3162 if (isa<Constant>(Op1) || isa<CastInst>(Op1))
3163 if (Instruction *R = visitICmpInstWithCastAndCast(I))
3164 return R;
3165 }
Chris Lattner2188e402010-01-04 07:37:31 +00003166
Duncan Sandse5220012011-02-17 07:46:37 +00003167 // Special logic for binary operators.
3168 BinaryOperator *BO0 = dyn_cast<BinaryOperator>(Op0);
3169 BinaryOperator *BO1 = dyn_cast<BinaryOperator>(Op1);
3170 if (BO0 || BO1) {
3171 CmpInst::Predicate Pred = I.getPredicate();
3172 bool NoOp0WrapProblem = false, NoOp1WrapProblem = false;
3173 if (BO0 && isa<OverflowingBinaryOperator>(BO0))
3174 NoOp0WrapProblem = ICmpInst::isEquality(Pred) ||
3175 (CmpInst::isUnsigned(Pred) && BO0->hasNoUnsignedWrap()) ||
3176 (CmpInst::isSigned(Pred) && BO0->hasNoSignedWrap());
3177 if (BO1 && isa<OverflowingBinaryOperator>(BO1))
3178 NoOp1WrapProblem = ICmpInst::isEquality(Pred) ||
3179 (CmpInst::isUnsigned(Pred) && BO1->hasNoUnsignedWrap()) ||
3180 (CmpInst::isSigned(Pred) && BO1->hasNoSignedWrap());
3181
3182 // Analyze the case when either Op0 or Op1 is an add instruction.
3183 // Op0 = A + B (or A and B are null); Op1 = C + D (or C and D are null).
Craig Topperf40110f2014-04-25 05:29:35 +00003184 Value *A = nullptr, *B = nullptr, *C = nullptr, *D = nullptr;
Duncan Sandse5220012011-02-17 07:46:37 +00003185 if (BO0 && BO0->getOpcode() == Instruction::Add)
3186 A = BO0->getOperand(0), B = BO0->getOperand(1);
3187 if (BO1 && BO1->getOpcode() == Instruction::Add)
3188 C = BO1->getOperand(0), D = BO1->getOperand(1);
3189
David Majnemer549f4f22014-11-01 09:09:51 +00003190 // icmp (X+cst) < 0 --> X < -cst
3191 if (NoOp0WrapProblem && ICmpInst::isSigned(Pred) && match(Op1, m_Zero()))
3192 if (ConstantInt *RHSC = dyn_cast_or_null<ConstantInt>(B))
3193 if (!RHSC->isMinValue(/*isSigned=*/true))
3194 return new ICmpInst(Pred, A, ConstantExpr::getNeg(RHSC));
3195
Duncan Sandse5220012011-02-17 07:46:37 +00003196 // icmp (X+Y), X -> icmp Y, 0 for equalities or if there is no overflow.
3197 if ((A == Op1 || B == Op1) && NoOp0WrapProblem)
3198 return new ICmpInst(Pred, A == Op1 ? B : A,
3199 Constant::getNullValue(Op1->getType()));
3200
3201 // icmp X, (X+Y) -> icmp 0, Y for equalities or if there is no overflow.
3202 if ((C == Op0 || D == Op0) && NoOp1WrapProblem)
3203 return new ICmpInst(Pred, Constant::getNullValue(Op0->getType()),
3204 C == Op0 ? D : C);
3205
Duncan Sands84653b32011-02-18 16:25:37 +00003206 // icmp (X+Y), (X+Z) -> icmp Y, Z for equalities or if there is no overflow.
Duncan Sandse5220012011-02-17 07:46:37 +00003207 if (A && C && (A == C || A == D || B == C || B == D) &&
3208 NoOp0WrapProblem && NoOp1WrapProblem &&
3209 // Try not to increase register pressure.
3210 BO0->hasOneUse() && BO1->hasOneUse()) {
3211 // Determine Y and Z in the form icmp (X+Y), (X+Z).
Duncan Sands1d3acdd2012-11-16 18:55:49 +00003212 Value *Y, *Z;
3213 if (A == C) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00003214 // C + B == C + D -> B == D
Duncan Sands1d3acdd2012-11-16 18:55:49 +00003215 Y = B;
3216 Z = D;
3217 } else if (A == D) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00003218 // D + B == C + D -> B == C
Duncan Sands1d3acdd2012-11-16 18:55:49 +00003219 Y = B;
3220 Z = C;
3221 } else if (B == C) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00003222 // A + C == C + D -> A == D
Duncan Sands1d3acdd2012-11-16 18:55:49 +00003223 Y = A;
3224 Z = D;
Duncan Sandsd7d8c092012-11-16 20:53:08 +00003225 } else {
3226 assert(B == D);
3227 // A + D == C + D -> A == C
Duncan Sands1d3acdd2012-11-16 18:55:49 +00003228 Y = A;
3229 Z = C;
3230 }
Duncan Sandse5220012011-02-17 07:46:37 +00003231 return new ICmpInst(Pred, Y, Z);
3232 }
3233
David Majnemerb81cd632013-04-11 20:05:46 +00003234 // icmp slt (X + -1), Y -> icmp sle X, Y
3235 if (A && NoOp0WrapProblem && Pred == CmpInst::ICMP_SLT &&
3236 match(B, m_AllOnes()))
3237 return new ICmpInst(CmpInst::ICMP_SLE, A, Op1);
3238
3239 // icmp sge (X + -1), Y -> icmp sgt X, Y
3240 if (A && NoOp0WrapProblem && Pred == CmpInst::ICMP_SGE &&
3241 match(B, m_AllOnes()))
3242 return new ICmpInst(CmpInst::ICMP_SGT, A, Op1);
3243
3244 // icmp sle (X + 1), Y -> icmp slt X, Y
3245 if (A && NoOp0WrapProblem && Pred == CmpInst::ICMP_SLE &&
3246 match(B, m_One()))
3247 return new ICmpInst(CmpInst::ICMP_SLT, A, Op1);
3248
3249 // icmp sgt (X + 1), Y -> icmp sge X, Y
3250 if (A && NoOp0WrapProblem && Pred == CmpInst::ICMP_SGT &&
3251 match(B, m_One()))
3252 return new ICmpInst(CmpInst::ICMP_SGE, A, Op1);
3253
3254 // if C1 has greater magnitude than C2:
3255 // icmp (X + C1), (Y + C2) -> icmp (X + C3), Y
3256 // s.t. C3 = C1 - C2
3257 //
3258 // if C2 has greater magnitude than C1:
3259 // icmp (X + C1), (Y + C2) -> icmp X, (Y + C3)
3260 // s.t. C3 = C2 - C1
3261 if (A && C && NoOp0WrapProblem && NoOp1WrapProblem &&
3262 (BO0->hasOneUse() || BO1->hasOneUse()) && !I.isUnsigned())
3263 if (ConstantInt *C1 = dyn_cast<ConstantInt>(B))
3264 if (ConstantInt *C2 = dyn_cast<ConstantInt>(D)) {
3265 const APInt &AP1 = C1->getValue();
3266 const APInt &AP2 = C2->getValue();
3267 if (AP1.isNegative() == AP2.isNegative()) {
3268 APInt AP1Abs = C1->getValue().abs();
3269 APInt AP2Abs = C2->getValue().abs();
3270 if (AP1Abs.uge(AP2Abs)) {
3271 ConstantInt *C3 = Builder->getInt(AP1 - AP2);
3272 Value *NewAdd = Builder->CreateNSWAdd(A, C3);
3273 return new ICmpInst(Pred, NewAdd, C);
3274 } else {
3275 ConstantInt *C3 = Builder->getInt(AP2 - AP1);
3276 Value *NewAdd = Builder->CreateNSWAdd(C, C3);
3277 return new ICmpInst(Pred, A, NewAdd);
3278 }
3279 }
3280 }
3281
3282
Duncan Sandse5220012011-02-17 07:46:37 +00003283 // Analyze the case when either Op0 or Op1 is a sub instruction.
3284 // Op0 = A - B (or A and B are null); Op1 = C - D (or C and D are null).
Craig Topperf40110f2014-04-25 05:29:35 +00003285 A = nullptr; B = nullptr; C = nullptr; D = nullptr;
Duncan Sandse5220012011-02-17 07:46:37 +00003286 if (BO0 && BO0->getOpcode() == Instruction::Sub)
3287 A = BO0->getOperand(0), B = BO0->getOperand(1);
3288 if (BO1 && BO1->getOpcode() == Instruction::Sub)
3289 C = BO1->getOperand(0), D = BO1->getOperand(1);
3290
Duncan Sands84653b32011-02-18 16:25:37 +00003291 // icmp (X-Y), X -> icmp 0, Y for equalities or if there is no overflow.
3292 if (A == Op1 && NoOp0WrapProblem)
3293 return new ICmpInst(Pred, Constant::getNullValue(Op1->getType()), B);
3294
3295 // icmp X, (X-Y) -> icmp Y, 0 for equalities or if there is no overflow.
3296 if (C == Op0 && NoOp1WrapProblem)
3297 return new ICmpInst(Pred, D, Constant::getNullValue(Op0->getType()));
3298
3299 // icmp (Y-X), (Z-X) -> icmp Y, Z for equalities or if there is no overflow.
Duncan Sandse5220012011-02-17 07:46:37 +00003300 if (B && D && B == D && NoOp0WrapProblem && NoOp1WrapProblem &&
3301 // Try not to increase register pressure.
3302 BO0->hasOneUse() && BO1->hasOneUse())
3303 return new ICmpInst(Pred, A, C);
3304
Duncan Sands84653b32011-02-18 16:25:37 +00003305 // icmp (X-Y), (X-Z) -> icmp Z, Y for equalities or if there is no overflow.
3306 if (A && C && A == C && NoOp0WrapProblem && NoOp1WrapProblem &&
3307 // Try not to increase register pressure.
3308 BO0->hasOneUse() && BO1->hasOneUse())
3309 return new ICmpInst(Pred, D, B);
3310
David Majnemer186c9422014-05-15 00:02:20 +00003311 // icmp (0-X) < cst --> x > -cst
3312 if (NoOp0WrapProblem && ICmpInst::isSigned(Pred)) {
3313 Value *X;
3314 if (match(BO0, m_Neg(m_Value(X))))
3315 if (ConstantInt *RHSC = dyn_cast<ConstantInt>(Op1))
3316 if (!RHSC->isMinValue(/*isSigned=*/true))
3317 return new ICmpInst(I.getSwappedPredicate(), X,
3318 ConstantExpr::getNeg(RHSC));
3319 }
3320
Craig Topperf40110f2014-04-25 05:29:35 +00003321 BinaryOperator *SRem = nullptr;
Nick Lewyckyafc80982011-03-08 06:29:47 +00003322 // icmp (srem X, Y), Y
Nick Lewycky25cc3382011-03-05 04:28:48 +00003323 if (BO0 && BO0->getOpcode() == Instruction::SRem &&
3324 Op1 == BO0->getOperand(1))
3325 SRem = BO0;
Nick Lewyckyafc80982011-03-08 06:29:47 +00003326 // icmp Y, (srem X, Y)
Nick Lewycky25cc3382011-03-05 04:28:48 +00003327 else if (BO1 && BO1->getOpcode() == Instruction::SRem &&
3328 Op0 == BO1->getOperand(1))
3329 SRem = BO1;
3330 if (SRem) {
3331 // We don't check hasOneUse to avoid increasing register pressure because
3332 // the value we use is the same value this instruction was already using.
3333 switch (SRem == BO0 ? ICmpInst::getSwappedPredicate(Pred) : Pred) {
3334 default: break;
3335 case ICmpInst::ICMP_EQ:
Nick Lewycky92db8e82011-03-06 03:36:19 +00003336 return ReplaceInstUsesWith(I, ConstantInt::getFalse(I.getType()));
Nick Lewycky25cc3382011-03-05 04:28:48 +00003337 case ICmpInst::ICMP_NE:
Nick Lewycky92db8e82011-03-06 03:36:19 +00003338 return ReplaceInstUsesWith(I, ConstantInt::getTrue(I.getType()));
Nick Lewycky25cc3382011-03-05 04:28:48 +00003339 case ICmpInst::ICMP_SGT:
3340 case ICmpInst::ICMP_SGE:
3341 return new ICmpInst(ICmpInst::ICMP_SGT, SRem->getOperand(1),
3342 Constant::getAllOnesValue(SRem->getType()));
3343 case ICmpInst::ICMP_SLT:
3344 case ICmpInst::ICMP_SLE:
3345 return new ICmpInst(ICmpInst::ICMP_SLT, SRem->getOperand(1),
3346 Constant::getNullValue(SRem->getType()));
3347 }
3348 }
3349
Duncan Sandse5220012011-02-17 07:46:37 +00003350 if (BO0 && BO1 && BO0->getOpcode() == BO1->getOpcode() &&
3351 BO0->hasOneUse() && BO1->hasOneUse() &&
3352 BO0->getOperand(1) == BO1->getOperand(1)) {
3353 switch (BO0->getOpcode()) {
3354 default: break;
3355 case Instruction::Add:
3356 case Instruction::Sub:
3357 case Instruction::Xor:
3358 if (I.isEquality()) // a+x icmp eq/ne b+x --> a icmp b
3359 return new ICmpInst(I.getPredicate(), BO0->getOperand(0),
3360 BO1->getOperand(0));
3361 // icmp u/s (a ^ signbit), (b ^ signbit) --> icmp s/u a, b
3362 if (ConstantInt *CI = dyn_cast<ConstantInt>(BO0->getOperand(1))) {
3363 if (CI->getValue().isSignBit()) {
3364 ICmpInst::Predicate Pred = I.isSigned()
3365 ? I.getUnsignedPredicate()
3366 : I.getSignedPredicate();
3367 return new ICmpInst(Pred, BO0->getOperand(0),
3368 BO1->getOperand(0));
Chris Lattner2188e402010-01-04 07:37:31 +00003369 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00003370
Chris Lattnerb1a15122011-07-15 06:08:15 +00003371 if (CI->isMaxValue(true)) {
Duncan Sandse5220012011-02-17 07:46:37 +00003372 ICmpInst::Predicate Pred = I.isSigned()
3373 ? I.getUnsignedPredicate()
3374 : I.getSignedPredicate();
3375 Pred = I.getSwappedPredicate(Pred);
3376 return new ICmpInst(Pred, BO0->getOperand(0),
3377 BO1->getOperand(0));
3378 }
Chris Lattner2188e402010-01-04 07:37:31 +00003379 }
Duncan Sandse5220012011-02-17 07:46:37 +00003380 break;
3381 case Instruction::Mul:
3382 if (!I.isEquality())
3383 break;
3384
3385 if (ConstantInt *CI = dyn_cast<ConstantInt>(BO0->getOperand(1))) {
3386 // a * Cst icmp eq/ne b * Cst --> a & Mask icmp b & Mask
3387 // Mask = -1 >> count-trailing-zeros(Cst).
3388 if (!CI->isZero() && !CI->isOne()) {
3389 const APInt &AP = CI->getValue();
Jim Grosbach129c52a2011-09-30 18:09:53 +00003390 ConstantInt *Mask = ConstantInt::get(I.getContext(),
Duncan Sandse5220012011-02-17 07:46:37 +00003391 APInt::getLowBitsSet(AP.getBitWidth(),
3392 AP.getBitWidth() -
3393 AP.countTrailingZeros()));
3394 Value *And1 = Builder->CreateAnd(BO0->getOperand(0), Mask);
3395 Value *And2 = Builder->CreateAnd(BO1->getOperand(0), Mask);
3396 return new ICmpInst(I.getPredicate(), And1, And2);
3397 }
3398 }
3399 break;
Nick Lewycky9719a712011-03-05 05:19:11 +00003400 case Instruction::UDiv:
3401 case Instruction::LShr:
3402 if (I.isSigned())
3403 break;
3404 // fall-through
3405 case Instruction::SDiv:
3406 case Instruction::AShr:
Eli Friedman8a20e662011-05-05 21:59:18 +00003407 if (!BO0->isExact() || !BO1->isExact())
Nick Lewycky9719a712011-03-05 05:19:11 +00003408 break;
3409 return new ICmpInst(I.getPredicate(), BO0->getOperand(0),
3410 BO1->getOperand(0));
3411 case Instruction::Shl: {
3412 bool NUW = BO0->hasNoUnsignedWrap() && BO1->hasNoUnsignedWrap();
3413 bool NSW = BO0->hasNoSignedWrap() && BO1->hasNoSignedWrap();
3414 if (!NUW && !NSW)
3415 break;
3416 if (!NSW && I.isSigned())
3417 break;
3418 return new ICmpInst(I.getPredicate(), BO0->getOperand(0),
3419 BO1->getOperand(0));
3420 }
Chris Lattner2188e402010-01-04 07:37:31 +00003421 }
3422 }
3423 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00003424
Chris Lattner2188e402010-01-04 07:37:31 +00003425 { Value *A, *B;
David Majnemer1a08acc2013-04-12 17:25:07 +00003426 // Transform (A & ~B) == 0 --> (A & B) != 0
3427 // and (A & ~B) != 0 --> (A & B) == 0
3428 // if A is a power of 2.
3429 if (match(Op0, m_And(m_Value(A), m_Not(m_Value(B)))) &&
Chandler Carruth66b31302015-01-04 12:03:27 +00003430 match(Op1, m_Zero()) &&
3431 isKnownToBeAPowerOfTwo(A, false, 0, AC, &I, DT) && I.isEquality())
David Majnemer1a08acc2013-04-12 17:25:07 +00003432 return new ICmpInst(I.getInversePredicate(),
3433 Builder->CreateAnd(A, B),
3434 Op1);
3435
Chris Lattnerf3c4eef2011-01-15 05:41:33 +00003436 // ~x < ~y --> y < x
3437 // ~x < cst --> ~cst < x
3438 if (match(Op0, m_Not(m_Value(A)))) {
3439 if (match(Op1, m_Not(m_Value(B))))
3440 return new ICmpInst(I.getPredicate(), B, A);
Chris Lattner497459d2011-01-15 05:42:47 +00003441 if (ConstantInt *RHSC = dyn_cast<ConstantInt>(Op1))
Chris Lattnerf3c4eef2011-01-15 05:41:33 +00003442 return new ICmpInst(I.getPredicate(), ConstantExpr::getNot(RHSC), A);
3443 }
Chris Lattner5e0c0c72010-12-19 19:37:52 +00003444
3445 // (a+b) <u a --> llvm.uadd.with.overflow.
3446 // (a+b) <u b --> llvm.uadd.with.overflow.
3447 if (I.getPredicate() == ICmpInst::ICMP_ULT &&
Jim Grosbach129c52a2011-09-30 18:09:53 +00003448 match(Op0, m_Add(m_Value(A), m_Value(B))) &&
Chris Lattner5e0c0c72010-12-19 19:37:52 +00003449 (Op1 == A || Op1 == B))
3450 if (Instruction *R = ProcessUAddIdiom(I, Op0, *this))
3451 return R;
Jim Grosbach129c52a2011-09-30 18:09:53 +00003452
Chris Lattner5e0c0c72010-12-19 19:37:52 +00003453 // a >u (a+b) --> llvm.uadd.with.overflow.
3454 // b >u (a+b) --> llvm.uadd.with.overflow.
3455 if (I.getPredicate() == ICmpInst::ICMP_UGT &&
3456 match(Op1, m_Add(m_Value(A), m_Value(B))) &&
3457 (Op0 == A || Op0 == B))
3458 if (Instruction *R = ProcessUAddIdiom(I, Op1, *this))
3459 return R;
Serge Pavlov4bb54d52014-04-13 18:23:41 +00003460
3461 // (zext a) * (zext b) --> llvm.umul.with.overflow.
3462 if (match(Op0, m_Mul(m_ZExt(m_Value(A)), m_ZExt(m_Value(B))))) {
3463 if (Instruction *R = ProcessUMulZExtIdiom(I, Op0, Op1, *this))
3464 return R;
3465 }
3466 if (match(Op1, m_Mul(m_ZExt(m_Value(A)), m_ZExt(m_Value(B))))) {
3467 if (Instruction *R = ProcessUMulZExtIdiom(I, Op1, Op0, *this))
3468 return R;
3469 }
Chris Lattner2188e402010-01-04 07:37:31 +00003470 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00003471
Chris Lattner2188e402010-01-04 07:37:31 +00003472 if (I.isEquality()) {
3473 Value *A, *B, *C, *D;
Duncan Sands84653b32011-02-18 16:25:37 +00003474
Chris Lattner2188e402010-01-04 07:37:31 +00003475 if (match(Op0, m_Xor(m_Value(A), m_Value(B)))) {
3476 if (A == Op1 || B == Op1) { // (A^B) == A -> B == 0
3477 Value *OtherVal = A == Op1 ? B : A;
3478 return new ICmpInst(I.getPredicate(), OtherVal,
3479 Constant::getNullValue(A->getType()));
3480 }
3481
3482 if (match(Op1, m_Xor(m_Value(C), m_Value(D)))) {
3483 // A^c1 == C^c2 --> A == C^(c1^c2)
3484 ConstantInt *C1, *C2;
3485 if (match(B, m_ConstantInt(C1)) &&
3486 match(D, m_ConstantInt(C2)) && Op1->hasOneUse()) {
Jakub Staszakbddea112013-06-06 20:18:46 +00003487 Constant *NC = Builder->getInt(C1->getValue() ^ C2->getValue());
Benjamin Kramer547b6c52011-09-27 20:39:19 +00003488 Value *Xor = Builder->CreateXor(C, NC);
Chris Lattner2188e402010-01-04 07:37:31 +00003489 return new ICmpInst(I.getPredicate(), A, Xor);
3490 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00003491
Chris Lattner2188e402010-01-04 07:37:31 +00003492 // A^B == A^D -> B == D
3493 if (A == C) return new ICmpInst(I.getPredicate(), B, D);
3494 if (A == D) return new ICmpInst(I.getPredicate(), B, C);
3495 if (B == C) return new ICmpInst(I.getPredicate(), A, D);
3496 if (B == D) return new ICmpInst(I.getPredicate(), A, C);
3497 }
3498 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00003499
Chris Lattner2188e402010-01-04 07:37:31 +00003500 if (match(Op1, m_Xor(m_Value(A), m_Value(B))) &&
3501 (A == Op0 || B == Op0)) {
3502 // A == (A^B) -> B == 0
3503 Value *OtherVal = A == Op0 ? B : A;
3504 return new ICmpInst(I.getPredicate(), OtherVal,
3505 Constant::getNullValue(A->getType()));
3506 }
3507
Chris Lattner2188e402010-01-04 07:37:31 +00003508 // (X&Z) == (Y&Z) -> (X^Y) & Z == 0
Jim Grosbach129c52a2011-09-30 18:09:53 +00003509 if (match(Op0, m_OneUse(m_And(m_Value(A), m_Value(B)))) &&
Chris Lattner31b106d2011-04-26 20:02:45 +00003510 match(Op1, m_OneUse(m_And(m_Value(C), m_Value(D))))) {
Craig Topperf40110f2014-04-25 05:29:35 +00003511 Value *X = nullptr, *Y = nullptr, *Z = nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +00003512
Chris Lattner2188e402010-01-04 07:37:31 +00003513 if (A == C) {
3514 X = B; Y = D; Z = A;
3515 } else if (A == D) {
3516 X = B; Y = C; Z = A;
3517 } else if (B == C) {
3518 X = A; Y = D; Z = B;
3519 } else if (B == D) {
3520 X = A; Y = C; Z = B;
3521 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00003522
Chris Lattner2188e402010-01-04 07:37:31 +00003523 if (X) { // Build (X^Y) & Z
Benjamin Kramer547b6c52011-09-27 20:39:19 +00003524 Op1 = Builder->CreateXor(X, Y);
3525 Op1 = Builder->CreateAnd(Op1, Z);
Chris Lattner2188e402010-01-04 07:37:31 +00003526 I.setOperand(0, Op1);
3527 I.setOperand(1, Constant::getNullValue(Op1->getType()));
3528 return &I;
3529 }
3530 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00003531
Benjamin Kramer8b8a7692012-06-10 20:35:00 +00003532 // Transform (zext A) == (B & (1<<X)-1) --> A == (trunc B)
Benjamin Kramer21501452012-06-11 08:01:25 +00003533 // and (B & (1<<X)-1) == (zext A) --> A == (trunc B)
Benjamin Kramer8b8a7692012-06-10 20:35:00 +00003534 ConstantInt *Cst1;
Benjamin Kramer21501452012-06-11 08:01:25 +00003535 if ((Op0->hasOneUse() &&
3536 match(Op0, m_ZExt(m_Value(A))) &&
3537 match(Op1, m_And(m_Value(B), m_ConstantInt(Cst1)))) ||
3538 (Op1->hasOneUse() &&
3539 match(Op0, m_And(m_Value(B), m_ConstantInt(Cst1))) &&
3540 match(Op1, m_ZExt(m_Value(A))))) {
Benjamin Kramer8b8a7692012-06-10 20:35:00 +00003541 APInt Pow2 = Cst1->getValue() + 1;
3542 if (Pow2.isPowerOf2() && isa<IntegerType>(A->getType()) &&
3543 Pow2.logBase2() == cast<IntegerType>(A->getType())->getBitWidth())
3544 return new ICmpInst(I.getPredicate(), A,
3545 Builder->CreateTrunc(B, A->getType()));
3546 }
3547
Benjamin Kramer03f3e242013-11-16 16:00:48 +00003548 // (A >> C) == (B >> C) --> (A^B) u< (1 << C)
3549 // For lshr and ashr pairs.
3550 if ((match(Op0, m_OneUse(m_LShr(m_Value(A), m_ConstantInt(Cst1)))) &&
3551 match(Op1, m_OneUse(m_LShr(m_Value(B), m_Specific(Cst1))))) ||
3552 (match(Op0, m_OneUse(m_AShr(m_Value(A), m_ConstantInt(Cst1)))) &&
3553 match(Op1, m_OneUse(m_AShr(m_Value(B), m_Specific(Cst1)))))) {
3554 unsigned TypeBits = Cst1->getBitWidth();
3555 unsigned ShAmt = (unsigned)Cst1->getLimitedValue(TypeBits);
3556 if (ShAmt < TypeBits && ShAmt != 0) {
3557 ICmpInst::Predicate Pred = I.getPredicate() == ICmpInst::ICMP_NE
3558 ? ICmpInst::ICMP_UGE
3559 : ICmpInst::ICMP_ULT;
3560 Value *Xor = Builder->CreateXor(A, B, I.getName() + ".unshifted");
3561 APInt CmpVal = APInt::getOneBitSet(TypeBits, ShAmt);
3562 return new ICmpInst(Pred, Xor, Builder->getInt(CmpVal));
3563 }
3564 }
3565
Chris Lattner1b06c712011-04-26 20:18:20 +00003566 // Transform "icmp eq (trunc (lshr(X, cst1)), cst" to
3567 // "icmp (and X, mask), cst"
3568 uint64_t ShAmt = 0;
Chris Lattner1b06c712011-04-26 20:18:20 +00003569 if (Op0->hasOneUse() &&
3570 match(Op0, m_Trunc(m_OneUse(m_LShr(m_Value(A),
3571 m_ConstantInt(ShAmt))))) &&
3572 match(Op1, m_ConstantInt(Cst1)) &&
3573 // Only do this when A has multiple uses. This is most important to do
3574 // when it exposes other optimizations.
3575 !A->hasOneUse()) {
3576 unsigned ASize =cast<IntegerType>(A->getType())->getPrimitiveSizeInBits();
Jim Grosbach129c52a2011-09-30 18:09:53 +00003577
Chris Lattner1b06c712011-04-26 20:18:20 +00003578 if (ShAmt < ASize) {
3579 APInt MaskV =
3580 APInt::getLowBitsSet(ASize, Op0->getType()->getPrimitiveSizeInBits());
3581 MaskV <<= ShAmt;
Jim Grosbach129c52a2011-09-30 18:09:53 +00003582
Chris Lattner1b06c712011-04-26 20:18:20 +00003583 APInt CmpV = Cst1->getValue().zext(ASize);
3584 CmpV <<= ShAmt;
Jim Grosbach129c52a2011-09-30 18:09:53 +00003585
Chris Lattner1b06c712011-04-26 20:18:20 +00003586 Value *Mask = Builder->CreateAnd(A, Builder->getInt(MaskV));
3587 return new ICmpInst(I.getPredicate(), Mask, Builder->getInt(CmpV));
3588 }
3589 }
Chris Lattner2188e402010-01-04 07:37:31 +00003590 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00003591
David Majnemerc1eca5a2014-11-06 23:23:30 +00003592 // The 'cmpxchg' instruction returns an aggregate containing the old value and
3593 // an i1 which indicates whether or not we successfully did the swap.
3594 //
3595 // Replace comparisons between the old value and the expected value with the
3596 // indicator that 'cmpxchg' returns.
3597 //
3598 // N.B. This transform is only valid when the 'cmpxchg' is not permitted to
3599 // spuriously fail. In those cases, the old value may equal the expected
3600 // value but it is possible for the swap to not occur.
3601 if (I.getPredicate() == ICmpInst::ICMP_EQ)
3602 if (auto *EVI = dyn_cast<ExtractValueInst>(Op0))
3603 if (auto *ACXI = dyn_cast<AtomicCmpXchgInst>(EVI->getAggregateOperand()))
3604 if (EVI->getIndices()[0] == 0 && ACXI->getCompareOperand() == Op1 &&
3605 !ACXI->isWeak())
3606 return ExtractValueInst::Create(ACXI, 1);
3607
Chris Lattner2188e402010-01-04 07:37:31 +00003608 {
3609 Value *X; ConstantInt *Cst;
3610 // icmp X+Cst, X
3611 if (match(Op0, m_Add(m_Value(X), m_ConstantInt(Cst))) && Op1 == X)
Benjamin Kramer0e2d1622013-09-20 22:12:42 +00003612 return FoldICmpAddOpCst(I, X, Cst, I.getPredicate());
Chris Lattner2188e402010-01-04 07:37:31 +00003613
3614 // icmp X, X+Cst
3615 if (match(Op1, m_Add(m_Value(X), m_ConstantInt(Cst))) && Op0 == X)
Benjamin Kramer0e2d1622013-09-20 22:12:42 +00003616 return FoldICmpAddOpCst(I, X, Cst, I.getSwappedPredicate());
Chris Lattner2188e402010-01-04 07:37:31 +00003617 }
Craig Topperf40110f2014-04-25 05:29:35 +00003618 return Changed ? &I : nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +00003619}
3620
Chris Lattner2188e402010-01-04 07:37:31 +00003621/// FoldFCmp_IntToFP_Cst - Fold fcmp ([us]itofp x, cst) if possible.
Chris Lattner2188e402010-01-04 07:37:31 +00003622Instruction *InstCombiner::FoldFCmp_IntToFP_Cst(FCmpInst &I,
3623 Instruction *LHSI,
3624 Constant *RHSC) {
Craig Topperf40110f2014-04-25 05:29:35 +00003625 if (!isa<ConstantFP>(RHSC)) return nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +00003626 const APFloat &RHS = cast<ConstantFP>(RHSC)->getValueAPF();
Jim Grosbach129c52a2011-09-30 18:09:53 +00003627
Chris Lattner2188e402010-01-04 07:37:31 +00003628 // Get the width of the mantissa. We don't want to hack on conversions that
3629 // might lose information from the integer, e.g. "i64 -> float"
3630 int MantissaWidth = LHSI->getType()->getFPMantissaWidth();
Craig Topperf40110f2014-04-25 05:29:35 +00003631 if (MantissaWidth == -1) return nullptr; // Unknown.
Jim Grosbach129c52a2011-09-30 18:09:53 +00003632
Matt Arsenault55e73122015-01-06 15:50:59 +00003633 IntegerType *IntTy = cast<IntegerType>(LHSI->getOperand(0)->getType());
3634
Chris Lattner2188e402010-01-04 07:37:31 +00003635 // Check to see that the input is converted from an integer type that is small
3636 // enough that preserves all bits. TODO: check here for "known" sign bits.
3637 // This would allow us to handle (fptosi (x >>s 62) to float) if x is i64 f.e.
Matt Arsenault55e73122015-01-06 15:50:59 +00003638 unsigned InputSize = IntTy->getScalarSizeInBits();
Jim Grosbach129c52a2011-09-30 18:09:53 +00003639
Chris Lattner2188e402010-01-04 07:37:31 +00003640 // If this is a uitofp instruction, we need an extra bit to hold the sign.
3641 bool LHSUnsigned = isa<UIToFPInst>(LHSI);
3642 if (LHSUnsigned)
3643 ++InputSize;
Jim Grosbach129c52a2011-09-30 18:09:53 +00003644
Matt Arsenault55e73122015-01-06 15:50:59 +00003645 if (I.isEquality()) {
3646 FCmpInst::Predicate P = I.getPredicate();
3647 bool IsExact = false;
3648 APSInt RHSCvt(IntTy->getBitWidth(), LHSUnsigned);
3649 RHS.convertToInteger(RHSCvt, APFloat::rmNearestTiesToEven, &IsExact);
3650
3651 // If the floating point constant isn't an integer value, we know if we will
3652 // ever compare equal / not equal to it.
3653 if (!IsExact) {
3654 // TODO: Can never be -0.0 and other non-representable values
3655 APFloat RHSRoundInt(RHS);
3656 RHSRoundInt.roundToIntegral(APFloat::rmNearestTiesToEven);
3657 if (RHS.compare(RHSRoundInt) != APFloat::cmpEqual) {
3658 if (P == FCmpInst::FCMP_OEQ || P == FCmpInst::FCMP_UEQ)
3659 return ReplaceInstUsesWith(I, Builder->getFalse());
3660
3661 assert(P == FCmpInst::FCMP_ONE || P == FCmpInst::FCMP_UNE);
3662 return ReplaceInstUsesWith(I, Builder->getTrue());
3663 }
3664 }
3665
3666 // TODO: If the constant is exactly representable, is it always OK to do
3667 // equality compares as integer?
3668 }
3669
3670 // Comparisons with zero are a special case where we know we won't lose
3671 // information.
3672 bool IsCmpZero = RHS.isPosZero();
3673
Chris Lattner2188e402010-01-04 07:37:31 +00003674 // If the conversion would lose info, don't hack on this.
Matt Arsenault55e73122015-01-06 15:50:59 +00003675 if ((int)InputSize > MantissaWidth && !IsCmpZero)
Craig Topperf40110f2014-04-25 05:29:35 +00003676 return nullptr;
Jim Grosbach129c52a2011-09-30 18:09:53 +00003677
Chris Lattner2188e402010-01-04 07:37:31 +00003678 // Otherwise, we can potentially simplify the comparison. We know that it
3679 // will always come through as an integer value and we know the constant is
3680 // not a NAN (it would have been previously simplified).
3681 assert(!RHS.isNaN() && "NaN comparison not already folded!");
Jim Grosbach129c52a2011-09-30 18:09:53 +00003682
Chris Lattner2188e402010-01-04 07:37:31 +00003683 ICmpInst::Predicate Pred;
3684 switch (I.getPredicate()) {
3685 default: llvm_unreachable("Unexpected predicate!");
3686 case FCmpInst::FCMP_UEQ:
3687 case FCmpInst::FCMP_OEQ:
3688 Pred = ICmpInst::ICMP_EQ;
3689 break;
3690 case FCmpInst::FCMP_UGT:
3691 case FCmpInst::FCMP_OGT:
3692 Pred = LHSUnsigned ? ICmpInst::ICMP_UGT : ICmpInst::ICMP_SGT;
3693 break;
3694 case FCmpInst::FCMP_UGE:
3695 case FCmpInst::FCMP_OGE:
3696 Pred = LHSUnsigned ? ICmpInst::ICMP_UGE : ICmpInst::ICMP_SGE;
3697 break;
3698 case FCmpInst::FCMP_ULT:
3699 case FCmpInst::FCMP_OLT:
3700 Pred = LHSUnsigned ? ICmpInst::ICMP_ULT : ICmpInst::ICMP_SLT;
3701 break;
3702 case FCmpInst::FCMP_ULE:
3703 case FCmpInst::FCMP_OLE:
3704 Pred = LHSUnsigned ? ICmpInst::ICMP_ULE : ICmpInst::ICMP_SLE;
3705 break;
3706 case FCmpInst::FCMP_UNE:
3707 case FCmpInst::FCMP_ONE:
3708 Pred = ICmpInst::ICMP_NE;
3709 break;
3710 case FCmpInst::FCMP_ORD:
Jakub Staszakbddea112013-06-06 20:18:46 +00003711 return ReplaceInstUsesWith(I, Builder->getTrue());
Chris Lattner2188e402010-01-04 07:37:31 +00003712 case FCmpInst::FCMP_UNO:
Jakub Staszakbddea112013-06-06 20:18:46 +00003713 return ReplaceInstUsesWith(I, Builder->getFalse());
Chris Lattner2188e402010-01-04 07:37:31 +00003714 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00003715
Chris Lattner2188e402010-01-04 07:37:31 +00003716 // Now we know that the APFloat is a normal number, zero or inf.
Jim Grosbach129c52a2011-09-30 18:09:53 +00003717
Chris Lattner2188e402010-01-04 07:37:31 +00003718 // See if the FP constant is too large for the integer. For example,
3719 // comparing an i8 to 300.0.
3720 unsigned IntWidth = IntTy->getScalarSizeInBits();
Jim Grosbach129c52a2011-09-30 18:09:53 +00003721
Chris Lattner2188e402010-01-04 07:37:31 +00003722 if (!LHSUnsigned) {
3723 // If the RHS value is > SignedMax, fold the comparison. This handles +INF
3724 // and large values.
Michael Gottesman79b09672013-06-27 21:58:19 +00003725 APFloat SMax(RHS.getSemantics());
Chris Lattner2188e402010-01-04 07:37:31 +00003726 SMax.convertFromAPInt(APInt::getSignedMaxValue(IntWidth), true,
3727 APFloat::rmNearestTiesToEven);
3728 if (SMax.compare(RHS) == APFloat::cmpLessThan) { // smax < 13123.0
3729 if (Pred == ICmpInst::ICMP_NE || Pred == ICmpInst::ICMP_SLT ||
3730 Pred == ICmpInst::ICMP_SLE)
Jakub Staszakbddea112013-06-06 20:18:46 +00003731 return ReplaceInstUsesWith(I, Builder->getTrue());
3732 return ReplaceInstUsesWith(I, Builder->getFalse());
Chris Lattner2188e402010-01-04 07:37:31 +00003733 }
3734 } else {
3735 // If the RHS value is > UnsignedMax, fold the comparison. This handles
3736 // +INF and large values.
Michael Gottesman79b09672013-06-27 21:58:19 +00003737 APFloat UMax(RHS.getSemantics());
Chris Lattner2188e402010-01-04 07:37:31 +00003738 UMax.convertFromAPInt(APInt::getMaxValue(IntWidth), false,
3739 APFloat::rmNearestTiesToEven);
3740 if (UMax.compare(RHS) == APFloat::cmpLessThan) { // umax < 13123.0
3741 if (Pred == ICmpInst::ICMP_NE || Pred == ICmpInst::ICMP_ULT ||
3742 Pred == ICmpInst::ICMP_ULE)
Jakub Staszakbddea112013-06-06 20:18:46 +00003743 return ReplaceInstUsesWith(I, Builder->getTrue());
3744 return ReplaceInstUsesWith(I, Builder->getFalse());
Chris Lattner2188e402010-01-04 07:37:31 +00003745 }
3746 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00003747
Chris Lattner2188e402010-01-04 07:37:31 +00003748 if (!LHSUnsigned) {
3749 // See if the RHS value is < SignedMin.
Michael Gottesman79b09672013-06-27 21:58:19 +00003750 APFloat SMin(RHS.getSemantics());
Chris Lattner2188e402010-01-04 07:37:31 +00003751 SMin.convertFromAPInt(APInt::getSignedMinValue(IntWidth), true,
3752 APFloat::rmNearestTiesToEven);
3753 if (SMin.compare(RHS) == APFloat::cmpGreaterThan) { // smin > 12312.0
3754 if (Pred == ICmpInst::ICMP_NE || Pred == ICmpInst::ICMP_SGT ||
3755 Pred == ICmpInst::ICMP_SGE)
Jakub Staszakbddea112013-06-06 20:18:46 +00003756 return ReplaceInstUsesWith(I, Builder->getTrue());
3757 return ReplaceInstUsesWith(I, Builder->getFalse());
Chris Lattner2188e402010-01-04 07:37:31 +00003758 }
Devang Patel698452b2012-02-13 23:05:18 +00003759 } else {
3760 // See if the RHS value is < UnsignedMin.
Michael Gottesman79b09672013-06-27 21:58:19 +00003761 APFloat SMin(RHS.getSemantics());
Devang Patel698452b2012-02-13 23:05:18 +00003762 SMin.convertFromAPInt(APInt::getMinValue(IntWidth), true,
3763 APFloat::rmNearestTiesToEven);
3764 if (SMin.compare(RHS) == APFloat::cmpGreaterThan) { // umin > 12312.0
3765 if (Pred == ICmpInst::ICMP_NE || Pred == ICmpInst::ICMP_UGT ||
3766 Pred == ICmpInst::ICMP_UGE)
Jakub Staszakbddea112013-06-06 20:18:46 +00003767 return ReplaceInstUsesWith(I, Builder->getTrue());
3768 return ReplaceInstUsesWith(I, Builder->getFalse());
Devang Patel698452b2012-02-13 23:05:18 +00003769 }
Chris Lattner2188e402010-01-04 07:37:31 +00003770 }
3771
3772 // Okay, now we know that the FP constant fits in the range [SMIN, SMAX] or
3773 // [0, UMAX], but it may still be fractional. See if it is fractional by
3774 // casting the FP value to the integer value and back, checking for equality.
3775 // Don't do this for zero, because -0.0 is not fractional.
3776 Constant *RHSInt = LHSUnsigned
3777 ? ConstantExpr::getFPToUI(RHSC, IntTy)
3778 : ConstantExpr::getFPToSI(RHSC, IntTy);
3779 if (!RHS.isZero()) {
3780 bool Equal = LHSUnsigned
3781 ? ConstantExpr::getUIToFP(RHSInt, RHSC->getType()) == RHSC
3782 : ConstantExpr::getSIToFP(RHSInt, RHSC->getType()) == RHSC;
3783 if (!Equal) {
3784 // If we had a comparison against a fractional value, we have to adjust
3785 // the compare predicate and sometimes the value. RHSC is rounded towards
3786 // zero at this point.
3787 switch (Pred) {
3788 default: llvm_unreachable("Unexpected integer comparison!");
3789 case ICmpInst::ICMP_NE: // (float)int != 4.4 --> true
Jakub Staszakbddea112013-06-06 20:18:46 +00003790 return ReplaceInstUsesWith(I, Builder->getTrue());
Chris Lattner2188e402010-01-04 07:37:31 +00003791 case ICmpInst::ICMP_EQ: // (float)int == 4.4 --> false
Jakub Staszakbddea112013-06-06 20:18:46 +00003792 return ReplaceInstUsesWith(I, Builder->getFalse());
Chris Lattner2188e402010-01-04 07:37:31 +00003793 case ICmpInst::ICMP_ULE:
3794 // (float)int <= 4.4 --> int <= 4
3795 // (float)int <= -4.4 --> false
3796 if (RHS.isNegative())
Jakub Staszakbddea112013-06-06 20:18:46 +00003797 return ReplaceInstUsesWith(I, Builder->getFalse());
Chris Lattner2188e402010-01-04 07:37:31 +00003798 break;
3799 case ICmpInst::ICMP_SLE:
3800 // (float)int <= 4.4 --> int <= 4
3801 // (float)int <= -4.4 --> int < -4
3802 if (RHS.isNegative())
3803 Pred = ICmpInst::ICMP_SLT;
3804 break;
3805 case ICmpInst::ICMP_ULT:
3806 // (float)int < -4.4 --> false
3807 // (float)int < 4.4 --> int <= 4
3808 if (RHS.isNegative())
Jakub Staszakbddea112013-06-06 20:18:46 +00003809 return ReplaceInstUsesWith(I, Builder->getFalse());
Chris Lattner2188e402010-01-04 07:37:31 +00003810 Pred = ICmpInst::ICMP_ULE;
3811 break;
3812 case ICmpInst::ICMP_SLT:
3813 // (float)int < -4.4 --> int < -4
3814 // (float)int < 4.4 --> int <= 4
3815 if (!RHS.isNegative())
3816 Pred = ICmpInst::ICMP_SLE;
3817 break;
3818 case ICmpInst::ICMP_UGT:
3819 // (float)int > 4.4 --> int > 4
3820 // (float)int > -4.4 --> true
3821 if (RHS.isNegative())
Jakub Staszakbddea112013-06-06 20:18:46 +00003822 return ReplaceInstUsesWith(I, Builder->getTrue());
Chris Lattner2188e402010-01-04 07:37:31 +00003823 break;
3824 case ICmpInst::ICMP_SGT:
3825 // (float)int > 4.4 --> int > 4
3826 // (float)int > -4.4 --> int >= -4
3827 if (RHS.isNegative())
3828 Pred = ICmpInst::ICMP_SGE;
3829 break;
3830 case ICmpInst::ICMP_UGE:
3831 // (float)int >= -4.4 --> true
3832 // (float)int >= 4.4 --> int > 4
Bob Wilson61f3ad52012-08-07 22:35:16 +00003833 if (RHS.isNegative())
Jakub Staszakbddea112013-06-06 20:18:46 +00003834 return ReplaceInstUsesWith(I, Builder->getTrue());
Chris Lattner2188e402010-01-04 07:37:31 +00003835 Pred = ICmpInst::ICMP_UGT;
3836 break;
3837 case ICmpInst::ICMP_SGE:
3838 // (float)int >= -4.4 --> int >= -4
3839 // (float)int >= 4.4 --> int > 4
3840 if (!RHS.isNegative())
3841 Pred = ICmpInst::ICMP_SGT;
3842 break;
3843 }
3844 }
3845 }
3846
3847 // Lower this FP comparison into an appropriate integer version of the
3848 // comparison.
3849 return new ICmpInst(Pred, LHSI->getOperand(0), RHSInt);
3850}
3851
3852Instruction *InstCombiner::visitFCmpInst(FCmpInst &I) {
3853 bool Changed = false;
Jim Grosbach129c52a2011-09-30 18:09:53 +00003854
Chris Lattner2188e402010-01-04 07:37:31 +00003855 /// Orders the operands of the compare so that they are listed from most
3856 /// complex to least complex. This puts constants before unary operators,
3857 /// before binary operators.
3858 if (getComplexity(I.getOperand(0)) < getComplexity(I.getOperand(1))) {
3859 I.swapOperands();
3860 Changed = true;
3861 }
3862
3863 Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
Jim Grosbach129c52a2011-09-30 18:09:53 +00003864
Chandler Carruth66b31302015-01-04 12:03:27 +00003865 if (Value *V = SimplifyFCmpInst(I.getPredicate(), Op0, Op1, DL, TLI, DT, AC))
Chris Lattner2188e402010-01-04 07:37:31 +00003866 return ReplaceInstUsesWith(I, V);
3867
3868 // Simplify 'fcmp pred X, X'
3869 if (Op0 == Op1) {
3870 switch (I.getPredicate()) {
3871 default: llvm_unreachable("Unknown predicate!");
3872 case FCmpInst::FCMP_UNO: // True if unordered: isnan(X) | isnan(Y)
3873 case FCmpInst::FCMP_ULT: // True if unordered or less than
3874 case FCmpInst::FCMP_UGT: // True if unordered or greater than
3875 case FCmpInst::FCMP_UNE: // True if unordered or not equal
3876 // Canonicalize these to be 'fcmp uno %X, 0.0'.
3877 I.setPredicate(FCmpInst::FCMP_UNO);
3878 I.setOperand(1, Constant::getNullValue(Op0->getType()));
3879 return &I;
Jim Grosbach129c52a2011-09-30 18:09:53 +00003880
Chris Lattner2188e402010-01-04 07:37:31 +00003881 case FCmpInst::FCMP_ORD: // True if ordered (no nans)
3882 case FCmpInst::FCMP_OEQ: // True if ordered and equal
3883 case FCmpInst::FCMP_OGE: // True if ordered and greater than or equal
3884 case FCmpInst::FCMP_OLE: // True if ordered and less than or equal
3885 // Canonicalize these to be 'fcmp ord %X, 0.0'.
3886 I.setPredicate(FCmpInst::FCMP_ORD);
3887 I.setOperand(1, Constant::getNullValue(Op0->getType()));
3888 return &I;
3889 }
3890 }
Jim Grosbach129c52a2011-09-30 18:09:53 +00003891
Chris Lattner2188e402010-01-04 07:37:31 +00003892 // Handle fcmp with constant RHS
3893 if (Constant *RHSC = dyn_cast<Constant>(Op1)) {
3894 if (Instruction *LHSI = dyn_cast<Instruction>(Op0))
3895 switch (LHSI->getOpcode()) {
Benjamin Kramercbb18e92011-03-31 10:12:07 +00003896 case Instruction::FPExt: {
3897 // fcmp (fpext x), C -> fcmp x, (fptrunc C) if fptrunc is lossless
3898 FPExtInst *LHSExt = cast<FPExtInst>(LHSI);
3899 ConstantFP *RHSF = dyn_cast<ConstantFP>(RHSC);
3900 if (!RHSF)
3901 break;
3902
3903 const fltSemantics *Sem;
3904 // FIXME: This shouldn't be here.
Dan Gohman518cda42011-12-17 00:04:22 +00003905 if (LHSExt->getSrcTy()->isHalfTy())
3906 Sem = &APFloat::IEEEhalf;
3907 else if (LHSExt->getSrcTy()->isFloatTy())
Benjamin Kramercbb18e92011-03-31 10:12:07 +00003908 Sem = &APFloat::IEEEsingle;
3909 else if (LHSExt->getSrcTy()->isDoubleTy())
3910 Sem = &APFloat::IEEEdouble;
3911 else if (LHSExt->getSrcTy()->isFP128Ty())
3912 Sem = &APFloat::IEEEquad;
3913 else if (LHSExt->getSrcTy()->isX86_FP80Ty())
3914 Sem = &APFloat::x87DoubleExtended;
Ulrich Weigand6a9bb512012-10-30 12:33:18 +00003915 else if (LHSExt->getSrcTy()->isPPC_FP128Ty())
3916 Sem = &APFloat::PPCDoubleDouble;
Benjamin Kramercbb18e92011-03-31 10:12:07 +00003917 else
3918 break;
3919
3920 bool Lossy;
3921 APFloat F = RHSF->getValueAPF();
3922 F.convert(*Sem, APFloat::rmNearestTiesToEven, &Lossy);
3923
Jim Grosbach24ff8342011-09-30 18:45:50 +00003924 // Avoid lossy conversions and denormals. Zero is a special case
3925 // that's OK to convert.
Jim Grosbach011dafb2011-09-30 19:58:46 +00003926 APFloat Fabs = F;
3927 Fabs.clearSign();
Benjamin Kramercbb18e92011-03-31 10:12:07 +00003928 if (!Lossy &&
Jim Grosbach011dafb2011-09-30 19:58:46 +00003929 ((Fabs.compare(APFloat::getSmallestNormalized(*Sem)) !=
3930 APFloat::cmpLessThan) || Fabs.isZero()))
Jim Grosbach24ff8342011-09-30 18:45:50 +00003931
Benjamin Kramercbb18e92011-03-31 10:12:07 +00003932 return new FCmpInst(I.getPredicate(), LHSExt->getOperand(0),
3933 ConstantFP::get(RHSC->getContext(), F));
3934 break;
3935 }
Chris Lattner2188e402010-01-04 07:37:31 +00003936 case Instruction::PHI:
3937 // Only fold fcmp into the PHI if the phi and fcmp are in the same
3938 // block. If in the same block, we're encouraging jump threading. If
3939 // not, we are just pessimizing the code by making an i1 phi.
3940 if (LHSI->getParent() == I.getParent())
Chris Lattnerea7131a2011-01-16 05:14:26 +00003941 if (Instruction *NV = FoldOpIntoPhi(I))
Chris Lattner2188e402010-01-04 07:37:31 +00003942 return NV;
3943 break;
3944 case Instruction::SIToFP:
3945 case Instruction::UIToFP:
3946 if (Instruction *NV = FoldFCmp_IntToFP_Cst(I, LHSI, RHSC))
3947 return NV;
3948 break;
Benjamin Kramera8c5d082011-03-31 10:12:15 +00003949 case Instruction::FSub: {
3950 // fcmp pred (fneg x), C -> fcmp swap(pred) x, -C
3951 Value *Op;
3952 if (match(LHSI, m_FNeg(m_Value(Op))))
3953 return new FCmpInst(I.getSwappedPredicate(), Op,
3954 ConstantExpr::getFNeg(RHSC));
3955 break;
3956 }
Dan Gohman94732022010-02-24 06:46:09 +00003957 case Instruction::Load:
3958 if (GetElementPtrInst *GEP =
3959 dyn_cast<GetElementPtrInst>(LHSI->getOperand(0))) {
3960 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(GEP->getOperand(0)))
3961 if (GV->isConstant() && GV->hasDefinitiveInitializer() &&
3962 !cast<LoadInst>(LHSI)->isVolatile())
3963 if (Instruction *Res = FoldCmpLoadFromIndexedGlobal(GEP, GV, I))
3964 return Res;
3965 }
3966 break;
Benjamin Kramer8c2a7332012-08-18 20:06:47 +00003967 case Instruction::Call: {
Matt Arsenaultb935d9d2015-01-08 20:09:34 +00003968 if (!RHSC->isNullValue())
3969 break;
3970
Benjamin Kramer8c2a7332012-08-18 20:06:47 +00003971 CallInst *CI = cast<CallInst>(LHSI);
Matt Arsenaultb935d9d2015-01-08 20:09:34 +00003972 const Function *F = CI->getCalledFunction();
3973 if (!F)
3974 break;
3975
Benjamin Kramer8c2a7332012-08-18 20:06:47 +00003976 // Various optimization for fabs compared with zero.
Matt Arsenaultb935d9d2015-01-08 20:09:34 +00003977 LibFunc::Func Func;
3978 if (F->getIntrinsicID() == Intrinsic::fabs ||
3979 (TLI->getLibFunc(F->getName(), Func) && TLI->has(Func) &&
3980 (Func == LibFunc::fabs || Func == LibFunc::fabsf ||
3981 Func == LibFunc::fabsl))) {
3982 switch (I.getPredicate()) {
3983 default:
3984 break;
Benjamin Kramer8c2a7332012-08-18 20:06:47 +00003985 // fabs(x) < 0 --> false
Matt Arsenaultb935d9d2015-01-08 20:09:34 +00003986 case FCmpInst::FCMP_OLT:
3987 return ReplaceInstUsesWith(I, Builder->getFalse());
Benjamin Kramer8c2a7332012-08-18 20:06:47 +00003988 // fabs(x) > 0 --> x != 0
Matt Arsenaultb935d9d2015-01-08 20:09:34 +00003989 case FCmpInst::FCMP_OGT:
3990 return new FCmpInst(FCmpInst::FCMP_ONE, CI->getArgOperand(0), RHSC);
Benjamin Kramer8c2a7332012-08-18 20:06:47 +00003991 // fabs(x) <= 0 --> x == 0
Matt Arsenaultb935d9d2015-01-08 20:09:34 +00003992 case FCmpInst::FCMP_OLE:
3993 return new FCmpInst(FCmpInst::FCMP_OEQ, CI->getArgOperand(0), RHSC);
Benjamin Kramer8c2a7332012-08-18 20:06:47 +00003994 // fabs(x) >= 0 --> !isnan(x)
Matt Arsenaultb935d9d2015-01-08 20:09:34 +00003995 case FCmpInst::FCMP_OGE:
3996 return new FCmpInst(FCmpInst::FCMP_ORD, CI->getArgOperand(0), RHSC);
Benjamin Kramer8c2a7332012-08-18 20:06:47 +00003997 // fabs(x) == 0 --> x == 0
3998 // fabs(x) != 0 --> x != 0
Matt Arsenaultb935d9d2015-01-08 20:09:34 +00003999 case FCmpInst::FCMP_OEQ:
4000 case FCmpInst::FCMP_UEQ:
4001 case FCmpInst::FCMP_ONE:
4002 case FCmpInst::FCMP_UNE:
4003 return new FCmpInst(I.getPredicate(), CI->getArgOperand(0), RHSC);
Benjamin Kramer8c2a7332012-08-18 20:06:47 +00004004 }
4005 }
4006 }
Chris Lattner2188e402010-01-04 07:37:31 +00004007 }
Chris Lattner2188e402010-01-04 07:37:31 +00004008 }
4009
Benjamin Kramerbe209ab2011-03-31 10:46:03 +00004010 // fcmp pred (fneg x), (fneg y) -> fcmp swap(pred) x, y
Benjamin Kramerd159d942011-03-31 10:12:22 +00004011 Value *X, *Y;
4012 if (match(Op0, m_FNeg(m_Value(X))) && match(Op1, m_FNeg(m_Value(Y))))
Benjamin Kramerbe209ab2011-03-31 10:46:03 +00004013 return new FCmpInst(I.getSwappedPredicate(), X, Y);
Benjamin Kramerd159d942011-03-31 10:12:22 +00004014
Benjamin Kramer2ccfbc82011-03-31 10:11:58 +00004015 // fcmp (fpext x), (fpext y) -> fcmp x, y
4016 if (FPExtInst *LHSExt = dyn_cast<FPExtInst>(Op0))
4017 if (FPExtInst *RHSExt = dyn_cast<FPExtInst>(Op1))
4018 if (LHSExt->getSrcTy() == RHSExt->getSrcTy())
4019 return new FCmpInst(I.getPredicate(), LHSExt->getOperand(0),
4020 RHSExt->getOperand(0));
4021
Craig Topperf40110f2014-04-25 05:29:35 +00004022 return Changed ? &I : nullptr;
Chris Lattner2188e402010-01-04 07:37:31 +00004023}