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