Chris Lattner | 084a1b5 | 2009-11-09 22:57:59 +0000 | [diff] [blame] | 1 | //===- InstructionSimplify.cpp - Fold instruction operands ----------------===// |
| 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 routines for folding instructions into simpler forms |
Duncan Sands | a021988 | 2010-11-23 10:50:08 +0000 | [diff] [blame] | 11 | // that do not require creating new instructions. This does constant folding |
| 12 | // ("add i32 1, 1" -> "2") but can also handle non-constant operands, either |
| 13 | // returning a constant ("and i32 %x, 0" -> "0") or an already existing value |
Duncan Sands | ed6d6c3 | 2010-12-20 14:47:04 +0000 | [diff] [blame] | 14 | // ("and i32 %x, %x" -> "%x"). All operands are assumed to have already been |
| 15 | // simplified: This is usually true and assuming it simplifies the logic (if |
| 16 | // they have not been simplified then results are correct but maybe suboptimal). |
Chris Lattner | 084a1b5 | 2009-11-09 22:57:59 +0000 | [diff] [blame] | 17 | // |
| 18 | //===----------------------------------------------------------------------===// |
| 19 | |
| 20 | #include "llvm/Analysis/InstructionSimplify.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/SetVector.h" |
| 22 | #include "llvm/ADT/Statistic.h" |
Hal Finkel | afcd8db | 2014-12-01 23:38:06 +0000 | [diff] [blame] | 23 | #include "llvm/Analysis/AliasAnalysis.h" |
Chris Lattner | 084a1b5 | 2009-11-09 22:57:59 +0000 | [diff] [blame] | 24 | #include "llvm/Analysis/ConstantFolding.h" |
Dan Gohman | b3e2d3a | 2013-02-01 00:11:13 +0000 | [diff] [blame] | 25 | #include "llvm/Analysis/MemoryBuiltins.h" |
Chandler Carruth | 8a8cd2b | 2014-01-07 11:48:04 +0000 | [diff] [blame] | 26 | #include "llvm/Analysis/ValueTracking.h" |
Chandler Carruth | 8cd041e | 2014-03-04 12:24:34 +0000 | [diff] [blame] | 27 | #include "llvm/IR/ConstantRange.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 28 | #include "llvm/IR/DataLayout.h" |
Chandler Carruth | 5ad5f15 | 2014-01-13 09:26:24 +0000 | [diff] [blame] | 29 | #include "llvm/IR/Dominators.h" |
Chandler Carruth | 03eb0de | 2014-03-04 10:40:04 +0000 | [diff] [blame] | 30 | #include "llvm/IR/GetElementPtrTypeIterator.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 31 | #include "llvm/IR/GlobalAlias.h" |
| 32 | #include "llvm/IR/Operator.h" |
Chandler Carruth | 820a908 | 2014-03-04 11:08:18 +0000 | [diff] [blame] | 33 | #include "llvm/IR/PatternMatch.h" |
Chandler Carruth | 4220e9c | 2014-03-04 11:17:44 +0000 | [diff] [blame] | 34 | #include "llvm/IR/ValueHandle.h" |
Hal Finkel | afcd8db | 2014-12-01 23:38:06 +0000 | [diff] [blame] | 35 | #include <algorithm> |
Chris Lattner | 084a1b5 | 2009-11-09 22:57:59 +0000 | [diff] [blame] | 36 | using namespace llvm; |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 37 | using namespace llvm::PatternMatch; |
Chris Lattner | 084a1b5 | 2009-11-09 22:57:59 +0000 | [diff] [blame] | 38 | |
Chandler Carruth | f1221bd | 2014-04-22 02:48:03 +0000 | [diff] [blame] | 39 | #define DEBUG_TYPE "instsimplify" |
| 40 | |
Chris Lattner | 9e4aa02 | 2011-02-09 17:15:04 +0000 | [diff] [blame] | 41 | enum { RecursionLimit = 3 }; |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 42 | |
Duncan Sands | 3547d2e | 2010-12-22 09:40:51 +0000 | [diff] [blame] | 43 | STATISTIC(NumExpand, "Number of expansions"); |
Duncan Sands | 3547d2e | 2010-12-22 09:40:51 +0000 | [diff] [blame] | 44 | STATISTIC(NumReassoc, "Number of reassociations"); |
| 45 | |
Benjamin Kramer | cfd8d90 | 2014-09-12 08:56:53 +0000 | [diff] [blame] | 46 | namespace { |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 47 | struct Query { |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 48 | const DataLayout &DL; |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 49 | const TargetLibraryInfo *TLI; |
| 50 | const DominatorTree *DT; |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 51 | AssumptionCache *AC; |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 52 | const Instruction *CxtI; |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 53 | |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 54 | Query(const DataLayout &DL, const TargetLibraryInfo *tli, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 55 | const DominatorTree *dt, AssumptionCache *ac = nullptr, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 56 | const Instruction *cxti = nullptr) |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 57 | : DL(DL), TLI(tli), DT(dt), AC(ac), CxtI(cxti) {} |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 58 | }; |
Benjamin Kramer | cfd8d90 | 2014-09-12 08:56:53 +0000 | [diff] [blame] | 59 | } // end anonymous namespace |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 60 | |
| 61 | static Value *SimplifyAndInst(Value *, Value *, const Query &, unsigned); |
| 62 | static Value *SimplifyBinOp(unsigned, Value *, Value *, const Query &, |
Chad Rosier | c24b86f | 2011-12-01 03:08:23 +0000 | [diff] [blame] | 63 | unsigned); |
Michael Zolotukhin | 4e8598e | 2015-02-06 20:02:51 +0000 | [diff] [blame] | 64 | static Value *SimplifyFPBinOp(unsigned, Value *, Value *, const FastMathFlags &, |
| 65 | const Query &, unsigned); |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 66 | static Value *SimplifyCmpInst(unsigned, Value *, Value *, const Query &, |
Chad Rosier | c24b86f | 2011-12-01 03:08:23 +0000 | [diff] [blame] | 67 | unsigned); |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 68 | static Value *SimplifyOrInst(Value *, Value *, const Query &, unsigned); |
| 69 | static Value *SimplifyXorInst(Value *, Value *, const Query &, unsigned); |
Duncan Sands | 395ac42d | 2012-03-13 14:07:05 +0000 | [diff] [blame] | 70 | static Value *SimplifyTruncInst(Value *, Type *, const Query &, unsigned); |
Duncan Sands | 5ffc298 | 2010-11-16 12:16:38 +0000 | [diff] [blame] | 71 | |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 72 | /// getFalse - For a boolean type, or a vector of boolean type, return false, or |
| 73 | /// a vector with every element false, as appropriate for the type. |
| 74 | static Constant *getFalse(Type *Ty) { |
Nick Lewycky | e659b84 | 2011-12-01 02:39:36 +0000 | [diff] [blame] | 75 | assert(Ty->getScalarType()->isIntegerTy(1) && |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 76 | "Expected i1 type or a vector of i1!"); |
| 77 | return Constant::getNullValue(Ty); |
| 78 | } |
| 79 | |
| 80 | /// getTrue - For a boolean type, or a vector of boolean type, return true, or |
| 81 | /// a vector with every element true, as appropriate for the type. |
| 82 | static Constant *getTrue(Type *Ty) { |
Nick Lewycky | e659b84 | 2011-12-01 02:39:36 +0000 | [diff] [blame] | 83 | assert(Ty->getScalarType()->isIntegerTy(1) && |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 84 | "Expected i1 type or a vector of i1!"); |
| 85 | return Constant::getAllOnesValue(Ty); |
| 86 | } |
| 87 | |
Duncan Sands | 3d5692a | 2011-10-30 19:56:36 +0000 | [diff] [blame] | 88 | /// isSameCompare - Is V equivalent to the comparison "LHS Pred RHS"? |
| 89 | static bool isSameCompare(Value *V, CmpInst::Predicate Pred, Value *LHS, |
| 90 | Value *RHS) { |
| 91 | CmpInst *Cmp = dyn_cast<CmpInst>(V); |
| 92 | if (!Cmp) |
| 93 | return false; |
| 94 | CmpInst::Predicate CPred = Cmp->getPredicate(); |
| 95 | Value *CLHS = Cmp->getOperand(0), *CRHS = Cmp->getOperand(1); |
| 96 | if (CPred == Pred && CLHS == LHS && CRHS == RHS) |
| 97 | return true; |
| 98 | return CPred == CmpInst::getSwappedPredicate(Pred) && CLHS == RHS && |
| 99 | CRHS == LHS; |
| 100 | } |
| 101 | |
Duncan Sands | 5ffc298 | 2010-11-16 12:16:38 +0000 | [diff] [blame] | 102 | /// ValueDominatesPHI - Does the given value dominate the specified phi node? |
| 103 | static bool ValueDominatesPHI(Value *V, PHINode *P, const DominatorTree *DT) { |
| 104 | Instruction *I = dyn_cast<Instruction>(V); |
| 105 | if (!I) |
| 106 | // Arguments and constants dominate all instructions. |
| 107 | return true; |
| 108 | |
Chandler Carruth | 3ffccb3 | 2012-03-21 10:58:47 +0000 | [diff] [blame] | 109 | // If we are processing instructions (and/or basic blocks) that have not been |
| 110 | // fully added to a function, the parent nodes may still be null. Simply |
| 111 | // return the conservative answer in these cases. |
| 112 | if (!I->getParent() || !P->getParent() || !I->getParent()->getParent()) |
| 113 | return false; |
| 114 | |
Duncan Sands | 5ffc298 | 2010-11-16 12:16:38 +0000 | [diff] [blame] | 115 | // If we have a DominatorTree then do a precise test. |
Eli Friedman | c8cbd06 | 2012-03-13 01:06:07 +0000 | [diff] [blame] | 116 | if (DT) { |
| 117 | if (!DT->isReachableFromEntry(P->getParent())) |
| 118 | return true; |
| 119 | if (!DT->isReachableFromEntry(I->getParent())) |
| 120 | return false; |
| 121 | return DT->dominates(I, P); |
| 122 | } |
Duncan Sands | 5ffc298 | 2010-11-16 12:16:38 +0000 | [diff] [blame] | 123 | |
| 124 | // Otherwise, if the instruction is in the entry block, and is not an invoke, |
| 125 | // then it obviously dominates all phi nodes. |
| 126 | if (I->getParent() == &I->getParent()->getParent()->getEntryBlock() && |
| 127 | !isa<InvokeInst>(I)) |
| 128 | return true; |
| 129 | |
| 130 | return false; |
| 131 | } |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 132 | |
Duncan Sands | ee3ec6e | 2010-12-21 13:32:22 +0000 | [diff] [blame] | 133 | /// ExpandBinOp - Simplify "A op (B op' C)" by distributing op over op', turning |
| 134 | /// it into "(A op B) op' (A op C)". Here "op" is given by Opcode and "op'" is |
| 135 | /// given by OpcodeToExpand, while "A" corresponds to LHS and "B op' C" to RHS. |
| 136 | /// Also performs the transform "(A op' B) op C" -> "(A op C) op' (B op C)". |
| 137 | /// Returns the simplified value, or null if no simplification was performed. |
| 138 | static Value *ExpandBinOp(unsigned Opcode, Value *LHS, Value *RHS, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 139 | unsigned OpcToExpand, const Query &Q, |
Chad Rosier | c24b86f | 2011-12-01 03:08:23 +0000 | [diff] [blame] | 140 | unsigned MaxRecurse) { |
Benjamin Kramer | b6d52b8 | 2010-12-28 13:52:52 +0000 | [diff] [blame] | 141 | Instruction::BinaryOps OpcodeToExpand = (Instruction::BinaryOps)OpcToExpand; |
Duncan Sands | ee3ec6e | 2010-12-21 13:32:22 +0000 | [diff] [blame] | 142 | // Recursion is always used, so bail out at once if we already hit the limit. |
| 143 | if (!MaxRecurse--) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 144 | return nullptr; |
Duncan Sands | ee3ec6e | 2010-12-21 13:32:22 +0000 | [diff] [blame] | 145 | |
| 146 | // Check whether the expression has the form "(A op' B) op C". |
| 147 | if (BinaryOperator *Op0 = dyn_cast<BinaryOperator>(LHS)) |
| 148 | if (Op0->getOpcode() == OpcodeToExpand) { |
| 149 | // It does! Try turning it into "(A op C) op' (B op C)". |
| 150 | Value *A = Op0->getOperand(0), *B = Op0->getOperand(1), *C = RHS; |
| 151 | // Do "A op C" and "B op C" both simplify? |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 152 | if (Value *L = SimplifyBinOp(Opcode, A, C, Q, MaxRecurse)) |
| 153 | if (Value *R = SimplifyBinOp(Opcode, B, C, Q, MaxRecurse)) { |
Duncan Sands | ee3ec6e | 2010-12-21 13:32:22 +0000 | [diff] [blame] | 154 | // They do! Return "L op' R" if it simplifies or is already available. |
| 155 | // If "L op' R" equals "A op' B" then "L op' R" is just the LHS. |
Duncan Sands | 772749a | 2011-01-01 20:08:02 +0000 | [diff] [blame] | 156 | if ((L == A && R == B) || (Instruction::isCommutative(OpcodeToExpand) |
| 157 | && L == B && R == A)) { |
Duncan Sands | 3547d2e | 2010-12-22 09:40:51 +0000 | [diff] [blame] | 158 | ++NumExpand; |
Duncan Sands | ee3ec6e | 2010-12-21 13:32:22 +0000 | [diff] [blame] | 159 | return LHS; |
Duncan Sands | 3547d2e | 2010-12-22 09:40:51 +0000 | [diff] [blame] | 160 | } |
Duncan Sands | ee3ec6e | 2010-12-21 13:32:22 +0000 | [diff] [blame] | 161 | // Otherwise return "L op' R" if it simplifies. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 162 | if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, Q, MaxRecurse)) { |
Duncan Sands | 3547d2e | 2010-12-22 09:40:51 +0000 | [diff] [blame] | 163 | ++NumExpand; |
Duncan Sands | ee3ec6e | 2010-12-21 13:32:22 +0000 | [diff] [blame] | 164 | return V; |
Duncan Sands | 3547d2e | 2010-12-22 09:40:51 +0000 | [diff] [blame] | 165 | } |
Duncan Sands | ee3ec6e | 2010-12-21 13:32:22 +0000 | [diff] [blame] | 166 | } |
| 167 | } |
| 168 | |
| 169 | // Check whether the expression has the form "A op (B op' C)". |
| 170 | if (BinaryOperator *Op1 = dyn_cast<BinaryOperator>(RHS)) |
| 171 | if (Op1->getOpcode() == OpcodeToExpand) { |
| 172 | // It does! Try turning it into "(A op B) op' (A op C)". |
| 173 | Value *A = LHS, *B = Op1->getOperand(0), *C = Op1->getOperand(1); |
| 174 | // Do "A op B" and "A op C" both simplify? |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 175 | if (Value *L = SimplifyBinOp(Opcode, A, B, Q, MaxRecurse)) |
| 176 | if (Value *R = SimplifyBinOp(Opcode, A, C, Q, MaxRecurse)) { |
Duncan Sands | ee3ec6e | 2010-12-21 13:32:22 +0000 | [diff] [blame] | 177 | // They do! Return "L op' R" if it simplifies or is already available. |
| 178 | // If "L op' R" equals "B op' C" then "L op' R" is just the RHS. |
Duncan Sands | 772749a | 2011-01-01 20:08:02 +0000 | [diff] [blame] | 179 | if ((L == B && R == C) || (Instruction::isCommutative(OpcodeToExpand) |
| 180 | && L == C && R == B)) { |
Duncan Sands | 3547d2e | 2010-12-22 09:40:51 +0000 | [diff] [blame] | 181 | ++NumExpand; |
Duncan Sands | ee3ec6e | 2010-12-21 13:32:22 +0000 | [diff] [blame] | 182 | return RHS; |
Duncan Sands | 3547d2e | 2010-12-22 09:40:51 +0000 | [diff] [blame] | 183 | } |
Duncan Sands | ee3ec6e | 2010-12-21 13:32:22 +0000 | [diff] [blame] | 184 | // Otherwise return "L op' R" if it simplifies. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 185 | if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, Q, MaxRecurse)) { |
Duncan Sands | 3547d2e | 2010-12-22 09:40:51 +0000 | [diff] [blame] | 186 | ++NumExpand; |
Duncan Sands | ee3ec6e | 2010-12-21 13:32:22 +0000 | [diff] [blame] | 187 | return V; |
Duncan Sands | 3547d2e | 2010-12-22 09:40:51 +0000 | [diff] [blame] | 188 | } |
Duncan Sands | ee3ec6e | 2010-12-21 13:32:22 +0000 | [diff] [blame] | 189 | } |
| 190 | } |
| 191 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 192 | return nullptr; |
Duncan Sands | ee3ec6e | 2010-12-21 13:32:22 +0000 | [diff] [blame] | 193 | } |
| 194 | |
Duncan Sands | ee3ec6e | 2010-12-21 13:32:22 +0000 | [diff] [blame] | 195 | /// SimplifyAssociativeBinOp - Generic simplifications for associative binary |
| 196 | /// operations. Returns the simpler value, or null if none was found. |
Benjamin Kramer | b6d52b8 | 2010-12-28 13:52:52 +0000 | [diff] [blame] | 197 | static Value *SimplifyAssociativeBinOp(unsigned Opc, Value *LHS, Value *RHS, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 198 | const Query &Q, unsigned MaxRecurse) { |
Benjamin Kramer | b6d52b8 | 2010-12-28 13:52:52 +0000 | [diff] [blame] | 199 | Instruction::BinaryOps Opcode = (Instruction::BinaryOps)Opc; |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 200 | assert(Instruction::isAssociative(Opcode) && "Not an associative operation!"); |
| 201 | |
| 202 | // Recursion is always used, so bail out at once if we already hit the limit. |
| 203 | if (!MaxRecurse--) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 204 | return nullptr; |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 205 | |
| 206 | BinaryOperator *Op0 = dyn_cast<BinaryOperator>(LHS); |
| 207 | BinaryOperator *Op1 = dyn_cast<BinaryOperator>(RHS); |
| 208 | |
| 209 | // Transform: "(A op B) op C" ==> "A op (B op C)" if it simplifies completely. |
| 210 | if (Op0 && Op0->getOpcode() == Opcode) { |
| 211 | Value *A = Op0->getOperand(0); |
| 212 | Value *B = Op0->getOperand(1); |
| 213 | Value *C = RHS; |
| 214 | |
| 215 | // Does "B op C" simplify? |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 216 | if (Value *V = SimplifyBinOp(Opcode, B, C, Q, MaxRecurse)) { |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 217 | // It does! Return "A op V" if it simplifies or is already available. |
| 218 | // If V equals B then "A op V" is just the LHS. |
Duncan Sands | 772749a | 2011-01-01 20:08:02 +0000 | [diff] [blame] | 219 | if (V == B) return LHS; |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 220 | // Otherwise return "A op V" if it simplifies. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 221 | if (Value *W = SimplifyBinOp(Opcode, A, V, Q, MaxRecurse)) { |
Duncan Sands | 3547d2e | 2010-12-22 09:40:51 +0000 | [diff] [blame] | 222 | ++NumReassoc; |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 223 | return W; |
Duncan Sands | 3547d2e | 2010-12-22 09:40:51 +0000 | [diff] [blame] | 224 | } |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 225 | } |
| 226 | } |
| 227 | |
| 228 | // Transform: "A op (B op C)" ==> "(A op B) op C" if it simplifies completely. |
| 229 | if (Op1 && Op1->getOpcode() == Opcode) { |
| 230 | Value *A = LHS; |
| 231 | Value *B = Op1->getOperand(0); |
| 232 | Value *C = Op1->getOperand(1); |
| 233 | |
| 234 | // Does "A op B" simplify? |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 235 | if (Value *V = SimplifyBinOp(Opcode, A, B, Q, MaxRecurse)) { |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 236 | // It does! Return "V op C" if it simplifies or is already available. |
| 237 | // If V equals B then "V op C" is just the RHS. |
Duncan Sands | 772749a | 2011-01-01 20:08:02 +0000 | [diff] [blame] | 238 | if (V == B) return RHS; |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 239 | // Otherwise return "V op C" if it simplifies. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 240 | if (Value *W = SimplifyBinOp(Opcode, V, C, Q, MaxRecurse)) { |
Duncan Sands | 3547d2e | 2010-12-22 09:40:51 +0000 | [diff] [blame] | 241 | ++NumReassoc; |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 242 | return W; |
Duncan Sands | 3547d2e | 2010-12-22 09:40:51 +0000 | [diff] [blame] | 243 | } |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 244 | } |
| 245 | } |
| 246 | |
| 247 | // The remaining transforms require commutativity as well as associativity. |
| 248 | if (!Instruction::isCommutative(Opcode)) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 249 | return nullptr; |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 250 | |
| 251 | // Transform: "(A op B) op C" ==> "(C op A) op B" if it simplifies completely. |
| 252 | if (Op0 && Op0->getOpcode() == Opcode) { |
| 253 | Value *A = Op0->getOperand(0); |
| 254 | Value *B = Op0->getOperand(1); |
| 255 | Value *C = RHS; |
| 256 | |
| 257 | // Does "C op A" simplify? |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 258 | if (Value *V = SimplifyBinOp(Opcode, C, A, Q, MaxRecurse)) { |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 259 | // It does! Return "V op B" if it simplifies or is already available. |
| 260 | // If V equals A then "V op B" is just the LHS. |
Duncan Sands | 772749a | 2011-01-01 20:08:02 +0000 | [diff] [blame] | 261 | if (V == A) return LHS; |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 262 | // Otherwise return "V op B" if it simplifies. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 263 | if (Value *W = SimplifyBinOp(Opcode, V, B, Q, MaxRecurse)) { |
Duncan Sands | 3547d2e | 2010-12-22 09:40:51 +0000 | [diff] [blame] | 264 | ++NumReassoc; |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 265 | return W; |
Duncan Sands | 3547d2e | 2010-12-22 09:40:51 +0000 | [diff] [blame] | 266 | } |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 267 | } |
| 268 | } |
| 269 | |
| 270 | // Transform: "A op (B op C)" ==> "B op (C op A)" if it simplifies completely. |
| 271 | if (Op1 && Op1->getOpcode() == Opcode) { |
| 272 | Value *A = LHS; |
| 273 | Value *B = Op1->getOperand(0); |
| 274 | Value *C = Op1->getOperand(1); |
| 275 | |
| 276 | // Does "C op A" simplify? |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 277 | if (Value *V = SimplifyBinOp(Opcode, C, A, Q, MaxRecurse)) { |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 278 | // It does! Return "B op V" if it simplifies or is already available. |
| 279 | // If V equals C then "B op V" is just the RHS. |
Duncan Sands | 772749a | 2011-01-01 20:08:02 +0000 | [diff] [blame] | 280 | if (V == C) return RHS; |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 281 | // Otherwise return "B op V" if it simplifies. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 282 | if (Value *W = SimplifyBinOp(Opcode, B, V, Q, MaxRecurse)) { |
Duncan Sands | 3547d2e | 2010-12-22 09:40:51 +0000 | [diff] [blame] | 283 | ++NumReassoc; |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 284 | return W; |
Duncan Sands | 3547d2e | 2010-12-22 09:40:51 +0000 | [diff] [blame] | 285 | } |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 286 | } |
| 287 | } |
| 288 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 289 | return nullptr; |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 290 | } |
| 291 | |
Duncan Sands | b0579e9 | 2010-11-10 13:00:08 +0000 | [diff] [blame] | 292 | /// ThreadBinOpOverSelect - In the case of a binary operation with a select |
| 293 | /// instruction as an operand, try to simplify the binop by seeing whether |
| 294 | /// evaluating it on both branches of the select results in the same value. |
| 295 | /// Returns the common value if so, otherwise returns null. |
| 296 | static Value *ThreadBinOpOverSelect(unsigned Opcode, Value *LHS, Value *RHS, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 297 | const Query &Q, unsigned MaxRecurse) { |
Duncan Sands | f64e690 | 2010-12-21 09:09:15 +0000 | [diff] [blame] | 298 | // Recursion is always used, so bail out at once if we already hit the limit. |
| 299 | if (!MaxRecurse--) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 300 | return nullptr; |
Duncan Sands | f64e690 | 2010-12-21 09:09:15 +0000 | [diff] [blame] | 301 | |
Duncan Sands | b0579e9 | 2010-11-10 13:00:08 +0000 | [diff] [blame] | 302 | SelectInst *SI; |
| 303 | if (isa<SelectInst>(LHS)) { |
| 304 | SI = cast<SelectInst>(LHS); |
| 305 | } else { |
| 306 | assert(isa<SelectInst>(RHS) && "No select instruction operand!"); |
| 307 | SI = cast<SelectInst>(RHS); |
| 308 | } |
| 309 | |
| 310 | // Evaluate the BinOp on the true and false branches of the select. |
| 311 | Value *TV; |
| 312 | Value *FV; |
| 313 | if (SI == LHS) { |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 314 | TV = SimplifyBinOp(Opcode, SI->getTrueValue(), RHS, Q, MaxRecurse); |
| 315 | FV = SimplifyBinOp(Opcode, SI->getFalseValue(), RHS, Q, MaxRecurse); |
Duncan Sands | b0579e9 | 2010-11-10 13:00:08 +0000 | [diff] [blame] | 316 | } else { |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 317 | TV = SimplifyBinOp(Opcode, LHS, SI->getTrueValue(), Q, MaxRecurse); |
| 318 | FV = SimplifyBinOp(Opcode, LHS, SI->getFalseValue(), Q, MaxRecurse); |
Duncan Sands | b0579e9 | 2010-11-10 13:00:08 +0000 | [diff] [blame] | 319 | } |
| 320 | |
Duncan Sands | e3c5395 | 2011-01-01 16:12:09 +0000 | [diff] [blame] | 321 | // If they simplified to the same value, then return the common value. |
Duncan Sands | 772749a | 2011-01-01 20:08:02 +0000 | [diff] [blame] | 322 | // If they both failed to simplify then return null. |
| 323 | if (TV == FV) |
Duncan Sands | b0579e9 | 2010-11-10 13:00:08 +0000 | [diff] [blame] | 324 | return TV; |
| 325 | |
| 326 | // If one branch simplified to undef, return the other one. |
| 327 | if (TV && isa<UndefValue>(TV)) |
| 328 | return FV; |
| 329 | if (FV && isa<UndefValue>(FV)) |
| 330 | return TV; |
| 331 | |
| 332 | // If applying the operation did not change the true and false select values, |
| 333 | // then the result of the binop is the select itself. |
Duncan Sands | 772749a | 2011-01-01 20:08:02 +0000 | [diff] [blame] | 334 | if (TV == SI->getTrueValue() && FV == SI->getFalseValue()) |
Duncan Sands | b0579e9 | 2010-11-10 13:00:08 +0000 | [diff] [blame] | 335 | return SI; |
| 336 | |
| 337 | // If one branch simplified and the other did not, and the simplified |
| 338 | // value is equal to the unsimplified one, return the simplified value. |
| 339 | // For example, select (cond, X, X & Z) & Z -> X & Z. |
| 340 | if ((FV && !TV) || (TV && !FV)) { |
| 341 | // Check that the simplified value has the form "X op Y" where "op" is the |
| 342 | // same as the original operation. |
| 343 | Instruction *Simplified = dyn_cast<Instruction>(FV ? FV : TV); |
| 344 | if (Simplified && Simplified->getOpcode() == Opcode) { |
| 345 | // The value that didn't simplify is "UnsimplifiedLHS op UnsimplifiedRHS". |
| 346 | // We already know that "op" is the same as for the simplified value. See |
| 347 | // if the operands match too. If so, return the simplified value. |
| 348 | Value *UnsimplifiedBranch = FV ? SI->getTrueValue() : SI->getFalseValue(); |
| 349 | Value *UnsimplifiedLHS = SI == LHS ? UnsimplifiedBranch : LHS; |
| 350 | Value *UnsimplifiedRHS = SI == LHS ? RHS : UnsimplifiedBranch; |
Duncan Sands | 772749a | 2011-01-01 20:08:02 +0000 | [diff] [blame] | 351 | if (Simplified->getOperand(0) == UnsimplifiedLHS && |
| 352 | Simplified->getOperand(1) == UnsimplifiedRHS) |
Duncan Sands | b0579e9 | 2010-11-10 13:00:08 +0000 | [diff] [blame] | 353 | return Simplified; |
| 354 | if (Simplified->isCommutative() && |
Duncan Sands | 772749a | 2011-01-01 20:08:02 +0000 | [diff] [blame] | 355 | Simplified->getOperand(1) == UnsimplifiedLHS && |
| 356 | Simplified->getOperand(0) == UnsimplifiedRHS) |
Duncan Sands | b0579e9 | 2010-11-10 13:00:08 +0000 | [diff] [blame] | 357 | return Simplified; |
| 358 | } |
| 359 | } |
| 360 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 361 | return nullptr; |
Duncan Sands | b0579e9 | 2010-11-10 13:00:08 +0000 | [diff] [blame] | 362 | } |
| 363 | |
| 364 | /// ThreadCmpOverSelect - In the case of a comparison with a select instruction, |
| 365 | /// try to simplify the comparison by seeing whether both branches of the select |
| 366 | /// result in the same value. Returns the common value if so, otherwise returns |
| 367 | /// null. |
| 368 | static Value *ThreadCmpOverSelect(CmpInst::Predicate Pred, Value *LHS, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 369 | Value *RHS, const Query &Q, |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 370 | unsigned MaxRecurse) { |
Duncan Sands | f64e690 | 2010-12-21 09:09:15 +0000 | [diff] [blame] | 371 | // Recursion is always used, so bail out at once if we already hit the limit. |
| 372 | if (!MaxRecurse--) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 373 | return nullptr; |
Duncan Sands | f64e690 | 2010-12-21 09:09:15 +0000 | [diff] [blame] | 374 | |
Duncan Sands | b0579e9 | 2010-11-10 13:00:08 +0000 | [diff] [blame] | 375 | // Make sure the select is on the LHS. |
| 376 | if (!isa<SelectInst>(LHS)) { |
| 377 | std::swap(LHS, RHS); |
| 378 | Pred = CmpInst::getSwappedPredicate(Pred); |
| 379 | } |
| 380 | assert(isa<SelectInst>(LHS) && "Not comparing with a select instruction!"); |
| 381 | SelectInst *SI = cast<SelectInst>(LHS); |
Duncan Sands | 3d5692a | 2011-10-30 19:56:36 +0000 | [diff] [blame] | 382 | Value *Cond = SI->getCondition(); |
| 383 | Value *TV = SI->getTrueValue(); |
| 384 | Value *FV = SI->getFalseValue(); |
Duncan Sands | b0579e9 | 2010-11-10 13:00:08 +0000 | [diff] [blame] | 385 | |
Duncan Sands | 0650402 | 2011-02-03 09:37:39 +0000 | [diff] [blame] | 386 | // Now that we have "cmp select(Cond, TV, FV), RHS", analyse it. |
Duncan Sands | b0579e9 | 2010-11-10 13:00:08 +0000 | [diff] [blame] | 387 | // Does "cmp TV, RHS" simplify? |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 388 | Value *TCmp = SimplifyCmpInst(Pred, TV, RHS, Q, MaxRecurse); |
Duncan Sands | 3d5692a | 2011-10-30 19:56:36 +0000 | [diff] [blame] | 389 | if (TCmp == Cond) { |
| 390 | // It not only simplified, it simplified to the select condition. Replace |
| 391 | // it with 'true'. |
| 392 | TCmp = getTrue(Cond->getType()); |
| 393 | } else if (!TCmp) { |
| 394 | // It didn't simplify. However if "cmp TV, RHS" is equal to the select |
| 395 | // condition then we can replace it with 'true'. Otherwise give up. |
| 396 | if (!isSameCompare(Cond, Pred, TV, RHS)) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 397 | return nullptr; |
Duncan Sands | 3d5692a | 2011-10-30 19:56:36 +0000 | [diff] [blame] | 398 | TCmp = getTrue(Cond->getType()); |
Duncan Sands | 0650402 | 2011-02-03 09:37:39 +0000 | [diff] [blame] | 399 | } |
| 400 | |
Duncan Sands | 3d5692a | 2011-10-30 19:56:36 +0000 | [diff] [blame] | 401 | // Does "cmp FV, RHS" simplify? |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 402 | Value *FCmp = SimplifyCmpInst(Pred, FV, RHS, Q, MaxRecurse); |
Duncan Sands | 3d5692a | 2011-10-30 19:56:36 +0000 | [diff] [blame] | 403 | if (FCmp == Cond) { |
| 404 | // It not only simplified, it simplified to the select condition. Replace |
| 405 | // it with 'false'. |
| 406 | FCmp = getFalse(Cond->getType()); |
| 407 | } else if (!FCmp) { |
| 408 | // It didn't simplify. However if "cmp FV, RHS" is equal to the select |
| 409 | // condition then we can replace it with 'false'. Otherwise give up. |
| 410 | if (!isSameCompare(Cond, Pred, FV, RHS)) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 411 | return nullptr; |
Duncan Sands | 3d5692a | 2011-10-30 19:56:36 +0000 | [diff] [blame] | 412 | FCmp = getFalse(Cond->getType()); |
| 413 | } |
| 414 | |
| 415 | // If both sides simplified to the same value, then use it as the result of |
| 416 | // the original comparison. |
| 417 | if (TCmp == FCmp) |
| 418 | return TCmp; |
Duncan Sands | 26641d7 | 2012-02-10 14:31:24 +0000 | [diff] [blame] | 419 | |
| 420 | // The remaining cases only make sense if the select condition has the same |
| 421 | // type as the result of the comparison, so bail out if this is not so. |
| 422 | if (Cond->getType()->isVectorTy() != RHS->getType()->isVectorTy()) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 423 | return nullptr; |
Duncan Sands | 3d5692a | 2011-10-30 19:56:36 +0000 | [diff] [blame] | 424 | // If the false value simplified to false, then the result of the compare |
| 425 | // is equal to "Cond && TCmp". This also catches the case when the false |
| 426 | // value simplified to false and the true value to true, returning "Cond". |
| 427 | if (match(FCmp, m_Zero())) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 428 | if (Value *V = SimplifyAndInst(Cond, TCmp, Q, MaxRecurse)) |
Duncan Sands | 3d5692a | 2011-10-30 19:56:36 +0000 | [diff] [blame] | 429 | return V; |
| 430 | // If the true value simplified to true, then the result of the compare |
| 431 | // is equal to "Cond || FCmp". |
| 432 | if (match(TCmp, m_One())) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 433 | if (Value *V = SimplifyOrInst(Cond, FCmp, Q, MaxRecurse)) |
Duncan Sands | 3d5692a | 2011-10-30 19:56:36 +0000 | [diff] [blame] | 434 | return V; |
| 435 | // Finally, if the false value simplified to true and the true value to |
| 436 | // false, then the result of the compare is equal to "!Cond". |
| 437 | if (match(FCmp, m_One()) && match(TCmp, m_Zero())) |
| 438 | if (Value *V = |
| 439 | SimplifyXorInst(Cond, Constant::getAllOnesValue(Cond->getType()), |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 440 | Q, MaxRecurse)) |
Duncan Sands | 3d5692a | 2011-10-30 19:56:36 +0000 | [diff] [blame] | 441 | return V; |
| 442 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 443 | return nullptr; |
Duncan Sands | b0579e9 | 2010-11-10 13:00:08 +0000 | [diff] [blame] | 444 | } |
| 445 | |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 446 | /// ThreadBinOpOverPHI - In the case of a binary operation with an operand that |
| 447 | /// is a PHI instruction, try to simplify the binop by seeing whether evaluating |
| 448 | /// it on the incoming phi values yields the same result for every value. If so |
| 449 | /// returns the common value, otherwise returns null. |
| 450 | static Value *ThreadBinOpOverPHI(unsigned Opcode, Value *LHS, Value *RHS, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 451 | const Query &Q, unsigned MaxRecurse) { |
Duncan Sands | f64e690 | 2010-12-21 09:09:15 +0000 | [diff] [blame] | 452 | // Recursion is always used, so bail out at once if we already hit the limit. |
| 453 | if (!MaxRecurse--) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 454 | return nullptr; |
Duncan Sands | f64e690 | 2010-12-21 09:09:15 +0000 | [diff] [blame] | 455 | |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 456 | PHINode *PI; |
| 457 | if (isa<PHINode>(LHS)) { |
| 458 | PI = cast<PHINode>(LHS); |
Duncan Sands | 5ffc298 | 2010-11-16 12:16:38 +0000 | [diff] [blame] | 459 | // Bail out if RHS and the phi may be mutually interdependent due to a loop. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 460 | if (!ValueDominatesPHI(RHS, PI, Q.DT)) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 461 | return nullptr; |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 462 | } else { |
| 463 | assert(isa<PHINode>(RHS) && "No PHI instruction operand!"); |
| 464 | PI = cast<PHINode>(RHS); |
Duncan Sands | 5ffc298 | 2010-11-16 12:16:38 +0000 | [diff] [blame] | 465 | // Bail out if LHS and the phi may be mutually interdependent due to a loop. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 466 | if (!ValueDominatesPHI(LHS, PI, Q.DT)) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 467 | return nullptr; |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 468 | } |
| 469 | |
| 470 | // Evaluate the BinOp on the incoming phi values. |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 471 | Value *CommonValue = nullptr; |
Pete Cooper | 833f34d | 2015-05-12 20:05:31 +0000 | [diff] [blame] | 472 | for (Value *Incoming : PI->incoming_values()) { |
Duncan Sands | 7412f6e | 2010-11-17 04:30:22 +0000 | [diff] [blame] | 473 | // If the incoming value is the phi node itself, it can safely be skipped. |
Duncan Sands | f12ba1d | 2010-11-15 17:52:45 +0000 | [diff] [blame] | 474 | if (Incoming == PI) continue; |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 475 | Value *V = PI == LHS ? |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 476 | SimplifyBinOp(Opcode, Incoming, RHS, Q, MaxRecurse) : |
| 477 | SimplifyBinOp(Opcode, LHS, Incoming, Q, MaxRecurse); |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 478 | // If the operation failed to simplify, or simplified to a different value |
| 479 | // to previously, then give up. |
| 480 | if (!V || (CommonValue && V != CommonValue)) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 481 | return nullptr; |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 482 | CommonValue = V; |
| 483 | } |
| 484 | |
| 485 | return CommonValue; |
| 486 | } |
| 487 | |
| 488 | /// ThreadCmpOverPHI - In the case of a comparison with a PHI instruction, try |
| 489 | /// try to simplify the comparison by seeing whether comparing with all of the |
| 490 | /// incoming phi values yields the same result every time. If so returns the |
| 491 | /// common result, otherwise returns null. |
| 492 | static Value *ThreadCmpOverPHI(CmpInst::Predicate Pred, Value *LHS, Value *RHS, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 493 | const Query &Q, unsigned MaxRecurse) { |
Duncan Sands | f64e690 | 2010-12-21 09:09:15 +0000 | [diff] [blame] | 494 | // Recursion is always used, so bail out at once if we already hit the limit. |
| 495 | if (!MaxRecurse--) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 496 | return nullptr; |
Duncan Sands | f64e690 | 2010-12-21 09:09:15 +0000 | [diff] [blame] | 497 | |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 498 | // Make sure the phi is on the LHS. |
| 499 | if (!isa<PHINode>(LHS)) { |
| 500 | std::swap(LHS, RHS); |
| 501 | Pred = CmpInst::getSwappedPredicate(Pred); |
| 502 | } |
| 503 | assert(isa<PHINode>(LHS) && "Not comparing with a phi instruction!"); |
| 504 | PHINode *PI = cast<PHINode>(LHS); |
| 505 | |
Duncan Sands | 5ffc298 | 2010-11-16 12:16:38 +0000 | [diff] [blame] | 506 | // Bail out if RHS and the phi may be mutually interdependent due to a loop. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 507 | if (!ValueDominatesPHI(RHS, PI, Q.DT)) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 508 | return nullptr; |
Duncan Sands | 5ffc298 | 2010-11-16 12:16:38 +0000 | [diff] [blame] | 509 | |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 510 | // Evaluate the BinOp on the incoming phi values. |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 511 | Value *CommonValue = nullptr; |
Pete Cooper | 833f34d | 2015-05-12 20:05:31 +0000 | [diff] [blame] | 512 | for (Value *Incoming : PI->incoming_values()) { |
Duncan Sands | 7412f6e | 2010-11-17 04:30:22 +0000 | [diff] [blame] | 513 | // If the incoming value is the phi node itself, it can safely be skipped. |
Duncan Sands | f12ba1d | 2010-11-15 17:52:45 +0000 | [diff] [blame] | 514 | if (Incoming == PI) continue; |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 515 | Value *V = SimplifyCmpInst(Pred, Incoming, RHS, Q, MaxRecurse); |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 516 | // If the operation failed to simplify, or simplified to a different value |
| 517 | // to previously, then give up. |
| 518 | if (!V || (CommonValue && V != CommonValue)) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 519 | return nullptr; |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 520 | CommonValue = V; |
| 521 | } |
| 522 | |
| 523 | return CommonValue; |
| 524 | } |
| 525 | |
Chris Lattner | 3d9823b | 2009-11-27 17:42:22 +0000 | [diff] [blame] | 526 | /// SimplifyAddInst - Given operands for an Add, see if we can |
| 527 | /// fold the result. If not, this returns null. |
Duncan Sands | ed6d6c3 | 2010-12-20 14:47:04 +0000 | [diff] [blame] | 528 | static Value *SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 529 | const Query &Q, unsigned MaxRecurse) { |
Chris Lattner | 3d9823b | 2009-11-27 17:42:22 +0000 | [diff] [blame] | 530 | if (Constant *CLHS = dyn_cast<Constant>(Op0)) { |
| 531 | if (Constant *CRHS = dyn_cast<Constant>(Op1)) { |
| 532 | Constant *Ops[] = { CLHS, CRHS }; |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 533 | return ConstantFoldInstOperands(Instruction::Add, CLHS->getType(), Ops, |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 534 | Q.DL, Q.TLI); |
Chris Lattner | 3d9823b | 2009-11-27 17:42:22 +0000 | [diff] [blame] | 535 | } |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 536 | |
Chris Lattner | 3d9823b | 2009-11-27 17:42:22 +0000 | [diff] [blame] | 537 | // Canonicalize the constant to the RHS. |
| 538 | std::swap(Op0, Op1); |
| 539 | } |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 540 | |
Duncan Sands | 0a2c4168 | 2010-12-15 14:07:39 +0000 | [diff] [blame] | 541 | // X + undef -> undef |
Duncan Sands | a29ea9a | 2011-02-01 09:06:20 +0000 | [diff] [blame] | 542 | if (match(Op1, m_Undef())) |
Duncan Sands | 0a2c4168 | 2010-12-15 14:07:39 +0000 | [diff] [blame] | 543 | return Op1; |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 544 | |
Duncan Sands | 0a2c4168 | 2010-12-15 14:07:39 +0000 | [diff] [blame] | 545 | // X + 0 -> X |
| 546 | if (match(Op1, m_Zero())) |
| 547 | return Op0; |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 548 | |
Duncan Sands | 0a2c4168 | 2010-12-15 14:07:39 +0000 | [diff] [blame] | 549 | // X + (Y - X) -> Y |
| 550 | // (Y - X) + X -> Y |
Duncan Sands | ed6d6c3 | 2010-12-20 14:47:04 +0000 | [diff] [blame] | 551 | // Eg: X + -X -> 0 |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 552 | Value *Y = nullptr; |
Duncan Sands | 772749a | 2011-01-01 20:08:02 +0000 | [diff] [blame] | 553 | if (match(Op1, m_Sub(m_Value(Y), m_Specific(Op0))) || |
| 554 | match(Op0, m_Sub(m_Value(Y), m_Specific(Op1)))) |
Duncan Sands | 0a2c4168 | 2010-12-15 14:07:39 +0000 | [diff] [blame] | 555 | return Y; |
| 556 | |
| 557 | // X + ~X -> -1 since ~X = -X-1 |
Duncan Sands | 772749a | 2011-01-01 20:08:02 +0000 | [diff] [blame] | 558 | if (match(Op0, m_Not(m_Specific(Op1))) || |
| 559 | match(Op1, m_Not(m_Specific(Op0)))) |
Duncan Sands | 0a2c4168 | 2010-12-15 14:07:39 +0000 | [diff] [blame] | 560 | return Constant::getAllOnesValue(Op0->getType()); |
Duncan Sands | b238de0 | 2010-11-19 09:20:39 +0000 | [diff] [blame] | 561 | |
Duncan Sands | d0eb6d3 | 2010-12-21 14:00:22 +0000 | [diff] [blame] | 562 | /// i1 add -> xor. |
Duncan Sands | 5def0d6 | 2010-12-21 14:48:48 +0000 | [diff] [blame] | 563 | if (MaxRecurse && Op0->getType()->isIntegerTy(1)) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 564 | if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1)) |
Duncan Sands | fecc642 | 2010-12-21 15:03:43 +0000 | [diff] [blame] | 565 | return V; |
Duncan Sands | d0eb6d3 | 2010-12-21 14:00:22 +0000 | [diff] [blame] | 566 | |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 567 | // Try some generic simplifications for associative operations. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 568 | if (Value *V = SimplifyAssociativeBinOp(Instruction::Add, Op0, Op1, Q, |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 569 | MaxRecurse)) |
| 570 | return V; |
| 571 | |
Duncan Sands | b238de0 | 2010-11-19 09:20:39 +0000 | [diff] [blame] | 572 | // Threading Add over selects and phi nodes is pointless, so don't bother. |
| 573 | // Threading over the select in "A + select(cond, B, C)" means evaluating |
| 574 | // "A+B" and "A+C" and seeing if they are equal; but they are equal if and |
| 575 | // only if B and C are equal. If B and C are equal then (since we assume |
| 576 | // that operands have already been simplified) "select(cond, B, C)" should |
| 577 | // have been simplified to the common value of B and C already. Analysing |
| 578 | // "A+B" and "A+C" thus gains nothing, but costs compile time. Similarly |
| 579 | // for threading over phi nodes. |
| 580 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 581 | return nullptr; |
Chris Lattner | 3d9823b | 2009-11-27 17:42:22 +0000 | [diff] [blame] | 582 | } |
| 583 | |
Duncan Sands | ed6d6c3 | 2010-12-20 14:47:04 +0000 | [diff] [blame] | 584 | Value *llvm::SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 585 | const DataLayout &DL, const TargetLibraryInfo *TLI, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 586 | const DominatorTree *DT, AssumptionCache *AC, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 587 | const Instruction *CxtI) { |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 588 | return ::SimplifyAddInst(Op0, Op1, isNSW, isNUW, Query(DL, TLI, DT, AC, CxtI), |
| 589 | RecursionLimit); |
Duncan Sands | ed6d6c3 | 2010-12-20 14:47:04 +0000 | [diff] [blame] | 590 | } |
| 591 | |
Chandler Carruth | a079655 | 2012-03-12 11:19:31 +0000 | [diff] [blame] | 592 | /// \brief Compute the base pointer and cumulative constant offsets for V. |
| 593 | /// |
| 594 | /// This strips all constant offsets off of V, leaving it the base pointer, and |
| 595 | /// accumulates the total constant offset applied in the returned constant. It |
| 596 | /// returns 0 if V is not a pointer, and returns the constant '0' if there are |
| 597 | /// no constant offsets applied. |
Dan Gohman | 36fa839 | 2013-01-31 02:45:26 +0000 | [diff] [blame] | 598 | /// |
| 599 | /// This is very similar to GetPointerBaseWithConstantOffset except it doesn't |
| 600 | /// follow non-inbounds geps. This allows it to remain usable for icmp ult/etc. |
| 601 | /// folding. |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 602 | static Constant *stripAndComputeConstantOffsets(const DataLayout &DL, Value *&V, |
Benjamin Kramer | 942dfe6 | 2013-09-23 14:16:38 +0000 | [diff] [blame] | 603 | bool AllowNonInbounds = false) { |
Benjamin Kramer | c05aa95 | 2013-02-01 15:21:10 +0000 | [diff] [blame] | 604 | assert(V->getType()->getScalarType()->isPointerTy()); |
Chandler Carruth | a079655 | 2012-03-12 11:19:31 +0000 | [diff] [blame] | 605 | |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 606 | Type *IntPtrTy = DL.getIntPtrType(V->getType())->getScalarType(); |
Matt Arsenault | 2f9cce2 | 2013-08-03 01:03:12 +0000 | [diff] [blame] | 607 | APInt Offset = APInt::getNullValue(IntPtrTy->getIntegerBitWidth()); |
Chandler Carruth | a079655 | 2012-03-12 11:19:31 +0000 | [diff] [blame] | 608 | |
| 609 | // Even though we don't look through PHI nodes, we could be called on an |
| 610 | // instruction in an unreachable block, which may be on a cycle. |
| 611 | SmallPtrSet<Value *, 4> Visited; |
| 612 | Visited.insert(V); |
| 613 | do { |
| 614 | if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) { |
Benjamin Kramer | 942dfe6 | 2013-09-23 14:16:38 +0000 | [diff] [blame] | 615 | if ((!AllowNonInbounds && !GEP->isInBounds()) || |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 616 | !GEP->accumulateConstantOffset(DL, Offset)) |
Chandler Carruth | a079655 | 2012-03-12 11:19:31 +0000 | [diff] [blame] | 617 | break; |
Chandler Carruth | a079655 | 2012-03-12 11:19:31 +0000 | [diff] [blame] | 618 | V = GEP->getPointerOperand(); |
| 619 | } else if (Operator::getOpcode(V) == Instruction::BitCast) { |
Matt Arsenault | 2f9cce2 | 2013-08-03 01:03:12 +0000 | [diff] [blame] | 620 | V = cast<Operator>(V)->getOperand(0); |
Chandler Carruth | a079655 | 2012-03-12 11:19:31 +0000 | [diff] [blame] | 621 | } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) { |
| 622 | if (GA->mayBeOverridden()) |
| 623 | break; |
| 624 | V = GA->getAliasee(); |
| 625 | } else { |
| 626 | break; |
| 627 | } |
Benjamin Kramer | c05aa95 | 2013-02-01 15:21:10 +0000 | [diff] [blame] | 628 | assert(V->getType()->getScalarType()->isPointerTy() && |
| 629 | "Unexpected operand type!"); |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 630 | } while (Visited.insert(V).second); |
Chandler Carruth | a079655 | 2012-03-12 11:19:31 +0000 | [diff] [blame] | 631 | |
Benjamin Kramer | c05aa95 | 2013-02-01 15:21:10 +0000 | [diff] [blame] | 632 | Constant *OffsetIntPtr = ConstantInt::get(IntPtrTy, Offset); |
| 633 | if (V->getType()->isVectorTy()) |
| 634 | return ConstantVector::getSplat(V->getType()->getVectorNumElements(), |
| 635 | OffsetIntPtr); |
| 636 | return OffsetIntPtr; |
Chandler Carruth | a079655 | 2012-03-12 11:19:31 +0000 | [diff] [blame] | 637 | } |
| 638 | |
| 639 | /// \brief Compute the constant difference between two pointer values. |
| 640 | /// If the difference is not a constant, returns zero. |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 641 | static Constant *computePointerDifference(const DataLayout &DL, Value *LHS, |
| 642 | Value *RHS) { |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 643 | Constant *LHSOffset = stripAndComputeConstantOffsets(DL, LHS); |
| 644 | Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS); |
Chandler Carruth | a079655 | 2012-03-12 11:19:31 +0000 | [diff] [blame] | 645 | |
| 646 | // If LHS and RHS are not related via constant offsets to the same base |
| 647 | // value, there is nothing we can do here. |
| 648 | if (LHS != RHS) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 649 | return nullptr; |
Chandler Carruth | a079655 | 2012-03-12 11:19:31 +0000 | [diff] [blame] | 650 | |
| 651 | // Otherwise, the difference of LHS - RHS can be computed as: |
| 652 | // LHS - RHS |
| 653 | // = (LHSOffset + Base) - (RHSOffset + Base) |
| 654 | // = LHSOffset - RHSOffset |
| 655 | return ConstantExpr::getSub(LHSOffset, RHSOffset); |
| 656 | } |
| 657 | |
Duncan Sands | 0a2c4168 | 2010-12-15 14:07:39 +0000 | [diff] [blame] | 658 | /// SimplifySubInst - Given operands for a Sub, see if we can |
| 659 | /// fold the result. If not, this returns null. |
Duncan Sands | ed6d6c3 | 2010-12-20 14:47:04 +0000 | [diff] [blame] | 660 | static Value *SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 661 | const Query &Q, unsigned MaxRecurse) { |
Duncan Sands | 0a2c4168 | 2010-12-15 14:07:39 +0000 | [diff] [blame] | 662 | if (Constant *CLHS = dyn_cast<Constant>(Op0)) |
| 663 | if (Constant *CRHS = dyn_cast<Constant>(Op1)) { |
| 664 | Constant *Ops[] = { CLHS, CRHS }; |
| 665 | return ConstantFoldInstOperands(Instruction::Sub, CLHS->getType(), |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 666 | Ops, Q.DL, Q.TLI); |
Duncan Sands | 0a2c4168 | 2010-12-15 14:07:39 +0000 | [diff] [blame] | 667 | } |
| 668 | |
| 669 | // X - undef -> undef |
| 670 | // undef - X -> undef |
Duncan Sands | a29ea9a | 2011-02-01 09:06:20 +0000 | [diff] [blame] | 671 | if (match(Op0, m_Undef()) || match(Op1, m_Undef())) |
Duncan Sands | 0a2c4168 | 2010-12-15 14:07:39 +0000 | [diff] [blame] | 672 | return UndefValue::get(Op0->getType()); |
| 673 | |
| 674 | // X - 0 -> X |
| 675 | if (match(Op1, m_Zero())) |
| 676 | return Op0; |
| 677 | |
| 678 | // X - X -> 0 |
Duncan Sands | 772749a | 2011-01-01 20:08:02 +0000 | [diff] [blame] | 679 | if (Op0 == Op1) |
Duncan Sands | 0a2c4168 | 2010-12-15 14:07:39 +0000 | [diff] [blame] | 680 | return Constant::getNullValue(Op0->getType()); |
| 681 | |
David Majnemer | 4efa9ff | 2014-11-22 07:15:16 +0000 | [diff] [blame] | 682 | // 0 - X -> 0 if the sub is NUW. |
| 683 | if (isNUW && match(Op0, m_Zero())) |
| 684 | return Op0; |
David Majnemer | cd4fbcd | 2014-07-31 04:49:18 +0000 | [diff] [blame] | 685 | |
Duncan Sands | 99589d0 | 2011-01-18 11:50:19 +0000 | [diff] [blame] | 686 | // (X + Y) - Z -> X + (Y - Z) or Y + (X - Z) if everything simplifies. |
| 687 | // For example, (X + Y) - Y -> X; (Y + X) - Y -> X |
Dinesh Dwivedi | 99281a0 | 2014-06-26 08:57:33 +0000 | [diff] [blame] | 688 | Value *X = nullptr, *Y = nullptr, *Z = Op1; |
Duncan Sands | 99589d0 | 2011-01-18 11:50:19 +0000 | [diff] [blame] | 689 | if (MaxRecurse && match(Op0, m_Add(m_Value(X), m_Value(Y)))) { // (X + Y) - Z |
| 690 | // See if "V === Y - Z" simplifies. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 691 | if (Value *V = SimplifyBinOp(Instruction::Sub, Y, Z, Q, MaxRecurse-1)) |
Duncan Sands | 99589d0 | 2011-01-18 11:50:19 +0000 | [diff] [blame] | 692 | // It does! Now see if "X + V" simplifies. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 693 | if (Value *W = SimplifyBinOp(Instruction::Add, X, V, Q, MaxRecurse-1)) { |
Duncan Sands | 99589d0 | 2011-01-18 11:50:19 +0000 | [diff] [blame] | 694 | // It does, we successfully reassociated! |
| 695 | ++NumReassoc; |
| 696 | return W; |
| 697 | } |
| 698 | // See if "V === X - Z" simplifies. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 699 | if (Value *V = SimplifyBinOp(Instruction::Sub, X, Z, Q, MaxRecurse-1)) |
Duncan Sands | 99589d0 | 2011-01-18 11:50:19 +0000 | [diff] [blame] | 700 | // It does! Now see if "Y + V" simplifies. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 701 | if (Value *W = SimplifyBinOp(Instruction::Add, Y, V, Q, MaxRecurse-1)) { |
Duncan Sands | 99589d0 | 2011-01-18 11:50:19 +0000 | [diff] [blame] | 702 | // It does, we successfully reassociated! |
| 703 | ++NumReassoc; |
| 704 | return W; |
| 705 | } |
| 706 | } |
Duncan Sands | d0eb6d3 | 2010-12-21 14:00:22 +0000 | [diff] [blame] | 707 | |
Duncan Sands | 99589d0 | 2011-01-18 11:50:19 +0000 | [diff] [blame] | 708 | // X - (Y + Z) -> (X - Y) - Z or (X - Z) - Y if everything simplifies. |
| 709 | // For example, X - (X + 1) -> -1 |
| 710 | X = Op0; |
| 711 | if (MaxRecurse && match(Op1, m_Add(m_Value(Y), m_Value(Z)))) { // X - (Y + Z) |
| 712 | // See if "V === X - Y" simplifies. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 713 | if (Value *V = SimplifyBinOp(Instruction::Sub, X, Y, Q, MaxRecurse-1)) |
Duncan Sands | 99589d0 | 2011-01-18 11:50:19 +0000 | [diff] [blame] | 714 | // It does! Now see if "V - Z" simplifies. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 715 | if (Value *W = SimplifyBinOp(Instruction::Sub, V, Z, Q, MaxRecurse-1)) { |
Duncan Sands | 99589d0 | 2011-01-18 11:50:19 +0000 | [diff] [blame] | 716 | // It does, we successfully reassociated! |
| 717 | ++NumReassoc; |
| 718 | return W; |
| 719 | } |
| 720 | // See if "V === X - Z" simplifies. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 721 | if (Value *V = SimplifyBinOp(Instruction::Sub, X, Z, Q, MaxRecurse-1)) |
Duncan Sands | 99589d0 | 2011-01-18 11:50:19 +0000 | [diff] [blame] | 722 | // It does! Now see if "V - Y" simplifies. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 723 | if (Value *W = SimplifyBinOp(Instruction::Sub, V, Y, Q, MaxRecurse-1)) { |
Duncan Sands | 99589d0 | 2011-01-18 11:50:19 +0000 | [diff] [blame] | 724 | // It does, we successfully reassociated! |
| 725 | ++NumReassoc; |
| 726 | return W; |
| 727 | } |
| 728 | } |
| 729 | |
| 730 | // Z - (X - Y) -> (Z - X) + Y if everything simplifies. |
| 731 | // For example, X - (X - Y) -> Y. |
| 732 | Z = Op0; |
Duncan Sands | d6f1a95 | 2011-01-14 15:26:10 +0000 | [diff] [blame] | 733 | if (MaxRecurse && match(Op1, m_Sub(m_Value(X), m_Value(Y)))) // Z - (X - Y) |
| 734 | // See if "V === Z - X" simplifies. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 735 | if (Value *V = SimplifyBinOp(Instruction::Sub, Z, X, Q, MaxRecurse-1)) |
Duncan Sands | 99589d0 | 2011-01-18 11:50:19 +0000 | [diff] [blame] | 736 | // It does! Now see if "V + Y" simplifies. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 737 | if (Value *W = SimplifyBinOp(Instruction::Add, V, Y, Q, MaxRecurse-1)) { |
Duncan Sands | d6f1a95 | 2011-01-14 15:26:10 +0000 | [diff] [blame] | 738 | // It does, we successfully reassociated! |
| 739 | ++NumReassoc; |
| 740 | return W; |
| 741 | } |
| 742 | |
Duncan Sands | 395ac42d | 2012-03-13 14:07:05 +0000 | [diff] [blame] | 743 | // trunc(X) - trunc(Y) -> trunc(X - Y) if everything simplifies. |
| 744 | if (MaxRecurse && match(Op0, m_Trunc(m_Value(X))) && |
| 745 | match(Op1, m_Trunc(m_Value(Y)))) |
| 746 | if (X->getType() == Y->getType()) |
| 747 | // See if "V === X - Y" simplifies. |
| 748 | if (Value *V = SimplifyBinOp(Instruction::Sub, X, Y, Q, MaxRecurse-1)) |
| 749 | // It does! Now see if "trunc V" simplifies. |
| 750 | if (Value *W = SimplifyTruncInst(V, Op0->getType(), Q, MaxRecurse-1)) |
| 751 | // It does, return the simplified "trunc V". |
| 752 | return W; |
| 753 | |
| 754 | // Variations on GEP(base, I, ...) - GEP(base, i, ...) -> GEP(null, I-i, ...). |
Dan Gohman | 18c77a1 | 2013-01-31 02:50:36 +0000 | [diff] [blame] | 755 | if (match(Op0, m_PtrToInt(m_Value(X))) && |
Duncan Sands | 395ac42d | 2012-03-13 14:07:05 +0000 | [diff] [blame] | 756 | match(Op1, m_PtrToInt(m_Value(Y)))) |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 757 | if (Constant *Result = computePointerDifference(Q.DL, X, Y)) |
Duncan Sands | 395ac42d | 2012-03-13 14:07:05 +0000 | [diff] [blame] | 758 | return ConstantExpr::getIntegerCast(Result, Op0->getType(), true); |
| 759 | |
Duncan Sands | 99589d0 | 2011-01-18 11:50:19 +0000 | [diff] [blame] | 760 | // i1 sub -> xor. |
| 761 | if (MaxRecurse && Op0->getType()->isIntegerTy(1)) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 762 | if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1)) |
Duncan Sands | 99589d0 | 2011-01-18 11:50:19 +0000 | [diff] [blame] | 763 | return V; |
| 764 | |
Duncan Sands | 0a2c4168 | 2010-12-15 14:07:39 +0000 | [diff] [blame] | 765 | // Threading Sub over selects and phi nodes is pointless, so don't bother. |
| 766 | // Threading over the select in "A - select(cond, B, C)" means evaluating |
| 767 | // "A-B" and "A-C" and seeing if they are equal; but they are equal if and |
| 768 | // only if B and C are equal. If B and C are equal then (since we assume |
| 769 | // that operands have already been simplified) "select(cond, B, C)" should |
| 770 | // have been simplified to the common value of B and C already. Analysing |
| 771 | // "A-B" and "A-C" thus gains nothing, but costs compile time. Similarly |
| 772 | // for threading over phi nodes. |
| 773 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 774 | return nullptr; |
Duncan Sands | 0a2c4168 | 2010-12-15 14:07:39 +0000 | [diff] [blame] | 775 | } |
| 776 | |
Duncan Sands | ed6d6c3 | 2010-12-20 14:47:04 +0000 | [diff] [blame] | 777 | Value *llvm::SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 778 | const DataLayout &DL, const TargetLibraryInfo *TLI, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 779 | const DominatorTree *DT, AssumptionCache *AC, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 780 | const Instruction *CxtI) { |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 781 | return ::SimplifySubInst(Op0, Op1, isNSW, isNUW, Query(DL, TLI, DT, AC, CxtI), |
| 782 | RecursionLimit); |
Duncan Sands | ed6d6c3 | 2010-12-20 14:47:04 +0000 | [diff] [blame] | 783 | } |
| 784 | |
Michael Ilseman | bb6f691 | 2012-12-12 00:27:46 +0000 | [diff] [blame] | 785 | /// Given operands for an FAdd, see if we can fold the result. If not, this |
| 786 | /// returns null. |
| 787 | static Value *SimplifyFAddInst(Value *Op0, Value *Op1, FastMathFlags FMF, |
| 788 | const Query &Q, unsigned MaxRecurse) { |
| 789 | if (Constant *CLHS = dyn_cast<Constant>(Op0)) { |
| 790 | if (Constant *CRHS = dyn_cast<Constant>(Op1)) { |
| 791 | Constant *Ops[] = { CLHS, CRHS }; |
| 792 | return ConstantFoldInstOperands(Instruction::FAdd, CLHS->getType(), |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 793 | Ops, Q.DL, Q.TLI); |
Michael Ilseman | bb6f691 | 2012-12-12 00:27:46 +0000 | [diff] [blame] | 794 | } |
| 795 | |
| 796 | // Canonicalize the constant to the RHS. |
| 797 | std::swap(Op0, Op1); |
| 798 | } |
| 799 | |
| 800 | // fadd X, -0 ==> X |
| 801 | if (match(Op1, m_NegZero())) |
| 802 | return Op0; |
| 803 | |
| 804 | // fadd X, 0 ==> X, when we know X is not -0 |
| 805 | if (match(Op1, m_Zero()) && |
| 806 | (FMF.noSignedZeros() || CannotBeNegativeZero(Op0))) |
| 807 | return Op0; |
| 808 | |
| 809 | // fadd [nnan ninf] X, (fsub [nnan ninf] 0, X) ==> 0 |
| 810 | // where nnan and ninf have to occur at least once somewhere in this |
| 811 | // expression |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 812 | Value *SubOp = nullptr; |
Michael Ilseman | bb6f691 | 2012-12-12 00:27:46 +0000 | [diff] [blame] | 813 | if (match(Op1, m_FSub(m_AnyZero(), m_Specific(Op0)))) |
| 814 | SubOp = Op1; |
| 815 | else if (match(Op0, m_FSub(m_AnyZero(), m_Specific(Op1)))) |
| 816 | SubOp = Op0; |
| 817 | if (SubOp) { |
| 818 | Instruction *FSub = cast<Instruction>(SubOp); |
| 819 | if ((FMF.noNaNs() || FSub->hasNoNaNs()) && |
| 820 | (FMF.noInfs() || FSub->hasNoInfs())) |
| 821 | return Constant::getNullValue(Op0->getType()); |
| 822 | } |
| 823 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 824 | return nullptr; |
Michael Ilseman | bb6f691 | 2012-12-12 00:27:46 +0000 | [diff] [blame] | 825 | } |
| 826 | |
| 827 | /// Given operands for an FSub, see if we can fold the result. If not, this |
| 828 | /// returns null. |
| 829 | static Value *SimplifyFSubInst(Value *Op0, Value *Op1, FastMathFlags FMF, |
| 830 | const Query &Q, unsigned MaxRecurse) { |
| 831 | if (Constant *CLHS = dyn_cast<Constant>(Op0)) { |
| 832 | if (Constant *CRHS = dyn_cast<Constant>(Op1)) { |
| 833 | Constant *Ops[] = { CLHS, CRHS }; |
| 834 | return ConstantFoldInstOperands(Instruction::FSub, CLHS->getType(), |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 835 | Ops, Q.DL, Q.TLI); |
Michael Ilseman | bb6f691 | 2012-12-12 00:27:46 +0000 | [diff] [blame] | 836 | } |
| 837 | } |
| 838 | |
| 839 | // fsub X, 0 ==> X |
| 840 | if (match(Op1, m_Zero())) |
| 841 | return Op0; |
| 842 | |
| 843 | // fsub X, -0 ==> X, when we know X is not -0 |
| 844 | if (match(Op1, m_NegZero()) && |
| 845 | (FMF.noSignedZeros() || CannotBeNegativeZero(Op0))) |
| 846 | return Op0; |
| 847 | |
| 848 | // fsub 0, (fsub -0.0, X) ==> X |
| 849 | Value *X; |
| 850 | if (match(Op0, m_AnyZero())) { |
| 851 | if (match(Op1, m_FSub(m_NegZero(), m_Value(X)))) |
| 852 | return X; |
| 853 | if (FMF.noSignedZeros() && match(Op1, m_FSub(m_AnyZero(), m_Value(X)))) |
| 854 | return X; |
| 855 | } |
| 856 | |
Benjamin Kramer | 228680d | 2015-06-14 21:01:20 +0000 | [diff] [blame] | 857 | // fsub nnan x, x ==> 0.0 |
| 858 | if (FMF.noNaNs() && Op0 == Op1) |
Michael Ilseman | bb6f691 | 2012-12-12 00:27:46 +0000 | [diff] [blame] | 859 | return Constant::getNullValue(Op0->getType()); |
| 860 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 861 | return nullptr; |
Michael Ilseman | bb6f691 | 2012-12-12 00:27:46 +0000 | [diff] [blame] | 862 | } |
| 863 | |
Michael Ilseman | be9137a | 2012-11-27 00:46:26 +0000 | [diff] [blame] | 864 | /// Given the operands for an FMul, see if we can fold the result |
| 865 | static Value *SimplifyFMulInst(Value *Op0, Value *Op1, |
| 866 | FastMathFlags FMF, |
| 867 | const Query &Q, |
| 868 | unsigned MaxRecurse) { |
| 869 | if (Constant *CLHS = dyn_cast<Constant>(Op0)) { |
| 870 | if (Constant *CRHS = dyn_cast<Constant>(Op1)) { |
| 871 | Constant *Ops[] = { CLHS, CRHS }; |
| 872 | return ConstantFoldInstOperands(Instruction::FMul, CLHS->getType(), |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 873 | Ops, Q.DL, Q.TLI); |
Michael Ilseman | be9137a | 2012-11-27 00:46:26 +0000 | [diff] [blame] | 874 | } |
Michael Ilseman | bb6f691 | 2012-12-12 00:27:46 +0000 | [diff] [blame] | 875 | |
| 876 | // Canonicalize the constant to the RHS. |
| 877 | std::swap(Op0, Op1); |
Michael Ilseman | be9137a | 2012-11-27 00:46:26 +0000 | [diff] [blame] | 878 | } |
| 879 | |
Michael Ilseman | bb6f691 | 2012-12-12 00:27:46 +0000 | [diff] [blame] | 880 | // fmul X, 1.0 ==> X |
| 881 | if (match(Op1, m_FPOne())) |
| 882 | return Op0; |
| 883 | |
| 884 | // fmul nnan nsz X, 0 ==> 0 |
| 885 | if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op1, m_AnyZero())) |
| 886 | return Op1; |
Michael Ilseman | be9137a | 2012-11-27 00:46:26 +0000 | [diff] [blame] | 887 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 888 | return nullptr; |
Michael Ilseman | be9137a | 2012-11-27 00:46:26 +0000 | [diff] [blame] | 889 | } |
| 890 | |
Duncan Sands | d0eb6d3 | 2010-12-21 14:00:22 +0000 | [diff] [blame] | 891 | /// SimplifyMulInst - Given operands for a Mul, see if we can |
| 892 | /// fold the result. If not, this returns null. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 893 | static Value *SimplifyMulInst(Value *Op0, Value *Op1, const Query &Q, |
| 894 | unsigned MaxRecurse) { |
Duncan Sands | d0eb6d3 | 2010-12-21 14:00:22 +0000 | [diff] [blame] | 895 | if (Constant *CLHS = dyn_cast<Constant>(Op0)) { |
| 896 | if (Constant *CRHS = dyn_cast<Constant>(Op1)) { |
| 897 | Constant *Ops[] = { CLHS, CRHS }; |
| 898 | return ConstantFoldInstOperands(Instruction::Mul, CLHS->getType(), |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 899 | Ops, Q.DL, Q.TLI); |
Duncan Sands | d0eb6d3 | 2010-12-21 14:00:22 +0000 | [diff] [blame] | 900 | } |
| 901 | |
| 902 | // Canonicalize the constant to the RHS. |
| 903 | std::swap(Op0, Op1); |
| 904 | } |
| 905 | |
| 906 | // X * undef -> 0 |
Duncan Sands | a29ea9a | 2011-02-01 09:06:20 +0000 | [diff] [blame] | 907 | if (match(Op1, m_Undef())) |
Duncan Sands | d0eb6d3 | 2010-12-21 14:00:22 +0000 | [diff] [blame] | 908 | return Constant::getNullValue(Op0->getType()); |
| 909 | |
| 910 | // X * 0 -> 0 |
| 911 | if (match(Op1, m_Zero())) |
| 912 | return Op1; |
| 913 | |
| 914 | // X * 1 -> X |
| 915 | if (match(Op1, m_One())) |
| 916 | return Op0; |
| 917 | |
Duncan Sands | b67edc6 | 2011-01-30 18:03:50 +0000 | [diff] [blame] | 918 | // (X / Y) * Y -> X if the division is exact. |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 919 | Value *X = nullptr; |
Benjamin Kramer | 9442cd0 | 2012-01-01 17:55:30 +0000 | [diff] [blame] | 920 | if (match(Op0, m_Exact(m_IDiv(m_Value(X), m_Specific(Op1)))) || // (X / Y) * Y |
| 921 | match(Op1, m_Exact(m_IDiv(m_Value(X), m_Specific(Op0))))) // Y * (X / Y) |
| 922 | return X; |
Duncan Sands | b67edc6 | 2011-01-30 18:03:50 +0000 | [diff] [blame] | 923 | |
Nick Lewycky | b89d9a4 | 2011-01-29 19:55:23 +0000 | [diff] [blame] | 924 | // i1 mul -> and. |
Duncan Sands | 5def0d6 | 2010-12-21 14:48:48 +0000 | [diff] [blame] | 925 | if (MaxRecurse && Op0->getType()->isIntegerTy(1)) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 926 | if (Value *V = SimplifyAndInst(Op0, Op1, Q, MaxRecurse-1)) |
Duncan Sands | fecc642 | 2010-12-21 15:03:43 +0000 | [diff] [blame] | 927 | return V; |
Duncan Sands | d0eb6d3 | 2010-12-21 14:00:22 +0000 | [diff] [blame] | 928 | |
| 929 | // Try some generic simplifications for associative operations. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 930 | if (Value *V = SimplifyAssociativeBinOp(Instruction::Mul, Op0, Op1, Q, |
Duncan Sands | d0eb6d3 | 2010-12-21 14:00:22 +0000 | [diff] [blame] | 931 | MaxRecurse)) |
| 932 | return V; |
| 933 | |
| 934 | // Mul distributes over Add. Try some generic simplifications based on this. |
| 935 | if (Value *V = ExpandBinOp(Instruction::Mul, Op0, Op1, Instruction::Add, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 936 | Q, MaxRecurse)) |
Duncan Sands | d0eb6d3 | 2010-12-21 14:00:22 +0000 | [diff] [blame] | 937 | return V; |
| 938 | |
| 939 | // If the operation is with the result of a select instruction, check whether |
| 940 | // operating on either branch of the select always yields the same value. |
| 941 | if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1)) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 942 | if (Value *V = ThreadBinOpOverSelect(Instruction::Mul, Op0, Op1, Q, |
Duncan Sands | d0eb6d3 | 2010-12-21 14:00:22 +0000 | [diff] [blame] | 943 | MaxRecurse)) |
| 944 | return V; |
| 945 | |
| 946 | // If the operation is with the result of a phi instruction, check whether |
| 947 | // operating on all incoming values of the phi always yields the same value. |
| 948 | if (isa<PHINode>(Op0) || isa<PHINode>(Op1)) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 949 | if (Value *V = ThreadBinOpOverPHI(Instruction::Mul, Op0, Op1, Q, |
Duncan Sands | d0eb6d3 | 2010-12-21 14:00:22 +0000 | [diff] [blame] | 950 | MaxRecurse)) |
| 951 | return V; |
| 952 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 953 | return nullptr; |
Duncan Sands | d0eb6d3 | 2010-12-21 14:00:22 +0000 | [diff] [blame] | 954 | } |
| 955 | |
Michael Ilseman | bb6f691 | 2012-12-12 00:27:46 +0000 | [diff] [blame] | 956 | Value *llvm::SimplifyFAddInst(Value *Op0, Value *Op1, FastMathFlags FMF, |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 957 | const DataLayout &DL, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 958 | const TargetLibraryInfo *TLI, |
| 959 | const DominatorTree *DT, AssumptionCache *AC, |
| 960 | const Instruction *CxtI) { |
| 961 | return ::SimplifyFAddInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI), |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 962 | RecursionLimit); |
Michael Ilseman | bb6f691 | 2012-12-12 00:27:46 +0000 | [diff] [blame] | 963 | } |
| 964 | |
| 965 | Value *llvm::SimplifyFSubInst(Value *Op0, Value *Op1, FastMathFlags FMF, |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 966 | const DataLayout &DL, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 967 | const TargetLibraryInfo *TLI, |
| 968 | const DominatorTree *DT, AssumptionCache *AC, |
| 969 | const Instruction *CxtI) { |
| 970 | return ::SimplifyFSubInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI), |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 971 | RecursionLimit); |
Michael Ilseman | bb6f691 | 2012-12-12 00:27:46 +0000 | [diff] [blame] | 972 | } |
| 973 | |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 974 | Value *llvm::SimplifyFMulInst(Value *Op0, Value *Op1, FastMathFlags FMF, |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 975 | const DataLayout &DL, |
Michael Ilseman | be9137a | 2012-11-27 00:46:26 +0000 | [diff] [blame] | 976 | const TargetLibraryInfo *TLI, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 977 | const DominatorTree *DT, AssumptionCache *AC, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 978 | const Instruction *CxtI) { |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 979 | return ::SimplifyFMulInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI), |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 980 | RecursionLimit); |
Michael Ilseman | be9137a | 2012-11-27 00:46:26 +0000 | [diff] [blame] | 981 | } |
| 982 | |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 983 | Value *llvm::SimplifyMulInst(Value *Op0, Value *Op1, const DataLayout &DL, |
Chad Rosier | c24b86f | 2011-12-01 03:08:23 +0000 | [diff] [blame] | 984 | const TargetLibraryInfo *TLI, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 985 | const DominatorTree *DT, AssumptionCache *AC, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 986 | const Instruction *CxtI) { |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 987 | return ::SimplifyMulInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI), |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 988 | RecursionLimit); |
Duncan Sands | d0eb6d3 | 2010-12-21 14:00:22 +0000 | [diff] [blame] | 989 | } |
| 990 | |
Duncan Sands | 771e82a | 2011-01-28 16:51:11 +0000 | [diff] [blame] | 991 | /// SimplifyDiv - Given operands for an SDiv or UDiv, see if we can |
| 992 | /// fold the result. If not, this returns null. |
Anders Carlsson | 36c6d23 | 2011-02-05 18:33:43 +0000 | [diff] [blame] | 993 | static Value *SimplifyDiv(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 994 | const Query &Q, unsigned MaxRecurse) { |
Duncan Sands | 771e82a | 2011-01-28 16:51:11 +0000 | [diff] [blame] | 995 | if (Constant *C0 = dyn_cast<Constant>(Op0)) { |
| 996 | if (Constant *C1 = dyn_cast<Constant>(Op1)) { |
| 997 | Constant *Ops[] = { C0, C1 }; |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 998 | return ConstantFoldInstOperands(Opcode, C0->getType(), Ops, Q.DL, Q.TLI); |
Duncan Sands | 771e82a | 2011-01-28 16:51:11 +0000 | [diff] [blame] | 999 | } |
| 1000 | } |
| 1001 | |
Duncan Sands | 65995fa | 2011-01-28 18:50:50 +0000 | [diff] [blame] | 1002 | bool isSigned = Opcode == Instruction::SDiv; |
| 1003 | |
Duncan Sands | 771e82a | 2011-01-28 16:51:11 +0000 | [diff] [blame] | 1004 | // X / undef -> undef |
Duncan Sands | a29ea9a | 2011-02-01 09:06:20 +0000 | [diff] [blame] | 1005 | if (match(Op1, m_Undef())) |
Duncan Sands | 771e82a | 2011-01-28 16:51:11 +0000 | [diff] [blame] | 1006 | return Op1; |
| 1007 | |
David Majnemer | 71dc8fb | 2014-12-10 07:52:18 +0000 | [diff] [blame] | 1008 | // X / 0 -> undef, we don't need to preserve faults! |
| 1009 | if (match(Op1, m_Zero())) |
| 1010 | return UndefValue::get(Op1->getType()); |
| 1011 | |
Duncan Sands | 771e82a | 2011-01-28 16:51:11 +0000 | [diff] [blame] | 1012 | // undef / X -> 0 |
Duncan Sands | a29ea9a | 2011-02-01 09:06:20 +0000 | [diff] [blame] | 1013 | if (match(Op0, m_Undef())) |
Duncan Sands | 771e82a | 2011-01-28 16:51:11 +0000 | [diff] [blame] | 1014 | return Constant::getNullValue(Op0->getType()); |
| 1015 | |
| 1016 | // 0 / X -> 0, we don't need to preserve faults! |
| 1017 | if (match(Op0, m_Zero())) |
| 1018 | return Op0; |
| 1019 | |
| 1020 | // X / 1 -> X |
| 1021 | if (match(Op1, m_One())) |
| 1022 | return Op0; |
Duncan Sands | 771e82a | 2011-01-28 16:51:11 +0000 | [diff] [blame] | 1023 | |
| 1024 | if (Op0->getType()->isIntegerTy(1)) |
| 1025 | // It can't be division by zero, hence it must be division by one. |
| 1026 | return Op0; |
| 1027 | |
| 1028 | // X / X -> 1 |
| 1029 | if (Op0 == Op1) |
| 1030 | return ConstantInt::get(Op0->getType(), 1); |
| 1031 | |
| 1032 | // (X * Y) / Y -> X if the multiplication does not overflow. |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 1033 | Value *X = nullptr, *Y = nullptr; |
Duncan Sands | 771e82a | 2011-01-28 16:51:11 +0000 | [diff] [blame] | 1034 | if (match(Op0, m_Mul(m_Value(X), m_Value(Y))) && (X == Op1 || Y == Op1)) { |
| 1035 | if (Y != Op1) std::swap(X, Y); // Ensure expression is (X * Y) / Y, Y = Op1 |
Duncan Sands | 7cb61e5 | 2011-10-27 19:16:21 +0000 | [diff] [blame] | 1036 | OverflowingBinaryOperator *Mul = cast<OverflowingBinaryOperator>(Op0); |
Duncan Sands | 5747aba | 2011-02-02 20:52:00 +0000 | [diff] [blame] | 1037 | // If the Mul knows it does not overflow, then we are good to go. |
| 1038 | if ((isSigned && Mul->hasNoSignedWrap()) || |
| 1039 | (!isSigned && Mul->hasNoUnsignedWrap())) |
| 1040 | return X; |
Duncan Sands | 771e82a | 2011-01-28 16:51:11 +0000 | [diff] [blame] | 1041 | // If X has the form X = A / Y then X * Y cannot overflow. |
| 1042 | if (BinaryOperator *Div = dyn_cast<BinaryOperator>(X)) |
| 1043 | if (Div->getOpcode() == Opcode && Div->getOperand(1) == Y) |
| 1044 | return X; |
| 1045 | } |
| 1046 | |
Duncan Sands | 65995fa | 2011-01-28 18:50:50 +0000 | [diff] [blame] | 1047 | // (X rem Y) / Y -> 0 |
| 1048 | if ((isSigned && match(Op0, m_SRem(m_Value(), m_Specific(Op1)))) || |
| 1049 | (!isSigned && match(Op0, m_URem(m_Value(), m_Specific(Op1))))) |
| 1050 | return Constant::getNullValue(Op0->getType()); |
| 1051 | |
David Majnemer | cb9d596 | 2014-10-11 10:20:01 +0000 | [diff] [blame] | 1052 | // (X /u C1) /u C2 -> 0 if C1 * C2 overflow |
| 1053 | ConstantInt *C1, *C2; |
| 1054 | if (!isSigned && match(Op0, m_UDiv(m_Value(X), m_ConstantInt(C1))) && |
| 1055 | match(Op1, m_ConstantInt(C2))) { |
| 1056 | bool Overflow; |
| 1057 | C1->getValue().umul_ov(C2->getValue(), Overflow); |
| 1058 | if (Overflow) |
| 1059 | return Constant::getNullValue(Op0->getType()); |
| 1060 | } |
| 1061 | |
Duncan Sands | 65995fa | 2011-01-28 18:50:50 +0000 | [diff] [blame] | 1062 | // If the operation is with the result of a select instruction, check whether |
| 1063 | // operating on either branch of the select always yields the same value. |
| 1064 | if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1)) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1065 | if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse)) |
Duncan Sands | 65995fa | 2011-01-28 18:50:50 +0000 | [diff] [blame] | 1066 | return V; |
| 1067 | |
| 1068 | // If the operation is with the result of a phi instruction, check whether |
| 1069 | // operating on all incoming values of the phi always yields the same value. |
| 1070 | if (isa<PHINode>(Op0) || isa<PHINode>(Op1)) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1071 | if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse)) |
Duncan Sands | 65995fa | 2011-01-28 18:50:50 +0000 | [diff] [blame] | 1072 | return V; |
| 1073 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 1074 | return nullptr; |
Duncan Sands | 771e82a | 2011-01-28 16:51:11 +0000 | [diff] [blame] | 1075 | } |
| 1076 | |
| 1077 | /// SimplifySDivInst - Given operands for an SDiv, see if we can |
| 1078 | /// fold the result. If not, this returns null. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1079 | static Value *SimplifySDivInst(Value *Op0, Value *Op1, const Query &Q, |
| 1080 | unsigned MaxRecurse) { |
| 1081 | if (Value *V = SimplifyDiv(Instruction::SDiv, Op0, Op1, Q, MaxRecurse)) |
Duncan Sands | 771e82a | 2011-01-28 16:51:11 +0000 | [diff] [blame] | 1082 | return V; |
| 1083 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 1084 | return nullptr; |
Duncan Sands | 771e82a | 2011-01-28 16:51:11 +0000 | [diff] [blame] | 1085 | } |
| 1086 | |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1087 | Value *llvm::SimplifySDivInst(Value *Op0, Value *Op1, const DataLayout &DL, |
Chad Rosier | c24b86f | 2011-12-01 03:08:23 +0000 | [diff] [blame] | 1088 | const TargetLibraryInfo *TLI, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1089 | const DominatorTree *DT, AssumptionCache *AC, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 1090 | const Instruction *CxtI) { |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1091 | return ::SimplifySDivInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI), |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 1092 | RecursionLimit); |
Duncan Sands | 771e82a | 2011-01-28 16:51:11 +0000 | [diff] [blame] | 1093 | } |
| 1094 | |
| 1095 | /// SimplifyUDivInst - Given operands for a UDiv, see if we can |
| 1096 | /// fold the result. If not, this returns null. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1097 | static Value *SimplifyUDivInst(Value *Op0, Value *Op1, const Query &Q, |
| 1098 | unsigned MaxRecurse) { |
| 1099 | if (Value *V = SimplifyDiv(Instruction::UDiv, Op0, Op1, Q, MaxRecurse)) |
Duncan Sands | 771e82a | 2011-01-28 16:51:11 +0000 | [diff] [blame] | 1100 | return V; |
| 1101 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 1102 | return nullptr; |
Duncan Sands | 771e82a | 2011-01-28 16:51:11 +0000 | [diff] [blame] | 1103 | } |
| 1104 | |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1105 | Value *llvm::SimplifyUDivInst(Value *Op0, Value *Op1, const DataLayout &DL, |
Chad Rosier | c24b86f | 2011-12-01 03:08:23 +0000 | [diff] [blame] | 1106 | const TargetLibraryInfo *TLI, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1107 | const DominatorTree *DT, AssumptionCache *AC, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 1108 | const Instruction *CxtI) { |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1109 | return ::SimplifyUDivInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI), |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 1110 | RecursionLimit); |
Duncan Sands | 771e82a | 2011-01-28 16:51:11 +0000 | [diff] [blame] | 1111 | } |
| 1112 | |
Mehdi Amini | cd3ca6f | 2015-02-23 18:30:25 +0000 | [diff] [blame] | 1113 | static Value *SimplifyFDivInst(Value *Op0, Value *Op1, FastMathFlags FMF, |
| 1114 | const Query &Q, unsigned) { |
Frits van Bommel | c254966 | 2011-01-29 15:26:31 +0000 | [diff] [blame] | 1115 | // undef / X -> undef (the undef could be a snan). |
Duncan Sands | a29ea9a | 2011-02-01 09:06:20 +0000 | [diff] [blame] | 1116 | if (match(Op0, m_Undef())) |
Frits van Bommel | c254966 | 2011-01-29 15:26:31 +0000 | [diff] [blame] | 1117 | return Op0; |
| 1118 | |
| 1119 | // X / undef -> undef |
Duncan Sands | a29ea9a | 2011-02-01 09:06:20 +0000 | [diff] [blame] | 1120 | if (match(Op1, m_Undef())) |
Frits van Bommel | c254966 | 2011-01-29 15:26:31 +0000 | [diff] [blame] | 1121 | return Op1; |
| 1122 | |
Mehdi Amini | cd3ca6f | 2015-02-23 18:30:25 +0000 | [diff] [blame] | 1123 | // 0 / X -> 0 |
| 1124 | // Requires that NaNs are off (X could be zero) and signed zeroes are |
| 1125 | // ignored (X could be positive or negative, so the output sign is unknown). |
| 1126 | if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op0, m_AnyZero())) |
| 1127 | return Op0; |
| 1128 | |
Benjamin Kramer | 1ee59cb | 2015-06-16 14:57:29 +0000 | [diff] [blame] | 1129 | if (FMF.noNaNs()) { |
| 1130 | // X / X -> 1.0 is legal when NaNs are ignored. |
Benjamin Kramer | 4f05246 | 2015-06-14 18:53:58 +0000 | [diff] [blame] | 1131 | if (Op0 == Op1) |
| 1132 | return ConstantFP::get(Op0->getType(), 1.0); |
| 1133 | |
| 1134 | // -X / X -> -1.0 and |
Benjamin Kramer | 1ee59cb | 2015-06-16 14:57:29 +0000 | [diff] [blame] | 1135 | // X / -X -> -1.0 are legal when NaNs are ignored. |
Benjamin Kramer | 4f05246 | 2015-06-14 18:53:58 +0000 | [diff] [blame] | 1136 | // We can ignore signed zeros because +-0.0/+-0.0 is NaN and ignored. |
| 1137 | if ((BinaryOperator::isFNeg(Op0, /*IgnoreZeroSign=*/true) && |
| 1138 | BinaryOperator::getFNegArgument(Op0) == Op1) || |
| 1139 | (BinaryOperator::isFNeg(Op1, /*IgnoreZeroSign=*/true) && |
| 1140 | BinaryOperator::getFNegArgument(Op1) == Op0)) |
| 1141 | return ConstantFP::get(Op0->getType(), -1.0); |
| 1142 | } |
| 1143 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 1144 | return nullptr; |
Frits van Bommel | c254966 | 2011-01-29 15:26:31 +0000 | [diff] [blame] | 1145 | } |
| 1146 | |
Mehdi Amini | cd3ca6f | 2015-02-23 18:30:25 +0000 | [diff] [blame] | 1147 | Value *llvm::SimplifyFDivInst(Value *Op0, Value *Op1, FastMathFlags FMF, |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1148 | const DataLayout &DL, |
Chad Rosier | c24b86f | 2011-12-01 03:08:23 +0000 | [diff] [blame] | 1149 | const TargetLibraryInfo *TLI, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1150 | const DominatorTree *DT, AssumptionCache *AC, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 1151 | const Instruction *CxtI) { |
Mehdi Amini | cd3ca6f | 2015-02-23 18:30:25 +0000 | [diff] [blame] | 1152 | return ::SimplifyFDivInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI), |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 1153 | RecursionLimit); |
Frits van Bommel | c254966 | 2011-01-29 15:26:31 +0000 | [diff] [blame] | 1154 | } |
| 1155 | |
Duncan Sands | a3e3699 | 2011-05-02 16:27:02 +0000 | [diff] [blame] | 1156 | /// SimplifyRem - Given operands for an SRem or URem, see if we can |
| 1157 | /// fold the result. If not, this returns null. |
| 1158 | static Value *SimplifyRem(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1159 | const Query &Q, unsigned MaxRecurse) { |
Duncan Sands | a3e3699 | 2011-05-02 16:27:02 +0000 | [diff] [blame] | 1160 | if (Constant *C0 = dyn_cast<Constant>(Op0)) { |
| 1161 | if (Constant *C1 = dyn_cast<Constant>(Op1)) { |
| 1162 | Constant *Ops[] = { C0, C1 }; |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 1163 | return ConstantFoldInstOperands(Opcode, C0->getType(), Ops, Q.DL, Q.TLI); |
Duncan Sands | a3e3699 | 2011-05-02 16:27:02 +0000 | [diff] [blame] | 1164 | } |
| 1165 | } |
| 1166 | |
Duncan Sands | a3e3699 | 2011-05-02 16:27:02 +0000 | [diff] [blame] | 1167 | // X % undef -> undef |
| 1168 | if (match(Op1, m_Undef())) |
| 1169 | return Op1; |
| 1170 | |
| 1171 | // undef % X -> 0 |
| 1172 | if (match(Op0, m_Undef())) |
| 1173 | return Constant::getNullValue(Op0->getType()); |
| 1174 | |
| 1175 | // 0 % X -> 0, we don't need to preserve faults! |
| 1176 | if (match(Op0, m_Zero())) |
| 1177 | return Op0; |
| 1178 | |
| 1179 | // X % 0 -> undef, we don't need to preserve faults! |
| 1180 | if (match(Op1, m_Zero())) |
| 1181 | return UndefValue::get(Op0->getType()); |
| 1182 | |
| 1183 | // X % 1 -> 0 |
| 1184 | if (match(Op1, m_One())) |
| 1185 | return Constant::getNullValue(Op0->getType()); |
| 1186 | |
| 1187 | if (Op0->getType()->isIntegerTy(1)) |
| 1188 | // It can't be remainder by zero, hence it must be remainder by one. |
| 1189 | return Constant::getNullValue(Op0->getType()); |
| 1190 | |
| 1191 | // X % X -> 0 |
| 1192 | if (Op0 == Op1) |
| 1193 | return Constant::getNullValue(Op0->getType()); |
| 1194 | |
David Majnemer | b435a42 | 2014-09-17 04:16:35 +0000 | [diff] [blame] | 1195 | // (X % Y) % Y -> X % Y |
| 1196 | if ((Opcode == Instruction::SRem && |
| 1197 | match(Op0, m_SRem(m_Value(), m_Specific(Op1)))) || |
| 1198 | (Opcode == Instruction::URem && |
| 1199 | match(Op0, m_URem(m_Value(), m_Specific(Op1))))) |
David Majnemer | ac717f0 | 2014-09-17 03:34:34 +0000 | [diff] [blame] | 1200 | return Op0; |
David Majnemer | ac717f0 | 2014-09-17 03:34:34 +0000 | [diff] [blame] | 1201 | |
Duncan Sands | a3e3699 | 2011-05-02 16:27:02 +0000 | [diff] [blame] | 1202 | // If the operation is with the result of a select instruction, check whether |
| 1203 | // operating on either branch of the select always yields the same value. |
| 1204 | if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1)) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1205 | if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse)) |
Duncan Sands | a3e3699 | 2011-05-02 16:27:02 +0000 | [diff] [blame] | 1206 | return V; |
| 1207 | |
| 1208 | // If the operation is with the result of a phi instruction, check whether |
| 1209 | // operating on all incoming values of the phi always yields the same value. |
| 1210 | if (isa<PHINode>(Op0) || isa<PHINode>(Op1)) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1211 | if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse)) |
Duncan Sands | a3e3699 | 2011-05-02 16:27:02 +0000 | [diff] [blame] | 1212 | return V; |
| 1213 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 1214 | return nullptr; |
Duncan Sands | a3e3699 | 2011-05-02 16:27:02 +0000 | [diff] [blame] | 1215 | } |
| 1216 | |
| 1217 | /// SimplifySRemInst - Given operands for an SRem, see if we can |
| 1218 | /// fold the result. If not, this returns null. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1219 | static Value *SimplifySRemInst(Value *Op0, Value *Op1, const Query &Q, |
| 1220 | unsigned MaxRecurse) { |
| 1221 | if (Value *V = SimplifyRem(Instruction::SRem, Op0, Op1, Q, MaxRecurse)) |
Duncan Sands | a3e3699 | 2011-05-02 16:27:02 +0000 | [diff] [blame] | 1222 | return V; |
| 1223 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 1224 | return nullptr; |
Duncan Sands | a3e3699 | 2011-05-02 16:27:02 +0000 | [diff] [blame] | 1225 | } |
| 1226 | |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1227 | Value *llvm::SimplifySRemInst(Value *Op0, Value *Op1, const DataLayout &DL, |
Chad Rosier | c24b86f | 2011-12-01 03:08:23 +0000 | [diff] [blame] | 1228 | const TargetLibraryInfo *TLI, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1229 | const DominatorTree *DT, AssumptionCache *AC, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 1230 | const Instruction *CxtI) { |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1231 | return ::SimplifySRemInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI), |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 1232 | RecursionLimit); |
Duncan Sands | a3e3699 | 2011-05-02 16:27:02 +0000 | [diff] [blame] | 1233 | } |
| 1234 | |
| 1235 | /// SimplifyURemInst - Given operands for a URem, see if we can |
| 1236 | /// fold the result. If not, this returns null. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1237 | static Value *SimplifyURemInst(Value *Op0, Value *Op1, const Query &Q, |
Chad Rosier | c24b86f | 2011-12-01 03:08:23 +0000 | [diff] [blame] | 1238 | unsigned MaxRecurse) { |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1239 | if (Value *V = SimplifyRem(Instruction::URem, Op0, Op1, Q, MaxRecurse)) |
Duncan Sands | a3e3699 | 2011-05-02 16:27:02 +0000 | [diff] [blame] | 1240 | return V; |
| 1241 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 1242 | return nullptr; |
Duncan Sands | a3e3699 | 2011-05-02 16:27:02 +0000 | [diff] [blame] | 1243 | } |
| 1244 | |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1245 | Value *llvm::SimplifyURemInst(Value *Op0, Value *Op1, const DataLayout &DL, |
Chad Rosier | c24b86f | 2011-12-01 03:08:23 +0000 | [diff] [blame] | 1246 | const TargetLibraryInfo *TLI, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1247 | const DominatorTree *DT, AssumptionCache *AC, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 1248 | const Instruction *CxtI) { |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1249 | return ::SimplifyURemInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI), |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 1250 | RecursionLimit); |
Duncan Sands | a3e3699 | 2011-05-02 16:27:02 +0000 | [diff] [blame] | 1251 | } |
| 1252 | |
Mehdi Amini | cd3ca6f | 2015-02-23 18:30:25 +0000 | [diff] [blame] | 1253 | static Value *SimplifyFRemInst(Value *Op0, Value *Op1, FastMathFlags FMF, |
| 1254 | const Query &, unsigned) { |
Duncan Sands | a3e3699 | 2011-05-02 16:27:02 +0000 | [diff] [blame] | 1255 | // undef % X -> undef (the undef could be a snan). |
| 1256 | if (match(Op0, m_Undef())) |
| 1257 | return Op0; |
| 1258 | |
| 1259 | // X % undef -> undef |
| 1260 | if (match(Op1, m_Undef())) |
| 1261 | return Op1; |
| 1262 | |
Mehdi Amini | cd3ca6f | 2015-02-23 18:30:25 +0000 | [diff] [blame] | 1263 | // 0 % X -> 0 |
| 1264 | // Requires that NaNs are off (X could be zero) and signed zeroes are |
| 1265 | // ignored (X could be positive or negative, so the output sign is unknown). |
| 1266 | if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op0, m_AnyZero())) |
| 1267 | return Op0; |
| 1268 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 1269 | return nullptr; |
Duncan Sands | a3e3699 | 2011-05-02 16:27:02 +0000 | [diff] [blame] | 1270 | } |
| 1271 | |
Mehdi Amini | cd3ca6f | 2015-02-23 18:30:25 +0000 | [diff] [blame] | 1272 | Value *llvm::SimplifyFRemInst(Value *Op0, Value *Op1, FastMathFlags FMF, |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1273 | const DataLayout &DL, |
Chad Rosier | c24b86f | 2011-12-01 03:08:23 +0000 | [diff] [blame] | 1274 | const TargetLibraryInfo *TLI, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1275 | const DominatorTree *DT, AssumptionCache *AC, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 1276 | const Instruction *CxtI) { |
Mehdi Amini | cd3ca6f | 2015-02-23 18:30:25 +0000 | [diff] [blame] | 1277 | return ::SimplifyFRemInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI), |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 1278 | RecursionLimit); |
Duncan Sands | a3e3699 | 2011-05-02 16:27:02 +0000 | [diff] [blame] | 1279 | } |
| 1280 | |
Benjamin Kramer | 5e1794e | 2014-01-24 17:09:53 +0000 | [diff] [blame] | 1281 | /// isUndefShift - Returns true if a shift by \c Amount always yields undef. |
| 1282 | static bool isUndefShift(Value *Amount) { |
| 1283 | Constant *C = dyn_cast<Constant>(Amount); |
| 1284 | if (!C) |
| 1285 | return false; |
| 1286 | |
| 1287 | // X shift by undef -> undef because it may shift by the bitwidth. |
| 1288 | if (isa<UndefValue>(C)) |
| 1289 | return true; |
| 1290 | |
| 1291 | // Shifting by the bitwidth or more is undefined. |
| 1292 | if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) |
| 1293 | if (CI->getValue().getLimitedValue() >= |
| 1294 | CI->getType()->getScalarSizeInBits()) |
| 1295 | return true; |
| 1296 | |
| 1297 | // If all lanes of a vector shift are undefined the whole shift is. |
| 1298 | if (isa<ConstantVector>(C) || isa<ConstantDataVector>(C)) { |
| 1299 | for (unsigned I = 0, E = C->getType()->getVectorNumElements(); I != E; ++I) |
| 1300 | if (!isUndefShift(C->getAggregateElement(I))) |
| 1301 | return false; |
| 1302 | return true; |
| 1303 | } |
| 1304 | |
| 1305 | return false; |
| 1306 | } |
| 1307 | |
Duncan Sands | 571fd9a | 2011-01-14 14:44:12 +0000 | [diff] [blame] | 1308 | /// SimplifyShift - Given operands for an Shl, LShr or AShr, see if we can |
Duncan Sands | 7f60dc1 | 2011-01-14 00:37:45 +0000 | [diff] [blame] | 1309 | /// fold the result. If not, this returns null. |
Duncan Sands | 571fd9a | 2011-01-14 14:44:12 +0000 | [diff] [blame] | 1310 | static Value *SimplifyShift(unsigned Opcode, Value *Op0, Value *Op1, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1311 | const Query &Q, unsigned MaxRecurse) { |
Duncan Sands | 7f60dc1 | 2011-01-14 00:37:45 +0000 | [diff] [blame] | 1312 | if (Constant *C0 = dyn_cast<Constant>(Op0)) { |
| 1313 | if (Constant *C1 = dyn_cast<Constant>(Op1)) { |
| 1314 | Constant *Ops[] = { C0, C1 }; |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 1315 | return ConstantFoldInstOperands(Opcode, C0->getType(), Ops, Q.DL, Q.TLI); |
Duncan Sands | 7f60dc1 | 2011-01-14 00:37:45 +0000 | [diff] [blame] | 1316 | } |
| 1317 | } |
| 1318 | |
Duncan Sands | 571fd9a | 2011-01-14 14:44:12 +0000 | [diff] [blame] | 1319 | // 0 shift by X -> 0 |
Duncan Sands | 7f60dc1 | 2011-01-14 00:37:45 +0000 | [diff] [blame] | 1320 | if (match(Op0, m_Zero())) |
| 1321 | return Op0; |
| 1322 | |
Duncan Sands | 571fd9a | 2011-01-14 14:44:12 +0000 | [diff] [blame] | 1323 | // X shift by 0 -> X |
Duncan Sands | 7f60dc1 | 2011-01-14 00:37:45 +0000 | [diff] [blame] | 1324 | if (match(Op1, m_Zero())) |
| 1325 | return Op0; |
| 1326 | |
Benjamin Kramer | 5e1794e | 2014-01-24 17:09:53 +0000 | [diff] [blame] | 1327 | // Fold undefined shifts. |
| 1328 | if (isUndefShift(Op1)) |
| 1329 | return UndefValue::get(Op0->getType()); |
Duncan Sands | 7f60dc1 | 2011-01-14 00:37:45 +0000 | [diff] [blame] | 1330 | |
Duncan Sands | 571fd9a | 2011-01-14 14:44:12 +0000 | [diff] [blame] | 1331 | // If the operation is with the result of a select instruction, check whether |
| 1332 | // operating on either branch of the select always yields the same value. |
| 1333 | if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1)) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1334 | if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse)) |
Duncan Sands | 571fd9a | 2011-01-14 14:44:12 +0000 | [diff] [blame] | 1335 | return V; |
| 1336 | |
| 1337 | // If the operation is with the result of a phi instruction, check whether |
| 1338 | // operating on all incoming values of the phi always yields the same value. |
| 1339 | if (isa<PHINode>(Op0) || isa<PHINode>(Op1)) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1340 | if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse)) |
Duncan Sands | 571fd9a | 2011-01-14 14:44:12 +0000 | [diff] [blame] | 1341 | return V; |
| 1342 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 1343 | return nullptr; |
Duncan Sands | 571fd9a | 2011-01-14 14:44:12 +0000 | [diff] [blame] | 1344 | } |
| 1345 | |
David Majnemer | bf7550e | 2014-11-05 00:59:59 +0000 | [diff] [blame] | 1346 | /// \brief Given operands for an Shl, LShr or AShr, see if we can |
| 1347 | /// fold the result. If not, this returns null. |
| 1348 | static Value *SimplifyRightShift(unsigned Opcode, Value *Op0, Value *Op1, |
| 1349 | bool isExact, const Query &Q, |
| 1350 | unsigned MaxRecurse) { |
| 1351 | if (Value *V = SimplifyShift(Opcode, Op0, Op1, Q, MaxRecurse)) |
| 1352 | return V; |
| 1353 | |
| 1354 | // X >> X -> 0 |
| 1355 | if (Op0 == Op1) |
| 1356 | return Constant::getNullValue(Op0->getType()); |
| 1357 | |
David Majnemer | 65c52ae | 2014-12-17 01:54:33 +0000 | [diff] [blame] | 1358 | // undef >> X -> 0 |
| 1359 | // undef >> X -> undef (if it's exact) |
| 1360 | if (match(Op0, m_Undef())) |
| 1361 | return isExact ? Op0 : Constant::getNullValue(Op0->getType()); |
| 1362 | |
David Majnemer | bf7550e | 2014-11-05 00:59:59 +0000 | [diff] [blame] | 1363 | // The low bit cannot be shifted out of an exact shift if it is set. |
| 1364 | if (isExact) { |
| 1365 | unsigned BitWidth = Op0->getType()->getScalarSizeInBits(); |
| 1366 | APInt Op0KnownZero(BitWidth, 0); |
| 1367 | APInt Op0KnownOne(BitWidth, 0); |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1368 | computeKnownBits(Op0, Op0KnownZero, Op0KnownOne, Q.DL, /*Depth=*/0, Q.AC, |
| 1369 | Q.CxtI, Q.DT); |
David Majnemer | bf7550e | 2014-11-05 00:59:59 +0000 | [diff] [blame] | 1370 | if (Op0KnownOne[0]) |
| 1371 | return Op0; |
| 1372 | } |
| 1373 | |
| 1374 | return nullptr; |
| 1375 | } |
| 1376 | |
Duncan Sands | 571fd9a | 2011-01-14 14:44:12 +0000 | [diff] [blame] | 1377 | /// SimplifyShlInst - Given operands for an Shl, see if we can |
| 1378 | /// fold the result. If not, this returns null. |
Chris Lattner | 9e4aa02 | 2011-02-09 17:15:04 +0000 | [diff] [blame] | 1379 | static Value *SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1380 | const Query &Q, unsigned MaxRecurse) { |
| 1381 | if (Value *V = SimplifyShift(Instruction::Shl, Op0, Op1, Q, MaxRecurse)) |
Duncan Sands | 571fd9a | 2011-01-14 14:44:12 +0000 | [diff] [blame] | 1382 | return V; |
| 1383 | |
| 1384 | // undef << X -> 0 |
David Majnemer | 65c52ae | 2014-12-17 01:54:33 +0000 | [diff] [blame] | 1385 | // undef << X -> undef if (if it's NSW/NUW) |
Duncan Sands | a29ea9a | 2011-02-01 09:06:20 +0000 | [diff] [blame] | 1386 | if (match(Op0, m_Undef())) |
David Majnemer | 65c52ae | 2014-12-17 01:54:33 +0000 | [diff] [blame] | 1387 | return isNSW || isNUW ? Op0 : Constant::getNullValue(Op0->getType()); |
Duncan Sands | 571fd9a | 2011-01-14 14:44:12 +0000 | [diff] [blame] | 1388 | |
Chris Lattner | 9e4aa02 | 2011-02-09 17:15:04 +0000 | [diff] [blame] | 1389 | // (X >> A) << A -> X |
| 1390 | Value *X; |
Benjamin Kramer | 9442cd0 | 2012-01-01 17:55:30 +0000 | [diff] [blame] | 1391 | if (match(Op0, m_Exact(m_Shr(m_Value(X), m_Specific(Op1))))) |
Chris Lattner | 9e4aa02 | 2011-02-09 17:15:04 +0000 | [diff] [blame] | 1392 | return X; |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 1393 | return nullptr; |
Duncan Sands | 7f60dc1 | 2011-01-14 00:37:45 +0000 | [diff] [blame] | 1394 | } |
| 1395 | |
Chris Lattner | 9e4aa02 | 2011-02-09 17:15:04 +0000 | [diff] [blame] | 1396 | Value *llvm::SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1397 | const DataLayout &DL, const TargetLibraryInfo *TLI, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1398 | const DominatorTree *DT, AssumptionCache *AC, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 1399 | const Instruction *CxtI) { |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1400 | return ::SimplifyShlInst(Op0, Op1, isNSW, isNUW, Query(DL, TLI, DT, AC, CxtI), |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1401 | RecursionLimit); |
Duncan Sands | 7f60dc1 | 2011-01-14 00:37:45 +0000 | [diff] [blame] | 1402 | } |
| 1403 | |
| 1404 | /// SimplifyLShrInst - Given operands for an LShr, see if we can |
| 1405 | /// fold the result. If not, this returns null. |
Chris Lattner | 9e4aa02 | 2011-02-09 17:15:04 +0000 | [diff] [blame] | 1406 | static Value *SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1407 | const Query &Q, unsigned MaxRecurse) { |
David Majnemer | bf7550e | 2014-11-05 00:59:59 +0000 | [diff] [blame] | 1408 | if (Value *V = SimplifyRightShift(Instruction::LShr, Op0, Op1, isExact, Q, |
| 1409 | MaxRecurse)) |
| 1410 | return V; |
David Majnemer | a80fed7 | 2013-07-09 22:01:22 +0000 | [diff] [blame] | 1411 | |
Chris Lattner | 9e4aa02 | 2011-02-09 17:15:04 +0000 | [diff] [blame] | 1412 | // (X << A) >> A -> X |
| 1413 | Value *X; |
David Majnemer | 4f43837 | 2014-11-04 17:38:50 +0000 | [diff] [blame] | 1414 | if (match(Op0, m_NUWShl(m_Value(X), m_Specific(Op1)))) |
Chris Lattner | 9e4aa02 | 2011-02-09 17:15:04 +0000 | [diff] [blame] | 1415 | return X; |
Duncan Sands | d114ab3 | 2011-02-13 17:15:40 +0000 | [diff] [blame] | 1416 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 1417 | return nullptr; |
Duncan Sands | 7f60dc1 | 2011-01-14 00:37:45 +0000 | [diff] [blame] | 1418 | } |
| 1419 | |
Chris Lattner | 9e4aa02 | 2011-02-09 17:15:04 +0000 | [diff] [blame] | 1420 | Value *llvm::SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact, |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1421 | const DataLayout &DL, |
Chad Rosier | c24b86f | 2011-12-01 03:08:23 +0000 | [diff] [blame] | 1422 | const TargetLibraryInfo *TLI, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1423 | const DominatorTree *DT, AssumptionCache *AC, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 1424 | const Instruction *CxtI) { |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1425 | return ::SimplifyLShrInst(Op0, Op1, isExact, Query(DL, TLI, DT, AC, CxtI), |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1426 | RecursionLimit); |
Duncan Sands | 7f60dc1 | 2011-01-14 00:37:45 +0000 | [diff] [blame] | 1427 | } |
| 1428 | |
| 1429 | /// SimplifyAShrInst - Given operands for an AShr, see if we can |
| 1430 | /// fold the result. If not, this returns null. |
Chris Lattner | 9e4aa02 | 2011-02-09 17:15:04 +0000 | [diff] [blame] | 1431 | static Value *SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1432 | const Query &Q, unsigned MaxRecurse) { |
David Majnemer | bf7550e | 2014-11-05 00:59:59 +0000 | [diff] [blame] | 1433 | if (Value *V = SimplifyRightShift(Instruction::AShr, Op0, Op1, isExact, Q, |
| 1434 | MaxRecurse)) |
Duncan Sands | 571fd9a | 2011-01-14 14:44:12 +0000 | [diff] [blame] | 1435 | return V; |
Duncan Sands | 7f60dc1 | 2011-01-14 00:37:45 +0000 | [diff] [blame] | 1436 | |
| 1437 | // all ones >>a X -> all ones |
| 1438 | if (match(Op0, m_AllOnes())) |
| 1439 | return Op0; |
| 1440 | |
Chris Lattner | 9e4aa02 | 2011-02-09 17:15:04 +0000 | [diff] [blame] | 1441 | // (X << A) >> A -> X |
| 1442 | Value *X; |
David Majnemer | 2de97fc | 2014-11-04 17:47:13 +0000 | [diff] [blame] | 1443 | if (match(Op0, m_NSWShl(m_Value(X), m_Specific(Op1)))) |
Chris Lattner | 9e4aa02 | 2011-02-09 17:15:04 +0000 | [diff] [blame] | 1444 | return X; |
Duncan Sands | d114ab3 | 2011-02-13 17:15:40 +0000 | [diff] [blame] | 1445 | |
Suyog Sarda | 6886241 | 2014-07-17 06:28:15 +0000 | [diff] [blame] | 1446 | // Arithmetic shifting an all-sign-bit value is a no-op. |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1447 | unsigned NumSignBits = ComputeNumSignBits(Op0, Q.DL, 0, Q.AC, Q.CxtI, Q.DT); |
Suyog Sarda | 6886241 | 2014-07-17 06:28:15 +0000 | [diff] [blame] | 1448 | if (NumSignBits == Op0->getType()->getScalarSizeInBits()) |
| 1449 | return Op0; |
| 1450 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 1451 | return nullptr; |
Duncan Sands | 7f60dc1 | 2011-01-14 00:37:45 +0000 | [diff] [blame] | 1452 | } |
| 1453 | |
Chris Lattner | 9e4aa02 | 2011-02-09 17:15:04 +0000 | [diff] [blame] | 1454 | Value *llvm::SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact, |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1455 | const DataLayout &DL, |
Chad Rosier | c24b86f | 2011-12-01 03:08:23 +0000 | [diff] [blame] | 1456 | const TargetLibraryInfo *TLI, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1457 | const DominatorTree *DT, AssumptionCache *AC, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 1458 | const Instruction *CxtI) { |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1459 | return ::SimplifyAShrInst(Op0, Op1, isExact, Query(DL, TLI, DT, AC, CxtI), |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1460 | RecursionLimit); |
Duncan Sands | 7f60dc1 | 2011-01-14 00:37:45 +0000 | [diff] [blame] | 1461 | } |
| 1462 | |
David Majnemer | 1af36e5 | 2014-12-06 10:51:40 +0000 | [diff] [blame] | 1463 | static Value *simplifyUnsignedRangeCheck(ICmpInst *ZeroICmp, |
| 1464 | ICmpInst *UnsignedICmp, bool IsAnd) { |
| 1465 | Value *X, *Y; |
| 1466 | |
| 1467 | ICmpInst::Predicate EqPred; |
David Majnemer | d5b3aa4 | 2014-12-08 18:30:43 +0000 | [diff] [blame] | 1468 | if (!match(ZeroICmp, m_ICmp(EqPred, m_Value(Y), m_Zero())) || |
| 1469 | !ICmpInst::isEquality(EqPred)) |
David Majnemer | 1af36e5 | 2014-12-06 10:51:40 +0000 | [diff] [blame] | 1470 | return nullptr; |
| 1471 | |
| 1472 | ICmpInst::Predicate UnsignedPred; |
| 1473 | if (match(UnsignedICmp, m_ICmp(UnsignedPred, m_Value(X), m_Specific(Y))) && |
| 1474 | ICmpInst::isUnsigned(UnsignedPred)) |
| 1475 | ; |
| 1476 | else if (match(UnsignedICmp, |
| 1477 | m_ICmp(UnsignedPred, m_Value(Y), m_Specific(X))) && |
| 1478 | ICmpInst::isUnsigned(UnsignedPred)) |
| 1479 | UnsignedPred = ICmpInst::getSwappedPredicate(UnsignedPred); |
| 1480 | else |
| 1481 | return nullptr; |
| 1482 | |
| 1483 | // X < Y && Y != 0 --> X < Y |
| 1484 | // X < Y || Y != 0 --> Y != 0 |
| 1485 | if (UnsignedPred == ICmpInst::ICMP_ULT && EqPred == ICmpInst::ICMP_NE) |
| 1486 | return IsAnd ? UnsignedICmp : ZeroICmp; |
| 1487 | |
| 1488 | // X >= Y || Y != 0 --> true |
| 1489 | // X >= Y || Y == 0 --> X >= Y |
| 1490 | if (UnsignedPred == ICmpInst::ICMP_UGE && !IsAnd) { |
| 1491 | if (EqPred == ICmpInst::ICMP_NE) |
| 1492 | return getTrue(UnsignedICmp->getType()); |
| 1493 | return UnsignedICmp; |
| 1494 | } |
| 1495 | |
David Majnemer | d5b3aa4 | 2014-12-08 18:30:43 +0000 | [diff] [blame] | 1496 | // X < Y && Y == 0 --> false |
| 1497 | if (UnsignedPred == ICmpInst::ICMP_ULT && EqPred == ICmpInst::ICMP_EQ && |
| 1498 | IsAnd) |
| 1499 | return getFalse(UnsignedICmp->getType()); |
| 1500 | |
David Majnemer | 1af36e5 | 2014-12-06 10:51:40 +0000 | [diff] [blame] | 1501 | return nullptr; |
| 1502 | } |
| 1503 | |
David Majnemer | a315bd8 | 2014-09-15 08:15:28 +0000 | [diff] [blame] | 1504 | // Simplify (and (icmp ...) (icmp ...)) to true when we can tell that the range |
| 1505 | // of possible values cannot be satisfied. |
| 1506 | static Value *SimplifyAndOfICmps(ICmpInst *Op0, ICmpInst *Op1) { |
| 1507 | ICmpInst::Predicate Pred0, Pred1; |
| 1508 | ConstantInt *CI1, *CI2; |
| 1509 | Value *V; |
David Majnemer | 1af36e5 | 2014-12-06 10:51:40 +0000 | [diff] [blame] | 1510 | |
| 1511 | if (Value *X = simplifyUnsignedRangeCheck(Op0, Op1, /*IsAnd=*/true)) |
| 1512 | return X; |
| 1513 | |
David Majnemer | a315bd8 | 2014-09-15 08:15:28 +0000 | [diff] [blame] | 1514 | if (!match(Op0, m_ICmp(Pred0, m_Add(m_Value(V), m_ConstantInt(CI1)), |
| 1515 | m_ConstantInt(CI2)))) |
| 1516 | return nullptr; |
| 1517 | |
| 1518 | if (!match(Op1, m_ICmp(Pred1, m_Specific(V), m_Specific(CI1)))) |
| 1519 | return nullptr; |
| 1520 | |
| 1521 | Type *ITy = Op0->getType(); |
| 1522 | |
| 1523 | auto *AddInst = cast<BinaryOperator>(Op0->getOperand(0)); |
| 1524 | bool isNSW = AddInst->hasNoSignedWrap(); |
| 1525 | bool isNUW = AddInst->hasNoUnsignedWrap(); |
| 1526 | |
| 1527 | const APInt &CI1V = CI1->getValue(); |
| 1528 | const APInt &CI2V = CI2->getValue(); |
| 1529 | const APInt Delta = CI2V - CI1V; |
| 1530 | if (CI1V.isStrictlyPositive()) { |
| 1531 | if (Delta == 2) { |
| 1532 | if (Pred0 == ICmpInst::ICMP_ULT && Pred1 == ICmpInst::ICMP_SGT) |
| 1533 | return getFalse(ITy); |
| 1534 | if (Pred0 == ICmpInst::ICMP_SLT && Pred1 == ICmpInst::ICMP_SGT && isNSW) |
| 1535 | return getFalse(ITy); |
| 1536 | } |
| 1537 | if (Delta == 1) { |
| 1538 | if (Pred0 == ICmpInst::ICMP_ULE && Pred1 == ICmpInst::ICMP_SGT) |
| 1539 | return getFalse(ITy); |
| 1540 | if (Pred0 == ICmpInst::ICMP_SLE && Pred1 == ICmpInst::ICMP_SGT && isNSW) |
| 1541 | return getFalse(ITy); |
| 1542 | } |
| 1543 | } |
| 1544 | if (CI1V.getBoolValue() && isNUW) { |
| 1545 | if (Delta == 2) |
| 1546 | if (Pred0 == ICmpInst::ICMP_ULT && Pred1 == ICmpInst::ICMP_UGT) |
| 1547 | return getFalse(ITy); |
| 1548 | if (Delta == 1) |
| 1549 | if (Pred0 == ICmpInst::ICMP_ULE && Pred1 == ICmpInst::ICMP_UGT) |
| 1550 | return getFalse(ITy); |
| 1551 | } |
| 1552 | |
| 1553 | return nullptr; |
| 1554 | } |
| 1555 | |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1556 | /// SimplifyAndInst - Given operands for an And, see if we can |
Chris Lattner | 084a1b5 | 2009-11-09 22:57:59 +0000 | [diff] [blame] | 1557 | /// fold the result. If not, this returns null. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1558 | static Value *SimplifyAndInst(Value *Op0, Value *Op1, const Query &Q, |
Chad Rosier | c24b86f | 2011-12-01 03:08:23 +0000 | [diff] [blame] | 1559 | unsigned MaxRecurse) { |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1560 | if (Constant *CLHS = dyn_cast<Constant>(Op0)) { |
| 1561 | if (Constant *CRHS = dyn_cast<Constant>(Op1)) { |
| 1562 | Constant *Ops[] = { CLHS, CRHS }; |
| 1563 | return ConstantFoldInstOperands(Instruction::And, CLHS->getType(), |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 1564 | Ops, Q.DL, Q.TLI); |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1565 | } |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 1566 | |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1567 | // Canonicalize the constant to the RHS. |
| 1568 | std::swap(Op0, Op1); |
| 1569 | } |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 1570 | |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1571 | // X & undef -> 0 |
Duncan Sands | a29ea9a | 2011-02-01 09:06:20 +0000 | [diff] [blame] | 1572 | if (match(Op1, m_Undef())) |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1573 | return Constant::getNullValue(Op0->getType()); |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 1574 | |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1575 | // X & X = X |
Duncan Sands | 772749a | 2011-01-01 20:08:02 +0000 | [diff] [blame] | 1576 | if (Op0 == Op1) |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1577 | return Op0; |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 1578 | |
Duncan Sands | c89ac07 | 2010-11-17 18:52:15 +0000 | [diff] [blame] | 1579 | // X & 0 = 0 |
| 1580 | if (match(Op1, m_Zero())) |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1581 | return Op1; |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 1582 | |
Duncan Sands | c89ac07 | 2010-11-17 18:52:15 +0000 | [diff] [blame] | 1583 | // X & -1 = X |
| 1584 | if (match(Op1, m_AllOnes())) |
| 1585 | return Op0; |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 1586 | |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1587 | // A & ~A = ~A & A = 0 |
Chris Lattner | 9e4aa02 | 2011-02-09 17:15:04 +0000 | [diff] [blame] | 1588 | if (match(Op0, m_Not(m_Specific(Op1))) || |
| 1589 | match(Op1, m_Not(m_Specific(Op0)))) |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1590 | return Constant::getNullValue(Op0->getType()); |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 1591 | |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1592 | // (A | ?) & A = A |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 1593 | Value *A = nullptr, *B = nullptr; |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1594 | if (match(Op0, m_Or(m_Value(A), m_Value(B))) && |
Duncan Sands | 772749a | 2011-01-01 20:08:02 +0000 | [diff] [blame] | 1595 | (A == Op1 || B == Op1)) |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1596 | return Op1; |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 1597 | |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1598 | // A & (A | ?) = A |
| 1599 | if (match(Op1, m_Or(m_Value(A), m_Value(B))) && |
Duncan Sands | 772749a | 2011-01-01 20:08:02 +0000 | [diff] [blame] | 1600 | (A == Op0 || B == Op0)) |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1601 | return Op0; |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 1602 | |
Duncan Sands | ba286d7 | 2011-10-26 20:55:21 +0000 | [diff] [blame] | 1603 | // A & (-A) = A if A is a power of two or zero. |
| 1604 | if (match(Op0, m_Neg(m_Specific(Op1))) || |
| 1605 | match(Op1, m_Neg(m_Specific(Op0)))) { |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1606 | if (isKnownToBeAPowerOfTwo(Op0, Q.DL, /*OrZero*/ true, 0, Q.AC, Q.CxtI, |
| 1607 | Q.DT)) |
Duncan Sands | ba286d7 | 2011-10-26 20:55:21 +0000 | [diff] [blame] | 1608 | return Op0; |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1609 | if (isKnownToBeAPowerOfTwo(Op1, Q.DL, /*OrZero*/ true, 0, Q.AC, Q.CxtI, |
| 1610 | Q.DT)) |
Duncan Sands | ba286d7 | 2011-10-26 20:55:21 +0000 | [diff] [blame] | 1611 | return Op1; |
| 1612 | } |
| 1613 | |
David Majnemer | a315bd8 | 2014-09-15 08:15:28 +0000 | [diff] [blame] | 1614 | if (auto *ICILHS = dyn_cast<ICmpInst>(Op0)) { |
| 1615 | if (auto *ICIRHS = dyn_cast<ICmpInst>(Op1)) { |
| 1616 | if (Value *V = SimplifyAndOfICmps(ICILHS, ICIRHS)) |
| 1617 | return V; |
| 1618 | if (Value *V = SimplifyAndOfICmps(ICIRHS, ICILHS)) |
| 1619 | return V; |
| 1620 | } |
| 1621 | } |
| 1622 | |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 1623 | // Try some generic simplifications for associative operations. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1624 | if (Value *V = SimplifyAssociativeBinOp(Instruction::And, Op0, Op1, Q, |
| 1625 | MaxRecurse)) |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 1626 | return V; |
Benjamin Kramer | 8c35fb0 | 2010-09-10 22:39:55 +0000 | [diff] [blame] | 1627 | |
Duncan Sands | ee3ec6e | 2010-12-21 13:32:22 +0000 | [diff] [blame] | 1628 | // And distributes over Or. Try some generic simplifications based on this. |
| 1629 | if (Value *V = ExpandBinOp(Instruction::And, Op0, Op1, Instruction::Or, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1630 | Q, MaxRecurse)) |
Duncan Sands | ee3ec6e | 2010-12-21 13:32:22 +0000 | [diff] [blame] | 1631 | return V; |
| 1632 | |
| 1633 | // And distributes over Xor. Try some generic simplifications based on this. |
| 1634 | if (Value *V = ExpandBinOp(Instruction::And, Op0, Op1, Instruction::Xor, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1635 | Q, MaxRecurse)) |
Duncan Sands | ee3ec6e | 2010-12-21 13:32:22 +0000 | [diff] [blame] | 1636 | return V; |
| 1637 | |
Duncan Sands | b0579e9 | 2010-11-10 13:00:08 +0000 | [diff] [blame] | 1638 | // If the operation is with the result of a select instruction, check whether |
| 1639 | // operating on either branch of the select always yields the same value. |
Duncan Sands | f64e690 | 2010-12-21 09:09:15 +0000 | [diff] [blame] | 1640 | if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1)) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1641 | if (Value *V = ThreadBinOpOverSelect(Instruction::And, Op0, Op1, Q, |
| 1642 | MaxRecurse)) |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 1643 | return V; |
| 1644 | |
| 1645 | // If the operation is with the result of a phi instruction, check whether |
| 1646 | // operating on all incoming values of the phi always yields the same value. |
Duncan Sands | f64e690 | 2010-12-21 09:09:15 +0000 | [diff] [blame] | 1647 | if (isa<PHINode>(Op0) || isa<PHINode>(Op1)) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1648 | if (Value *V = ThreadBinOpOverPHI(Instruction::And, Op0, Op1, Q, |
Duncan Sands | f64e690 | 2010-12-21 09:09:15 +0000 | [diff] [blame] | 1649 | MaxRecurse)) |
Duncan Sands | b0579e9 | 2010-11-10 13:00:08 +0000 | [diff] [blame] | 1650 | return V; |
| 1651 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 1652 | return nullptr; |
Chris Lattner | 084a1b5 | 2009-11-09 22:57:59 +0000 | [diff] [blame] | 1653 | } |
| 1654 | |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1655 | Value *llvm::SimplifyAndInst(Value *Op0, Value *Op1, const DataLayout &DL, |
Chad Rosier | c24b86f | 2011-12-01 03:08:23 +0000 | [diff] [blame] | 1656 | const TargetLibraryInfo *TLI, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1657 | const DominatorTree *DT, AssumptionCache *AC, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 1658 | const Instruction *CxtI) { |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1659 | return ::SimplifyAndInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI), |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 1660 | RecursionLimit); |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 1661 | } |
| 1662 | |
David Majnemer | a315bd8 | 2014-09-15 08:15:28 +0000 | [diff] [blame] | 1663 | // Simplify (or (icmp ...) (icmp ...)) to true when we can tell that the union |
| 1664 | // contains all possible values. |
| 1665 | static Value *SimplifyOrOfICmps(ICmpInst *Op0, ICmpInst *Op1) { |
| 1666 | ICmpInst::Predicate Pred0, Pred1; |
| 1667 | ConstantInt *CI1, *CI2; |
| 1668 | Value *V; |
David Majnemer | 1af36e5 | 2014-12-06 10:51:40 +0000 | [diff] [blame] | 1669 | |
| 1670 | if (Value *X = simplifyUnsignedRangeCheck(Op0, Op1, /*IsAnd=*/false)) |
| 1671 | return X; |
| 1672 | |
David Majnemer | a315bd8 | 2014-09-15 08:15:28 +0000 | [diff] [blame] | 1673 | if (!match(Op0, m_ICmp(Pred0, m_Add(m_Value(V), m_ConstantInt(CI1)), |
| 1674 | m_ConstantInt(CI2)))) |
| 1675 | return nullptr; |
| 1676 | |
| 1677 | if (!match(Op1, m_ICmp(Pred1, m_Specific(V), m_Specific(CI1)))) |
| 1678 | return nullptr; |
| 1679 | |
| 1680 | Type *ITy = Op0->getType(); |
| 1681 | |
| 1682 | auto *AddInst = cast<BinaryOperator>(Op0->getOperand(0)); |
| 1683 | bool isNSW = AddInst->hasNoSignedWrap(); |
| 1684 | bool isNUW = AddInst->hasNoUnsignedWrap(); |
| 1685 | |
| 1686 | const APInt &CI1V = CI1->getValue(); |
| 1687 | const APInt &CI2V = CI2->getValue(); |
| 1688 | const APInt Delta = CI2V - CI1V; |
| 1689 | if (CI1V.isStrictlyPositive()) { |
| 1690 | if (Delta == 2) { |
| 1691 | if (Pred0 == ICmpInst::ICMP_UGE && Pred1 == ICmpInst::ICMP_SLE) |
| 1692 | return getTrue(ITy); |
| 1693 | if (Pred0 == ICmpInst::ICMP_SGE && Pred1 == ICmpInst::ICMP_SLE && isNSW) |
| 1694 | return getTrue(ITy); |
| 1695 | } |
| 1696 | if (Delta == 1) { |
| 1697 | if (Pred0 == ICmpInst::ICMP_UGT && Pred1 == ICmpInst::ICMP_SLE) |
| 1698 | return getTrue(ITy); |
| 1699 | if (Pred0 == ICmpInst::ICMP_SGT && Pred1 == ICmpInst::ICMP_SLE && isNSW) |
| 1700 | return getTrue(ITy); |
| 1701 | } |
| 1702 | } |
| 1703 | if (CI1V.getBoolValue() && isNUW) { |
| 1704 | if (Delta == 2) |
| 1705 | if (Pred0 == ICmpInst::ICMP_UGE && Pred1 == ICmpInst::ICMP_ULE) |
| 1706 | return getTrue(ITy); |
| 1707 | if (Delta == 1) |
| 1708 | if (Pred0 == ICmpInst::ICMP_UGT && Pred1 == ICmpInst::ICMP_ULE) |
| 1709 | return getTrue(ITy); |
| 1710 | } |
| 1711 | |
| 1712 | return nullptr; |
| 1713 | } |
| 1714 | |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1715 | /// SimplifyOrInst - Given operands for an Or, see if we can |
| 1716 | /// fold the result. If not, this returns null. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1717 | static Value *SimplifyOrInst(Value *Op0, Value *Op1, const Query &Q, |
| 1718 | unsigned MaxRecurse) { |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1719 | if (Constant *CLHS = dyn_cast<Constant>(Op0)) { |
| 1720 | if (Constant *CRHS = dyn_cast<Constant>(Op1)) { |
| 1721 | Constant *Ops[] = { CLHS, CRHS }; |
| 1722 | return ConstantFoldInstOperands(Instruction::Or, CLHS->getType(), |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 1723 | Ops, Q.DL, Q.TLI); |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1724 | } |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 1725 | |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1726 | // Canonicalize the constant to the RHS. |
| 1727 | std::swap(Op0, Op1); |
| 1728 | } |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 1729 | |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1730 | // X | undef -> -1 |
Duncan Sands | a29ea9a | 2011-02-01 09:06:20 +0000 | [diff] [blame] | 1731 | if (match(Op1, m_Undef())) |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1732 | return Constant::getAllOnesValue(Op0->getType()); |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 1733 | |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1734 | // X | X = X |
Duncan Sands | 772749a | 2011-01-01 20:08:02 +0000 | [diff] [blame] | 1735 | if (Op0 == Op1) |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1736 | return Op0; |
| 1737 | |
Duncan Sands | c89ac07 | 2010-11-17 18:52:15 +0000 | [diff] [blame] | 1738 | // X | 0 = X |
| 1739 | if (match(Op1, m_Zero())) |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1740 | return Op0; |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 1741 | |
Duncan Sands | c89ac07 | 2010-11-17 18:52:15 +0000 | [diff] [blame] | 1742 | // X | -1 = -1 |
| 1743 | if (match(Op1, m_AllOnes())) |
| 1744 | return Op1; |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 1745 | |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1746 | // A | ~A = ~A | A = -1 |
Chris Lattner | 9e4aa02 | 2011-02-09 17:15:04 +0000 | [diff] [blame] | 1747 | if (match(Op0, m_Not(m_Specific(Op1))) || |
| 1748 | match(Op1, m_Not(m_Specific(Op0)))) |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1749 | return Constant::getAllOnesValue(Op0->getType()); |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 1750 | |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1751 | // (A & ?) | A = A |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 1752 | Value *A = nullptr, *B = nullptr; |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1753 | if (match(Op0, m_And(m_Value(A), m_Value(B))) && |
Duncan Sands | 772749a | 2011-01-01 20:08:02 +0000 | [diff] [blame] | 1754 | (A == Op1 || B == Op1)) |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1755 | return Op1; |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 1756 | |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1757 | // A | (A & ?) = A |
| 1758 | if (match(Op1, m_And(m_Value(A), m_Value(B))) && |
Duncan Sands | 772749a | 2011-01-01 20:08:02 +0000 | [diff] [blame] | 1759 | (A == Op0 || B == Op0)) |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1760 | return Op0; |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 1761 | |
Benjamin Kramer | 5b7a4e0 | 2011-02-20 15:20:01 +0000 | [diff] [blame] | 1762 | // ~(A & ?) | A = -1 |
| 1763 | if (match(Op0, m_Not(m_And(m_Value(A), m_Value(B)))) && |
| 1764 | (A == Op1 || B == Op1)) |
| 1765 | return Constant::getAllOnesValue(Op1->getType()); |
| 1766 | |
| 1767 | // A | ~(A & ?) = -1 |
| 1768 | if (match(Op1, m_Not(m_And(m_Value(A), m_Value(B)))) && |
| 1769 | (A == Op0 || B == Op0)) |
| 1770 | return Constant::getAllOnesValue(Op0->getType()); |
| 1771 | |
David Majnemer | a315bd8 | 2014-09-15 08:15:28 +0000 | [diff] [blame] | 1772 | if (auto *ICILHS = dyn_cast<ICmpInst>(Op0)) { |
| 1773 | if (auto *ICIRHS = dyn_cast<ICmpInst>(Op1)) { |
| 1774 | if (Value *V = SimplifyOrOfICmps(ICILHS, ICIRHS)) |
| 1775 | return V; |
| 1776 | if (Value *V = SimplifyOrOfICmps(ICIRHS, ICILHS)) |
| 1777 | return V; |
| 1778 | } |
| 1779 | } |
| 1780 | |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 1781 | // Try some generic simplifications for associative operations. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1782 | if (Value *V = SimplifyAssociativeBinOp(Instruction::Or, Op0, Op1, Q, |
| 1783 | MaxRecurse)) |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 1784 | return V; |
Benjamin Kramer | 8c35fb0 | 2010-09-10 22:39:55 +0000 | [diff] [blame] | 1785 | |
Duncan Sands | ee3ec6e | 2010-12-21 13:32:22 +0000 | [diff] [blame] | 1786 | // Or distributes over And. Try some generic simplifications based on this. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1787 | if (Value *V = ExpandBinOp(Instruction::Or, Op0, Op1, Instruction::And, Q, |
| 1788 | MaxRecurse)) |
Duncan Sands | ee3ec6e | 2010-12-21 13:32:22 +0000 | [diff] [blame] | 1789 | return V; |
| 1790 | |
Duncan Sands | b0579e9 | 2010-11-10 13:00:08 +0000 | [diff] [blame] | 1791 | // If the operation is with the result of a select instruction, check whether |
| 1792 | // operating on either branch of the select always yields the same value. |
Duncan Sands | f64e690 | 2010-12-21 09:09:15 +0000 | [diff] [blame] | 1793 | if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1)) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1794 | if (Value *V = ThreadBinOpOverSelect(Instruction::Or, Op0, Op1, Q, |
Duncan Sands | f64e690 | 2010-12-21 09:09:15 +0000 | [diff] [blame] | 1795 | MaxRecurse)) |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 1796 | return V; |
| 1797 | |
Nick Lewycky | 8561a49 | 2014-06-19 03:51:46 +0000 | [diff] [blame] | 1798 | // (A & C)|(B & D) |
| 1799 | Value *C = nullptr, *D = nullptr; |
| 1800 | if (match(Op0, m_And(m_Value(A), m_Value(C))) && |
| 1801 | match(Op1, m_And(m_Value(B), m_Value(D)))) { |
| 1802 | ConstantInt *C1 = dyn_cast<ConstantInt>(C); |
| 1803 | ConstantInt *C2 = dyn_cast<ConstantInt>(D); |
| 1804 | if (C1 && C2 && (C1->getValue() == ~C2->getValue())) { |
| 1805 | // (A & C1)|(B & C2) |
| 1806 | // If we have: ((V + N) & C1) | (V & C2) |
| 1807 | // .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0 |
| 1808 | // replace with V+N. |
| 1809 | Value *V1, *V2; |
| 1810 | if ((C2->getValue() & (C2->getValue() + 1)) == 0 && // C2 == 0+1+ |
| 1811 | match(A, m_Add(m_Value(V1), m_Value(V2)))) { |
| 1812 | // Add commutes, try both ways. |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1813 | if (V1 == B && |
| 1814 | MaskedValueIsZero(V2, C2->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT)) |
Nick Lewycky | 8561a49 | 2014-06-19 03:51:46 +0000 | [diff] [blame] | 1815 | return A; |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1816 | if (V2 == B && |
| 1817 | MaskedValueIsZero(V1, C2->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT)) |
Nick Lewycky | 8561a49 | 2014-06-19 03:51:46 +0000 | [diff] [blame] | 1818 | return A; |
| 1819 | } |
| 1820 | // Or commutes, try both ways. |
| 1821 | if ((C1->getValue() & (C1->getValue() + 1)) == 0 && |
| 1822 | match(B, m_Add(m_Value(V1), m_Value(V2)))) { |
| 1823 | // Add commutes, try both ways. |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1824 | if (V1 == A && |
| 1825 | MaskedValueIsZero(V2, C1->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT)) |
Nick Lewycky | 8561a49 | 2014-06-19 03:51:46 +0000 | [diff] [blame] | 1826 | return B; |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1827 | if (V2 == A && |
| 1828 | MaskedValueIsZero(V1, C1->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT)) |
Nick Lewycky | 8561a49 | 2014-06-19 03:51:46 +0000 | [diff] [blame] | 1829 | return B; |
| 1830 | } |
| 1831 | } |
| 1832 | } |
| 1833 | |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 1834 | // If the operation is with the result of a phi instruction, check whether |
| 1835 | // operating on all incoming values of the phi always yields the same value. |
Duncan Sands | f64e690 | 2010-12-21 09:09:15 +0000 | [diff] [blame] | 1836 | if (isa<PHINode>(Op0) || isa<PHINode>(Op1)) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1837 | if (Value *V = ThreadBinOpOverPHI(Instruction::Or, Op0, Op1, Q, MaxRecurse)) |
Duncan Sands | b0579e9 | 2010-11-10 13:00:08 +0000 | [diff] [blame] | 1838 | return V; |
| 1839 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 1840 | return nullptr; |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1841 | } |
| 1842 | |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1843 | Value *llvm::SimplifyOrInst(Value *Op0, Value *Op1, const DataLayout &DL, |
Chad Rosier | c24b86f | 2011-12-01 03:08:23 +0000 | [diff] [blame] | 1844 | const TargetLibraryInfo *TLI, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1845 | const DominatorTree *DT, AssumptionCache *AC, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 1846 | const Instruction *CxtI) { |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1847 | return ::SimplifyOrInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI), |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 1848 | RecursionLimit); |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 1849 | } |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 1850 | |
Duncan Sands | c89ac07 | 2010-11-17 18:52:15 +0000 | [diff] [blame] | 1851 | /// SimplifyXorInst - Given operands for a Xor, see if we can |
| 1852 | /// fold the result. If not, this returns null. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1853 | static Value *SimplifyXorInst(Value *Op0, Value *Op1, const Query &Q, |
| 1854 | unsigned MaxRecurse) { |
Duncan Sands | c89ac07 | 2010-11-17 18:52:15 +0000 | [diff] [blame] | 1855 | if (Constant *CLHS = dyn_cast<Constant>(Op0)) { |
| 1856 | if (Constant *CRHS = dyn_cast<Constant>(Op1)) { |
| 1857 | Constant *Ops[] = { CLHS, CRHS }; |
| 1858 | return ConstantFoldInstOperands(Instruction::Xor, CLHS->getType(), |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 1859 | Ops, Q.DL, Q.TLI); |
Duncan Sands | c89ac07 | 2010-11-17 18:52:15 +0000 | [diff] [blame] | 1860 | } |
| 1861 | |
| 1862 | // Canonicalize the constant to the RHS. |
| 1863 | std::swap(Op0, Op1); |
| 1864 | } |
| 1865 | |
| 1866 | // A ^ undef -> undef |
Duncan Sands | a29ea9a | 2011-02-01 09:06:20 +0000 | [diff] [blame] | 1867 | if (match(Op1, m_Undef())) |
Duncan Sands | 019a418 | 2010-12-15 11:02:22 +0000 | [diff] [blame] | 1868 | return Op1; |
Duncan Sands | c89ac07 | 2010-11-17 18:52:15 +0000 | [diff] [blame] | 1869 | |
| 1870 | // A ^ 0 = A |
| 1871 | if (match(Op1, m_Zero())) |
| 1872 | return Op0; |
| 1873 | |
Eli Friedman | ad3cfe7 | 2011-08-17 19:31:49 +0000 | [diff] [blame] | 1874 | // A ^ A = 0 |
| 1875 | if (Op0 == Op1) |
| 1876 | return Constant::getNullValue(Op0->getType()); |
| 1877 | |
Duncan Sands | c89ac07 | 2010-11-17 18:52:15 +0000 | [diff] [blame] | 1878 | // A ^ ~A = ~A ^ A = -1 |
Chris Lattner | 9e4aa02 | 2011-02-09 17:15:04 +0000 | [diff] [blame] | 1879 | if (match(Op0, m_Not(m_Specific(Op1))) || |
| 1880 | match(Op1, m_Not(m_Specific(Op0)))) |
Duncan Sands | c89ac07 | 2010-11-17 18:52:15 +0000 | [diff] [blame] | 1881 | return Constant::getAllOnesValue(Op0->getType()); |
| 1882 | |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 1883 | // Try some generic simplifications for associative operations. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 1884 | if (Value *V = SimplifyAssociativeBinOp(Instruction::Xor, Op0, Op1, Q, |
| 1885 | MaxRecurse)) |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 1886 | return V; |
Duncan Sands | c89ac07 | 2010-11-17 18:52:15 +0000 | [diff] [blame] | 1887 | |
Duncan Sands | b238de0 | 2010-11-19 09:20:39 +0000 | [diff] [blame] | 1888 | // Threading Xor over selects and phi nodes is pointless, so don't bother. |
| 1889 | // Threading over the select in "A ^ select(cond, B, C)" means evaluating |
| 1890 | // "A^B" and "A^C" and seeing if they are equal; but they are equal if and |
| 1891 | // only if B and C are equal. If B and C are equal then (since we assume |
| 1892 | // that operands have already been simplified) "select(cond, B, C)" should |
| 1893 | // have been simplified to the common value of B and C already. Analysing |
| 1894 | // "A^B" and "A^C" thus gains nothing, but costs compile time. Similarly |
| 1895 | // for threading over phi nodes. |
Duncan Sands | c89ac07 | 2010-11-17 18:52:15 +0000 | [diff] [blame] | 1896 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 1897 | return nullptr; |
Duncan Sands | c89ac07 | 2010-11-17 18:52:15 +0000 | [diff] [blame] | 1898 | } |
| 1899 | |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1900 | Value *llvm::SimplifyXorInst(Value *Op0, Value *Op1, const DataLayout &DL, |
Chad Rosier | c24b86f | 2011-12-01 03:08:23 +0000 | [diff] [blame] | 1901 | const TargetLibraryInfo *TLI, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1902 | const DominatorTree *DT, AssumptionCache *AC, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 1903 | const Instruction *CxtI) { |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 1904 | return ::SimplifyXorInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI), |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 1905 | RecursionLimit); |
Duncan Sands | c89ac07 | 2010-11-17 18:52:15 +0000 | [diff] [blame] | 1906 | } |
| 1907 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1908 | static Type *GetCompareTy(Value *Op) { |
Chris Lattner | ccfdceb | 2009-11-09 23:55:12 +0000 | [diff] [blame] | 1909 | return CmpInst::makeCmpResultType(Op->getType()); |
| 1910 | } |
| 1911 | |
Duncan Sands | af32728 | 2011-05-07 16:56:49 +0000 | [diff] [blame] | 1912 | /// ExtractEquivalentCondition - Rummage around inside V looking for something |
| 1913 | /// equivalent to the comparison "LHS Pred RHS". Return such a value if found, |
| 1914 | /// otherwise return null. Helper function for analyzing max/min idioms. |
| 1915 | static Value *ExtractEquivalentCondition(Value *V, CmpInst::Predicate Pred, |
| 1916 | Value *LHS, Value *RHS) { |
| 1917 | SelectInst *SI = dyn_cast<SelectInst>(V); |
| 1918 | if (!SI) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 1919 | return nullptr; |
Duncan Sands | af32728 | 2011-05-07 16:56:49 +0000 | [diff] [blame] | 1920 | CmpInst *Cmp = dyn_cast<CmpInst>(SI->getCondition()); |
| 1921 | if (!Cmp) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 1922 | return nullptr; |
Duncan Sands | af32728 | 2011-05-07 16:56:49 +0000 | [diff] [blame] | 1923 | Value *CmpLHS = Cmp->getOperand(0), *CmpRHS = Cmp->getOperand(1); |
| 1924 | if (Pred == Cmp->getPredicate() && LHS == CmpLHS && RHS == CmpRHS) |
| 1925 | return Cmp; |
| 1926 | if (Pred == CmpInst::getSwappedPredicate(Cmp->getPredicate()) && |
| 1927 | LHS == CmpRHS && RHS == CmpLHS) |
| 1928 | return Cmp; |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 1929 | return nullptr; |
Duncan Sands | af32728 | 2011-05-07 16:56:49 +0000 | [diff] [blame] | 1930 | } |
| 1931 | |
Dan Gohman | 9631d90 | 2013-02-01 00:49:06 +0000 | [diff] [blame] | 1932 | // A significant optimization not implemented here is assuming that alloca |
| 1933 | // addresses are not equal to incoming argument values. They don't *alias*, |
| 1934 | // as we say, but that doesn't mean they aren't equal, so we take a |
| 1935 | // conservative approach. |
| 1936 | // |
| 1937 | // This is inspired in part by C++11 5.10p1: |
| 1938 | // "Two pointers of the same type compare equal if and only if they are both |
| 1939 | // null, both point to the same function, or both represent the same |
| 1940 | // address." |
| 1941 | // |
| 1942 | // This is pretty permissive. |
| 1943 | // |
| 1944 | // It's also partly due to C11 6.5.9p6: |
| 1945 | // "Two pointers compare equal if and only if both are null pointers, both are |
| 1946 | // pointers to the same object (including a pointer to an object and a |
| 1947 | // subobject at its beginning) or function, both are pointers to one past the |
| 1948 | // last element of the same array object, or one is a pointer to one past the |
| 1949 | // end of one array object and the other is a pointer to the start of a |
NAKAMURA Takumi | 065fd35 | 2013-04-08 23:05:21 +0000 | [diff] [blame] | 1950 | // different array object that happens to immediately follow the first array |
Dan Gohman | 9631d90 | 2013-02-01 00:49:06 +0000 | [diff] [blame] | 1951 | // object in the address space.) |
| 1952 | // |
| 1953 | // C11's version is more restrictive, however there's no reason why an argument |
| 1954 | // couldn't be a one-past-the-end value for a stack object in the caller and be |
| 1955 | // equal to the beginning of a stack object in the callee. |
| 1956 | // |
| 1957 | // If the C and C++ standards are ever made sufficiently restrictive in this |
| 1958 | // area, it may be possible to update LLVM's semantics accordingly and reinstate |
| 1959 | // this optimization. |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1960 | static Constant *computePointerICmp(const DataLayout &DL, |
Dan Gohman | b3e2d3a | 2013-02-01 00:11:13 +0000 | [diff] [blame] | 1961 | const TargetLibraryInfo *TLI, |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1962 | CmpInst::Predicate Pred, Value *LHS, |
| 1963 | Value *RHS) { |
Dan Gohman | b3e2d3a | 2013-02-01 00:11:13 +0000 | [diff] [blame] | 1964 | // First, skip past any trivial no-ops. |
| 1965 | LHS = LHS->stripPointerCasts(); |
| 1966 | RHS = RHS->stripPointerCasts(); |
| 1967 | |
| 1968 | // A non-null pointer is not equal to a null pointer. |
Benjamin Kramer | fd4777c | 2013-09-24 16:37:51 +0000 | [diff] [blame] | 1969 | if (llvm::isKnownNonNull(LHS, TLI) && isa<ConstantPointerNull>(RHS) && |
Dan Gohman | b3e2d3a | 2013-02-01 00:11:13 +0000 | [diff] [blame] | 1970 | (Pred == CmpInst::ICMP_EQ || Pred == CmpInst::ICMP_NE)) |
| 1971 | return ConstantInt::get(GetCompareTy(LHS), |
| 1972 | !CmpInst::isTrueWhenEqual(Pred)); |
| 1973 | |
Chandler Carruth | 8059c84 | 2012-03-25 21:28:14 +0000 | [diff] [blame] | 1974 | // We can only fold certain predicates on pointer comparisons. |
| 1975 | switch (Pred) { |
| 1976 | default: |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 1977 | return nullptr; |
Chandler Carruth | 8059c84 | 2012-03-25 21:28:14 +0000 | [diff] [blame] | 1978 | |
| 1979 | // Equality comaprisons are easy to fold. |
| 1980 | case CmpInst::ICMP_EQ: |
| 1981 | case CmpInst::ICMP_NE: |
| 1982 | break; |
| 1983 | |
| 1984 | // We can only handle unsigned relational comparisons because 'inbounds' on |
| 1985 | // a GEP only protects against unsigned wrapping. |
| 1986 | case CmpInst::ICMP_UGT: |
| 1987 | case CmpInst::ICMP_UGE: |
| 1988 | case CmpInst::ICMP_ULT: |
| 1989 | case CmpInst::ICMP_ULE: |
| 1990 | // However, we have to switch them to their signed variants to handle |
| 1991 | // negative indices from the base pointer. |
| 1992 | Pred = ICmpInst::getSignedPredicate(Pred); |
| 1993 | break; |
| 1994 | } |
| 1995 | |
Dan Gohman | b3e2d3a | 2013-02-01 00:11:13 +0000 | [diff] [blame] | 1996 | // Strip off any constant offsets so that we can reason about them. |
| 1997 | // It's tempting to use getUnderlyingObject or even just stripInBoundsOffsets |
| 1998 | // here and compare base addresses like AliasAnalysis does, however there are |
| 1999 | // numerous hazards. AliasAnalysis and its utilities rely on special rules |
| 2000 | // governing loads and stores which don't apply to icmps. Also, AliasAnalysis |
| 2001 | // doesn't need to guarantee pointer inequality when it says NoAlias. |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 2002 | Constant *LHSOffset = stripAndComputeConstantOffsets(DL, LHS); |
| 2003 | Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS); |
Chandler Carruth | 8059c84 | 2012-03-25 21:28:14 +0000 | [diff] [blame] | 2004 | |
Dan Gohman | b3e2d3a | 2013-02-01 00:11:13 +0000 | [diff] [blame] | 2005 | // If LHS and RHS are related via constant offsets to the same base |
| 2006 | // value, we can replace it with an icmp which just compares the offsets. |
| 2007 | if (LHS == RHS) |
| 2008 | return ConstantExpr::getICmp(Pred, LHSOffset, RHSOffset); |
Chandler Carruth | 8059c84 | 2012-03-25 21:28:14 +0000 | [diff] [blame] | 2009 | |
Dan Gohman | b3e2d3a | 2013-02-01 00:11:13 +0000 | [diff] [blame] | 2010 | // Various optimizations for (in)equality comparisons. |
| 2011 | if (Pred == CmpInst::ICMP_EQ || Pred == CmpInst::ICMP_NE) { |
| 2012 | // Different non-empty allocations that exist at the same time have |
| 2013 | // different addresses (if the program can tell). Global variables always |
| 2014 | // exist, so they always exist during the lifetime of each other and all |
| 2015 | // allocas. Two different allocas usually have different addresses... |
| 2016 | // |
| 2017 | // However, if there's an @llvm.stackrestore dynamically in between two |
| 2018 | // allocas, they may have the same address. It's tempting to reduce the |
| 2019 | // scope of the problem by only looking at *static* allocas here. That would |
| 2020 | // cover the majority of allocas while significantly reducing the likelihood |
| 2021 | // of having an @llvm.stackrestore pop up in the middle. However, it's not |
| 2022 | // actually impossible for an @llvm.stackrestore to pop up in the middle of |
| 2023 | // an entry block. Also, if we have a block that's not attached to a |
| 2024 | // function, we can't tell if it's "static" under the current definition. |
| 2025 | // Theoretically, this problem could be fixed by creating a new kind of |
| 2026 | // instruction kind specifically for static allocas. Such a new instruction |
| 2027 | // could be required to be at the top of the entry block, thus preventing it |
| 2028 | // from being subject to a @llvm.stackrestore. Instcombine could even |
| 2029 | // convert regular allocas into these special allocas. It'd be nifty. |
| 2030 | // However, until then, this problem remains open. |
| 2031 | // |
| 2032 | // So, we'll assume that two non-empty allocas have different addresses |
| 2033 | // for now. |
| 2034 | // |
| 2035 | // With all that, if the offsets are within the bounds of their allocations |
| 2036 | // (and not one-past-the-end! so we can't use inbounds!), and their |
| 2037 | // allocations aren't the same, the pointers are not equal. |
| 2038 | // |
| 2039 | // Note that it's not necessary to check for LHS being a global variable |
| 2040 | // address, due to canonicalization and constant folding. |
| 2041 | if (isa<AllocaInst>(LHS) && |
| 2042 | (isa<AllocaInst>(RHS) || isa<GlobalVariable>(RHS))) { |
Benjamin Kramer | c05aa95 | 2013-02-01 15:21:10 +0000 | [diff] [blame] | 2043 | ConstantInt *LHSOffsetCI = dyn_cast<ConstantInt>(LHSOffset); |
| 2044 | ConstantInt *RHSOffsetCI = dyn_cast<ConstantInt>(RHSOffset); |
Dan Gohman | b3e2d3a | 2013-02-01 00:11:13 +0000 | [diff] [blame] | 2045 | uint64_t LHSSize, RHSSize; |
Benjamin Kramer | c05aa95 | 2013-02-01 15:21:10 +0000 | [diff] [blame] | 2046 | if (LHSOffsetCI && RHSOffsetCI && |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 2047 | getObjectSize(LHS, LHSSize, DL, TLI) && |
| 2048 | getObjectSize(RHS, RHSSize, DL, TLI)) { |
Benjamin Kramer | c05aa95 | 2013-02-01 15:21:10 +0000 | [diff] [blame] | 2049 | const APInt &LHSOffsetValue = LHSOffsetCI->getValue(); |
| 2050 | const APInt &RHSOffsetValue = RHSOffsetCI->getValue(); |
Dan Gohman | b3e2d3a | 2013-02-01 00:11:13 +0000 | [diff] [blame] | 2051 | if (!LHSOffsetValue.isNegative() && |
| 2052 | !RHSOffsetValue.isNegative() && |
| 2053 | LHSOffsetValue.ult(LHSSize) && |
| 2054 | RHSOffsetValue.ult(RHSSize)) { |
| 2055 | return ConstantInt::get(GetCompareTy(LHS), |
| 2056 | !CmpInst::isTrueWhenEqual(Pred)); |
| 2057 | } |
| 2058 | } |
| 2059 | |
| 2060 | // Repeat the above check but this time without depending on DataLayout |
| 2061 | // or being able to compute a precise size. |
| 2062 | if (!cast<PointerType>(LHS->getType())->isEmptyTy() && |
| 2063 | !cast<PointerType>(RHS->getType())->isEmptyTy() && |
| 2064 | LHSOffset->isNullValue() && |
| 2065 | RHSOffset->isNullValue()) |
| 2066 | return ConstantInt::get(GetCompareTy(LHS), |
| 2067 | !CmpInst::isTrueWhenEqual(Pred)); |
| 2068 | } |
Benjamin Kramer | 942dfe6 | 2013-09-23 14:16:38 +0000 | [diff] [blame] | 2069 | |
| 2070 | // Even if an non-inbounds GEP occurs along the path we can still optimize |
| 2071 | // equality comparisons concerning the result. We avoid walking the whole |
| 2072 | // chain again by starting where the last calls to |
| 2073 | // stripAndComputeConstantOffsets left off and accumulate the offsets. |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 2074 | Constant *LHSNoBound = stripAndComputeConstantOffsets(DL, LHS, true); |
| 2075 | Constant *RHSNoBound = stripAndComputeConstantOffsets(DL, RHS, true); |
Benjamin Kramer | 942dfe6 | 2013-09-23 14:16:38 +0000 | [diff] [blame] | 2076 | if (LHS == RHS) |
| 2077 | return ConstantExpr::getICmp(Pred, |
| 2078 | ConstantExpr::getAdd(LHSOffset, LHSNoBound), |
| 2079 | ConstantExpr::getAdd(RHSOffset, RHSNoBound)); |
Hal Finkel | afcd8db | 2014-12-01 23:38:06 +0000 | [diff] [blame] | 2080 | |
| 2081 | // If one side of the equality comparison must come from a noalias call |
| 2082 | // (meaning a system memory allocation function), and the other side must |
| 2083 | // come from a pointer that cannot overlap with dynamically-allocated |
| 2084 | // memory within the lifetime of the current function (allocas, byval |
| 2085 | // arguments, globals), then determine the comparison result here. |
| 2086 | SmallVector<Value *, 8> LHSUObjs, RHSUObjs; |
| 2087 | GetUnderlyingObjects(LHS, LHSUObjs, DL); |
| 2088 | GetUnderlyingObjects(RHS, RHSUObjs, DL); |
| 2089 | |
| 2090 | // Is the set of underlying objects all noalias calls? |
| 2091 | auto IsNAC = [](SmallVectorImpl<Value *> &Objects) { |
| 2092 | return std::all_of(Objects.begin(), Objects.end(), |
| 2093 | [](Value *V){ return isNoAliasCall(V); }); |
| 2094 | }; |
| 2095 | |
| 2096 | // Is the set of underlying objects all things which must be disjoint from |
Hal Finkel | aa19baf | 2014-12-04 17:45:19 +0000 | [diff] [blame] | 2097 | // noalias calls. For allocas, we consider only static ones (dynamic |
| 2098 | // allocas might be transformed into calls to malloc not simultaneously |
| 2099 | // live with the compared-to allocation). For globals, we exclude symbols |
| 2100 | // that might be resolve lazily to symbols in another dynamically-loaded |
| 2101 | // library (and, thus, could be malloc'ed by the implementation). |
Hal Finkel | afcd8db | 2014-12-01 23:38:06 +0000 | [diff] [blame] | 2102 | auto IsAllocDisjoint = [](SmallVectorImpl<Value *> &Objects) { |
| 2103 | return std::all_of(Objects.begin(), Objects.end(), |
| 2104 | [](Value *V){ |
Hal Finkel | aa19baf | 2014-12-04 17:45:19 +0000 | [diff] [blame] | 2105 | if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) |
| 2106 | return AI->getParent() && AI->getParent()->getParent() && |
| 2107 | AI->isStaticAlloca(); |
| 2108 | if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) |
| 2109 | return (GV->hasLocalLinkage() || |
| 2110 | GV->hasHiddenVisibility() || |
| 2111 | GV->hasProtectedVisibility() || |
| 2112 | GV->hasUnnamedAddr()) && |
| 2113 | !GV->isThreadLocal(); |
Hal Finkel | afcd8db | 2014-12-01 23:38:06 +0000 | [diff] [blame] | 2114 | if (const Argument *A = dyn_cast<Argument>(V)) |
| 2115 | return A->hasByValAttr(); |
| 2116 | return false; |
| 2117 | }); |
| 2118 | }; |
| 2119 | |
| 2120 | if ((IsNAC(LHSUObjs) && IsAllocDisjoint(RHSUObjs)) || |
| 2121 | (IsNAC(RHSUObjs) && IsAllocDisjoint(LHSUObjs))) |
| 2122 | return ConstantInt::get(GetCompareTy(LHS), |
| 2123 | !CmpInst::isTrueWhenEqual(Pred)); |
Dan Gohman | b3e2d3a | 2013-02-01 00:11:13 +0000 | [diff] [blame] | 2124 | } |
| 2125 | |
| 2126 | // Otherwise, fail. |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 2127 | return nullptr; |
Chandler Carruth | 8059c84 | 2012-03-25 21:28:14 +0000 | [diff] [blame] | 2128 | } |
Chris Lattner | 01990f0 | 2012-02-24 19:01:58 +0000 | [diff] [blame] | 2129 | |
Chris Lattner | c1f1907 | 2009-11-09 23:28:39 +0000 | [diff] [blame] | 2130 | /// SimplifyICmpInst - Given operands for an ICmpInst, see if we can |
| 2131 | /// fold the result. If not, this returns null. |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 2132 | static Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 2133 | const Query &Q, unsigned MaxRecurse) { |
Chris Lattner | 084a1b5 | 2009-11-09 22:57:59 +0000 | [diff] [blame] | 2134 | CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate; |
Chris Lattner | c1f1907 | 2009-11-09 23:28:39 +0000 | [diff] [blame] | 2135 | assert(CmpInst::isIntPredicate(Pred) && "Not an integer compare!"); |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 2136 | |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 2137 | if (Constant *CLHS = dyn_cast<Constant>(LHS)) { |
Chris Lattner | cdfb80d | 2009-11-09 23:06:58 +0000 | [diff] [blame] | 2138 | if (Constant *CRHS = dyn_cast<Constant>(RHS)) |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 2139 | return ConstantFoldCompareInstOperands(Pred, CLHS, CRHS, Q.DL, Q.TLI); |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 2140 | |
| 2141 | // If we have a constant, make sure it is on the RHS. |
| 2142 | std::swap(LHS, RHS); |
| 2143 | Pred = CmpInst::getSwappedPredicate(Pred); |
| 2144 | } |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 2145 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2146 | Type *ITy = GetCompareTy(LHS); // The return type. |
| 2147 | Type *OpTy = LHS->getType(); // The operand type. |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 2148 | |
Chris Lattner | ccfdceb | 2009-11-09 23:55:12 +0000 | [diff] [blame] | 2149 | // icmp X, X -> true/false |
Chris Lattner | 3afc072 | 2010-03-03 19:46:03 +0000 | [diff] [blame] | 2150 | // X icmp undef -> true/false. For example, icmp ugt %X, undef -> false |
| 2151 | // because X could be 0. |
Duncan Sands | 772749a | 2011-01-01 20:08:02 +0000 | [diff] [blame] | 2152 | if (LHS == RHS || isa<UndefValue>(RHS)) |
Chris Lattner | ccfdceb | 2009-11-09 23:55:12 +0000 | [diff] [blame] | 2153 | return ConstantInt::get(ITy, CmpInst::isTrueWhenEqual(Pred)); |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 2154 | |
Duncan Sands | 8d25a7c | 2011-01-13 08:56:29 +0000 | [diff] [blame] | 2155 | // Special case logic when the operands have i1 type. |
Nick Lewycky | e659b84 | 2011-12-01 02:39:36 +0000 | [diff] [blame] | 2156 | if (OpTy->getScalarType()->isIntegerTy(1)) { |
Duncan Sands | 8d25a7c | 2011-01-13 08:56:29 +0000 | [diff] [blame] | 2157 | switch (Pred) { |
| 2158 | default: break; |
| 2159 | case ICmpInst::ICMP_EQ: |
| 2160 | // X == 1 -> X |
| 2161 | if (match(RHS, m_One())) |
| 2162 | return LHS; |
| 2163 | break; |
| 2164 | case ICmpInst::ICMP_NE: |
| 2165 | // X != 0 -> X |
| 2166 | if (match(RHS, m_Zero())) |
| 2167 | return LHS; |
| 2168 | break; |
| 2169 | case ICmpInst::ICMP_UGT: |
| 2170 | // X >u 0 -> X |
| 2171 | if (match(RHS, m_Zero())) |
| 2172 | return LHS; |
| 2173 | break; |
| 2174 | case ICmpInst::ICMP_UGE: |
| 2175 | // X >=u 1 -> X |
| 2176 | if (match(RHS, m_One())) |
| 2177 | return LHS; |
| 2178 | break; |
| 2179 | case ICmpInst::ICMP_SLT: |
| 2180 | // X <s 0 -> X |
| 2181 | if (match(RHS, m_Zero())) |
| 2182 | return LHS; |
| 2183 | break; |
| 2184 | case ICmpInst::ICMP_SLE: |
| 2185 | // X <=s -1 -> X |
| 2186 | if (match(RHS, m_One())) |
| 2187 | return LHS; |
| 2188 | break; |
| 2189 | } |
| 2190 | } |
| 2191 | |
Duncan Sands | d395108 | 2011-01-25 09:38:29 +0000 | [diff] [blame] | 2192 | // If we are comparing with zero then try hard since this is a common case. |
| 2193 | if (match(RHS, m_Zero())) { |
| 2194 | bool LHSKnownNonNegative, LHSKnownNegative; |
| 2195 | switch (Pred) { |
Craig Topper | a2886c2 | 2012-02-07 05:05:23 +0000 | [diff] [blame] | 2196 | default: llvm_unreachable("Unknown ICmp predicate!"); |
Duncan Sands | d395108 | 2011-01-25 09:38:29 +0000 | [diff] [blame] | 2197 | case ICmpInst::ICMP_ULT: |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2198 | return getFalse(ITy); |
Duncan Sands | d395108 | 2011-01-25 09:38:29 +0000 | [diff] [blame] | 2199 | case ICmpInst::ICMP_UGE: |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2200 | return getTrue(ITy); |
Duncan Sands | d395108 | 2011-01-25 09:38:29 +0000 | [diff] [blame] | 2201 | case ICmpInst::ICMP_EQ: |
| 2202 | case ICmpInst::ICMP_ULE: |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 2203 | if (isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT)) |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2204 | return getFalse(ITy); |
Duncan Sands | d395108 | 2011-01-25 09:38:29 +0000 | [diff] [blame] | 2205 | break; |
| 2206 | case ICmpInst::ICMP_NE: |
| 2207 | case ICmpInst::ICMP_UGT: |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 2208 | if (isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT)) |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2209 | return getTrue(ITy); |
Duncan Sands | d395108 | 2011-01-25 09:38:29 +0000 | [diff] [blame] | 2210 | break; |
| 2211 | case ICmpInst::ICMP_SLT: |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 2212 | ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC, |
| 2213 | Q.CxtI, Q.DT); |
Duncan Sands | d395108 | 2011-01-25 09:38:29 +0000 | [diff] [blame] | 2214 | if (LHSKnownNegative) |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2215 | return getTrue(ITy); |
Duncan Sands | d395108 | 2011-01-25 09:38:29 +0000 | [diff] [blame] | 2216 | if (LHSKnownNonNegative) |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2217 | return getFalse(ITy); |
Duncan Sands | d395108 | 2011-01-25 09:38:29 +0000 | [diff] [blame] | 2218 | break; |
| 2219 | case ICmpInst::ICMP_SLE: |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 2220 | ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC, |
| 2221 | Q.CxtI, Q.DT); |
Duncan Sands | d395108 | 2011-01-25 09:38:29 +0000 | [diff] [blame] | 2222 | if (LHSKnownNegative) |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2223 | return getTrue(ITy); |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 2224 | if (LHSKnownNonNegative && |
| 2225 | isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT)) |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2226 | return getFalse(ITy); |
Duncan Sands | d395108 | 2011-01-25 09:38:29 +0000 | [diff] [blame] | 2227 | break; |
| 2228 | case ICmpInst::ICMP_SGE: |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 2229 | ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC, |
| 2230 | Q.CxtI, Q.DT); |
Duncan Sands | d395108 | 2011-01-25 09:38:29 +0000 | [diff] [blame] | 2231 | if (LHSKnownNegative) |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2232 | return getFalse(ITy); |
Duncan Sands | d395108 | 2011-01-25 09:38:29 +0000 | [diff] [blame] | 2233 | if (LHSKnownNonNegative) |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2234 | return getTrue(ITy); |
Duncan Sands | d395108 | 2011-01-25 09:38:29 +0000 | [diff] [blame] | 2235 | break; |
| 2236 | case ICmpInst::ICMP_SGT: |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 2237 | ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC, |
| 2238 | Q.CxtI, Q.DT); |
Duncan Sands | d395108 | 2011-01-25 09:38:29 +0000 | [diff] [blame] | 2239 | if (LHSKnownNegative) |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2240 | return getFalse(ITy); |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 2241 | if (LHSKnownNonNegative && |
| 2242 | isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT)) |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2243 | return getTrue(ITy); |
Duncan Sands | d395108 | 2011-01-25 09:38:29 +0000 | [diff] [blame] | 2244 | break; |
| 2245 | } |
| 2246 | } |
| 2247 | |
| 2248 | // See if we are doing a comparison with a constant integer. |
Duncan Sands | 8d25a7c | 2011-01-13 08:56:29 +0000 | [diff] [blame] | 2249 | if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) { |
Nick Lewycky | 3cec6f5 | 2011-03-04 07:00:57 +0000 | [diff] [blame] | 2250 | // Rule out tautological comparisons (eg., ult 0 or uge 0). |
| 2251 | ConstantRange RHS_CR = ICmpInst::makeConstantRange(Pred, CI->getValue()); |
| 2252 | if (RHS_CR.isEmptySet()) |
| 2253 | return ConstantInt::getFalse(CI->getContext()); |
| 2254 | if (RHS_CR.isFullSet()) |
| 2255 | return ConstantInt::getTrue(CI->getContext()); |
Nick Lewycky | c9d2006 | 2011-03-01 08:15:50 +0000 | [diff] [blame] | 2256 | |
Nick Lewycky | 3cec6f5 | 2011-03-04 07:00:57 +0000 | [diff] [blame] | 2257 | // Many binary operators with constant RHS have easy to compute constant |
| 2258 | // range. Use them to check whether the comparison is a tautology. |
David Majnemer | 78910fc | 2014-05-16 17:14:03 +0000 | [diff] [blame] | 2259 | unsigned Width = CI->getBitWidth(); |
Nick Lewycky | 3cec6f5 | 2011-03-04 07:00:57 +0000 | [diff] [blame] | 2260 | APInt Lower = APInt(Width, 0); |
| 2261 | APInt Upper = APInt(Width, 0); |
| 2262 | ConstantInt *CI2; |
| 2263 | if (match(LHS, m_URem(m_Value(), m_ConstantInt(CI2)))) { |
| 2264 | // 'urem x, CI2' produces [0, CI2). |
| 2265 | Upper = CI2->getValue(); |
| 2266 | } else if (match(LHS, m_SRem(m_Value(), m_ConstantInt(CI2)))) { |
| 2267 | // 'srem x, CI2' produces (-|CI2|, |CI2|). |
| 2268 | Upper = CI2->getValue().abs(); |
| 2269 | Lower = (-Upper) + 1; |
Duncan Sands | 92af0a8 | 2011-10-28 18:17:44 +0000 | [diff] [blame] | 2270 | } else if (match(LHS, m_UDiv(m_ConstantInt(CI2), m_Value()))) { |
| 2271 | // 'udiv CI2, x' produces [0, CI2]. |
Eli Friedman | 0bae8b2 | 2011-11-08 21:08:02 +0000 | [diff] [blame] | 2272 | Upper = CI2->getValue() + 1; |
Nick Lewycky | 3cec6f5 | 2011-03-04 07:00:57 +0000 | [diff] [blame] | 2273 | } else if (match(LHS, m_UDiv(m_Value(), m_ConstantInt(CI2)))) { |
| 2274 | // 'udiv x, CI2' produces [0, UINT_MAX / CI2]. |
| 2275 | APInt NegOne = APInt::getAllOnesValue(Width); |
| 2276 | if (!CI2->isZero()) |
| 2277 | Upper = NegOne.udiv(CI2->getValue()) + 1; |
David Majnemer | ea8d5db | 2014-05-16 16:57:04 +0000 | [diff] [blame] | 2278 | } else if (match(LHS, m_SDiv(m_ConstantInt(CI2), m_Value()))) { |
David Majnemer | 651ed5e | 2014-07-04 00:23:39 +0000 | [diff] [blame] | 2279 | if (CI2->isMinSignedValue()) { |
| 2280 | // 'sdiv INT_MIN, x' produces [INT_MIN, INT_MIN / -2]. |
| 2281 | Lower = CI2->getValue(); |
| 2282 | Upper = Lower.lshr(1) + 1; |
| 2283 | } else { |
| 2284 | // 'sdiv CI2, x' produces [-|CI2|, |CI2|]. |
| 2285 | Upper = CI2->getValue().abs() + 1; |
| 2286 | Lower = (-Upper) + 1; |
| 2287 | } |
Nick Lewycky | 3cec6f5 | 2011-03-04 07:00:57 +0000 | [diff] [blame] | 2288 | } else if (match(LHS, m_SDiv(m_Value(), m_ConstantInt(CI2)))) { |
Nick Lewycky | 3cec6f5 | 2011-03-04 07:00:57 +0000 | [diff] [blame] | 2289 | APInt IntMin = APInt::getSignedMinValue(Width); |
| 2290 | APInt IntMax = APInt::getSignedMaxValue(Width); |
David Majnemer | af9180f | 2014-07-14 20:38:45 +0000 | [diff] [blame] | 2291 | APInt Val = CI2->getValue(); |
| 2292 | if (Val.isAllOnesValue()) { |
| 2293 | // 'sdiv x, -1' produces [INT_MIN + 1, INT_MAX] |
| 2294 | // where CI2 != -1 and CI2 != 0 and CI2 != 1 |
| 2295 | Lower = IntMin + 1; |
| 2296 | Upper = IntMax + 1; |
| 2297 | } else if (Val.countLeadingZeros() < Width - 1) { |
| 2298 | // 'sdiv x, CI2' produces [INT_MIN / CI2, INT_MAX / CI2] |
| 2299 | // where CI2 != -1 and CI2 != 0 and CI2 != 1 |
Nick Lewycky | 3cec6f5 | 2011-03-04 07:00:57 +0000 | [diff] [blame] | 2300 | Lower = IntMin.sdiv(Val); |
David Majnemer | af9180f | 2014-07-14 20:38:45 +0000 | [diff] [blame] | 2301 | Upper = IntMax.sdiv(Val); |
| 2302 | if (Lower.sgt(Upper)) |
| 2303 | std::swap(Lower, Upper); |
| 2304 | Upper = Upper + 1; |
David Majnemer | 5ea4fc0 | 2014-07-14 19:49:57 +0000 | [diff] [blame] | 2305 | assert(Upper != Lower && "Upper part of range has wrapped!"); |
Nick Lewycky | 3cec6f5 | 2011-03-04 07:00:57 +0000 | [diff] [blame] | 2306 | } |
David Majnemer | d6d1671 | 2014-08-27 18:03:46 +0000 | [diff] [blame] | 2307 | } else if (match(LHS, m_NUWShl(m_ConstantInt(CI2), m_Value()))) { |
| 2308 | // 'shl nuw CI2, x' produces [CI2, CI2 << CLZ(CI2)] |
| 2309 | Lower = CI2->getValue(); |
| 2310 | Upper = Lower.shl(Lower.countLeadingZeros()) + 1; |
| 2311 | } else if (match(LHS, m_NSWShl(m_ConstantInt(CI2), m_Value()))) { |
| 2312 | if (CI2->isNegative()) { |
| 2313 | // 'shl nsw CI2, x' produces [CI2 << CLO(CI2)-1, CI2] |
| 2314 | unsigned ShiftAmount = CI2->getValue().countLeadingOnes() - 1; |
| 2315 | Lower = CI2->getValue().shl(ShiftAmount); |
| 2316 | Upper = CI2->getValue() + 1; |
| 2317 | } else { |
| 2318 | // 'shl nsw CI2, x' produces [CI2, CI2 << CLZ(CI2)-1] |
| 2319 | unsigned ShiftAmount = CI2->getValue().countLeadingZeros() - 1; |
| 2320 | Lower = CI2->getValue(); |
| 2321 | Upper = CI2->getValue().shl(ShiftAmount) + 1; |
| 2322 | } |
Nick Lewycky | 3cec6f5 | 2011-03-04 07:00:57 +0000 | [diff] [blame] | 2323 | } else if (match(LHS, m_LShr(m_Value(), m_ConstantInt(CI2)))) { |
| 2324 | // 'lshr x, CI2' produces [0, UINT_MAX >> CI2]. |
| 2325 | APInt NegOne = APInt::getAllOnesValue(Width); |
| 2326 | if (CI2->getValue().ult(Width)) |
| 2327 | Upper = NegOne.lshr(CI2->getValue()) + 1; |
David Majnemer | 78910fc | 2014-05-16 17:14:03 +0000 | [diff] [blame] | 2328 | } else if (match(LHS, m_LShr(m_ConstantInt(CI2), m_Value()))) { |
| 2329 | // 'lshr CI2, x' produces [CI2 >> (Width-1), CI2]. |
| 2330 | unsigned ShiftAmount = Width - 1; |
| 2331 | if (!CI2->isZero() && cast<BinaryOperator>(LHS)->isExact()) |
| 2332 | ShiftAmount = CI2->getValue().countTrailingZeros(); |
| 2333 | Lower = CI2->getValue().lshr(ShiftAmount); |
| 2334 | Upper = CI2->getValue() + 1; |
Nick Lewycky | 3cec6f5 | 2011-03-04 07:00:57 +0000 | [diff] [blame] | 2335 | } else if (match(LHS, m_AShr(m_Value(), m_ConstantInt(CI2)))) { |
| 2336 | // 'ashr x, CI2' produces [INT_MIN >> CI2, INT_MAX >> CI2]. |
| 2337 | APInt IntMin = APInt::getSignedMinValue(Width); |
| 2338 | APInt IntMax = APInt::getSignedMaxValue(Width); |
| 2339 | if (CI2->getValue().ult(Width)) { |
| 2340 | Lower = IntMin.ashr(CI2->getValue()); |
| 2341 | Upper = IntMax.ashr(CI2->getValue()) + 1; |
| 2342 | } |
David Majnemer | 78910fc | 2014-05-16 17:14:03 +0000 | [diff] [blame] | 2343 | } else if (match(LHS, m_AShr(m_ConstantInt(CI2), m_Value()))) { |
| 2344 | unsigned ShiftAmount = Width - 1; |
| 2345 | if (!CI2->isZero() && cast<BinaryOperator>(LHS)->isExact()) |
| 2346 | ShiftAmount = CI2->getValue().countTrailingZeros(); |
| 2347 | if (CI2->isNegative()) { |
| 2348 | // 'ashr CI2, x' produces [CI2, CI2 >> (Width-1)] |
| 2349 | Lower = CI2->getValue(); |
| 2350 | Upper = CI2->getValue().ashr(ShiftAmount) + 1; |
| 2351 | } else { |
| 2352 | // 'ashr CI2, x' produces [CI2 >> (Width-1), CI2] |
| 2353 | Lower = CI2->getValue().ashr(ShiftAmount); |
| 2354 | Upper = CI2->getValue() + 1; |
| 2355 | } |
Nick Lewycky | 3cec6f5 | 2011-03-04 07:00:57 +0000 | [diff] [blame] | 2356 | } else if (match(LHS, m_Or(m_Value(), m_ConstantInt(CI2)))) { |
| 2357 | // 'or x, CI2' produces [CI2, UINT_MAX]. |
| 2358 | Lower = CI2->getValue(); |
| 2359 | } else if (match(LHS, m_And(m_Value(), m_ConstantInt(CI2)))) { |
| 2360 | // 'and x, CI2' produces [0, CI2]. |
| 2361 | Upper = CI2->getValue() + 1; |
| 2362 | } |
| 2363 | if (Lower != Upper) { |
| 2364 | ConstantRange LHS_CR = ConstantRange(Lower, Upper); |
| 2365 | if (RHS_CR.contains(LHS_CR)) |
| 2366 | return ConstantInt::getTrue(RHS->getContext()); |
| 2367 | if (RHS_CR.inverse().contains(LHS_CR)) |
| 2368 | return ConstantInt::getFalse(RHS->getContext()); |
| 2369 | } |
Duncan Sands | 8d25a7c | 2011-01-13 08:56:29 +0000 | [diff] [blame] | 2370 | } |
| 2371 | |
Duncan Sands | 8fb2c38 | 2011-01-20 13:21:55 +0000 | [diff] [blame] | 2372 | // Compare of cast, for example (zext X) != 0 -> X != 0 |
| 2373 | if (isa<CastInst>(LHS) && (isa<Constant>(RHS) || isa<CastInst>(RHS))) { |
| 2374 | Instruction *LI = cast<CastInst>(LHS); |
| 2375 | Value *SrcOp = LI->getOperand(0); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2376 | Type *SrcTy = SrcOp->getType(); |
| 2377 | Type *DstTy = LI->getType(); |
Duncan Sands | 8fb2c38 | 2011-01-20 13:21:55 +0000 | [diff] [blame] | 2378 | |
| 2379 | // Turn icmp (ptrtoint x), (ptrtoint/constant) into a compare of the input |
| 2380 | // if the integer type is the same size as the pointer type. |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 2381 | if (MaxRecurse && isa<PtrToIntInst>(LI) && |
| 2382 | Q.DL.getTypeSizeInBits(SrcTy) == DstTy->getPrimitiveSizeInBits()) { |
Duncan Sands | 8fb2c38 | 2011-01-20 13:21:55 +0000 | [diff] [blame] | 2383 | if (Constant *RHSC = dyn_cast<Constant>(RHS)) { |
| 2384 | // Transfer the cast to the constant. |
| 2385 | if (Value *V = SimplifyICmpInst(Pred, SrcOp, |
| 2386 | ConstantExpr::getIntToPtr(RHSC, SrcTy), |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 2387 | Q, MaxRecurse-1)) |
Duncan Sands | 8fb2c38 | 2011-01-20 13:21:55 +0000 | [diff] [blame] | 2388 | return V; |
| 2389 | } else if (PtrToIntInst *RI = dyn_cast<PtrToIntInst>(RHS)) { |
| 2390 | if (RI->getOperand(0)->getType() == SrcTy) |
| 2391 | // Compare without the cast. |
| 2392 | if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0), |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 2393 | Q, MaxRecurse-1)) |
Duncan Sands | 8fb2c38 | 2011-01-20 13:21:55 +0000 | [diff] [blame] | 2394 | return V; |
| 2395 | } |
| 2396 | } |
| 2397 | |
| 2398 | if (isa<ZExtInst>(LHS)) { |
| 2399 | // Turn icmp (zext X), (zext Y) into a compare of X and Y if they have the |
| 2400 | // same type. |
| 2401 | if (ZExtInst *RI = dyn_cast<ZExtInst>(RHS)) { |
| 2402 | if (MaxRecurse && SrcTy == RI->getOperand(0)->getType()) |
| 2403 | // Compare X and Y. Note that signed predicates become unsigned. |
| 2404 | if (Value *V = SimplifyICmpInst(ICmpInst::getUnsignedPredicate(Pred), |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 2405 | SrcOp, RI->getOperand(0), Q, |
Duncan Sands | 8fb2c38 | 2011-01-20 13:21:55 +0000 | [diff] [blame] | 2406 | MaxRecurse-1)) |
| 2407 | return V; |
| 2408 | } |
| 2409 | // Turn icmp (zext X), Cst into a compare of X and Cst if Cst is extended |
| 2410 | // too. If not, then try to deduce the result of the comparison. |
| 2411 | else if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) { |
| 2412 | // Compute the constant that would happen if we truncated to SrcTy then |
| 2413 | // reextended to DstTy. |
| 2414 | Constant *Trunc = ConstantExpr::getTrunc(CI, SrcTy); |
| 2415 | Constant *RExt = ConstantExpr::getCast(CastInst::ZExt, Trunc, DstTy); |
| 2416 | |
| 2417 | // If the re-extended constant didn't change then this is effectively |
| 2418 | // also a case of comparing two zero-extended values. |
| 2419 | if (RExt == CI && MaxRecurse) |
| 2420 | if (Value *V = SimplifyICmpInst(ICmpInst::getUnsignedPredicate(Pred), |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 2421 | SrcOp, Trunc, Q, MaxRecurse-1)) |
Duncan Sands | 8fb2c38 | 2011-01-20 13:21:55 +0000 | [diff] [blame] | 2422 | return V; |
| 2423 | |
| 2424 | // Otherwise the upper bits of LHS are zero while RHS has a non-zero bit |
| 2425 | // there. Use this to work out the result of the comparison. |
| 2426 | if (RExt != CI) { |
| 2427 | switch (Pred) { |
Craig Topper | a2886c2 | 2012-02-07 05:05:23 +0000 | [diff] [blame] | 2428 | default: llvm_unreachable("Unknown ICmp predicate!"); |
Duncan Sands | 8fb2c38 | 2011-01-20 13:21:55 +0000 | [diff] [blame] | 2429 | // LHS <u RHS. |
| 2430 | case ICmpInst::ICMP_EQ: |
| 2431 | case ICmpInst::ICMP_UGT: |
| 2432 | case ICmpInst::ICMP_UGE: |
| 2433 | return ConstantInt::getFalse(CI->getContext()); |
| 2434 | |
| 2435 | case ICmpInst::ICMP_NE: |
| 2436 | case ICmpInst::ICMP_ULT: |
| 2437 | case ICmpInst::ICMP_ULE: |
| 2438 | return ConstantInt::getTrue(CI->getContext()); |
| 2439 | |
| 2440 | // LHS is non-negative. If RHS is negative then LHS >s LHS. If RHS |
| 2441 | // is non-negative then LHS <s RHS. |
| 2442 | case ICmpInst::ICMP_SGT: |
| 2443 | case ICmpInst::ICMP_SGE: |
| 2444 | return CI->getValue().isNegative() ? |
| 2445 | ConstantInt::getTrue(CI->getContext()) : |
| 2446 | ConstantInt::getFalse(CI->getContext()); |
| 2447 | |
| 2448 | case ICmpInst::ICMP_SLT: |
| 2449 | case ICmpInst::ICMP_SLE: |
| 2450 | return CI->getValue().isNegative() ? |
| 2451 | ConstantInt::getFalse(CI->getContext()) : |
| 2452 | ConstantInt::getTrue(CI->getContext()); |
| 2453 | } |
| 2454 | } |
| 2455 | } |
| 2456 | } |
| 2457 | |
| 2458 | if (isa<SExtInst>(LHS)) { |
| 2459 | // Turn icmp (sext X), (sext Y) into a compare of X and Y if they have the |
| 2460 | // same type. |
| 2461 | if (SExtInst *RI = dyn_cast<SExtInst>(RHS)) { |
| 2462 | if (MaxRecurse && SrcTy == RI->getOperand(0)->getType()) |
| 2463 | // Compare X and Y. Note that the predicate does not change. |
| 2464 | if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0), |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 2465 | Q, MaxRecurse-1)) |
Duncan Sands | 8fb2c38 | 2011-01-20 13:21:55 +0000 | [diff] [blame] | 2466 | return V; |
| 2467 | } |
| 2468 | // Turn icmp (sext X), Cst into a compare of X and Cst if Cst is extended |
| 2469 | // too. If not, then try to deduce the result of the comparison. |
| 2470 | else if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) { |
| 2471 | // Compute the constant that would happen if we truncated to SrcTy then |
| 2472 | // reextended to DstTy. |
| 2473 | Constant *Trunc = ConstantExpr::getTrunc(CI, SrcTy); |
| 2474 | Constant *RExt = ConstantExpr::getCast(CastInst::SExt, Trunc, DstTy); |
| 2475 | |
| 2476 | // If the re-extended constant didn't change then this is effectively |
| 2477 | // also a case of comparing two sign-extended values. |
| 2478 | if (RExt == CI && MaxRecurse) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 2479 | if (Value *V = SimplifyICmpInst(Pred, SrcOp, Trunc, Q, MaxRecurse-1)) |
Duncan Sands | 8fb2c38 | 2011-01-20 13:21:55 +0000 | [diff] [blame] | 2480 | return V; |
| 2481 | |
| 2482 | // Otherwise the upper bits of LHS are all equal, while RHS has varying |
| 2483 | // bits there. Use this to work out the result of the comparison. |
| 2484 | if (RExt != CI) { |
| 2485 | switch (Pred) { |
Craig Topper | a2886c2 | 2012-02-07 05:05:23 +0000 | [diff] [blame] | 2486 | default: llvm_unreachable("Unknown ICmp predicate!"); |
Duncan Sands | 8fb2c38 | 2011-01-20 13:21:55 +0000 | [diff] [blame] | 2487 | case ICmpInst::ICMP_EQ: |
| 2488 | return ConstantInt::getFalse(CI->getContext()); |
| 2489 | case ICmpInst::ICMP_NE: |
| 2490 | return ConstantInt::getTrue(CI->getContext()); |
| 2491 | |
| 2492 | // If RHS is non-negative then LHS <s RHS. If RHS is negative then |
| 2493 | // LHS >s RHS. |
| 2494 | case ICmpInst::ICMP_SGT: |
| 2495 | case ICmpInst::ICMP_SGE: |
| 2496 | return CI->getValue().isNegative() ? |
| 2497 | ConstantInt::getTrue(CI->getContext()) : |
| 2498 | ConstantInt::getFalse(CI->getContext()); |
| 2499 | case ICmpInst::ICMP_SLT: |
| 2500 | case ICmpInst::ICMP_SLE: |
| 2501 | return CI->getValue().isNegative() ? |
| 2502 | ConstantInt::getFalse(CI->getContext()) : |
| 2503 | ConstantInt::getTrue(CI->getContext()); |
| 2504 | |
| 2505 | // If LHS is non-negative then LHS <u RHS. If LHS is negative then |
| 2506 | // LHS >u RHS. |
| 2507 | case ICmpInst::ICMP_UGT: |
| 2508 | case ICmpInst::ICMP_UGE: |
Sylvestre Ledru | 91ce36c | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 2509 | // Comparison is true iff the LHS <s 0. |
Duncan Sands | 8fb2c38 | 2011-01-20 13:21:55 +0000 | [diff] [blame] | 2510 | if (MaxRecurse) |
| 2511 | if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SLT, SrcOp, |
| 2512 | Constant::getNullValue(SrcTy), |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 2513 | Q, MaxRecurse-1)) |
Duncan Sands | 8fb2c38 | 2011-01-20 13:21:55 +0000 | [diff] [blame] | 2514 | return V; |
| 2515 | break; |
| 2516 | case ICmpInst::ICMP_ULT: |
| 2517 | case ICmpInst::ICMP_ULE: |
Sylvestre Ledru | 91ce36c | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 2518 | // Comparison is true iff the LHS >=s 0. |
Duncan Sands | 8fb2c38 | 2011-01-20 13:21:55 +0000 | [diff] [blame] | 2519 | if (MaxRecurse) |
| 2520 | if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SGE, SrcOp, |
| 2521 | Constant::getNullValue(SrcTy), |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 2522 | Q, MaxRecurse-1)) |
Duncan Sands | 8fb2c38 | 2011-01-20 13:21:55 +0000 | [diff] [blame] | 2523 | return V; |
| 2524 | break; |
| 2525 | } |
| 2526 | } |
| 2527 | } |
| 2528 | } |
| 2529 | } |
| 2530 | |
Duncan Sands | d114ab3 | 2011-02-13 17:15:40 +0000 | [diff] [blame] | 2531 | // Special logic for binary operators. |
| 2532 | BinaryOperator *LBO = dyn_cast<BinaryOperator>(LHS); |
| 2533 | BinaryOperator *RBO = dyn_cast<BinaryOperator>(RHS); |
| 2534 | if (MaxRecurse && (LBO || RBO)) { |
Duncan Sands | d114ab3 | 2011-02-13 17:15:40 +0000 | [diff] [blame] | 2535 | // Analyze the case when either LHS or RHS is an add instruction. |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 2536 | Value *A = nullptr, *B = nullptr, *C = nullptr, *D = nullptr; |
Duncan Sands | d114ab3 | 2011-02-13 17:15:40 +0000 | [diff] [blame] | 2537 | // LHS = A + B (or A and B are null); RHS = C + D (or C and D are null). |
| 2538 | bool NoLHSWrapProblem = false, NoRHSWrapProblem = false; |
| 2539 | if (LBO && LBO->getOpcode() == Instruction::Add) { |
| 2540 | A = LBO->getOperand(0); B = LBO->getOperand(1); |
| 2541 | NoLHSWrapProblem = ICmpInst::isEquality(Pred) || |
| 2542 | (CmpInst::isUnsigned(Pred) && LBO->hasNoUnsignedWrap()) || |
| 2543 | (CmpInst::isSigned(Pred) && LBO->hasNoSignedWrap()); |
| 2544 | } |
| 2545 | if (RBO && RBO->getOpcode() == Instruction::Add) { |
| 2546 | C = RBO->getOperand(0); D = RBO->getOperand(1); |
| 2547 | NoRHSWrapProblem = ICmpInst::isEquality(Pred) || |
| 2548 | (CmpInst::isUnsigned(Pred) && RBO->hasNoUnsignedWrap()) || |
| 2549 | (CmpInst::isSigned(Pred) && RBO->hasNoSignedWrap()); |
| 2550 | } |
| 2551 | |
| 2552 | // icmp (X+Y), X -> icmp Y, 0 for equalities or if there is no overflow. |
| 2553 | if ((A == RHS || B == RHS) && NoLHSWrapProblem) |
| 2554 | if (Value *V = SimplifyICmpInst(Pred, A == RHS ? B : A, |
| 2555 | Constant::getNullValue(RHS->getType()), |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 2556 | Q, MaxRecurse-1)) |
Duncan Sands | d114ab3 | 2011-02-13 17:15:40 +0000 | [diff] [blame] | 2557 | return V; |
| 2558 | |
| 2559 | // icmp X, (X+Y) -> icmp 0, Y for equalities or if there is no overflow. |
| 2560 | if ((C == LHS || D == LHS) && NoRHSWrapProblem) |
| 2561 | if (Value *V = SimplifyICmpInst(Pred, |
| 2562 | Constant::getNullValue(LHS->getType()), |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 2563 | C == LHS ? D : C, Q, MaxRecurse-1)) |
Duncan Sands | d114ab3 | 2011-02-13 17:15:40 +0000 | [diff] [blame] | 2564 | return V; |
| 2565 | |
| 2566 | // icmp (X+Y), (X+Z) -> icmp Y,Z for equalities or if there is no overflow. |
| 2567 | if (A && C && (A == C || A == D || B == C || B == D) && |
| 2568 | NoLHSWrapProblem && NoRHSWrapProblem) { |
| 2569 | // Determine Y and Z in the form icmp (X+Y), (X+Z). |
Duncan Sands | c41076c | 2012-11-16 19:41:26 +0000 | [diff] [blame] | 2570 | Value *Y, *Z; |
| 2571 | if (A == C) { |
Duncan Sands | d7d8c09 | 2012-11-16 20:53:08 +0000 | [diff] [blame] | 2572 | // C + B == C + D -> B == D |
Duncan Sands | c41076c | 2012-11-16 19:41:26 +0000 | [diff] [blame] | 2573 | Y = B; |
| 2574 | Z = D; |
| 2575 | } else if (A == D) { |
Duncan Sands | d7d8c09 | 2012-11-16 20:53:08 +0000 | [diff] [blame] | 2576 | // D + B == C + D -> B == C |
Duncan Sands | c41076c | 2012-11-16 19:41:26 +0000 | [diff] [blame] | 2577 | Y = B; |
| 2578 | Z = C; |
| 2579 | } else if (B == C) { |
Duncan Sands | d7d8c09 | 2012-11-16 20:53:08 +0000 | [diff] [blame] | 2580 | // A + C == C + D -> A == D |
Duncan Sands | c41076c | 2012-11-16 19:41:26 +0000 | [diff] [blame] | 2581 | Y = A; |
| 2582 | Z = D; |
Duncan Sands | d7d8c09 | 2012-11-16 20:53:08 +0000 | [diff] [blame] | 2583 | } else { |
| 2584 | assert(B == D); |
| 2585 | // A + D == C + D -> A == C |
Duncan Sands | c41076c | 2012-11-16 19:41:26 +0000 | [diff] [blame] | 2586 | Y = A; |
| 2587 | Z = C; |
| 2588 | } |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 2589 | if (Value *V = SimplifyICmpInst(Pred, Y, Z, Q, MaxRecurse-1)) |
Duncan Sands | d114ab3 | 2011-02-13 17:15:40 +0000 | [diff] [blame] | 2590 | return V; |
| 2591 | } |
| 2592 | } |
| 2593 | |
David Majnemer | bd9ce4e | 2014-11-25 02:55:48 +0000 | [diff] [blame] | 2594 | // icmp pred (or X, Y), X |
| 2595 | if (LBO && match(LBO, m_CombineOr(m_Or(m_Value(), m_Specific(RHS)), |
| 2596 | m_Or(m_Specific(RHS), m_Value())))) { |
| 2597 | if (Pred == ICmpInst::ICMP_ULT) |
| 2598 | return getFalse(ITy); |
| 2599 | if (Pred == ICmpInst::ICMP_UGE) |
| 2600 | return getTrue(ITy); |
| 2601 | } |
| 2602 | // icmp pred X, (or X, Y) |
| 2603 | if (RBO && match(RBO, m_CombineOr(m_Or(m_Value(), m_Specific(LHS)), |
| 2604 | m_Or(m_Specific(LHS), m_Value())))) { |
| 2605 | if (Pred == ICmpInst::ICMP_ULE) |
| 2606 | return getTrue(ITy); |
| 2607 | if (Pred == ICmpInst::ICMP_UGT) |
| 2608 | return getFalse(ITy); |
| 2609 | } |
| 2610 | |
| 2611 | // icmp pred (and X, Y), X |
| 2612 | if (LBO && match(LBO, m_CombineOr(m_And(m_Value(), m_Specific(RHS)), |
| 2613 | m_And(m_Specific(RHS), m_Value())))) { |
| 2614 | if (Pred == ICmpInst::ICMP_UGT) |
| 2615 | return getFalse(ITy); |
| 2616 | if (Pred == ICmpInst::ICMP_ULE) |
| 2617 | return getTrue(ITy); |
| 2618 | } |
| 2619 | // icmp pred X, (and X, Y) |
| 2620 | if (RBO && match(RBO, m_CombineOr(m_And(m_Value(), m_Specific(LHS)), |
| 2621 | m_And(m_Specific(LHS), m_Value())))) { |
| 2622 | if (Pred == ICmpInst::ICMP_UGE) |
| 2623 | return getTrue(ITy); |
| 2624 | if (Pred == ICmpInst::ICMP_ULT) |
| 2625 | return getFalse(ITy); |
| 2626 | } |
| 2627 | |
David Majnemer | 2d6c023 | 2014-05-14 20:16:28 +0000 | [diff] [blame] | 2628 | // 0 - (zext X) pred C |
| 2629 | if (!CmpInst::isUnsigned(Pred) && match(LHS, m_Neg(m_ZExt(m_Value())))) { |
| 2630 | if (ConstantInt *RHSC = dyn_cast<ConstantInt>(RHS)) { |
| 2631 | if (RHSC->getValue().isStrictlyPositive()) { |
| 2632 | if (Pred == ICmpInst::ICMP_SLT) |
| 2633 | return ConstantInt::getTrue(RHSC->getContext()); |
| 2634 | if (Pred == ICmpInst::ICMP_SGE) |
| 2635 | return ConstantInt::getFalse(RHSC->getContext()); |
| 2636 | if (Pred == ICmpInst::ICMP_EQ) |
| 2637 | return ConstantInt::getFalse(RHSC->getContext()); |
| 2638 | if (Pred == ICmpInst::ICMP_NE) |
| 2639 | return ConstantInt::getTrue(RHSC->getContext()); |
| 2640 | } |
| 2641 | if (RHSC->getValue().isNonNegative()) { |
| 2642 | if (Pred == ICmpInst::ICMP_SLE) |
| 2643 | return ConstantInt::getTrue(RHSC->getContext()); |
| 2644 | if (Pred == ICmpInst::ICMP_SGT) |
| 2645 | return ConstantInt::getFalse(RHSC->getContext()); |
| 2646 | } |
| 2647 | } |
| 2648 | } |
| 2649 | |
Nick Lewycky | 35aeea9 | 2013-07-12 23:42:57 +0000 | [diff] [blame] | 2650 | // icmp pred (urem X, Y), Y |
Nick Lewycky | 980104d | 2011-03-09 06:26:03 +0000 | [diff] [blame] | 2651 | if (LBO && match(LBO, m_URem(m_Value(), m_Specific(RHS)))) { |
Nick Lewycky | 8e3a79d | 2011-03-04 10:06:52 +0000 | [diff] [blame] | 2652 | bool KnownNonNegative, KnownNegative; |
Nick Lewycky | c9d2006 | 2011-03-01 08:15:50 +0000 | [diff] [blame] | 2653 | switch (Pred) { |
| 2654 | default: |
| 2655 | break; |
Nick Lewycky | 8e3a79d | 2011-03-04 10:06:52 +0000 | [diff] [blame] | 2656 | case ICmpInst::ICMP_SGT: |
| 2657 | case ICmpInst::ICMP_SGE: |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 2658 | ComputeSignBit(RHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC, |
| 2659 | Q.CxtI, Q.DT); |
Nick Lewycky | 8e3a79d | 2011-03-04 10:06:52 +0000 | [diff] [blame] | 2660 | if (!KnownNonNegative) |
| 2661 | break; |
| 2662 | // fall-through |
Nick Lewycky | c9d2006 | 2011-03-01 08:15:50 +0000 | [diff] [blame] | 2663 | case ICmpInst::ICMP_EQ: |
| 2664 | case ICmpInst::ICMP_UGT: |
| 2665 | case ICmpInst::ICMP_UGE: |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2666 | return getFalse(ITy); |
Nick Lewycky | 8e3a79d | 2011-03-04 10:06:52 +0000 | [diff] [blame] | 2667 | case ICmpInst::ICMP_SLT: |
| 2668 | case ICmpInst::ICMP_SLE: |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 2669 | ComputeSignBit(RHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC, |
| 2670 | Q.CxtI, Q.DT); |
Nick Lewycky | 8e3a79d | 2011-03-04 10:06:52 +0000 | [diff] [blame] | 2671 | if (!KnownNonNegative) |
| 2672 | break; |
| 2673 | // fall-through |
Nick Lewycky | c9d2006 | 2011-03-01 08:15:50 +0000 | [diff] [blame] | 2674 | case ICmpInst::ICMP_NE: |
| 2675 | case ICmpInst::ICMP_ULT: |
| 2676 | case ICmpInst::ICMP_ULE: |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2677 | return getTrue(ITy); |
Nick Lewycky | c9d2006 | 2011-03-01 08:15:50 +0000 | [diff] [blame] | 2678 | } |
| 2679 | } |
Nick Lewycky | 35aeea9 | 2013-07-12 23:42:57 +0000 | [diff] [blame] | 2680 | |
| 2681 | // icmp pred X, (urem Y, X) |
Nick Lewycky | 980104d | 2011-03-09 06:26:03 +0000 | [diff] [blame] | 2682 | if (RBO && match(RBO, m_URem(m_Value(), m_Specific(LHS)))) { |
| 2683 | bool KnownNonNegative, KnownNegative; |
| 2684 | switch (Pred) { |
| 2685 | default: |
| 2686 | break; |
| 2687 | case ICmpInst::ICMP_SGT: |
| 2688 | case ICmpInst::ICMP_SGE: |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 2689 | ComputeSignBit(LHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC, |
| 2690 | Q.CxtI, Q.DT); |
Nick Lewycky | 980104d | 2011-03-09 06:26:03 +0000 | [diff] [blame] | 2691 | if (!KnownNonNegative) |
| 2692 | break; |
| 2693 | // fall-through |
Nick Lewycky | 774647d | 2011-03-09 08:20:06 +0000 | [diff] [blame] | 2694 | case ICmpInst::ICMP_NE: |
Nick Lewycky | 980104d | 2011-03-09 06:26:03 +0000 | [diff] [blame] | 2695 | case ICmpInst::ICMP_UGT: |
| 2696 | case ICmpInst::ICMP_UGE: |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2697 | return getTrue(ITy); |
Nick Lewycky | 980104d | 2011-03-09 06:26:03 +0000 | [diff] [blame] | 2698 | case ICmpInst::ICMP_SLT: |
| 2699 | case ICmpInst::ICMP_SLE: |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 2700 | ComputeSignBit(LHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC, |
| 2701 | Q.CxtI, Q.DT); |
Nick Lewycky | 980104d | 2011-03-09 06:26:03 +0000 | [diff] [blame] | 2702 | if (!KnownNonNegative) |
| 2703 | break; |
| 2704 | // fall-through |
Nick Lewycky | 774647d | 2011-03-09 08:20:06 +0000 | [diff] [blame] | 2705 | case ICmpInst::ICMP_EQ: |
Nick Lewycky | 980104d | 2011-03-09 06:26:03 +0000 | [diff] [blame] | 2706 | case ICmpInst::ICMP_ULT: |
| 2707 | case ICmpInst::ICMP_ULE: |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2708 | return getFalse(ITy); |
Nick Lewycky | 980104d | 2011-03-09 06:26:03 +0000 | [diff] [blame] | 2709 | } |
| 2710 | } |
Nick Lewycky | c9d2006 | 2011-03-01 08:15:50 +0000 | [diff] [blame] | 2711 | |
Duncan Sands | 92af0a8 | 2011-10-28 18:17:44 +0000 | [diff] [blame] | 2712 | // x udiv y <=u x. |
| 2713 | if (LBO && match(LBO, m_UDiv(m_Specific(RHS), m_Value()))) { |
| 2714 | // icmp pred (X /u Y), X |
| 2715 | if (Pred == ICmpInst::ICMP_UGT) |
| 2716 | return getFalse(ITy); |
| 2717 | if (Pred == ICmpInst::ICMP_ULE) |
| 2718 | return getTrue(ITy); |
| 2719 | } |
| 2720 | |
David Majnemer | 76d06bc | 2014-08-28 03:34:28 +0000 | [diff] [blame] | 2721 | // handle: |
| 2722 | // CI2 << X == CI |
| 2723 | // CI2 << X != CI |
| 2724 | // |
| 2725 | // where CI2 is a power of 2 and CI isn't |
| 2726 | if (auto *CI = dyn_cast<ConstantInt>(RHS)) { |
| 2727 | const APInt *CI2Val, *CIVal = &CI->getValue(); |
| 2728 | if (LBO && match(LBO, m_Shl(m_APInt(CI2Val), m_Value())) && |
| 2729 | CI2Val->isPowerOf2()) { |
| 2730 | if (!CIVal->isPowerOf2()) { |
| 2731 | // CI2 << X can equal zero in some circumstances, |
| 2732 | // this simplification is unsafe if CI is zero. |
| 2733 | // |
| 2734 | // We know it is safe if: |
| 2735 | // - The shift is nsw, we can't shift out the one bit. |
| 2736 | // - The shift is nuw, we can't shift out the one bit. |
| 2737 | // - CI2 is one |
| 2738 | // - CI isn't zero |
| 2739 | if (LBO->hasNoSignedWrap() || LBO->hasNoUnsignedWrap() || |
| 2740 | *CI2Val == 1 || !CI->isZero()) { |
| 2741 | if (Pred == ICmpInst::ICMP_EQ) |
| 2742 | return ConstantInt::getFalse(RHS->getContext()); |
| 2743 | if (Pred == ICmpInst::ICMP_NE) |
| 2744 | return ConstantInt::getTrue(RHS->getContext()); |
| 2745 | } |
| 2746 | } |
| 2747 | if (CIVal->isSignBit() && *CI2Val == 1) { |
| 2748 | if (Pred == ICmpInst::ICMP_UGT) |
| 2749 | return ConstantInt::getFalse(RHS->getContext()); |
| 2750 | if (Pred == ICmpInst::ICMP_ULE) |
| 2751 | return ConstantInt::getTrue(RHS->getContext()); |
| 2752 | } |
| 2753 | } |
| 2754 | } |
| 2755 | |
Nick Lewycky | 9719a71 | 2011-03-05 05:19:11 +0000 | [diff] [blame] | 2756 | if (MaxRecurse && LBO && RBO && LBO->getOpcode() == RBO->getOpcode() && |
| 2757 | LBO->getOperand(1) == RBO->getOperand(1)) { |
| 2758 | switch (LBO->getOpcode()) { |
| 2759 | default: break; |
| 2760 | case Instruction::UDiv: |
| 2761 | case Instruction::LShr: |
| 2762 | if (ICmpInst::isSigned(Pred)) |
| 2763 | break; |
| 2764 | // fall-through |
| 2765 | case Instruction::SDiv: |
| 2766 | case Instruction::AShr: |
Eli Friedman | 8a20e66 | 2011-05-05 21:59:18 +0000 | [diff] [blame] | 2767 | if (!LBO->isExact() || !RBO->isExact()) |
Nick Lewycky | 9719a71 | 2011-03-05 05:19:11 +0000 | [diff] [blame] | 2768 | break; |
| 2769 | if (Value *V = SimplifyICmpInst(Pred, LBO->getOperand(0), |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 2770 | RBO->getOperand(0), Q, MaxRecurse-1)) |
Nick Lewycky | 9719a71 | 2011-03-05 05:19:11 +0000 | [diff] [blame] | 2771 | return V; |
| 2772 | break; |
| 2773 | case Instruction::Shl: { |
Duncan Sands | 020c194 | 2011-08-04 10:02:21 +0000 | [diff] [blame] | 2774 | bool NUW = LBO->hasNoUnsignedWrap() && RBO->hasNoUnsignedWrap(); |
Nick Lewycky | 9719a71 | 2011-03-05 05:19:11 +0000 | [diff] [blame] | 2775 | bool NSW = LBO->hasNoSignedWrap() && RBO->hasNoSignedWrap(); |
| 2776 | if (!NUW && !NSW) |
| 2777 | break; |
| 2778 | if (!NSW && ICmpInst::isSigned(Pred)) |
| 2779 | break; |
| 2780 | if (Value *V = SimplifyICmpInst(Pred, LBO->getOperand(0), |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 2781 | RBO->getOperand(0), Q, MaxRecurse-1)) |
Nick Lewycky | 9719a71 | 2011-03-05 05:19:11 +0000 | [diff] [blame] | 2782 | return V; |
| 2783 | break; |
| 2784 | } |
| 2785 | } |
| 2786 | } |
| 2787 | |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2788 | // Simplify comparisons involving max/min. |
| 2789 | Value *A, *B; |
| 2790 | CmpInst::Predicate P = CmpInst::BAD_ICMP_PREDICATE; |
Sylvestre Ledru | 91ce36c | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 2791 | CmpInst::Predicate EqP; // Chosen so that "A == max/min(A,B)" iff "A EqP B". |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2792 | |
Duncan Sands | a228785 | 2011-05-04 16:05:05 +0000 | [diff] [blame] | 2793 | // Signed variants on "max(a,b)>=a -> true". |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2794 | if (match(LHS, m_SMax(m_Value(A), m_Value(B))) && (A == RHS || B == RHS)) { |
| 2795 | if (A != RHS) std::swap(A, B); // smax(A, B) pred A. |
Sylvestre Ledru | 91ce36c | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 2796 | EqP = CmpInst::ICMP_SGE; // "A == smax(A, B)" iff "A sge B". |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2797 | // We analyze this as smax(A, B) pred A. |
| 2798 | P = Pred; |
| 2799 | } else if (match(RHS, m_SMax(m_Value(A), m_Value(B))) && |
| 2800 | (A == LHS || B == LHS)) { |
| 2801 | if (A != LHS) std::swap(A, B); // A pred smax(A, B). |
Sylvestre Ledru | 91ce36c | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 2802 | EqP = CmpInst::ICMP_SGE; // "A == smax(A, B)" iff "A sge B". |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2803 | // We analyze this as smax(A, B) swapped-pred A. |
| 2804 | P = CmpInst::getSwappedPredicate(Pred); |
| 2805 | } else if (match(LHS, m_SMin(m_Value(A), m_Value(B))) && |
| 2806 | (A == RHS || B == RHS)) { |
| 2807 | if (A != RHS) std::swap(A, B); // smin(A, B) pred A. |
Sylvestre Ledru | 91ce36c | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 2808 | EqP = CmpInst::ICMP_SLE; // "A == smin(A, B)" iff "A sle B". |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2809 | // We analyze this as smax(-A, -B) swapped-pred -A. |
| 2810 | // Note that we do not need to actually form -A or -B thanks to EqP. |
| 2811 | P = CmpInst::getSwappedPredicate(Pred); |
| 2812 | } else if (match(RHS, m_SMin(m_Value(A), m_Value(B))) && |
| 2813 | (A == LHS || B == LHS)) { |
| 2814 | if (A != LHS) std::swap(A, B); // A pred smin(A, B). |
Sylvestre Ledru | 91ce36c | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 2815 | EqP = CmpInst::ICMP_SLE; // "A == smin(A, B)" iff "A sle B". |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2816 | // We analyze this as smax(-A, -B) pred -A. |
| 2817 | // Note that we do not need to actually form -A or -B thanks to EqP. |
| 2818 | P = Pred; |
| 2819 | } |
| 2820 | if (P != CmpInst::BAD_ICMP_PREDICATE) { |
| 2821 | // Cases correspond to "max(A, B) p A". |
| 2822 | switch (P) { |
| 2823 | default: |
| 2824 | break; |
| 2825 | case CmpInst::ICMP_EQ: |
| 2826 | case CmpInst::ICMP_SLE: |
Duncan Sands | af32728 | 2011-05-07 16:56:49 +0000 | [diff] [blame] | 2827 | // Equivalent to "A EqP B". This may be the same as the condition tested |
| 2828 | // in the max/min; if so, we can just return that. |
| 2829 | if (Value *V = ExtractEquivalentCondition(LHS, EqP, A, B)) |
| 2830 | return V; |
| 2831 | if (Value *V = ExtractEquivalentCondition(RHS, EqP, A, B)) |
| 2832 | return V; |
| 2833 | // Otherwise, see if "A EqP B" simplifies. |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2834 | if (MaxRecurse) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 2835 | if (Value *V = SimplifyICmpInst(EqP, A, B, Q, MaxRecurse-1)) |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2836 | return V; |
| 2837 | break; |
| 2838 | case CmpInst::ICMP_NE: |
Duncan Sands | af32728 | 2011-05-07 16:56:49 +0000 | [diff] [blame] | 2839 | case CmpInst::ICMP_SGT: { |
| 2840 | CmpInst::Predicate InvEqP = CmpInst::getInversePredicate(EqP); |
| 2841 | // Equivalent to "A InvEqP B". This may be the same as the condition |
| 2842 | // tested in the max/min; if so, we can just return that. |
| 2843 | if (Value *V = ExtractEquivalentCondition(LHS, InvEqP, A, B)) |
| 2844 | return V; |
| 2845 | if (Value *V = ExtractEquivalentCondition(RHS, InvEqP, A, B)) |
| 2846 | return V; |
| 2847 | // Otherwise, see if "A InvEqP B" simplifies. |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2848 | if (MaxRecurse) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 2849 | if (Value *V = SimplifyICmpInst(InvEqP, A, B, Q, MaxRecurse-1)) |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2850 | return V; |
| 2851 | break; |
Duncan Sands | af32728 | 2011-05-07 16:56:49 +0000 | [diff] [blame] | 2852 | } |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2853 | case CmpInst::ICMP_SGE: |
| 2854 | // Always true. |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2855 | return getTrue(ITy); |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2856 | case CmpInst::ICMP_SLT: |
| 2857 | // Always false. |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2858 | return getFalse(ITy); |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2859 | } |
| 2860 | } |
| 2861 | |
Duncan Sands | a228785 | 2011-05-04 16:05:05 +0000 | [diff] [blame] | 2862 | // Unsigned variants on "max(a,b)>=a -> true". |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2863 | P = CmpInst::BAD_ICMP_PREDICATE; |
| 2864 | if (match(LHS, m_UMax(m_Value(A), m_Value(B))) && (A == RHS || B == RHS)) { |
| 2865 | if (A != RHS) std::swap(A, B); // umax(A, B) pred A. |
Sylvestre Ledru | 91ce36c | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 2866 | EqP = CmpInst::ICMP_UGE; // "A == umax(A, B)" iff "A uge B". |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2867 | // We analyze this as umax(A, B) pred A. |
| 2868 | P = Pred; |
| 2869 | } else if (match(RHS, m_UMax(m_Value(A), m_Value(B))) && |
| 2870 | (A == LHS || B == LHS)) { |
| 2871 | if (A != LHS) std::swap(A, B); // A pred umax(A, B). |
Sylvestre Ledru | 91ce36c | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 2872 | EqP = CmpInst::ICMP_UGE; // "A == umax(A, B)" iff "A uge B". |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2873 | // We analyze this as umax(A, B) swapped-pred A. |
| 2874 | P = CmpInst::getSwappedPredicate(Pred); |
| 2875 | } else if (match(LHS, m_UMin(m_Value(A), m_Value(B))) && |
| 2876 | (A == RHS || B == RHS)) { |
| 2877 | if (A != RHS) std::swap(A, B); // umin(A, B) pred A. |
Sylvestre Ledru | 91ce36c | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 2878 | EqP = CmpInst::ICMP_ULE; // "A == umin(A, B)" iff "A ule B". |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2879 | // We analyze this as umax(-A, -B) swapped-pred -A. |
| 2880 | // Note that we do not need to actually form -A or -B thanks to EqP. |
| 2881 | P = CmpInst::getSwappedPredicate(Pred); |
| 2882 | } else if (match(RHS, m_UMin(m_Value(A), m_Value(B))) && |
| 2883 | (A == LHS || B == LHS)) { |
| 2884 | if (A != LHS) std::swap(A, B); // A pred umin(A, B). |
Sylvestre Ledru | 91ce36c | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 2885 | EqP = CmpInst::ICMP_ULE; // "A == umin(A, B)" iff "A ule B". |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2886 | // We analyze this as umax(-A, -B) pred -A. |
| 2887 | // Note that we do not need to actually form -A or -B thanks to EqP. |
| 2888 | P = Pred; |
| 2889 | } |
| 2890 | if (P != CmpInst::BAD_ICMP_PREDICATE) { |
| 2891 | // Cases correspond to "max(A, B) p A". |
| 2892 | switch (P) { |
| 2893 | default: |
| 2894 | break; |
| 2895 | case CmpInst::ICMP_EQ: |
| 2896 | case CmpInst::ICMP_ULE: |
Duncan Sands | af32728 | 2011-05-07 16:56:49 +0000 | [diff] [blame] | 2897 | // Equivalent to "A EqP B". This may be the same as the condition tested |
| 2898 | // in the max/min; if so, we can just return that. |
| 2899 | if (Value *V = ExtractEquivalentCondition(LHS, EqP, A, B)) |
| 2900 | return V; |
| 2901 | if (Value *V = ExtractEquivalentCondition(RHS, EqP, A, B)) |
| 2902 | return V; |
| 2903 | // Otherwise, see if "A EqP B" simplifies. |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2904 | if (MaxRecurse) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 2905 | if (Value *V = SimplifyICmpInst(EqP, A, B, Q, MaxRecurse-1)) |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2906 | return V; |
| 2907 | break; |
| 2908 | case CmpInst::ICMP_NE: |
Duncan Sands | af32728 | 2011-05-07 16:56:49 +0000 | [diff] [blame] | 2909 | case CmpInst::ICMP_UGT: { |
| 2910 | CmpInst::Predicate InvEqP = CmpInst::getInversePredicate(EqP); |
| 2911 | // Equivalent to "A InvEqP B". This may be the same as the condition |
| 2912 | // tested in the max/min; if so, we can just return that. |
| 2913 | if (Value *V = ExtractEquivalentCondition(LHS, InvEqP, A, B)) |
| 2914 | return V; |
| 2915 | if (Value *V = ExtractEquivalentCondition(RHS, InvEqP, A, B)) |
| 2916 | return V; |
| 2917 | // Otherwise, see if "A InvEqP B" simplifies. |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2918 | if (MaxRecurse) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 2919 | if (Value *V = SimplifyICmpInst(InvEqP, A, B, Q, MaxRecurse-1)) |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2920 | return V; |
| 2921 | break; |
Duncan Sands | af32728 | 2011-05-07 16:56:49 +0000 | [diff] [blame] | 2922 | } |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2923 | case CmpInst::ICMP_UGE: |
| 2924 | // Always true. |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2925 | return getTrue(ITy); |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2926 | case CmpInst::ICMP_ULT: |
| 2927 | // Always false. |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2928 | return getFalse(ITy); |
Duncan Sands | 0a9c124 | 2011-05-03 19:53:10 +0000 | [diff] [blame] | 2929 | } |
| 2930 | } |
| 2931 | |
Duncan Sands | a228785 | 2011-05-04 16:05:05 +0000 | [diff] [blame] | 2932 | // Variants on "max(x,y) >= min(x,z)". |
| 2933 | Value *C, *D; |
| 2934 | if (match(LHS, m_SMax(m_Value(A), m_Value(B))) && |
| 2935 | match(RHS, m_SMin(m_Value(C), m_Value(D))) && |
| 2936 | (A == C || A == D || B == C || B == D)) { |
| 2937 | // max(x, ?) pred min(x, ?). |
| 2938 | if (Pred == CmpInst::ICMP_SGE) |
| 2939 | // Always true. |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2940 | return getTrue(ITy); |
Duncan Sands | a228785 | 2011-05-04 16:05:05 +0000 | [diff] [blame] | 2941 | if (Pred == CmpInst::ICMP_SLT) |
| 2942 | // Always false. |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2943 | return getFalse(ITy); |
Duncan Sands | a228785 | 2011-05-04 16:05:05 +0000 | [diff] [blame] | 2944 | } else if (match(LHS, m_SMin(m_Value(A), m_Value(B))) && |
| 2945 | match(RHS, m_SMax(m_Value(C), m_Value(D))) && |
| 2946 | (A == C || A == D || B == C || B == D)) { |
| 2947 | // min(x, ?) pred max(x, ?). |
| 2948 | if (Pred == CmpInst::ICMP_SLE) |
| 2949 | // Always true. |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2950 | return getTrue(ITy); |
Duncan Sands | a228785 | 2011-05-04 16:05:05 +0000 | [diff] [blame] | 2951 | if (Pred == CmpInst::ICMP_SGT) |
| 2952 | // Always false. |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2953 | return getFalse(ITy); |
Duncan Sands | a228785 | 2011-05-04 16:05:05 +0000 | [diff] [blame] | 2954 | } else if (match(LHS, m_UMax(m_Value(A), m_Value(B))) && |
| 2955 | match(RHS, m_UMin(m_Value(C), m_Value(D))) && |
| 2956 | (A == C || A == D || B == C || B == D)) { |
| 2957 | // max(x, ?) pred min(x, ?). |
| 2958 | if (Pred == CmpInst::ICMP_UGE) |
| 2959 | // Always true. |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2960 | return getTrue(ITy); |
Duncan Sands | a228785 | 2011-05-04 16:05:05 +0000 | [diff] [blame] | 2961 | if (Pred == CmpInst::ICMP_ULT) |
| 2962 | // Always false. |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2963 | return getFalse(ITy); |
Duncan Sands | a228785 | 2011-05-04 16:05:05 +0000 | [diff] [blame] | 2964 | } else if (match(LHS, m_UMin(m_Value(A), m_Value(B))) && |
| 2965 | match(RHS, m_UMax(m_Value(C), m_Value(D))) && |
| 2966 | (A == C || A == D || B == C || B == D)) { |
| 2967 | // min(x, ?) pred max(x, ?). |
| 2968 | if (Pred == CmpInst::ICMP_ULE) |
| 2969 | // Always true. |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2970 | return getTrue(ITy); |
Duncan Sands | a228785 | 2011-05-04 16:05:05 +0000 | [diff] [blame] | 2971 | if (Pred == CmpInst::ICMP_UGT) |
| 2972 | // Always false. |
Duncan Sands | c1c9271 | 2011-07-26 15:03:53 +0000 | [diff] [blame] | 2973 | return getFalse(ITy); |
Duncan Sands | a228785 | 2011-05-04 16:05:05 +0000 | [diff] [blame] | 2974 | } |
| 2975 | |
Chandler Carruth | 8059c84 | 2012-03-25 21:28:14 +0000 | [diff] [blame] | 2976 | // Simplify comparisons of related pointers using a powerful, recursive |
| 2977 | // GEP-walk when we have target data available.. |
Dan Gohman | 18c77a1 | 2013-01-31 02:50:36 +0000 | [diff] [blame] | 2978 | if (LHS->getType()->isPointerTy()) |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 2979 | if (Constant *C = computePointerICmp(Q.DL, Q.TLI, Pred, LHS, RHS)) |
Chandler Carruth | 8059c84 | 2012-03-25 21:28:14 +0000 | [diff] [blame] | 2980 | return C; |
| 2981 | |
Nick Lewycky | 3db143e | 2012-02-26 02:09:49 +0000 | [diff] [blame] | 2982 | if (GetElementPtrInst *GLHS = dyn_cast<GetElementPtrInst>(LHS)) { |
| 2983 | if (GEPOperator *GRHS = dyn_cast<GEPOperator>(RHS)) { |
| 2984 | if (GLHS->getPointerOperand() == GRHS->getPointerOperand() && |
| 2985 | GLHS->hasAllConstantIndices() && GRHS->hasAllConstantIndices() && |
| 2986 | (ICmpInst::isEquality(Pred) || |
| 2987 | (GLHS->isInBounds() && GRHS->isInBounds() && |
| 2988 | Pred == ICmpInst::getSignedPredicate(Pred)))) { |
| 2989 | // The bases are equal and the indices are constant. Build a constant |
| 2990 | // expression GEP with the same indices and a null base pointer to see |
| 2991 | // what constant folding can make out of it. |
| 2992 | Constant *Null = Constant::getNullValue(GLHS->getPointerOperandType()); |
| 2993 | SmallVector<Value *, 4> IndicesLHS(GLHS->idx_begin(), GLHS->idx_end()); |
David Blaikie | 4a2e73b | 2015-04-02 18:55:32 +0000 | [diff] [blame] | 2994 | Constant *NewLHS = ConstantExpr::getGetElementPtr( |
| 2995 | GLHS->getSourceElementType(), Null, IndicesLHS); |
Nick Lewycky | 3db143e | 2012-02-26 02:09:49 +0000 | [diff] [blame] | 2996 | |
| 2997 | SmallVector<Value *, 4> IndicesRHS(GRHS->idx_begin(), GRHS->idx_end()); |
David Blaikie | 4a2e73b | 2015-04-02 18:55:32 +0000 | [diff] [blame] | 2998 | Constant *NewRHS = ConstantExpr::getGetElementPtr( |
| 2999 | GLHS->getSourceElementType(), Null, IndicesRHS); |
Nick Lewycky | 3db143e | 2012-02-26 02:09:49 +0000 | [diff] [blame] | 3000 | return ConstantExpr::getICmp(Pred, NewLHS, NewRHS); |
| 3001 | } |
| 3002 | } |
| 3003 | } |
| 3004 | |
David Majnemer | 5854e9f | 2014-11-16 02:20:08 +0000 | [diff] [blame] | 3005 | // If a bit is known to be zero for A and known to be one for B, |
| 3006 | // then A and B cannot be equal. |
| 3007 | if (ICmpInst::isEquality(Pred)) { |
| 3008 | if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) { |
| 3009 | uint32_t BitWidth = CI->getBitWidth(); |
| 3010 | APInt LHSKnownZero(BitWidth, 0); |
| 3011 | APInt LHSKnownOne(BitWidth, 0); |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3012 | computeKnownBits(LHS, LHSKnownZero, LHSKnownOne, Q.DL, /*Depth=*/0, Q.AC, |
David Majnemer | 5854e9f | 2014-11-16 02:20:08 +0000 | [diff] [blame] | 3013 | Q.CxtI, Q.DT); |
| 3014 | const APInt &RHSVal = CI->getValue(); |
| 3015 | if (((LHSKnownZero & RHSVal) != 0) || ((LHSKnownOne & ~RHSVal) != 0)) |
| 3016 | return Pred == ICmpInst::ICMP_EQ |
| 3017 | ? ConstantInt::getFalse(CI->getContext()) |
| 3018 | : ConstantInt::getTrue(CI->getContext()); |
| 3019 | } |
| 3020 | } |
| 3021 | |
Duncan Sands | f532d31 | 2010-11-07 16:12:23 +0000 | [diff] [blame] | 3022 | // If the comparison is with the result of a select instruction, check whether |
| 3023 | // comparing with either branch of the select always yields the same value. |
Duncan Sands | f64e690 | 2010-12-21 09:09:15 +0000 | [diff] [blame] | 3024 | if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS)) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3025 | if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, Q, MaxRecurse)) |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 3026 | return V; |
| 3027 | |
| 3028 | // If the comparison is with the result of a phi instruction, check whether |
| 3029 | // doing the compare with each incoming phi value yields a common result. |
Duncan Sands | f64e690 | 2010-12-21 09:09:15 +0000 | [diff] [blame] | 3030 | if (isa<PHINode>(LHS) || isa<PHINode>(RHS)) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3031 | if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, Q, MaxRecurse)) |
Duncan Sands | fc5ad3f0 | 2010-11-09 17:25:51 +0000 | [diff] [blame] | 3032 | return V; |
Duncan Sands | f532d31 | 2010-11-07 16:12:23 +0000 | [diff] [blame] | 3033 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 3034 | return nullptr; |
Chris Lattner | 084a1b5 | 2009-11-09 22:57:59 +0000 | [diff] [blame] | 3035 | } |
| 3036 | |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 3037 | Value *llvm::SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS, |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 3038 | const DataLayout &DL, |
Chad Rosier | c24b86f | 2011-12-01 03:08:23 +0000 | [diff] [blame] | 3039 | const TargetLibraryInfo *TLI, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3040 | const DominatorTree *DT, AssumptionCache *AC, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 3041 | Instruction *CxtI) { |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3042 | return ::SimplifyICmpInst(Predicate, LHS, RHS, Query(DL, TLI, DT, AC, CxtI), |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3043 | RecursionLimit); |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 3044 | } |
| 3045 | |
Chris Lattner | c1f1907 | 2009-11-09 23:28:39 +0000 | [diff] [blame] | 3046 | /// SimplifyFCmpInst - Given operands for an FCmpInst, see if we can |
| 3047 | /// fold the result. If not, this returns null. |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 3048 | static Value *SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS, |
Benjamin Kramer | f4ebfa3 | 2015-07-10 14:02:02 +0000 | [diff] [blame] | 3049 | FastMathFlags FMF, const Query &Q, |
| 3050 | unsigned MaxRecurse) { |
Chris Lattner | c1f1907 | 2009-11-09 23:28:39 +0000 | [diff] [blame] | 3051 | CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate; |
| 3052 | assert(CmpInst::isFPPredicate(Pred) && "Not an FP compare!"); |
| 3053 | |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 3054 | if (Constant *CLHS = dyn_cast<Constant>(LHS)) { |
Chris Lattner | c1f1907 | 2009-11-09 23:28:39 +0000 | [diff] [blame] | 3055 | if (Constant *CRHS = dyn_cast<Constant>(RHS)) |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 3056 | return ConstantFoldCompareInstOperands(Pred, CLHS, CRHS, Q.DL, Q.TLI); |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 3057 | |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 3058 | // If we have a constant, make sure it is on the RHS. |
| 3059 | std::swap(LHS, RHS); |
| 3060 | Pred = CmpInst::getSwappedPredicate(Pred); |
| 3061 | } |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 3062 | |
Chris Lattner | ccfdceb | 2009-11-09 23:55:12 +0000 | [diff] [blame] | 3063 | // Fold trivial predicates. |
| 3064 | if (Pred == FCmpInst::FCMP_FALSE) |
| 3065 | return ConstantInt::get(GetCompareTy(LHS), 0); |
| 3066 | if (Pred == FCmpInst::FCMP_TRUE) |
| 3067 | return ConstantInt::get(GetCompareTy(LHS), 1); |
| 3068 | |
Benjamin Kramer | f4ebfa3 | 2015-07-10 14:02:02 +0000 | [diff] [blame] | 3069 | // UNO/ORD predicates can be trivially folded if NaNs are ignored. |
| 3070 | if (FMF.noNaNs()) { |
| 3071 | if (Pred == FCmpInst::FCMP_UNO) |
| 3072 | return ConstantInt::get(GetCompareTy(LHS), 0); |
| 3073 | if (Pred == FCmpInst::FCMP_ORD) |
| 3074 | return ConstantInt::get(GetCompareTy(LHS), 1); |
| 3075 | } |
| 3076 | |
Mehdi Amini | eb242a5 | 2015-03-09 03:20:25 +0000 | [diff] [blame] | 3077 | // fcmp pred x, undef and fcmp pred undef, x |
| 3078 | // fold to true if unordered, false if ordered |
| 3079 | if (isa<UndefValue>(LHS) || isa<UndefValue>(RHS)) { |
| 3080 | // Choosing NaN for the undef will always make unordered comparison succeed |
| 3081 | // and ordered comparison fail. |
| 3082 | return ConstantInt::get(GetCompareTy(LHS), CmpInst::isUnordered(Pred)); |
| 3083 | } |
Chris Lattner | ccfdceb | 2009-11-09 23:55:12 +0000 | [diff] [blame] | 3084 | |
| 3085 | // fcmp x,x -> true/false. Not all compares are foldable. |
Duncan Sands | 772749a | 2011-01-01 20:08:02 +0000 | [diff] [blame] | 3086 | if (LHS == RHS) { |
Chris Lattner | ccfdceb | 2009-11-09 23:55:12 +0000 | [diff] [blame] | 3087 | if (CmpInst::isTrueWhenEqual(Pred)) |
| 3088 | return ConstantInt::get(GetCompareTy(LHS), 1); |
| 3089 | if (CmpInst::isFalseWhenEqual(Pred)) |
| 3090 | return ConstantInt::get(GetCompareTy(LHS), 0); |
| 3091 | } |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 3092 | |
Chris Lattner | ccfdceb | 2009-11-09 23:55:12 +0000 | [diff] [blame] | 3093 | // Handle fcmp with constant RHS |
Mehdi Amini | 383d7ae | 2015-02-13 07:38:04 +0000 | [diff] [blame] | 3094 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(RHS)) { |
Chris Lattner | ccfdceb | 2009-11-09 23:55:12 +0000 | [diff] [blame] | 3095 | // If the constant is a nan, see if we can fold the comparison based on it. |
Mehdi Amini | 383d7ae | 2015-02-13 07:38:04 +0000 | [diff] [blame] | 3096 | if (CFP->getValueAPF().isNaN()) { |
| 3097 | if (FCmpInst::isOrdered(Pred)) // True "if ordered and foo" |
| 3098 | return ConstantInt::getFalse(CFP->getContext()); |
| 3099 | assert(FCmpInst::isUnordered(Pred) && |
| 3100 | "Comparison must be either ordered or unordered!"); |
| 3101 | // True if unordered. |
| 3102 | return ConstantInt::getTrue(CFP->getContext()); |
| 3103 | } |
| 3104 | // Check whether the constant is an infinity. |
| 3105 | if (CFP->getValueAPF().isInfinity()) { |
| 3106 | if (CFP->getValueAPF().isNegative()) { |
Elena Demikhovsky | 45f0448 | 2015-01-28 08:03:58 +0000 | [diff] [blame] | 3107 | switch (Pred) { |
Elena Demikhovsky | 45f0448 | 2015-01-28 08:03:58 +0000 | [diff] [blame] | 3108 | case FCmpInst::FCMP_OLT: |
Mehdi Amini | 383d7ae | 2015-02-13 07:38:04 +0000 | [diff] [blame] | 3109 | // No value is ordered and less than negative infinity. |
| 3110 | return ConstantInt::getFalse(CFP->getContext()); |
| 3111 | case FCmpInst::FCMP_UGE: |
| 3112 | // All values are unordered with or at least negative infinity. |
| 3113 | return ConstantInt::getTrue(CFP->getContext()); |
Elena Demikhovsky | 45f0448 | 2015-01-28 08:03:58 +0000 | [diff] [blame] | 3114 | default: |
| 3115 | break; |
| 3116 | } |
Mehdi Amini | 383d7ae | 2015-02-13 07:38:04 +0000 | [diff] [blame] | 3117 | } else { |
| 3118 | switch (Pred) { |
| 3119 | case FCmpInst::FCMP_OGT: |
| 3120 | // No value is ordered and greater than infinity. |
| 3121 | return ConstantInt::getFalse(CFP->getContext()); |
| 3122 | case FCmpInst::FCMP_ULE: |
| 3123 | // All values are unordered with and at most infinity. |
| 3124 | return ConstantInt::getTrue(CFP->getContext()); |
| 3125 | default: |
| 3126 | break; |
| 3127 | } |
| 3128 | } |
| 3129 | } |
| 3130 | if (CFP->getValueAPF().isZero()) { |
| 3131 | switch (Pred) { |
| 3132 | case FCmpInst::FCMP_UGE: |
| 3133 | if (CannotBeOrderedLessThanZero(LHS)) |
| 3134 | return ConstantInt::getTrue(CFP->getContext()); |
| 3135 | break; |
| 3136 | case FCmpInst::FCMP_OLT: |
| 3137 | // X < 0 |
| 3138 | if (CannotBeOrderedLessThanZero(LHS)) |
| 3139 | return ConstantInt::getFalse(CFP->getContext()); |
| 3140 | break; |
| 3141 | default: |
| 3142 | break; |
| 3143 | } |
Chris Lattner | ccfdceb | 2009-11-09 23:55:12 +0000 | [diff] [blame] | 3144 | } |
| 3145 | } |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 3146 | |
Duncan Sands | a620bd1 | 2010-11-07 16:46:25 +0000 | [diff] [blame] | 3147 | // If the comparison is with the result of a select instruction, check whether |
| 3148 | // comparing with either branch of the select always yields the same value. |
Duncan Sands | f64e690 | 2010-12-21 09:09:15 +0000 | [diff] [blame] | 3149 | if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS)) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3150 | if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, Q, MaxRecurse)) |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 3151 | return V; |
| 3152 | |
| 3153 | // If the comparison is with the result of a phi instruction, check whether |
| 3154 | // doing the compare with each incoming phi value yields a common result. |
Duncan Sands | f64e690 | 2010-12-21 09:09:15 +0000 | [diff] [blame] | 3155 | if (isa<PHINode>(LHS) || isa<PHINode>(RHS)) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3156 | if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, Q, MaxRecurse)) |
Duncan Sands | fc5ad3f0 | 2010-11-09 17:25:51 +0000 | [diff] [blame] | 3157 | return V; |
Duncan Sands | a620bd1 | 2010-11-07 16:46:25 +0000 | [diff] [blame] | 3158 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 3159 | return nullptr; |
Chris Lattner | c1f1907 | 2009-11-09 23:28:39 +0000 | [diff] [blame] | 3160 | } |
| 3161 | |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 3162 | Value *llvm::SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS, |
Benjamin Kramer | f4ebfa3 | 2015-07-10 14:02:02 +0000 | [diff] [blame] | 3163 | FastMathFlags FMF, const DataLayout &DL, |
Chad Rosier | c24b86f | 2011-12-01 03:08:23 +0000 | [diff] [blame] | 3164 | const TargetLibraryInfo *TLI, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3165 | const DominatorTree *DT, AssumptionCache *AC, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 3166 | const Instruction *CxtI) { |
Benjamin Kramer | f4ebfa3 | 2015-07-10 14:02:02 +0000 | [diff] [blame] | 3167 | return ::SimplifyFCmpInst(Predicate, LHS, RHS, FMF, |
| 3168 | Query(DL, TLI, DT, AC, CxtI), RecursionLimit); |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 3169 | } |
| 3170 | |
David Majnemer | 3f0fb98 | 2015-06-06 22:40:21 +0000 | [diff] [blame] | 3171 | /// SimplifyWithOpReplaced - See if V simplifies when its operand Op is |
| 3172 | /// replaced with RepOp. |
| 3173 | static const Value *SimplifyWithOpReplaced(Value *V, Value *Op, Value *RepOp, |
| 3174 | const Query &Q, |
| 3175 | unsigned MaxRecurse) { |
| 3176 | // Trivial replacement. |
| 3177 | if (V == Op) |
| 3178 | return RepOp; |
| 3179 | |
| 3180 | auto *I = dyn_cast<Instruction>(V); |
| 3181 | if (!I) |
| 3182 | return nullptr; |
| 3183 | |
| 3184 | // If this is a binary operator, try to simplify it with the replaced op. |
| 3185 | if (auto *B = dyn_cast<BinaryOperator>(I)) { |
| 3186 | // Consider: |
| 3187 | // %cmp = icmp eq i32 %x, 2147483647 |
| 3188 | // %add = add nsw i32 %x, 1 |
| 3189 | // %sel = select i1 %cmp, i32 -2147483648, i32 %add |
| 3190 | // |
| 3191 | // We can't replace %sel with %add unless we strip away the flags. |
| 3192 | if (isa<OverflowingBinaryOperator>(B)) |
| 3193 | if (B->hasNoSignedWrap() || B->hasNoUnsignedWrap()) |
| 3194 | return nullptr; |
| 3195 | if (isa<PossiblyExactOperator>(B)) |
| 3196 | if (B->isExact()) |
| 3197 | return nullptr; |
| 3198 | |
| 3199 | if (MaxRecurse) { |
| 3200 | if (B->getOperand(0) == Op) |
| 3201 | return SimplifyBinOp(B->getOpcode(), RepOp, B->getOperand(1), Q, |
| 3202 | MaxRecurse - 1); |
| 3203 | if (B->getOperand(1) == Op) |
| 3204 | return SimplifyBinOp(B->getOpcode(), B->getOperand(0), RepOp, Q, |
| 3205 | MaxRecurse - 1); |
| 3206 | } |
| 3207 | } |
| 3208 | |
| 3209 | // Same for CmpInsts. |
| 3210 | if (CmpInst *C = dyn_cast<CmpInst>(I)) { |
| 3211 | if (MaxRecurse) { |
| 3212 | if (C->getOperand(0) == Op) |
| 3213 | return SimplifyCmpInst(C->getPredicate(), RepOp, C->getOperand(1), Q, |
| 3214 | MaxRecurse - 1); |
| 3215 | if (C->getOperand(1) == Op) |
| 3216 | return SimplifyCmpInst(C->getPredicate(), C->getOperand(0), RepOp, Q, |
| 3217 | MaxRecurse - 1); |
| 3218 | } |
| 3219 | } |
| 3220 | |
| 3221 | // TODO: We could hand off more cases to instsimplify here. |
| 3222 | |
| 3223 | // If all operands are constant after substituting Op for RepOp then we can |
| 3224 | // constant fold the instruction. |
| 3225 | if (Constant *CRepOp = dyn_cast<Constant>(RepOp)) { |
| 3226 | // Build a list of all constant operands. |
| 3227 | SmallVector<Constant *, 8> ConstOps; |
| 3228 | for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) { |
| 3229 | if (I->getOperand(i) == Op) |
| 3230 | ConstOps.push_back(CRepOp); |
| 3231 | else if (Constant *COp = dyn_cast<Constant>(I->getOperand(i))) |
| 3232 | ConstOps.push_back(COp); |
| 3233 | else |
| 3234 | break; |
| 3235 | } |
| 3236 | |
| 3237 | // All operands were constants, fold it. |
| 3238 | if (ConstOps.size() == I->getNumOperands()) { |
| 3239 | if (CmpInst *C = dyn_cast<CmpInst>(I)) |
| 3240 | return ConstantFoldCompareInstOperands(C->getPredicate(), ConstOps[0], |
| 3241 | ConstOps[1], Q.DL, Q.TLI); |
| 3242 | |
| 3243 | if (LoadInst *LI = dyn_cast<LoadInst>(I)) |
| 3244 | if (!LI->isVolatile()) |
| 3245 | return ConstantFoldLoadFromConstPtr(ConstOps[0], Q.DL); |
| 3246 | |
| 3247 | return ConstantFoldInstOperands(I->getOpcode(), I->getType(), ConstOps, |
| 3248 | Q.DL, Q.TLI); |
| 3249 | } |
| 3250 | } |
| 3251 | |
| 3252 | return nullptr; |
| 3253 | } |
| 3254 | |
Chris Lattner | c707fa9 | 2010-04-20 05:32:14 +0000 | [diff] [blame] | 3255 | /// SimplifySelectInst - Given operands for a SelectInst, see if we can fold |
| 3256 | /// the result. If not, this returns null. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3257 | static Value *SimplifySelectInst(Value *CondVal, Value *TrueVal, |
| 3258 | Value *FalseVal, const Query &Q, |
| 3259 | unsigned MaxRecurse) { |
Chris Lattner | c707fa9 | 2010-04-20 05:32:14 +0000 | [diff] [blame] | 3260 | // select true, X, Y -> X |
| 3261 | // select false, X, Y -> Y |
Benjamin Kramer | 5e1794e | 2014-01-24 17:09:53 +0000 | [diff] [blame] | 3262 | if (Constant *CB = dyn_cast<Constant>(CondVal)) { |
| 3263 | if (CB->isAllOnesValue()) |
| 3264 | return TrueVal; |
| 3265 | if (CB->isNullValue()) |
| 3266 | return FalseVal; |
| 3267 | } |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 3268 | |
Chris Lattner | c707fa9 | 2010-04-20 05:32:14 +0000 | [diff] [blame] | 3269 | // select C, X, X -> X |
Duncan Sands | 772749a | 2011-01-01 20:08:02 +0000 | [diff] [blame] | 3270 | if (TrueVal == FalseVal) |
Chris Lattner | c707fa9 | 2010-04-20 05:32:14 +0000 | [diff] [blame] | 3271 | return TrueVal; |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 3272 | |
Chris Lattner | c707fa9 | 2010-04-20 05:32:14 +0000 | [diff] [blame] | 3273 | if (isa<UndefValue>(CondVal)) { // select undef, X, Y -> X or Y |
| 3274 | if (isa<Constant>(TrueVal)) |
| 3275 | return TrueVal; |
| 3276 | return FalseVal; |
| 3277 | } |
Dan Gohman | 54664ed | 2011-07-01 01:03:43 +0000 | [diff] [blame] | 3278 | if (isa<UndefValue>(TrueVal)) // select C, undef, X -> X |
| 3279 | return FalseVal; |
| 3280 | if (isa<UndefValue>(FalseVal)) // select C, X, undef -> X |
| 3281 | return TrueVal; |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 3282 | |
David Majnemer | 3f0fb98 | 2015-06-06 22:40:21 +0000 | [diff] [blame] | 3283 | if (const auto *ICI = dyn_cast<ICmpInst>(CondVal)) { |
| 3284 | unsigned BitWidth = Q.DL.getTypeSizeInBits(TrueVal->getType()); |
David Majnemer | 7bd7144 | 2014-12-20 03:29:59 +0000 | [diff] [blame] | 3285 | ICmpInst::Predicate Pred = ICI->getPredicate(); |
David Majnemer | 3f0fb98 | 2015-06-06 22:40:21 +0000 | [diff] [blame] | 3286 | Value *CmpLHS = ICI->getOperand(0); |
| 3287 | Value *CmpRHS = ICI->getOperand(1); |
David Majnemer | 147f858 | 2014-12-20 04:45:33 +0000 | [diff] [blame] | 3288 | APInt MinSignedValue = APInt::getSignBit(BitWidth); |
David Majnemer | c6a5e1d | 2014-11-27 06:32:46 +0000 | [diff] [blame] | 3289 | Value *X; |
| 3290 | const APInt *Y; |
David Majnemer | 7bd7144 | 2014-12-20 03:29:59 +0000 | [diff] [blame] | 3291 | bool TrueWhenUnset; |
David Majnemer | 147f858 | 2014-12-20 04:45:33 +0000 | [diff] [blame] | 3292 | bool IsBitTest = false; |
David Majnemer | 0b6a0b0 | 2014-12-20 03:04:38 +0000 | [diff] [blame] | 3293 | if (ICmpInst::isEquality(Pred) && |
David Majnemer | 3f0fb98 | 2015-06-06 22:40:21 +0000 | [diff] [blame] | 3294 | match(CmpLHS, m_And(m_Value(X), m_APInt(Y))) && |
| 3295 | match(CmpRHS, m_Zero())) { |
David Majnemer | 7bd7144 | 2014-12-20 03:29:59 +0000 | [diff] [blame] | 3296 | IsBitTest = true; |
| 3297 | TrueWhenUnset = Pred == ICmpInst::ICMP_EQ; |
David Majnemer | 3f0fb98 | 2015-06-06 22:40:21 +0000 | [diff] [blame] | 3298 | } else if (Pred == ICmpInst::ICMP_SLT && match(CmpRHS, m_Zero())) { |
| 3299 | X = CmpLHS; |
David Majnemer | 7bd7144 | 2014-12-20 03:29:59 +0000 | [diff] [blame] | 3300 | Y = &MinSignedValue; |
| 3301 | IsBitTest = true; |
| 3302 | TrueWhenUnset = false; |
David Majnemer | 3f0fb98 | 2015-06-06 22:40:21 +0000 | [diff] [blame] | 3303 | } else if (Pred == ICmpInst::ICMP_SGT && match(CmpRHS, m_AllOnes())) { |
| 3304 | X = CmpLHS; |
David Majnemer | 7bd7144 | 2014-12-20 03:29:59 +0000 | [diff] [blame] | 3305 | Y = &MinSignedValue; |
| 3306 | IsBitTest = true; |
| 3307 | TrueWhenUnset = true; |
| 3308 | } |
| 3309 | if (IsBitTest) { |
David Majnemer | c6a5e1d | 2014-11-27 06:32:46 +0000 | [diff] [blame] | 3310 | const APInt *C; |
| 3311 | // (X & Y) == 0 ? X & ~Y : X --> X |
| 3312 | // (X & Y) != 0 ? X & ~Y : X --> X & ~Y |
| 3313 | if (FalseVal == X && match(TrueVal, m_And(m_Specific(X), m_APInt(C))) && |
| 3314 | *Y == ~*C) |
David Majnemer | 7bd7144 | 2014-12-20 03:29:59 +0000 | [diff] [blame] | 3315 | return TrueWhenUnset ? FalseVal : TrueVal; |
David Majnemer | c6a5e1d | 2014-11-27 06:32:46 +0000 | [diff] [blame] | 3316 | // (X & Y) == 0 ? X : X & ~Y --> X & ~Y |
| 3317 | // (X & Y) != 0 ? X : X & ~Y --> X |
| 3318 | if (TrueVal == X && match(FalseVal, m_And(m_Specific(X), m_APInt(C))) && |
| 3319 | *Y == ~*C) |
David Majnemer | 7bd7144 | 2014-12-20 03:29:59 +0000 | [diff] [blame] | 3320 | return TrueWhenUnset ? FalseVal : TrueVal; |
David Majnemer | c6a5e1d | 2014-11-27 06:32:46 +0000 | [diff] [blame] | 3321 | |
| 3322 | if (Y->isPowerOf2()) { |
| 3323 | // (X & Y) == 0 ? X | Y : X --> X | Y |
| 3324 | // (X & Y) != 0 ? X | Y : X --> X |
| 3325 | if (FalseVal == X && match(TrueVal, m_Or(m_Specific(X), m_APInt(C))) && |
| 3326 | *Y == *C) |
David Majnemer | 7bd7144 | 2014-12-20 03:29:59 +0000 | [diff] [blame] | 3327 | return TrueWhenUnset ? TrueVal : FalseVal; |
David Majnemer | c6a5e1d | 2014-11-27 06:32:46 +0000 | [diff] [blame] | 3328 | // (X & Y) == 0 ? X : X | Y --> X |
| 3329 | // (X & Y) != 0 ? X : X | Y --> X | Y |
| 3330 | if (TrueVal == X && match(FalseVal, m_Or(m_Specific(X), m_APInt(C))) && |
| 3331 | *Y == *C) |
David Majnemer | 7bd7144 | 2014-12-20 03:29:59 +0000 | [diff] [blame] | 3332 | return TrueWhenUnset ? TrueVal : FalseVal; |
David Majnemer | c6a5e1d | 2014-11-27 06:32:46 +0000 | [diff] [blame] | 3333 | } |
| 3334 | } |
David Majnemer | 3f0fb98 | 2015-06-06 22:40:21 +0000 | [diff] [blame] | 3335 | if (ICI->hasOneUse()) { |
| 3336 | const APInt *C; |
| 3337 | if (match(CmpRHS, m_APInt(C))) { |
| 3338 | // X < MIN ? T : F --> F |
| 3339 | if (Pred == ICmpInst::ICMP_SLT && C->isMinSignedValue()) |
| 3340 | return FalseVal; |
| 3341 | // X < MIN ? T : F --> F |
| 3342 | if (Pred == ICmpInst::ICMP_ULT && C->isMinValue()) |
| 3343 | return FalseVal; |
| 3344 | // X > MAX ? T : F --> F |
| 3345 | if (Pred == ICmpInst::ICMP_SGT && C->isMaxSignedValue()) |
| 3346 | return FalseVal; |
| 3347 | // X > MAX ? T : F --> F |
| 3348 | if (Pred == ICmpInst::ICMP_UGT && C->isMaxValue()) |
| 3349 | return FalseVal; |
| 3350 | } |
| 3351 | } |
| 3352 | |
| 3353 | // If we have an equality comparison then we know the value in one of the |
| 3354 | // arms of the select. See if substituting this value into the arm and |
| 3355 | // simplifying the result yields the same value as the other arm. |
| 3356 | if (Pred == ICmpInst::ICMP_EQ) { |
| 3357 | if (SimplifyWithOpReplaced(FalseVal, CmpLHS, CmpRHS, Q, MaxRecurse) == |
| 3358 | TrueVal || |
| 3359 | SimplifyWithOpReplaced(FalseVal, CmpRHS, CmpLHS, Q, MaxRecurse) == |
| 3360 | TrueVal) |
| 3361 | return FalseVal; |
| 3362 | if (SimplifyWithOpReplaced(TrueVal, CmpLHS, CmpRHS, Q, MaxRecurse) == |
| 3363 | FalseVal || |
| 3364 | SimplifyWithOpReplaced(TrueVal, CmpRHS, CmpLHS, Q, MaxRecurse) == |
| 3365 | FalseVal) |
| 3366 | return FalseVal; |
| 3367 | } else if (Pred == ICmpInst::ICMP_NE) { |
| 3368 | if (SimplifyWithOpReplaced(TrueVal, CmpLHS, CmpRHS, Q, MaxRecurse) == |
| 3369 | FalseVal || |
| 3370 | SimplifyWithOpReplaced(TrueVal, CmpRHS, CmpLHS, Q, MaxRecurse) == |
| 3371 | FalseVal) |
| 3372 | return TrueVal; |
| 3373 | if (SimplifyWithOpReplaced(FalseVal, CmpLHS, CmpRHS, Q, MaxRecurse) == |
| 3374 | TrueVal || |
| 3375 | SimplifyWithOpReplaced(FalseVal, CmpRHS, CmpLHS, Q, MaxRecurse) == |
| 3376 | TrueVal) |
| 3377 | return TrueVal; |
| 3378 | } |
David Majnemer | c6a5e1d | 2014-11-27 06:32:46 +0000 | [diff] [blame] | 3379 | } |
| 3380 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 3381 | return nullptr; |
Chris Lattner | c707fa9 | 2010-04-20 05:32:14 +0000 | [diff] [blame] | 3382 | } |
| 3383 | |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3384 | Value *llvm::SimplifySelectInst(Value *Cond, Value *TrueVal, Value *FalseVal, |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 3385 | const DataLayout &DL, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3386 | const TargetLibraryInfo *TLI, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3387 | const DominatorTree *DT, AssumptionCache *AC, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 3388 | const Instruction *CxtI) { |
| 3389 | return ::SimplifySelectInst(Cond, TrueVal, FalseVal, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3390 | Query(DL, TLI, DT, AC, CxtI), RecursionLimit); |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3391 | } |
| 3392 | |
Chris Lattner | 8574aba | 2009-11-27 00:29:05 +0000 | [diff] [blame] | 3393 | /// SimplifyGEPInst - Given operands for an GetElementPtrInst, see if we can |
| 3394 | /// fold the result. If not, this returns null. |
David Blaikie | 4a2e73b | 2015-04-02 18:55:32 +0000 | [diff] [blame] | 3395 | static Value *SimplifyGEPInst(Type *SrcTy, ArrayRef<Value *> Ops, |
| 3396 | const Query &Q, unsigned) { |
Duncan Sands | 8a0f486 | 2010-11-22 13:42:49 +0000 | [diff] [blame] | 3397 | // The type of the GEP pointer operand. |
David Blaikie | 4a2e73b | 2015-04-02 18:55:32 +0000 | [diff] [blame] | 3398 | unsigned AS = |
| 3399 | cast<PointerType>(Ops[0]->getType()->getScalarType())->getAddressSpace(); |
Duncan Sands | 8a0f486 | 2010-11-22 13:42:49 +0000 | [diff] [blame] | 3400 | |
Chris Lattner | 8574aba | 2009-11-27 00:29:05 +0000 | [diff] [blame] | 3401 | // getelementptr P -> P. |
Jay Foad | b992a63 | 2011-07-19 15:07:52 +0000 | [diff] [blame] | 3402 | if (Ops.size() == 1) |
Chris Lattner | 8574aba | 2009-11-27 00:29:05 +0000 | [diff] [blame] | 3403 | return Ops[0]; |
| 3404 | |
Nico Weber | 48c8240 | 2014-08-27 20:06:19 +0000 | [diff] [blame] | 3405 | // Compute the (pointer) type returned by the GEP instruction. |
David Blaikie | 4a2e73b | 2015-04-02 18:55:32 +0000 | [diff] [blame] | 3406 | Type *LastType = GetElementPtrInst::getIndexedType(SrcTy, Ops.slice(1)); |
Nico Weber | 48c8240 | 2014-08-27 20:06:19 +0000 | [diff] [blame] | 3407 | Type *GEPTy = PointerType::get(LastType, AS); |
| 3408 | if (VectorType *VT = dyn_cast<VectorType>(Ops[0]->getType())) |
| 3409 | GEPTy = VectorType::get(GEPTy, VT->getNumElements()); |
| 3410 | |
| 3411 | if (isa<UndefValue>(Ops[0])) |
Duncan Sands | 8a0f486 | 2010-11-22 13:42:49 +0000 | [diff] [blame] | 3412 | return UndefValue::get(GEPTy); |
Chris Lattner | 8574aba | 2009-11-27 00:29:05 +0000 | [diff] [blame] | 3413 | |
Jay Foad | b992a63 | 2011-07-19 15:07:52 +0000 | [diff] [blame] | 3414 | if (Ops.size() == 2) { |
Duncan Sands | cf4bceb | 2010-11-21 13:53:09 +0000 | [diff] [blame] | 3415 | // getelementptr P, 0 -> P. |
Benjamin Kramer | 5e1794e | 2014-01-24 17:09:53 +0000 | [diff] [blame] | 3416 | if (match(Ops[1], m_Zero())) |
| 3417 | return Ops[0]; |
Nico Weber | 48c8240 | 2014-08-27 20:06:19 +0000 | [diff] [blame] | 3418 | |
David Blaikie | 4a2e73b | 2015-04-02 18:55:32 +0000 | [diff] [blame] | 3419 | Type *Ty = SrcTy; |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 3420 | if (Ty->isSized()) { |
Nico Weber | 48c8240 | 2014-08-27 20:06:19 +0000 | [diff] [blame] | 3421 | Value *P; |
| 3422 | uint64_t C; |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 3423 | uint64_t TyAllocSize = Q.DL.getTypeAllocSize(Ty); |
Nico Weber | 48c8240 | 2014-08-27 20:06:19 +0000 | [diff] [blame] | 3424 | // getelementptr P, N -> P if P points to a type of zero size. |
| 3425 | if (TyAllocSize == 0) |
Duncan Sands | cf4bceb | 2010-11-21 13:53:09 +0000 | [diff] [blame] | 3426 | return Ops[0]; |
Nico Weber | 48c8240 | 2014-08-27 20:06:19 +0000 | [diff] [blame] | 3427 | |
| 3428 | // The following transforms are only safe if the ptrtoint cast |
| 3429 | // doesn't truncate the pointers. |
| 3430 | if (Ops[1]->getType()->getScalarSizeInBits() == |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 3431 | Q.DL.getPointerSizeInBits(AS)) { |
Nico Weber | 48c8240 | 2014-08-27 20:06:19 +0000 | [diff] [blame] | 3432 | auto PtrToIntOrZero = [GEPTy](Value *P) -> Value * { |
| 3433 | if (match(P, m_Zero())) |
| 3434 | return Constant::getNullValue(GEPTy); |
| 3435 | Value *Temp; |
| 3436 | if (match(P, m_PtrToInt(m_Value(Temp)))) |
David Majnemer | 11ca297 | 2014-08-27 20:08:34 +0000 | [diff] [blame] | 3437 | if (Temp->getType() == GEPTy) |
| 3438 | return Temp; |
Nico Weber | 48c8240 | 2014-08-27 20:06:19 +0000 | [diff] [blame] | 3439 | return nullptr; |
| 3440 | }; |
| 3441 | |
| 3442 | // getelementptr V, (sub P, V) -> P if P points to a type of size 1. |
| 3443 | if (TyAllocSize == 1 && |
| 3444 | match(Ops[1], m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0]))))) |
| 3445 | if (Value *R = PtrToIntOrZero(P)) |
| 3446 | return R; |
| 3447 | |
| 3448 | // getelementptr V, (ashr (sub P, V), C) -> Q |
| 3449 | // if P points to a type of size 1 << C. |
| 3450 | if (match(Ops[1], |
| 3451 | m_AShr(m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0]))), |
| 3452 | m_ConstantInt(C))) && |
| 3453 | TyAllocSize == 1ULL << C) |
| 3454 | if (Value *R = PtrToIntOrZero(P)) |
| 3455 | return R; |
| 3456 | |
| 3457 | // getelementptr V, (sdiv (sub P, V), C) -> Q |
| 3458 | // if P points to a type of size C. |
| 3459 | if (match(Ops[1], |
| 3460 | m_SDiv(m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0]))), |
| 3461 | m_SpecificInt(TyAllocSize)))) |
| 3462 | if (Value *R = PtrToIntOrZero(P)) |
| 3463 | return R; |
| 3464 | } |
Duncan Sands | cf4bceb | 2010-11-21 13:53:09 +0000 | [diff] [blame] | 3465 | } |
| 3466 | } |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 3467 | |
Chris Lattner | 8574aba | 2009-11-27 00:29:05 +0000 | [diff] [blame] | 3468 | // Check to see if this is constant foldable. |
Jay Foad | b992a63 | 2011-07-19 15:07:52 +0000 | [diff] [blame] | 3469 | for (unsigned i = 0, e = Ops.size(); i != e; ++i) |
Chris Lattner | 8574aba | 2009-11-27 00:29:05 +0000 | [diff] [blame] | 3470 | if (!isa<Constant>(Ops[i])) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 3471 | return nullptr; |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 3472 | |
David Blaikie | 4a2e73b | 2015-04-02 18:55:32 +0000 | [diff] [blame] | 3473 | return ConstantExpr::getGetElementPtr(SrcTy, cast<Constant>(Ops[0]), |
| 3474 | Ops.slice(1)); |
Chris Lattner | 8574aba | 2009-11-27 00:29:05 +0000 | [diff] [blame] | 3475 | } |
| 3476 | |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 3477 | Value *llvm::SimplifyGEPInst(ArrayRef<Value *> Ops, const DataLayout &DL, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3478 | const TargetLibraryInfo *TLI, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3479 | const DominatorTree *DT, AssumptionCache *AC, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 3480 | const Instruction *CxtI) { |
David Blaikie | 4a2e73b | 2015-04-02 18:55:32 +0000 | [diff] [blame] | 3481 | return ::SimplifyGEPInst( |
| 3482 | cast<PointerType>(Ops[0]->getType()->getScalarType())->getElementType(), |
| 3483 | Ops, Query(DL, TLI, DT, AC, CxtI), RecursionLimit); |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3484 | } |
| 3485 | |
Duncan Sands | fd26a95 | 2011-09-05 06:52:48 +0000 | [diff] [blame] | 3486 | /// SimplifyInsertValueInst - Given operands for an InsertValueInst, see if we |
| 3487 | /// can fold the result. If not, this returns null. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3488 | static Value *SimplifyInsertValueInst(Value *Agg, Value *Val, |
| 3489 | ArrayRef<unsigned> Idxs, const Query &Q, |
| 3490 | unsigned) { |
Duncan Sands | fd26a95 | 2011-09-05 06:52:48 +0000 | [diff] [blame] | 3491 | if (Constant *CAgg = dyn_cast<Constant>(Agg)) |
| 3492 | if (Constant *CVal = dyn_cast<Constant>(Val)) |
| 3493 | return ConstantFoldInsertValueInstruction(CAgg, CVal, Idxs); |
| 3494 | |
| 3495 | // insertvalue x, undef, n -> x |
| 3496 | if (match(Val, m_Undef())) |
| 3497 | return Agg; |
| 3498 | |
| 3499 | // insertvalue x, (extractvalue y, n), n |
| 3500 | if (ExtractValueInst *EV = dyn_cast<ExtractValueInst>(Val)) |
Benjamin Kramer | 4b79c21 | 2011-09-05 18:16:19 +0000 | [diff] [blame] | 3501 | if (EV->getAggregateOperand()->getType() == Agg->getType() && |
| 3502 | EV->getIndices() == Idxs) { |
Duncan Sands | fd26a95 | 2011-09-05 06:52:48 +0000 | [diff] [blame] | 3503 | // insertvalue undef, (extractvalue y, n), n -> y |
| 3504 | if (match(Agg, m_Undef())) |
| 3505 | return EV->getAggregateOperand(); |
| 3506 | |
| 3507 | // insertvalue y, (extractvalue y, n), n -> y |
| 3508 | if (Agg == EV->getAggregateOperand()) |
| 3509 | return Agg; |
| 3510 | } |
| 3511 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 3512 | return nullptr; |
Duncan Sands | fd26a95 | 2011-09-05 06:52:48 +0000 | [diff] [blame] | 3513 | } |
| 3514 | |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3515 | Value *llvm::SimplifyInsertValueInst( |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 3516 | Value *Agg, Value *Val, ArrayRef<unsigned> Idxs, const DataLayout &DL, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3517 | const TargetLibraryInfo *TLI, const DominatorTree *DT, AssumptionCache *AC, |
| 3518 | const Instruction *CxtI) { |
| 3519 | return ::SimplifyInsertValueInst(Agg, Val, Idxs, Query(DL, TLI, DT, AC, CxtI), |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3520 | RecursionLimit); |
| 3521 | } |
| 3522 | |
David Majnemer | 25a796e | 2015-07-13 01:15:46 +0000 | [diff] [blame^] | 3523 | /// SimplifyExtractValueInst - Given operands for an ExtractValueInst, see if we |
| 3524 | /// can fold the result. If not, this returns null. |
| 3525 | static Value *SimplifyExtractValueInst(Value *Agg, ArrayRef<unsigned> Idxs, |
| 3526 | const Query &, unsigned) { |
| 3527 | if (auto *CAgg = dyn_cast<Constant>(Agg)) |
| 3528 | return ConstantFoldExtractValueInstruction(CAgg, Idxs); |
| 3529 | |
| 3530 | // extractvalue x, (insertvalue y, elt, n), n -> elt |
| 3531 | unsigned NumIdxs = Idxs.size(); |
| 3532 | for (auto *IVI = dyn_cast<InsertValueInst>(Agg); IVI != nullptr; |
| 3533 | IVI = dyn_cast<InsertValueInst>(IVI->getAggregateOperand())) { |
| 3534 | ArrayRef<unsigned> InsertValueIdxs = IVI->getIndices(); |
| 3535 | unsigned NumInsertValueIdxs = InsertValueIdxs.size(); |
| 3536 | unsigned NumCommonIdxs = std::min(NumInsertValueIdxs, NumIdxs); |
| 3537 | if (InsertValueIdxs.slice(0, NumCommonIdxs) == |
| 3538 | Idxs.slice(0, NumCommonIdxs)) { |
| 3539 | if (NumIdxs == NumInsertValueIdxs) |
| 3540 | return IVI->getInsertedValueOperand(); |
| 3541 | break; |
| 3542 | } |
| 3543 | } |
| 3544 | |
| 3545 | return nullptr; |
| 3546 | } |
| 3547 | |
| 3548 | Value *llvm::SimplifyExtractValueInst(Value *Agg, ArrayRef<unsigned> Idxs, |
| 3549 | const DataLayout &DL, |
| 3550 | const TargetLibraryInfo *TLI, |
| 3551 | const DominatorTree *DT, |
| 3552 | AssumptionCache *AC, |
| 3553 | const Instruction *CxtI) { |
| 3554 | return ::SimplifyExtractValueInst(Agg, Idxs, Query(DL, TLI, DT, AC, CxtI), |
| 3555 | RecursionLimit); |
| 3556 | } |
| 3557 | |
Duncan Sands | 7412f6e | 2010-11-17 04:30:22 +0000 | [diff] [blame] | 3558 | /// SimplifyPHINode - See if we can fold the given phi. If not, returns null. |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3559 | static Value *SimplifyPHINode(PHINode *PN, const Query &Q) { |
Duncan Sands | 7412f6e | 2010-11-17 04:30:22 +0000 | [diff] [blame] | 3560 | // If all of the PHI's incoming values are the same then replace the PHI node |
| 3561 | // with the common value. |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 3562 | Value *CommonValue = nullptr; |
Duncan Sands | 7412f6e | 2010-11-17 04:30:22 +0000 | [diff] [blame] | 3563 | bool HasUndefInput = false; |
Pete Cooper | 833f34d | 2015-05-12 20:05:31 +0000 | [diff] [blame] | 3564 | for (Value *Incoming : PN->incoming_values()) { |
Duncan Sands | 7412f6e | 2010-11-17 04:30:22 +0000 | [diff] [blame] | 3565 | // If the incoming value is the phi node itself, it can safely be skipped. |
| 3566 | if (Incoming == PN) continue; |
| 3567 | if (isa<UndefValue>(Incoming)) { |
| 3568 | // Remember that we saw an undef value, but otherwise ignore them. |
| 3569 | HasUndefInput = true; |
| 3570 | continue; |
| 3571 | } |
| 3572 | if (CommonValue && Incoming != CommonValue) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 3573 | return nullptr; // Not the same, bail out. |
Duncan Sands | 7412f6e | 2010-11-17 04:30:22 +0000 | [diff] [blame] | 3574 | CommonValue = Incoming; |
| 3575 | } |
| 3576 | |
| 3577 | // If CommonValue is null then all of the incoming values were either undef or |
| 3578 | // equal to the phi node itself. |
| 3579 | if (!CommonValue) |
| 3580 | return UndefValue::get(PN->getType()); |
| 3581 | |
| 3582 | // If we have a PHI node like phi(X, undef, X), where X is defined by some |
| 3583 | // instruction, we cannot return X as the result of the PHI node unless it |
| 3584 | // dominates the PHI block. |
| 3585 | if (HasUndefInput) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 3586 | return ValueDominatesPHI(CommonValue, PN, Q.DT) ? CommonValue : nullptr; |
Duncan Sands | 7412f6e | 2010-11-17 04:30:22 +0000 | [diff] [blame] | 3587 | |
| 3588 | return CommonValue; |
| 3589 | } |
| 3590 | |
Duncan Sands | 395ac42d | 2012-03-13 14:07:05 +0000 | [diff] [blame] | 3591 | static Value *SimplifyTruncInst(Value *Op, Type *Ty, const Query &Q, unsigned) { |
| 3592 | if (Constant *C = dyn_cast<Constant>(Op)) |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 3593 | return ConstantFoldInstOperands(Instruction::Trunc, Ty, C, Q.DL, Q.TLI); |
Duncan Sands | 395ac42d | 2012-03-13 14:07:05 +0000 | [diff] [blame] | 3594 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 3595 | return nullptr; |
Duncan Sands | 395ac42d | 2012-03-13 14:07:05 +0000 | [diff] [blame] | 3596 | } |
| 3597 | |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 3598 | Value *llvm::SimplifyTruncInst(Value *Op, Type *Ty, const DataLayout &DL, |
Duncan Sands | 395ac42d | 2012-03-13 14:07:05 +0000 | [diff] [blame] | 3599 | const TargetLibraryInfo *TLI, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3600 | const DominatorTree *DT, AssumptionCache *AC, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 3601 | const Instruction *CxtI) { |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3602 | return ::SimplifyTruncInst(Op, Ty, Query(DL, TLI, DT, AC, CxtI), |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 3603 | RecursionLimit); |
Duncan Sands | 395ac42d | 2012-03-13 14:07:05 +0000 | [diff] [blame] | 3604 | } |
| 3605 | |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 3606 | //=== Helper functions for higher up the class hierarchy. |
Chris Lattner | c1f1907 | 2009-11-09 23:28:39 +0000 | [diff] [blame] | 3607 | |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 3608 | /// SimplifyBinOp - Given operands for a BinaryOperator, see if we can |
| 3609 | /// fold the result. If not, this returns null. |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 3610 | static Value *SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3611 | const Query &Q, unsigned MaxRecurse) { |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 3612 | switch (Opcode) { |
Chris Lattner | 9e4aa02 | 2011-02-09 17:15:04 +0000 | [diff] [blame] | 3613 | case Instruction::Add: |
Duncan Sands | 8b4e283 | 2011-02-09 17:45:03 +0000 | [diff] [blame] | 3614 | return SimplifyAddInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3615 | Q, MaxRecurse); |
Michael Ilseman | d2b05e5 | 2012-12-12 00:29:16 +0000 | [diff] [blame] | 3616 | case Instruction::FAdd: |
| 3617 | return SimplifyFAddInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse); |
| 3618 | |
Chris Lattner | 9e4aa02 | 2011-02-09 17:15:04 +0000 | [diff] [blame] | 3619 | case Instruction::Sub: |
Duncan Sands | 8b4e283 | 2011-02-09 17:45:03 +0000 | [diff] [blame] | 3620 | return SimplifySubInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3621 | Q, MaxRecurse); |
Michael Ilseman | d2b05e5 | 2012-12-12 00:29:16 +0000 | [diff] [blame] | 3622 | case Instruction::FSub: |
| 3623 | return SimplifyFSubInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse); |
| 3624 | |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3625 | case Instruction::Mul: return SimplifyMulInst (LHS, RHS, Q, MaxRecurse); |
Michael Ilseman | d2b05e5 | 2012-12-12 00:29:16 +0000 | [diff] [blame] | 3626 | case Instruction::FMul: |
| 3627 | return SimplifyFMulInst (LHS, RHS, FastMathFlags(), Q, MaxRecurse); |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3628 | case Instruction::SDiv: return SimplifySDivInst(LHS, RHS, Q, MaxRecurse); |
| 3629 | case Instruction::UDiv: return SimplifyUDivInst(LHS, RHS, Q, MaxRecurse); |
Mehdi Amini | cd3ca6f | 2015-02-23 18:30:25 +0000 | [diff] [blame] | 3630 | case Instruction::FDiv: |
| 3631 | return SimplifyFDivInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse); |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3632 | case Instruction::SRem: return SimplifySRemInst(LHS, RHS, Q, MaxRecurse); |
| 3633 | case Instruction::URem: return SimplifyURemInst(LHS, RHS, Q, MaxRecurse); |
Mehdi Amini | cd3ca6f | 2015-02-23 18:30:25 +0000 | [diff] [blame] | 3634 | case Instruction::FRem: |
| 3635 | return SimplifyFRemInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse); |
Chris Lattner | 9e4aa02 | 2011-02-09 17:15:04 +0000 | [diff] [blame] | 3636 | case Instruction::Shl: |
Duncan Sands | 8b4e283 | 2011-02-09 17:45:03 +0000 | [diff] [blame] | 3637 | return SimplifyShlInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3638 | Q, MaxRecurse); |
Chris Lattner | 9e4aa02 | 2011-02-09 17:15:04 +0000 | [diff] [blame] | 3639 | case Instruction::LShr: |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3640 | return SimplifyLShrInst(LHS, RHS, /*isExact*/false, Q, MaxRecurse); |
Chris Lattner | 9e4aa02 | 2011-02-09 17:15:04 +0000 | [diff] [blame] | 3641 | case Instruction::AShr: |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3642 | return SimplifyAShrInst(LHS, RHS, /*isExact*/false, Q, MaxRecurse); |
| 3643 | case Instruction::And: return SimplifyAndInst(LHS, RHS, Q, MaxRecurse); |
| 3644 | case Instruction::Or: return SimplifyOrInst (LHS, RHS, Q, MaxRecurse); |
| 3645 | case Instruction::Xor: return SimplifyXorInst(LHS, RHS, Q, MaxRecurse); |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 3646 | default: |
| 3647 | if (Constant *CLHS = dyn_cast<Constant>(LHS)) |
| 3648 | if (Constant *CRHS = dyn_cast<Constant>(RHS)) { |
| 3649 | Constant *COps[] = {CLHS, CRHS}; |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 3650 | return ConstantFoldInstOperands(Opcode, LHS->getType(), COps, Q.DL, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3651 | Q.TLI); |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 3652 | } |
Duncan Sands | b0579e9 | 2010-11-10 13:00:08 +0000 | [diff] [blame] | 3653 | |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 3654 | // If the operation is associative, try some generic simplifications. |
| 3655 | if (Instruction::isAssociative(Opcode)) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3656 | if (Value *V = SimplifyAssociativeBinOp(Opcode, LHS, RHS, Q, MaxRecurse)) |
Duncan Sands | 6c7a52c | 2010-12-21 08:49:00 +0000 | [diff] [blame] | 3657 | return V; |
| 3658 | |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3659 | // If the operation is with the result of a select instruction check whether |
Duncan Sands | b0579e9 | 2010-11-10 13:00:08 +0000 | [diff] [blame] | 3660 | // operating on either branch of the select always yields the same value. |
Duncan Sands | f64e690 | 2010-12-21 09:09:15 +0000 | [diff] [blame] | 3661 | if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS)) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3662 | if (Value *V = ThreadBinOpOverSelect(Opcode, LHS, RHS, Q, MaxRecurse)) |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 3663 | return V; |
| 3664 | |
| 3665 | // If the operation is with the result of a phi instruction, check whether |
| 3666 | // operating on all incoming values of the phi always yields the same value. |
Duncan Sands | f64e690 | 2010-12-21 09:09:15 +0000 | [diff] [blame] | 3667 | if (isa<PHINode>(LHS) || isa<PHINode>(RHS)) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3668 | if (Value *V = ThreadBinOpOverPHI(Opcode, LHS, RHS, Q, MaxRecurse)) |
Duncan Sands | b0579e9 | 2010-11-10 13:00:08 +0000 | [diff] [blame] | 3669 | return V; |
| 3670 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 3671 | return nullptr; |
Chris Lattner | a71e9d6 | 2009-11-10 00:55:12 +0000 | [diff] [blame] | 3672 | } |
| 3673 | } |
Chris Lattner | c1f1907 | 2009-11-09 23:28:39 +0000 | [diff] [blame] | 3674 | |
Michael Zolotukhin | 4e8598e | 2015-02-06 20:02:51 +0000 | [diff] [blame] | 3675 | /// SimplifyFPBinOp - Given operands for a BinaryOperator, see if we can |
| 3676 | /// fold the result. If not, this returns null. |
| 3677 | /// In contrast to SimplifyBinOp, try to use FastMathFlag when folding the |
| 3678 | /// result. In case we don't need FastMathFlags, simply fall to SimplifyBinOp. |
| 3679 | static Value *SimplifyFPBinOp(unsigned Opcode, Value *LHS, Value *RHS, |
| 3680 | const FastMathFlags &FMF, const Query &Q, |
| 3681 | unsigned MaxRecurse) { |
| 3682 | switch (Opcode) { |
| 3683 | case Instruction::FAdd: |
| 3684 | return SimplifyFAddInst(LHS, RHS, FMF, Q, MaxRecurse); |
| 3685 | case Instruction::FSub: |
| 3686 | return SimplifyFSubInst(LHS, RHS, FMF, Q, MaxRecurse); |
| 3687 | case Instruction::FMul: |
| 3688 | return SimplifyFMulInst(LHS, RHS, FMF, Q, MaxRecurse); |
| 3689 | default: |
| 3690 | return SimplifyBinOp(Opcode, LHS, RHS, Q, MaxRecurse); |
| 3691 | } |
| 3692 | } |
| 3693 | |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 3694 | Value *llvm::SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS, |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 3695 | const DataLayout &DL, const TargetLibraryInfo *TLI, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3696 | const DominatorTree *DT, AssumptionCache *AC, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 3697 | const Instruction *CxtI) { |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3698 | return ::SimplifyBinOp(Opcode, LHS, RHS, Query(DL, TLI, DT, AC, CxtI), |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 3699 | RecursionLimit); |
Chris Lattner | c1f1907 | 2009-11-09 23:28:39 +0000 | [diff] [blame] | 3700 | } |
| 3701 | |
Michael Zolotukhin | 4e8598e | 2015-02-06 20:02:51 +0000 | [diff] [blame] | 3702 | Value *llvm::SimplifyFPBinOp(unsigned Opcode, Value *LHS, Value *RHS, |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 3703 | const FastMathFlags &FMF, const DataLayout &DL, |
Michael Zolotukhin | 4e8598e | 2015-02-06 20:02:51 +0000 | [diff] [blame] | 3704 | const TargetLibraryInfo *TLI, |
| 3705 | const DominatorTree *DT, AssumptionCache *AC, |
| 3706 | const Instruction *CxtI) { |
| 3707 | return ::SimplifyFPBinOp(Opcode, LHS, RHS, FMF, Query(DL, TLI, DT, AC, CxtI), |
| 3708 | RecursionLimit); |
| 3709 | } |
| 3710 | |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 3711 | /// SimplifyCmpInst - Given operands for a CmpInst, see if we can |
| 3712 | /// fold the result. |
| 3713 | static Value *SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS, |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3714 | const Query &Q, unsigned MaxRecurse) { |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 3715 | if (CmpInst::isIntPredicate((CmpInst::Predicate)Predicate)) |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3716 | return SimplifyICmpInst(Predicate, LHS, RHS, Q, MaxRecurse); |
Benjamin Kramer | f4ebfa3 | 2015-07-10 14:02:02 +0000 | [diff] [blame] | 3717 | return SimplifyFCmpInst(Predicate, LHS, RHS, FastMathFlags(), Q, MaxRecurse); |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 3718 | } |
| 3719 | |
| 3720 | Value *llvm::SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS, |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 3721 | const DataLayout &DL, const TargetLibraryInfo *TLI, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3722 | const DominatorTree *DT, AssumptionCache *AC, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 3723 | const Instruction *CxtI) { |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3724 | return ::SimplifyCmpInst(Predicate, LHS, RHS, Query(DL, TLI, DT, AC, CxtI), |
Duncan Sands | b8cee00 | 2012-03-13 11:42:19 +0000 | [diff] [blame] | 3725 | RecursionLimit); |
Duncan Sands | f3b1bf1 | 2010-11-10 18:23:01 +0000 | [diff] [blame] | 3726 | } |
Chris Lattner | fb7f87d | 2009-11-10 01:08:51 +0000 | [diff] [blame] | 3727 | |
Michael Ilseman | 5485729 | 2013-02-07 19:26:05 +0000 | [diff] [blame] | 3728 | static bool IsIdempotent(Intrinsic::ID ID) { |
| 3729 | switch (ID) { |
| 3730 | default: return false; |
| 3731 | |
| 3732 | // Unary idempotent: f(f(x)) = f(x) |
| 3733 | case Intrinsic::fabs: |
| 3734 | case Intrinsic::floor: |
| 3735 | case Intrinsic::ceil: |
| 3736 | case Intrinsic::trunc: |
| 3737 | case Intrinsic::rint: |
| 3738 | case Intrinsic::nearbyint: |
Hal Finkel | 171817e | 2013-08-07 22:49:12 +0000 | [diff] [blame] | 3739 | case Intrinsic::round: |
Michael Ilseman | 5485729 | 2013-02-07 19:26:05 +0000 | [diff] [blame] | 3740 | return true; |
| 3741 | } |
| 3742 | } |
| 3743 | |
| 3744 | template <typename IterTy> |
David Majnemer | 1503258 | 2015-05-22 03:56:46 +0000 | [diff] [blame] | 3745 | static Value *SimplifyIntrinsic(Function *F, IterTy ArgBegin, IterTy ArgEnd, |
Michael Ilseman | 5485729 | 2013-02-07 19:26:05 +0000 | [diff] [blame] | 3746 | const Query &Q, unsigned MaxRecurse) { |
David Majnemer | 1503258 | 2015-05-22 03:56:46 +0000 | [diff] [blame] | 3747 | Intrinsic::ID IID = F->getIntrinsicID(); |
| 3748 | unsigned NumOperands = std::distance(ArgBegin, ArgEnd); |
| 3749 | Type *ReturnType = F->getReturnType(); |
| 3750 | |
| 3751 | // Binary Ops |
| 3752 | if (NumOperands == 2) { |
| 3753 | Value *LHS = *ArgBegin; |
| 3754 | Value *RHS = *(ArgBegin + 1); |
| 3755 | if (IID == Intrinsic::usub_with_overflow || |
| 3756 | IID == Intrinsic::ssub_with_overflow) { |
| 3757 | // X - X -> { 0, false } |
| 3758 | if (LHS == RHS) |
| 3759 | return Constant::getNullValue(ReturnType); |
| 3760 | |
| 3761 | // X - undef -> undef |
| 3762 | // undef - X -> undef |
| 3763 | if (isa<UndefValue>(LHS) || isa<UndefValue>(RHS)) |
| 3764 | return UndefValue::get(ReturnType); |
| 3765 | } |
| 3766 | |
| 3767 | if (IID == Intrinsic::uadd_with_overflow || |
| 3768 | IID == Intrinsic::sadd_with_overflow) { |
| 3769 | // X + undef -> undef |
| 3770 | if (isa<UndefValue>(RHS)) |
| 3771 | return UndefValue::get(ReturnType); |
| 3772 | } |
| 3773 | |
| 3774 | if (IID == Intrinsic::umul_with_overflow || |
| 3775 | IID == Intrinsic::smul_with_overflow) { |
| 3776 | // X * 0 -> { 0, false } |
| 3777 | if (match(RHS, m_Zero())) |
| 3778 | return Constant::getNullValue(ReturnType); |
| 3779 | |
| 3780 | // X * undef -> { 0, false } |
| 3781 | if (match(RHS, m_Undef())) |
| 3782 | return Constant::getNullValue(ReturnType); |
| 3783 | } |
| 3784 | } |
| 3785 | |
Michael Ilseman | 5485729 | 2013-02-07 19:26:05 +0000 | [diff] [blame] | 3786 | // Perform idempotent optimizations |
| 3787 | if (!IsIdempotent(IID)) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 3788 | return nullptr; |
Michael Ilseman | 5485729 | 2013-02-07 19:26:05 +0000 | [diff] [blame] | 3789 | |
| 3790 | // Unary Ops |
David Majnemer | 1503258 | 2015-05-22 03:56:46 +0000 | [diff] [blame] | 3791 | if (NumOperands == 1) |
Michael Ilseman | 5485729 | 2013-02-07 19:26:05 +0000 | [diff] [blame] | 3792 | if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(*ArgBegin)) |
| 3793 | if (II->getIntrinsicID() == IID) |
| 3794 | return II; |
| 3795 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 3796 | return nullptr; |
Michael Ilseman | 5485729 | 2013-02-07 19:26:05 +0000 | [diff] [blame] | 3797 | } |
| 3798 | |
Chandler Carruth | 9dc3558 | 2012-12-28 11:30:55 +0000 | [diff] [blame] | 3799 | template <typename IterTy> |
Chandler Carruth | f618215 | 2012-12-28 14:23:29 +0000 | [diff] [blame] | 3800 | static Value *SimplifyCall(Value *V, IterTy ArgBegin, IterTy ArgEnd, |
Chandler Carruth | 9dc3558 | 2012-12-28 11:30:55 +0000 | [diff] [blame] | 3801 | const Query &Q, unsigned MaxRecurse) { |
Chandler Carruth | f618215 | 2012-12-28 14:23:29 +0000 | [diff] [blame] | 3802 | Type *Ty = V->getType(); |
Chandler Carruth | 9dc3558 | 2012-12-28 11:30:55 +0000 | [diff] [blame] | 3803 | if (PointerType *PTy = dyn_cast<PointerType>(Ty)) |
| 3804 | Ty = PTy->getElementType(); |
| 3805 | FunctionType *FTy = cast<FunctionType>(Ty); |
| 3806 | |
Dan Gohman | 85977e6 | 2011-11-04 18:32:42 +0000 | [diff] [blame] | 3807 | // call undef -> undef |
Chandler Carruth | f618215 | 2012-12-28 14:23:29 +0000 | [diff] [blame] | 3808 | if (isa<UndefValue>(V)) |
Chandler Carruth | 9dc3558 | 2012-12-28 11:30:55 +0000 | [diff] [blame] | 3809 | return UndefValue::get(FTy->getReturnType()); |
Dan Gohman | 85977e6 | 2011-11-04 18:32:42 +0000 | [diff] [blame] | 3810 | |
Chandler Carruth | f618215 | 2012-12-28 14:23:29 +0000 | [diff] [blame] | 3811 | Function *F = dyn_cast<Function>(V); |
| 3812 | if (!F) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 3813 | return nullptr; |
Chandler Carruth | f618215 | 2012-12-28 14:23:29 +0000 | [diff] [blame] | 3814 | |
David Majnemer | 1503258 | 2015-05-22 03:56:46 +0000 | [diff] [blame] | 3815 | if (F->isIntrinsic()) |
| 3816 | if (Value *Ret = SimplifyIntrinsic(F, ArgBegin, ArgEnd, Q, MaxRecurse)) |
Michael Ilseman | 5485729 | 2013-02-07 19:26:05 +0000 | [diff] [blame] | 3817 | return Ret; |
| 3818 | |
Chandler Carruth | f618215 | 2012-12-28 14:23:29 +0000 | [diff] [blame] | 3819 | if (!canConstantFoldCallTo(F)) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 3820 | return nullptr; |
Chandler Carruth | f618215 | 2012-12-28 14:23:29 +0000 | [diff] [blame] | 3821 | |
| 3822 | SmallVector<Constant *, 4> ConstantArgs; |
| 3823 | ConstantArgs.reserve(ArgEnd - ArgBegin); |
| 3824 | for (IterTy I = ArgBegin, E = ArgEnd; I != E; ++I) { |
| 3825 | Constant *C = dyn_cast<Constant>(*I); |
| 3826 | if (!C) |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 3827 | return nullptr; |
Chandler Carruth | f618215 | 2012-12-28 14:23:29 +0000 | [diff] [blame] | 3828 | ConstantArgs.push_back(C); |
| 3829 | } |
| 3830 | |
| 3831 | return ConstantFoldCall(F, ConstantArgs, Q.TLI); |
Dan Gohman | 85977e6 | 2011-11-04 18:32:42 +0000 | [diff] [blame] | 3832 | } |
| 3833 | |
Chandler Carruth | f618215 | 2012-12-28 14:23:29 +0000 | [diff] [blame] | 3834 | Value *llvm::SimplifyCall(Value *V, User::op_iterator ArgBegin, |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 3835 | User::op_iterator ArgEnd, const DataLayout &DL, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3836 | const TargetLibraryInfo *TLI, const DominatorTree *DT, |
| 3837 | AssumptionCache *AC, const Instruction *CxtI) { |
| 3838 | return ::SimplifyCall(V, ArgBegin, ArgEnd, Query(DL, TLI, DT, AC, CxtI), |
Chandler Carruth | 9dc3558 | 2012-12-28 11:30:55 +0000 | [diff] [blame] | 3839 | RecursionLimit); |
| 3840 | } |
| 3841 | |
Chandler Carruth | f618215 | 2012-12-28 14:23:29 +0000 | [diff] [blame] | 3842 | Value *llvm::SimplifyCall(Value *V, ArrayRef<Value *> Args, |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 3843 | const DataLayout &DL, const TargetLibraryInfo *TLI, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3844 | const DominatorTree *DT, AssumptionCache *AC, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 3845 | const Instruction *CxtI) { |
| 3846 | return ::SimplifyCall(V, Args.begin(), Args.end(), |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3847 | Query(DL, TLI, DT, AC, CxtI), RecursionLimit); |
Chandler Carruth | 9dc3558 | 2012-12-28 11:30:55 +0000 | [diff] [blame] | 3848 | } |
| 3849 | |
Chris Lattner | fb7f87d | 2009-11-10 01:08:51 +0000 | [diff] [blame] | 3850 | /// SimplifyInstruction - See if we can compute a simplified version of this |
| 3851 | /// instruction. If not, this returns null. |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 3852 | Value *llvm::SimplifyInstruction(Instruction *I, const DataLayout &DL, |
Chad Rosier | c24b86f | 2011-12-01 03:08:23 +0000 | [diff] [blame] | 3853 | const TargetLibraryInfo *TLI, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3854 | const DominatorTree *DT, AssumptionCache *AC) { |
Duncan Sands | 64e41cf | 2010-11-17 08:35:29 +0000 | [diff] [blame] | 3855 | Value *Result; |
| 3856 | |
Chris Lattner | fb7f87d | 2009-11-10 01:08:51 +0000 | [diff] [blame] | 3857 | switch (I->getOpcode()) { |
| 3858 | default: |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 3859 | Result = ConstantFoldInstruction(I, DL, TLI); |
Duncan Sands | 64e41cf | 2010-11-17 08:35:29 +0000 | [diff] [blame] | 3860 | break; |
Michael Ilseman | bb6f691 | 2012-12-12 00:27:46 +0000 | [diff] [blame] | 3861 | case Instruction::FAdd: |
| 3862 | Result = SimplifyFAddInst(I->getOperand(0), I->getOperand(1), |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3863 | I->getFastMathFlags(), DL, TLI, DT, AC, I); |
Michael Ilseman | bb6f691 | 2012-12-12 00:27:46 +0000 | [diff] [blame] | 3864 | break; |
Chris Lattner | 3d9823b | 2009-11-27 17:42:22 +0000 | [diff] [blame] | 3865 | case Instruction::Add: |
Duncan Sands | 64e41cf | 2010-11-17 08:35:29 +0000 | [diff] [blame] | 3866 | Result = SimplifyAddInst(I->getOperand(0), I->getOperand(1), |
| 3867 | cast<BinaryOperator>(I)->hasNoSignedWrap(), |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3868 | cast<BinaryOperator>(I)->hasNoUnsignedWrap(), DL, |
| 3869 | TLI, DT, AC, I); |
Duncan Sands | 64e41cf | 2010-11-17 08:35:29 +0000 | [diff] [blame] | 3870 | break; |
Michael Ilseman | bb6f691 | 2012-12-12 00:27:46 +0000 | [diff] [blame] | 3871 | case Instruction::FSub: |
| 3872 | Result = SimplifyFSubInst(I->getOperand(0), I->getOperand(1), |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3873 | I->getFastMathFlags(), DL, TLI, DT, AC, I); |
Michael Ilseman | bb6f691 | 2012-12-12 00:27:46 +0000 | [diff] [blame] | 3874 | break; |
Duncan Sands | 0a2c4168 | 2010-12-15 14:07:39 +0000 | [diff] [blame] | 3875 | case Instruction::Sub: |
| 3876 | Result = SimplifySubInst(I->getOperand(0), I->getOperand(1), |
| 3877 | cast<BinaryOperator>(I)->hasNoSignedWrap(), |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3878 | cast<BinaryOperator>(I)->hasNoUnsignedWrap(), DL, |
| 3879 | TLI, DT, AC, I); |
Duncan Sands | 0a2c4168 | 2010-12-15 14:07:39 +0000 | [diff] [blame] | 3880 | break; |
Michael Ilseman | be9137a | 2012-11-27 00:46:26 +0000 | [diff] [blame] | 3881 | case Instruction::FMul: |
| 3882 | Result = SimplifyFMulInst(I->getOperand(0), I->getOperand(1), |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3883 | I->getFastMathFlags(), DL, TLI, DT, AC, I); |
Michael Ilseman | be9137a | 2012-11-27 00:46:26 +0000 | [diff] [blame] | 3884 | break; |
Duncan Sands | d0eb6d3 | 2010-12-21 14:00:22 +0000 | [diff] [blame] | 3885 | case Instruction::Mul: |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3886 | Result = |
| 3887 | SimplifyMulInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I); |
Duncan Sands | d0eb6d3 | 2010-12-21 14:00:22 +0000 | [diff] [blame] | 3888 | break; |
Duncan Sands | 771e82a | 2011-01-28 16:51:11 +0000 | [diff] [blame] | 3889 | case Instruction::SDiv: |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3890 | Result = SimplifySDivInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, |
| 3891 | AC, I); |
Duncan Sands | 771e82a | 2011-01-28 16:51:11 +0000 | [diff] [blame] | 3892 | break; |
| 3893 | case Instruction::UDiv: |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3894 | Result = SimplifyUDivInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, |
| 3895 | AC, I); |
Duncan Sands | 771e82a | 2011-01-28 16:51:11 +0000 | [diff] [blame] | 3896 | break; |
Frits van Bommel | c254966 | 2011-01-29 15:26:31 +0000 | [diff] [blame] | 3897 | case Instruction::FDiv: |
Mehdi Amini | cd3ca6f | 2015-02-23 18:30:25 +0000 | [diff] [blame] | 3898 | Result = SimplifyFDivInst(I->getOperand(0), I->getOperand(1), |
| 3899 | I->getFastMathFlags(), DL, TLI, DT, AC, I); |
Frits van Bommel | c254966 | 2011-01-29 15:26:31 +0000 | [diff] [blame] | 3900 | break; |
Duncan Sands | a3e3699 | 2011-05-02 16:27:02 +0000 | [diff] [blame] | 3901 | case Instruction::SRem: |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3902 | Result = SimplifySRemInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, |
| 3903 | AC, I); |
Duncan Sands | a3e3699 | 2011-05-02 16:27:02 +0000 | [diff] [blame] | 3904 | break; |
| 3905 | case Instruction::URem: |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3906 | Result = SimplifyURemInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, |
| 3907 | AC, I); |
Duncan Sands | a3e3699 | 2011-05-02 16:27:02 +0000 | [diff] [blame] | 3908 | break; |
| 3909 | case Instruction::FRem: |
Mehdi Amini | cd3ca6f | 2015-02-23 18:30:25 +0000 | [diff] [blame] | 3910 | Result = SimplifyFRemInst(I->getOperand(0), I->getOperand(1), |
| 3911 | I->getFastMathFlags(), DL, TLI, DT, AC, I); |
Duncan Sands | a3e3699 | 2011-05-02 16:27:02 +0000 | [diff] [blame] | 3912 | break; |
Duncan Sands | 7f60dc1 | 2011-01-14 00:37:45 +0000 | [diff] [blame] | 3913 | case Instruction::Shl: |
Chris Lattner | 9e4aa02 | 2011-02-09 17:15:04 +0000 | [diff] [blame] | 3914 | Result = SimplifyShlInst(I->getOperand(0), I->getOperand(1), |
| 3915 | cast<BinaryOperator>(I)->hasNoSignedWrap(), |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3916 | cast<BinaryOperator>(I)->hasNoUnsignedWrap(), DL, |
| 3917 | TLI, DT, AC, I); |
Duncan Sands | 7f60dc1 | 2011-01-14 00:37:45 +0000 | [diff] [blame] | 3918 | break; |
| 3919 | case Instruction::LShr: |
Chris Lattner | 9e4aa02 | 2011-02-09 17:15:04 +0000 | [diff] [blame] | 3920 | Result = SimplifyLShrInst(I->getOperand(0), I->getOperand(1), |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3921 | cast<BinaryOperator>(I)->isExact(), DL, TLI, DT, |
| 3922 | AC, I); |
Duncan Sands | 7f60dc1 | 2011-01-14 00:37:45 +0000 | [diff] [blame] | 3923 | break; |
| 3924 | case Instruction::AShr: |
Chris Lattner | 9e4aa02 | 2011-02-09 17:15:04 +0000 | [diff] [blame] | 3925 | Result = SimplifyAShrInst(I->getOperand(0), I->getOperand(1), |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3926 | cast<BinaryOperator>(I)->isExact(), DL, TLI, DT, |
| 3927 | AC, I); |
Duncan Sands | 7f60dc1 | 2011-01-14 00:37:45 +0000 | [diff] [blame] | 3928 | break; |
Chris Lattner | fb7f87d | 2009-11-10 01:08:51 +0000 | [diff] [blame] | 3929 | case Instruction::And: |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3930 | Result = |
| 3931 | SimplifyAndInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I); |
Duncan Sands | 64e41cf | 2010-11-17 08:35:29 +0000 | [diff] [blame] | 3932 | break; |
Chris Lattner | fb7f87d | 2009-11-10 01:08:51 +0000 | [diff] [blame] | 3933 | case Instruction::Or: |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3934 | Result = |
| 3935 | SimplifyOrInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I); |
Duncan Sands | 64e41cf | 2010-11-17 08:35:29 +0000 | [diff] [blame] | 3936 | break; |
Duncan Sands | c89ac07 | 2010-11-17 18:52:15 +0000 | [diff] [blame] | 3937 | case Instruction::Xor: |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3938 | Result = |
| 3939 | SimplifyXorInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I); |
Duncan Sands | c89ac07 | 2010-11-17 18:52:15 +0000 | [diff] [blame] | 3940 | break; |
Chris Lattner | fb7f87d | 2009-11-10 01:08:51 +0000 | [diff] [blame] | 3941 | case Instruction::ICmp: |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3942 | Result = |
| 3943 | SimplifyICmpInst(cast<ICmpInst>(I)->getPredicate(), I->getOperand(0), |
| 3944 | I->getOperand(1), DL, TLI, DT, AC, I); |
Duncan Sands | 64e41cf | 2010-11-17 08:35:29 +0000 | [diff] [blame] | 3945 | break; |
Chris Lattner | fb7f87d | 2009-11-10 01:08:51 +0000 | [diff] [blame] | 3946 | case Instruction::FCmp: |
Benjamin Kramer | f4ebfa3 | 2015-07-10 14:02:02 +0000 | [diff] [blame] | 3947 | Result = SimplifyFCmpInst(cast<FCmpInst>(I)->getPredicate(), |
| 3948 | I->getOperand(0), I->getOperand(1), |
| 3949 | I->getFastMathFlags(), DL, TLI, DT, AC, I); |
Duncan Sands | 64e41cf | 2010-11-17 08:35:29 +0000 | [diff] [blame] | 3950 | break; |
Chris Lattner | c707fa9 | 2010-04-20 05:32:14 +0000 | [diff] [blame] | 3951 | case Instruction::Select: |
Duncan Sands | 64e41cf | 2010-11-17 08:35:29 +0000 | [diff] [blame] | 3952 | Result = SimplifySelectInst(I->getOperand(0), I->getOperand(1), |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3953 | I->getOperand(2), DL, TLI, DT, AC, I); |
Duncan Sands | 64e41cf | 2010-11-17 08:35:29 +0000 | [diff] [blame] | 3954 | break; |
Chris Lattner | 8574aba | 2009-11-27 00:29:05 +0000 | [diff] [blame] | 3955 | case Instruction::GetElementPtr: { |
| 3956 | SmallVector<Value*, 8> Ops(I->op_begin(), I->op_end()); |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3957 | Result = SimplifyGEPInst(Ops, DL, TLI, DT, AC, I); |
Duncan Sands | 64e41cf | 2010-11-17 08:35:29 +0000 | [diff] [blame] | 3958 | break; |
Chris Lattner | 8574aba | 2009-11-27 00:29:05 +0000 | [diff] [blame] | 3959 | } |
Duncan Sands | fd26a95 | 2011-09-05 06:52:48 +0000 | [diff] [blame] | 3960 | case Instruction::InsertValue: { |
| 3961 | InsertValueInst *IV = cast<InsertValueInst>(I); |
| 3962 | Result = SimplifyInsertValueInst(IV->getAggregateOperand(), |
| 3963 | IV->getInsertedValueOperand(), |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3964 | IV->getIndices(), DL, TLI, DT, AC, I); |
Duncan Sands | fd26a95 | 2011-09-05 06:52:48 +0000 | [diff] [blame] | 3965 | break; |
| 3966 | } |
David Majnemer | 25a796e | 2015-07-13 01:15:46 +0000 | [diff] [blame^] | 3967 | case Instruction::ExtractValue: { |
| 3968 | auto *EVI = cast<ExtractValueInst>(I); |
| 3969 | Result = SimplifyExtractValueInst(EVI->getAggregateOperand(), |
| 3970 | EVI->getIndices(), DL, TLI, DT, AC, I); |
| 3971 | break; |
| 3972 | } |
Duncan Sands | 4581ddc | 2010-11-14 13:30:18 +0000 | [diff] [blame] | 3973 | case Instruction::PHI: |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3974 | Result = SimplifyPHINode(cast<PHINode>(I), Query(DL, TLI, DT, AC, I)); |
Duncan Sands | 64e41cf | 2010-11-17 08:35:29 +0000 | [diff] [blame] | 3975 | break; |
Chandler Carruth | 9dc3558 | 2012-12-28 11:30:55 +0000 | [diff] [blame] | 3976 | case Instruction::Call: { |
| 3977 | CallSite CS(cast<CallInst>(I)); |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3978 | Result = SimplifyCall(CS.getCalledValue(), CS.arg_begin(), CS.arg_end(), DL, |
| 3979 | TLI, DT, AC, I); |
Dan Gohman | 85977e6 | 2011-11-04 18:32:42 +0000 | [diff] [blame] | 3980 | break; |
Chandler Carruth | 9dc3558 | 2012-12-28 11:30:55 +0000 | [diff] [blame] | 3981 | } |
Duncan Sands | 395ac42d | 2012-03-13 14:07:05 +0000 | [diff] [blame] | 3982 | case Instruction::Trunc: |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 3983 | Result = |
| 3984 | SimplifyTruncInst(I->getOperand(0), I->getType(), DL, TLI, DT, AC, I); |
Duncan Sands | 395ac42d | 2012-03-13 14:07:05 +0000 | [diff] [blame] | 3985 | break; |
Chris Lattner | fb7f87d | 2009-11-10 01:08:51 +0000 | [diff] [blame] | 3986 | } |
Duncan Sands | 64e41cf | 2010-11-17 08:35:29 +0000 | [diff] [blame] | 3987 | |
| 3988 | /// If called on unreachable code, the above logic may report that the |
| 3989 | /// instruction simplified to itself. Make life easier for users by |
Duncan Sands | 019a418 | 2010-12-15 11:02:22 +0000 | [diff] [blame] | 3990 | /// detecting that case here, returning a safe value instead. |
| 3991 | return Result == I ? UndefValue::get(I->getType()) : Result; |
Chris Lattner | fb7f87d | 2009-11-10 01:08:51 +0000 | [diff] [blame] | 3992 | } |
| 3993 | |
Chandler Carruth | cf1b585 | 2012-03-24 21:11:24 +0000 | [diff] [blame] | 3994 | /// \brief Implementation of recursive simplification through an instructions |
| 3995 | /// uses. |
Chris Lattner | 852d6d6 | 2009-11-10 22:26:15 +0000 | [diff] [blame] | 3996 | /// |
Chandler Carruth | cf1b585 | 2012-03-24 21:11:24 +0000 | [diff] [blame] | 3997 | /// This is the common implementation of the recursive simplification routines. |
| 3998 | /// If we have a pre-simplified value in 'SimpleV', that is forcibly used to |
| 3999 | /// replace the instruction 'I'. Otherwise, we simply add 'I' to the list of |
| 4000 | /// instructions to process and attempt to simplify it using |
| 4001 | /// InstructionSimplify. |
| 4002 | /// |
| 4003 | /// This routine returns 'true' only when *it* simplifies something. The passed |
| 4004 | /// in simplified value does not count toward this. |
| 4005 | static bool replaceAndRecursivelySimplifyImpl(Instruction *I, Value *SimpleV, |
Chandler Carruth | cf1b585 | 2012-03-24 21:11:24 +0000 | [diff] [blame] | 4006 | const TargetLibraryInfo *TLI, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 4007 | const DominatorTree *DT, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 4008 | AssumptionCache *AC) { |
Chandler Carruth | cf1b585 | 2012-03-24 21:11:24 +0000 | [diff] [blame] | 4009 | bool Simplified = false; |
Chandler Carruth | 77e8bfb | 2012-03-24 22:34:26 +0000 | [diff] [blame] | 4010 | SmallSetVector<Instruction *, 8> Worklist; |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 4011 | const DataLayout &DL = I->getModule()->getDataLayout(); |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 4012 | |
Chandler Carruth | cf1b585 | 2012-03-24 21:11:24 +0000 | [diff] [blame] | 4013 | // If we have an explicit value to collapse to, do that round of the |
| 4014 | // simplification loop by hand initially. |
| 4015 | if (SimpleV) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 4016 | for (User *U : I->users()) |
| 4017 | if (U != I) |
| 4018 | Worklist.insert(cast<Instruction>(U)); |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 4019 | |
Chandler Carruth | cf1b585 | 2012-03-24 21:11:24 +0000 | [diff] [blame] | 4020 | // Replace the instruction with its simplified value. |
| 4021 | I->replaceAllUsesWith(SimpleV); |
Chris Lattner | 19eff2a | 2010-07-15 06:36:08 +0000 | [diff] [blame] | 4022 | |
Chandler Carruth | cf1b585 | 2012-03-24 21:11:24 +0000 | [diff] [blame] | 4023 | // Gracefully handle edge cases where the instruction is not wired into any |
| 4024 | // parent block. |
| 4025 | if (I->getParent()) |
| 4026 | I->eraseFromParent(); |
| 4027 | } else { |
Chandler Carruth | 77e8bfb | 2012-03-24 22:34:26 +0000 | [diff] [blame] | 4028 | Worklist.insert(I); |
Chris Lattner | 852d6d6 | 2009-11-10 22:26:15 +0000 | [diff] [blame] | 4029 | } |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 4030 | |
Chandler Carruth | 77e8bfb | 2012-03-24 22:34:26 +0000 | [diff] [blame] | 4031 | // Note that we must test the size on each iteration, the worklist can grow. |
| 4032 | for (unsigned Idx = 0; Idx != Worklist.size(); ++Idx) { |
| 4033 | I = Worklist[Idx]; |
Duncan Sands | 7e800d6 | 2010-11-14 11:23:23 +0000 | [diff] [blame] | 4034 | |
Chandler Carruth | cf1b585 | 2012-03-24 21:11:24 +0000 | [diff] [blame] | 4035 | // See if this instruction simplifies. |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 4036 | SimpleV = SimplifyInstruction(I, DL, TLI, DT, AC); |
Chandler Carruth | cf1b585 | 2012-03-24 21:11:24 +0000 | [diff] [blame] | 4037 | if (!SimpleV) |
| 4038 | continue; |
| 4039 | |
| 4040 | Simplified = true; |
| 4041 | |
| 4042 | // Stash away all the uses of the old instruction so we can check them for |
| 4043 | // recursive simplifications after a RAUW. This is cheaper than checking all |
| 4044 | // uses of To on the recursive step in most cases. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 4045 | for (User *U : I->users()) |
| 4046 | Worklist.insert(cast<Instruction>(U)); |
Chandler Carruth | cf1b585 | 2012-03-24 21:11:24 +0000 | [diff] [blame] | 4047 | |
| 4048 | // Replace the instruction with its simplified value. |
| 4049 | I->replaceAllUsesWith(SimpleV); |
| 4050 | |
| 4051 | // Gracefully handle edge cases where the instruction is not wired into any |
| 4052 | // parent block. |
| 4053 | if (I->getParent()) |
| 4054 | I->eraseFromParent(); |
| 4055 | } |
| 4056 | return Simplified; |
| 4057 | } |
| 4058 | |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 4059 | bool llvm::recursivelySimplifyInstruction(Instruction *I, |
Chandler Carruth | cf1b585 | 2012-03-24 21:11:24 +0000 | [diff] [blame] | 4060 | const TargetLibraryInfo *TLI, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 4061 | const DominatorTree *DT, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 4062 | AssumptionCache *AC) { |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 4063 | return replaceAndRecursivelySimplifyImpl(I, nullptr, TLI, DT, AC); |
Chandler Carruth | cf1b585 | 2012-03-24 21:11:24 +0000 | [diff] [blame] | 4064 | } |
| 4065 | |
| 4066 | bool llvm::replaceAndRecursivelySimplify(Instruction *I, Value *SimpleV, |
Chandler Carruth | cf1b585 | 2012-03-24 21:11:24 +0000 | [diff] [blame] | 4067 | const TargetLibraryInfo *TLI, |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 4068 | const DominatorTree *DT, |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 4069 | AssumptionCache *AC) { |
Chandler Carruth | cf1b585 | 2012-03-24 21:11:24 +0000 | [diff] [blame] | 4070 | assert(I != SimpleV && "replaceAndRecursivelySimplify(X,X) is not valid!"); |
| 4071 | assert(SimpleV && "Must provide a simplified value."); |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 4072 | return replaceAndRecursivelySimplifyImpl(I, SimpleV, TLI, DT, AC); |
Chris Lattner | 852d6d6 | 2009-11-10 22:26:15 +0000 | [diff] [blame] | 4073 | } |