Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1 | //===- 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 Carruth | a917458 | 2015-01-22 05:25:13 +0000 | [diff] [blame] | 14 | #include "InstCombineInternal.h" |
Matt Arsenault | 55e7312 | 2015-01-06 15:50:59 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/APSInt.h" |
Gerolf Hoflehner | ec6217c | 2014-11-21 23:36:44 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/Statistic.h" |
Eli Friedman | 911e12f | 2011-07-20 21:57:23 +0000 | [diff] [blame] | 17 | #include "llvm/Analysis/ConstantFolding.h" |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 18 | #include "llvm/Analysis/InstructionSimplify.h" |
| 19 | #include "llvm/Analysis/MemoryBuiltins.h" |
Chandler Carruth | 8cd041e | 2014-03-04 12:24:34 +0000 | [diff] [blame] | 20 | #include "llvm/IR/ConstantRange.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 21 | #include "llvm/IR/DataLayout.h" |
Chandler Carruth | 03eb0de | 2014-03-04 10:40:04 +0000 | [diff] [blame] | 22 | #include "llvm/IR/GetElementPtrTypeIterator.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 23 | #include "llvm/IR/IntrinsicInst.h" |
Chandler Carruth | 820a908 | 2014-03-04 11:08:18 +0000 | [diff] [blame] | 24 | #include "llvm/IR/PatternMatch.h" |
Gerolf Hoflehner | ec6217c | 2014-11-21 23:36:44 +0000 | [diff] [blame] | 25 | #include "llvm/Support/CommandLine.h" |
| 26 | #include "llvm/Support/Debug.h" |
Chandler Carruth | 62d4215 | 2015-01-15 02:16:27 +0000 | [diff] [blame] | 27 | #include "llvm/Analysis/TargetLibraryInfo.h" |
Gerolf Hoflehner | ec6217c | 2014-11-21 23:36:44 +0000 | [diff] [blame] | 28 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 29 | using namespace llvm; |
| 30 | using namespace PatternMatch; |
| 31 | |
Chandler Carruth | 964daaa | 2014-04-22 02:55:47 +0000 | [diff] [blame] | 32 | #define DEBUG_TYPE "instcombine" |
| 33 | |
Gerolf Hoflehner | ec6217c | 2014-11-21 23:36:44 +0000 | [diff] [blame] | 34 | // How many times is a select replaced by one of its operands? |
| 35 | STATISTIC(NumSel, "Number of select opts"); |
| 36 | |
| 37 | // Initialization Routines |
| 38 | |
Chris Lattner | 9845710 | 2011-02-10 05:23:05 +0000 | [diff] [blame] | 39 | static ConstantInt *getOne(Constant *C) { |
| 40 | return ConstantInt::get(cast<IntegerType>(C->getType()), 1); |
| 41 | } |
| 42 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 43 | static ConstantInt *ExtractElement(Constant *V, Constant *Idx) { |
| 44 | return cast<ConstantInt>(ConstantExpr::getExtractElement(V, Idx)); |
| 45 | } |
| 46 | |
| 47 | static bool HasAddOverflow(ConstantInt *Result, |
| 48 | ConstantInt *In1, ConstantInt *In2, |
| 49 | bool IsSigned) { |
Chris Lattner | b1a1512 | 2011-07-15 06:08:15 +0000 | [diff] [blame] | 50 | if (!IsSigned) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 51 | return Result->getValue().ult(In1->getValue()); |
Chris Lattner | b1a1512 | 2011-07-15 06:08:15 +0000 | [diff] [blame] | 52 | |
| 53 | if (In2->isNegative()) |
| 54 | return Result->getValue().sgt(In1->getValue()); |
| 55 | return Result->getValue().slt(In1->getValue()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | /// AddWithOverflow - Compute Result = In1+In2, returning true if the result |
| 59 | /// overflowed for this type. |
| 60 | static bool AddWithOverflow(Constant *&Result, Constant *In1, |
| 61 | Constant *In2, bool IsSigned = false) { |
| 62 | Result = ConstantExpr::getAdd(In1, In2); |
| 63 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 64 | if (VectorType *VTy = dyn_cast<VectorType>(In1->getType())) { |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 65 | 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 | |
| 81 | static bool HasSubOverflow(ConstantInt *Result, |
| 82 | ConstantInt *In1, ConstantInt *In2, |
| 83 | bool IsSigned) { |
Chris Lattner | b1a1512 | 2011-07-15 06:08:15 +0000 | [diff] [blame] | 84 | if (!IsSigned) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 85 | return Result->getValue().ugt(In1->getValue()); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 86 | |
Chris Lattner | b1a1512 | 2011-07-15 06:08:15 +0000 | [diff] [blame] | 87 | if (In2->isNegative()) |
| 88 | return Result->getValue().slt(In1->getValue()); |
| 89 | |
| 90 | return Result->getValue().sgt(In1->getValue()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | /// SubWithOverflow - Compute Result = In1-In2, returning true if the result |
| 94 | /// overflowed for this type. |
| 95 | static bool SubWithOverflow(Constant *&Result, Constant *In1, |
| 96 | Constant *In2, bool IsSigned = false) { |
| 97 | Result = ConstantExpr::getSub(In1, In2); |
| 98 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 99 | if (VectorType *VTy = dyn_cast<VectorType>(In1->getType())) { |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 100 | 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. |
| 120 | static 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 Lattner | b1a1512 | 2011-07-15 06:08:15 +0000 | [diff] [blame] | 135 | return RHS->isMaxValue(true); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 136 | case ICmpInst::ICMP_UGE: |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 137 | // 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 Grandmaison | 3ee88e8 | 2013-03-25 11:47:38 +0000 | [diff] [blame] | 145 | /// 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 Grandmaison | 9c383d6 | 2013-03-25 09:48:49 +0000 | [diff] [blame] | 148 | static bool isSignTest(ICmpInst::Predicate &pred, const ConstantInt *RHS) { |
| 149 | if (!ICmpInst::isSigned(pred)) |
| 150 | return false; |
| 151 | |
| 152 | if (RHS->isZero()) |
Arnaud A. de Grandmaison | 3ee88e8 | 2013-03-25 11:47:38 +0000 | [diff] [blame] | 153 | return ICmpInst::isRelational(pred); |
Arnaud A. de Grandmaison | 9c383d6 | 2013-03-25 09:48:49 +0000 | [diff] [blame] | 154 | |
Arnaud A. de Grandmaison | 3ee88e8 | 2013-03-25 11:47:38 +0000 | [diff] [blame] | 155 | if (RHS->isOne()) { |
| 156 | if (pred == ICmpInst::ICMP_SLT) { |
Arnaud A. de Grandmaison | 9c383d6 | 2013-03-25 09:48:49 +0000 | [diff] [blame] | 157 | pred = ICmpInst::ICMP_SLE; |
| 158 | return true; |
Arnaud A. de Grandmaison | 9c383d6 | 2013-03-25 09:48:49 +0000 | [diff] [blame] | 159 | } |
Arnaud A. de Grandmaison | 3ee88e8 | 2013-03-25 11:47:38 +0000 | [diff] [blame] | 160 | } else if (RHS->isAllOnesValue()) { |
| 161 | if (pred == ICmpInst::ICMP_SGT) { |
Arnaud A. de Grandmaison | 9c383d6 | 2013-03-25 09:48:49 +0000 | [diff] [blame] | 162 | pred = ICmpInst::ICMP_SGE; |
| 163 | return true; |
Arnaud A. de Grandmaison | 9c383d6 | 2013-03-25 09:48:49 +0000 | [diff] [blame] | 164 | } |
Arnaud A. de Grandmaison | 3ee88e8 | 2013-03-25 11:47:38 +0000 | [diff] [blame] | 165 | } |
Arnaud A. de Grandmaison | 9c383d6 | 2013-03-25 09:48:49 +0000 | [diff] [blame] | 166 | |
| 167 | return false; |
| 168 | } |
| 169 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 170 | // isHighOnes - Return true if the constant is of the form 1+0+. |
| 171 | // This is the same as lowones(~X). |
| 172 | static bool isHighOnes(const ConstantInt *CI) { |
| 173 | return (~CI->getValue() + 1).isPowerOf2(); |
| 174 | } |
| 175 | |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 176 | /// ComputeSignedMinMaxValuesFromKnownBits - Given a signed integer type and a |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 177 | /// 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. |
| 180 | static 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 Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 193 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 194 | if (UnknownBits.isNegative()) { // Sign bit is unknown |
Jay Foad | 25a5e4c | 2010-12-01 08:53:58 +0000 | [diff] [blame] | 195 | Min.setBit(Min.getBitWidth()-1); |
| 196 | Max.clearBit(Max.getBitWidth()-1); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 197 | } |
| 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. |
| 204 | static 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 Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 212 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 213 | // 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". |
| 229 | Instruction *InstCombiner:: |
| 230 | FoldCmpLoadFromIndexedGlobal(GetElementPtrInst *GEP, GlobalVariable *GV, |
| 231 | CmpInst &ICI, ConstantInt *AndCst) { |
Chris Lattner | fe74176 | 2012-01-31 02:55:06 +0000 | [diff] [blame] | 232 | Constant *Init = GV->getInitializer(); |
| 233 | if (!isa<ConstantArray>(Init) && !isa<ConstantDataArray>(Init)) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 234 | return nullptr; |
Jim Grosbach | bdbd734 | 2013-04-05 21:20:12 +0000 | [diff] [blame] | 235 | |
Chris Lattner | fe74176 | 2012-01-31 02:55:06 +0000 | [diff] [blame] | 236 | uint64_t ArrayElementCount = Init->getType()->getArrayNumElements(); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 237 | if (ArrayElementCount > 1024) return nullptr; // Don't blow up on huge arrays. |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 238 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 239 | // There are many forms of this optimization we can handle, for now, just do |
| 240 | // the simple index into a single-dimensional array. |
| 241 | // |
| 242 | // Require: GEP GV, 0, i {{, constant indices}} |
| 243 | if (GEP->getNumOperands() < 3 || |
| 244 | !isa<ConstantInt>(GEP->getOperand(1)) || |
| 245 | !cast<ConstantInt>(GEP->getOperand(1))->isZero() || |
| 246 | isa<Constant>(GEP->getOperand(2))) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 247 | return nullptr; |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 248 | |
| 249 | // Check that indices after the variable are constants and in-range for the |
| 250 | // type they index. Collect the indices. This is typically for arrays of |
| 251 | // structs. |
| 252 | SmallVector<unsigned, 4> LaterIndices; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 253 | |
Chris Lattner | fe74176 | 2012-01-31 02:55:06 +0000 | [diff] [blame] | 254 | Type *EltTy = Init->getType()->getArrayElementType(); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 255 | for (unsigned i = 3, e = GEP->getNumOperands(); i != e; ++i) { |
| 256 | ConstantInt *Idx = dyn_cast<ConstantInt>(GEP->getOperand(i)); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 257 | if (!Idx) return nullptr; // Variable index. |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 258 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 259 | uint64_t IdxVal = Idx->getZExtValue(); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 260 | if ((unsigned)IdxVal != IdxVal) return nullptr; // Too large array index. |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 261 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 262 | if (StructType *STy = dyn_cast<StructType>(EltTy)) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 263 | EltTy = STy->getElementType(IdxVal); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 264 | else if (ArrayType *ATy = dyn_cast<ArrayType>(EltTy)) { |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 265 | if (IdxVal >= ATy->getNumElements()) return nullptr; |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 266 | EltTy = ATy->getElementType(); |
| 267 | } else { |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 268 | return nullptr; // Unknown type. |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 269 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 270 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 271 | LaterIndices.push_back(IdxVal); |
| 272 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 273 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 274 | enum { Overdefined = -3, Undefined = -2 }; |
| 275 | |
| 276 | // Variables for our state machines. |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 277 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 278 | // FirstTrueElement/SecondTrueElement - Used to emit a comparison of the form |
| 279 | // "i == 47 | i == 87", where 47 is the first index the condition is true for, |
| 280 | // and 87 is the second (and last) index. FirstTrueElement is -2 when |
| 281 | // undefined, otherwise set to the first true element. SecondTrueElement is |
| 282 | // -2 when undefined, -3 when overdefined and >= 0 when that index is true. |
| 283 | int FirstTrueElement = Undefined, SecondTrueElement = Undefined; |
| 284 | |
| 285 | // FirstFalseElement/SecondFalseElement - Used to emit a comparison of the |
| 286 | // form "i != 47 & i != 87". Same state transitions as for true elements. |
| 287 | int FirstFalseElement = Undefined, SecondFalseElement = Undefined; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 288 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 289 | /// TrueRangeEnd/FalseRangeEnd - In conjunction with First*Element, these |
| 290 | /// define a state machine that triggers for ranges of values that the index |
| 291 | /// is true or false for. This triggers on things like "abbbbc"[i] == 'b'. |
| 292 | /// This is -2 when undefined, -3 when overdefined, and otherwise the last |
| 293 | /// index in the range (inclusive). We use -2 for undefined here because we |
| 294 | /// use relative comparisons and don't want 0-1 to match -1. |
| 295 | int TrueRangeEnd = Undefined, FalseRangeEnd = Undefined; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 296 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 297 | // MagicBitvector - This is a magic bitvector where we set a bit if the |
| 298 | // comparison is true for element 'i'. If there are 64 elements or less in |
| 299 | // the array, this will fully represent all the comparison results. |
| 300 | uint64_t MagicBitvector = 0; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 301 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 302 | // Scan the array and see if one of our patterns matches. |
| 303 | Constant *CompareRHS = cast<Constant>(ICI.getOperand(1)); |
Chris Lattner | fe74176 | 2012-01-31 02:55:06 +0000 | [diff] [blame] | 304 | for (unsigned i = 0, e = ArrayElementCount; i != e; ++i) { |
| 305 | Constant *Elt = Init->getAggregateElement(i); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 306 | if (!Elt) return nullptr; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 307 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 308 | // If this is indexing an array of structures, get the structure element. |
| 309 | if (!LaterIndices.empty()) |
Jay Foad | 57aa636 | 2011-07-13 10:26:04 +0000 | [diff] [blame] | 310 | Elt = ConstantExpr::getExtractValue(Elt, LaterIndices); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 311 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 312 | // If the element is masked, handle it. |
| 313 | if (AndCst) Elt = ConstantExpr::getAnd(Elt, AndCst); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 314 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 315 | // Find out if the comparison would be true or false for the i'th element. |
| 316 | Constant *C = ConstantFoldCompareInstOperands(ICI.getPredicate(), Elt, |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 317 | CompareRHS, DL, TLI); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 318 | // If the result is undef for this element, ignore it. |
| 319 | if (isa<UndefValue>(C)) { |
| 320 | // Extend range state machines to cover this element in case there is an |
| 321 | // undef in the middle of the range. |
| 322 | if (TrueRangeEnd == (int)i-1) |
| 323 | TrueRangeEnd = i; |
| 324 | if (FalseRangeEnd == (int)i-1) |
| 325 | FalseRangeEnd = i; |
| 326 | continue; |
| 327 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 328 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 329 | // If we can't compute the result for any of the elements, we have to give |
| 330 | // up evaluating the entire conditional. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 331 | if (!isa<ConstantInt>(C)) return nullptr; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 332 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 333 | // Otherwise, we know if the comparison is true or false for this element, |
| 334 | // update our state machines. |
| 335 | bool IsTrueForElt = !cast<ConstantInt>(C)->isZero(); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 336 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 337 | // State machine for single/double/range index comparison. |
| 338 | if (IsTrueForElt) { |
| 339 | // Update the TrueElement state machine. |
| 340 | if (FirstTrueElement == Undefined) |
| 341 | FirstTrueElement = TrueRangeEnd = i; // First true element. |
| 342 | else { |
| 343 | // Update double-compare state machine. |
| 344 | if (SecondTrueElement == Undefined) |
| 345 | SecondTrueElement = i; |
| 346 | else |
| 347 | SecondTrueElement = Overdefined; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 348 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 349 | // Update range state machine. |
| 350 | if (TrueRangeEnd == (int)i-1) |
| 351 | TrueRangeEnd = i; |
| 352 | else |
| 353 | TrueRangeEnd = Overdefined; |
| 354 | } |
| 355 | } else { |
| 356 | // Update the FalseElement state machine. |
| 357 | if (FirstFalseElement == Undefined) |
| 358 | FirstFalseElement = FalseRangeEnd = i; // First false element. |
| 359 | else { |
| 360 | // Update double-compare state machine. |
| 361 | if (SecondFalseElement == Undefined) |
| 362 | SecondFalseElement = i; |
| 363 | else |
| 364 | SecondFalseElement = Overdefined; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 365 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 366 | // Update range state machine. |
| 367 | if (FalseRangeEnd == (int)i-1) |
| 368 | FalseRangeEnd = i; |
| 369 | else |
| 370 | FalseRangeEnd = Overdefined; |
| 371 | } |
| 372 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 373 | |
| 374 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 375 | // If this element is in range, update our magic bitvector. |
| 376 | if (i < 64 && IsTrueForElt) |
| 377 | MagicBitvector |= 1ULL << i; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 378 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 379 | // If all of our states become overdefined, bail out early. Since the |
| 380 | // predicate is expensive, only check it every 8 elements. This is only |
| 381 | // really useful for really huge arrays. |
| 382 | if ((i & 8) == 0 && i >= 64 && SecondTrueElement == Overdefined && |
| 383 | SecondFalseElement == Overdefined && TrueRangeEnd == Overdefined && |
| 384 | FalseRangeEnd == Overdefined) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 385 | return nullptr; |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 386 | } |
| 387 | |
| 388 | // Now that we've scanned the entire array, emit our new comparison(s). We |
| 389 | // order the state machines in complexity of the generated code. |
| 390 | Value *Idx = GEP->getOperand(2); |
| 391 | |
Matt Arsenault | 5aeae18 | 2013-08-19 21:40:31 +0000 | [diff] [blame] | 392 | // If the index is larger than the pointer size of the target, truncate the |
| 393 | // index down like the GEP would do implicitly. We don't have to do this for |
| 394 | // an inbounds GEP because the index can't be out of range. |
Matt Arsenault | 8468062 | 2013-09-30 21:11:01 +0000 | [diff] [blame] | 395 | if (!GEP->isInBounds()) { |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 396 | Type *IntPtrTy = DL.getIntPtrType(GEP->getType()); |
Matt Arsenault | 8468062 | 2013-09-30 21:11:01 +0000 | [diff] [blame] | 397 | unsigned PtrSize = IntPtrTy->getIntegerBitWidth(); |
| 398 | if (Idx->getType()->getPrimitiveSizeInBits() > PtrSize) |
| 399 | Idx = Builder->CreateTrunc(Idx, IntPtrTy); |
| 400 | } |
Matt Arsenault | 5aeae18 | 2013-08-19 21:40:31 +0000 | [diff] [blame] | 401 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 402 | // If the comparison is only true for one or two elements, emit direct |
| 403 | // comparisons. |
| 404 | if (SecondTrueElement != Overdefined) { |
| 405 | // None true -> false. |
| 406 | if (FirstTrueElement == Undefined) |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 407 | return ReplaceInstUsesWith(ICI, Builder->getFalse()); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 408 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 409 | Value *FirstTrueIdx = ConstantInt::get(Idx->getType(), FirstTrueElement); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 410 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 411 | // True for one element -> 'i == 47'. |
| 412 | if (SecondTrueElement == Undefined) |
| 413 | return new ICmpInst(ICmpInst::ICMP_EQ, Idx, FirstTrueIdx); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 414 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 415 | // True for two elements -> 'i == 47 | i == 72'. |
| 416 | Value *C1 = Builder->CreateICmpEQ(Idx, FirstTrueIdx); |
| 417 | Value *SecondTrueIdx = ConstantInt::get(Idx->getType(), SecondTrueElement); |
| 418 | Value *C2 = Builder->CreateICmpEQ(Idx, SecondTrueIdx); |
| 419 | return BinaryOperator::CreateOr(C1, C2); |
| 420 | } |
| 421 | |
| 422 | // If the comparison is only false for one or two elements, emit direct |
| 423 | // comparisons. |
| 424 | if (SecondFalseElement != Overdefined) { |
| 425 | // None false -> true. |
| 426 | if (FirstFalseElement == Undefined) |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 427 | return ReplaceInstUsesWith(ICI, Builder->getTrue()); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 428 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 429 | Value *FirstFalseIdx = ConstantInt::get(Idx->getType(), FirstFalseElement); |
| 430 | |
| 431 | // False for one element -> 'i != 47'. |
| 432 | if (SecondFalseElement == Undefined) |
| 433 | return new ICmpInst(ICmpInst::ICMP_NE, Idx, FirstFalseIdx); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 434 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 435 | // False for two elements -> 'i != 47 & i != 72'. |
| 436 | Value *C1 = Builder->CreateICmpNE(Idx, FirstFalseIdx); |
| 437 | Value *SecondFalseIdx = ConstantInt::get(Idx->getType(),SecondFalseElement); |
| 438 | Value *C2 = Builder->CreateICmpNE(Idx, SecondFalseIdx); |
| 439 | return BinaryOperator::CreateAnd(C1, C2); |
| 440 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 441 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 442 | // If the comparison can be replaced with a range comparison for the elements |
| 443 | // where it is true, emit the range check. |
| 444 | if (TrueRangeEnd != Overdefined) { |
| 445 | assert(TrueRangeEnd != FirstTrueElement && "Should emit single compare"); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 446 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 447 | // Generate (i-FirstTrue) <u (TrueRangeEnd-FirstTrue+1). |
| 448 | if (FirstTrueElement) { |
| 449 | Value *Offs = ConstantInt::get(Idx->getType(), -FirstTrueElement); |
| 450 | Idx = Builder->CreateAdd(Idx, Offs); |
| 451 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 452 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 453 | Value *End = ConstantInt::get(Idx->getType(), |
| 454 | TrueRangeEnd-FirstTrueElement+1); |
| 455 | return new ICmpInst(ICmpInst::ICMP_ULT, Idx, End); |
| 456 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 457 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 458 | // False range check. |
| 459 | if (FalseRangeEnd != Overdefined) { |
| 460 | assert(FalseRangeEnd != FirstFalseElement && "Should emit single compare"); |
| 461 | // Generate (i-FirstFalse) >u (FalseRangeEnd-FirstFalse). |
| 462 | if (FirstFalseElement) { |
| 463 | Value *Offs = ConstantInt::get(Idx->getType(), -FirstFalseElement); |
| 464 | Idx = Builder->CreateAdd(Idx, Offs); |
| 465 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 466 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 467 | Value *End = ConstantInt::get(Idx->getType(), |
| 468 | FalseRangeEnd-FirstFalseElement); |
| 469 | return new ICmpInst(ICmpInst::ICMP_UGT, Idx, End); |
| 470 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 471 | |
| 472 | |
Arnaud A. de Grandmaison | f364bc6 | 2013-03-22 08:25:01 +0000 | [diff] [blame] | 473 | // If a magic bitvector captures the entire comparison state |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 474 | // of this load, replace it with computation that does: |
| 475 | // ((magic_cst >> i) & 1) != 0 |
Arnaud A. de Grandmaison | f364bc6 | 2013-03-22 08:25:01 +0000 | [diff] [blame] | 476 | { |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 477 | Type *Ty = nullptr; |
Arnaud A. de Grandmaison | f364bc6 | 2013-03-22 08:25:01 +0000 | [diff] [blame] | 478 | |
| 479 | // Look for an appropriate type: |
| 480 | // - The type of Idx if the magic fits |
| 481 | // - The smallest fitting legal type if we have a DataLayout |
| 482 | // - Default to i32 |
| 483 | if (ArrayElementCount <= Idx->getType()->getIntegerBitWidth()) |
| 484 | Ty = Idx->getType(); |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 485 | else |
| 486 | Ty = DL.getSmallestLegalIntType(Init->getContext(), ArrayElementCount); |
Arnaud A. de Grandmaison | f364bc6 | 2013-03-22 08:25:01 +0000 | [diff] [blame] | 487 | |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 488 | if (Ty) { |
Arnaud A. de Grandmaison | f364bc6 | 2013-03-22 08:25:01 +0000 | [diff] [blame] | 489 | Value *V = Builder->CreateIntCast(Idx, Ty, false); |
| 490 | V = Builder->CreateLShr(ConstantInt::get(Ty, MagicBitvector), V); |
| 491 | V = Builder->CreateAnd(ConstantInt::get(Ty, 1), V); |
| 492 | return new ICmpInst(ICmpInst::ICMP_NE, V, ConstantInt::get(Ty, 0)); |
| 493 | } |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 494 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 495 | |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 496 | return nullptr; |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 497 | } |
| 498 | |
| 499 | |
| 500 | /// EvaluateGEPOffsetExpression - Return a value that can be used to compare |
| 501 | /// the *offset* implied by a GEP to zero. For example, if we have &A[i], we |
| 502 | /// want to return 'i' for "icmp ne i, 0". Note that, in general, indices can |
| 503 | /// be complex, and scales are involved. The above expression would also be |
| 504 | /// legal to codegen as "icmp ne (i*4), 0" (assuming A is a pointer to i32). |
| 505 | /// This later form is less amenable to optimization though, and we are allowed |
| 506 | /// to generate the first by knowing that pointer arithmetic doesn't overflow. |
| 507 | /// |
| 508 | /// If we can't emit an optimized form for this expression, this returns null. |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 509 | /// |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 510 | static Value *EvaluateGEPOffsetExpression(User *GEP, InstCombiner &IC, |
| 511 | const DataLayout &DL) { |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 512 | gep_type_iterator GTI = gep_type_begin(GEP); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 513 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 514 | // Check to see if this gep only has a single variable index. If so, and if |
| 515 | // any constant indices are a multiple of its scale, then we can compute this |
| 516 | // in terms of the scale of the variable index. For example, if the GEP |
| 517 | // implies an offset of "12 + i*4", then we can codegen this as "3 + i", |
| 518 | // because the expression will cross zero at the same point. |
| 519 | unsigned i, e = GEP->getNumOperands(); |
| 520 | int64_t Offset = 0; |
| 521 | for (i = 1; i != e; ++i, ++GTI) { |
| 522 | if (ConstantInt *CI = dyn_cast<ConstantInt>(GEP->getOperand(i))) { |
| 523 | // Compute the aggregate offset of constant indices. |
| 524 | if (CI->isZero()) continue; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 525 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 526 | // Handle a struct index, which adds its field offset to the pointer. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 527 | if (StructType *STy = dyn_cast<StructType>(*GTI)) { |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 528 | Offset += DL.getStructLayout(STy)->getElementOffset(CI->getZExtValue()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 529 | } else { |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 530 | uint64_t Size = DL.getTypeAllocSize(GTI.getIndexedType()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 531 | Offset += Size*CI->getSExtValue(); |
| 532 | } |
| 533 | } else { |
| 534 | // Found our variable index. |
| 535 | break; |
| 536 | } |
| 537 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 538 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 539 | // If there are no variable indices, we must have a constant offset, just |
| 540 | // evaluate it the general way. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 541 | if (i == e) return nullptr; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 542 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 543 | Value *VariableIdx = GEP->getOperand(i); |
| 544 | // Determine the scale factor of the variable element. For example, this is |
| 545 | // 4 if the variable index is into an array of i32. |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 546 | uint64_t VariableScale = DL.getTypeAllocSize(GTI.getIndexedType()); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 547 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 548 | // Verify that there are no other variable indices. If so, emit the hard way. |
| 549 | for (++i, ++GTI; i != e; ++i, ++GTI) { |
| 550 | ConstantInt *CI = dyn_cast<ConstantInt>(GEP->getOperand(i)); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 551 | if (!CI) return nullptr; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 552 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 553 | // Compute the aggregate offset of constant indices. |
| 554 | if (CI->isZero()) continue; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 555 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 556 | // Handle a struct index, which adds its field offset to the pointer. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 557 | if (StructType *STy = dyn_cast<StructType>(*GTI)) { |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 558 | Offset += DL.getStructLayout(STy)->getElementOffset(CI->getZExtValue()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 559 | } else { |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 560 | uint64_t Size = DL.getTypeAllocSize(GTI.getIndexedType()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 561 | Offset += Size*CI->getSExtValue(); |
| 562 | } |
| 563 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 564 | |
Matt Arsenault | 745101d | 2013-08-21 19:53:10 +0000 | [diff] [blame] | 565 | |
| 566 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 567 | // Okay, we know we have a single variable index, which must be a |
| 568 | // pointer/array/vector index. If there is no offset, life is simple, return |
| 569 | // the index. |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 570 | Type *IntPtrTy = DL.getIntPtrType(GEP->getOperand(0)->getType()); |
Matt Arsenault | 745101d | 2013-08-21 19:53:10 +0000 | [diff] [blame] | 571 | unsigned IntPtrWidth = IntPtrTy->getIntegerBitWidth(); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 572 | if (Offset == 0) { |
| 573 | // Cast to intptrty in case a truncation occurs. If an extension is needed, |
| 574 | // we don't need to bother extending: the extension won't affect where the |
| 575 | // computation crosses zero. |
Eli Friedman | 1754a25 | 2011-05-18 23:11:30 +0000 | [diff] [blame] | 576 | if (VariableIdx->getType()->getPrimitiveSizeInBits() > IntPtrWidth) { |
Eli Friedman | 1754a25 | 2011-05-18 23:11:30 +0000 | [diff] [blame] | 577 | VariableIdx = IC.Builder->CreateTrunc(VariableIdx, IntPtrTy); |
| 578 | } |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 579 | return VariableIdx; |
| 580 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 581 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 582 | // Otherwise, there is an index. The computation we will do will be modulo |
| 583 | // the pointer size, so get it. |
| 584 | uint64_t PtrSizeMask = ~0ULL >> (64-IntPtrWidth); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 585 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 586 | Offset &= PtrSizeMask; |
| 587 | VariableScale &= PtrSizeMask; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 588 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 589 | // To do this transformation, any constant index must be a multiple of the |
| 590 | // variable scale factor. For example, we can evaluate "12 + 4*i" as "3 + i", |
| 591 | // but we can't evaluate "10 + 3*i" in terms of i. Check that the offset is a |
| 592 | // multiple of the variable scale. |
| 593 | int64_t NewOffs = Offset / (int64_t)VariableScale; |
| 594 | if (Offset != NewOffs*(int64_t)VariableScale) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 595 | return nullptr; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 596 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 597 | // Okay, we can do this evaluation. Start by converting the index to intptr. |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 598 | if (VariableIdx->getType() != IntPtrTy) |
Eli Friedman | 1754a25 | 2011-05-18 23:11:30 +0000 | [diff] [blame] | 599 | VariableIdx = IC.Builder->CreateIntCast(VariableIdx, IntPtrTy, |
| 600 | true /*Signed*/); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 601 | Constant *OffsetVal = ConstantInt::get(IntPtrTy, NewOffs); |
Eli Friedman | 1754a25 | 2011-05-18 23:11:30 +0000 | [diff] [blame] | 602 | return IC.Builder->CreateAdd(VariableIdx, OffsetVal, "offset"); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 603 | } |
| 604 | |
| 605 | /// FoldGEPICmp - Fold comparisons between a GEP instruction and something |
| 606 | /// else. At this point we know that the GEP is on the LHS of the comparison. |
| 607 | Instruction *InstCombiner::FoldGEPICmp(GEPOperator *GEPLHS, Value *RHS, |
| 608 | ICmpInst::Predicate Cond, |
| 609 | Instruction &I) { |
Benjamin Kramer | 6ee8690 | 2012-02-21 13:31:09 +0000 | [diff] [blame] | 610 | // Don't transform signed compares of GEPs into index compares. Even if the |
| 611 | // GEP is inbounds, the final add of the base pointer can have signed overflow |
| 612 | // and would change the result of the icmp. |
| 613 | // e.g. "&foo[0] <s &foo[1]" can't be folded to "true" because "foo" could be |
Benjamin Kramer | c7a22fe | 2012-02-21 13:40:06 +0000 | [diff] [blame] | 614 | // the maximum signed value for the pointer type. |
Benjamin Kramer | 6ee8690 | 2012-02-21 13:31:09 +0000 | [diff] [blame] | 615 | if (ICmpInst::isSigned(Cond)) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 616 | return nullptr; |
Benjamin Kramer | 6ee8690 | 2012-02-21 13:31:09 +0000 | [diff] [blame] | 617 | |
Matt Arsenault | 44f60d0 | 2014-06-09 19:20:29 +0000 | [diff] [blame] | 618 | // Look through bitcasts and addrspacecasts. We do not however want to remove |
| 619 | // 0 GEPs. |
| 620 | if (!isa<GetElementPtrInst>(RHS)) |
| 621 | RHS = RHS->stripPointerCasts(); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 622 | |
| 623 | Value *PtrBase = GEPLHS->getOperand(0); |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 624 | if (PtrBase == RHS && GEPLHS->isInBounds()) { |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 625 | // ((gep Ptr, OFFSET) cmp Ptr) ---> (OFFSET cmp 0). |
| 626 | // This transformation (ignoring the base and scales) is valid because we |
| 627 | // know pointers can't overflow since the gep is inbounds. See if we can |
| 628 | // output an optimized form. |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 629 | Value *Offset = EvaluateGEPOffsetExpression(GEPLHS, *this, DL); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 630 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 631 | // If not, synthesize the offset the hard way. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 632 | if (!Offset) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 633 | Offset = EmitGEPOffset(GEPLHS); |
| 634 | return new ICmpInst(ICmpInst::getSignedPredicate(Cond), Offset, |
| 635 | Constant::getNullValue(Offset->getType())); |
| 636 | } else if (GEPOperator *GEPRHS = dyn_cast<GEPOperator>(RHS)) { |
| 637 | // If the base pointers are different, but the indices are the same, just |
| 638 | // compare the base pointer. |
| 639 | if (PtrBase != GEPRHS->getOperand(0)) { |
| 640 | bool IndicesTheSame = GEPLHS->getNumOperands()==GEPRHS->getNumOperands(); |
| 641 | IndicesTheSame &= GEPLHS->getOperand(0)->getType() == |
| 642 | GEPRHS->getOperand(0)->getType(); |
| 643 | if (IndicesTheSame) |
| 644 | for (unsigned i = 1, e = GEPLHS->getNumOperands(); i != e; ++i) |
| 645 | if (GEPLHS->getOperand(i) != GEPRHS->getOperand(i)) { |
| 646 | IndicesTheSame = false; |
| 647 | break; |
| 648 | } |
| 649 | |
| 650 | // If all indices are the same, just compare the base pointers. |
| 651 | if (IndicesTheSame) |
David Majnemer | 5953d37 | 2013-06-29 10:28:04 +0000 | [diff] [blame] | 652 | return new ICmpInst(Cond, GEPLHS->getOperand(0), GEPRHS->getOperand(0)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 653 | |
Benjamin Kramer | 7adb189 | 2012-02-20 15:07:47 +0000 | [diff] [blame] | 654 | // If we're comparing GEPs with two base pointers that only differ in type |
| 655 | // and both GEPs have only constant indices or just one use, then fold |
| 656 | // the compare with the adjusted indices. |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 657 | if (GEPLHS->isInBounds() && GEPRHS->isInBounds() && |
Benjamin Kramer | 7adb189 | 2012-02-20 15:07:47 +0000 | [diff] [blame] | 658 | (GEPLHS->hasAllConstantIndices() || GEPLHS->hasOneUse()) && |
| 659 | (GEPRHS->hasAllConstantIndices() || GEPRHS->hasOneUse()) && |
| 660 | PtrBase->stripPointerCasts() == |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 661 | GEPRHS->getOperand(0)->stripPointerCasts()) { |
Matt Arsenault | 44f60d0 | 2014-06-09 19:20:29 +0000 | [diff] [blame] | 662 | Value *LOffset = EmitGEPOffset(GEPLHS); |
| 663 | Value *ROffset = EmitGEPOffset(GEPRHS); |
| 664 | |
| 665 | // If we looked through an addrspacecast between different sized address |
| 666 | // spaces, the LHS and RHS pointers are different sized |
| 667 | // integers. Truncate to the smaller one. |
| 668 | Type *LHSIndexTy = LOffset->getType(); |
| 669 | Type *RHSIndexTy = ROffset->getType(); |
| 670 | if (LHSIndexTy != RHSIndexTy) { |
| 671 | if (LHSIndexTy->getPrimitiveSizeInBits() < |
| 672 | RHSIndexTy->getPrimitiveSizeInBits()) { |
| 673 | ROffset = Builder->CreateTrunc(ROffset, LHSIndexTy); |
| 674 | } else |
| 675 | LOffset = Builder->CreateTrunc(LOffset, RHSIndexTy); |
| 676 | } |
| 677 | |
Benjamin Kramer | 7adb189 | 2012-02-20 15:07:47 +0000 | [diff] [blame] | 678 | Value *Cmp = Builder->CreateICmp(ICmpInst::getSignedPredicate(Cond), |
Matt Arsenault | 44f60d0 | 2014-06-09 19:20:29 +0000 | [diff] [blame] | 679 | LOffset, ROffset); |
Benjamin Kramer | 7adb189 | 2012-02-20 15:07:47 +0000 | [diff] [blame] | 680 | return ReplaceInstUsesWith(I, Cmp); |
| 681 | } |
| 682 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 683 | // Otherwise, the base pointers are different and the indices are |
| 684 | // different, bail out. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 685 | return nullptr; |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 686 | } |
| 687 | |
| 688 | // If one of the GEPs has all zero indices, recurse. |
Benjamin Kramer | d0993e0 | 2014-07-07 11:01:16 +0000 | [diff] [blame] | 689 | if (GEPLHS->hasAllZeroIndices()) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 690 | return FoldGEPICmp(GEPRHS, GEPLHS->getOperand(0), |
David Majnemer | 92a8a7d | 2013-06-29 09:45:35 +0000 | [diff] [blame] | 691 | ICmpInst::getSwappedPredicate(Cond), I); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 692 | |
| 693 | // If the other GEP has all zero indices, recurse. |
Benjamin Kramer | d0993e0 | 2014-07-07 11:01:16 +0000 | [diff] [blame] | 694 | if (GEPRHS->hasAllZeroIndices()) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 695 | return FoldGEPICmp(GEPLHS, GEPRHS->getOperand(0), Cond, I); |
| 696 | |
Stuart Hastings | 66a82b9 | 2011-05-14 05:55:10 +0000 | [diff] [blame] | 697 | bool GEPsInBounds = GEPLHS->isInBounds() && GEPRHS->isInBounds(); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 698 | if (GEPLHS->getNumOperands() == GEPRHS->getNumOperands()) { |
| 699 | // If the GEPs only differ by one index, compare it. |
| 700 | unsigned NumDifferences = 0; // Keep track of # differences. |
| 701 | unsigned DiffOperand = 0; // The operand that differs. |
| 702 | for (unsigned i = 1, e = GEPRHS->getNumOperands(); i != e; ++i) |
| 703 | if (GEPLHS->getOperand(i) != GEPRHS->getOperand(i)) { |
| 704 | if (GEPLHS->getOperand(i)->getType()->getPrimitiveSizeInBits() != |
| 705 | GEPRHS->getOperand(i)->getType()->getPrimitiveSizeInBits()) { |
| 706 | // Irreconcilable differences. |
| 707 | NumDifferences = 2; |
| 708 | break; |
| 709 | } else { |
| 710 | if (NumDifferences++) break; |
| 711 | DiffOperand = i; |
| 712 | } |
| 713 | } |
| 714 | |
Rafael Espindola | a7bbc0b | 2013-06-06 17:03:05 +0000 | [diff] [blame] | 715 | if (NumDifferences == 0) // SAME GEP? |
| 716 | return ReplaceInstUsesWith(I, // No comparison is needed here. |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 717 | Builder->getInt1(ICmpInst::isTrueWhenEqual(Cond))); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 718 | |
Stuart Hastings | 66a82b9 | 2011-05-14 05:55:10 +0000 | [diff] [blame] | 719 | else if (NumDifferences == 1 && GEPsInBounds) { |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 720 | Value *LHSV = GEPLHS->getOperand(DiffOperand); |
| 721 | Value *RHSV = GEPRHS->getOperand(DiffOperand); |
| 722 | // Make sure we do a signed comparison here. |
| 723 | return new ICmpInst(ICmpInst::getSignedPredicate(Cond), LHSV, RHSV); |
| 724 | } |
| 725 | } |
| 726 | |
| 727 | // Only lower this if the icmp is the only user of the GEP or if we expect |
| 728 | // the result to fold to a constant! |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 729 | if (GEPsInBounds && (isa<ConstantExpr>(GEPLHS) || GEPLHS->hasOneUse()) && |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 730 | (isa<ConstantExpr>(GEPRHS) || GEPRHS->hasOneUse())) { |
| 731 | // ((gep Ptr, OFFSET1) cmp (gep Ptr, OFFSET2) ---> (OFFSET1 cmp OFFSET2) |
| 732 | Value *L = EmitGEPOffset(GEPLHS); |
| 733 | Value *R = EmitGEPOffset(GEPRHS); |
| 734 | return new ICmpInst(ICmpInst::getSignedPredicate(Cond), L, R); |
| 735 | } |
| 736 | } |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 737 | return nullptr; |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 738 | } |
| 739 | |
| 740 | /// FoldICmpAddOpCst - Fold "icmp pred (X+CI), X". |
Benjamin Kramer | 0e2d162 | 2013-09-20 22:12:42 +0000 | [diff] [blame] | 741 | Instruction *InstCombiner::FoldICmpAddOpCst(Instruction &ICI, |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 742 | Value *X, ConstantInt *CI, |
Benjamin Kramer | 0e2d162 | 2013-09-20 22:12:42 +0000 | [diff] [blame] | 743 | ICmpInst::Predicate Pred) { |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 744 | // From this point on, we know that (X+C <= X) --> (X+C < X) because C != 0, |
Chris Lattner | 0ab5e2c | 2011-04-15 05:18:47 +0000 | [diff] [blame] | 745 | // so the values can never be equal. Similarly for all other "or equals" |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 746 | // operators. |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 747 | |
Chris Lattner | 8c92b57 | 2010-01-08 17:48:19 +0000 | [diff] [blame] | 748 | // (X+1) <u X --> X >u (MAXUINT-1) --> X == 255 |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 749 | // (X+2) <u X --> X >u (MAXUINT-2) --> X > 253 |
| 750 | // (X+MAXUINT) <u X --> X >u (MAXUINT-MAXUINT) --> X != 0 |
| 751 | if (Pred == ICmpInst::ICMP_ULT || Pred == ICmpInst::ICMP_ULE) { |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 752 | Value *R = |
Chris Lattner | 8c92b57 | 2010-01-08 17:48:19 +0000 | [diff] [blame] | 753 | ConstantExpr::getSub(ConstantInt::getAllOnesValue(CI->getType()), CI); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 754 | return new ICmpInst(ICmpInst::ICMP_UGT, X, R); |
| 755 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 756 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 757 | // (X+1) >u X --> X <u (0-1) --> X != 255 |
| 758 | // (X+2) >u X --> X <u (0-2) --> X <u 254 |
| 759 | // (X+MAXUINT) >u X --> X <u (0-MAXUINT) --> X <u 1 --> X == 0 |
Duncan Sands | e522001 | 2011-02-17 07:46:37 +0000 | [diff] [blame] | 760 | if (Pred == ICmpInst::ICMP_UGT || Pred == ICmpInst::ICMP_UGE) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 761 | return new ICmpInst(ICmpInst::ICMP_ULT, X, ConstantExpr::getNeg(CI)); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 762 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 763 | unsigned BitWidth = CI->getType()->getPrimitiveSizeInBits(); |
| 764 | ConstantInt *SMax = ConstantInt::get(X->getContext(), |
| 765 | APInt::getSignedMaxValue(BitWidth)); |
| 766 | |
| 767 | // (X+ 1) <s X --> X >s (MAXSINT-1) --> X == 127 |
| 768 | // (X+ 2) <s X --> X >s (MAXSINT-2) --> X >s 125 |
| 769 | // (X+MAXSINT) <s X --> X >s (MAXSINT-MAXSINT) --> X >s 0 |
| 770 | // (X+MINSINT) <s X --> X >s (MAXSINT-MINSINT) --> X >s -1 |
| 771 | // (X+ -2) <s X --> X >s (MAXSINT- -2) --> X >s 126 |
| 772 | // (X+ -1) <s X --> X >s (MAXSINT- -1) --> X != 127 |
Duncan Sands | e522001 | 2011-02-17 07:46:37 +0000 | [diff] [blame] | 773 | if (Pred == ICmpInst::ICMP_SLT || Pred == ICmpInst::ICMP_SLE) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 774 | return new ICmpInst(ICmpInst::ICMP_SGT, X, ConstantExpr::getSub(SMax, CI)); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 775 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 776 | // (X+ 1) >s X --> X <s (MAXSINT-(1-1)) --> X != 127 |
| 777 | // (X+ 2) >s X --> X <s (MAXSINT-(2-1)) --> X <s 126 |
| 778 | // (X+MAXSINT) >s X --> X <s (MAXSINT-(MAXSINT-1)) --> X <s 1 |
| 779 | // (X+MINSINT) >s X --> X <s (MAXSINT-(MINSINT-1)) --> X <s -2 |
| 780 | // (X+ -2) >s X --> X <s (MAXSINT-(-2-1)) --> X <s -126 |
| 781 | // (X+ -1) >s X --> X <s (MAXSINT-(-1-1)) --> X == -128 |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 782 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 783 | assert(Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_SGE); |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 784 | Constant *C = Builder->getInt(CI->getValue()-1); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 785 | return new ICmpInst(ICmpInst::ICMP_SLT, X, ConstantExpr::getSub(SMax, C)); |
| 786 | } |
| 787 | |
| 788 | /// FoldICmpDivCst - Fold "icmp pred, ([su]div X, DivRHS), CmpRHS" where DivRHS |
| 789 | /// and CmpRHS are both known to be integer constants. |
| 790 | Instruction *InstCombiner::FoldICmpDivCst(ICmpInst &ICI, BinaryOperator *DivI, |
| 791 | ConstantInt *DivRHS) { |
| 792 | ConstantInt *CmpRHS = cast<ConstantInt>(ICI.getOperand(1)); |
| 793 | const APInt &CmpRHSV = CmpRHS->getValue(); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 794 | |
| 795 | // FIXME: If the operand types don't match the type of the divide |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 796 | // then don't attempt this transform. The code below doesn't have the |
| 797 | // logic to deal with a signed divide and an unsigned compare (and |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 798 | // vice versa). This is because (x /s C1) <s C2 produces different |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 799 | // results than (x /s C1) <u C2 or (x /u C1) <s C2 or even |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 800 | // (x /u C1) <u C2. Simply casting the operands and result won't |
| 801 | // work. :( The if statement below tests that condition and bails |
Chris Lattner | 9845710 | 2011-02-10 05:23:05 +0000 | [diff] [blame] | 802 | // if it finds it. |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 803 | bool DivIsSigned = DivI->getOpcode() == Instruction::SDiv; |
| 804 | if (!ICI.isEquality() && DivIsSigned != ICI.isSigned()) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 805 | return nullptr; |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 806 | if (DivRHS->isZero()) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 807 | return nullptr; // The ProdOV computation fails on divide by zero. |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 808 | if (DivIsSigned && DivRHS->isAllOnesValue()) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 809 | return nullptr; // The overflow computation also screws up here |
Chris Lattner | 43273af | 2011-02-13 08:07:21 +0000 | [diff] [blame] | 810 | if (DivRHS->isOne()) { |
| 811 | // This eliminates some funny cases with INT_MIN. |
| 812 | ICI.setOperand(0, DivI->getOperand(0)); // X/1 == X. |
| 813 | return &ICI; |
| 814 | } |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 815 | |
| 816 | // Compute Prod = CI * DivRHS. We are essentially solving an equation |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 817 | // of form X/C1=C2. We solve for X by multiplying C1 (DivRHS) and |
| 818 | // C2 (CI). By solving for X we can turn this into a range check |
| 819 | // instead of computing a divide. |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 820 | Constant *Prod = ConstantExpr::getMul(CmpRHS, DivRHS); |
| 821 | |
| 822 | // Determine if the product overflows by seeing if the product is |
| 823 | // not equal to the divide. Make sure we do the same kind of divide |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 824 | // as in the LHS instruction that we're folding. |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 825 | bool ProdOV = (DivIsSigned ? ConstantExpr::getSDiv(Prod, DivRHS) : |
| 826 | ConstantExpr::getUDiv(Prod, DivRHS)) != CmpRHS; |
| 827 | |
| 828 | // Get the ICmp opcode |
| 829 | ICmpInst::Predicate Pred = ICI.getPredicate(); |
| 830 | |
Chris Lattner | 9845710 | 2011-02-10 05:23:05 +0000 | [diff] [blame] | 831 | /// If the division is known to be exact, then there is no remainder from the |
| 832 | /// divide, so the covered range size is unit, otherwise it is the divisor. |
| 833 | ConstantInt *RangeSize = DivI->isExact() ? getOne(Prod) : DivRHS; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 834 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 835 | // Figure out the interval that is being checked. For example, a comparison |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 836 | // like "X /u 5 == 0" is really checking that X is in the interval [0, 5). |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 837 | // Compute this interval based on the constants involved and the signedness of |
| 838 | // the compare/divide. This computes a half-open interval, keeping track of |
| 839 | // whether either value in the interval overflows. After analysis each |
| 840 | // overflow variable is set to 0 if it's corresponding bound variable is valid |
| 841 | // -1 if overflowed off the bottom end, or +1 if overflowed off the top end. |
| 842 | int LoOverflow = 0, HiOverflow = 0; |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 843 | Constant *LoBound = nullptr, *HiBound = nullptr; |
Chris Lattner | 9845710 | 2011-02-10 05:23:05 +0000 | [diff] [blame] | 844 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 845 | if (!DivIsSigned) { // udiv |
| 846 | // e.g. X/5 op 3 --> [15, 20) |
| 847 | LoBound = Prod; |
| 848 | HiOverflow = LoOverflow = ProdOV; |
Chris Lattner | 9845710 | 2011-02-10 05:23:05 +0000 | [diff] [blame] | 849 | if (!HiOverflow) { |
| 850 | // If this is not an exact divide, then many values in the range collapse |
| 851 | // to the same result value. |
| 852 | HiOverflow = AddWithOverflow(HiBound, LoBound, RangeSize, false); |
| 853 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 854 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 855 | } else if (DivRHS->getValue().isStrictlyPositive()) { // Divisor is > 0. |
| 856 | if (CmpRHSV == 0) { // (X / pos) op 0 |
| 857 | // Can't overflow. e.g. X/2 op 0 --> [-1, 2) |
Chris Lattner | 9845710 | 2011-02-10 05:23:05 +0000 | [diff] [blame] | 858 | LoBound = ConstantExpr::getNeg(SubOne(RangeSize)); |
| 859 | HiBound = RangeSize; |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 860 | } else if (CmpRHSV.isStrictlyPositive()) { // (X / pos) op pos |
| 861 | LoBound = Prod; // e.g. X/5 op 3 --> [15, 20) |
| 862 | HiOverflow = LoOverflow = ProdOV; |
| 863 | if (!HiOverflow) |
Chris Lattner | 9845710 | 2011-02-10 05:23:05 +0000 | [diff] [blame] | 864 | HiOverflow = AddWithOverflow(HiBound, Prod, RangeSize, true); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 865 | } else { // (X / pos) op neg |
| 866 | // e.g. X/5 op -3 --> [-15-4, -15+1) --> [-19, -14) |
| 867 | HiBound = AddOne(Prod); |
| 868 | LoOverflow = HiOverflow = ProdOV ? -1 : 0; |
| 869 | if (!LoOverflow) { |
Chris Lattner | 9845710 | 2011-02-10 05:23:05 +0000 | [diff] [blame] | 870 | ConstantInt *DivNeg =cast<ConstantInt>(ConstantExpr::getNeg(RangeSize)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 871 | LoOverflow = AddWithOverflow(LoBound, HiBound, DivNeg, true) ? -1 : 0; |
Chris Lattner | 9845710 | 2011-02-10 05:23:05 +0000 | [diff] [blame] | 872 | } |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 873 | } |
Chris Lattner | b1a1512 | 2011-07-15 06:08:15 +0000 | [diff] [blame] | 874 | } else if (DivRHS->isNegative()) { // Divisor is < 0. |
Chris Lattner | 9845710 | 2011-02-10 05:23:05 +0000 | [diff] [blame] | 875 | if (DivI->isExact()) |
| 876 | RangeSize = cast<ConstantInt>(ConstantExpr::getNeg(RangeSize)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 877 | if (CmpRHSV == 0) { // (X / neg) op 0 |
| 878 | // e.g. X/-5 op 0 --> [-4, 5) |
Chris Lattner | 9845710 | 2011-02-10 05:23:05 +0000 | [diff] [blame] | 879 | LoBound = AddOne(RangeSize); |
| 880 | HiBound = cast<ConstantInt>(ConstantExpr::getNeg(RangeSize)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 881 | if (HiBound == DivRHS) { // -INTMIN = INTMIN |
| 882 | HiOverflow = 1; // [INTMIN+1, overflow) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 883 | HiBound = nullptr; // e.g. X/INTMIN = 0 --> X > INTMIN |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 884 | } |
| 885 | } else if (CmpRHSV.isStrictlyPositive()) { // (X / neg) op pos |
| 886 | // e.g. X/-5 op 3 --> [-19, -14) |
| 887 | HiBound = AddOne(Prod); |
| 888 | HiOverflow = LoOverflow = ProdOV ? -1 : 0; |
| 889 | if (!LoOverflow) |
Chris Lattner | 9845710 | 2011-02-10 05:23:05 +0000 | [diff] [blame] | 890 | LoOverflow = AddWithOverflow(LoBound, HiBound, RangeSize, true) ? -1:0; |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 891 | } else { // (X / neg) op neg |
| 892 | LoBound = Prod; // e.g. X/-5 op -3 --> [15, 20) |
| 893 | LoOverflow = HiOverflow = ProdOV; |
| 894 | if (!HiOverflow) |
Chris Lattner | 9845710 | 2011-02-10 05:23:05 +0000 | [diff] [blame] | 895 | HiOverflow = SubWithOverflow(HiBound, Prod, RangeSize, true); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 896 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 897 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 898 | // Dividing by a negative swaps the condition. LT <-> GT |
| 899 | Pred = ICmpInst::getSwappedPredicate(Pred); |
| 900 | } |
| 901 | |
| 902 | Value *X = DivI->getOperand(0); |
| 903 | switch (Pred) { |
| 904 | default: llvm_unreachable("Unhandled icmp opcode!"); |
| 905 | case ICmpInst::ICMP_EQ: |
| 906 | if (LoOverflow && HiOverflow) |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 907 | return ReplaceInstUsesWith(ICI, Builder->getFalse()); |
Chris Lattner | 067459c | 2010-03-05 08:46:26 +0000 | [diff] [blame] | 908 | if (HiOverflow) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 909 | return new ICmpInst(DivIsSigned ? ICmpInst::ICMP_SGE : |
| 910 | ICmpInst::ICMP_UGE, X, LoBound); |
Chris Lattner | 067459c | 2010-03-05 08:46:26 +0000 | [diff] [blame] | 911 | if (LoOverflow) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 912 | return new ICmpInst(DivIsSigned ? ICmpInst::ICMP_SLT : |
| 913 | ICmpInst::ICMP_ULT, X, HiBound); |
Chris Lattner | 9845710 | 2011-02-10 05:23:05 +0000 | [diff] [blame] | 914 | return ReplaceInstUsesWith(ICI, InsertRangeTest(X, LoBound, HiBound, |
| 915 | DivIsSigned, true)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 916 | case ICmpInst::ICMP_NE: |
| 917 | if (LoOverflow && HiOverflow) |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 918 | return ReplaceInstUsesWith(ICI, Builder->getTrue()); |
Chris Lattner | 067459c | 2010-03-05 08:46:26 +0000 | [diff] [blame] | 919 | if (HiOverflow) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 920 | return new ICmpInst(DivIsSigned ? ICmpInst::ICMP_SLT : |
| 921 | ICmpInst::ICMP_ULT, X, LoBound); |
Chris Lattner | 067459c | 2010-03-05 08:46:26 +0000 | [diff] [blame] | 922 | if (LoOverflow) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 923 | return new ICmpInst(DivIsSigned ? ICmpInst::ICMP_SGE : |
| 924 | ICmpInst::ICMP_UGE, X, HiBound); |
Chris Lattner | 067459c | 2010-03-05 08:46:26 +0000 | [diff] [blame] | 925 | return ReplaceInstUsesWith(ICI, InsertRangeTest(X, LoBound, HiBound, |
| 926 | DivIsSigned, false)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 927 | case ICmpInst::ICMP_ULT: |
| 928 | case ICmpInst::ICMP_SLT: |
| 929 | if (LoOverflow == +1) // Low bound is greater than input range. |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 930 | return ReplaceInstUsesWith(ICI, Builder->getTrue()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 931 | if (LoOverflow == -1) // Low bound is less than input range. |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 932 | return ReplaceInstUsesWith(ICI, Builder->getFalse()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 933 | return new ICmpInst(Pred, X, LoBound); |
| 934 | case ICmpInst::ICMP_UGT: |
| 935 | case ICmpInst::ICMP_SGT: |
| 936 | if (HiOverflow == +1) // High bound greater than input range. |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 937 | return ReplaceInstUsesWith(ICI, Builder->getFalse()); |
Chris Lattner | 9845710 | 2011-02-10 05:23:05 +0000 | [diff] [blame] | 938 | if (HiOverflow == -1) // High bound less than input range. |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 939 | return ReplaceInstUsesWith(ICI, Builder->getTrue()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 940 | if (Pred == ICmpInst::ICMP_UGT) |
| 941 | return new ICmpInst(ICmpInst::ICMP_UGE, X, HiBound); |
Chris Lattner | 9845710 | 2011-02-10 05:23:05 +0000 | [diff] [blame] | 942 | return new ICmpInst(ICmpInst::ICMP_SGE, X, HiBound); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 943 | } |
| 944 | } |
| 945 | |
Chris Lattner | d369f57 | 2011-02-13 07:43:07 +0000 | [diff] [blame] | 946 | /// FoldICmpShrCst - Handle "icmp(([al]shr X, cst1), cst2)". |
| 947 | Instruction *InstCombiner::FoldICmpShrCst(ICmpInst &ICI, BinaryOperator *Shr, |
| 948 | ConstantInt *ShAmt) { |
Chris Lattner | d369f57 | 2011-02-13 07:43:07 +0000 | [diff] [blame] | 949 | const APInt &CmpRHSV = cast<ConstantInt>(ICI.getOperand(1))->getValue(); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 950 | |
Chris Lattner | d369f57 | 2011-02-13 07:43:07 +0000 | [diff] [blame] | 951 | // Check that the shift amount is in range. If not, don't perform |
| 952 | // undefined shifts. When the shift is visited it will be |
| 953 | // simplified. |
| 954 | uint32_t TypeBits = CmpRHSV.getBitWidth(); |
| 955 | uint32_t ShAmtVal = (uint32_t)ShAmt->getLimitedValue(TypeBits); |
Chris Lattner | 43273af | 2011-02-13 08:07:21 +0000 | [diff] [blame] | 956 | if (ShAmtVal >= TypeBits || ShAmtVal == 0) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 957 | return nullptr; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 958 | |
Chris Lattner | 43273af | 2011-02-13 08:07:21 +0000 | [diff] [blame] | 959 | if (!ICI.isEquality()) { |
| 960 | // If we have an unsigned comparison and an ashr, we can't simplify this. |
| 961 | // Similarly for signed comparisons with lshr. |
| 962 | if (ICI.isSigned() != (Shr->getOpcode() == Instruction::AShr)) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 963 | return nullptr; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 964 | |
Eli Friedman | 865866e | 2011-05-25 23:26:20 +0000 | [diff] [blame] | 965 | // Otherwise, all lshr and most exact ashr's are equivalent to a udiv/sdiv |
| 966 | // by a power of 2. Since we already have logic to simplify these, |
| 967 | // transform to div and then simplify the resultant comparison. |
Chris Lattner | 43273af | 2011-02-13 08:07:21 +0000 | [diff] [blame] | 968 | if (Shr->getOpcode() == Instruction::AShr && |
Eli Friedman | 865866e | 2011-05-25 23:26:20 +0000 | [diff] [blame] | 969 | (!Shr->isExact() || ShAmtVal == TypeBits - 1)) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 970 | return nullptr; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 971 | |
Chris Lattner | 43273af | 2011-02-13 08:07:21 +0000 | [diff] [blame] | 972 | // Revisit the shift (to delete it). |
| 973 | Worklist.Add(Shr); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 974 | |
Chris Lattner | 43273af | 2011-02-13 08:07:21 +0000 | [diff] [blame] | 975 | Constant *DivCst = |
| 976 | ConstantInt::get(Shr->getType(), APInt::getOneBitSet(TypeBits, ShAmtVal)); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 977 | |
Chris Lattner | 43273af | 2011-02-13 08:07:21 +0000 | [diff] [blame] | 978 | Value *Tmp = |
| 979 | Shr->getOpcode() == Instruction::AShr ? |
| 980 | Builder->CreateSDiv(Shr->getOperand(0), DivCst, "", Shr->isExact()) : |
| 981 | Builder->CreateUDiv(Shr->getOperand(0), DivCst, "", Shr->isExact()); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 982 | |
Chris Lattner | 43273af | 2011-02-13 08:07:21 +0000 | [diff] [blame] | 983 | ICI.setOperand(0, Tmp); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 984 | |
Chris Lattner | 43273af | 2011-02-13 08:07:21 +0000 | [diff] [blame] | 985 | // If the builder folded the binop, just return it. |
| 986 | BinaryOperator *TheDiv = dyn_cast<BinaryOperator>(Tmp); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 987 | if (!TheDiv) |
Chris Lattner | 43273af | 2011-02-13 08:07:21 +0000 | [diff] [blame] | 988 | return &ICI; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 989 | |
Chris Lattner | 43273af | 2011-02-13 08:07:21 +0000 | [diff] [blame] | 990 | // Otherwise, fold this div/compare. |
| 991 | assert(TheDiv->getOpcode() == Instruction::SDiv || |
| 992 | TheDiv->getOpcode() == Instruction::UDiv); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 993 | |
Chris Lattner | 43273af | 2011-02-13 08:07:21 +0000 | [diff] [blame] | 994 | Instruction *Res = FoldICmpDivCst(ICI, TheDiv, cast<ConstantInt>(DivCst)); |
| 995 | assert(Res && "This div/cst should have folded!"); |
| 996 | return Res; |
| 997 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 998 | |
| 999 | |
Chris Lattner | d369f57 | 2011-02-13 07:43:07 +0000 | [diff] [blame] | 1000 | // If we are comparing against bits always shifted out, the |
| 1001 | // comparison cannot succeed. |
| 1002 | APInt Comp = CmpRHSV << ShAmtVal; |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 1003 | ConstantInt *ShiftedCmpRHS = Builder->getInt(Comp); |
Chris Lattner | d369f57 | 2011-02-13 07:43:07 +0000 | [diff] [blame] | 1004 | if (Shr->getOpcode() == Instruction::LShr) |
| 1005 | Comp = Comp.lshr(ShAmtVal); |
| 1006 | else |
| 1007 | Comp = Comp.ashr(ShAmtVal); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1008 | |
Chris Lattner | d369f57 | 2011-02-13 07:43:07 +0000 | [diff] [blame] | 1009 | if (Comp != CmpRHSV) { // Comparing against a bit that we know is zero. |
| 1010 | bool IsICMP_NE = ICI.getPredicate() == ICmpInst::ICMP_NE; |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 1011 | Constant *Cst = Builder->getInt1(IsICMP_NE); |
Chris Lattner | d369f57 | 2011-02-13 07:43:07 +0000 | [diff] [blame] | 1012 | return ReplaceInstUsesWith(ICI, Cst); |
| 1013 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1014 | |
Chris Lattner | d369f57 | 2011-02-13 07:43:07 +0000 | [diff] [blame] | 1015 | // Otherwise, check to see if the bits shifted out are known to be zero. |
| 1016 | // If so, we can compare against the unshifted value: |
| 1017 | // (X & 4) >> 1 == 2 --> (X & 4) == 4. |
Chris Lattner | 9bd7fdf | 2011-02-13 18:30:09 +0000 | [diff] [blame] | 1018 | if (Shr->hasOneUse() && Shr->isExact()) |
Chris Lattner | d369f57 | 2011-02-13 07:43:07 +0000 | [diff] [blame] | 1019 | return new ICmpInst(ICI.getPredicate(), Shr->getOperand(0), ShiftedCmpRHS); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1020 | |
Chris Lattner | d369f57 | 2011-02-13 07:43:07 +0000 | [diff] [blame] | 1021 | if (Shr->hasOneUse()) { |
| 1022 | // Otherwise strength reduce the shift into an and. |
| 1023 | APInt Val(APInt::getHighBitsSet(TypeBits, TypeBits - ShAmtVal)); |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 1024 | Constant *Mask = Builder->getInt(Val); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1025 | |
Chris Lattner | d369f57 | 2011-02-13 07:43:07 +0000 | [diff] [blame] | 1026 | Value *And = Builder->CreateAnd(Shr->getOperand(0), |
| 1027 | Mask, Shr->getName()+".mask"); |
| 1028 | return new ICmpInst(ICI.getPredicate(), And, ShiftedCmpRHS); |
| 1029 | } |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1030 | return nullptr; |
Chris Lattner | d369f57 | 2011-02-13 07:43:07 +0000 | [diff] [blame] | 1031 | } |
| 1032 | |
Suyog Sarda | 3a8c2c1 | 2014-07-22 19:19:36 +0000 | [diff] [blame] | 1033 | /// FoldICmpCstShrCst - Handle "(icmp eq/ne (ashr/lshr const2, A), const1)" -> |
| 1034 | /// (icmp eq/ne A, Log2(const2/const1)) -> |
| 1035 | /// (icmp eq/ne A, Log2(const2) - Log2(const1)). |
| 1036 | Instruction *InstCombiner::FoldICmpCstShrCst(ICmpInst &I, Value *Op, Value *A, |
| 1037 | ConstantInt *CI1, |
| 1038 | ConstantInt *CI2) { |
| 1039 | assert(I.isEquality() && "Cannot fold icmp gt/lt"); |
| 1040 | |
| 1041 | auto getConstant = [&I, this](bool IsTrue) { |
| 1042 | if (I.getPredicate() == I.ICMP_NE) |
| 1043 | IsTrue = !IsTrue; |
| 1044 | return ReplaceInstUsesWith(I, ConstantInt::get(I.getType(), IsTrue)); |
| 1045 | }; |
| 1046 | |
| 1047 | auto getICmp = [&I](CmpInst::Predicate Pred, Value *LHS, Value *RHS) { |
| 1048 | if (I.getPredicate() == I.ICMP_NE) |
| 1049 | Pred = CmpInst::getInversePredicate(Pred); |
| 1050 | return new ICmpInst(Pred, LHS, RHS); |
| 1051 | }; |
| 1052 | |
| 1053 | APInt AP1 = CI1->getValue(); |
| 1054 | APInt AP2 = CI2->getValue(); |
| 1055 | |
David Majnemer | 2abb818 | 2014-10-25 07:13:13 +0000 | [diff] [blame] | 1056 | // Don't bother doing any work for cases which InstSimplify handles. |
| 1057 | if (AP2 == 0) |
| 1058 | return nullptr; |
| 1059 | bool IsAShr = isa<AShrOperator>(Op); |
| 1060 | if (IsAShr) { |
| 1061 | if (AP2.isAllOnesValue()) |
| 1062 | return nullptr; |
| 1063 | if (AP2.isNegative() != AP1.isNegative()) |
| 1064 | return nullptr; |
| 1065 | if (AP2.sgt(AP1)) |
| 1066 | return nullptr; |
| 1067 | } |
Suyog Sarda | 3a8c2c1 | 2014-07-22 19:19:36 +0000 | [diff] [blame] | 1068 | |
David Majnemer | d205602 | 2014-10-21 19:51:55 +0000 | [diff] [blame] | 1069 | if (!AP1) |
Suyog Sarda | 3a8c2c1 | 2014-07-22 19:19:36 +0000 | [diff] [blame] | 1070 | // 'A' must be large enough to shift out the highest set bit. |
| 1071 | return getICmp(I.ICMP_UGT, A, |
| 1072 | ConstantInt::get(A->getType(), AP2.logBase2())); |
Suyog Sarda | 3a8c2c1 | 2014-07-22 19:19:36 +0000 | [diff] [blame] | 1073 | |
David Majnemer | d205602 | 2014-10-21 19:51:55 +0000 | [diff] [blame] | 1074 | if (AP1 == AP2) |
| 1075 | return getICmp(I.ICMP_EQ, A, ConstantInt::getNullValue(A->getType())); |
Suyog Sarda | 3a8c2c1 | 2014-07-22 19:19:36 +0000 | [diff] [blame] | 1076 | |
Suyog Sarda | 3a8c2c1 | 2014-07-22 19:19:36 +0000 | [diff] [blame] | 1077 | // Get the distance between the highest bit that's set. |
Andrea Di Biagio | 5b92b49 | 2014-09-17 11:32:31 +0000 | [diff] [blame] | 1078 | int Shift; |
David Majnemer | d205602 | 2014-10-21 19:51:55 +0000 | [diff] [blame] | 1079 | // Both the constants are negative, take their positive to calculate log. |
| 1080 | if (IsAShr && AP1.isNegative()) |
Andrea Di Biagio | 458a669 | 2014-10-09 12:41:49 +0000 | [diff] [blame] | 1081 | // Get the ones' complement of AP2 and AP1 when computing the distance. |
| 1082 | Shift = (~AP2).logBase2() - (~AP1).logBase2(); |
Andrea Di Biagio | 5b92b49 | 2014-09-17 11:32:31 +0000 | [diff] [blame] | 1083 | else |
| 1084 | Shift = AP2.logBase2() - AP1.logBase2(); |
Suyog Sarda | 3a8c2c1 | 2014-07-22 19:19:36 +0000 | [diff] [blame] | 1085 | |
David Majnemer | d205602 | 2014-10-21 19:51:55 +0000 | [diff] [blame] | 1086 | if (Shift > 0) { |
| 1087 | if (IsAShr ? AP1 == AP2.ashr(Shift) : AP1 == AP2.lshr(Shift)) |
| 1088 | return getICmp(I.ICMP_EQ, A, ConstantInt::get(A->getType(), Shift)); |
| 1089 | } |
Suyog Sarda | 3a8c2c1 | 2014-07-22 19:19:36 +0000 | [diff] [blame] | 1090 | // Shifting const2 will never be equal to const1. |
| 1091 | return getConstant(false); |
| 1092 | } |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1093 | |
David Majnemer | 59939ac | 2014-10-19 08:23:08 +0000 | [diff] [blame] | 1094 | /// FoldICmpCstShlCst - Handle "(icmp eq/ne (shl const2, A), const1)" -> |
| 1095 | /// (icmp eq/ne A, TrailingZeros(const1) - TrailingZeros(const2)). |
| 1096 | Instruction *InstCombiner::FoldICmpCstShlCst(ICmpInst &I, Value *Op, Value *A, |
| 1097 | ConstantInt *CI1, |
| 1098 | ConstantInt *CI2) { |
| 1099 | assert(I.isEquality() && "Cannot fold icmp gt/lt"); |
| 1100 | |
| 1101 | auto getConstant = [&I, this](bool IsTrue) { |
| 1102 | if (I.getPredicate() == I.ICMP_NE) |
| 1103 | IsTrue = !IsTrue; |
| 1104 | return ReplaceInstUsesWith(I, ConstantInt::get(I.getType(), IsTrue)); |
| 1105 | }; |
| 1106 | |
| 1107 | auto getICmp = [&I](CmpInst::Predicate Pred, Value *LHS, Value *RHS) { |
| 1108 | if (I.getPredicate() == I.ICMP_NE) |
| 1109 | Pred = CmpInst::getInversePredicate(Pred); |
| 1110 | return new ICmpInst(Pred, LHS, RHS); |
| 1111 | }; |
| 1112 | |
| 1113 | APInt AP1 = CI1->getValue(); |
| 1114 | APInt AP2 = CI2->getValue(); |
| 1115 | |
David Majnemer | 2abb818 | 2014-10-25 07:13:13 +0000 | [diff] [blame] | 1116 | // Don't bother doing any work for cases which InstSimplify handles. |
| 1117 | if (AP2 == 0) |
| 1118 | return nullptr; |
David Majnemer | 59939ac | 2014-10-19 08:23:08 +0000 | [diff] [blame] | 1119 | |
| 1120 | unsigned AP2TrailingZeros = AP2.countTrailingZeros(); |
| 1121 | |
| 1122 | if (!AP1 && AP2TrailingZeros != 0) |
| 1123 | return getICmp(I.ICMP_UGE, A, |
| 1124 | ConstantInt::get(A->getType(), AP2.getBitWidth() - AP2TrailingZeros)); |
| 1125 | |
| 1126 | if (AP1 == AP2) |
| 1127 | return getICmp(I.ICMP_EQ, A, ConstantInt::getNullValue(A->getType())); |
| 1128 | |
| 1129 | // Get the distance between the lowest bits that are set. |
| 1130 | int Shift = AP1.countTrailingZeros() - AP2TrailingZeros; |
| 1131 | |
| 1132 | if (Shift > 0 && AP2.shl(Shift) == AP1) |
| 1133 | return getICmp(I.ICMP_EQ, A, ConstantInt::get(A->getType(), Shift)); |
| 1134 | |
| 1135 | // Shifting const2 will never be equal to const1. |
| 1136 | return getConstant(false); |
| 1137 | } |
| 1138 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1139 | /// visitICmpInstWithInstAndIntCst - Handle "icmp (instr, intcst)". |
| 1140 | /// |
| 1141 | Instruction *InstCombiner::visitICmpInstWithInstAndIntCst(ICmpInst &ICI, |
| 1142 | Instruction *LHSI, |
| 1143 | ConstantInt *RHS) { |
| 1144 | const APInt &RHSV = RHS->getValue(); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1145 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1146 | switch (LHSI->getOpcode()) { |
| 1147 | case Instruction::Trunc: |
| 1148 | if (ICI.isEquality() && LHSI->hasOneUse()) { |
| 1149 | // Simplify icmp eq (trunc x to i8), 42 -> icmp eq x, 42|highbits if all |
| 1150 | // of the high bits truncated out of x are known. |
| 1151 | unsigned DstBits = LHSI->getType()->getPrimitiveSizeInBits(), |
| 1152 | SrcBits = LHSI->getOperand(0)->getType()->getPrimitiveSizeInBits(); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1153 | APInt KnownZero(SrcBits, 0), KnownOne(SrcBits, 0); |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 1154 | computeKnownBits(LHSI->getOperand(0), KnownZero, KnownOne, 0, &ICI); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1155 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1156 | // If all the high bits are known, we can do this xform. |
| 1157 | if ((KnownZero|KnownOne).countLeadingOnes() >= SrcBits-DstBits) { |
| 1158 | // Pull in the high bits from known-ones set. |
Jay Foad | 583abbc | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 1159 | APInt NewRHS = RHS->getValue().zext(SrcBits); |
Eli Friedman | e0a64d8 | 2012-05-11 01:32:59 +0000 | [diff] [blame] | 1160 | NewRHS |= KnownOne & APInt::getHighBitsSet(SrcBits, SrcBits-DstBits); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1161 | return new ICmpInst(ICI.getPredicate(), LHSI->getOperand(0), |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 1162 | Builder->getInt(NewRHS)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1163 | } |
| 1164 | } |
| 1165 | break; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1166 | |
Kay Tiong Khoo | 564560f | 2013-12-02 22:11:56 +0000 | [diff] [blame] | 1167 | case Instruction::Xor: // (icmp pred (xor X, XorCst), CI) |
| 1168 | if (ConstantInt *XorCst = dyn_cast<ConstantInt>(LHSI->getOperand(1))) { |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1169 | // If this is a comparison that tests the signbit (X < 0) or (x > -1), |
| 1170 | // fold the xor. |
| 1171 | if ((ICI.getPredicate() == ICmpInst::ICMP_SLT && RHSV == 0) || |
| 1172 | (ICI.getPredicate() == ICmpInst::ICMP_SGT && RHSV.isAllOnesValue())) { |
| 1173 | Value *CompareVal = LHSI->getOperand(0); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1174 | |
Kay Tiong Khoo | 564560f | 2013-12-02 22:11:56 +0000 | [diff] [blame] | 1175 | // If the sign bit of the XorCst is not set, there is no change to |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1176 | // the operation, just stop using the Xor. |
Kay Tiong Khoo | 564560f | 2013-12-02 22:11:56 +0000 | [diff] [blame] | 1177 | if (!XorCst->isNegative()) { |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1178 | ICI.setOperand(0, CompareVal); |
| 1179 | Worklist.Add(LHSI); |
| 1180 | return &ICI; |
| 1181 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1182 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1183 | // Was the old condition true if the operand is positive? |
| 1184 | bool isTrueIfPositive = ICI.getPredicate() == ICmpInst::ICMP_SGT; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1185 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1186 | // If so, the new one isn't. |
| 1187 | isTrueIfPositive ^= true; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1188 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1189 | if (isTrueIfPositive) |
| 1190 | return new ICmpInst(ICmpInst::ICMP_SGT, CompareVal, |
| 1191 | SubOne(RHS)); |
| 1192 | else |
| 1193 | return new ICmpInst(ICmpInst::ICMP_SLT, CompareVal, |
| 1194 | AddOne(RHS)); |
| 1195 | } |
| 1196 | |
| 1197 | if (LHSI->hasOneUse()) { |
| 1198 | // (icmp u/s (xor A SignBit), C) -> (icmp s/u A, (xor C SignBit)) |
Kay Tiong Khoo | 564560f | 2013-12-02 22:11:56 +0000 | [diff] [blame] | 1199 | if (!ICI.isEquality() && XorCst->getValue().isSignBit()) { |
| 1200 | const APInt &SignBit = XorCst->getValue(); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1201 | ICmpInst::Predicate Pred = ICI.isSigned() |
| 1202 | ? ICI.getUnsignedPredicate() |
| 1203 | : ICI.getSignedPredicate(); |
| 1204 | return new ICmpInst(Pred, LHSI->getOperand(0), |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 1205 | Builder->getInt(RHSV ^ SignBit)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1206 | } |
| 1207 | |
| 1208 | // (icmp u/s (xor A ~SignBit), C) -> (icmp s/u (xor C ~SignBit), A) |
Kay Tiong Khoo | 564560f | 2013-12-02 22:11:56 +0000 | [diff] [blame] | 1209 | if (!ICI.isEquality() && XorCst->isMaxValue(true)) { |
| 1210 | const APInt &NotSignBit = XorCst->getValue(); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1211 | ICmpInst::Predicate Pred = ICI.isSigned() |
| 1212 | ? ICI.getUnsignedPredicate() |
| 1213 | : ICI.getSignedPredicate(); |
| 1214 | Pred = ICI.getSwappedPredicate(Pred); |
| 1215 | return new ICmpInst(Pred, LHSI->getOperand(0), |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 1216 | Builder->getInt(RHSV ^ NotSignBit)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1217 | } |
| 1218 | } |
David Majnemer | 72d7627 | 2013-07-09 09:20:58 +0000 | [diff] [blame] | 1219 | |
| 1220 | // (icmp ugt (xor X, C), ~C) -> (icmp ult X, C) |
| 1221 | // iff -C is a power of 2 |
| 1222 | if (ICI.getPredicate() == ICmpInst::ICMP_UGT && |
Kay Tiong Khoo | 564560f | 2013-12-02 22:11:56 +0000 | [diff] [blame] | 1223 | XorCst->getValue() == ~RHSV && (RHSV + 1).isPowerOf2()) |
| 1224 | return new ICmpInst(ICmpInst::ICMP_ULT, LHSI->getOperand(0), XorCst); |
David Majnemer | 72d7627 | 2013-07-09 09:20:58 +0000 | [diff] [blame] | 1225 | |
| 1226 | // (icmp ult (xor X, C), -C) -> (icmp uge X, C) |
| 1227 | // iff -C is a power of 2 |
| 1228 | if (ICI.getPredicate() == ICmpInst::ICMP_ULT && |
Kay Tiong Khoo | 564560f | 2013-12-02 22:11:56 +0000 | [diff] [blame] | 1229 | XorCst->getValue() == -RHSV && RHSV.isPowerOf2()) |
| 1230 | return new ICmpInst(ICmpInst::ICMP_UGE, LHSI->getOperand(0), XorCst); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1231 | } |
| 1232 | break; |
Kay Tiong Khoo | 564560f | 2013-12-02 22:11:56 +0000 | [diff] [blame] | 1233 | case Instruction::And: // (icmp pred (and X, AndCst), RHS) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1234 | if (LHSI->hasOneUse() && isa<ConstantInt>(LHSI->getOperand(1)) && |
| 1235 | LHSI->getOperand(0)->hasOneUse()) { |
Kay Tiong Khoo | 564560f | 2013-12-02 22:11:56 +0000 | [diff] [blame] | 1236 | ConstantInt *AndCst = cast<ConstantInt>(LHSI->getOperand(1)); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1237 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1238 | // If the LHS is an AND of a truncating cast, we can widen the |
| 1239 | // and/compare to be the input width without changing the value |
| 1240 | // produced, eliminating a cast. |
| 1241 | if (TruncInst *Cast = dyn_cast<TruncInst>(LHSI->getOperand(0))) { |
| 1242 | // We can do this transformation if either the AND constant does not |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1243 | // have its sign bit set or if it is an equality comparison. |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1244 | // Extending a relational comparison when we're checking the sign |
| 1245 | // bit would not work. |
Benjamin Kramer | 35159c1 | 2011-06-12 22:47:53 +0000 | [diff] [blame] | 1246 | if (ICI.isEquality() || |
Kay Tiong Khoo | 564560f | 2013-12-02 22:11:56 +0000 | [diff] [blame] | 1247 | (!AndCst->isNegative() && RHSV.isNonNegative())) { |
Benjamin Kramer | 35159c1 | 2011-06-12 22:47:53 +0000 | [diff] [blame] | 1248 | Value *NewAnd = |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1249 | Builder->CreateAnd(Cast->getOperand(0), |
Kay Tiong Khoo | 564560f | 2013-12-02 22:11:56 +0000 | [diff] [blame] | 1250 | ConstantExpr::getZExt(AndCst, Cast->getSrcTy())); |
Benjamin Kramer | 35159c1 | 2011-06-12 22:47:53 +0000 | [diff] [blame] | 1251 | NewAnd->takeName(LHSI); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1252 | return new ICmpInst(ICI.getPredicate(), NewAnd, |
Benjamin Kramer | 35159c1 | 2011-06-12 22:47:53 +0000 | [diff] [blame] | 1253 | ConstantExpr::getZExt(RHS, Cast->getSrcTy())); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1254 | } |
| 1255 | } |
Benjamin Kramer | 91f914c | 2011-06-12 22:48:00 +0000 | [diff] [blame] | 1256 | |
| 1257 | // If the LHS is an AND of a zext, and we have an equality compare, we can |
| 1258 | // shrink the and/compare to the smaller type, eliminating the cast. |
| 1259 | if (ZExtInst *Cast = dyn_cast<ZExtInst>(LHSI->getOperand(0))) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1260 | IntegerType *Ty = cast<IntegerType>(Cast->getSrcTy()); |
Benjamin Kramer | 91f914c | 2011-06-12 22:48:00 +0000 | [diff] [blame] | 1261 | // Make sure we don't compare the upper bits, SimplifyDemandedBits |
| 1262 | // should fold the icmp to true/false in that case. |
| 1263 | if (ICI.isEquality() && RHSV.getActiveBits() <= Ty->getBitWidth()) { |
| 1264 | Value *NewAnd = |
| 1265 | Builder->CreateAnd(Cast->getOperand(0), |
Kay Tiong Khoo | 564560f | 2013-12-02 22:11:56 +0000 | [diff] [blame] | 1266 | ConstantExpr::getTrunc(AndCst, Ty)); |
Benjamin Kramer | 91f914c | 2011-06-12 22:48:00 +0000 | [diff] [blame] | 1267 | NewAnd->takeName(LHSI); |
| 1268 | return new ICmpInst(ICI.getPredicate(), NewAnd, |
| 1269 | ConstantExpr::getTrunc(RHS, Ty)); |
| 1270 | } |
| 1271 | } |
| 1272 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1273 | // If this is: (X >> C1) & C2 != C3 (where any shift and any compare |
| 1274 | // could exist), turn it into (X & (C2 << C1)) != (C3 << C1). This |
| 1275 | // happens a LOT in code produced by the C front-end, for bitfield |
| 1276 | // access. |
| 1277 | BinaryOperator *Shift = dyn_cast<BinaryOperator>(LHSI->getOperand(0)); |
| 1278 | if (Shift && !Shift->isShift()) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1279 | Shift = nullptr; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1280 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1281 | ConstantInt *ShAmt; |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1282 | ShAmt = Shift ? dyn_cast<ConstantInt>(Shift->getOperand(1)) : nullptr; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1283 | |
Kay Tiong Khoo | a570b5a | 2013-12-19 18:07:17 +0000 | [diff] [blame] | 1284 | // This seemingly simple opportunity to fold away a shift turns out to |
| 1285 | // be rather complicated. See PR17827 |
| 1286 | // ( http://llvm.org/bugs/show_bug.cgi?id=17827 ) for details. |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1287 | if (ShAmt) { |
Kay Tiong Khoo | 5389f74 | 2013-12-02 18:43:59 +0000 | [diff] [blame] | 1288 | bool CanFold = false; |
| 1289 | unsigned ShiftOpcode = Shift->getOpcode(); |
| 1290 | if (ShiftOpcode == Instruction::AShr) { |
Kay Tiong Khoo | a570b5a | 2013-12-19 18:07:17 +0000 | [diff] [blame] | 1291 | // There may be some constraints that make this possible, |
| 1292 | // but nothing simple has been discovered yet. |
| 1293 | CanFold = false; |
| 1294 | } else if (ShiftOpcode == Instruction::Shl) { |
| 1295 | // For a left shift, we can fold if the comparison is not signed. |
| 1296 | // We can also fold a signed comparison if the mask value and |
| 1297 | // comparison value are not negative. These constraints may not be |
| 1298 | // obvious, but we can prove that they are correct using an SMT |
Kay Tiong Khoo | e37d520 | 2013-12-19 18:35:54 +0000 | [diff] [blame] | 1299 | // solver. |
Kay Tiong Khoo | a570b5a | 2013-12-19 18:07:17 +0000 | [diff] [blame] | 1300 | if (!ICI.isSigned() || (!AndCst->isNegative() && !RHS->isNegative())) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1301 | CanFold = true; |
Kay Tiong Khoo | a570b5a | 2013-12-19 18:07:17 +0000 | [diff] [blame] | 1302 | } else if (ShiftOpcode == Instruction::LShr) { |
| 1303 | // For a logical right shift, we can fold if the comparison is not |
| 1304 | // signed. We can also fold a signed comparison if the shifted mask |
| 1305 | // value and the shifted comparison value are not negative. |
| 1306 | // These constraints may not be obvious, but we can prove that they |
Kay Tiong Khoo | e37d520 | 2013-12-19 18:35:54 +0000 | [diff] [blame] | 1307 | // are correct using an SMT solver. |
Kay Tiong Khoo | a570b5a | 2013-12-19 18:07:17 +0000 | [diff] [blame] | 1308 | if (!ICI.isSigned()) |
| 1309 | CanFold = true; |
| 1310 | else { |
| 1311 | ConstantInt *ShiftedAndCst = |
| 1312 | cast<ConstantInt>(ConstantExpr::getShl(AndCst, ShAmt)); |
| 1313 | ConstantInt *ShiftedRHSCst = |
| 1314 | cast<ConstantInt>(ConstantExpr::getShl(RHS, ShAmt)); |
| 1315 | |
| 1316 | if (!ShiftedAndCst->isNegative() && !ShiftedRHSCst->isNegative()) |
| 1317 | CanFold = true; |
| 1318 | } |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1319 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1320 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1321 | if (CanFold) { |
| 1322 | Constant *NewCst; |
Kay Tiong Khoo | d7b00ca | 2013-12-02 22:23:32 +0000 | [diff] [blame] | 1323 | if (ShiftOpcode == Instruction::Shl) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1324 | NewCst = ConstantExpr::getLShr(RHS, ShAmt); |
| 1325 | else |
| 1326 | NewCst = ConstantExpr::getShl(RHS, ShAmt); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1327 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1328 | // Check to see if we are shifting out any of the bits being |
| 1329 | // compared. |
Kay Tiong Khoo | d7b00ca | 2013-12-02 22:23:32 +0000 | [diff] [blame] | 1330 | if (ConstantExpr::get(ShiftOpcode, NewCst, ShAmt) != RHS) { |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1331 | // If we shifted bits out, the fold is not going to work out. |
| 1332 | // As a special case, check to see if this means that the |
| 1333 | // result is always true or false now. |
| 1334 | if (ICI.getPredicate() == ICmpInst::ICMP_EQ) |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 1335 | return ReplaceInstUsesWith(ICI, Builder->getFalse()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1336 | if (ICI.getPredicate() == ICmpInst::ICMP_NE) |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 1337 | return ReplaceInstUsesWith(ICI, Builder->getTrue()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1338 | } else { |
| 1339 | ICI.setOperand(1, NewCst); |
Kay Tiong Khoo | 564560f | 2013-12-02 22:11:56 +0000 | [diff] [blame] | 1340 | Constant *NewAndCst; |
Kay Tiong Khoo | d7b00ca | 2013-12-02 22:23:32 +0000 | [diff] [blame] | 1341 | if (ShiftOpcode == Instruction::Shl) |
Kay Tiong Khoo | 564560f | 2013-12-02 22:11:56 +0000 | [diff] [blame] | 1342 | NewAndCst = ConstantExpr::getLShr(AndCst, ShAmt); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1343 | else |
Kay Tiong Khoo | 564560f | 2013-12-02 22:11:56 +0000 | [diff] [blame] | 1344 | NewAndCst = ConstantExpr::getShl(AndCst, ShAmt); |
| 1345 | LHSI->setOperand(1, NewAndCst); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1346 | LHSI->setOperand(0, Shift->getOperand(0)); |
| 1347 | Worklist.Add(Shift); // Shift is dead. |
| 1348 | return &ICI; |
| 1349 | } |
| 1350 | } |
| 1351 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1352 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1353 | // Turn ((X >> Y) & C) == 0 into (X & (C << Y)) == 0. The later is |
| 1354 | // preferable because it allows the C<<Y expression to be hoisted out |
| 1355 | // of a loop if Y is invariant and X is not. |
| 1356 | if (Shift && Shift->hasOneUse() && RHSV == 0 && |
| 1357 | ICI.isEquality() && !Shift->isArithmeticShift() && |
| 1358 | !isa<Constant>(Shift->getOperand(0))) { |
| 1359 | // Compute C << Y. |
| 1360 | Value *NS; |
| 1361 | if (Shift->getOpcode() == Instruction::LShr) { |
Kay Tiong Khoo | 564560f | 2013-12-02 22:11:56 +0000 | [diff] [blame] | 1362 | NS = Builder->CreateShl(AndCst, Shift->getOperand(1)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1363 | } else { |
| 1364 | // Insert a logical shift. |
Kay Tiong Khoo | 564560f | 2013-12-02 22:11:56 +0000 | [diff] [blame] | 1365 | NS = Builder->CreateLShr(AndCst, Shift->getOperand(1)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1366 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1367 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1368 | // Compute X & (C << Y). |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1369 | Value *NewAnd = |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1370 | Builder->CreateAnd(Shift->getOperand(0), NS, LHSI->getName()); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1371 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1372 | ICI.setOperand(0, NewAnd); |
| 1373 | return &ICI; |
| 1374 | } |
Paul Redmond | 5917f4c | 2012-12-19 19:47:13 +0000 | [diff] [blame] | 1375 | |
David Majnemer | 0ffccf7 | 2014-08-24 09:10:57 +0000 | [diff] [blame] | 1376 | // (icmp pred (and (or (lshr X, Y), X), 1), 0) --> |
| 1377 | // (icmp pred (and X, (or (shl 1, Y), 1), 0)) |
| 1378 | // |
| 1379 | // iff pred isn't signed |
| 1380 | { |
| 1381 | Value *X, *Y, *LShr; |
| 1382 | if (!ICI.isSigned() && RHSV == 0) { |
| 1383 | if (match(LHSI->getOperand(1), m_One())) { |
| 1384 | Constant *One = cast<Constant>(LHSI->getOperand(1)); |
| 1385 | Value *Or = LHSI->getOperand(0); |
| 1386 | if (match(Or, m_Or(m_Value(LShr), m_Value(X))) && |
| 1387 | match(LShr, m_LShr(m_Specific(X), m_Value(Y)))) { |
| 1388 | unsigned UsesRemoved = 0; |
| 1389 | if (LHSI->hasOneUse()) |
| 1390 | ++UsesRemoved; |
| 1391 | if (Or->hasOneUse()) |
| 1392 | ++UsesRemoved; |
| 1393 | if (LShr->hasOneUse()) |
| 1394 | ++UsesRemoved; |
| 1395 | Value *NewOr = nullptr; |
| 1396 | // Compute X & ((1 << Y) | 1) |
| 1397 | if (auto *C = dyn_cast<Constant>(Y)) { |
| 1398 | if (UsesRemoved >= 1) |
| 1399 | NewOr = |
| 1400 | ConstantExpr::getOr(ConstantExpr::getNUWShl(One, C), One); |
| 1401 | } else { |
| 1402 | if (UsesRemoved >= 3) |
| 1403 | NewOr = Builder->CreateOr(Builder->CreateShl(One, Y, |
| 1404 | LShr->getName(), |
| 1405 | /*HasNUW=*/true), |
| 1406 | One, Or->getName()); |
| 1407 | } |
| 1408 | if (NewOr) { |
| 1409 | Value *NewAnd = Builder->CreateAnd(X, NewOr, LHSI->getName()); |
| 1410 | ICI.setOperand(0, NewAnd); |
| 1411 | return &ICI; |
| 1412 | } |
| 1413 | } |
| 1414 | } |
| 1415 | } |
| 1416 | } |
| 1417 | |
Kay Tiong Khoo | 564560f | 2013-12-02 22:11:56 +0000 | [diff] [blame] | 1418 | // Replace ((X & AndCst) > RHSV) with ((X & AndCst) != 0), if any |
| 1419 | // bit set in (X & AndCst) will produce a result greater than RHSV. |
Paul Redmond | 5917f4c | 2012-12-19 19:47:13 +0000 | [diff] [blame] | 1420 | if (ICI.getPredicate() == ICmpInst::ICMP_UGT) { |
Kay Tiong Khoo | 564560f | 2013-12-02 22:11:56 +0000 | [diff] [blame] | 1421 | unsigned NTZ = AndCst->getValue().countTrailingZeros(); |
| 1422 | if ((NTZ < AndCst->getBitWidth()) && |
| 1423 | APInt::getOneBitSet(AndCst->getBitWidth(), NTZ).ugt(RHSV)) |
Paul Redmond | 5917f4c | 2012-12-19 19:47:13 +0000 | [diff] [blame] | 1424 | return new ICmpInst(ICmpInst::ICMP_NE, LHSI, |
| 1425 | Constant::getNullValue(RHS->getType())); |
| 1426 | } |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1427 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1428 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1429 | // Try to optimize things like "A[i]&42 == 0" to index computations. |
| 1430 | if (LoadInst *LI = dyn_cast<LoadInst>(LHSI->getOperand(0))) { |
| 1431 | if (GetElementPtrInst *GEP = |
| 1432 | dyn_cast<GetElementPtrInst>(LI->getOperand(0))) |
| 1433 | if (GlobalVariable *GV = dyn_cast<GlobalVariable>(GEP->getOperand(0))) |
| 1434 | if (GV->isConstant() && GV->hasDefinitiveInitializer() && |
| 1435 | !LI->isVolatile() && isa<ConstantInt>(LHSI->getOperand(1))) { |
| 1436 | ConstantInt *C = cast<ConstantInt>(LHSI->getOperand(1)); |
| 1437 | if (Instruction *Res = FoldCmpLoadFromIndexedGlobal(GEP, GV,ICI, C)) |
| 1438 | return Res; |
| 1439 | } |
| 1440 | } |
David Majnemer | 414d4e5 | 2013-07-09 08:09:32 +0000 | [diff] [blame] | 1441 | |
| 1442 | // X & -C == -C -> X > u ~C |
| 1443 | // X & -C != -C -> X <= u ~C |
| 1444 | // iff C is a power of 2 |
| 1445 | if (ICI.isEquality() && RHS == LHSI->getOperand(1) && (-RHSV).isPowerOf2()) |
| 1446 | return new ICmpInst( |
| 1447 | ICI.getPredicate() == ICmpInst::ICMP_EQ ? ICmpInst::ICMP_UGT |
| 1448 | : ICmpInst::ICMP_ULE, |
| 1449 | LHSI->getOperand(0), SubOne(RHS)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1450 | break; |
| 1451 | |
| 1452 | case Instruction::Or: { |
| 1453 | if (!ICI.isEquality() || !RHS->isNullValue() || !LHSI->hasOneUse()) |
| 1454 | break; |
| 1455 | Value *P, *Q; |
| 1456 | if (match(LHSI, m_Or(m_PtrToInt(m_Value(P)), m_PtrToInt(m_Value(Q))))) { |
| 1457 | // Simplify icmp eq (or (ptrtoint P), (ptrtoint Q)), 0 |
| 1458 | // -> and (icmp eq P, null), (icmp eq Q, null). |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1459 | Value *ICIP = Builder->CreateICmp(ICI.getPredicate(), P, |
| 1460 | Constant::getNullValue(P->getType())); |
| 1461 | Value *ICIQ = Builder->CreateICmp(ICI.getPredicate(), Q, |
| 1462 | Constant::getNullValue(Q->getType())); |
| 1463 | Instruction *Op; |
| 1464 | if (ICI.getPredicate() == ICmpInst::ICMP_EQ) |
| 1465 | Op = BinaryOperator::CreateAnd(ICIP, ICIQ); |
| 1466 | else |
| 1467 | Op = BinaryOperator::CreateOr(ICIP, ICIQ); |
| 1468 | return Op; |
| 1469 | } |
| 1470 | break; |
| 1471 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1472 | |
Arnaud A. de Grandmaison | 9c383d6 | 2013-03-25 09:48:49 +0000 | [diff] [blame] | 1473 | case Instruction::Mul: { // (icmp pred (mul X, Val), CI) |
| 1474 | ConstantInt *Val = dyn_cast<ConstantInt>(LHSI->getOperand(1)); |
| 1475 | if (!Val) break; |
| 1476 | |
Arnaud A. de Grandmaison | 3ee88e8 | 2013-03-25 11:47:38 +0000 | [diff] [blame] | 1477 | // If this is a signed comparison to 0 and the mul is sign preserving, |
| 1478 | // use the mul LHS operand instead. |
| 1479 | ICmpInst::Predicate pred = ICI.getPredicate(); |
| 1480 | if (isSignTest(pred, RHS) && !Val->isZero() && |
| 1481 | cast<BinaryOperator>(LHSI)->hasNoSignedWrap()) |
| 1482 | return new ICmpInst(Val->isNegative() ? |
| 1483 | ICmpInst::getSwappedPredicate(pred) : pred, |
| 1484 | LHSI->getOperand(0), |
| 1485 | Constant::getNullValue(RHS->getType())); |
Arnaud A. de Grandmaison | 9c383d6 | 2013-03-25 09:48:49 +0000 | [diff] [blame] | 1486 | |
| 1487 | break; |
| 1488 | } |
| 1489 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1490 | case Instruction::Shl: { // (icmp pred (shl X, ShAmt), CI) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1491 | uint32_t TypeBits = RHSV.getBitWidth(); |
David Majnemer | b889e40 | 2013-06-28 23:42:03 +0000 | [diff] [blame] | 1492 | ConstantInt *ShAmt = dyn_cast<ConstantInt>(LHSI->getOperand(1)); |
| 1493 | if (!ShAmt) { |
| 1494 | Value *X; |
| 1495 | // (1 << X) pred P2 -> X pred Log2(P2) |
| 1496 | if (match(LHSI, m_Shl(m_One(), m_Value(X)))) { |
| 1497 | bool RHSVIsPowerOf2 = RHSV.isPowerOf2(); |
| 1498 | ICmpInst::Predicate Pred = ICI.getPredicate(); |
| 1499 | if (ICI.isUnsigned()) { |
| 1500 | if (!RHSVIsPowerOf2) { |
| 1501 | // (1 << X) < 30 -> X <= 4 |
| 1502 | // (1 << X) <= 30 -> X <= 4 |
| 1503 | // (1 << X) >= 30 -> X > 4 |
| 1504 | // (1 << X) > 30 -> X > 4 |
| 1505 | if (Pred == ICmpInst::ICMP_ULT) |
| 1506 | Pred = ICmpInst::ICMP_ULE; |
| 1507 | else if (Pred == ICmpInst::ICMP_UGE) |
| 1508 | Pred = ICmpInst::ICMP_UGT; |
| 1509 | } |
| 1510 | unsigned RHSLog2 = RHSV.logBase2(); |
| 1511 | |
| 1512 | // (1 << X) >= 2147483648 -> X >= 31 -> X == 31 |
David Majnemer | b889e40 | 2013-06-28 23:42:03 +0000 | [diff] [blame] | 1513 | // (1 << X) < 2147483648 -> X < 31 -> X != 31 |
| 1514 | if (RHSLog2 == TypeBits-1) { |
| 1515 | if (Pred == ICmpInst::ICMP_UGE) |
| 1516 | Pred = ICmpInst::ICMP_EQ; |
David Majnemer | b889e40 | 2013-06-28 23:42:03 +0000 | [diff] [blame] | 1517 | else if (Pred == ICmpInst::ICMP_ULT) |
| 1518 | Pred = ICmpInst::ICMP_NE; |
| 1519 | } |
| 1520 | |
| 1521 | return new ICmpInst(Pred, X, |
| 1522 | ConstantInt::get(RHS->getType(), RHSLog2)); |
| 1523 | } else if (ICI.isSigned()) { |
| 1524 | if (RHSV.isAllOnesValue()) { |
| 1525 | // (1 << X) <= -1 -> X == 31 |
| 1526 | if (Pred == ICmpInst::ICMP_SLE) |
| 1527 | return new ICmpInst(ICmpInst::ICMP_EQ, X, |
| 1528 | ConstantInt::get(RHS->getType(), TypeBits-1)); |
| 1529 | |
| 1530 | // (1 << X) > -1 -> X != 31 |
| 1531 | if (Pred == ICmpInst::ICMP_SGT) |
| 1532 | return new ICmpInst(ICmpInst::ICMP_NE, X, |
| 1533 | ConstantInt::get(RHS->getType(), TypeBits-1)); |
| 1534 | } else if (!RHSV) { |
| 1535 | // (1 << X) < 0 -> X == 31 |
| 1536 | // (1 << X) <= 0 -> X == 31 |
| 1537 | if (Pred == ICmpInst::ICMP_SLT || Pred == ICmpInst::ICMP_SLE) |
| 1538 | return new ICmpInst(ICmpInst::ICMP_EQ, X, |
| 1539 | ConstantInt::get(RHS->getType(), TypeBits-1)); |
| 1540 | |
| 1541 | // (1 << X) >= 0 -> X != 31 |
| 1542 | // (1 << X) > 0 -> X != 31 |
| 1543 | if (Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_SGE) |
| 1544 | return new ICmpInst(ICmpInst::ICMP_NE, X, |
| 1545 | ConstantInt::get(RHS->getType(), TypeBits-1)); |
| 1546 | } |
| 1547 | } else if (ICI.isEquality()) { |
| 1548 | if (RHSVIsPowerOf2) |
| 1549 | return new ICmpInst( |
| 1550 | Pred, X, ConstantInt::get(RHS->getType(), RHSV.logBase2())); |
David Majnemer | b889e40 | 2013-06-28 23:42:03 +0000 | [diff] [blame] | 1551 | } |
| 1552 | } |
| 1553 | break; |
| 1554 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1555 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1556 | // Check that the shift amount is in range. If not, don't perform |
| 1557 | // undefined shifts. When the shift is visited it will be |
| 1558 | // simplified. |
| 1559 | if (ShAmt->uge(TypeBits)) |
| 1560 | break; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1561 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1562 | if (ICI.isEquality()) { |
| 1563 | // If we are comparing against bits always shifted out, the |
| 1564 | // comparison cannot succeed. |
| 1565 | Constant *Comp = |
| 1566 | ConstantExpr::getShl(ConstantExpr::getLShr(RHS, ShAmt), |
| 1567 | ShAmt); |
| 1568 | if (Comp != RHS) {// Comparing against a bit that we know is zero. |
| 1569 | bool IsICMP_NE = ICI.getPredicate() == ICmpInst::ICMP_NE; |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 1570 | Constant *Cst = Builder->getInt1(IsICMP_NE); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1571 | return ReplaceInstUsesWith(ICI, Cst); |
| 1572 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1573 | |
Chris Lattner | 9845710 | 2011-02-10 05:23:05 +0000 | [diff] [blame] | 1574 | // If the shift is NUW, then it is just shifting out zeros, no need for an |
| 1575 | // AND. |
| 1576 | if (cast<BinaryOperator>(LHSI)->hasNoUnsignedWrap()) |
| 1577 | return new ICmpInst(ICI.getPredicate(), LHSI->getOperand(0), |
| 1578 | ConstantExpr::getLShr(RHS, ShAmt)); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1579 | |
Arnaud A. de Grandmaison | 9c383d6 | 2013-03-25 09:48:49 +0000 | [diff] [blame] | 1580 | // If the shift is NSW and we compare to 0, then it is just shifting out |
| 1581 | // sign bits, no need for an AND either. |
| 1582 | if (cast<BinaryOperator>(LHSI)->hasNoSignedWrap() && RHSV == 0) |
| 1583 | return new ICmpInst(ICI.getPredicate(), LHSI->getOperand(0), |
| 1584 | ConstantExpr::getLShr(RHS, ShAmt)); |
| 1585 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1586 | if (LHSI->hasOneUse()) { |
| 1587 | // Otherwise strength reduce the shift into an and. |
| 1588 | uint32_t ShAmtVal = (uint32_t)ShAmt->getLimitedValue(TypeBits); |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 1589 | Constant *Mask = Builder->getInt(APInt::getLowBitsSet(TypeBits, |
| 1590 | TypeBits - ShAmtVal)); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1591 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1592 | Value *And = |
| 1593 | Builder->CreateAnd(LHSI->getOperand(0),Mask, LHSI->getName()+".mask"); |
| 1594 | return new ICmpInst(ICI.getPredicate(), And, |
Chris Lattner | 9845710 | 2011-02-10 05:23:05 +0000 | [diff] [blame] | 1595 | ConstantExpr::getLShr(RHS, ShAmt)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1596 | } |
| 1597 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1598 | |
Arnaud A. de Grandmaison | 9c383d6 | 2013-03-25 09:48:49 +0000 | [diff] [blame] | 1599 | // If this is a signed comparison to 0 and the shift is sign preserving, |
| 1600 | // use the shift LHS operand instead. |
| 1601 | ICmpInst::Predicate pred = ICI.getPredicate(); |
| 1602 | if (isSignTest(pred, RHS) && |
| 1603 | cast<BinaryOperator>(LHSI)->hasNoSignedWrap()) |
| 1604 | return new ICmpInst(pred, |
| 1605 | LHSI->getOperand(0), |
| 1606 | Constant::getNullValue(RHS->getType())); |
| 1607 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1608 | // Otherwise, if this is a comparison of the sign bit, simplify to and/test. |
| 1609 | bool TrueIfSigned = false; |
| 1610 | if (LHSI->hasOneUse() && |
| 1611 | isSignBitCheck(ICI.getPredicate(), RHS, TrueIfSigned)) { |
| 1612 | // (X << 31) <s 0 --> (X&1) != 0 |
Chris Lattner | 43273af | 2011-02-13 08:07:21 +0000 | [diff] [blame] | 1613 | Constant *Mask = ConstantInt::get(LHSI->getOperand(0)->getType(), |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1614 | APInt::getOneBitSet(TypeBits, |
Chris Lattner | 43273af | 2011-02-13 08:07:21 +0000 | [diff] [blame] | 1615 | TypeBits-ShAmt->getZExtValue()-1)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1616 | Value *And = |
| 1617 | Builder->CreateAnd(LHSI->getOperand(0), Mask, LHSI->getName()+".mask"); |
| 1618 | return new ICmpInst(TrueIfSigned ? ICmpInst::ICMP_NE : ICmpInst::ICMP_EQ, |
| 1619 | And, Constant::getNullValue(And->getType())); |
| 1620 | } |
Arnaud A. de Grandmaison | 61c167c | 2013-02-15 14:35:47 +0000 | [diff] [blame] | 1621 | |
| 1622 | // Transform (icmp pred iM (shl iM %v, N), CI) |
Arnaud A. de Grandmaison | 7153305 | 2013-03-13 14:40:37 +0000 | [diff] [blame] | 1623 | // -> (icmp pred i(M-N) (trunc %v iM to i(M-N)), (trunc (CI>>N)) |
| 1624 | // Transform the shl to a trunc if (trunc (CI>>N)) has no loss and M-N. |
Arnaud A. de Grandmaison | 61c167c | 2013-02-15 14:35:47 +0000 | [diff] [blame] | 1625 | // This enables to get rid of the shift in favor of a trunc which can be |
| 1626 | // free on the target. It has the additional benefit of comparing to a |
| 1627 | // smaller constant, which will be target friendly. |
| 1628 | unsigned Amt = ShAmt->getLimitedValue(TypeBits-1); |
Arnaud A. de Grandmaison | 7153305 | 2013-03-13 14:40:37 +0000 | [diff] [blame] | 1629 | if (LHSI->hasOneUse() && |
| 1630 | Amt != 0 && RHSV.countTrailingZeros() >= Amt) { |
Arnaud A. de Grandmaison | 61c167c | 2013-02-15 14:35:47 +0000 | [diff] [blame] | 1631 | Type *NTy = IntegerType::get(ICI.getContext(), TypeBits - Amt); |
| 1632 | Constant *NCI = ConstantExpr::getTrunc( |
| 1633 | ConstantExpr::getAShr(RHS, |
| 1634 | ConstantInt::get(RHS->getType(), Amt)), |
| 1635 | NTy); |
| 1636 | return new ICmpInst(ICI.getPredicate(), |
| 1637 | Builder->CreateTrunc(LHSI->getOperand(0), NTy), |
Arnaud A. de Grandmaison | 1fd843e | 2013-02-15 15:18:17 +0000 | [diff] [blame] | 1638 | NCI); |
Arnaud A. de Grandmaison | 61c167c | 2013-02-15 14:35:47 +0000 | [diff] [blame] | 1639 | } |
| 1640 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1641 | break; |
| 1642 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1643 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1644 | case Instruction::LShr: // (icmp pred (shr X, ShAmt), CI) |
Nick Lewycky | 174a705 | 2011-02-28 08:31:40 +0000 | [diff] [blame] | 1645 | case Instruction::AShr: { |
| 1646 | // Handle equality comparisons of shift-by-constant. |
| 1647 | BinaryOperator *BO = cast<BinaryOperator>(LHSI); |
| 1648 | if (ConstantInt *ShAmt = dyn_cast<ConstantInt>(LHSI->getOperand(1))) { |
| 1649 | if (Instruction *Res = FoldICmpShrCst(ICI, BO, ShAmt)) |
Chris Lattner | d369f57 | 2011-02-13 07:43:07 +0000 | [diff] [blame] | 1650 | return Res; |
Nick Lewycky | 174a705 | 2011-02-28 08:31:40 +0000 | [diff] [blame] | 1651 | } |
| 1652 | |
| 1653 | // Handle exact shr's. |
| 1654 | if (ICI.isEquality() && BO->isExact() && BO->hasOneUse()) { |
| 1655 | if (RHSV.isMinValue()) |
| 1656 | return new ICmpInst(ICI.getPredicate(), BO->getOperand(0), RHS); |
| 1657 | } |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1658 | break; |
Nick Lewycky | 174a705 | 2011-02-28 08:31:40 +0000 | [diff] [blame] | 1659 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1660 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1661 | case Instruction::SDiv: |
| 1662 | case Instruction::UDiv: |
| 1663 | // Fold: icmp pred ([us]div X, C1), C2 -> range test |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1664 | // Fold this div into the comparison, producing a range check. |
| 1665 | // Determine, based on the divide type, what the range is being |
| 1666 | // checked. If there is an overflow on the low or high side, remember |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1667 | // it, otherwise compute the range [low, hi) bounding the new value. |
| 1668 | // See: InsertRangeTest above for the kinds of replacements possible. |
| 1669 | if (ConstantInt *DivRHS = dyn_cast<ConstantInt>(LHSI->getOperand(1))) |
| 1670 | if (Instruction *R = FoldICmpDivCst(ICI, cast<BinaryOperator>(LHSI), |
| 1671 | DivRHS)) |
| 1672 | return R; |
| 1673 | break; |
| 1674 | |
David Majnemer | f2a9a51 | 2013-07-09 07:50:59 +0000 | [diff] [blame] | 1675 | case Instruction::Sub: { |
| 1676 | ConstantInt *LHSC = dyn_cast<ConstantInt>(LHSI->getOperand(0)); |
| 1677 | if (!LHSC) break; |
| 1678 | const APInt &LHSV = LHSC->getValue(); |
| 1679 | |
| 1680 | // C1-X <u C2 -> (X|(C2-1)) == C1 |
| 1681 | // iff C1 & (C2-1) == C2-1 |
| 1682 | // C2 is a power of 2 |
| 1683 | if (ICI.getPredicate() == ICmpInst::ICMP_ULT && LHSI->hasOneUse() && |
| 1684 | RHSV.isPowerOf2() && (LHSV & (RHSV - 1)) == (RHSV - 1)) |
| 1685 | return new ICmpInst(ICmpInst::ICMP_EQ, |
| 1686 | Builder->CreateOr(LHSI->getOperand(1), RHSV - 1), |
| 1687 | LHSC); |
| 1688 | |
David Majnemer | eeed73b | 2013-07-09 09:24:35 +0000 | [diff] [blame] | 1689 | // C1-X >u C2 -> (X|C2) != C1 |
David Majnemer | f2a9a51 | 2013-07-09 07:50:59 +0000 | [diff] [blame] | 1690 | // iff C1 & C2 == C2 |
| 1691 | // C2+1 is a power of 2 |
| 1692 | if (ICI.getPredicate() == ICmpInst::ICMP_UGT && LHSI->hasOneUse() && |
| 1693 | (RHSV + 1).isPowerOf2() && (LHSV & RHSV) == RHSV) |
| 1694 | return new ICmpInst(ICmpInst::ICMP_NE, |
| 1695 | Builder->CreateOr(LHSI->getOperand(1), RHSV), LHSC); |
| 1696 | break; |
| 1697 | } |
| 1698 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1699 | case Instruction::Add: |
| 1700 | // Fold: icmp pred (add X, C1), C2 |
| 1701 | if (!ICI.isEquality()) { |
| 1702 | ConstantInt *LHSC = dyn_cast<ConstantInt>(LHSI->getOperand(1)); |
| 1703 | if (!LHSC) break; |
| 1704 | const APInt &LHSV = LHSC->getValue(); |
| 1705 | |
| 1706 | ConstantRange CR = ICI.makeConstantRange(ICI.getPredicate(), RHSV) |
| 1707 | .subtract(LHSV); |
| 1708 | |
| 1709 | if (ICI.isSigned()) { |
| 1710 | if (CR.getLower().isSignBit()) { |
| 1711 | return new ICmpInst(ICmpInst::ICMP_SLT, LHSI->getOperand(0), |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 1712 | Builder->getInt(CR.getUpper())); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1713 | } else if (CR.getUpper().isSignBit()) { |
| 1714 | return new ICmpInst(ICmpInst::ICMP_SGE, LHSI->getOperand(0), |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 1715 | Builder->getInt(CR.getLower())); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1716 | } |
| 1717 | } else { |
| 1718 | if (CR.getLower().isMinValue()) { |
| 1719 | return new ICmpInst(ICmpInst::ICMP_ULT, LHSI->getOperand(0), |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 1720 | Builder->getInt(CR.getUpper())); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1721 | } else if (CR.getUpper().isMinValue()) { |
| 1722 | return new ICmpInst(ICmpInst::ICMP_UGE, LHSI->getOperand(0), |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 1723 | Builder->getInt(CR.getLower())); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1724 | } |
| 1725 | } |
David Majnemer | fa90a0b | 2013-07-08 11:53:08 +0000 | [diff] [blame] | 1726 | |
David Majnemer | bafa537 | 2013-07-09 07:58:32 +0000 | [diff] [blame] | 1727 | // X-C1 <u C2 -> (X & -C2) == C1 |
| 1728 | // iff C1 & (C2-1) == 0 |
| 1729 | // C2 is a power of 2 |
David Majnemer | fa90a0b | 2013-07-08 11:53:08 +0000 | [diff] [blame] | 1730 | if (ICI.getPredicate() == ICmpInst::ICMP_ULT && LHSI->hasOneUse() && |
David Majnemer | bafa537 | 2013-07-09 07:58:32 +0000 | [diff] [blame] | 1731 | RHSV.isPowerOf2() && (LHSV & (RHSV - 1)) == 0) |
David Majnemer | fa90a0b | 2013-07-08 11:53:08 +0000 | [diff] [blame] | 1732 | return new ICmpInst(ICmpInst::ICMP_EQ, |
| 1733 | Builder->CreateAnd(LHSI->getOperand(0), -RHSV), |
| 1734 | ConstantExpr::getNeg(LHSC)); |
David Majnemer | bafa537 | 2013-07-09 07:58:32 +0000 | [diff] [blame] | 1735 | |
David Majnemer | eeed73b | 2013-07-09 09:24:35 +0000 | [diff] [blame] | 1736 | // X-C1 >u C2 -> (X & ~C2) != C1 |
David Majnemer | bafa537 | 2013-07-09 07:58:32 +0000 | [diff] [blame] | 1737 | // iff C1 & C2 == 0 |
| 1738 | // C2+1 is a power of 2 |
| 1739 | if (ICI.getPredicate() == ICmpInst::ICMP_UGT && LHSI->hasOneUse() && |
| 1740 | (RHSV + 1).isPowerOf2() && (LHSV & RHSV) == 0) |
| 1741 | return new ICmpInst(ICmpInst::ICMP_NE, |
| 1742 | Builder->CreateAnd(LHSI->getOperand(0), ~RHSV), |
| 1743 | ConstantExpr::getNeg(LHSC)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1744 | } |
| 1745 | break; |
| 1746 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1747 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1748 | // Simplify icmp_eq and icmp_ne instructions with integer constant RHS. |
| 1749 | if (ICI.isEquality()) { |
| 1750 | bool isICMP_NE = ICI.getPredicate() == ICmpInst::ICMP_NE; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1751 | |
| 1752 | // If the first operand is (add|sub|and|or|xor|rem) with a constant, and |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1753 | // the second operand is a constant, simplify a bit. |
| 1754 | if (BinaryOperator *BO = dyn_cast<BinaryOperator>(LHSI)) { |
| 1755 | switch (BO->getOpcode()) { |
| 1756 | case Instruction::SRem: |
| 1757 | // If we have a signed (X % (2^c)) == 0, turn it into an unsigned one. |
| 1758 | if (RHSV == 0 && isa<ConstantInt>(BO->getOperand(1)) &&BO->hasOneUse()){ |
| 1759 | const APInt &V = cast<ConstantInt>(BO->getOperand(1))->getValue(); |
Dan Gohman | 4ce1fb1 | 2010-04-08 23:03:40 +0000 | [diff] [blame] | 1760 | if (V.sgt(1) && V.isPowerOf2()) { |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1761 | Value *NewRem = |
| 1762 | Builder->CreateURem(BO->getOperand(0), BO->getOperand(1), |
| 1763 | BO->getName()); |
| 1764 | return new ICmpInst(ICI.getPredicate(), NewRem, |
| 1765 | Constant::getNullValue(BO->getType())); |
| 1766 | } |
| 1767 | } |
| 1768 | break; |
| 1769 | case Instruction::Add: |
| 1770 | // Replace ((add A, B) != C) with (A != C-B) if B & C are constants. |
| 1771 | if (ConstantInt *BOp1C = dyn_cast<ConstantInt>(BO->getOperand(1))) { |
| 1772 | if (BO->hasOneUse()) |
| 1773 | return new ICmpInst(ICI.getPredicate(), BO->getOperand(0), |
| 1774 | ConstantExpr::getSub(RHS, BOp1C)); |
| 1775 | } else if (RHSV == 0) { |
| 1776 | // Replace ((add A, B) != 0) with (A != -B) if A or B is |
| 1777 | // efficiently invertible, or if the add has just this one use. |
| 1778 | Value *BOp0 = BO->getOperand(0), *BOp1 = BO->getOperand(1); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1779 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1780 | if (Value *NegVal = dyn_castNegVal(BOp1)) |
| 1781 | return new ICmpInst(ICI.getPredicate(), BOp0, NegVal); |
Chris Lattner | 31b106d | 2011-04-26 20:02:45 +0000 | [diff] [blame] | 1782 | if (Value *NegVal = dyn_castNegVal(BOp0)) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1783 | return new ICmpInst(ICI.getPredicate(), NegVal, BOp1); |
Chris Lattner | 31b106d | 2011-04-26 20:02:45 +0000 | [diff] [blame] | 1784 | if (BO->hasOneUse()) { |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1785 | Value *Neg = Builder->CreateNeg(BOp1); |
| 1786 | Neg->takeName(BO); |
| 1787 | return new ICmpInst(ICI.getPredicate(), BOp0, Neg); |
| 1788 | } |
| 1789 | } |
| 1790 | break; |
| 1791 | case Instruction::Xor: |
| 1792 | // For the xor case, we can xor two constants together, eliminating |
| 1793 | // the explicit xor. |
Benjamin Kramer | c970849 | 2011-06-13 15:24:24 +0000 | [diff] [blame] | 1794 | if (Constant *BOC = dyn_cast<Constant>(BO->getOperand(1))) { |
| 1795 | return new ICmpInst(ICI.getPredicate(), BO->getOperand(0), |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1796 | ConstantExpr::getXor(RHS, BOC)); |
Benjamin Kramer | c970849 | 2011-06-13 15:24:24 +0000 | [diff] [blame] | 1797 | } else if (RHSV == 0) { |
| 1798 | // Replace ((xor A, B) != 0) with (A != B) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1799 | return new ICmpInst(ICI.getPredicate(), BO->getOperand(0), |
| 1800 | BO->getOperand(1)); |
Benjamin Kramer | c970849 | 2011-06-13 15:24:24 +0000 | [diff] [blame] | 1801 | } |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1802 | break; |
Benjamin Kramer | c970849 | 2011-06-13 15:24:24 +0000 | [diff] [blame] | 1803 | case Instruction::Sub: |
| 1804 | // Replace ((sub A, B) != C) with (B != A-C) if A & C are constants. |
| 1805 | if (ConstantInt *BOp0C = dyn_cast<ConstantInt>(BO->getOperand(0))) { |
| 1806 | if (BO->hasOneUse()) |
| 1807 | return new ICmpInst(ICI.getPredicate(), BO->getOperand(1), |
| 1808 | ConstantExpr::getSub(BOp0C, RHS)); |
| 1809 | } else if (RHSV == 0) { |
| 1810 | // Replace ((sub A, B) != 0) with (A != B) |
| 1811 | return new ICmpInst(ICI.getPredicate(), BO->getOperand(0), |
| 1812 | BO->getOperand(1)); |
| 1813 | } |
| 1814 | break; |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1815 | case Instruction::Or: |
| 1816 | // If bits are being or'd in that are not present in the constant we |
| 1817 | // are comparing against, then the comparison could never succeed! |
Eli Friedman | 0428a61 | 2010-07-29 18:03:33 +0000 | [diff] [blame] | 1818 | if (ConstantInt *BOC = dyn_cast<ConstantInt>(BO->getOperand(1))) { |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1819 | Constant *NotCI = ConstantExpr::getNot(RHS); |
| 1820 | if (!ConstantExpr::getAnd(BOC, NotCI)->isNullValue()) |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 1821 | return ReplaceInstUsesWith(ICI, Builder->getInt1(isICMP_NE)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1822 | } |
| 1823 | break; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1824 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1825 | case Instruction::And: |
| 1826 | if (ConstantInt *BOC = dyn_cast<ConstantInt>(BO->getOperand(1))) { |
| 1827 | // If bits are being compared against that are and'd out, then the |
| 1828 | // comparison can never succeed! |
| 1829 | if ((RHSV & ~BOC->getValue()) != 0) |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 1830 | return ReplaceInstUsesWith(ICI, Builder->getInt1(isICMP_NE)); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1831 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1832 | // If we have ((X & C) == C), turn it into ((X & C) != 0). |
| 1833 | if (RHS == BOC && RHSV.isPowerOf2()) |
| 1834 | return new ICmpInst(isICMP_NE ? ICmpInst::ICMP_EQ : |
| 1835 | ICmpInst::ICMP_NE, LHSI, |
| 1836 | Constant::getNullValue(RHS->getType())); |
Benjamin Kramer | 9eca5fe | 2011-07-04 20:16:36 +0000 | [diff] [blame] | 1837 | |
| 1838 | // Don't perform the following transforms if the AND has multiple uses |
| 1839 | if (!BO->hasOneUse()) |
| 1840 | break; |
| 1841 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1842 | // Replace (and X, (1 << size(X)-1) != 0) with x s< 0 |
| 1843 | if (BOC->getValue().isSignBit()) { |
| 1844 | Value *X = BO->getOperand(0); |
| 1845 | Constant *Zero = Constant::getNullValue(X->getType()); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1846 | ICmpInst::Predicate pred = isICMP_NE ? |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1847 | ICmpInst::ICMP_SLT : ICmpInst::ICMP_SGE; |
| 1848 | return new ICmpInst(pred, X, Zero); |
| 1849 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1850 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1851 | // ((X & ~7) == 0) --> X < 8 |
| 1852 | if (RHSV == 0 && isHighOnes(BOC)) { |
| 1853 | Value *X = BO->getOperand(0); |
| 1854 | Constant *NegX = ConstantExpr::getNeg(BOC); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1855 | ICmpInst::Predicate pred = isICMP_NE ? |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1856 | ICmpInst::ICMP_UGE : ICmpInst::ICMP_ULT; |
| 1857 | return new ICmpInst(pred, X, NegX); |
| 1858 | } |
| 1859 | } |
Arnaud A. de Grandmaison | 9c383d6 | 2013-03-25 09:48:49 +0000 | [diff] [blame] | 1860 | break; |
| 1861 | case Instruction::Mul: |
Arnaud A. de Grandmaison | 3ee88e8 | 2013-03-25 11:47:38 +0000 | [diff] [blame] | 1862 | if (RHSV == 0 && BO->hasNoSignedWrap()) { |
Arnaud A. de Grandmaison | 9c383d6 | 2013-03-25 09:48:49 +0000 | [diff] [blame] | 1863 | if (ConstantInt *BOC = dyn_cast<ConstantInt>(BO->getOperand(1))) { |
| 1864 | // The trivial case (mul X, 0) is handled by InstSimplify |
| 1865 | // General case : (mul X, C) != 0 iff X != 0 |
| 1866 | // (mul X, C) == 0 iff X == 0 |
| 1867 | if (!BOC->isZero()) |
| 1868 | return new ICmpInst(ICI.getPredicate(), BO->getOperand(0), |
| 1869 | Constant::getNullValue(RHS->getType())); |
| 1870 | } |
| 1871 | } |
| 1872 | break; |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1873 | default: break; |
| 1874 | } |
| 1875 | } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(LHSI)) { |
| 1876 | // Handle icmp {eq|ne} <intrinsic>, intcst. |
Chris Lattner | 54f4e39 | 2010-01-05 18:09:56 +0000 | [diff] [blame] | 1877 | switch (II->getIntrinsicID()) { |
| 1878 | case Intrinsic::bswap: |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1879 | Worklist.Add(II); |
Gabor Greif | 7ccec09 | 2010-06-24 16:11:44 +0000 | [diff] [blame] | 1880 | ICI.setOperand(0, II->getArgOperand(0)); |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 1881 | ICI.setOperand(1, Builder->getInt(RHSV.byteSwap())); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1882 | return &ICI; |
Chris Lattner | 54f4e39 | 2010-01-05 18:09:56 +0000 | [diff] [blame] | 1883 | case Intrinsic::ctlz: |
| 1884 | case Intrinsic::cttz: |
| 1885 | // ctz(A) == bitwidth(a) -> A == 0 and likewise for != |
| 1886 | if (RHSV == RHS->getType()->getBitWidth()) { |
| 1887 | Worklist.Add(II); |
Gabor Greif | 7ccec09 | 2010-06-24 16:11:44 +0000 | [diff] [blame] | 1888 | ICI.setOperand(0, II->getArgOperand(0)); |
Chris Lattner | 54f4e39 | 2010-01-05 18:09:56 +0000 | [diff] [blame] | 1889 | ICI.setOperand(1, ConstantInt::get(RHS->getType(), 0)); |
| 1890 | return &ICI; |
| 1891 | } |
| 1892 | break; |
| 1893 | case Intrinsic::ctpop: |
| 1894 | // popcount(A) == 0 -> A == 0 and likewise for != |
| 1895 | if (RHS->isZero()) { |
| 1896 | Worklist.Add(II); |
Gabor Greif | 7ccec09 | 2010-06-24 16:11:44 +0000 | [diff] [blame] | 1897 | ICI.setOperand(0, II->getArgOperand(0)); |
Chris Lattner | 54f4e39 | 2010-01-05 18:09:56 +0000 | [diff] [blame] | 1898 | ICI.setOperand(1, RHS); |
| 1899 | return &ICI; |
| 1900 | } |
| 1901 | break; |
| 1902 | default: |
Duncan Sands | 41b4a6b | 2010-07-12 08:16:59 +0000 | [diff] [blame] | 1903 | break; |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1904 | } |
| 1905 | } |
| 1906 | } |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1907 | return nullptr; |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1908 | } |
| 1909 | |
| 1910 | /// visitICmpInstWithCastAndCast - Handle icmp (cast x to y), (cast/cst). |
| 1911 | /// We only handle extending casts so far. |
| 1912 | /// |
| 1913 | Instruction *InstCombiner::visitICmpInstWithCastAndCast(ICmpInst &ICI) { |
| 1914 | const CastInst *LHSCI = cast<CastInst>(ICI.getOperand(0)); |
| 1915 | Value *LHSCIOp = LHSCI->getOperand(0); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1916 | Type *SrcTy = LHSCIOp->getType(); |
| 1917 | Type *DestTy = LHSCI->getType(); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1918 | Value *RHSCIOp; |
| 1919 | |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1920 | // Turn icmp (ptrtoint x), (ptrtoint/c) into a compare of the input if the |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1921 | // integer type is the same size as the pointer type. |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1922 | if (LHSCI->getOpcode() == Instruction::PtrToInt && |
| 1923 | DL.getPointerTypeSizeInBits(SrcTy) == DestTy->getIntegerBitWidth()) { |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1924 | Value *RHSOp = nullptr; |
Michael Liao | d266b92 | 2015-02-13 04:51:26 +0000 | [diff] [blame] | 1925 | if (PtrToIntOperator *RHSC = dyn_cast<PtrToIntOperator>(ICI.getOperand(1))) { |
| 1926 | Value *RHSCIOp = RHSC->getOperand(0); |
| 1927 | if (RHSCIOp->getType()->getPointerAddressSpace() == |
| 1928 | LHSCIOp->getType()->getPointerAddressSpace()) { |
| 1929 | RHSOp = RHSC->getOperand(0); |
| 1930 | // If the pointer types don't match, insert a bitcast. |
| 1931 | if (LHSCIOp->getType() != RHSOp->getType()) |
| 1932 | RHSOp = Builder->CreateBitCast(RHSOp, LHSCIOp->getType()); |
| 1933 | } |
| 1934 | } else if (Constant *RHSC = dyn_cast<Constant>(ICI.getOperand(1))) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1935 | RHSOp = ConstantExpr::getIntToPtr(RHSC, SrcTy); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1936 | |
| 1937 | if (RHSOp) |
| 1938 | return new ICmpInst(ICI.getPredicate(), LHSCIOp, RHSOp); |
| 1939 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1940 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1941 | // The code below only handles extension cast instructions, so far. |
| 1942 | // Enforce this. |
| 1943 | if (LHSCI->getOpcode() != Instruction::ZExt && |
| 1944 | LHSCI->getOpcode() != Instruction::SExt) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1945 | return nullptr; |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1946 | |
| 1947 | bool isSignedExt = LHSCI->getOpcode() == Instruction::SExt; |
| 1948 | bool isSignedCmp = ICI.isSigned(); |
| 1949 | |
| 1950 | if (CastInst *CI = dyn_cast<CastInst>(ICI.getOperand(1))) { |
| 1951 | // Not an extension from the same type? |
| 1952 | RHSCIOp = CI->getOperand(0); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1953 | if (RHSCIOp->getType() != LHSCIOp->getType()) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1954 | return nullptr; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 1955 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1956 | // If the signedness of the two casts doesn't agree (i.e. one is a sext |
| 1957 | // and the other is a zext), then we can't handle this. |
| 1958 | if (CI->getOpcode() != LHSCI->getOpcode()) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1959 | return nullptr; |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1960 | |
| 1961 | // Deal with equality cases early. |
| 1962 | if (ICI.isEquality()) |
| 1963 | return new ICmpInst(ICI.getPredicate(), LHSCIOp, RHSCIOp); |
| 1964 | |
| 1965 | // A signed comparison of sign extended values simplifies into a |
| 1966 | // signed comparison. |
| 1967 | if (isSignedCmp && isSignedExt) |
| 1968 | return new ICmpInst(ICI.getPredicate(), LHSCIOp, RHSCIOp); |
| 1969 | |
| 1970 | // The other three cases all fold into an unsigned comparison. |
| 1971 | return new ICmpInst(ICI.getUnsignedPredicate(), LHSCIOp, RHSCIOp); |
| 1972 | } |
| 1973 | |
| 1974 | // If we aren't dealing with a constant on the RHS, exit early |
| 1975 | ConstantInt *CI = dyn_cast<ConstantInt>(ICI.getOperand(1)); |
| 1976 | if (!CI) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1977 | return nullptr; |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 1978 | |
| 1979 | // Compute the constant that would happen if we truncated to SrcTy then |
| 1980 | // reextended to DestTy. |
| 1981 | Constant *Res1 = ConstantExpr::getTrunc(CI, SrcTy); |
| 1982 | Constant *Res2 = ConstantExpr::getCast(LHSCI->getOpcode(), |
| 1983 | Res1, DestTy); |
| 1984 | |
| 1985 | // If the re-extended constant didn't change... |
| 1986 | if (Res2 == CI) { |
| 1987 | // Deal with equality cases early. |
| 1988 | if (ICI.isEquality()) |
| 1989 | return new ICmpInst(ICI.getPredicate(), LHSCIOp, Res1); |
| 1990 | |
| 1991 | // A signed comparison of sign extended values simplifies into a |
| 1992 | // signed comparison. |
| 1993 | if (isSignedExt && isSignedCmp) |
| 1994 | return new ICmpInst(ICI.getPredicate(), LHSCIOp, Res1); |
| 1995 | |
| 1996 | // The other three cases all fold into an unsigned comparison. |
| 1997 | return new ICmpInst(ICI.getUnsignedPredicate(), LHSCIOp, Res1); |
| 1998 | } |
| 1999 | |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2000 | // The re-extended constant changed so the constant cannot be represented |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2001 | // in the shorter type. Consequently, we cannot emit a simple comparison. |
Duncan Sands | 8fb2c38 | 2011-01-20 13:21:55 +0000 | [diff] [blame] | 2002 | // All the cases that fold to true or false will have already been handled |
| 2003 | // by SimplifyICmpInst, so only deal with the tricky case. |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2004 | |
Duncan Sands | 8fb2c38 | 2011-01-20 13:21:55 +0000 | [diff] [blame] | 2005 | if (isSignedCmp || !isSignedExt) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2006 | return nullptr; |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2007 | |
| 2008 | // Evaluate the comparison for LT (we invert for GT below). LE and GE cases |
| 2009 | // should have been folded away previously and not enter in here. |
Duncan Sands | 8fb2c38 | 2011-01-20 13:21:55 +0000 | [diff] [blame] | 2010 | |
| 2011 | // We're performing an unsigned comp with a sign extended value. |
| 2012 | // This is true if the input is >= 0. [aka >s -1] |
| 2013 | Constant *NegOne = Constant::getAllOnesValue(SrcTy); |
| 2014 | Value *Result = Builder->CreateICmpSGT(LHSCIOp, NegOne, ICI.getName()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2015 | |
| 2016 | // Finally, return the value computed. |
Duncan Sands | 8fb2c38 | 2011-01-20 13:21:55 +0000 | [diff] [blame] | 2017 | if (ICI.getPredicate() == ICmpInst::ICMP_ULT) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2018 | return ReplaceInstUsesWith(ICI, Result); |
| 2019 | |
Duncan Sands | 8fb2c38 | 2011-01-20 13:21:55 +0000 | [diff] [blame] | 2020 | assert(ICI.getPredicate() == ICmpInst::ICMP_UGT && "ICmp should be folded!"); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2021 | return BinaryOperator::CreateNot(Result); |
| 2022 | } |
| 2023 | |
Chris Lattner | ee61c1d | 2010-12-19 17:52:50 +0000 | [diff] [blame] | 2024 | /// ProcessUGT_ADDCST_ADD - The caller has matched a pattern of the form: |
| 2025 | /// I = icmp ugt (add (add A, B), CI2), CI1 |
Chris Lattner | c56c845 | 2010-12-19 18:22:06 +0000 | [diff] [blame] | 2026 | /// If this is of the form: |
| 2027 | /// sum = a + b |
| 2028 | /// if (sum+128 >u 255) |
| 2029 | /// Then replace it with llvm.sadd.with.overflow.i8. |
| 2030 | /// |
Chris Lattner | ee61c1d | 2010-12-19 17:52:50 +0000 | [diff] [blame] | 2031 | static Instruction *ProcessUGT_ADDCST_ADD(ICmpInst &I, Value *A, Value *B, |
| 2032 | ConstantInt *CI2, ConstantInt *CI1, |
Chris Lattner | ce2995a | 2010-12-19 18:38:44 +0000 | [diff] [blame] | 2033 | InstCombiner &IC) { |
Chris Lattner | f29562d | 2010-12-19 17:59:02 +0000 | [diff] [blame] | 2034 | // The transformation we're trying to do here is to transform this into an |
| 2035 | // llvm.sadd.with.overflow. To do this, we have to replace the original add |
| 2036 | // with a narrower add, and discard the add-with-constant that is part of the |
| 2037 | // range check (if we can't eliminate it, this isn't profitable). |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2038 | |
Chris Lattner | f29562d | 2010-12-19 17:59:02 +0000 | [diff] [blame] | 2039 | // In order to eliminate the add-with-constant, the compare can be its only |
| 2040 | // use. |
Chris Lattner | c56c845 | 2010-12-19 18:22:06 +0000 | [diff] [blame] | 2041 | Instruction *AddWithCst = cast<Instruction>(I.getOperand(0)); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2042 | if (!AddWithCst->hasOneUse()) return nullptr; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2043 | |
Chris Lattner | c56c845 | 2010-12-19 18:22:06 +0000 | [diff] [blame] | 2044 | // If CI2 is 2^7, 2^15, 2^31, then it might be an sadd.with.overflow. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2045 | if (!CI2->getValue().isPowerOf2()) return nullptr; |
Chris Lattner | c56c845 | 2010-12-19 18:22:06 +0000 | [diff] [blame] | 2046 | unsigned NewWidth = CI2->getValue().countTrailingZeros(); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2047 | if (NewWidth != 7 && NewWidth != 15 && NewWidth != 31) return nullptr; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2048 | |
Chris Lattner | c56c845 | 2010-12-19 18:22:06 +0000 | [diff] [blame] | 2049 | // The width of the new add formed is 1 more than the bias. |
| 2050 | ++NewWidth; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2051 | |
Chris Lattner | c56c845 | 2010-12-19 18:22:06 +0000 | [diff] [blame] | 2052 | // Check to see that CI1 is an all-ones value with NewWidth bits. |
| 2053 | if (CI1->getBitWidth() == NewWidth || |
| 2054 | CI1->getValue() != APInt::getLowBitsSet(CI1->getBitWidth(), NewWidth)) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2055 | return nullptr; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2056 | |
Eli Friedman | b3f9b06 | 2011-11-28 23:32:19 +0000 | [diff] [blame] | 2057 | // This is only really a signed overflow check if the inputs have been |
| 2058 | // sign-extended; check for that condition. For example, if CI2 is 2^31 and |
| 2059 | // the operands of the add are 64 bits wide, we need at least 33 sign bits. |
| 2060 | unsigned NeededSignBits = CI1->getBitWidth() - NewWidth + 1; |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 2061 | if (IC.ComputeNumSignBits(A, 0, &I) < NeededSignBits || |
| 2062 | IC.ComputeNumSignBits(B, 0, &I) < NeededSignBits) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2063 | return nullptr; |
Eli Friedman | b3f9b06 | 2011-11-28 23:32:19 +0000 | [diff] [blame] | 2064 | |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2065 | // In order to replace the original add with a narrower |
Chris Lattner | c56c845 | 2010-12-19 18:22:06 +0000 | [diff] [blame] | 2066 | // llvm.sadd.with.overflow, the only uses allowed are the add-with-constant |
| 2067 | // and truncates that discard the high bits of the add. Verify that this is |
| 2068 | // the case. |
| 2069 | Instruction *OrigAdd = cast<Instruction>(AddWithCst->getOperand(0)); |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 2070 | for (User *U : OrigAdd->users()) { |
| 2071 | if (U == AddWithCst) continue; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2072 | |
Chris Lattner | c56c845 | 2010-12-19 18:22:06 +0000 | [diff] [blame] | 2073 | // Only accept truncates for now. We would really like a nice recursive |
| 2074 | // predicate like SimplifyDemandedBits, but which goes downwards the use-def |
| 2075 | // chain to see which bits of a value are actually demanded. If the |
| 2076 | // original add had another add which was then immediately truncated, we |
| 2077 | // could still do the transformation. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 2078 | TruncInst *TI = dyn_cast<TruncInst>(U); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2079 | if (!TI || TI->getType()->getPrimitiveSizeInBits() > NewWidth) |
| 2080 | return nullptr; |
Chris Lattner | c56c845 | 2010-12-19 18:22:06 +0000 | [diff] [blame] | 2081 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2082 | |
Chris Lattner | ee61c1d | 2010-12-19 17:52:50 +0000 | [diff] [blame] | 2083 | // If the pattern matches, truncate the inputs to the narrower type and |
| 2084 | // use the sadd_with_overflow intrinsic to efficiently compute both the |
| 2085 | // result and the overflow bit. |
Chris Lattner | 7987456 | 2010-12-19 18:35:09 +0000 | [diff] [blame] | 2086 | Module *M = I.getParent()->getParent()->getParent(); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2087 | |
Jay Foad | b804a2b | 2011-07-12 14:06:48 +0000 | [diff] [blame] | 2088 | Type *NewType = IntegerType::get(OrigAdd->getContext(), NewWidth); |
Chris Lattner | 7987456 | 2010-12-19 18:35:09 +0000 | [diff] [blame] | 2089 | Value *F = Intrinsic::getDeclaration(M, Intrinsic::sadd_with_overflow, |
Benjamin Kramer | e6e1933 | 2011-07-14 17:45:39 +0000 | [diff] [blame] | 2090 | NewType); |
Chris Lattner | 7987456 | 2010-12-19 18:35:09 +0000 | [diff] [blame] | 2091 | |
Chris Lattner | ce2995a | 2010-12-19 18:38:44 +0000 | [diff] [blame] | 2092 | InstCombiner::BuilderTy *Builder = IC.Builder; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2093 | |
Chris Lattner | 7987456 | 2010-12-19 18:35:09 +0000 | [diff] [blame] | 2094 | // Put the new code above the original add, in case there are any uses of the |
| 2095 | // add between the add and the compare. |
Chris Lattner | 5e0c0c7 | 2010-12-19 19:37:52 +0000 | [diff] [blame] | 2096 | Builder->SetInsertPoint(OrigAdd); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2097 | |
Chris Lattner | 7987456 | 2010-12-19 18:35:09 +0000 | [diff] [blame] | 2098 | Value *TruncA = Builder->CreateTrunc(A, NewType, A->getName()+".trunc"); |
| 2099 | Value *TruncB = Builder->CreateTrunc(B, NewType, B->getName()+".trunc"); |
| 2100 | CallInst *Call = Builder->CreateCall2(F, TruncA, TruncB, "sadd"); |
| 2101 | Value *Add = Builder->CreateExtractValue(Call, 0, "sadd.result"); |
| 2102 | Value *ZExt = Builder->CreateZExt(Add, OrigAdd->getType()); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2103 | |
Chris Lattner | ee61c1d | 2010-12-19 17:52:50 +0000 | [diff] [blame] | 2104 | // The inner add was the result of the narrow add, zero extended to the |
| 2105 | // wider type. Replace it with the result computed by the intrinsic. |
Chris Lattner | ce2995a | 2010-12-19 18:38:44 +0000 | [diff] [blame] | 2106 | IC.ReplaceInstUsesWith(*OrigAdd, ZExt); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2107 | |
Chris Lattner | 7987456 | 2010-12-19 18:35:09 +0000 | [diff] [blame] | 2108 | // The original icmp gets replaced with the overflow value. |
| 2109 | return ExtractValueInst::Create(Call, 1, "sadd.overflow"); |
Chris Lattner | ee61c1d | 2010-12-19 17:52:50 +0000 | [diff] [blame] | 2110 | } |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2111 | |
Chris Lattner | 5e0c0c7 | 2010-12-19 19:37:52 +0000 | [diff] [blame] | 2112 | static Instruction *ProcessUAddIdiom(Instruction &I, Value *OrigAddV, |
| 2113 | InstCombiner &IC) { |
| 2114 | // Don't bother doing this transformation for pointers, don't do it for |
| 2115 | // vectors. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2116 | if (!isa<IntegerType>(OrigAddV->getType())) return nullptr; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2117 | |
Chris Lattner | 5e0c0c7 | 2010-12-19 19:37:52 +0000 | [diff] [blame] | 2118 | // If the add is a constant expr, then we don't bother transforming it. |
| 2119 | Instruction *OrigAdd = dyn_cast<Instruction>(OrigAddV); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2120 | if (!OrigAdd) return nullptr; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2121 | |
Chris Lattner | 5e0c0c7 | 2010-12-19 19:37:52 +0000 | [diff] [blame] | 2122 | Value *LHS = OrigAdd->getOperand(0), *RHS = OrigAdd->getOperand(1); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2123 | |
Chris Lattner | 5e0c0c7 | 2010-12-19 19:37:52 +0000 | [diff] [blame] | 2124 | // Put the new code above the original add, in case there are any uses of the |
| 2125 | // add between the add and the compare. |
| 2126 | InstCombiner::BuilderTy *Builder = IC.Builder; |
| 2127 | Builder->SetInsertPoint(OrigAdd); |
| 2128 | |
| 2129 | Module *M = I.getParent()->getParent()->getParent(); |
Jay Foad | b804a2b | 2011-07-12 14:06:48 +0000 | [diff] [blame] | 2130 | Type *Ty = LHS->getType(); |
Benjamin Kramer | e6e1933 | 2011-07-14 17:45:39 +0000 | [diff] [blame] | 2131 | Value *F = Intrinsic::getDeclaration(M, Intrinsic::uadd_with_overflow, Ty); |
Chris Lattner | 5e0c0c7 | 2010-12-19 19:37:52 +0000 | [diff] [blame] | 2132 | CallInst *Call = Builder->CreateCall2(F, LHS, RHS, "uadd"); |
| 2133 | Value *Add = Builder->CreateExtractValue(Call, 0); |
| 2134 | |
| 2135 | IC.ReplaceInstUsesWith(*OrigAdd, Add); |
| 2136 | |
| 2137 | // The original icmp gets replaced with the overflow value. |
| 2138 | return ExtractValueInst::Create(Call, 1, "uadd.overflow"); |
| 2139 | } |
| 2140 | |
Serge Pavlov | 4bb54d5 | 2014-04-13 18:23:41 +0000 | [diff] [blame] | 2141 | /// \brief Recognize and process idiom involving test for multiplication |
| 2142 | /// overflow. |
| 2143 | /// |
| 2144 | /// The caller has matched a pattern of the form: |
| 2145 | /// I = cmp u (mul(zext A, zext B), V |
| 2146 | /// The function checks if this is a test for overflow and if so replaces |
| 2147 | /// multiplication with call to 'mul.with.overflow' intrinsic. |
| 2148 | /// |
| 2149 | /// \param I Compare instruction. |
| 2150 | /// \param MulVal Result of 'mult' instruction. It is one of the arguments of |
| 2151 | /// the compare instruction. Must be of integer type. |
| 2152 | /// \param OtherVal The other argument of compare instruction. |
| 2153 | /// \returns Instruction which must replace the compare instruction, NULL if no |
| 2154 | /// replacement required. |
| 2155 | static Instruction *ProcessUMulZExtIdiom(ICmpInst &I, Value *MulVal, |
| 2156 | Value *OtherVal, InstCombiner &IC) { |
Benjamin Kramer | c96a7f8 | 2014-06-24 10:47:52 +0000 | [diff] [blame] | 2157 | // Don't bother doing this transformation for pointers, don't do it for |
| 2158 | // vectors. |
| 2159 | if (!isa<IntegerType>(MulVal->getType())) |
| 2160 | return nullptr; |
| 2161 | |
Serge Pavlov | 4bb54d5 | 2014-04-13 18:23:41 +0000 | [diff] [blame] | 2162 | assert(I.getOperand(0) == MulVal || I.getOperand(1) == MulVal); |
| 2163 | assert(I.getOperand(0) == OtherVal || I.getOperand(1) == OtherVal); |
Serge Pavlov | 4bb54d5 | 2014-04-13 18:23:41 +0000 | [diff] [blame] | 2164 | Instruction *MulInstr = cast<Instruction>(MulVal); |
| 2165 | assert(MulInstr->getOpcode() == Instruction::Mul); |
| 2166 | |
David Majnemer | 634ca23 | 2014-11-01 23:46:05 +0000 | [diff] [blame] | 2167 | auto *LHS = cast<ZExtOperator>(MulInstr->getOperand(0)), |
| 2168 | *RHS = cast<ZExtOperator>(MulInstr->getOperand(1)); |
Serge Pavlov | 4bb54d5 | 2014-04-13 18:23:41 +0000 | [diff] [blame] | 2169 | assert(LHS->getOpcode() == Instruction::ZExt); |
| 2170 | assert(RHS->getOpcode() == Instruction::ZExt); |
| 2171 | Value *A = LHS->getOperand(0), *B = RHS->getOperand(0); |
| 2172 | |
| 2173 | // Calculate type and width of the result produced by mul.with.overflow. |
| 2174 | Type *TyA = A->getType(), *TyB = B->getType(); |
| 2175 | unsigned WidthA = TyA->getPrimitiveSizeInBits(), |
| 2176 | WidthB = TyB->getPrimitiveSizeInBits(); |
| 2177 | unsigned MulWidth; |
| 2178 | Type *MulType; |
| 2179 | if (WidthB > WidthA) { |
| 2180 | MulWidth = WidthB; |
| 2181 | MulType = TyB; |
| 2182 | } else { |
| 2183 | MulWidth = WidthA; |
| 2184 | MulType = TyA; |
| 2185 | } |
| 2186 | |
| 2187 | // In order to replace the original mul with a narrower mul.with.overflow, |
| 2188 | // all uses must ignore upper bits of the product. The number of used low |
| 2189 | // bits must be not greater than the width of mul.with.overflow. |
| 2190 | if (MulVal->hasNUsesOrMore(2)) |
| 2191 | for (User *U : MulVal->users()) { |
| 2192 | if (U == &I) |
| 2193 | continue; |
| 2194 | if (TruncInst *TI = dyn_cast<TruncInst>(U)) { |
| 2195 | // Check if truncation ignores bits above MulWidth. |
| 2196 | unsigned TruncWidth = TI->getType()->getPrimitiveSizeInBits(); |
| 2197 | if (TruncWidth > MulWidth) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2198 | return nullptr; |
Serge Pavlov | 4bb54d5 | 2014-04-13 18:23:41 +0000 | [diff] [blame] | 2199 | } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(U)) { |
| 2200 | // Check if AND ignores bits above MulWidth. |
| 2201 | if (BO->getOpcode() != Instruction::And) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2202 | return nullptr; |
Serge Pavlov | 4bb54d5 | 2014-04-13 18:23:41 +0000 | [diff] [blame] | 2203 | if (ConstantInt *CI = dyn_cast<ConstantInt>(BO->getOperand(1))) { |
| 2204 | const APInt &CVal = CI->getValue(); |
| 2205 | if (CVal.getBitWidth() - CVal.countLeadingZeros() > MulWidth) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2206 | return nullptr; |
Serge Pavlov | 4bb54d5 | 2014-04-13 18:23:41 +0000 | [diff] [blame] | 2207 | } |
| 2208 | } else { |
| 2209 | // Other uses prohibit this transformation. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2210 | return nullptr; |
Serge Pavlov | 4bb54d5 | 2014-04-13 18:23:41 +0000 | [diff] [blame] | 2211 | } |
| 2212 | } |
| 2213 | |
| 2214 | // Recognize patterns |
| 2215 | switch (I.getPredicate()) { |
| 2216 | case ICmpInst::ICMP_EQ: |
| 2217 | case ICmpInst::ICMP_NE: |
| 2218 | // Recognize pattern: |
| 2219 | // mulval = mul(zext A, zext B) |
| 2220 | // cmp eq/neq mulval, zext trunc mulval |
| 2221 | if (ZExtInst *Zext = dyn_cast<ZExtInst>(OtherVal)) |
| 2222 | if (Zext->hasOneUse()) { |
| 2223 | Value *ZextArg = Zext->getOperand(0); |
| 2224 | if (TruncInst *Trunc = dyn_cast<TruncInst>(ZextArg)) |
| 2225 | if (Trunc->getType()->getPrimitiveSizeInBits() == MulWidth) |
| 2226 | break; //Recognized |
| 2227 | } |
| 2228 | |
| 2229 | // Recognize pattern: |
| 2230 | // mulval = mul(zext A, zext B) |
| 2231 | // cmp eq/neq mulval, and(mulval, mask), mask selects low MulWidth bits. |
| 2232 | ConstantInt *CI; |
| 2233 | Value *ValToMask; |
| 2234 | if (match(OtherVal, m_And(m_Value(ValToMask), m_ConstantInt(CI)))) { |
| 2235 | if (ValToMask != MulVal) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2236 | return nullptr; |
Serge Pavlov | 4bb54d5 | 2014-04-13 18:23:41 +0000 | [diff] [blame] | 2237 | const APInt &CVal = CI->getValue() + 1; |
| 2238 | if (CVal.isPowerOf2()) { |
| 2239 | unsigned MaskWidth = CVal.logBase2(); |
| 2240 | if (MaskWidth == MulWidth) |
| 2241 | break; // Recognized |
| 2242 | } |
| 2243 | } |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2244 | return nullptr; |
Serge Pavlov | 4bb54d5 | 2014-04-13 18:23:41 +0000 | [diff] [blame] | 2245 | |
| 2246 | case ICmpInst::ICMP_UGT: |
| 2247 | // Recognize pattern: |
| 2248 | // mulval = mul(zext A, zext B) |
| 2249 | // cmp ugt mulval, max |
| 2250 | if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal)) { |
| 2251 | APInt MaxVal = APInt::getMaxValue(MulWidth); |
| 2252 | MaxVal = MaxVal.zext(CI->getBitWidth()); |
| 2253 | if (MaxVal.eq(CI->getValue())) |
| 2254 | break; // Recognized |
| 2255 | } |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2256 | return nullptr; |
Serge Pavlov | 4bb54d5 | 2014-04-13 18:23:41 +0000 | [diff] [blame] | 2257 | |
| 2258 | case ICmpInst::ICMP_UGE: |
| 2259 | // Recognize pattern: |
| 2260 | // mulval = mul(zext A, zext B) |
| 2261 | // cmp uge mulval, max+1 |
| 2262 | if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal)) { |
| 2263 | APInt MaxVal = APInt::getOneBitSet(CI->getBitWidth(), MulWidth); |
| 2264 | if (MaxVal.eq(CI->getValue())) |
| 2265 | break; // Recognized |
| 2266 | } |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2267 | return nullptr; |
Serge Pavlov | 4bb54d5 | 2014-04-13 18:23:41 +0000 | [diff] [blame] | 2268 | |
| 2269 | case ICmpInst::ICMP_ULE: |
| 2270 | // Recognize pattern: |
| 2271 | // mulval = mul(zext A, zext B) |
| 2272 | // cmp ule mulval, max |
| 2273 | if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal)) { |
| 2274 | APInt MaxVal = APInt::getMaxValue(MulWidth); |
| 2275 | MaxVal = MaxVal.zext(CI->getBitWidth()); |
| 2276 | if (MaxVal.eq(CI->getValue())) |
| 2277 | break; // Recognized |
| 2278 | } |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2279 | return nullptr; |
Serge Pavlov | 4bb54d5 | 2014-04-13 18:23:41 +0000 | [diff] [blame] | 2280 | |
| 2281 | case ICmpInst::ICMP_ULT: |
| 2282 | // Recognize pattern: |
| 2283 | // mulval = mul(zext A, zext B) |
| 2284 | // cmp ule mulval, max + 1 |
| 2285 | if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal)) { |
Serge Pavlov | b5f3ddc | 2014-04-14 02:20:19 +0000 | [diff] [blame] | 2286 | APInt MaxVal = APInt::getOneBitSet(CI->getBitWidth(), MulWidth); |
Serge Pavlov | 4bb54d5 | 2014-04-13 18:23:41 +0000 | [diff] [blame] | 2287 | if (MaxVal.eq(CI->getValue())) |
| 2288 | break; // Recognized |
| 2289 | } |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2290 | return nullptr; |
Serge Pavlov | 4bb54d5 | 2014-04-13 18:23:41 +0000 | [diff] [blame] | 2291 | |
| 2292 | default: |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2293 | return nullptr; |
Serge Pavlov | 4bb54d5 | 2014-04-13 18:23:41 +0000 | [diff] [blame] | 2294 | } |
| 2295 | |
| 2296 | InstCombiner::BuilderTy *Builder = IC.Builder; |
| 2297 | Builder->SetInsertPoint(MulInstr); |
| 2298 | Module *M = I.getParent()->getParent()->getParent(); |
| 2299 | |
| 2300 | // Replace: mul(zext A, zext B) --> mul.with.overflow(A, B) |
| 2301 | Value *MulA = A, *MulB = B; |
| 2302 | if (WidthA < MulWidth) |
| 2303 | MulA = Builder->CreateZExt(A, MulType); |
| 2304 | if (WidthB < MulWidth) |
| 2305 | MulB = Builder->CreateZExt(B, MulType); |
| 2306 | Value *F = |
| 2307 | Intrinsic::getDeclaration(M, Intrinsic::umul_with_overflow, MulType); |
| 2308 | CallInst *Call = Builder->CreateCall2(F, MulA, MulB, "umul"); |
| 2309 | IC.Worklist.Add(MulInstr); |
| 2310 | |
| 2311 | // If there are uses of mul result other than the comparison, we know that |
| 2312 | // they are truncation or binary AND. Change them to use result of |
Serge Pavlov | b5f3ddc | 2014-04-14 02:20:19 +0000 | [diff] [blame] | 2313 | // mul.with.overflow and adjust properly mask/size. |
Serge Pavlov | 4bb54d5 | 2014-04-13 18:23:41 +0000 | [diff] [blame] | 2314 | if (MulVal->hasNUsesOrMore(2)) { |
| 2315 | Value *Mul = Builder->CreateExtractValue(Call, 0, "umul.value"); |
| 2316 | for (User *U : MulVal->users()) { |
| 2317 | if (U == &I || U == OtherVal) |
| 2318 | continue; |
| 2319 | if (TruncInst *TI = dyn_cast<TruncInst>(U)) { |
| 2320 | if (TI->getType()->getPrimitiveSizeInBits() == MulWidth) |
| 2321 | IC.ReplaceInstUsesWith(*TI, Mul); |
| 2322 | else |
| 2323 | TI->setOperand(0, Mul); |
| 2324 | } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(U)) { |
| 2325 | assert(BO->getOpcode() == Instruction::And); |
| 2326 | // Replace (mul & mask) --> zext (mul.with.overflow & short_mask) |
| 2327 | ConstantInt *CI = cast<ConstantInt>(BO->getOperand(1)); |
| 2328 | APInt ShortMask = CI->getValue().trunc(MulWidth); |
| 2329 | Value *ShortAnd = Builder->CreateAnd(Mul, ShortMask); |
| 2330 | Instruction *Zext = |
| 2331 | cast<Instruction>(Builder->CreateZExt(ShortAnd, BO->getType())); |
| 2332 | IC.Worklist.Add(Zext); |
| 2333 | IC.ReplaceInstUsesWith(*BO, Zext); |
| 2334 | } else { |
| 2335 | llvm_unreachable("Unexpected Binary operation"); |
| 2336 | } |
| 2337 | IC.Worklist.Add(cast<Instruction>(U)); |
| 2338 | } |
| 2339 | } |
| 2340 | if (isa<Instruction>(OtherVal)) |
| 2341 | IC.Worklist.Add(cast<Instruction>(OtherVal)); |
| 2342 | |
| 2343 | // The original icmp gets replaced with the overflow value, maybe inverted |
| 2344 | // depending on predicate. |
| 2345 | bool Inverse = false; |
| 2346 | switch (I.getPredicate()) { |
| 2347 | case ICmpInst::ICMP_NE: |
| 2348 | break; |
| 2349 | case ICmpInst::ICMP_EQ: |
| 2350 | Inverse = true; |
| 2351 | break; |
| 2352 | case ICmpInst::ICMP_UGT: |
| 2353 | case ICmpInst::ICMP_UGE: |
| 2354 | if (I.getOperand(0) == MulVal) |
| 2355 | break; |
| 2356 | Inverse = true; |
| 2357 | break; |
| 2358 | case ICmpInst::ICMP_ULT: |
| 2359 | case ICmpInst::ICMP_ULE: |
| 2360 | if (I.getOperand(1) == MulVal) |
| 2361 | break; |
| 2362 | Inverse = true; |
| 2363 | break; |
| 2364 | default: |
| 2365 | llvm_unreachable("Unexpected predicate"); |
| 2366 | } |
| 2367 | if (Inverse) { |
| 2368 | Value *Res = Builder->CreateExtractValue(Call, 1); |
| 2369 | return BinaryOperator::CreateNot(Res); |
| 2370 | } |
| 2371 | |
| 2372 | return ExtractValueInst::Create(Call, 1); |
| 2373 | } |
| 2374 | |
Owen Anderson | d490c2d | 2011-01-11 00:36:45 +0000 | [diff] [blame] | 2375 | // DemandedBitsLHSMask - When performing a comparison against a constant, |
| 2376 | // it is possible that not all the bits in the LHS are demanded. This helper |
| 2377 | // method computes the mask that IS demanded. |
| 2378 | static APInt DemandedBitsLHSMask(ICmpInst &I, |
| 2379 | unsigned BitWidth, bool isSignCheck) { |
| 2380 | if (isSignCheck) |
| 2381 | return APInt::getSignBit(BitWidth); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2382 | |
Owen Anderson | d490c2d | 2011-01-11 00:36:45 +0000 | [diff] [blame] | 2383 | ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(1)); |
| 2384 | if (!CI) return APInt::getAllOnesValue(BitWidth); |
Owen Anderson | 0022a4b | 2011-01-11 18:26:37 +0000 | [diff] [blame] | 2385 | const APInt &RHS = CI->getValue(); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2386 | |
Owen Anderson | d490c2d | 2011-01-11 00:36:45 +0000 | [diff] [blame] | 2387 | switch (I.getPredicate()) { |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2388 | // For a UGT comparison, we don't care about any bits that |
Owen Anderson | d490c2d | 2011-01-11 00:36:45 +0000 | [diff] [blame] | 2389 | // correspond to the trailing ones of the comparand. The value of these |
| 2390 | // bits doesn't impact the outcome of the comparison, because any value |
| 2391 | // greater than the RHS must differ in a bit higher than these due to carry. |
| 2392 | case ICmpInst::ICMP_UGT: { |
| 2393 | unsigned trailingOnes = RHS.countTrailingOnes(); |
| 2394 | APInt lowBitsSet = APInt::getLowBitsSet(BitWidth, trailingOnes); |
| 2395 | return ~lowBitsSet; |
| 2396 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2397 | |
Owen Anderson | d490c2d | 2011-01-11 00:36:45 +0000 | [diff] [blame] | 2398 | // Similarly, for a ULT comparison, we don't care about the trailing zeros. |
| 2399 | // Any value less than the RHS must differ in a higher bit because of carries. |
| 2400 | case ICmpInst::ICMP_ULT: { |
| 2401 | unsigned trailingZeros = RHS.countTrailingZeros(); |
| 2402 | APInt lowBitsSet = APInt::getLowBitsSet(BitWidth, trailingZeros); |
| 2403 | return ~lowBitsSet; |
| 2404 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2405 | |
Owen Anderson | d490c2d | 2011-01-11 00:36:45 +0000 | [diff] [blame] | 2406 | default: |
| 2407 | return APInt::getAllOnesValue(BitWidth); |
| 2408 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2409 | |
Owen Anderson | d490c2d | 2011-01-11 00:36:45 +0000 | [diff] [blame] | 2410 | } |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2411 | |
Quentin Colombet | 5ab5555 | 2013-09-09 20:56:48 +0000 | [diff] [blame] | 2412 | /// \brief Check if the order of \p Op0 and \p Op1 as operand in an ICmpInst |
| 2413 | /// should be swapped. |
Alp Toker | cb40291 | 2014-01-24 17:20:08 +0000 | [diff] [blame] | 2414 | /// The decision is based on how many times these two operands are reused |
Quentin Colombet | 5ab5555 | 2013-09-09 20:56:48 +0000 | [diff] [blame] | 2415 | /// as subtract operands and their positions in those instructions. |
| 2416 | /// The rational is that several architectures use the same instruction for |
| 2417 | /// both subtract and cmp, thus it is better if the order of those operands |
| 2418 | /// match. |
| 2419 | /// \return true if Op0 and Op1 should be swapped. |
| 2420 | static bool swapMayExposeCSEOpportunities(const Value * Op0, |
| 2421 | const Value * Op1) { |
| 2422 | // Filter out pointer value as those cannot appears directly in subtract. |
| 2423 | // FIXME: we may want to go through inttoptrs or bitcasts. |
| 2424 | if (Op0->getType()->isPointerTy()) |
| 2425 | return false; |
| 2426 | // Count every uses of both Op0 and Op1 in a subtract. |
| 2427 | // Each time Op0 is the first operand, count -1: swapping is bad, the |
| 2428 | // subtract has already the same layout as the compare. |
| 2429 | // Each time Op0 is the second operand, count +1: swapping is good, the |
Alp Toker | cb40291 | 2014-01-24 17:20:08 +0000 | [diff] [blame] | 2430 | // subtract has a different layout as the compare. |
Quentin Colombet | 5ab5555 | 2013-09-09 20:56:48 +0000 | [diff] [blame] | 2431 | // At the end, if the benefit is greater than 0, Op0 should come second to |
| 2432 | // expose more CSE opportunities. |
| 2433 | int GlobalSwapBenefits = 0; |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 2434 | for (const User *U : Op0->users()) { |
| 2435 | const BinaryOperator *BinOp = dyn_cast<BinaryOperator>(U); |
Quentin Colombet | 5ab5555 | 2013-09-09 20:56:48 +0000 | [diff] [blame] | 2436 | if (!BinOp || BinOp->getOpcode() != Instruction::Sub) |
| 2437 | continue; |
| 2438 | // If Op0 is the first argument, this is not beneficial to swap the |
| 2439 | // arguments. |
| 2440 | int LocalSwapBenefits = -1; |
| 2441 | unsigned Op1Idx = 1; |
| 2442 | if (BinOp->getOperand(Op1Idx) == Op0) { |
| 2443 | Op1Idx = 0; |
| 2444 | LocalSwapBenefits = 1; |
| 2445 | } |
| 2446 | if (BinOp->getOperand(Op1Idx) != Op1) |
| 2447 | continue; |
| 2448 | GlobalSwapBenefits += LocalSwapBenefits; |
| 2449 | } |
| 2450 | return GlobalSwapBenefits > 0; |
| 2451 | } |
| 2452 | |
Gerolf Hoflehner | ec6217c | 2014-11-21 23:36:44 +0000 | [diff] [blame] | 2453 | /// \brief Check that one use is in the same block as the definition and all |
| 2454 | /// other uses are in blocks dominated by a given block |
| 2455 | /// |
| 2456 | /// \param DI Definition |
| 2457 | /// \param UI Use |
| 2458 | /// \param DB Block that must dominate all uses of \p DI outside |
| 2459 | /// the parent block |
| 2460 | /// \return true when \p UI is the only use of \p DI in the parent block |
| 2461 | /// and all other uses of \p DI are in blocks dominated by \p DB. |
| 2462 | /// |
| 2463 | bool InstCombiner::dominatesAllUses(const Instruction *DI, |
| 2464 | const Instruction *UI, |
| 2465 | const BasicBlock *DB) const { |
| 2466 | assert(DI && UI && "Instruction not defined\n"); |
| 2467 | // ignore incomplete definitions |
| 2468 | if (!DI->getParent()) |
| 2469 | return false; |
| 2470 | // DI and UI must be in the same block |
| 2471 | if (DI->getParent() != UI->getParent()) |
| 2472 | return false; |
| 2473 | // Protect from self-referencing blocks |
| 2474 | if (DI->getParent() == DB) |
| 2475 | return false; |
| 2476 | // DominatorTree available? |
| 2477 | if (!DT) |
| 2478 | return false; |
| 2479 | for (const User *U : DI->users()) { |
| 2480 | auto *Usr = cast<Instruction>(U); |
| 2481 | if (Usr != UI && !DT->dominates(DB, Usr->getParent())) |
| 2482 | return false; |
| 2483 | } |
| 2484 | return true; |
| 2485 | } |
| 2486 | |
| 2487 | /// |
| 2488 | /// true when the instruction sequence within a block is select-cmp-br. |
| 2489 | /// |
| 2490 | static bool isChainSelectCmpBranch(const SelectInst *SI) { |
| 2491 | const BasicBlock *BB = SI->getParent(); |
| 2492 | if (!BB) |
| 2493 | return false; |
| 2494 | auto *BI = dyn_cast_or_null<BranchInst>(BB->getTerminator()); |
| 2495 | if (!BI || BI->getNumSuccessors() != 2) |
| 2496 | return false; |
| 2497 | auto *IC = dyn_cast<ICmpInst>(BI->getCondition()); |
| 2498 | if (!IC || (IC->getOperand(0) != SI && IC->getOperand(1) != SI)) |
| 2499 | return false; |
| 2500 | return true; |
| 2501 | } |
| 2502 | |
| 2503 | /// |
| 2504 | /// \brief True when a select result is replaced by one of its operands |
| 2505 | /// in select-icmp sequence. This will eventually result in the elimination |
| 2506 | /// of the select. |
| 2507 | /// |
| 2508 | /// \param SI Select instruction |
| 2509 | /// \param Icmp Compare instruction |
| 2510 | /// \param SIOpd Operand that replaces the select |
| 2511 | /// |
| 2512 | /// Notes: |
| 2513 | /// - The replacement is global and requires dominator information |
| 2514 | /// - The caller is responsible for the actual replacement |
| 2515 | /// |
| 2516 | /// Example: |
| 2517 | /// |
| 2518 | /// entry: |
| 2519 | /// %4 = select i1 %3, %C* %0, %C* null |
| 2520 | /// %5 = icmp eq %C* %4, null |
| 2521 | /// br i1 %5, label %9, label %7 |
| 2522 | /// ... |
| 2523 | /// ; <label>:7 ; preds = %entry |
| 2524 | /// %8 = getelementptr inbounds %C* %4, i64 0, i32 0 |
| 2525 | /// ... |
| 2526 | /// |
| 2527 | /// can be transformed to |
| 2528 | /// |
| 2529 | /// %5 = icmp eq %C* %0, null |
| 2530 | /// %6 = select i1 %3, i1 %5, i1 true |
| 2531 | /// br i1 %6, label %9, label %7 |
| 2532 | /// ... |
| 2533 | /// ; <label>:7 ; preds = %entry |
| 2534 | /// %8 = getelementptr inbounds %C* %0, i64 0, i32 0 // replace by %0! |
| 2535 | /// |
| 2536 | /// Similar when the first operand of the select is a constant or/and |
| 2537 | /// the compare is for not equal rather than equal. |
| 2538 | /// |
| 2539 | /// NOTE: The function is only called when the select and compare constants |
| 2540 | /// are equal, the optimization can work only for EQ predicates. This is not a |
| 2541 | /// major restriction since a NE compare should be 'normalized' to an equal |
| 2542 | /// compare, which usually happens in the combiner and test case |
| 2543 | /// select-cmp-br.ll |
| 2544 | /// checks for it. |
| 2545 | bool InstCombiner::replacedSelectWithOperand(SelectInst *SI, |
| 2546 | const ICmpInst *Icmp, |
| 2547 | const unsigned SIOpd) { |
David Majnemer | 83484fd | 2014-11-22 06:09:28 +0000 | [diff] [blame] | 2548 | assert((SIOpd == 1 || SIOpd == 2) && "Invalid select operand!"); |
Gerolf Hoflehner | ec6217c | 2014-11-21 23:36:44 +0000 | [diff] [blame] | 2549 | if (isChainSelectCmpBranch(SI) && Icmp->getPredicate() == ICmpInst::ICMP_EQ) { |
| 2550 | BasicBlock *Succ = SI->getParent()->getTerminator()->getSuccessor(1); |
| 2551 | // The check for the unique predecessor is not the best that can be |
| 2552 | // done. But it protects efficiently against cases like when SI's |
| 2553 | // home block has two successors, Succ and Succ1, and Succ1 predecessor |
| 2554 | // of Succ. Then SI can't be replaced by SIOpd because the use that gets |
| 2555 | // replaced can be reached on either path. So the uniqueness check |
| 2556 | // guarantees that the path all uses of SI (outside SI's parent) are on |
| 2557 | // is disjoint from all other paths out of SI. But that information |
| 2558 | // is more expensive to compute, and the trade-off here is in favor |
| 2559 | // of compile-time. |
| 2560 | if (Succ->getUniquePredecessor() && dominatesAllUses(SI, Icmp, Succ)) { |
| 2561 | NumSel++; |
| 2562 | SI->replaceUsesOutsideBlock(SI->getOperand(SIOpd), SI->getParent()); |
| 2563 | return true; |
| 2564 | } |
| 2565 | } |
| 2566 | return false; |
| 2567 | } |
| 2568 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2569 | Instruction *InstCombiner::visitICmpInst(ICmpInst &I) { |
| 2570 | bool Changed = false; |
Chris Lattner | 9306ffa | 2010-02-01 19:54:45 +0000 | [diff] [blame] | 2571 | Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1); |
Quentin Colombet | 5ab5555 | 2013-09-09 20:56:48 +0000 | [diff] [blame] | 2572 | unsigned Op0Cplxity = getComplexity(Op0); |
| 2573 | unsigned Op1Cplxity = getComplexity(Op1); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2574 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2575 | /// Orders the operands of the compare so that they are listed from most |
| 2576 | /// complex to least complex. This puts constants before unary operators, |
| 2577 | /// before binary operators. |
Quentin Colombet | 5ab5555 | 2013-09-09 20:56:48 +0000 | [diff] [blame] | 2578 | if (Op0Cplxity < Op1Cplxity || |
| 2579 | (Op0Cplxity == Op1Cplxity && |
| 2580 | swapMayExposeCSEOpportunities(Op0, Op1))) { |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2581 | I.swapOperands(); |
Chris Lattner | 9306ffa | 2010-02-01 19:54:45 +0000 | [diff] [blame] | 2582 | std::swap(Op0, Op1); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2583 | Changed = true; |
| 2584 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2585 | |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 2586 | if (Value *V = SimplifyICmpInst(I.getPredicate(), Op0, Op1, DL, TLI, DT, AC)) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2587 | return ReplaceInstUsesWith(I, V); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2588 | |
Pete Cooper | bc5c524 | 2011-12-01 03:58:40 +0000 | [diff] [blame] | 2589 | // comparing -val or val with non-zero is the same as just comparing val |
Pete Cooper | fdddc27 | 2011-12-01 19:13:26 +0000 | [diff] [blame] | 2590 | // ie, abs(val) != 0 -> val != 0 |
Pete Cooper | bc5c524 | 2011-12-01 03:58:40 +0000 | [diff] [blame] | 2591 | if (I.getPredicate() == ICmpInst::ICMP_NE && match(Op1, m_Zero())) |
| 2592 | { |
Pete Cooper | fdddc27 | 2011-12-01 19:13:26 +0000 | [diff] [blame] | 2593 | Value *Cond, *SelectTrue, *SelectFalse; |
| 2594 | if (match(Op0, m_Select(m_Value(Cond), m_Value(SelectTrue), |
Pete Cooper | bc5c524 | 2011-12-01 03:58:40 +0000 | [diff] [blame] | 2595 | m_Value(SelectFalse)))) { |
Pete Cooper | fdddc27 | 2011-12-01 19:13:26 +0000 | [diff] [blame] | 2596 | if (Value *V = dyn_castNegVal(SelectTrue)) { |
| 2597 | if (V == SelectFalse) |
| 2598 | return CmpInst::Create(Instruction::ICmp, I.getPredicate(), V, Op1); |
| 2599 | } |
| 2600 | else if (Value *V = dyn_castNegVal(SelectFalse)) { |
| 2601 | if (V == SelectTrue) |
| 2602 | return CmpInst::Create(Instruction::ICmp, I.getPredicate(), V, Op1); |
Pete Cooper | bc5c524 | 2011-12-01 03:58:40 +0000 | [diff] [blame] | 2603 | } |
| 2604 | } |
| 2605 | } |
| 2606 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2607 | Type *Ty = Op0->getType(); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2608 | |
| 2609 | // icmp's with boolean values can always be turned into bitwise operations |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 2610 | if (Ty->isIntegerTy(1)) { |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2611 | switch (I.getPredicate()) { |
| 2612 | default: llvm_unreachable("Invalid icmp instruction!"); |
| 2613 | case ICmpInst::ICMP_EQ: { // icmp eq i1 A, B -> ~(A^B) |
| 2614 | Value *Xor = Builder->CreateXor(Op0, Op1, I.getName()+"tmp"); |
| 2615 | return BinaryOperator::CreateNot(Xor); |
| 2616 | } |
| 2617 | case ICmpInst::ICMP_NE: // icmp eq i1 A, B -> A^B |
| 2618 | return BinaryOperator::CreateXor(Op0, Op1); |
| 2619 | |
| 2620 | case ICmpInst::ICMP_UGT: |
| 2621 | std::swap(Op0, Op1); // Change icmp ugt -> icmp ult |
| 2622 | // FALL THROUGH |
| 2623 | case ICmpInst::ICMP_ULT:{ // icmp ult i1 A, B -> ~A & B |
| 2624 | Value *Not = Builder->CreateNot(Op0, I.getName()+"tmp"); |
| 2625 | return BinaryOperator::CreateAnd(Not, Op1); |
| 2626 | } |
| 2627 | case ICmpInst::ICMP_SGT: |
| 2628 | std::swap(Op0, Op1); // Change icmp sgt -> icmp slt |
| 2629 | // FALL THROUGH |
| 2630 | case ICmpInst::ICMP_SLT: { // icmp slt i1 A, B -> A & ~B |
| 2631 | Value *Not = Builder->CreateNot(Op1, I.getName()+"tmp"); |
| 2632 | return BinaryOperator::CreateAnd(Not, Op0); |
| 2633 | } |
| 2634 | case ICmpInst::ICMP_UGE: |
| 2635 | std::swap(Op0, Op1); // Change icmp uge -> icmp ule |
| 2636 | // FALL THROUGH |
| 2637 | case ICmpInst::ICMP_ULE: { // icmp ule i1 A, B -> ~A | B |
| 2638 | Value *Not = Builder->CreateNot(Op0, I.getName()+"tmp"); |
| 2639 | return BinaryOperator::CreateOr(Not, Op1); |
| 2640 | } |
| 2641 | case ICmpInst::ICMP_SGE: |
| 2642 | std::swap(Op0, Op1); // Change icmp sge -> icmp sle |
| 2643 | // FALL THROUGH |
| 2644 | case ICmpInst::ICMP_SLE: { // icmp sle i1 A, B -> A | ~B |
| 2645 | Value *Not = Builder->CreateNot(Op1, I.getName()+"tmp"); |
| 2646 | return BinaryOperator::CreateOr(Not, Op0); |
| 2647 | } |
| 2648 | } |
| 2649 | } |
| 2650 | |
| 2651 | unsigned BitWidth = 0; |
Chris Lattner | 5e0c0c7 | 2010-12-19 19:37:52 +0000 | [diff] [blame] | 2652 | if (Ty->isIntOrIntVectorTy()) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2653 | BitWidth = Ty->getScalarSizeInBits(); |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 2654 | else // Get pointer size. |
| 2655 | BitWidth = DL.getTypeSizeInBits(Ty->getScalarType()); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2656 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2657 | bool isSignBit = false; |
| 2658 | |
| 2659 | // See if we are doing a comparison with a constant. |
| 2660 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) { |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2661 | Value *A = nullptr, *B = nullptr; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2662 | |
Owen Anderson | 1294ea7 | 2010-12-17 18:08:00 +0000 | [diff] [blame] | 2663 | // Match the following pattern, which is a common idiom when writing |
| 2664 | // overflow-safe integer arithmetic function. The source performs an |
| 2665 | // addition in wider type, and explicitly checks for overflow using |
| 2666 | // comparisons against INT_MIN and INT_MAX. Simplify this by using the |
| 2667 | // sadd_with_overflow intrinsic. |
Chris Lattner | ee61c1d | 2010-12-19 17:52:50 +0000 | [diff] [blame] | 2668 | // |
| 2669 | // TODO: This could probably be generalized to handle other overflow-safe |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2670 | // operations if we worked out the formulas to compute the appropriate |
Owen Anderson | 1294ea7 | 2010-12-17 18:08:00 +0000 | [diff] [blame] | 2671 | // magic constants. |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2672 | // |
Chris Lattner | ee61c1d | 2010-12-19 17:52:50 +0000 | [diff] [blame] | 2673 | // sum = a + b |
| 2674 | // if (sum+128 >u 255) ... -> llvm.sadd.with.overflow.i8 |
Owen Anderson | 1294ea7 | 2010-12-17 18:08:00 +0000 | [diff] [blame] | 2675 | { |
Chris Lattner | ee61c1d | 2010-12-19 17:52:50 +0000 | [diff] [blame] | 2676 | ConstantInt *CI2; // I = icmp ugt (add (add A, B), CI2), CI |
Owen Anderson | 1294ea7 | 2010-12-17 18:08:00 +0000 | [diff] [blame] | 2677 | if (I.getPredicate() == ICmpInst::ICMP_UGT && |
Chris Lattner | ee61c1d | 2010-12-19 17:52:50 +0000 | [diff] [blame] | 2678 | match(Op0, m_Add(m_Add(m_Value(A), m_Value(B)), m_ConstantInt(CI2)))) |
Chris Lattner | ce2995a | 2010-12-19 18:38:44 +0000 | [diff] [blame] | 2679 | if (Instruction *Res = ProcessUGT_ADDCST_ADD(I, A, B, CI2, CI, *this)) |
Chris Lattner | ee61c1d | 2010-12-19 17:52:50 +0000 | [diff] [blame] | 2680 | return Res; |
Owen Anderson | 1294ea7 | 2010-12-17 18:08:00 +0000 | [diff] [blame] | 2681 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2682 | |
David Majnemer | a0afb55 | 2015-01-14 19:26:56 +0000 | [diff] [blame] | 2683 | // The following transforms are only 'worth it' if the only user of the |
| 2684 | // subtraction is the icmp. |
| 2685 | if (Op0->hasOneUse()) { |
| 2686 | // (icmp ne/eq (sub A B) 0) -> (icmp ne/eq A, B) |
| 2687 | if (I.isEquality() && CI->isZero() && |
| 2688 | match(Op0, m_Sub(m_Value(A), m_Value(B)))) |
| 2689 | return new ICmpInst(I.getPredicate(), A, B); |
| 2690 | |
| 2691 | // (icmp sgt (sub nsw A B), -1) -> (icmp sge A, B) |
| 2692 | if (I.getPredicate() == ICmpInst::ICMP_SGT && CI->isAllOnesValue() && |
| 2693 | match(Op0, m_NSWSub(m_Value(A), m_Value(B)))) |
| 2694 | return new ICmpInst(ICmpInst::ICMP_SGE, A, B); |
| 2695 | |
| 2696 | // (icmp sgt (sub nsw A B), 0) -> (icmp sgt A, B) |
| 2697 | if (I.getPredicate() == ICmpInst::ICMP_SGT && CI->isZero() && |
| 2698 | match(Op0, m_NSWSub(m_Value(A), m_Value(B)))) |
| 2699 | return new ICmpInst(ICmpInst::ICMP_SGT, A, B); |
| 2700 | |
| 2701 | // (icmp slt (sub nsw A B), 0) -> (icmp slt A, B) |
| 2702 | if (I.getPredicate() == ICmpInst::ICMP_SLT && CI->isZero() && |
| 2703 | match(Op0, m_NSWSub(m_Value(A), m_Value(B)))) |
| 2704 | return new ICmpInst(ICmpInst::ICMP_SLT, A, B); |
| 2705 | |
| 2706 | // (icmp slt (sub nsw A B), 1) -> (icmp sle A, B) |
| 2707 | if (I.getPredicate() == ICmpInst::ICMP_SLT && CI->isOne() && |
| 2708 | match(Op0, m_NSWSub(m_Value(A), m_Value(B)))) |
| 2709 | return new ICmpInst(ICmpInst::ICMP_SLE, A, B); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2710 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2711 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2712 | // If we have an icmp le or icmp ge instruction, turn it into the |
| 2713 | // appropriate icmp lt or icmp gt instruction. This allows us to rely on |
| 2714 | // them being folded in the code below. The SimplifyICmpInst code has |
| 2715 | // already handled the edge cases for us, so we just assert on them. |
| 2716 | switch (I.getPredicate()) { |
| 2717 | default: break; |
| 2718 | case ICmpInst::ICMP_ULE: |
| 2719 | assert(!CI->isMaxValue(false)); // A <=u MAX -> TRUE |
| 2720 | return new ICmpInst(ICmpInst::ICMP_ULT, Op0, |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 2721 | Builder->getInt(CI->getValue()+1)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2722 | case ICmpInst::ICMP_SLE: |
| 2723 | assert(!CI->isMaxValue(true)); // A <=s MAX -> TRUE |
| 2724 | return new ICmpInst(ICmpInst::ICMP_SLT, Op0, |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 2725 | Builder->getInt(CI->getValue()+1)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2726 | case ICmpInst::ICMP_UGE: |
Nick Lewycky | 6b445419 | 2011-02-28 06:20:05 +0000 | [diff] [blame] | 2727 | assert(!CI->isMinValue(false)); // A >=u MIN -> TRUE |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2728 | return new ICmpInst(ICmpInst::ICMP_UGT, Op0, |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 2729 | Builder->getInt(CI->getValue()-1)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2730 | case ICmpInst::ICMP_SGE: |
Nick Lewycky | 6b445419 | 2011-02-28 06:20:05 +0000 | [diff] [blame] | 2731 | assert(!CI->isMinValue(true)); // A >=s MIN -> TRUE |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2732 | return new ICmpInst(ICmpInst::ICMP_SGT, Op0, |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 2733 | Builder->getInt(CI->getValue()-1)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2734 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2735 | |
Suyog Sarda | 3a8c2c1 | 2014-07-22 19:19:36 +0000 | [diff] [blame] | 2736 | if (I.isEquality()) { |
| 2737 | ConstantInt *CI2; |
| 2738 | if (match(Op0, m_AShr(m_ConstantInt(CI2), m_Value(A))) || |
| 2739 | match(Op0, m_LShr(m_ConstantInt(CI2), m_Value(A)))) { |
David Majnemer | 59939ac | 2014-10-19 08:23:08 +0000 | [diff] [blame] | 2740 | // (icmp eq/ne (ashr/lshr const2, A), const1) |
David Majnemer | 2abb818 | 2014-10-25 07:13:13 +0000 | [diff] [blame] | 2741 | if (Instruction *Inst = FoldICmpCstShrCst(I, Op0, A, CI, CI2)) |
| 2742 | return Inst; |
Suyog Sarda | 3a8c2c1 | 2014-07-22 19:19:36 +0000 | [diff] [blame] | 2743 | } |
David Majnemer | 59939ac | 2014-10-19 08:23:08 +0000 | [diff] [blame] | 2744 | if (match(Op0, m_Shl(m_ConstantInt(CI2), m_Value(A)))) { |
| 2745 | // (icmp eq/ne (shl const2, A), const1) |
David Majnemer | 2abb818 | 2014-10-25 07:13:13 +0000 | [diff] [blame] | 2746 | if (Instruction *Inst = FoldICmpCstShlCst(I, Op0, A, CI, CI2)) |
| 2747 | return Inst; |
David Majnemer | 59939ac | 2014-10-19 08:23:08 +0000 | [diff] [blame] | 2748 | } |
Suyog Sarda | 3a8c2c1 | 2014-07-22 19:19:36 +0000 | [diff] [blame] | 2749 | } |
| 2750 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2751 | // If this comparison is a normal comparison, it demands all |
| 2752 | // bits, if it is a sign bit comparison, it only demands the sign bit. |
| 2753 | bool UnusedBit; |
| 2754 | isSignBit = isSignBitCheck(I.getPredicate(), CI, UnusedBit); |
| 2755 | } |
| 2756 | |
| 2757 | // See if we can fold the comparison based on range information we can get |
| 2758 | // by checking whether bits are known to be zero or one in the input. |
| 2759 | if (BitWidth != 0) { |
| 2760 | APInt Op0KnownZero(BitWidth, 0), Op0KnownOne(BitWidth, 0); |
| 2761 | APInt Op1KnownZero(BitWidth, 0), Op1KnownOne(BitWidth, 0); |
| 2762 | |
| 2763 | if (SimplifyDemandedBits(I.getOperandUse(0), |
Owen Anderson | d490c2d | 2011-01-11 00:36:45 +0000 | [diff] [blame] | 2764 | DemandedBitsLHSMask(I, BitWidth, isSignBit), |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2765 | Op0KnownZero, Op0KnownOne, 0)) |
| 2766 | return &I; |
| 2767 | if (SimplifyDemandedBits(I.getOperandUse(1), |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 2768 | APInt::getAllOnesValue(BitWidth), Op1KnownZero, |
| 2769 | Op1KnownOne, 0)) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2770 | return &I; |
| 2771 | |
| 2772 | // Given the known and unknown bits, compute a range that the LHS could be |
| 2773 | // in. Compute the Min, Max and RHS values based on the known bits. For the |
| 2774 | // EQ and NE we use unsigned values. |
| 2775 | APInt Op0Min(BitWidth, 0), Op0Max(BitWidth, 0); |
| 2776 | APInt Op1Min(BitWidth, 0), Op1Max(BitWidth, 0); |
| 2777 | if (I.isSigned()) { |
| 2778 | ComputeSignedMinMaxValuesFromKnownBits(Op0KnownZero, Op0KnownOne, |
| 2779 | Op0Min, Op0Max); |
| 2780 | ComputeSignedMinMaxValuesFromKnownBits(Op1KnownZero, Op1KnownOne, |
| 2781 | Op1Min, Op1Max); |
| 2782 | } else { |
| 2783 | ComputeUnsignedMinMaxValuesFromKnownBits(Op0KnownZero, Op0KnownOne, |
| 2784 | Op0Min, Op0Max); |
| 2785 | ComputeUnsignedMinMaxValuesFromKnownBits(Op1KnownZero, Op1KnownOne, |
| 2786 | Op1Min, Op1Max); |
| 2787 | } |
| 2788 | |
| 2789 | // If Min and Max are known to be the same, then SimplifyDemandedBits |
| 2790 | // figured out that the LHS is a constant. Just constant fold this now so |
| 2791 | // that code below can assume that Min != Max. |
| 2792 | if (!isa<Constant>(Op0) && Op0Min == Op0Max) |
| 2793 | return new ICmpInst(I.getPredicate(), |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 2794 | ConstantInt::get(Op0->getType(), Op0Min), Op1); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2795 | if (!isa<Constant>(Op1) && Op1Min == Op1Max) |
| 2796 | return new ICmpInst(I.getPredicate(), Op0, |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 2797 | ConstantInt::get(Op1->getType(), Op1Min)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2798 | |
| 2799 | // Based on the range information we know about the LHS, see if we can |
Nick Lewycky | 6b445419 | 2011-02-28 06:20:05 +0000 | [diff] [blame] | 2800 | // simplify this comparison. For example, (x&4) < 8 is always true. |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2801 | switch (I.getPredicate()) { |
| 2802 | default: llvm_unreachable("Unknown icmp opcode!"); |
Chris Lattner | f7e8961 | 2010-11-21 06:44:42 +0000 | [diff] [blame] | 2803 | case ICmpInst::ICMP_EQ: { |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2804 | if (Op0Max.ult(Op1Min) || Op0Min.ugt(Op1Max)) |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 2805 | return ReplaceInstUsesWith(I, ConstantInt::getFalse(I.getType())); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2806 | |
Chris Lattner | f7e8961 | 2010-11-21 06:44:42 +0000 | [diff] [blame] | 2807 | // If all bits are known zero except for one, then we know at most one |
| 2808 | // bit is set. If the comparison is against zero, then this is a check |
| 2809 | // to see if *that* bit is set. |
| 2810 | APInt Op0KnownZeroInverted = ~Op0KnownZero; |
Dinesh Dwivedi | ce5d35a | 2014-06-02 07:57:24 +0000 | [diff] [blame] | 2811 | if (~Op1KnownZero == 0) { |
Chris Lattner | f7e8961 | 2010-11-21 06:44:42 +0000 | [diff] [blame] | 2812 | // If the LHS is an AND with the same constant, look through it. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2813 | Value *LHS = nullptr; |
| 2814 | ConstantInt *LHSC = nullptr; |
Chris Lattner | f7e8961 | 2010-11-21 06:44:42 +0000 | [diff] [blame] | 2815 | if (!match(Op0, m_And(m_Value(LHS), m_ConstantInt(LHSC))) || |
| 2816 | LHSC->getValue() != Op0KnownZeroInverted) |
| 2817 | LHS = Op0; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2818 | |
Chris Lattner | f7e8961 | 2010-11-21 06:44:42 +0000 | [diff] [blame] | 2819 | // If the LHS is 1 << x, and we know the result is a power of 2 like 8, |
Chris Lattner | e5afa15 | 2010-11-23 02:42:04 +0000 | [diff] [blame] | 2820 | // then turn "((1 << x)&8) == 0" into "x != 3". |
Dinesh Dwivedi | ce5d35a | 2014-06-02 07:57:24 +0000 | [diff] [blame] | 2821 | // or turn "((1 << x)&7) == 0" into "x > 2". |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2822 | Value *X = nullptr; |
Chris Lattner | f7e8961 | 2010-11-21 06:44:42 +0000 | [diff] [blame] | 2823 | if (match(LHS, m_Shl(m_One(), m_Value(X)))) { |
Dinesh Dwivedi | ce5d35a | 2014-06-02 07:57:24 +0000 | [diff] [blame] | 2824 | APInt ValToCheck = Op0KnownZeroInverted; |
| 2825 | if (ValToCheck.isPowerOf2()) { |
| 2826 | unsigned CmpVal = ValToCheck.countTrailingZeros(); |
| 2827 | return new ICmpInst(ICmpInst::ICMP_NE, X, |
| 2828 | ConstantInt::get(X->getType(), CmpVal)); |
| 2829 | } else if ((++ValToCheck).isPowerOf2()) { |
| 2830 | unsigned CmpVal = ValToCheck.countTrailingZeros() - 1; |
| 2831 | return new ICmpInst(ICmpInst::ICMP_UGT, X, |
| 2832 | ConstantInt::get(X->getType(), CmpVal)); |
| 2833 | } |
Chris Lattner | f7e8961 | 2010-11-21 06:44:42 +0000 | [diff] [blame] | 2834 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2835 | |
Chris Lattner | f7e8961 | 2010-11-21 06:44:42 +0000 | [diff] [blame] | 2836 | // If the LHS is 8 >>u x, and we know the result is a power of 2 like 1, |
Chris Lattner | e5afa15 | 2010-11-23 02:42:04 +0000 | [diff] [blame] | 2837 | // then turn "((8 >>u x)&1) == 0" into "x != 3". |
Chris Lattner | 9845710 | 2011-02-10 05:23:05 +0000 | [diff] [blame] | 2838 | const APInt *CI; |
Chris Lattner | f7e8961 | 2010-11-21 06:44:42 +0000 | [diff] [blame] | 2839 | if (Op0KnownZeroInverted == 1 && |
Chris Lattner | 9845710 | 2011-02-10 05:23:05 +0000 | [diff] [blame] | 2840 | match(LHS, m_LShr(m_Power2(CI), m_Value(X)))) |
Chris Lattner | e5afa15 | 2010-11-23 02:42:04 +0000 | [diff] [blame] | 2841 | return new ICmpInst(ICmpInst::ICMP_NE, X, |
Chris Lattner | 9845710 | 2011-02-10 05:23:05 +0000 | [diff] [blame] | 2842 | ConstantInt::get(X->getType(), |
| 2843 | CI->countTrailingZeros())); |
Chris Lattner | f7e8961 | 2010-11-21 06:44:42 +0000 | [diff] [blame] | 2844 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2845 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2846 | break; |
Chris Lattner | f7e8961 | 2010-11-21 06:44:42 +0000 | [diff] [blame] | 2847 | } |
| 2848 | case ICmpInst::ICMP_NE: { |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2849 | if (Op0Max.ult(Op1Min) || Op0Min.ugt(Op1Max)) |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 2850 | return ReplaceInstUsesWith(I, ConstantInt::getTrue(I.getType())); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2851 | |
Chris Lattner | f7e8961 | 2010-11-21 06:44:42 +0000 | [diff] [blame] | 2852 | // If all bits are known zero except for one, then we know at most one |
| 2853 | // bit is set. If the comparison is against zero, then this is a check |
| 2854 | // to see if *that* bit is set. |
| 2855 | APInt Op0KnownZeroInverted = ~Op0KnownZero; |
Dinesh Dwivedi | ce5d35a | 2014-06-02 07:57:24 +0000 | [diff] [blame] | 2856 | if (~Op1KnownZero == 0) { |
Chris Lattner | f7e8961 | 2010-11-21 06:44:42 +0000 | [diff] [blame] | 2857 | // If the LHS is an AND with the same constant, look through it. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2858 | Value *LHS = nullptr; |
| 2859 | ConstantInt *LHSC = nullptr; |
Chris Lattner | f7e8961 | 2010-11-21 06:44:42 +0000 | [diff] [blame] | 2860 | if (!match(Op0, m_And(m_Value(LHS), m_ConstantInt(LHSC))) || |
| 2861 | LHSC->getValue() != Op0KnownZeroInverted) |
| 2862 | LHS = Op0; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2863 | |
Chris Lattner | f7e8961 | 2010-11-21 06:44:42 +0000 | [diff] [blame] | 2864 | // If the LHS is 1 << x, and we know the result is a power of 2 like 8, |
Chris Lattner | e5afa15 | 2010-11-23 02:42:04 +0000 | [diff] [blame] | 2865 | // then turn "((1 << x)&8) != 0" into "x == 3". |
Dinesh Dwivedi | ce5d35a | 2014-06-02 07:57:24 +0000 | [diff] [blame] | 2866 | // or turn "((1 << x)&7) != 0" into "x < 3". |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 2867 | Value *X = nullptr; |
Chris Lattner | f7e8961 | 2010-11-21 06:44:42 +0000 | [diff] [blame] | 2868 | if (match(LHS, m_Shl(m_One(), m_Value(X)))) { |
Dinesh Dwivedi | ce5d35a | 2014-06-02 07:57:24 +0000 | [diff] [blame] | 2869 | APInt ValToCheck = Op0KnownZeroInverted; |
| 2870 | if (ValToCheck.isPowerOf2()) { |
| 2871 | unsigned CmpVal = ValToCheck.countTrailingZeros(); |
| 2872 | return new ICmpInst(ICmpInst::ICMP_EQ, X, |
| 2873 | ConstantInt::get(X->getType(), CmpVal)); |
| 2874 | } else if ((++ValToCheck).isPowerOf2()) { |
| 2875 | unsigned CmpVal = ValToCheck.countTrailingZeros(); |
| 2876 | return new ICmpInst(ICmpInst::ICMP_ULT, X, |
| 2877 | ConstantInt::get(X->getType(), CmpVal)); |
| 2878 | } |
Chris Lattner | f7e8961 | 2010-11-21 06:44:42 +0000 | [diff] [blame] | 2879 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2880 | |
Chris Lattner | f7e8961 | 2010-11-21 06:44:42 +0000 | [diff] [blame] | 2881 | // If the LHS is 8 >>u x, and we know the result is a power of 2 like 1, |
Chris Lattner | e5afa15 | 2010-11-23 02:42:04 +0000 | [diff] [blame] | 2882 | // then turn "((8 >>u x)&1) != 0" into "x == 3". |
Chris Lattner | 9845710 | 2011-02-10 05:23:05 +0000 | [diff] [blame] | 2883 | const APInt *CI; |
Chris Lattner | f7e8961 | 2010-11-21 06:44:42 +0000 | [diff] [blame] | 2884 | if (Op0KnownZeroInverted == 1 && |
Chris Lattner | 9845710 | 2011-02-10 05:23:05 +0000 | [diff] [blame] | 2885 | match(LHS, m_LShr(m_Power2(CI), m_Value(X)))) |
Chris Lattner | e5afa15 | 2010-11-23 02:42:04 +0000 | [diff] [blame] | 2886 | return new ICmpInst(ICmpInst::ICMP_EQ, X, |
Chris Lattner | 9845710 | 2011-02-10 05:23:05 +0000 | [diff] [blame] | 2887 | ConstantInt::get(X->getType(), |
| 2888 | CI->countTrailingZeros())); |
Chris Lattner | f7e8961 | 2010-11-21 06:44:42 +0000 | [diff] [blame] | 2889 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 2890 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2891 | break; |
Chris Lattner | f7e8961 | 2010-11-21 06:44:42 +0000 | [diff] [blame] | 2892 | } |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2893 | case ICmpInst::ICMP_ULT: |
| 2894 | if (Op0Max.ult(Op1Min)) // A <u B -> true if max(A) < min(B) |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 2895 | return ReplaceInstUsesWith(I, ConstantInt::getTrue(I.getType())); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2896 | if (Op0Min.uge(Op1Max)) // A <u B -> false if min(A) >= max(B) |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 2897 | return ReplaceInstUsesWith(I, ConstantInt::getFalse(I.getType())); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2898 | if (Op1Min == Op0Max) // A <u B -> A != B if max(A) == min(B) |
| 2899 | return new ICmpInst(ICmpInst::ICMP_NE, Op0, Op1); |
| 2900 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) { |
| 2901 | if (Op1Max == Op0Min+1) // A <u C -> A == C-1 if min(A)+1 == C |
| 2902 | return new ICmpInst(ICmpInst::ICMP_EQ, Op0, |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 2903 | Builder->getInt(CI->getValue()-1)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2904 | |
| 2905 | // (x <u 2147483648) -> (x >s -1) -> true if sign bit clear |
| 2906 | if (CI->isMinValue(true)) |
| 2907 | return new ICmpInst(ICmpInst::ICMP_SGT, Op0, |
| 2908 | Constant::getAllOnesValue(Op0->getType())); |
| 2909 | } |
| 2910 | break; |
| 2911 | case ICmpInst::ICMP_UGT: |
| 2912 | if (Op0Min.ugt(Op1Max)) // A >u B -> true if min(A) > max(B) |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 2913 | return ReplaceInstUsesWith(I, ConstantInt::getTrue(I.getType())); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2914 | if (Op0Max.ule(Op1Min)) // A >u B -> false if max(A) <= max(B) |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 2915 | return ReplaceInstUsesWith(I, ConstantInt::getFalse(I.getType())); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2916 | |
| 2917 | if (Op1Max == Op0Min) // A >u B -> A != B if min(A) == max(B) |
| 2918 | return new ICmpInst(ICmpInst::ICMP_NE, Op0, Op1); |
| 2919 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) { |
| 2920 | if (Op1Min == Op0Max-1) // A >u C -> A == C+1 if max(a)-1 == C |
| 2921 | return new ICmpInst(ICmpInst::ICMP_EQ, Op0, |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 2922 | Builder->getInt(CI->getValue()+1)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2923 | |
| 2924 | // (x >u 2147483647) -> (x <s 0) -> true if sign bit set |
| 2925 | if (CI->isMaxValue(true)) |
| 2926 | return new ICmpInst(ICmpInst::ICMP_SLT, Op0, |
| 2927 | Constant::getNullValue(Op0->getType())); |
| 2928 | } |
| 2929 | break; |
| 2930 | case ICmpInst::ICMP_SLT: |
| 2931 | if (Op0Max.slt(Op1Min)) // A <s B -> true if max(A) < min(C) |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 2932 | return ReplaceInstUsesWith(I, ConstantInt::getTrue(I.getType())); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2933 | if (Op0Min.sge(Op1Max)) // A <s B -> false if min(A) >= max(C) |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 2934 | return ReplaceInstUsesWith(I, ConstantInt::getFalse(I.getType())); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2935 | if (Op1Min == Op0Max) // A <s B -> A != B if max(A) == min(B) |
| 2936 | return new ICmpInst(ICmpInst::ICMP_NE, Op0, Op1); |
| 2937 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) { |
| 2938 | if (Op1Max == Op0Min+1) // A <s C -> A == C-1 if min(A)+1 == C |
| 2939 | return new ICmpInst(ICmpInst::ICMP_EQ, Op0, |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 2940 | Builder->getInt(CI->getValue()-1)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2941 | } |
| 2942 | break; |
| 2943 | case ICmpInst::ICMP_SGT: |
| 2944 | if (Op0Min.sgt(Op1Max)) // A >s B -> true if min(A) > max(B) |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 2945 | return ReplaceInstUsesWith(I, ConstantInt::getTrue(I.getType())); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2946 | if (Op0Max.sle(Op1Min)) // A >s B -> false if max(A) <= min(B) |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 2947 | return ReplaceInstUsesWith(I, ConstantInt::getFalse(I.getType())); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2948 | |
| 2949 | if (Op1Max == Op0Min) // A >s B -> A != B if min(A) == max(B) |
| 2950 | return new ICmpInst(ICmpInst::ICMP_NE, Op0, Op1); |
| 2951 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) { |
| 2952 | if (Op1Min == Op0Max-1) // A >s C -> A == C+1 if max(A)-1 == C |
| 2953 | return new ICmpInst(ICmpInst::ICMP_EQ, Op0, |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 2954 | Builder->getInt(CI->getValue()+1)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2955 | } |
| 2956 | break; |
| 2957 | case ICmpInst::ICMP_SGE: |
| 2958 | assert(!isa<ConstantInt>(Op1) && "ICMP_SGE with ConstantInt not folded!"); |
| 2959 | if (Op0Min.sge(Op1Max)) // A >=s B -> true if min(A) >= max(B) |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 2960 | return ReplaceInstUsesWith(I, ConstantInt::getTrue(I.getType())); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2961 | if (Op0Max.slt(Op1Min)) // A >=s B -> false if max(A) < min(B) |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 2962 | return ReplaceInstUsesWith(I, ConstantInt::getFalse(I.getType())); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2963 | break; |
| 2964 | case ICmpInst::ICMP_SLE: |
| 2965 | assert(!isa<ConstantInt>(Op1) && "ICMP_SLE with ConstantInt not folded!"); |
| 2966 | if (Op0Max.sle(Op1Min)) // A <=s B -> true if max(A) <= min(B) |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 2967 | return ReplaceInstUsesWith(I, ConstantInt::getTrue(I.getType())); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2968 | if (Op0Min.sgt(Op1Max)) // A <=s B -> false if min(A) > max(B) |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 2969 | return ReplaceInstUsesWith(I, ConstantInt::getFalse(I.getType())); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2970 | break; |
| 2971 | case ICmpInst::ICMP_UGE: |
| 2972 | assert(!isa<ConstantInt>(Op1) && "ICMP_UGE with ConstantInt not folded!"); |
| 2973 | if (Op0Min.uge(Op1Max)) // A >=u B -> true if min(A) >= max(B) |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 2974 | return ReplaceInstUsesWith(I, ConstantInt::getTrue(I.getType())); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2975 | if (Op0Max.ult(Op1Min)) // A >=u B -> false if max(A) < min(B) |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 2976 | return ReplaceInstUsesWith(I, ConstantInt::getFalse(I.getType())); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2977 | break; |
| 2978 | case ICmpInst::ICMP_ULE: |
| 2979 | assert(!isa<ConstantInt>(Op1) && "ICMP_ULE with ConstantInt not folded!"); |
| 2980 | if (Op0Max.ule(Op1Min)) // A <=u B -> true if max(A) <= min(B) |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 2981 | return ReplaceInstUsesWith(I, ConstantInt::getTrue(I.getType())); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2982 | if (Op0Min.ugt(Op1Max)) // A <=u B -> false if min(A) > max(B) |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 2983 | return ReplaceInstUsesWith(I, ConstantInt::getFalse(I.getType())); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 2984 | break; |
| 2985 | } |
| 2986 | |
| 2987 | // Turn a signed comparison into an unsigned one if both operands |
| 2988 | // are known to have the same sign. |
| 2989 | if (I.isSigned() && |
| 2990 | ((Op0KnownZero.isNegative() && Op1KnownZero.isNegative()) || |
| 2991 | (Op0KnownOne.isNegative() && Op1KnownOne.isNegative()))) |
| 2992 | return new ICmpInst(I.getUnsignedPredicate(), Op0, Op1); |
| 2993 | } |
| 2994 | |
| 2995 | // Test if the ICmpInst instruction is used exclusively by a select as |
| 2996 | // part of a minimum or maximum operation. If so, refrain from doing |
| 2997 | // any other folding. This helps out other analyses which understand |
| 2998 | // non-obfuscated minimum and maximum idioms, such as ScalarEvolution |
| 2999 | // and CodeGen. And in this case, at least one of the comparison |
| 3000 | // operands has at least one user besides the compare (the select), |
| 3001 | // which would often largely negate the benefit of folding anyway. |
| 3002 | if (I.hasOneUse()) |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 3003 | if (SelectInst *SI = dyn_cast<SelectInst>(*I.user_begin())) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3004 | if ((SI->getOperand(1) == Op0 && SI->getOperand(2) == Op1) || |
| 3005 | (SI->getOperand(2) == Op0 && SI->getOperand(1) == Op1)) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 3006 | return nullptr; |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3007 | |
| 3008 | // See if we are doing a comparison between a constant and an instruction that |
| 3009 | // can be folded into the comparison. |
| 3010 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) { |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3011 | // Since the RHS is a ConstantInt (CI), if the left hand side is an |
| 3012 | // instruction, see if that instruction also has constants so that the |
| 3013 | // instruction can be folded into the icmp |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3014 | if (Instruction *LHSI = dyn_cast<Instruction>(Op0)) |
| 3015 | if (Instruction *Res = visitICmpInstWithInstAndIntCst(I, LHSI, CI)) |
| 3016 | return Res; |
| 3017 | } |
| 3018 | |
| 3019 | // Handle icmp with constant (but not simple integer constant) RHS |
| 3020 | if (Constant *RHSC = dyn_cast<Constant>(Op1)) { |
| 3021 | if (Instruction *LHSI = dyn_cast<Instruction>(Op0)) |
| 3022 | switch (LHSI->getOpcode()) { |
| 3023 | case Instruction::GetElementPtr: |
| 3024 | // icmp pred GEP (P, int 0, int 0, int 0), null -> icmp pred P, null |
| 3025 | if (RHSC->isNullValue() && |
| 3026 | cast<GetElementPtrInst>(LHSI)->hasAllZeroIndices()) |
| 3027 | return new ICmpInst(I.getPredicate(), LHSI->getOperand(0), |
| 3028 | Constant::getNullValue(LHSI->getOperand(0)->getType())); |
| 3029 | break; |
| 3030 | case Instruction::PHI: |
| 3031 | // Only fold icmp into the PHI if the phi and icmp are in the same |
| 3032 | // block. If in the same block, we're encouraging jump threading. If |
| 3033 | // not, we are just pessimizing the code by making an i1 phi. |
| 3034 | if (LHSI->getParent() == I.getParent()) |
Chris Lattner | ea7131a | 2011-01-16 05:14:26 +0000 | [diff] [blame] | 3035 | if (Instruction *NV = FoldOpIntoPhi(I)) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3036 | return NV; |
| 3037 | break; |
| 3038 | case Instruction::Select: { |
| 3039 | // If either operand of the select is a constant, we can fold the |
| 3040 | // comparison into the select arms, which will cause one to be |
| 3041 | // constant folded and the select turned into a bitwise or. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 3042 | Value *Op1 = nullptr, *Op2 = nullptr; |
Gerolf Hoflehner | ec6217c | 2014-11-21 23:36:44 +0000 | [diff] [blame] | 3043 | ConstantInt *CI = 0; |
| 3044 | if (Constant *C = dyn_cast<Constant>(LHSI->getOperand(1))) { |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3045 | Op1 = ConstantExpr::getICmp(I.getPredicate(), C, RHSC); |
Gerolf Hoflehner | ec6217c | 2014-11-21 23:36:44 +0000 | [diff] [blame] | 3046 | CI = dyn_cast<ConstantInt>(Op1); |
| 3047 | } |
| 3048 | if (Constant *C = dyn_cast<Constant>(LHSI->getOperand(2))) { |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3049 | Op2 = ConstantExpr::getICmp(I.getPredicate(), C, RHSC); |
Gerolf Hoflehner | ec6217c | 2014-11-21 23:36:44 +0000 | [diff] [blame] | 3050 | CI = dyn_cast<ConstantInt>(Op2); |
| 3051 | } |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3052 | |
| 3053 | // We only want to perform this transformation if it will not lead to |
| 3054 | // additional code. This is true if either both sides of the select |
| 3055 | // fold to a constant (in which case the icmp is replaced with a select |
| 3056 | // which will usually simplify) or this is the only user of the |
| 3057 | // select (in which case we are trading a select+icmp for a simpler |
Gerolf Hoflehner | ec6217c | 2014-11-21 23:36:44 +0000 | [diff] [blame] | 3058 | // select+icmp) or all uses of the select can be replaced based on |
| 3059 | // dominance information ("Global cases"). |
| 3060 | bool Transform = false; |
| 3061 | if (Op1 && Op2) |
| 3062 | Transform = true; |
| 3063 | else if (Op1 || Op2) { |
| 3064 | // Local case |
| 3065 | if (LHSI->hasOneUse()) |
| 3066 | Transform = true; |
| 3067 | // Global cases |
| 3068 | else if (CI && !CI->isZero()) |
| 3069 | // When Op1 is constant try replacing select with second operand. |
| 3070 | // Otherwise Op2 is constant and try replacing select with first |
| 3071 | // operand. |
| 3072 | Transform = replacedSelectWithOperand(cast<SelectInst>(LHSI), &I, |
| 3073 | Op1 ? 2 : 1); |
| 3074 | } |
| 3075 | if (Transform) { |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3076 | if (!Op1) |
| 3077 | Op1 = Builder->CreateICmp(I.getPredicate(), LHSI->getOperand(1), |
| 3078 | RHSC, I.getName()); |
| 3079 | if (!Op2) |
| 3080 | Op2 = Builder->CreateICmp(I.getPredicate(), LHSI->getOperand(2), |
| 3081 | RHSC, I.getName()); |
| 3082 | return SelectInst::Create(LHSI->getOperand(0), Op1, Op2); |
| 3083 | } |
| 3084 | break; |
| 3085 | } |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3086 | case Instruction::IntToPtr: |
| 3087 | // icmp pred inttoptr(X), null -> icmp pred X, 0 |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 3088 | if (RHSC->isNullValue() && |
| 3089 | DL.getIntPtrType(RHSC->getType()) == LHSI->getOperand(0)->getType()) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3090 | return new ICmpInst(I.getPredicate(), LHSI->getOperand(0), |
| 3091 | Constant::getNullValue(LHSI->getOperand(0)->getType())); |
| 3092 | break; |
| 3093 | |
| 3094 | case Instruction::Load: |
| 3095 | // Try to optimize things like "A[i] > 4" to index computations. |
| 3096 | if (GetElementPtrInst *GEP = |
| 3097 | dyn_cast<GetElementPtrInst>(LHSI->getOperand(0))) { |
| 3098 | if (GlobalVariable *GV = dyn_cast<GlobalVariable>(GEP->getOperand(0))) |
| 3099 | if (GV->isConstant() && GV->hasDefinitiveInitializer() && |
| 3100 | !cast<LoadInst>(LHSI)->isVolatile()) |
| 3101 | if (Instruction *Res = FoldCmpLoadFromIndexedGlobal(GEP, GV, I)) |
| 3102 | return Res; |
| 3103 | } |
| 3104 | break; |
| 3105 | } |
| 3106 | } |
| 3107 | |
| 3108 | // If we can optimize a 'icmp GEP, P' or 'icmp P, GEP', do so now. |
| 3109 | if (GEPOperator *GEP = dyn_cast<GEPOperator>(Op0)) |
| 3110 | if (Instruction *NI = FoldGEPICmp(GEP, Op1, I.getPredicate(), I)) |
| 3111 | return NI; |
| 3112 | if (GEPOperator *GEP = dyn_cast<GEPOperator>(Op1)) |
| 3113 | if (Instruction *NI = FoldGEPICmp(GEP, Op0, |
| 3114 | ICmpInst::getSwappedPredicate(I.getPredicate()), I)) |
| 3115 | return NI; |
| 3116 | |
| 3117 | // Test to see if the operands of the icmp are casted versions of other |
| 3118 | // values. If the ptr->ptr cast can be stripped off both arguments, we do so |
| 3119 | // now. |
| 3120 | if (BitCastInst *CI = dyn_cast<BitCastInst>(Op0)) { |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3121 | if (Op0->getType()->isPointerTy() && |
| 3122 | (isa<Constant>(Op1) || isa<BitCastInst>(Op1))) { |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3123 | // We keep moving the cast from the left operand over to the right |
| 3124 | // operand, where it can often be eliminated completely. |
| 3125 | Op0 = CI->getOperand(0); |
| 3126 | |
| 3127 | // If operand #1 is a bitcast instruction, it must also be a ptr->ptr cast |
| 3128 | // so eliminate it as well. |
| 3129 | if (BitCastInst *CI2 = dyn_cast<BitCastInst>(Op1)) |
| 3130 | Op1 = CI2->getOperand(0); |
| 3131 | |
| 3132 | // If Op1 is a constant, we can fold the cast into the constant. |
| 3133 | if (Op0->getType() != Op1->getType()) { |
| 3134 | if (Constant *Op1C = dyn_cast<Constant>(Op1)) { |
| 3135 | Op1 = ConstantExpr::getBitCast(Op1C, Op0->getType()); |
| 3136 | } else { |
| 3137 | // Otherwise, cast the RHS right before the icmp |
| 3138 | Op1 = Builder->CreateBitCast(Op1, Op0->getType()); |
| 3139 | } |
| 3140 | } |
| 3141 | return new ICmpInst(I.getPredicate(), Op0, Op1); |
| 3142 | } |
| 3143 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3144 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3145 | if (isa<CastInst>(Op0)) { |
| 3146 | // Handle the special case of: icmp (cast bool to X), <cst> |
| 3147 | // This comes up when you have code like |
| 3148 | // int X = A < B; |
| 3149 | // if (X) ... |
| 3150 | // For generality, we handle any zero-extension of any operand comparison |
| 3151 | // with a constant or another cast from the same type. |
| 3152 | if (isa<Constant>(Op1) || isa<CastInst>(Op1)) |
| 3153 | if (Instruction *R = visitICmpInstWithCastAndCast(I)) |
| 3154 | return R; |
| 3155 | } |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3156 | |
Duncan Sands | e522001 | 2011-02-17 07:46:37 +0000 | [diff] [blame] | 3157 | // Special logic for binary operators. |
| 3158 | BinaryOperator *BO0 = dyn_cast<BinaryOperator>(Op0); |
| 3159 | BinaryOperator *BO1 = dyn_cast<BinaryOperator>(Op1); |
| 3160 | if (BO0 || BO1) { |
| 3161 | CmpInst::Predicate Pred = I.getPredicate(); |
| 3162 | bool NoOp0WrapProblem = false, NoOp1WrapProblem = false; |
| 3163 | if (BO0 && isa<OverflowingBinaryOperator>(BO0)) |
| 3164 | NoOp0WrapProblem = ICmpInst::isEquality(Pred) || |
| 3165 | (CmpInst::isUnsigned(Pred) && BO0->hasNoUnsignedWrap()) || |
| 3166 | (CmpInst::isSigned(Pred) && BO0->hasNoSignedWrap()); |
| 3167 | if (BO1 && isa<OverflowingBinaryOperator>(BO1)) |
| 3168 | NoOp1WrapProblem = ICmpInst::isEquality(Pred) || |
| 3169 | (CmpInst::isUnsigned(Pred) && BO1->hasNoUnsignedWrap()) || |
| 3170 | (CmpInst::isSigned(Pred) && BO1->hasNoSignedWrap()); |
| 3171 | |
| 3172 | // Analyze the case when either Op0 or Op1 is an add instruction. |
| 3173 | // Op0 = A + B (or A and B are null); Op1 = C + D (or C and D are null). |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 3174 | Value *A = nullptr, *B = nullptr, *C = nullptr, *D = nullptr; |
Duncan Sands | e522001 | 2011-02-17 07:46:37 +0000 | [diff] [blame] | 3175 | if (BO0 && BO0->getOpcode() == Instruction::Add) |
| 3176 | A = BO0->getOperand(0), B = BO0->getOperand(1); |
| 3177 | if (BO1 && BO1->getOpcode() == Instruction::Add) |
| 3178 | C = BO1->getOperand(0), D = BO1->getOperand(1); |
| 3179 | |
David Majnemer | 549f4f2 | 2014-11-01 09:09:51 +0000 | [diff] [blame] | 3180 | // icmp (X+cst) < 0 --> X < -cst |
| 3181 | if (NoOp0WrapProblem && ICmpInst::isSigned(Pred) && match(Op1, m_Zero())) |
| 3182 | if (ConstantInt *RHSC = dyn_cast_or_null<ConstantInt>(B)) |
| 3183 | if (!RHSC->isMinValue(/*isSigned=*/true)) |
| 3184 | return new ICmpInst(Pred, A, ConstantExpr::getNeg(RHSC)); |
| 3185 | |
Duncan Sands | e522001 | 2011-02-17 07:46:37 +0000 | [diff] [blame] | 3186 | // icmp (X+Y), X -> icmp Y, 0 for equalities or if there is no overflow. |
| 3187 | if ((A == Op1 || B == Op1) && NoOp0WrapProblem) |
| 3188 | return new ICmpInst(Pred, A == Op1 ? B : A, |
| 3189 | Constant::getNullValue(Op1->getType())); |
| 3190 | |
| 3191 | // icmp X, (X+Y) -> icmp 0, Y for equalities or if there is no overflow. |
| 3192 | if ((C == Op0 || D == Op0) && NoOp1WrapProblem) |
| 3193 | return new ICmpInst(Pred, Constant::getNullValue(Op0->getType()), |
| 3194 | C == Op0 ? D : C); |
| 3195 | |
Duncan Sands | 84653b3 | 2011-02-18 16:25:37 +0000 | [diff] [blame] | 3196 | // icmp (X+Y), (X+Z) -> icmp Y, Z for equalities or if there is no overflow. |
Duncan Sands | e522001 | 2011-02-17 07:46:37 +0000 | [diff] [blame] | 3197 | if (A && C && (A == C || A == D || B == C || B == D) && |
| 3198 | NoOp0WrapProblem && NoOp1WrapProblem && |
| 3199 | // Try not to increase register pressure. |
| 3200 | BO0->hasOneUse() && BO1->hasOneUse()) { |
| 3201 | // Determine Y and Z in the form icmp (X+Y), (X+Z). |
Duncan Sands | 1d3acdd | 2012-11-16 18:55:49 +0000 | [diff] [blame] | 3202 | Value *Y, *Z; |
| 3203 | if (A == C) { |
Duncan Sands | d7d8c09 | 2012-11-16 20:53:08 +0000 | [diff] [blame] | 3204 | // C + B == C + D -> B == D |
Duncan Sands | 1d3acdd | 2012-11-16 18:55:49 +0000 | [diff] [blame] | 3205 | Y = B; |
| 3206 | Z = D; |
| 3207 | } else if (A == D) { |
Duncan Sands | d7d8c09 | 2012-11-16 20:53:08 +0000 | [diff] [blame] | 3208 | // D + B == C + D -> B == C |
Duncan Sands | 1d3acdd | 2012-11-16 18:55:49 +0000 | [diff] [blame] | 3209 | Y = B; |
| 3210 | Z = C; |
| 3211 | } else if (B == C) { |
Duncan Sands | d7d8c09 | 2012-11-16 20:53:08 +0000 | [diff] [blame] | 3212 | // A + C == C + D -> A == D |
Duncan Sands | 1d3acdd | 2012-11-16 18:55:49 +0000 | [diff] [blame] | 3213 | Y = A; |
| 3214 | Z = D; |
Duncan Sands | d7d8c09 | 2012-11-16 20:53:08 +0000 | [diff] [blame] | 3215 | } else { |
| 3216 | assert(B == D); |
| 3217 | // A + D == C + D -> A == C |
Duncan Sands | 1d3acdd | 2012-11-16 18:55:49 +0000 | [diff] [blame] | 3218 | Y = A; |
| 3219 | Z = C; |
| 3220 | } |
Duncan Sands | e522001 | 2011-02-17 07:46:37 +0000 | [diff] [blame] | 3221 | return new ICmpInst(Pred, Y, Z); |
| 3222 | } |
| 3223 | |
David Majnemer | b81cd63 | 2013-04-11 20:05:46 +0000 | [diff] [blame] | 3224 | // icmp slt (X + -1), Y -> icmp sle X, Y |
| 3225 | if (A && NoOp0WrapProblem && Pred == CmpInst::ICMP_SLT && |
| 3226 | match(B, m_AllOnes())) |
| 3227 | return new ICmpInst(CmpInst::ICMP_SLE, A, Op1); |
| 3228 | |
| 3229 | // icmp sge (X + -1), Y -> icmp sgt X, Y |
| 3230 | if (A && NoOp0WrapProblem && Pred == CmpInst::ICMP_SGE && |
| 3231 | match(B, m_AllOnes())) |
| 3232 | return new ICmpInst(CmpInst::ICMP_SGT, A, Op1); |
| 3233 | |
| 3234 | // icmp sle (X + 1), Y -> icmp slt X, Y |
| 3235 | if (A && NoOp0WrapProblem && Pred == CmpInst::ICMP_SLE && |
| 3236 | match(B, m_One())) |
| 3237 | return new ICmpInst(CmpInst::ICMP_SLT, A, Op1); |
| 3238 | |
| 3239 | // icmp sgt (X + 1), Y -> icmp sge X, Y |
| 3240 | if (A && NoOp0WrapProblem && Pred == CmpInst::ICMP_SGT && |
| 3241 | match(B, m_One())) |
| 3242 | return new ICmpInst(CmpInst::ICMP_SGE, A, Op1); |
| 3243 | |
| 3244 | // if C1 has greater magnitude than C2: |
| 3245 | // icmp (X + C1), (Y + C2) -> icmp (X + C3), Y |
| 3246 | // s.t. C3 = C1 - C2 |
| 3247 | // |
| 3248 | // if C2 has greater magnitude than C1: |
| 3249 | // icmp (X + C1), (Y + C2) -> icmp X, (Y + C3) |
| 3250 | // s.t. C3 = C2 - C1 |
| 3251 | if (A && C && NoOp0WrapProblem && NoOp1WrapProblem && |
| 3252 | (BO0->hasOneUse() || BO1->hasOneUse()) && !I.isUnsigned()) |
| 3253 | if (ConstantInt *C1 = dyn_cast<ConstantInt>(B)) |
| 3254 | if (ConstantInt *C2 = dyn_cast<ConstantInt>(D)) { |
| 3255 | const APInt &AP1 = C1->getValue(); |
| 3256 | const APInt &AP2 = C2->getValue(); |
| 3257 | if (AP1.isNegative() == AP2.isNegative()) { |
| 3258 | APInt AP1Abs = C1->getValue().abs(); |
| 3259 | APInt AP2Abs = C2->getValue().abs(); |
| 3260 | if (AP1Abs.uge(AP2Abs)) { |
| 3261 | ConstantInt *C3 = Builder->getInt(AP1 - AP2); |
| 3262 | Value *NewAdd = Builder->CreateNSWAdd(A, C3); |
| 3263 | return new ICmpInst(Pred, NewAdd, C); |
| 3264 | } else { |
| 3265 | ConstantInt *C3 = Builder->getInt(AP2 - AP1); |
| 3266 | Value *NewAdd = Builder->CreateNSWAdd(C, C3); |
| 3267 | return new ICmpInst(Pred, A, NewAdd); |
| 3268 | } |
| 3269 | } |
| 3270 | } |
| 3271 | |
| 3272 | |
Duncan Sands | e522001 | 2011-02-17 07:46:37 +0000 | [diff] [blame] | 3273 | // Analyze the case when either Op0 or Op1 is a sub instruction. |
| 3274 | // Op0 = A - B (or A and B are null); Op1 = C - D (or C and D are null). |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 3275 | A = nullptr; B = nullptr; C = nullptr; D = nullptr; |
Duncan Sands | e522001 | 2011-02-17 07:46:37 +0000 | [diff] [blame] | 3276 | if (BO0 && BO0->getOpcode() == Instruction::Sub) |
| 3277 | A = BO0->getOperand(0), B = BO0->getOperand(1); |
| 3278 | if (BO1 && BO1->getOpcode() == Instruction::Sub) |
| 3279 | C = BO1->getOperand(0), D = BO1->getOperand(1); |
| 3280 | |
Duncan Sands | 84653b3 | 2011-02-18 16:25:37 +0000 | [diff] [blame] | 3281 | // icmp (X-Y), X -> icmp 0, Y for equalities or if there is no overflow. |
| 3282 | if (A == Op1 && NoOp0WrapProblem) |
| 3283 | return new ICmpInst(Pred, Constant::getNullValue(Op1->getType()), B); |
| 3284 | |
| 3285 | // icmp X, (X-Y) -> icmp Y, 0 for equalities or if there is no overflow. |
| 3286 | if (C == Op0 && NoOp1WrapProblem) |
| 3287 | return new ICmpInst(Pred, D, Constant::getNullValue(Op0->getType())); |
| 3288 | |
| 3289 | // icmp (Y-X), (Z-X) -> icmp Y, Z for equalities or if there is no overflow. |
Duncan Sands | e522001 | 2011-02-17 07:46:37 +0000 | [diff] [blame] | 3290 | if (B && D && B == D && NoOp0WrapProblem && NoOp1WrapProblem && |
| 3291 | // Try not to increase register pressure. |
| 3292 | BO0->hasOneUse() && BO1->hasOneUse()) |
| 3293 | return new ICmpInst(Pred, A, C); |
| 3294 | |
Duncan Sands | 84653b3 | 2011-02-18 16:25:37 +0000 | [diff] [blame] | 3295 | // icmp (X-Y), (X-Z) -> icmp Z, Y for equalities or if there is no overflow. |
| 3296 | if (A && C && A == C && NoOp0WrapProblem && NoOp1WrapProblem && |
| 3297 | // Try not to increase register pressure. |
| 3298 | BO0->hasOneUse() && BO1->hasOneUse()) |
| 3299 | return new ICmpInst(Pred, D, B); |
| 3300 | |
David Majnemer | 186c942 | 2014-05-15 00:02:20 +0000 | [diff] [blame] | 3301 | // icmp (0-X) < cst --> x > -cst |
| 3302 | if (NoOp0WrapProblem && ICmpInst::isSigned(Pred)) { |
| 3303 | Value *X; |
| 3304 | if (match(BO0, m_Neg(m_Value(X)))) |
| 3305 | if (ConstantInt *RHSC = dyn_cast<ConstantInt>(Op1)) |
| 3306 | if (!RHSC->isMinValue(/*isSigned=*/true)) |
| 3307 | return new ICmpInst(I.getSwappedPredicate(), X, |
| 3308 | ConstantExpr::getNeg(RHSC)); |
| 3309 | } |
| 3310 | |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 3311 | BinaryOperator *SRem = nullptr; |
Nick Lewycky | afc8098 | 2011-03-08 06:29:47 +0000 | [diff] [blame] | 3312 | // icmp (srem X, Y), Y |
Nick Lewycky | 25cc338 | 2011-03-05 04:28:48 +0000 | [diff] [blame] | 3313 | if (BO0 && BO0->getOpcode() == Instruction::SRem && |
| 3314 | Op1 == BO0->getOperand(1)) |
| 3315 | SRem = BO0; |
Nick Lewycky | afc8098 | 2011-03-08 06:29:47 +0000 | [diff] [blame] | 3316 | // icmp Y, (srem X, Y) |
Nick Lewycky | 25cc338 | 2011-03-05 04:28:48 +0000 | [diff] [blame] | 3317 | else if (BO1 && BO1->getOpcode() == Instruction::SRem && |
| 3318 | Op0 == BO1->getOperand(1)) |
| 3319 | SRem = BO1; |
| 3320 | if (SRem) { |
| 3321 | // We don't check hasOneUse to avoid increasing register pressure because |
| 3322 | // the value we use is the same value this instruction was already using. |
| 3323 | switch (SRem == BO0 ? ICmpInst::getSwappedPredicate(Pred) : Pred) { |
| 3324 | default: break; |
| 3325 | case ICmpInst::ICMP_EQ: |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 3326 | return ReplaceInstUsesWith(I, ConstantInt::getFalse(I.getType())); |
Nick Lewycky | 25cc338 | 2011-03-05 04:28:48 +0000 | [diff] [blame] | 3327 | case ICmpInst::ICMP_NE: |
Nick Lewycky | 92db8e8 | 2011-03-06 03:36:19 +0000 | [diff] [blame] | 3328 | return ReplaceInstUsesWith(I, ConstantInt::getTrue(I.getType())); |
Nick Lewycky | 25cc338 | 2011-03-05 04:28:48 +0000 | [diff] [blame] | 3329 | case ICmpInst::ICMP_SGT: |
| 3330 | case ICmpInst::ICMP_SGE: |
| 3331 | return new ICmpInst(ICmpInst::ICMP_SGT, SRem->getOperand(1), |
| 3332 | Constant::getAllOnesValue(SRem->getType())); |
| 3333 | case ICmpInst::ICMP_SLT: |
| 3334 | case ICmpInst::ICMP_SLE: |
| 3335 | return new ICmpInst(ICmpInst::ICMP_SLT, SRem->getOperand(1), |
| 3336 | Constant::getNullValue(SRem->getType())); |
| 3337 | } |
| 3338 | } |
| 3339 | |
Duncan Sands | e522001 | 2011-02-17 07:46:37 +0000 | [diff] [blame] | 3340 | if (BO0 && BO1 && BO0->getOpcode() == BO1->getOpcode() && |
| 3341 | BO0->hasOneUse() && BO1->hasOneUse() && |
| 3342 | BO0->getOperand(1) == BO1->getOperand(1)) { |
| 3343 | switch (BO0->getOpcode()) { |
| 3344 | default: break; |
| 3345 | case Instruction::Add: |
| 3346 | case Instruction::Sub: |
| 3347 | case Instruction::Xor: |
| 3348 | if (I.isEquality()) // a+x icmp eq/ne b+x --> a icmp b |
| 3349 | return new ICmpInst(I.getPredicate(), BO0->getOperand(0), |
| 3350 | BO1->getOperand(0)); |
| 3351 | // icmp u/s (a ^ signbit), (b ^ signbit) --> icmp s/u a, b |
| 3352 | if (ConstantInt *CI = dyn_cast<ConstantInt>(BO0->getOperand(1))) { |
| 3353 | if (CI->getValue().isSignBit()) { |
| 3354 | ICmpInst::Predicate Pred = I.isSigned() |
| 3355 | ? I.getUnsignedPredicate() |
| 3356 | : I.getSignedPredicate(); |
| 3357 | return new ICmpInst(Pred, BO0->getOperand(0), |
| 3358 | BO1->getOperand(0)); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3359 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3360 | |
Chris Lattner | b1a1512 | 2011-07-15 06:08:15 +0000 | [diff] [blame] | 3361 | if (CI->isMaxValue(true)) { |
Duncan Sands | e522001 | 2011-02-17 07:46:37 +0000 | [diff] [blame] | 3362 | ICmpInst::Predicate Pred = I.isSigned() |
| 3363 | ? I.getUnsignedPredicate() |
| 3364 | : I.getSignedPredicate(); |
| 3365 | Pred = I.getSwappedPredicate(Pred); |
| 3366 | return new ICmpInst(Pred, BO0->getOperand(0), |
| 3367 | BO1->getOperand(0)); |
| 3368 | } |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3369 | } |
Duncan Sands | e522001 | 2011-02-17 07:46:37 +0000 | [diff] [blame] | 3370 | break; |
| 3371 | case Instruction::Mul: |
| 3372 | if (!I.isEquality()) |
| 3373 | break; |
| 3374 | |
| 3375 | if (ConstantInt *CI = dyn_cast<ConstantInt>(BO0->getOperand(1))) { |
| 3376 | // a * Cst icmp eq/ne b * Cst --> a & Mask icmp b & Mask |
| 3377 | // Mask = -1 >> count-trailing-zeros(Cst). |
| 3378 | if (!CI->isZero() && !CI->isOne()) { |
| 3379 | const APInt &AP = CI->getValue(); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3380 | ConstantInt *Mask = ConstantInt::get(I.getContext(), |
Duncan Sands | e522001 | 2011-02-17 07:46:37 +0000 | [diff] [blame] | 3381 | APInt::getLowBitsSet(AP.getBitWidth(), |
| 3382 | AP.getBitWidth() - |
| 3383 | AP.countTrailingZeros())); |
| 3384 | Value *And1 = Builder->CreateAnd(BO0->getOperand(0), Mask); |
| 3385 | Value *And2 = Builder->CreateAnd(BO1->getOperand(0), Mask); |
| 3386 | return new ICmpInst(I.getPredicate(), And1, And2); |
| 3387 | } |
| 3388 | } |
| 3389 | break; |
Nick Lewycky | 9719a71 | 2011-03-05 05:19:11 +0000 | [diff] [blame] | 3390 | case Instruction::UDiv: |
| 3391 | case Instruction::LShr: |
| 3392 | if (I.isSigned()) |
| 3393 | break; |
| 3394 | // fall-through |
| 3395 | case Instruction::SDiv: |
| 3396 | case Instruction::AShr: |
Eli Friedman | 8a20e66 | 2011-05-05 21:59:18 +0000 | [diff] [blame] | 3397 | if (!BO0->isExact() || !BO1->isExact()) |
Nick Lewycky | 9719a71 | 2011-03-05 05:19:11 +0000 | [diff] [blame] | 3398 | break; |
| 3399 | return new ICmpInst(I.getPredicate(), BO0->getOperand(0), |
| 3400 | BO1->getOperand(0)); |
| 3401 | case Instruction::Shl: { |
| 3402 | bool NUW = BO0->hasNoUnsignedWrap() && BO1->hasNoUnsignedWrap(); |
| 3403 | bool NSW = BO0->hasNoSignedWrap() && BO1->hasNoSignedWrap(); |
| 3404 | if (!NUW && !NSW) |
| 3405 | break; |
| 3406 | if (!NSW && I.isSigned()) |
| 3407 | break; |
| 3408 | return new ICmpInst(I.getPredicate(), BO0->getOperand(0), |
| 3409 | BO1->getOperand(0)); |
| 3410 | } |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3411 | } |
| 3412 | } |
| 3413 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3414 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3415 | { Value *A, *B; |
David Majnemer | 1a08acc | 2013-04-12 17:25:07 +0000 | [diff] [blame] | 3416 | // Transform (A & ~B) == 0 --> (A & B) != 0 |
| 3417 | // and (A & ~B) != 0 --> (A & B) == 0 |
| 3418 | // if A is a power of 2. |
| 3419 | if (match(Op0, m_And(m_Value(A), m_Not(m_Value(B)))) && |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3420 | match(Op1, m_Zero()) && |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 3421 | isKnownToBeAPowerOfTwo(A, DL, false, 0, AC, &I, DT) && I.isEquality()) |
David Majnemer | 1a08acc | 2013-04-12 17:25:07 +0000 | [diff] [blame] | 3422 | return new ICmpInst(I.getInversePredicate(), |
| 3423 | Builder->CreateAnd(A, B), |
| 3424 | Op1); |
| 3425 | |
Chris Lattner | f3c4eef | 2011-01-15 05:41:33 +0000 | [diff] [blame] | 3426 | // ~x < ~y --> y < x |
| 3427 | // ~x < cst --> ~cst < x |
| 3428 | if (match(Op0, m_Not(m_Value(A)))) { |
| 3429 | if (match(Op1, m_Not(m_Value(B)))) |
| 3430 | return new ICmpInst(I.getPredicate(), B, A); |
Chris Lattner | 497459d | 2011-01-15 05:42:47 +0000 | [diff] [blame] | 3431 | if (ConstantInt *RHSC = dyn_cast<ConstantInt>(Op1)) |
Chris Lattner | f3c4eef | 2011-01-15 05:41:33 +0000 | [diff] [blame] | 3432 | return new ICmpInst(I.getPredicate(), ConstantExpr::getNot(RHSC), A); |
| 3433 | } |
Chris Lattner | 5e0c0c7 | 2010-12-19 19:37:52 +0000 | [diff] [blame] | 3434 | |
| 3435 | // (a+b) <u a --> llvm.uadd.with.overflow. |
| 3436 | // (a+b) <u b --> llvm.uadd.with.overflow. |
| 3437 | if (I.getPredicate() == ICmpInst::ICMP_ULT && |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3438 | match(Op0, m_Add(m_Value(A), m_Value(B))) && |
Chris Lattner | 5e0c0c7 | 2010-12-19 19:37:52 +0000 | [diff] [blame] | 3439 | (Op1 == A || Op1 == B)) |
| 3440 | if (Instruction *R = ProcessUAddIdiom(I, Op0, *this)) |
| 3441 | return R; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3442 | |
Chris Lattner | 5e0c0c7 | 2010-12-19 19:37:52 +0000 | [diff] [blame] | 3443 | // a >u (a+b) --> llvm.uadd.with.overflow. |
| 3444 | // b >u (a+b) --> llvm.uadd.with.overflow. |
| 3445 | if (I.getPredicate() == ICmpInst::ICMP_UGT && |
| 3446 | match(Op1, m_Add(m_Value(A), m_Value(B))) && |
| 3447 | (Op0 == A || Op0 == B)) |
| 3448 | if (Instruction *R = ProcessUAddIdiom(I, Op1, *this)) |
| 3449 | return R; |
Serge Pavlov | 4bb54d5 | 2014-04-13 18:23:41 +0000 | [diff] [blame] | 3450 | |
| 3451 | // (zext a) * (zext b) --> llvm.umul.with.overflow. |
| 3452 | if (match(Op0, m_Mul(m_ZExt(m_Value(A)), m_ZExt(m_Value(B))))) { |
| 3453 | if (Instruction *R = ProcessUMulZExtIdiom(I, Op0, Op1, *this)) |
| 3454 | return R; |
| 3455 | } |
| 3456 | if (match(Op1, m_Mul(m_ZExt(m_Value(A)), m_ZExt(m_Value(B))))) { |
| 3457 | if (Instruction *R = ProcessUMulZExtIdiom(I, Op1, Op0, *this)) |
| 3458 | return R; |
| 3459 | } |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3460 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3461 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3462 | if (I.isEquality()) { |
| 3463 | Value *A, *B, *C, *D; |
Duncan Sands | 84653b3 | 2011-02-18 16:25:37 +0000 | [diff] [blame] | 3464 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3465 | if (match(Op0, m_Xor(m_Value(A), m_Value(B)))) { |
| 3466 | if (A == Op1 || B == Op1) { // (A^B) == A -> B == 0 |
| 3467 | Value *OtherVal = A == Op1 ? B : A; |
| 3468 | return new ICmpInst(I.getPredicate(), OtherVal, |
| 3469 | Constant::getNullValue(A->getType())); |
| 3470 | } |
| 3471 | |
| 3472 | if (match(Op1, m_Xor(m_Value(C), m_Value(D)))) { |
| 3473 | // A^c1 == C^c2 --> A == C^(c1^c2) |
| 3474 | ConstantInt *C1, *C2; |
| 3475 | if (match(B, m_ConstantInt(C1)) && |
| 3476 | match(D, m_ConstantInt(C2)) && Op1->hasOneUse()) { |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 3477 | Constant *NC = Builder->getInt(C1->getValue() ^ C2->getValue()); |
Benjamin Kramer | 547b6c5 | 2011-09-27 20:39:19 +0000 | [diff] [blame] | 3478 | Value *Xor = Builder->CreateXor(C, NC); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3479 | return new ICmpInst(I.getPredicate(), A, Xor); |
| 3480 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3481 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3482 | // A^B == A^D -> B == D |
| 3483 | if (A == C) return new ICmpInst(I.getPredicate(), B, D); |
| 3484 | if (A == D) return new ICmpInst(I.getPredicate(), B, C); |
| 3485 | if (B == C) return new ICmpInst(I.getPredicate(), A, D); |
| 3486 | if (B == D) return new ICmpInst(I.getPredicate(), A, C); |
| 3487 | } |
| 3488 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3489 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3490 | if (match(Op1, m_Xor(m_Value(A), m_Value(B))) && |
| 3491 | (A == Op0 || B == Op0)) { |
| 3492 | // A == (A^B) -> B == 0 |
| 3493 | Value *OtherVal = A == Op0 ? B : A; |
| 3494 | return new ICmpInst(I.getPredicate(), OtherVal, |
| 3495 | Constant::getNullValue(A->getType())); |
| 3496 | } |
| 3497 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3498 | // (X&Z) == (Y&Z) -> (X^Y) & Z == 0 |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3499 | if (match(Op0, m_OneUse(m_And(m_Value(A), m_Value(B)))) && |
Chris Lattner | 31b106d | 2011-04-26 20:02:45 +0000 | [diff] [blame] | 3500 | match(Op1, m_OneUse(m_And(m_Value(C), m_Value(D))))) { |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 3501 | Value *X = nullptr, *Y = nullptr, *Z = nullptr; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3502 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3503 | if (A == C) { |
| 3504 | X = B; Y = D; Z = A; |
| 3505 | } else if (A == D) { |
| 3506 | X = B; Y = C; Z = A; |
| 3507 | } else if (B == C) { |
| 3508 | X = A; Y = D; Z = B; |
| 3509 | } else if (B == D) { |
| 3510 | X = A; Y = C; Z = B; |
| 3511 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3512 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3513 | if (X) { // Build (X^Y) & Z |
Benjamin Kramer | 547b6c5 | 2011-09-27 20:39:19 +0000 | [diff] [blame] | 3514 | Op1 = Builder->CreateXor(X, Y); |
| 3515 | Op1 = Builder->CreateAnd(Op1, Z); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3516 | I.setOperand(0, Op1); |
| 3517 | I.setOperand(1, Constant::getNullValue(Op1->getType())); |
| 3518 | return &I; |
| 3519 | } |
| 3520 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3521 | |
Benjamin Kramer | 8b8a769 | 2012-06-10 20:35:00 +0000 | [diff] [blame] | 3522 | // Transform (zext A) == (B & (1<<X)-1) --> A == (trunc B) |
Benjamin Kramer | 2150145 | 2012-06-11 08:01:25 +0000 | [diff] [blame] | 3523 | // and (B & (1<<X)-1) == (zext A) --> A == (trunc B) |
Benjamin Kramer | 8b8a769 | 2012-06-10 20:35:00 +0000 | [diff] [blame] | 3524 | ConstantInt *Cst1; |
Benjamin Kramer | 2150145 | 2012-06-11 08:01:25 +0000 | [diff] [blame] | 3525 | if ((Op0->hasOneUse() && |
| 3526 | match(Op0, m_ZExt(m_Value(A))) && |
| 3527 | match(Op1, m_And(m_Value(B), m_ConstantInt(Cst1)))) || |
| 3528 | (Op1->hasOneUse() && |
| 3529 | match(Op0, m_And(m_Value(B), m_ConstantInt(Cst1))) && |
| 3530 | match(Op1, m_ZExt(m_Value(A))))) { |
Benjamin Kramer | 8b8a769 | 2012-06-10 20:35:00 +0000 | [diff] [blame] | 3531 | APInt Pow2 = Cst1->getValue() + 1; |
| 3532 | if (Pow2.isPowerOf2() && isa<IntegerType>(A->getType()) && |
| 3533 | Pow2.logBase2() == cast<IntegerType>(A->getType())->getBitWidth()) |
| 3534 | return new ICmpInst(I.getPredicate(), A, |
| 3535 | Builder->CreateTrunc(B, A->getType())); |
| 3536 | } |
| 3537 | |
Benjamin Kramer | 03f3e24 | 2013-11-16 16:00:48 +0000 | [diff] [blame] | 3538 | // (A >> C) == (B >> C) --> (A^B) u< (1 << C) |
| 3539 | // For lshr and ashr pairs. |
| 3540 | if ((match(Op0, m_OneUse(m_LShr(m_Value(A), m_ConstantInt(Cst1)))) && |
| 3541 | match(Op1, m_OneUse(m_LShr(m_Value(B), m_Specific(Cst1))))) || |
| 3542 | (match(Op0, m_OneUse(m_AShr(m_Value(A), m_ConstantInt(Cst1)))) && |
| 3543 | match(Op1, m_OneUse(m_AShr(m_Value(B), m_Specific(Cst1)))))) { |
| 3544 | unsigned TypeBits = Cst1->getBitWidth(); |
| 3545 | unsigned ShAmt = (unsigned)Cst1->getLimitedValue(TypeBits); |
| 3546 | if (ShAmt < TypeBits && ShAmt != 0) { |
| 3547 | ICmpInst::Predicate Pred = I.getPredicate() == ICmpInst::ICMP_NE |
| 3548 | ? ICmpInst::ICMP_UGE |
| 3549 | : ICmpInst::ICMP_ULT; |
| 3550 | Value *Xor = Builder->CreateXor(A, B, I.getName() + ".unshifted"); |
| 3551 | APInt CmpVal = APInt::getOneBitSet(TypeBits, ShAmt); |
| 3552 | return new ICmpInst(Pred, Xor, Builder->getInt(CmpVal)); |
| 3553 | } |
| 3554 | } |
| 3555 | |
Benjamin Kramer | 7fa8c43 | 2015-03-26 17:12:06 +0000 | [diff] [blame] | 3556 | // (A << C) == (B << C) --> ((A^B) & (~0U >> C)) == 0 |
| 3557 | if (match(Op0, m_OneUse(m_Shl(m_Value(A), m_ConstantInt(Cst1)))) && |
| 3558 | match(Op1, m_OneUse(m_Shl(m_Value(B), m_Specific(Cst1))))) { |
| 3559 | unsigned TypeBits = Cst1->getBitWidth(); |
| 3560 | unsigned ShAmt = (unsigned)Cst1->getLimitedValue(TypeBits); |
| 3561 | if (ShAmt < TypeBits && ShAmt != 0) { |
| 3562 | Value *Xor = Builder->CreateXor(A, B, I.getName() + ".unshifted"); |
| 3563 | APInt AndVal = APInt::getLowBitsSet(TypeBits, TypeBits - ShAmt); |
| 3564 | Value *And = Builder->CreateAnd(Xor, Builder->getInt(AndVal), |
| 3565 | I.getName() + ".mask"); |
| 3566 | return new ICmpInst(I.getPredicate(), And, |
| 3567 | Constant::getNullValue(Cst1->getType())); |
| 3568 | } |
| 3569 | } |
| 3570 | |
Chris Lattner | 1b06c71 | 2011-04-26 20:18:20 +0000 | [diff] [blame] | 3571 | // Transform "icmp eq (trunc (lshr(X, cst1)), cst" to |
| 3572 | // "icmp (and X, mask), cst" |
| 3573 | uint64_t ShAmt = 0; |
Chris Lattner | 1b06c71 | 2011-04-26 20:18:20 +0000 | [diff] [blame] | 3574 | if (Op0->hasOneUse() && |
| 3575 | match(Op0, m_Trunc(m_OneUse(m_LShr(m_Value(A), |
| 3576 | m_ConstantInt(ShAmt))))) && |
| 3577 | match(Op1, m_ConstantInt(Cst1)) && |
| 3578 | // Only do this when A has multiple uses. This is most important to do |
| 3579 | // when it exposes other optimizations. |
| 3580 | !A->hasOneUse()) { |
| 3581 | unsigned ASize =cast<IntegerType>(A->getType())->getPrimitiveSizeInBits(); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3582 | |
Chris Lattner | 1b06c71 | 2011-04-26 20:18:20 +0000 | [diff] [blame] | 3583 | if (ShAmt < ASize) { |
| 3584 | APInt MaskV = |
| 3585 | APInt::getLowBitsSet(ASize, Op0->getType()->getPrimitiveSizeInBits()); |
| 3586 | MaskV <<= ShAmt; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3587 | |
Chris Lattner | 1b06c71 | 2011-04-26 20:18:20 +0000 | [diff] [blame] | 3588 | APInt CmpV = Cst1->getValue().zext(ASize); |
| 3589 | CmpV <<= ShAmt; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3590 | |
Chris Lattner | 1b06c71 | 2011-04-26 20:18:20 +0000 | [diff] [blame] | 3591 | Value *Mask = Builder->CreateAnd(A, Builder->getInt(MaskV)); |
| 3592 | return new ICmpInst(I.getPredicate(), Mask, Builder->getInt(CmpV)); |
| 3593 | } |
| 3594 | } |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3595 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3596 | |
David Majnemer | c1eca5a | 2014-11-06 23:23:30 +0000 | [diff] [blame] | 3597 | // The 'cmpxchg' instruction returns an aggregate containing the old value and |
| 3598 | // an i1 which indicates whether or not we successfully did the swap. |
| 3599 | // |
| 3600 | // Replace comparisons between the old value and the expected value with the |
| 3601 | // indicator that 'cmpxchg' returns. |
| 3602 | // |
| 3603 | // N.B. This transform is only valid when the 'cmpxchg' is not permitted to |
| 3604 | // spuriously fail. In those cases, the old value may equal the expected |
| 3605 | // value but it is possible for the swap to not occur. |
| 3606 | if (I.getPredicate() == ICmpInst::ICMP_EQ) |
| 3607 | if (auto *EVI = dyn_cast<ExtractValueInst>(Op0)) |
| 3608 | if (auto *ACXI = dyn_cast<AtomicCmpXchgInst>(EVI->getAggregateOperand())) |
| 3609 | if (EVI->getIndices()[0] == 0 && ACXI->getCompareOperand() == Op1 && |
| 3610 | !ACXI->isWeak()) |
| 3611 | return ExtractValueInst::Create(ACXI, 1); |
| 3612 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3613 | { |
| 3614 | Value *X; ConstantInt *Cst; |
| 3615 | // icmp X+Cst, X |
| 3616 | if (match(Op0, m_Add(m_Value(X), m_ConstantInt(Cst))) && Op1 == X) |
Benjamin Kramer | 0e2d162 | 2013-09-20 22:12:42 +0000 | [diff] [blame] | 3617 | return FoldICmpAddOpCst(I, X, Cst, I.getPredicate()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3618 | |
| 3619 | // icmp X, X+Cst |
| 3620 | if (match(Op1, m_Add(m_Value(X), m_ConstantInt(Cst))) && Op0 == X) |
Benjamin Kramer | 0e2d162 | 2013-09-20 22:12:42 +0000 | [diff] [blame] | 3621 | return FoldICmpAddOpCst(I, X, Cst, I.getSwappedPredicate()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3622 | } |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 3623 | return Changed ? &I : nullptr; |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3624 | } |
| 3625 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3626 | /// FoldFCmp_IntToFP_Cst - Fold fcmp ([us]itofp x, cst) if possible. |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3627 | Instruction *InstCombiner::FoldFCmp_IntToFP_Cst(FCmpInst &I, |
| 3628 | Instruction *LHSI, |
| 3629 | Constant *RHSC) { |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 3630 | if (!isa<ConstantFP>(RHSC)) return nullptr; |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3631 | const APFloat &RHS = cast<ConstantFP>(RHSC)->getValueAPF(); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3632 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3633 | // Get the width of the mantissa. We don't want to hack on conversions that |
| 3634 | // might lose information from the integer, e.g. "i64 -> float" |
| 3635 | int MantissaWidth = LHSI->getType()->getFPMantissaWidth(); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 3636 | if (MantissaWidth == -1) return nullptr; // Unknown. |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3637 | |
Matt Arsenault | 55e7312 | 2015-01-06 15:50:59 +0000 | [diff] [blame] | 3638 | IntegerType *IntTy = cast<IntegerType>(LHSI->getOperand(0)->getType()); |
| 3639 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3640 | // Check to see that the input is converted from an integer type that is small |
| 3641 | // enough that preserves all bits. TODO: check here for "known" sign bits. |
| 3642 | // This would allow us to handle (fptosi (x >>s 62) to float) if x is i64 f.e. |
Matt Arsenault | 55e7312 | 2015-01-06 15:50:59 +0000 | [diff] [blame] | 3643 | unsigned InputSize = IntTy->getScalarSizeInBits(); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3644 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3645 | // If this is a uitofp instruction, we need an extra bit to hold the sign. |
| 3646 | bool LHSUnsigned = isa<UIToFPInst>(LHSI); |
| 3647 | if (LHSUnsigned) |
| 3648 | ++InputSize; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3649 | |
Matt Arsenault | 55e7312 | 2015-01-06 15:50:59 +0000 | [diff] [blame] | 3650 | if (I.isEquality()) { |
| 3651 | FCmpInst::Predicate P = I.getPredicate(); |
| 3652 | bool IsExact = false; |
| 3653 | APSInt RHSCvt(IntTy->getBitWidth(), LHSUnsigned); |
| 3654 | RHS.convertToInteger(RHSCvt, APFloat::rmNearestTiesToEven, &IsExact); |
| 3655 | |
| 3656 | // If the floating point constant isn't an integer value, we know if we will |
| 3657 | // ever compare equal / not equal to it. |
| 3658 | if (!IsExact) { |
| 3659 | // TODO: Can never be -0.0 and other non-representable values |
| 3660 | APFloat RHSRoundInt(RHS); |
| 3661 | RHSRoundInt.roundToIntegral(APFloat::rmNearestTiesToEven); |
| 3662 | if (RHS.compare(RHSRoundInt) != APFloat::cmpEqual) { |
| 3663 | if (P == FCmpInst::FCMP_OEQ || P == FCmpInst::FCMP_UEQ) |
| 3664 | return ReplaceInstUsesWith(I, Builder->getFalse()); |
| 3665 | |
| 3666 | assert(P == FCmpInst::FCMP_ONE || P == FCmpInst::FCMP_UNE); |
| 3667 | return ReplaceInstUsesWith(I, Builder->getTrue()); |
| 3668 | } |
| 3669 | } |
| 3670 | |
| 3671 | // TODO: If the constant is exactly representable, is it always OK to do |
| 3672 | // equality compares as integer? |
| 3673 | } |
| 3674 | |
| 3675 | // Comparisons with zero are a special case where we know we won't lose |
| 3676 | // information. |
| 3677 | bool IsCmpZero = RHS.isPosZero(); |
| 3678 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3679 | // If the conversion would lose info, don't hack on this. |
Matt Arsenault | 55e7312 | 2015-01-06 15:50:59 +0000 | [diff] [blame] | 3680 | if ((int)InputSize > MantissaWidth && !IsCmpZero) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 3681 | return nullptr; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3682 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3683 | // Otherwise, we can potentially simplify the comparison. We know that it |
| 3684 | // will always come through as an integer value and we know the constant is |
| 3685 | // not a NAN (it would have been previously simplified). |
| 3686 | assert(!RHS.isNaN() && "NaN comparison not already folded!"); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3687 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3688 | ICmpInst::Predicate Pred; |
| 3689 | switch (I.getPredicate()) { |
| 3690 | default: llvm_unreachable("Unexpected predicate!"); |
| 3691 | case FCmpInst::FCMP_UEQ: |
| 3692 | case FCmpInst::FCMP_OEQ: |
| 3693 | Pred = ICmpInst::ICMP_EQ; |
| 3694 | break; |
| 3695 | case FCmpInst::FCMP_UGT: |
| 3696 | case FCmpInst::FCMP_OGT: |
| 3697 | Pred = LHSUnsigned ? ICmpInst::ICMP_UGT : ICmpInst::ICMP_SGT; |
| 3698 | break; |
| 3699 | case FCmpInst::FCMP_UGE: |
| 3700 | case FCmpInst::FCMP_OGE: |
| 3701 | Pred = LHSUnsigned ? ICmpInst::ICMP_UGE : ICmpInst::ICMP_SGE; |
| 3702 | break; |
| 3703 | case FCmpInst::FCMP_ULT: |
| 3704 | case FCmpInst::FCMP_OLT: |
| 3705 | Pred = LHSUnsigned ? ICmpInst::ICMP_ULT : ICmpInst::ICMP_SLT; |
| 3706 | break; |
| 3707 | case FCmpInst::FCMP_ULE: |
| 3708 | case FCmpInst::FCMP_OLE: |
| 3709 | Pred = LHSUnsigned ? ICmpInst::ICMP_ULE : ICmpInst::ICMP_SLE; |
| 3710 | break; |
| 3711 | case FCmpInst::FCMP_UNE: |
| 3712 | case FCmpInst::FCMP_ONE: |
| 3713 | Pred = ICmpInst::ICMP_NE; |
| 3714 | break; |
| 3715 | case FCmpInst::FCMP_ORD: |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 3716 | return ReplaceInstUsesWith(I, Builder->getTrue()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3717 | case FCmpInst::FCMP_UNO: |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 3718 | return ReplaceInstUsesWith(I, Builder->getFalse()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3719 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3720 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3721 | // Now we know that the APFloat is a normal number, zero or inf. |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3722 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3723 | // See if the FP constant is too large for the integer. For example, |
| 3724 | // comparing an i8 to 300.0. |
| 3725 | unsigned IntWidth = IntTy->getScalarSizeInBits(); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3726 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3727 | if (!LHSUnsigned) { |
| 3728 | // If the RHS value is > SignedMax, fold the comparison. This handles +INF |
| 3729 | // and large values. |
Michael Gottesman | 79b0967 | 2013-06-27 21:58:19 +0000 | [diff] [blame] | 3730 | APFloat SMax(RHS.getSemantics()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3731 | SMax.convertFromAPInt(APInt::getSignedMaxValue(IntWidth), true, |
| 3732 | APFloat::rmNearestTiesToEven); |
| 3733 | if (SMax.compare(RHS) == APFloat::cmpLessThan) { // smax < 13123.0 |
| 3734 | if (Pred == ICmpInst::ICMP_NE || Pred == ICmpInst::ICMP_SLT || |
| 3735 | Pred == ICmpInst::ICMP_SLE) |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 3736 | return ReplaceInstUsesWith(I, Builder->getTrue()); |
| 3737 | return ReplaceInstUsesWith(I, Builder->getFalse()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3738 | } |
| 3739 | } else { |
| 3740 | // If the RHS value is > UnsignedMax, fold the comparison. This handles |
| 3741 | // +INF and large values. |
Michael Gottesman | 79b0967 | 2013-06-27 21:58:19 +0000 | [diff] [blame] | 3742 | APFloat UMax(RHS.getSemantics()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3743 | UMax.convertFromAPInt(APInt::getMaxValue(IntWidth), false, |
| 3744 | APFloat::rmNearestTiesToEven); |
| 3745 | if (UMax.compare(RHS) == APFloat::cmpLessThan) { // umax < 13123.0 |
| 3746 | if (Pred == ICmpInst::ICMP_NE || Pred == ICmpInst::ICMP_ULT || |
| 3747 | Pred == ICmpInst::ICMP_ULE) |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 3748 | return ReplaceInstUsesWith(I, Builder->getTrue()); |
| 3749 | return ReplaceInstUsesWith(I, Builder->getFalse()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3750 | } |
| 3751 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3752 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3753 | if (!LHSUnsigned) { |
| 3754 | // See if the RHS value is < SignedMin. |
Michael Gottesman | 79b0967 | 2013-06-27 21:58:19 +0000 | [diff] [blame] | 3755 | APFloat SMin(RHS.getSemantics()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3756 | SMin.convertFromAPInt(APInt::getSignedMinValue(IntWidth), true, |
| 3757 | APFloat::rmNearestTiesToEven); |
| 3758 | if (SMin.compare(RHS) == APFloat::cmpGreaterThan) { // smin > 12312.0 |
| 3759 | if (Pred == ICmpInst::ICMP_NE || Pred == ICmpInst::ICMP_SGT || |
| 3760 | Pred == ICmpInst::ICMP_SGE) |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 3761 | return ReplaceInstUsesWith(I, Builder->getTrue()); |
| 3762 | return ReplaceInstUsesWith(I, Builder->getFalse()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3763 | } |
Devang Patel | 698452b | 2012-02-13 23:05:18 +0000 | [diff] [blame] | 3764 | } else { |
| 3765 | // See if the RHS value is < UnsignedMin. |
Michael Gottesman | 79b0967 | 2013-06-27 21:58:19 +0000 | [diff] [blame] | 3766 | APFloat SMin(RHS.getSemantics()); |
Devang Patel | 698452b | 2012-02-13 23:05:18 +0000 | [diff] [blame] | 3767 | SMin.convertFromAPInt(APInt::getMinValue(IntWidth), true, |
| 3768 | APFloat::rmNearestTiesToEven); |
| 3769 | if (SMin.compare(RHS) == APFloat::cmpGreaterThan) { // umin > 12312.0 |
| 3770 | if (Pred == ICmpInst::ICMP_NE || Pred == ICmpInst::ICMP_UGT || |
| 3771 | Pred == ICmpInst::ICMP_UGE) |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 3772 | return ReplaceInstUsesWith(I, Builder->getTrue()); |
| 3773 | return ReplaceInstUsesWith(I, Builder->getFalse()); |
Devang Patel | 698452b | 2012-02-13 23:05:18 +0000 | [diff] [blame] | 3774 | } |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3775 | } |
| 3776 | |
| 3777 | // Okay, now we know that the FP constant fits in the range [SMIN, SMAX] or |
| 3778 | // [0, UMAX], but it may still be fractional. See if it is fractional by |
| 3779 | // casting the FP value to the integer value and back, checking for equality. |
| 3780 | // Don't do this for zero, because -0.0 is not fractional. |
| 3781 | Constant *RHSInt = LHSUnsigned |
| 3782 | ? ConstantExpr::getFPToUI(RHSC, IntTy) |
| 3783 | : ConstantExpr::getFPToSI(RHSC, IntTy); |
| 3784 | if (!RHS.isZero()) { |
| 3785 | bool Equal = LHSUnsigned |
| 3786 | ? ConstantExpr::getUIToFP(RHSInt, RHSC->getType()) == RHSC |
| 3787 | : ConstantExpr::getSIToFP(RHSInt, RHSC->getType()) == RHSC; |
| 3788 | if (!Equal) { |
| 3789 | // If we had a comparison against a fractional value, we have to adjust |
| 3790 | // the compare predicate and sometimes the value. RHSC is rounded towards |
| 3791 | // zero at this point. |
| 3792 | switch (Pred) { |
| 3793 | default: llvm_unreachable("Unexpected integer comparison!"); |
| 3794 | case ICmpInst::ICMP_NE: // (float)int != 4.4 --> true |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 3795 | return ReplaceInstUsesWith(I, Builder->getTrue()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3796 | case ICmpInst::ICMP_EQ: // (float)int == 4.4 --> false |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 3797 | return ReplaceInstUsesWith(I, Builder->getFalse()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3798 | case ICmpInst::ICMP_ULE: |
| 3799 | // (float)int <= 4.4 --> int <= 4 |
| 3800 | // (float)int <= -4.4 --> false |
| 3801 | if (RHS.isNegative()) |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 3802 | return ReplaceInstUsesWith(I, Builder->getFalse()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3803 | break; |
| 3804 | case ICmpInst::ICMP_SLE: |
| 3805 | // (float)int <= 4.4 --> int <= 4 |
| 3806 | // (float)int <= -4.4 --> int < -4 |
| 3807 | if (RHS.isNegative()) |
| 3808 | Pred = ICmpInst::ICMP_SLT; |
| 3809 | break; |
| 3810 | case ICmpInst::ICMP_ULT: |
| 3811 | // (float)int < -4.4 --> false |
| 3812 | // (float)int < 4.4 --> int <= 4 |
| 3813 | if (RHS.isNegative()) |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 3814 | return ReplaceInstUsesWith(I, Builder->getFalse()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3815 | Pred = ICmpInst::ICMP_ULE; |
| 3816 | break; |
| 3817 | case ICmpInst::ICMP_SLT: |
| 3818 | // (float)int < -4.4 --> int < -4 |
| 3819 | // (float)int < 4.4 --> int <= 4 |
| 3820 | if (!RHS.isNegative()) |
| 3821 | Pred = ICmpInst::ICMP_SLE; |
| 3822 | break; |
| 3823 | case ICmpInst::ICMP_UGT: |
| 3824 | // (float)int > 4.4 --> int > 4 |
| 3825 | // (float)int > -4.4 --> true |
| 3826 | if (RHS.isNegative()) |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 3827 | return ReplaceInstUsesWith(I, Builder->getTrue()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3828 | break; |
| 3829 | case ICmpInst::ICMP_SGT: |
| 3830 | // (float)int > 4.4 --> int > 4 |
| 3831 | // (float)int > -4.4 --> int >= -4 |
| 3832 | if (RHS.isNegative()) |
| 3833 | Pred = ICmpInst::ICMP_SGE; |
| 3834 | break; |
| 3835 | case ICmpInst::ICMP_UGE: |
| 3836 | // (float)int >= -4.4 --> true |
| 3837 | // (float)int >= 4.4 --> int > 4 |
Bob Wilson | 61f3ad5 | 2012-08-07 22:35:16 +0000 | [diff] [blame] | 3838 | if (RHS.isNegative()) |
Jakub Staszak | bddea11 | 2013-06-06 20:18:46 +0000 | [diff] [blame] | 3839 | return ReplaceInstUsesWith(I, Builder->getTrue()); |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3840 | Pred = ICmpInst::ICMP_UGT; |
| 3841 | break; |
| 3842 | case ICmpInst::ICMP_SGE: |
| 3843 | // (float)int >= -4.4 --> int >= -4 |
| 3844 | // (float)int >= 4.4 --> int > 4 |
| 3845 | if (!RHS.isNegative()) |
| 3846 | Pred = ICmpInst::ICMP_SGT; |
| 3847 | break; |
| 3848 | } |
| 3849 | } |
| 3850 | } |
| 3851 | |
| 3852 | // Lower this FP comparison into an appropriate integer version of the |
| 3853 | // comparison. |
| 3854 | return new ICmpInst(Pred, LHSI->getOperand(0), RHSInt); |
| 3855 | } |
| 3856 | |
| 3857 | Instruction *InstCombiner::visitFCmpInst(FCmpInst &I) { |
| 3858 | bool Changed = false; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3859 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3860 | /// Orders the operands of the compare so that they are listed from most |
| 3861 | /// complex to least complex. This puts constants before unary operators, |
| 3862 | /// before binary operators. |
| 3863 | if (getComplexity(I.getOperand(0)) < getComplexity(I.getOperand(1))) { |
| 3864 | I.swapOperands(); |
| 3865 | Changed = true; |
| 3866 | } |
| 3867 | |
| 3868 | Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1); |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3869 | |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3870 | if (Value *V = SimplifyFCmpInst(I.getPredicate(), Op0, Op1, DL, TLI, DT, AC)) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3871 | return ReplaceInstUsesWith(I, V); |
| 3872 | |
| 3873 | // Simplify 'fcmp pred X, X' |
| 3874 | if (Op0 == Op1) { |
| 3875 | switch (I.getPredicate()) { |
| 3876 | default: llvm_unreachable("Unknown predicate!"); |
| 3877 | case FCmpInst::FCMP_UNO: // True if unordered: isnan(X) | isnan(Y) |
| 3878 | case FCmpInst::FCMP_ULT: // True if unordered or less than |
| 3879 | case FCmpInst::FCMP_UGT: // True if unordered or greater than |
| 3880 | case FCmpInst::FCMP_UNE: // True if unordered or not equal |
| 3881 | // Canonicalize these to be 'fcmp uno %X, 0.0'. |
| 3882 | I.setPredicate(FCmpInst::FCMP_UNO); |
| 3883 | I.setOperand(1, Constant::getNullValue(Op0->getType())); |
| 3884 | return &I; |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3885 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3886 | case FCmpInst::FCMP_ORD: // True if ordered (no nans) |
| 3887 | case FCmpInst::FCMP_OEQ: // True if ordered and equal |
| 3888 | case FCmpInst::FCMP_OGE: // True if ordered and greater than or equal |
| 3889 | case FCmpInst::FCMP_OLE: // True if ordered and less than or equal |
| 3890 | // Canonicalize these to be 'fcmp ord %X, 0.0'. |
| 3891 | I.setPredicate(FCmpInst::FCMP_ORD); |
| 3892 | I.setOperand(1, Constant::getNullValue(Op0->getType())); |
| 3893 | return &I; |
| 3894 | } |
| 3895 | } |
Jim Grosbach | 129c52a | 2011-09-30 18:09:53 +0000 | [diff] [blame] | 3896 | |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3897 | // Handle fcmp with constant RHS |
| 3898 | if (Constant *RHSC = dyn_cast<Constant>(Op1)) { |
| 3899 | if (Instruction *LHSI = dyn_cast<Instruction>(Op0)) |
| 3900 | switch (LHSI->getOpcode()) { |
Benjamin Kramer | cbb18e9 | 2011-03-31 10:12:07 +0000 | [diff] [blame] | 3901 | case Instruction::FPExt: { |
| 3902 | // fcmp (fpext x), C -> fcmp x, (fptrunc C) if fptrunc is lossless |
| 3903 | FPExtInst *LHSExt = cast<FPExtInst>(LHSI); |
| 3904 | ConstantFP *RHSF = dyn_cast<ConstantFP>(RHSC); |
| 3905 | if (!RHSF) |
| 3906 | break; |
| 3907 | |
| 3908 | const fltSemantics *Sem; |
| 3909 | // FIXME: This shouldn't be here. |
Dan Gohman | 518cda4 | 2011-12-17 00:04:22 +0000 | [diff] [blame] | 3910 | if (LHSExt->getSrcTy()->isHalfTy()) |
| 3911 | Sem = &APFloat::IEEEhalf; |
| 3912 | else if (LHSExt->getSrcTy()->isFloatTy()) |
Benjamin Kramer | cbb18e9 | 2011-03-31 10:12:07 +0000 | [diff] [blame] | 3913 | Sem = &APFloat::IEEEsingle; |
| 3914 | else if (LHSExt->getSrcTy()->isDoubleTy()) |
| 3915 | Sem = &APFloat::IEEEdouble; |
| 3916 | else if (LHSExt->getSrcTy()->isFP128Ty()) |
| 3917 | Sem = &APFloat::IEEEquad; |
| 3918 | else if (LHSExt->getSrcTy()->isX86_FP80Ty()) |
| 3919 | Sem = &APFloat::x87DoubleExtended; |
Ulrich Weigand | 6a9bb51 | 2012-10-30 12:33:18 +0000 | [diff] [blame] | 3920 | else if (LHSExt->getSrcTy()->isPPC_FP128Ty()) |
| 3921 | Sem = &APFloat::PPCDoubleDouble; |
Benjamin Kramer | cbb18e9 | 2011-03-31 10:12:07 +0000 | [diff] [blame] | 3922 | else |
| 3923 | break; |
| 3924 | |
| 3925 | bool Lossy; |
| 3926 | APFloat F = RHSF->getValueAPF(); |
| 3927 | F.convert(*Sem, APFloat::rmNearestTiesToEven, &Lossy); |
| 3928 | |
Jim Grosbach | 24ff834 | 2011-09-30 18:45:50 +0000 | [diff] [blame] | 3929 | // Avoid lossy conversions and denormals. Zero is a special case |
| 3930 | // that's OK to convert. |
Jim Grosbach | 011dafb | 2011-09-30 19:58:46 +0000 | [diff] [blame] | 3931 | APFloat Fabs = F; |
| 3932 | Fabs.clearSign(); |
Benjamin Kramer | cbb18e9 | 2011-03-31 10:12:07 +0000 | [diff] [blame] | 3933 | if (!Lossy && |
Jim Grosbach | 011dafb | 2011-09-30 19:58:46 +0000 | [diff] [blame] | 3934 | ((Fabs.compare(APFloat::getSmallestNormalized(*Sem)) != |
| 3935 | APFloat::cmpLessThan) || Fabs.isZero())) |
Jim Grosbach | 24ff834 | 2011-09-30 18:45:50 +0000 | [diff] [blame] | 3936 | |
Benjamin Kramer | cbb18e9 | 2011-03-31 10:12:07 +0000 | [diff] [blame] | 3937 | return new FCmpInst(I.getPredicate(), LHSExt->getOperand(0), |
| 3938 | ConstantFP::get(RHSC->getContext(), F)); |
| 3939 | break; |
| 3940 | } |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3941 | case Instruction::PHI: |
| 3942 | // Only fold fcmp into the PHI if the phi and fcmp are in the same |
| 3943 | // block. If in the same block, we're encouraging jump threading. If |
| 3944 | // not, we are just pessimizing the code by making an i1 phi. |
| 3945 | if (LHSI->getParent() == I.getParent()) |
Chris Lattner | ea7131a | 2011-01-16 05:14:26 +0000 | [diff] [blame] | 3946 | if (Instruction *NV = FoldOpIntoPhi(I)) |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 3947 | return NV; |
| 3948 | break; |
| 3949 | case Instruction::SIToFP: |
| 3950 | case Instruction::UIToFP: |
| 3951 | if (Instruction *NV = FoldFCmp_IntToFP_Cst(I, LHSI, RHSC)) |
| 3952 | return NV; |
| 3953 | break; |
Benjamin Kramer | a8c5d08 | 2011-03-31 10:12:15 +0000 | [diff] [blame] | 3954 | case Instruction::FSub: { |
| 3955 | // fcmp pred (fneg x), C -> fcmp swap(pred) x, -C |
| 3956 | Value *Op; |
| 3957 | if (match(LHSI, m_FNeg(m_Value(Op)))) |
| 3958 | return new FCmpInst(I.getSwappedPredicate(), Op, |
| 3959 | ConstantExpr::getFNeg(RHSC)); |
| 3960 | break; |
| 3961 | } |
Dan Gohman | 9473202 | 2010-02-24 06:46:09 +0000 | [diff] [blame] | 3962 | case Instruction::Load: |
| 3963 | if (GetElementPtrInst *GEP = |
| 3964 | dyn_cast<GetElementPtrInst>(LHSI->getOperand(0))) { |
| 3965 | if (GlobalVariable *GV = dyn_cast<GlobalVariable>(GEP->getOperand(0))) |
| 3966 | if (GV->isConstant() && GV->hasDefinitiveInitializer() && |
| 3967 | !cast<LoadInst>(LHSI)->isVolatile()) |
| 3968 | if (Instruction *Res = FoldCmpLoadFromIndexedGlobal(GEP, GV, I)) |
| 3969 | return Res; |
| 3970 | } |
| 3971 | break; |
Benjamin Kramer | 8c2a733 | 2012-08-18 20:06:47 +0000 | [diff] [blame] | 3972 | case Instruction::Call: { |
Matt Arsenault | b935d9d | 2015-01-08 20:09:34 +0000 | [diff] [blame] | 3973 | if (!RHSC->isNullValue()) |
| 3974 | break; |
| 3975 | |
Benjamin Kramer | 8c2a733 | 2012-08-18 20:06:47 +0000 | [diff] [blame] | 3976 | CallInst *CI = cast<CallInst>(LHSI); |
Matt Arsenault | b935d9d | 2015-01-08 20:09:34 +0000 | [diff] [blame] | 3977 | const Function *F = CI->getCalledFunction(); |
| 3978 | if (!F) |
| 3979 | break; |
| 3980 | |
Benjamin Kramer | 8c2a733 | 2012-08-18 20:06:47 +0000 | [diff] [blame] | 3981 | // Various optimization for fabs compared with zero. |
Matt Arsenault | b935d9d | 2015-01-08 20:09:34 +0000 | [diff] [blame] | 3982 | LibFunc::Func Func; |
| 3983 | if (F->getIntrinsicID() == Intrinsic::fabs || |
| 3984 | (TLI->getLibFunc(F->getName(), Func) && TLI->has(Func) && |
| 3985 | (Func == LibFunc::fabs || Func == LibFunc::fabsf || |
| 3986 | Func == LibFunc::fabsl))) { |
| 3987 | switch (I.getPredicate()) { |
| 3988 | default: |
| 3989 | break; |
Benjamin Kramer | 8c2a733 | 2012-08-18 20:06:47 +0000 | [diff] [blame] | 3990 | // fabs(x) < 0 --> false |
Matt Arsenault | b935d9d | 2015-01-08 20:09:34 +0000 | [diff] [blame] | 3991 | case FCmpInst::FCMP_OLT: |
| 3992 | return ReplaceInstUsesWith(I, Builder->getFalse()); |
Benjamin Kramer | 8c2a733 | 2012-08-18 20:06:47 +0000 | [diff] [blame] | 3993 | // fabs(x) > 0 --> x != 0 |
Matt Arsenault | b935d9d | 2015-01-08 20:09:34 +0000 | [diff] [blame] | 3994 | case FCmpInst::FCMP_OGT: |
| 3995 | return new FCmpInst(FCmpInst::FCMP_ONE, CI->getArgOperand(0), RHSC); |
Benjamin Kramer | 8c2a733 | 2012-08-18 20:06:47 +0000 | [diff] [blame] | 3996 | // fabs(x) <= 0 --> x == 0 |
Matt Arsenault | b935d9d | 2015-01-08 20:09:34 +0000 | [diff] [blame] | 3997 | case FCmpInst::FCMP_OLE: |
| 3998 | return new FCmpInst(FCmpInst::FCMP_OEQ, CI->getArgOperand(0), RHSC); |
Benjamin Kramer | 8c2a733 | 2012-08-18 20:06:47 +0000 | [diff] [blame] | 3999 | // fabs(x) >= 0 --> !isnan(x) |
Matt Arsenault | b935d9d | 2015-01-08 20:09:34 +0000 | [diff] [blame] | 4000 | case FCmpInst::FCMP_OGE: |
| 4001 | return new FCmpInst(FCmpInst::FCMP_ORD, CI->getArgOperand(0), RHSC); |
Benjamin Kramer | 8c2a733 | 2012-08-18 20:06:47 +0000 | [diff] [blame] | 4002 | // fabs(x) == 0 --> x == 0 |
| 4003 | // fabs(x) != 0 --> x != 0 |
Matt Arsenault | b935d9d | 2015-01-08 20:09:34 +0000 | [diff] [blame] | 4004 | case FCmpInst::FCMP_OEQ: |
| 4005 | case FCmpInst::FCMP_UEQ: |
| 4006 | case FCmpInst::FCMP_ONE: |
| 4007 | case FCmpInst::FCMP_UNE: |
| 4008 | return new FCmpInst(I.getPredicate(), CI->getArgOperand(0), RHSC); |
Benjamin Kramer | 8c2a733 | 2012-08-18 20:06:47 +0000 | [diff] [blame] | 4009 | } |
| 4010 | } |
| 4011 | } |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 4012 | } |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 4013 | } |
| 4014 | |
Benjamin Kramer | be209ab | 2011-03-31 10:46:03 +0000 | [diff] [blame] | 4015 | // fcmp pred (fneg x), (fneg y) -> fcmp swap(pred) x, y |
Benjamin Kramer | d159d94 | 2011-03-31 10:12:22 +0000 | [diff] [blame] | 4016 | Value *X, *Y; |
| 4017 | if (match(Op0, m_FNeg(m_Value(X))) && match(Op1, m_FNeg(m_Value(Y)))) |
Benjamin Kramer | be209ab | 2011-03-31 10:46:03 +0000 | [diff] [blame] | 4018 | return new FCmpInst(I.getSwappedPredicate(), X, Y); |
Benjamin Kramer | d159d94 | 2011-03-31 10:12:22 +0000 | [diff] [blame] | 4019 | |
Benjamin Kramer | 2ccfbc8 | 2011-03-31 10:11:58 +0000 | [diff] [blame] | 4020 | // fcmp (fpext x), (fpext y) -> fcmp x, y |
| 4021 | if (FPExtInst *LHSExt = dyn_cast<FPExtInst>(Op0)) |
| 4022 | if (FPExtInst *RHSExt = dyn_cast<FPExtInst>(Op1)) |
| 4023 | if (LHSExt->getSrcTy() == RHSExt->getSrcTy()) |
| 4024 | return new FCmpInst(I.getPredicate(), LHSExt->getOperand(0), |
| 4025 | RHSExt->getOperand(0)); |
| 4026 | |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 4027 | return Changed ? &I : nullptr; |
Chris Lattner | 2188e40 | 2010-01-04 07:37:31 +0000 | [diff] [blame] | 4028 | } |