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