blob: b9e6bdbf2e54e62523de2d3973dbd09a2ae61bd3 [file] [log] [blame]
Chris Lattner084a1b52009-11-09 22:57:59 +00001//===- 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 Sandsa0219882010-11-23 10:50:08 +000011// 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 Sandsed6d6c32010-12-20 14:47:04 +000014// ("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 Lattner084a1b52009-11-09 22:57:59 +000017//
18//===----------------------------------------------------------------------===//
19
20#include "llvm/Analysis/InstructionSimplify.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000021#include "llvm/ADT/SetVector.h"
22#include "llvm/ADT/Statistic.h"
Hal Finkelafcd8db2014-12-01 23:38:06 +000023#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattner084a1b52009-11-09 22:57:59 +000024#include "llvm/Analysis/ConstantFolding.h"
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +000025#include "llvm/Analysis/MemoryBuiltins.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000026#include "llvm/Analysis/ValueTracking.h"
David Majnemer599ca442015-07-13 01:15:53 +000027#include "llvm/Analysis/VectorUtils.h"
Chandler Carruth8cd041e2014-03-04 12:24:34 +000028#include "llvm/IR/ConstantRange.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000029#include "llvm/IR/DataLayout.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000030#include "llvm/IR/Dominators.h"
Chandler Carruth03eb0de2014-03-04 10:40:04 +000031#include "llvm/IR/GetElementPtrTypeIterator.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000032#include "llvm/IR/GlobalAlias.h"
33#include "llvm/IR/Operator.h"
Chandler Carruth820a9082014-03-04 11:08:18 +000034#include "llvm/IR/PatternMatch.h"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000035#include "llvm/IR/ValueHandle.h"
Hal Finkelafcd8db2014-12-01 23:38:06 +000036#include <algorithm>
Chris Lattner084a1b52009-11-09 22:57:59 +000037using namespace llvm;
Chris Lattnera71e9d62009-11-10 00:55:12 +000038using namespace llvm::PatternMatch;
Chris Lattner084a1b52009-11-09 22:57:59 +000039
Chandler Carruthf1221bd2014-04-22 02:48:03 +000040#define DEBUG_TYPE "instsimplify"
41
Chris Lattner9e4aa022011-02-09 17:15:04 +000042enum { RecursionLimit = 3 };
Duncan Sandsf3b1bf12010-11-10 18:23:01 +000043
Duncan Sands3547d2e2010-12-22 09:40:51 +000044STATISTIC(NumExpand, "Number of expansions");
Duncan Sands3547d2e2010-12-22 09:40:51 +000045STATISTIC(NumReassoc, "Number of reassociations");
46
Benjamin Kramercfd8d902014-09-12 08:56:53 +000047namespace {
Duncan Sandsb8cee002012-03-13 11:42:19 +000048struct Query {
Mehdi Aminia28d91d2015-03-10 02:37:25 +000049 const DataLayout &DL;
Duncan Sandsb8cee002012-03-13 11:42:19 +000050 const TargetLibraryInfo *TLI;
51 const DominatorTree *DT;
Chandler Carruth66b31302015-01-04 12:03:27 +000052 AssumptionCache *AC;
Hal Finkel60db0582014-09-07 18:57:58 +000053 const Instruction *CxtI;
Duncan Sandsb8cee002012-03-13 11:42:19 +000054
Mehdi Aminia28d91d2015-03-10 02:37:25 +000055 Query(const DataLayout &DL, const TargetLibraryInfo *tli,
Chandler Carruth66b31302015-01-04 12:03:27 +000056 const DominatorTree *dt, AssumptionCache *ac = nullptr,
Hal Finkel60db0582014-09-07 18:57:58 +000057 const Instruction *cxti = nullptr)
Chandler Carruth66b31302015-01-04 12:03:27 +000058 : DL(DL), TLI(tli), DT(dt), AC(ac), CxtI(cxti) {}
Duncan Sandsb8cee002012-03-13 11:42:19 +000059};
Benjamin Kramercfd8d902014-09-12 08:56:53 +000060} // end anonymous namespace
Duncan Sandsb8cee002012-03-13 11:42:19 +000061
62static Value *SimplifyAndInst(Value *, Value *, const Query &, unsigned);
63static Value *SimplifyBinOp(unsigned, Value *, Value *, const Query &,
Chad Rosierc24b86f2011-12-01 03:08:23 +000064 unsigned);
Michael Zolotukhin4e8598e2015-02-06 20:02:51 +000065static Value *SimplifyFPBinOp(unsigned, Value *, Value *, const FastMathFlags &,
66 const Query &, unsigned);
Duncan Sandsb8cee002012-03-13 11:42:19 +000067static Value *SimplifyCmpInst(unsigned, Value *, Value *, const Query &,
Chad Rosierc24b86f2011-12-01 03:08:23 +000068 unsigned);
Duncan Sandsb8cee002012-03-13 11:42:19 +000069static Value *SimplifyOrInst(Value *, Value *, const Query &, unsigned);
70static Value *SimplifyXorInst(Value *, Value *, const Query &, unsigned);
Duncan Sands395ac42d2012-03-13 14:07:05 +000071static Value *SimplifyTruncInst(Value *, Type *, const Query &, unsigned);
Duncan Sands5ffc2982010-11-16 12:16:38 +000072
Sanjay Patel472cc782016-01-11 22:14:42 +000073/// For a boolean type, or a vector of boolean type, return false, or
Duncan Sandsc1c92712011-07-26 15:03:53 +000074/// a vector with every element false, as appropriate for the type.
75static Constant *getFalse(Type *Ty) {
Nick Lewyckye659b842011-12-01 02:39:36 +000076 assert(Ty->getScalarType()->isIntegerTy(1) &&
Duncan Sandsc1c92712011-07-26 15:03:53 +000077 "Expected i1 type or a vector of i1!");
78 return Constant::getNullValue(Ty);
79}
80
Sanjay Patel472cc782016-01-11 22:14:42 +000081/// For a boolean type, or a vector of boolean type, return true, or
Duncan Sandsc1c92712011-07-26 15:03:53 +000082/// a vector with every element true, as appropriate for the type.
83static Constant *getTrue(Type *Ty) {
Nick Lewyckye659b842011-12-01 02:39:36 +000084 assert(Ty->getScalarType()->isIntegerTy(1) &&
Duncan Sandsc1c92712011-07-26 15:03:53 +000085 "Expected i1 type or a vector of i1!");
86 return Constant::getAllOnesValue(Ty);
87}
88
Duncan Sands3d5692a2011-10-30 19:56:36 +000089/// isSameCompare - Is V equivalent to the comparison "LHS Pred RHS"?
90static 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
Sanjay Patel472cc782016-01-11 22:14:42 +0000103/// Does the given value dominate the specified phi node?
Duncan Sands5ffc2982010-11-16 12:16:38 +0000104static 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 Carruth3ffccb32012-03-21 10:58:47 +0000110 // 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 Sands5ffc2982010-11-16 12:16:38 +0000116 // If we have a DominatorTree then do a precise test.
Eli Friedmanc8cbd062012-03-13 01:06:07 +0000117 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 Sands5ffc2982010-11-16 12:16:38 +0000124
David Majnemer8a1c45d2015-12-12 05:38:55 +0000125 // Otherwise, if the instruction is in the entry block and is not an invoke,
126 // then it obviously dominates all phi nodes.
Duncan Sands5ffc2982010-11-16 12:16:38 +0000127 if (I->getParent() == &I->getParent()->getParent()->getEntryBlock() &&
David Majnemer8a1c45d2015-12-12 05:38:55 +0000128 !isa<InvokeInst>(I))
Duncan Sands5ffc2982010-11-16 12:16:38 +0000129 return true;
130
131 return false;
132}
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000133
Sanjay Patel472cc782016-01-11 22:14:42 +0000134/// Simplify "A op (B op' C)" by distributing op over op', turning it into
135/// "(A op B) op' (A op C)". Here "op" is given by Opcode and "op'" is
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000136/// 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.
139static Value *ExpandBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000140 unsigned OpcToExpand, const Query &Q,
Chad Rosierc24b86f2011-12-01 03:08:23 +0000141 unsigned MaxRecurse) {
Benjamin Kramerb6d52b82010-12-28 13:52:52 +0000142 Instruction::BinaryOps OpcodeToExpand = (Instruction::BinaryOps)OpcToExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000143 // Recursion is always used, so bail out at once if we already hit the limit.
144 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000145 return nullptr;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000146
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 Sandsb8cee002012-03-13 11:42:19 +0000153 if (Value *L = SimplifyBinOp(Opcode, A, C, Q, MaxRecurse))
154 if (Value *R = SimplifyBinOp(Opcode, B, C, Q, MaxRecurse)) {
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000155 // 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 Sands772749a2011-01-01 20:08:02 +0000157 if ((L == A && R == B) || (Instruction::isCommutative(OpcodeToExpand)
158 && L == B && R == A)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000159 ++NumExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000160 return LHS;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000161 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000162 // Otherwise return "L op' R" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000163 if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000164 ++NumExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000165 return V;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000166 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000167 }
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 Sandsb8cee002012-03-13 11:42:19 +0000176 if (Value *L = SimplifyBinOp(Opcode, A, B, Q, MaxRecurse))
177 if (Value *R = SimplifyBinOp(Opcode, A, C, Q, MaxRecurse)) {
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000178 // 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 Sands772749a2011-01-01 20:08:02 +0000180 if ((L == B && R == C) || (Instruction::isCommutative(OpcodeToExpand)
181 && L == C && R == B)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000182 ++NumExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000183 return RHS;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000184 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000185 // Otherwise return "L op' R" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000186 if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000187 ++NumExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000188 return V;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000189 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000190 }
191 }
192
Craig Topper9f008862014-04-15 04:59:12 +0000193 return nullptr;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000194}
195
Sanjay Patel472cc782016-01-11 22:14:42 +0000196/// Generic simplifications for associative binary operations.
197/// Returns the simpler value, or null if none was found.
Benjamin Kramerb6d52b82010-12-28 13:52:52 +0000198static Value *SimplifyAssociativeBinOp(unsigned Opc, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000199 const Query &Q, unsigned MaxRecurse) {
Benjamin Kramerb6d52b82010-12-28 13:52:52 +0000200 Instruction::BinaryOps Opcode = (Instruction::BinaryOps)Opc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000201 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 Topper9f008862014-04-15 04:59:12 +0000205 return nullptr;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000206
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 Sandsb8cee002012-03-13 11:42:19 +0000217 if (Value *V = SimplifyBinOp(Opcode, B, C, Q, MaxRecurse)) {
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000218 // 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 Sands772749a2011-01-01 20:08:02 +0000220 if (V == B) return LHS;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000221 // Otherwise return "A op V" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000222 if (Value *W = SimplifyBinOp(Opcode, A, V, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000223 ++NumReassoc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000224 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000225 }
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000226 }
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 Sandsb8cee002012-03-13 11:42:19 +0000236 if (Value *V = SimplifyBinOp(Opcode, A, B, Q, MaxRecurse)) {
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000237 // 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 Sands772749a2011-01-01 20:08:02 +0000239 if (V == B) return RHS;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000240 // Otherwise return "V op C" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000241 if (Value *W = SimplifyBinOp(Opcode, V, C, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000242 ++NumReassoc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000243 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000244 }
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000245 }
246 }
247
248 // The remaining transforms require commutativity as well as associativity.
249 if (!Instruction::isCommutative(Opcode))
Craig Topper9f008862014-04-15 04:59:12 +0000250 return nullptr;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000251
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 Sandsb8cee002012-03-13 11:42:19 +0000259 if (Value *V = SimplifyBinOp(Opcode, C, A, Q, MaxRecurse)) {
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000260 // 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 Sands772749a2011-01-01 20:08:02 +0000262 if (V == A) return LHS;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000263 // Otherwise return "V op B" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000264 if (Value *W = SimplifyBinOp(Opcode, V, B, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000265 ++NumReassoc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000266 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000267 }
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000268 }
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 Sandsb8cee002012-03-13 11:42:19 +0000278 if (Value *V = SimplifyBinOp(Opcode, C, A, Q, MaxRecurse)) {
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000279 // 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 Sands772749a2011-01-01 20:08:02 +0000281 if (V == C) return RHS;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000282 // Otherwise return "B op V" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000283 if (Value *W = SimplifyBinOp(Opcode, B, V, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000284 ++NumReassoc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000285 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000286 }
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000287 }
288 }
289
Craig Topper9f008862014-04-15 04:59:12 +0000290 return nullptr;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000291}
292
Sanjay Patel472cc782016-01-11 22:14:42 +0000293/// In the case of a binary operation with a select instruction as an operand,
294/// try to simplify the binop by seeing whether evaluating it on both branches
295/// of the select results in the same value. Returns the common value if so,
296/// otherwise returns null.
Duncan Sandsb0579e92010-11-10 13:00:08 +0000297static Value *ThreadBinOpOverSelect(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000298 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000299 // Recursion is always used, so bail out at once if we already hit the limit.
300 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000301 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000302
Duncan Sandsb0579e92010-11-10 13:00:08 +0000303 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 Sandsb8cee002012-03-13 11:42:19 +0000315 TV = SimplifyBinOp(Opcode, SI->getTrueValue(), RHS, Q, MaxRecurse);
316 FV = SimplifyBinOp(Opcode, SI->getFalseValue(), RHS, Q, MaxRecurse);
Duncan Sandsb0579e92010-11-10 13:00:08 +0000317 } else {
Duncan Sandsb8cee002012-03-13 11:42:19 +0000318 TV = SimplifyBinOp(Opcode, LHS, SI->getTrueValue(), Q, MaxRecurse);
319 FV = SimplifyBinOp(Opcode, LHS, SI->getFalseValue(), Q, MaxRecurse);
Duncan Sandsb0579e92010-11-10 13:00:08 +0000320 }
321
Duncan Sandse3c53952011-01-01 16:12:09 +0000322 // If they simplified to the same value, then return the common value.
Duncan Sands772749a2011-01-01 20:08:02 +0000323 // If they both failed to simplify then return null.
324 if (TV == FV)
Duncan Sandsb0579e92010-11-10 13:00:08 +0000325 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 Sands772749a2011-01-01 20:08:02 +0000335 if (TV == SI->getTrueValue() && FV == SI->getFalseValue())
Duncan Sandsb0579e92010-11-10 13:00:08 +0000336 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 Sands772749a2011-01-01 20:08:02 +0000352 if (Simplified->getOperand(0) == UnsimplifiedLHS &&
353 Simplified->getOperand(1) == UnsimplifiedRHS)
Duncan Sandsb0579e92010-11-10 13:00:08 +0000354 return Simplified;
355 if (Simplified->isCommutative() &&
Duncan Sands772749a2011-01-01 20:08:02 +0000356 Simplified->getOperand(1) == UnsimplifiedLHS &&
357 Simplified->getOperand(0) == UnsimplifiedRHS)
Duncan Sandsb0579e92010-11-10 13:00:08 +0000358 return Simplified;
359 }
360 }
361
Craig Topper9f008862014-04-15 04:59:12 +0000362 return nullptr;
Duncan Sandsb0579e92010-11-10 13:00:08 +0000363}
364
Sanjay Patel472cc782016-01-11 22:14:42 +0000365/// In the case of a comparison with a select instruction, try to simplify the
366/// comparison by seeing whether both branches of the select result in the same
367/// value. Returns the common value if so, otherwise returns null.
Duncan Sandsb0579e92010-11-10 13:00:08 +0000368static Value *ThreadCmpOverSelect(CmpInst::Predicate Pred, Value *LHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000369 Value *RHS, const Query &Q,
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000370 unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000371 // Recursion is always used, so bail out at once if we already hit the limit.
372 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000373 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000374
Duncan Sandsb0579e92010-11-10 13:00:08 +0000375 // Make sure the select is on the LHS.
376 if (!isa<SelectInst>(LHS)) {
377 std::swap(LHS, RHS);
378 Pred = CmpInst::getSwappedPredicate(Pred);
379 }
380 assert(isa<SelectInst>(LHS) && "Not comparing with a select instruction!");
381 SelectInst *SI = cast<SelectInst>(LHS);
Duncan Sands3d5692a2011-10-30 19:56:36 +0000382 Value *Cond = SI->getCondition();
383 Value *TV = SI->getTrueValue();
384 Value *FV = SI->getFalseValue();
Duncan Sandsb0579e92010-11-10 13:00:08 +0000385
Duncan Sands06504022011-02-03 09:37:39 +0000386 // Now that we have "cmp select(Cond, TV, FV), RHS", analyse it.
Duncan Sandsb0579e92010-11-10 13:00:08 +0000387 // Does "cmp TV, RHS" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000388 Value *TCmp = SimplifyCmpInst(Pred, TV, RHS, Q, MaxRecurse);
Duncan Sands3d5692a2011-10-30 19:56:36 +0000389 if (TCmp == Cond) {
390 // It not only simplified, it simplified to the select condition. Replace
391 // it with 'true'.
392 TCmp = getTrue(Cond->getType());
393 } else if (!TCmp) {
394 // It didn't simplify. However if "cmp TV, RHS" is equal to the select
395 // condition then we can replace it with 'true'. Otherwise give up.
396 if (!isSameCompare(Cond, Pred, TV, RHS))
Craig Topper9f008862014-04-15 04:59:12 +0000397 return nullptr;
Duncan Sands3d5692a2011-10-30 19:56:36 +0000398 TCmp = getTrue(Cond->getType());
Duncan Sands06504022011-02-03 09:37:39 +0000399 }
400
Duncan Sands3d5692a2011-10-30 19:56:36 +0000401 // Does "cmp FV, RHS" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000402 Value *FCmp = SimplifyCmpInst(Pred, FV, RHS, Q, MaxRecurse);
Duncan Sands3d5692a2011-10-30 19:56:36 +0000403 if (FCmp == Cond) {
404 // It not only simplified, it simplified to the select condition. Replace
405 // it with 'false'.
406 FCmp = getFalse(Cond->getType());
407 } else if (!FCmp) {
408 // It didn't simplify. However if "cmp FV, RHS" is equal to the select
409 // condition then we can replace it with 'false'. Otherwise give up.
410 if (!isSameCompare(Cond, Pred, FV, RHS))
Craig Topper9f008862014-04-15 04:59:12 +0000411 return nullptr;
Duncan Sands3d5692a2011-10-30 19:56:36 +0000412 FCmp = getFalse(Cond->getType());
413 }
414
415 // If both sides simplified to the same value, then use it as the result of
416 // the original comparison.
417 if (TCmp == FCmp)
418 return TCmp;
Duncan Sands26641d72012-02-10 14:31:24 +0000419
420 // The remaining cases only make sense if the select condition has the same
421 // type as the result of the comparison, so bail out if this is not so.
422 if (Cond->getType()->isVectorTy() != RHS->getType()->isVectorTy())
Craig Topper9f008862014-04-15 04:59:12 +0000423 return nullptr;
Duncan Sands3d5692a2011-10-30 19:56:36 +0000424 // If the false value simplified to false, then the result of the compare
425 // is equal to "Cond && TCmp". This also catches the case when the false
426 // value simplified to false and the true value to true, returning "Cond".
427 if (match(FCmp, m_Zero()))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000428 if (Value *V = SimplifyAndInst(Cond, TCmp, Q, MaxRecurse))
Duncan Sands3d5692a2011-10-30 19:56:36 +0000429 return V;
430 // If the true value simplified to true, then the result of the compare
431 // is equal to "Cond || FCmp".
432 if (match(TCmp, m_One()))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000433 if (Value *V = SimplifyOrInst(Cond, FCmp, Q, MaxRecurse))
Duncan Sands3d5692a2011-10-30 19:56:36 +0000434 return V;
435 // Finally, if the false value simplified to true and the true value to
436 // false, then the result of the compare is equal to "!Cond".
437 if (match(FCmp, m_One()) && match(TCmp, m_Zero()))
438 if (Value *V =
439 SimplifyXorInst(Cond, Constant::getAllOnesValue(Cond->getType()),
Duncan Sandsb8cee002012-03-13 11:42:19 +0000440 Q, MaxRecurse))
Duncan Sands3d5692a2011-10-30 19:56:36 +0000441 return V;
442
Craig Topper9f008862014-04-15 04:59:12 +0000443 return nullptr;
Duncan Sandsb0579e92010-11-10 13:00:08 +0000444}
445
Sanjay Patel472cc782016-01-11 22:14:42 +0000446/// In the case of a binary operation with an operand that is a PHI instruction,
447/// try to simplify the binop by seeing whether evaluating it on the incoming
448/// phi values yields the same result for every value. If so returns the common
449/// value, otherwise returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000450static Value *ThreadBinOpOverPHI(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000451 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000452 // Recursion is always used, so bail out at once if we already hit the limit.
453 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000454 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000455
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000456 PHINode *PI;
457 if (isa<PHINode>(LHS)) {
458 PI = cast<PHINode>(LHS);
Duncan Sands5ffc2982010-11-16 12:16:38 +0000459 // Bail out if RHS and the phi may be mutually interdependent due to a loop.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000460 if (!ValueDominatesPHI(RHS, PI, Q.DT))
Craig Topper9f008862014-04-15 04:59:12 +0000461 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000462 } else {
463 assert(isa<PHINode>(RHS) && "No PHI instruction operand!");
464 PI = cast<PHINode>(RHS);
Duncan Sands5ffc2982010-11-16 12:16:38 +0000465 // Bail out if LHS and the phi may be mutually interdependent due to a loop.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000466 if (!ValueDominatesPHI(LHS, PI, Q.DT))
Craig Topper9f008862014-04-15 04:59:12 +0000467 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000468 }
469
470 // Evaluate the BinOp on the incoming phi values.
Craig Topper9f008862014-04-15 04:59:12 +0000471 Value *CommonValue = nullptr;
Pete Cooper833f34d2015-05-12 20:05:31 +0000472 for (Value *Incoming : PI->incoming_values()) {
Duncan Sands7412f6e2010-11-17 04:30:22 +0000473 // If the incoming value is the phi node itself, it can safely be skipped.
Duncan Sandsf12ba1d2010-11-15 17:52:45 +0000474 if (Incoming == PI) continue;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000475 Value *V = PI == LHS ?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000476 SimplifyBinOp(Opcode, Incoming, RHS, Q, MaxRecurse) :
477 SimplifyBinOp(Opcode, LHS, Incoming, Q, MaxRecurse);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000478 // If the operation failed to simplify, or simplified to a different value
479 // to previously, then give up.
480 if (!V || (CommonValue && V != CommonValue))
Craig Topper9f008862014-04-15 04:59:12 +0000481 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000482 CommonValue = V;
483 }
484
485 return CommonValue;
486}
487
Sanjay Patel472cc782016-01-11 22:14:42 +0000488/// In the case of a comparison with a PHI instruction, try to simplify the
489/// comparison by seeing whether comparing with all of the incoming phi values
490/// yields the same result every time. If so returns the common result,
491/// otherwise returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000492static Value *ThreadCmpOverPHI(CmpInst::Predicate Pred, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000493 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000494 // Recursion is always used, so bail out at once if we already hit the limit.
495 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000496 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000497
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000498 // Make sure the phi is on the LHS.
499 if (!isa<PHINode>(LHS)) {
500 std::swap(LHS, RHS);
501 Pred = CmpInst::getSwappedPredicate(Pred);
502 }
503 assert(isa<PHINode>(LHS) && "Not comparing with a phi instruction!");
504 PHINode *PI = cast<PHINode>(LHS);
505
Duncan Sands5ffc2982010-11-16 12:16:38 +0000506 // Bail out if RHS and the phi may be mutually interdependent due to a loop.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000507 if (!ValueDominatesPHI(RHS, PI, Q.DT))
Craig Topper9f008862014-04-15 04:59:12 +0000508 return nullptr;
Duncan Sands5ffc2982010-11-16 12:16:38 +0000509
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000510 // Evaluate the BinOp on the incoming phi values.
Craig Topper9f008862014-04-15 04:59:12 +0000511 Value *CommonValue = nullptr;
Pete Cooper833f34d2015-05-12 20:05:31 +0000512 for (Value *Incoming : PI->incoming_values()) {
Duncan Sands7412f6e2010-11-17 04:30:22 +0000513 // If the incoming value is the phi node itself, it can safely be skipped.
Duncan Sandsf12ba1d2010-11-15 17:52:45 +0000514 if (Incoming == PI) continue;
Duncan Sandsb8cee002012-03-13 11:42:19 +0000515 Value *V = SimplifyCmpInst(Pred, Incoming, RHS, Q, MaxRecurse);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000516 // If the operation failed to simplify, or simplified to a different value
517 // to previously, then give up.
518 if (!V || (CommonValue && V != CommonValue))
Craig Topper9f008862014-04-15 04:59:12 +0000519 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000520 CommonValue = V;
521 }
522
523 return CommonValue;
524}
525
Sanjay Patel472cc782016-01-11 22:14:42 +0000526/// Given operands for an Add, see if we can fold the result.
527/// If not, this returns null.
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000528static Value *SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000529 const Query &Q, unsigned MaxRecurse) {
Chris Lattner3d9823b2009-11-27 17:42:22 +0000530 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
Manuel Jacoba61ca372016-01-21 06:26:35 +0000531 if (Constant *CRHS = dyn_cast<Constant>(Op1))
532 return ConstantFoldBinaryOpOperands(Instruction::Add, CLHS, CRHS, Q.DL);
Duncan Sands7e800d62010-11-14 11:23:23 +0000533
Chris Lattner3d9823b2009-11-27 17:42:22 +0000534 // Canonicalize the constant to the RHS.
535 std::swap(Op0, Op1);
536 }
Duncan Sands7e800d62010-11-14 11:23:23 +0000537
Duncan Sands0a2c41682010-12-15 14:07:39 +0000538 // X + undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000539 if (match(Op1, m_Undef()))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000540 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +0000541
Duncan Sands0a2c41682010-12-15 14:07:39 +0000542 // X + 0 -> X
543 if (match(Op1, m_Zero()))
544 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +0000545
Duncan Sands0a2c41682010-12-15 14:07:39 +0000546 // X + (Y - X) -> Y
547 // (Y - X) + X -> Y
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000548 // Eg: X + -X -> 0
Craig Topper9f008862014-04-15 04:59:12 +0000549 Value *Y = nullptr;
Duncan Sands772749a2011-01-01 20:08:02 +0000550 if (match(Op1, m_Sub(m_Value(Y), m_Specific(Op0))) ||
551 match(Op0, m_Sub(m_Value(Y), m_Specific(Op1))))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000552 return Y;
553
554 // X + ~X -> -1 since ~X = -X-1
Duncan Sands772749a2011-01-01 20:08:02 +0000555 if (match(Op0, m_Not(m_Specific(Op1))) ||
556 match(Op1, m_Not(m_Specific(Op0))))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000557 return Constant::getAllOnesValue(Op0->getType());
Duncan Sandsb238de02010-11-19 09:20:39 +0000558
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000559 /// i1 add -> xor.
Duncan Sands5def0d62010-12-21 14:48:48 +0000560 if (MaxRecurse && Op0->getType()->isIntegerTy(1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000561 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sandsfecc6422010-12-21 15:03:43 +0000562 return V;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000563
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000564 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000565 if (Value *V = SimplifyAssociativeBinOp(Instruction::Add, Op0, Op1, Q,
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000566 MaxRecurse))
567 return V;
568
Duncan Sandsb238de02010-11-19 09:20:39 +0000569 // Threading Add over selects and phi nodes is pointless, so don't bother.
570 // Threading over the select in "A + select(cond, B, C)" means evaluating
571 // "A+B" and "A+C" and seeing if they are equal; but they are equal if and
572 // only if B and C are equal. If B and C are equal then (since we assume
573 // that operands have already been simplified) "select(cond, B, C)" should
574 // have been simplified to the common value of B and C already. Analysing
575 // "A+B" and "A+C" thus gains nothing, but costs compile time. Similarly
576 // for threading over phi nodes.
577
Craig Topper9f008862014-04-15 04:59:12 +0000578 return nullptr;
Chris Lattner3d9823b2009-11-27 17:42:22 +0000579}
580
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000581Value *llvm::SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000582 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +0000583 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +0000584 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +0000585 return ::SimplifyAddInst(Op0, Op1, isNSW, isNUW, Query(DL, TLI, DT, AC, CxtI),
586 RecursionLimit);
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000587}
588
Chandler Carrutha0796552012-03-12 11:19:31 +0000589/// \brief Compute the base pointer and cumulative constant offsets for V.
590///
591/// This strips all constant offsets off of V, leaving it the base pointer, and
592/// accumulates the total constant offset applied in the returned constant. It
593/// returns 0 if V is not a pointer, and returns the constant '0' if there are
594/// no constant offsets applied.
Dan Gohman36fa8392013-01-31 02:45:26 +0000595///
596/// This is very similar to GetPointerBaseWithConstantOffset except it doesn't
597/// follow non-inbounds geps. This allows it to remain usable for icmp ult/etc.
598/// folding.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000599static Constant *stripAndComputeConstantOffsets(const DataLayout &DL, Value *&V,
Benjamin Kramer942dfe62013-09-23 14:16:38 +0000600 bool AllowNonInbounds = false) {
Benjamin Kramerc05aa952013-02-01 15:21:10 +0000601 assert(V->getType()->getScalarType()->isPointerTy());
Chandler Carrutha0796552012-03-12 11:19:31 +0000602
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000603 Type *IntPtrTy = DL.getIntPtrType(V->getType())->getScalarType();
Matt Arsenault2f9cce22013-08-03 01:03:12 +0000604 APInt Offset = APInt::getNullValue(IntPtrTy->getIntegerBitWidth());
Chandler Carrutha0796552012-03-12 11:19:31 +0000605
606 // Even though we don't look through PHI nodes, we could be called on an
607 // instruction in an unreachable block, which may be on a cycle.
608 SmallPtrSet<Value *, 4> Visited;
609 Visited.insert(V);
610 do {
611 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
Benjamin Kramer942dfe62013-09-23 14:16:38 +0000612 if ((!AllowNonInbounds && !GEP->isInBounds()) ||
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000613 !GEP->accumulateConstantOffset(DL, Offset))
Chandler Carrutha0796552012-03-12 11:19:31 +0000614 break;
Chandler Carrutha0796552012-03-12 11:19:31 +0000615 V = GEP->getPointerOperand();
616 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
Matt Arsenault2f9cce22013-08-03 01:03:12 +0000617 V = cast<Operator>(V)->getOperand(0);
Chandler Carrutha0796552012-03-12 11:19:31 +0000618 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) {
Sanjoy Das5ce32722016-04-08 00:48:30 +0000619 if (GA->isInterposable())
Chandler Carrutha0796552012-03-12 11:19:31 +0000620 break;
621 V = GA->getAliasee();
622 } else {
623 break;
624 }
Benjamin Kramerc05aa952013-02-01 15:21:10 +0000625 assert(V->getType()->getScalarType()->isPointerTy() &&
626 "Unexpected operand type!");
David Blaikie70573dc2014-11-19 07:49:26 +0000627 } while (Visited.insert(V).second);
Chandler Carrutha0796552012-03-12 11:19:31 +0000628
Benjamin Kramerc05aa952013-02-01 15:21:10 +0000629 Constant *OffsetIntPtr = ConstantInt::get(IntPtrTy, Offset);
630 if (V->getType()->isVectorTy())
631 return ConstantVector::getSplat(V->getType()->getVectorNumElements(),
632 OffsetIntPtr);
633 return OffsetIntPtr;
Chandler Carrutha0796552012-03-12 11:19:31 +0000634}
635
636/// \brief Compute the constant difference between two pointer values.
637/// If the difference is not a constant, returns zero.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000638static Constant *computePointerDifference(const DataLayout &DL, Value *LHS,
639 Value *RHS) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000640 Constant *LHSOffset = stripAndComputeConstantOffsets(DL, LHS);
641 Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS);
Chandler Carrutha0796552012-03-12 11:19:31 +0000642
643 // If LHS and RHS are not related via constant offsets to the same base
644 // value, there is nothing we can do here.
645 if (LHS != RHS)
Craig Topper9f008862014-04-15 04:59:12 +0000646 return nullptr;
Chandler Carrutha0796552012-03-12 11:19:31 +0000647
648 // Otherwise, the difference of LHS - RHS can be computed as:
649 // LHS - RHS
650 // = (LHSOffset + Base) - (RHSOffset + Base)
651 // = LHSOffset - RHSOffset
652 return ConstantExpr::getSub(LHSOffset, RHSOffset);
653}
654
Sanjay Patel472cc782016-01-11 22:14:42 +0000655/// Given operands for a Sub, see if we can fold the result.
656/// If not, this returns null.
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000657static Value *SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000658 const Query &Q, unsigned MaxRecurse) {
Duncan Sands0a2c41682010-12-15 14:07:39 +0000659 if (Constant *CLHS = dyn_cast<Constant>(Op0))
Manuel Jacoba61ca372016-01-21 06:26:35 +0000660 if (Constant *CRHS = dyn_cast<Constant>(Op1))
661 return ConstantFoldBinaryOpOperands(Instruction::Sub, CLHS, CRHS, Q.DL);
Duncan Sands0a2c41682010-12-15 14:07:39 +0000662
663 // X - undef -> undef
664 // undef - X -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000665 if (match(Op0, m_Undef()) || match(Op1, m_Undef()))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000666 return UndefValue::get(Op0->getType());
667
668 // X - 0 -> X
669 if (match(Op1, m_Zero()))
670 return Op0;
671
672 // X - X -> 0
Duncan Sands772749a2011-01-01 20:08:02 +0000673 if (Op0 == Op1)
Duncan Sands0a2c41682010-12-15 14:07:39 +0000674 return Constant::getNullValue(Op0->getType());
675
David Majnemer4efa9ff2014-11-22 07:15:16 +0000676 // 0 - X -> 0 if the sub is NUW.
677 if (isNUW && match(Op0, m_Zero()))
678 return Op0;
David Majnemercd4fbcd2014-07-31 04:49:18 +0000679
Duncan Sands99589d02011-01-18 11:50:19 +0000680 // (X + Y) - Z -> X + (Y - Z) or Y + (X - Z) if everything simplifies.
681 // For example, (X + Y) - Y -> X; (Y + X) - Y -> X
Dinesh Dwivedi99281a02014-06-26 08:57:33 +0000682 Value *X = nullptr, *Y = nullptr, *Z = Op1;
Duncan Sands99589d02011-01-18 11:50:19 +0000683 if (MaxRecurse && match(Op0, m_Add(m_Value(X), m_Value(Y)))) { // (X + Y) - Z
684 // See if "V === Y - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000685 if (Value *V = SimplifyBinOp(Instruction::Sub, Y, Z, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000686 // It does! Now see if "X + V" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000687 if (Value *W = SimplifyBinOp(Instruction::Add, X, V, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000688 // It does, we successfully reassociated!
689 ++NumReassoc;
690 return W;
691 }
692 // See if "V === X - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000693 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Z, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000694 // It does! Now see if "Y + V" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000695 if (Value *W = SimplifyBinOp(Instruction::Add, Y, V, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000696 // It does, we successfully reassociated!
697 ++NumReassoc;
698 return W;
699 }
700 }
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000701
Duncan Sands99589d02011-01-18 11:50:19 +0000702 // X - (Y + Z) -> (X - Y) - Z or (X - Z) - Y if everything simplifies.
703 // For example, X - (X + 1) -> -1
704 X = Op0;
705 if (MaxRecurse && match(Op1, m_Add(m_Value(Y), m_Value(Z)))) { // X - (Y + Z)
706 // See if "V === X - Y" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000707 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Y, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000708 // It does! Now see if "V - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000709 if (Value *W = SimplifyBinOp(Instruction::Sub, V, Z, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000710 // It does, we successfully reassociated!
711 ++NumReassoc;
712 return W;
713 }
714 // See if "V === X - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000715 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Z, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000716 // It does! Now see if "V - Y" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000717 if (Value *W = SimplifyBinOp(Instruction::Sub, V, Y, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000718 // It does, we successfully reassociated!
719 ++NumReassoc;
720 return W;
721 }
722 }
723
724 // Z - (X - Y) -> (Z - X) + Y if everything simplifies.
725 // For example, X - (X - Y) -> Y.
726 Z = Op0;
Duncan Sandsd6f1a952011-01-14 15:26:10 +0000727 if (MaxRecurse && match(Op1, m_Sub(m_Value(X), m_Value(Y)))) // Z - (X - Y)
728 // See if "V === Z - X" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000729 if (Value *V = SimplifyBinOp(Instruction::Sub, Z, X, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000730 // It does! Now see if "V + Y" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000731 if (Value *W = SimplifyBinOp(Instruction::Add, V, Y, Q, MaxRecurse-1)) {
Duncan Sandsd6f1a952011-01-14 15:26:10 +0000732 // It does, we successfully reassociated!
733 ++NumReassoc;
734 return W;
735 }
736
Duncan Sands395ac42d2012-03-13 14:07:05 +0000737 // trunc(X) - trunc(Y) -> trunc(X - Y) if everything simplifies.
738 if (MaxRecurse && match(Op0, m_Trunc(m_Value(X))) &&
739 match(Op1, m_Trunc(m_Value(Y))))
740 if (X->getType() == Y->getType())
741 // See if "V === X - Y" simplifies.
742 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Y, Q, MaxRecurse-1))
743 // It does! Now see if "trunc V" simplifies.
744 if (Value *W = SimplifyTruncInst(V, Op0->getType(), Q, MaxRecurse-1))
745 // It does, return the simplified "trunc V".
746 return W;
747
748 // Variations on GEP(base, I, ...) - GEP(base, i, ...) -> GEP(null, I-i, ...).
Dan Gohman18c77a12013-01-31 02:50:36 +0000749 if (match(Op0, m_PtrToInt(m_Value(X))) &&
Duncan Sands395ac42d2012-03-13 14:07:05 +0000750 match(Op1, m_PtrToInt(m_Value(Y))))
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000751 if (Constant *Result = computePointerDifference(Q.DL, X, Y))
Duncan Sands395ac42d2012-03-13 14:07:05 +0000752 return ConstantExpr::getIntegerCast(Result, Op0->getType(), true);
753
Duncan Sands99589d02011-01-18 11:50:19 +0000754 // i1 sub -> xor.
755 if (MaxRecurse && Op0->getType()->isIntegerTy(1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000756 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000757 return V;
758
Duncan Sands0a2c41682010-12-15 14:07:39 +0000759 // Threading Sub over selects and phi nodes is pointless, so don't bother.
760 // Threading over the select in "A - select(cond, B, C)" means evaluating
761 // "A-B" and "A-C" and seeing if they are equal; but they are equal if and
762 // only if B and C are equal. If B and C are equal then (since we assume
763 // that operands have already been simplified) "select(cond, B, C)" should
764 // have been simplified to the common value of B and C already. Analysing
765 // "A-B" and "A-C" thus gains nothing, but costs compile time. Similarly
766 // for threading over phi nodes.
767
Craig Topper9f008862014-04-15 04:59:12 +0000768 return nullptr;
Duncan Sands0a2c41682010-12-15 14:07:39 +0000769}
770
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000771Value *llvm::SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000772 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +0000773 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +0000774 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +0000775 return ::SimplifySubInst(Op0, Op1, isNSW, isNUW, Query(DL, TLI, DT, AC, CxtI),
776 RecursionLimit);
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000777}
778
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000779/// Given operands for an FAdd, see if we can fold the result. If not, this
780/// returns null.
781static Value *SimplifyFAddInst(Value *Op0, Value *Op1, FastMathFlags FMF,
782 const Query &Q, unsigned MaxRecurse) {
783 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
Manuel Jacoba61ca372016-01-21 06:26:35 +0000784 if (Constant *CRHS = dyn_cast<Constant>(Op1))
785 return ConstantFoldBinaryOpOperands(Instruction::FAdd, CLHS, CRHS, Q.DL);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000786
787 // Canonicalize the constant to the RHS.
788 std::swap(Op0, Op1);
789 }
790
791 // fadd X, -0 ==> X
792 if (match(Op1, m_NegZero()))
793 return Op0;
794
795 // fadd X, 0 ==> X, when we know X is not -0
796 if (match(Op1, m_Zero()) &&
David Majnemer3ee5f342016-04-13 06:55:52 +0000797 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0, Q.TLI)))
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000798 return Op0;
799
800 // fadd [nnan ninf] X, (fsub [nnan ninf] 0, X) ==> 0
801 // where nnan and ninf have to occur at least once somewhere in this
802 // expression
Craig Topper9f008862014-04-15 04:59:12 +0000803 Value *SubOp = nullptr;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000804 if (match(Op1, m_FSub(m_AnyZero(), m_Specific(Op0))))
805 SubOp = Op1;
806 else if (match(Op0, m_FSub(m_AnyZero(), m_Specific(Op1))))
807 SubOp = Op0;
808 if (SubOp) {
809 Instruction *FSub = cast<Instruction>(SubOp);
810 if ((FMF.noNaNs() || FSub->hasNoNaNs()) &&
811 (FMF.noInfs() || FSub->hasNoInfs()))
812 return Constant::getNullValue(Op0->getType());
813 }
814
Craig Topper9f008862014-04-15 04:59:12 +0000815 return nullptr;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000816}
817
818/// Given operands for an FSub, see if we can fold the result. If not, this
819/// returns null.
820static Value *SimplifyFSubInst(Value *Op0, Value *Op1, FastMathFlags FMF,
821 const Query &Q, unsigned MaxRecurse) {
822 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
Manuel Jacoba61ca372016-01-21 06:26:35 +0000823 if (Constant *CRHS = dyn_cast<Constant>(Op1))
824 return ConstantFoldBinaryOpOperands(Instruction::FSub, CLHS, CRHS, Q.DL);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000825 }
826
827 // fsub X, 0 ==> X
828 if (match(Op1, m_Zero()))
829 return Op0;
830
831 // fsub X, -0 ==> X, when we know X is not -0
832 if (match(Op1, m_NegZero()) &&
David Majnemer3ee5f342016-04-13 06:55:52 +0000833 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0, Q.TLI)))
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000834 return Op0;
835
Benjamin Kramerf5b2a472016-02-29 11:12:23 +0000836 // fsub -0.0, (fsub -0.0, X) ==> X
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000837 Value *X;
Benjamin Kramerf5b2a472016-02-29 11:12:23 +0000838 if (match(Op0, m_NegZero()) && match(Op1, m_FSub(m_NegZero(), m_Value(X))))
839 return X;
840
841 // fsub 0.0, (fsub 0.0, X) ==> X if signed zeros are ignored.
Benjamin Kramer6bb15022016-02-29 12:18:25 +0000842 if (FMF.noSignedZeros() && match(Op0, m_AnyZero()) &&
Benjamin Kramerf5b2a472016-02-29 11:12:23 +0000843 match(Op1, m_FSub(m_AnyZero(), m_Value(X))))
844 return X;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000845
Benjamin Kramer228680d2015-06-14 21:01:20 +0000846 // fsub nnan x, x ==> 0.0
847 if (FMF.noNaNs() && Op0 == Op1)
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000848 return Constant::getNullValue(Op0->getType());
849
Craig Topper9f008862014-04-15 04:59:12 +0000850 return nullptr;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000851}
852
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000853/// Given the operands for an FMul, see if we can fold the result
854static Value *SimplifyFMulInst(Value *Op0, Value *Op1,
855 FastMathFlags FMF,
856 const Query &Q,
857 unsigned MaxRecurse) {
858 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
Manuel Jacoba61ca372016-01-21 06:26:35 +0000859 if (Constant *CRHS = dyn_cast<Constant>(Op1))
860 return ConstantFoldBinaryOpOperands(Instruction::FMul, CLHS, CRHS, Q.DL);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000861
862 // Canonicalize the constant to the RHS.
863 std::swap(Op0, Op1);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000864 }
865
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000866 // fmul X, 1.0 ==> X
867 if (match(Op1, m_FPOne()))
868 return Op0;
869
870 // fmul nnan nsz X, 0 ==> 0
871 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op1, m_AnyZero()))
872 return Op1;
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000873
Craig Topper9f008862014-04-15 04:59:12 +0000874 return nullptr;
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000875}
876
Sanjay Patel472cc782016-01-11 22:14:42 +0000877/// Given operands for a Mul, see if we can fold the result.
878/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000879static Value *SimplifyMulInst(Value *Op0, Value *Op1, const Query &Q,
880 unsigned MaxRecurse) {
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000881 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
Manuel Jacoba61ca372016-01-21 06:26:35 +0000882 if (Constant *CRHS = dyn_cast<Constant>(Op1))
883 return ConstantFoldBinaryOpOperands(Instruction::Mul, CLHS, CRHS, Q.DL);
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000884
885 // Canonicalize the constant to the RHS.
886 std::swap(Op0, Op1);
887 }
888
889 // X * undef -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000890 if (match(Op1, m_Undef()))
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000891 return Constant::getNullValue(Op0->getType());
892
893 // X * 0 -> 0
894 if (match(Op1, m_Zero()))
895 return Op1;
896
897 // X * 1 -> X
898 if (match(Op1, m_One()))
899 return Op0;
900
Duncan Sandsb67edc62011-01-30 18:03:50 +0000901 // (X / Y) * Y -> X if the division is exact.
Craig Topper9f008862014-04-15 04:59:12 +0000902 Value *X = nullptr;
Benjamin Kramer9442cd02012-01-01 17:55:30 +0000903 if (match(Op0, m_Exact(m_IDiv(m_Value(X), m_Specific(Op1)))) || // (X / Y) * Y
904 match(Op1, m_Exact(m_IDiv(m_Value(X), m_Specific(Op0))))) // Y * (X / Y)
905 return X;
Duncan Sandsb67edc62011-01-30 18:03:50 +0000906
Nick Lewyckyb89d9a42011-01-29 19:55:23 +0000907 // i1 mul -> and.
Duncan Sands5def0d62010-12-21 14:48:48 +0000908 if (MaxRecurse && Op0->getType()->isIntegerTy(1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000909 if (Value *V = SimplifyAndInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sandsfecc6422010-12-21 15:03:43 +0000910 return V;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000911
912 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000913 if (Value *V = SimplifyAssociativeBinOp(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000914 MaxRecurse))
915 return V;
916
917 // Mul distributes over Add. Try some generic simplifications based on this.
918 if (Value *V = ExpandBinOp(Instruction::Mul, Op0, Op1, Instruction::Add,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000919 Q, MaxRecurse))
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000920 return V;
921
922 // If the operation is with the result of a select instruction, check whether
923 // operating on either branch of the select always yields the same value.
924 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000925 if (Value *V = ThreadBinOpOverSelect(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000926 MaxRecurse))
927 return V;
928
929 // If the operation is with the result of a phi instruction, check whether
930 // operating on all incoming values of the phi always yields the same value.
931 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000932 if (Value *V = ThreadBinOpOverPHI(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000933 MaxRecurse))
934 return V;
935
Craig Topper9f008862014-04-15 04:59:12 +0000936 return nullptr;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000937}
938
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000939Value *llvm::SimplifyFAddInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000940 const DataLayout &DL,
Chandler Carruth66b31302015-01-04 12:03:27 +0000941 const TargetLibraryInfo *TLI,
942 const DominatorTree *DT, AssumptionCache *AC,
943 const Instruction *CxtI) {
944 return ::SimplifyFAddInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +0000945 RecursionLimit);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000946}
947
948Value *llvm::SimplifyFSubInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000949 const DataLayout &DL,
Chandler Carruth66b31302015-01-04 12:03:27 +0000950 const TargetLibraryInfo *TLI,
951 const DominatorTree *DT, AssumptionCache *AC,
952 const Instruction *CxtI) {
953 return ::SimplifyFSubInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +0000954 RecursionLimit);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000955}
956
Chandler Carruth66b31302015-01-04 12:03:27 +0000957Value *llvm::SimplifyFMulInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000958 const DataLayout &DL,
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000959 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +0000960 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +0000961 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +0000962 return ::SimplifyFMulInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +0000963 RecursionLimit);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000964}
965
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000966Value *llvm::SimplifyMulInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +0000967 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +0000968 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +0000969 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +0000970 return ::SimplifyMulInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +0000971 RecursionLimit);
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000972}
973
Sanjay Patel472cc782016-01-11 22:14:42 +0000974/// Given operands for an SDiv or UDiv, see if we can fold the result.
975/// If not, this returns null.
Anders Carlsson36c6d232011-02-05 18:33:43 +0000976static Value *SimplifyDiv(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000977 const Query &Q, unsigned MaxRecurse) {
Manuel Jacoba61ca372016-01-21 06:26:35 +0000978 if (Constant *C0 = dyn_cast<Constant>(Op0))
979 if (Constant *C1 = dyn_cast<Constant>(Op1))
980 return ConstantFoldBinaryOpOperands(Opcode, C0, C1, Q.DL);
Duncan Sands771e82a2011-01-28 16:51:11 +0000981
Duncan Sands65995fa2011-01-28 18:50:50 +0000982 bool isSigned = Opcode == Instruction::SDiv;
983
Duncan Sands771e82a2011-01-28 16:51:11 +0000984 // X / undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000985 if (match(Op1, m_Undef()))
Duncan Sands771e82a2011-01-28 16:51:11 +0000986 return Op1;
987
David Majnemer71dc8fb2014-12-10 07:52:18 +0000988 // X / 0 -> undef, we don't need to preserve faults!
989 if (match(Op1, m_Zero()))
990 return UndefValue::get(Op1->getType());
991
Duncan Sands771e82a2011-01-28 16:51:11 +0000992 // undef / X -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000993 if (match(Op0, m_Undef()))
Duncan Sands771e82a2011-01-28 16:51:11 +0000994 return Constant::getNullValue(Op0->getType());
995
996 // 0 / X -> 0, we don't need to preserve faults!
997 if (match(Op0, m_Zero()))
998 return Op0;
999
1000 // X / 1 -> X
1001 if (match(Op1, m_One()))
1002 return Op0;
Duncan Sands771e82a2011-01-28 16:51:11 +00001003
1004 if (Op0->getType()->isIntegerTy(1))
1005 // It can't be division by zero, hence it must be division by one.
1006 return Op0;
1007
1008 // X / X -> 1
1009 if (Op0 == Op1)
1010 return ConstantInt::get(Op0->getType(), 1);
1011
1012 // (X * Y) / Y -> X if the multiplication does not overflow.
Craig Topper9f008862014-04-15 04:59:12 +00001013 Value *X = nullptr, *Y = nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001014 if (match(Op0, m_Mul(m_Value(X), m_Value(Y))) && (X == Op1 || Y == Op1)) {
1015 if (Y != Op1) std::swap(X, Y); // Ensure expression is (X * Y) / Y, Y = Op1
Duncan Sands7cb61e52011-10-27 19:16:21 +00001016 OverflowingBinaryOperator *Mul = cast<OverflowingBinaryOperator>(Op0);
Duncan Sands5747aba2011-02-02 20:52:00 +00001017 // If the Mul knows it does not overflow, then we are good to go.
1018 if ((isSigned && Mul->hasNoSignedWrap()) ||
1019 (!isSigned && Mul->hasNoUnsignedWrap()))
1020 return X;
Duncan Sands771e82a2011-01-28 16:51:11 +00001021 // If X has the form X = A / Y then X * Y cannot overflow.
1022 if (BinaryOperator *Div = dyn_cast<BinaryOperator>(X))
1023 if (Div->getOpcode() == Opcode && Div->getOperand(1) == Y)
1024 return X;
1025 }
1026
Duncan Sands65995fa2011-01-28 18:50:50 +00001027 // (X rem Y) / Y -> 0
1028 if ((isSigned && match(Op0, m_SRem(m_Value(), m_Specific(Op1)))) ||
1029 (!isSigned && match(Op0, m_URem(m_Value(), m_Specific(Op1)))))
1030 return Constant::getNullValue(Op0->getType());
1031
David Majnemercb9d5962014-10-11 10:20:01 +00001032 // (X /u C1) /u C2 -> 0 if C1 * C2 overflow
1033 ConstantInt *C1, *C2;
1034 if (!isSigned && match(Op0, m_UDiv(m_Value(X), m_ConstantInt(C1))) &&
1035 match(Op1, m_ConstantInt(C2))) {
1036 bool Overflow;
1037 C1->getValue().umul_ov(C2->getValue(), Overflow);
1038 if (Overflow)
1039 return Constant::getNullValue(Op0->getType());
1040 }
1041
Duncan Sands65995fa2011-01-28 18:50:50 +00001042 // If the operation is with the result of a select instruction, check whether
1043 // operating on either branch of the select always yields the same value.
1044 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001045 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands65995fa2011-01-28 18:50:50 +00001046 return V;
1047
1048 // If the operation is with the result of a phi instruction, check whether
1049 // operating on all incoming values of the phi always yields the same value.
1050 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001051 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands65995fa2011-01-28 18:50:50 +00001052 return V;
1053
Craig Topper9f008862014-04-15 04:59:12 +00001054 return nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001055}
1056
Sanjay Patel472cc782016-01-11 22:14:42 +00001057/// Given operands for an SDiv, see if we can fold the result.
1058/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001059static Value *SimplifySDivInst(Value *Op0, Value *Op1, const Query &Q,
1060 unsigned MaxRecurse) {
1061 if (Value *V = SimplifyDiv(Instruction::SDiv, Op0, Op1, Q, MaxRecurse))
Duncan Sands771e82a2011-01-28 16:51:11 +00001062 return V;
1063
Craig Topper9f008862014-04-15 04:59:12 +00001064 return nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001065}
1066
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001067Value *llvm::SimplifySDivInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001068 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001069 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001070 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001071 return ::SimplifySDivInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001072 RecursionLimit);
Duncan Sands771e82a2011-01-28 16:51:11 +00001073}
1074
Sanjay Patel472cc782016-01-11 22:14:42 +00001075/// Given operands for a UDiv, see if we can fold the result.
1076/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001077static Value *SimplifyUDivInst(Value *Op0, Value *Op1, const Query &Q,
1078 unsigned MaxRecurse) {
1079 if (Value *V = SimplifyDiv(Instruction::UDiv, Op0, Op1, Q, MaxRecurse))
Duncan Sands771e82a2011-01-28 16:51:11 +00001080 return V;
1081
Craig Topper9f008862014-04-15 04:59:12 +00001082 return nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001083}
1084
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001085Value *llvm::SimplifyUDivInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001086 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001087 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001088 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001089 return ::SimplifyUDivInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001090 RecursionLimit);
Duncan Sands771e82a2011-01-28 16:51:11 +00001091}
1092
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001093static Value *SimplifyFDivInst(Value *Op0, Value *Op1, FastMathFlags FMF,
1094 const Query &Q, unsigned) {
Frits van Bommelc2549662011-01-29 15:26:31 +00001095 // undef / X -> undef (the undef could be a snan).
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001096 if (match(Op0, m_Undef()))
Frits van Bommelc2549662011-01-29 15:26:31 +00001097 return Op0;
1098
1099 // X / undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001100 if (match(Op1, m_Undef()))
Frits van Bommelc2549662011-01-29 15:26:31 +00001101 return Op1;
1102
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001103 // 0 / X -> 0
1104 // Requires that NaNs are off (X could be zero) and signed zeroes are
1105 // ignored (X could be positive or negative, so the output sign is unknown).
1106 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op0, m_AnyZero()))
1107 return Op0;
1108
Benjamin Kramer1ee59cb2015-06-16 14:57:29 +00001109 if (FMF.noNaNs()) {
1110 // X / X -> 1.0 is legal when NaNs are ignored.
Benjamin Kramer4f052462015-06-14 18:53:58 +00001111 if (Op0 == Op1)
1112 return ConstantFP::get(Op0->getType(), 1.0);
1113
1114 // -X / X -> -1.0 and
Benjamin Kramer1ee59cb2015-06-16 14:57:29 +00001115 // X / -X -> -1.0 are legal when NaNs are ignored.
Benjamin Kramer4f052462015-06-14 18:53:58 +00001116 // We can ignore signed zeros because +-0.0/+-0.0 is NaN and ignored.
1117 if ((BinaryOperator::isFNeg(Op0, /*IgnoreZeroSign=*/true) &&
1118 BinaryOperator::getFNegArgument(Op0) == Op1) ||
1119 (BinaryOperator::isFNeg(Op1, /*IgnoreZeroSign=*/true) &&
1120 BinaryOperator::getFNegArgument(Op1) == Op0))
1121 return ConstantFP::get(Op0->getType(), -1.0);
1122 }
1123
Craig Topper9f008862014-04-15 04:59:12 +00001124 return nullptr;
Frits van Bommelc2549662011-01-29 15:26:31 +00001125}
1126
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001127Value *llvm::SimplifyFDivInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001128 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001129 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001130 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001131 const Instruction *CxtI) {
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001132 return ::SimplifyFDivInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001133 RecursionLimit);
Frits van Bommelc2549662011-01-29 15:26:31 +00001134}
1135
Sanjay Patel472cc782016-01-11 22:14:42 +00001136/// Given operands for an SRem or URem, see if we can fold the result.
1137/// If not, this returns null.
Duncan Sandsa3e36992011-05-02 16:27:02 +00001138static Value *SimplifyRem(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001139 const Query &Q, unsigned MaxRecurse) {
Manuel Jacoba61ca372016-01-21 06:26:35 +00001140 if (Constant *C0 = dyn_cast<Constant>(Op0))
1141 if (Constant *C1 = dyn_cast<Constant>(Op1))
1142 return ConstantFoldBinaryOpOperands(Opcode, C0, C1, Q.DL);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001143
Duncan Sandsa3e36992011-05-02 16:27:02 +00001144 // X % undef -> undef
1145 if (match(Op1, m_Undef()))
1146 return Op1;
1147
1148 // undef % X -> 0
1149 if (match(Op0, m_Undef()))
1150 return Constant::getNullValue(Op0->getType());
1151
1152 // 0 % X -> 0, we don't need to preserve faults!
1153 if (match(Op0, m_Zero()))
1154 return Op0;
1155
1156 // X % 0 -> undef, we don't need to preserve faults!
1157 if (match(Op1, m_Zero()))
1158 return UndefValue::get(Op0->getType());
1159
1160 // X % 1 -> 0
1161 if (match(Op1, m_One()))
1162 return Constant::getNullValue(Op0->getType());
1163
1164 if (Op0->getType()->isIntegerTy(1))
1165 // It can't be remainder by zero, hence it must be remainder by one.
1166 return Constant::getNullValue(Op0->getType());
1167
1168 // X % X -> 0
1169 if (Op0 == Op1)
1170 return Constant::getNullValue(Op0->getType());
1171
David Majnemerb435a422014-09-17 04:16:35 +00001172 // (X % Y) % Y -> X % Y
1173 if ((Opcode == Instruction::SRem &&
1174 match(Op0, m_SRem(m_Value(), m_Specific(Op1)))) ||
1175 (Opcode == Instruction::URem &&
1176 match(Op0, m_URem(m_Value(), m_Specific(Op1)))))
David Majnemerac717f02014-09-17 03:34:34 +00001177 return Op0;
David Majnemerac717f02014-09-17 03:34:34 +00001178
Duncan Sandsa3e36992011-05-02 16:27:02 +00001179 // If the operation is with the result of a select instruction, check whether
1180 // operating on either branch of the select always yields the same value.
1181 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001182 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001183 return V;
1184
1185 // If the operation is with the result of a phi instruction, check whether
1186 // operating on all incoming values of the phi always yields the same value.
1187 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001188 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001189 return V;
1190
Craig Topper9f008862014-04-15 04:59:12 +00001191 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001192}
1193
Sanjay Patel472cc782016-01-11 22:14:42 +00001194/// Given operands for an SRem, see if we can fold the result.
1195/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001196static Value *SimplifySRemInst(Value *Op0, Value *Op1, const Query &Q,
1197 unsigned MaxRecurse) {
1198 if (Value *V = SimplifyRem(Instruction::SRem, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001199 return V;
1200
Craig Topper9f008862014-04-15 04:59:12 +00001201 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001202}
1203
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001204Value *llvm::SimplifySRemInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001205 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001206 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001207 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001208 return ::SimplifySRemInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001209 RecursionLimit);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001210}
1211
Sanjay Patel472cc782016-01-11 22:14:42 +00001212/// Given operands for a URem, see if we can fold the result.
1213/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001214static Value *SimplifyURemInst(Value *Op0, Value *Op1, const Query &Q,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001215 unsigned MaxRecurse) {
Duncan Sandsb8cee002012-03-13 11:42:19 +00001216 if (Value *V = SimplifyRem(Instruction::URem, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001217 return V;
1218
Craig Topper9f008862014-04-15 04:59:12 +00001219 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001220}
1221
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001222Value *llvm::SimplifyURemInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001223 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001224 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001225 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001226 return ::SimplifyURemInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001227 RecursionLimit);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001228}
1229
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001230static Value *SimplifyFRemInst(Value *Op0, Value *Op1, FastMathFlags FMF,
1231 const Query &, unsigned) {
Duncan Sandsa3e36992011-05-02 16:27:02 +00001232 // undef % X -> undef (the undef could be a snan).
1233 if (match(Op0, m_Undef()))
1234 return Op0;
1235
1236 // X % undef -> undef
1237 if (match(Op1, m_Undef()))
1238 return Op1;
1239
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001240 // 0 % X -> 0
1241 // Requires that NaNs are off (X could be zero) and signed zeroes are
1242 // ignored (X could be positive or negative, so the output sign is unknown).
1243 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op0, m_AnyZero()))
1244 return Op0;
1245
Craig Topper9f008862014-04-15 04:59:12 +00001246 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001247}
1248
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001249Value *llvm::SimplifyFRemInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001250 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001251 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001252 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001253 const Instruction *CxtI) {
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001254 return ::SimplifyFRemInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001255 RecursionLimit);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001256}
1257
Sanjay Patel472cc782016-01-11 22:14:42 +00001258/// Returns true if a shift by \c Amount always yields undef.
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00001259static bool isUndefShift(Value *Amount) {
1260 Constant *C = dyn_cast<Constant>(Amount);
1261 if (!C)
1262 return false;
1263
1264 // X shift by undef -> undef because it may shift by the bitwidth.
1265 if (isa<UndefValue>(C))
1266 return true;
1267
1268 // Shifting by the bitwidth or more is undefined.
1269 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
1270 if (CI->getValue().getLimitedValue() >=
1271 CI->getType()->getScalarSizeInBits())
1272 return true;
1273
1274 // If all lanes of a vector shift are undefined the whole shift is.
1275 if (isa<ConstantVector>(C) || isa<ConstantDataVector>(C)) {
1276 for (unsigned I = 0, E = C->getType()->getVectorNumElements(); I != E; ++I)
1277 if (!isUndefShift(C->getAggregateElement(I)))
1278 return false;
1279 return true;
1280 }
1281
1282 return false;
1283}
1284
Sanjay Patel472cc782016-01-11 22:14:42 +00001285/// Given operands for an Shl, LShr or AShr, see if we can fold the result.
1286/// If not, this returns null.
Duncan Sands571fd9a2011-01-14 14:44:12 +00001287static Value *SimplifyShift(unsigned Opcode, Value *Op0, Value *Op1,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001288 const Query &Q, unsigned MaxRecurse) {
Manuel Jacoba61ca372016-01-21 06:26:35 +00001289 if (Constant *C0 = dyn_cast<Constant>(Op0))
1290 if (Constant *C1 = dyn_cast<Constant>(Op1))
1291 return ConstantFoldBinaryOpOperands(Opcode, C0, C1, Q.DL);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001292
Duncan Sands571fd9a2011-01-14 14:44:12 +00001293 // 0 shift by X -> 0
Duncan Sands7f60dc12011-01-14 00:37:45 +00001294 if (match(Op0, m_Zero()))
1295 return Op0;
1296
Duncan Sands571fd9a2011-01-14 14:44:12 +00001297 // X shift by 0 -> X
Duncan Sands7f60dc12011-01-14 00:37:45 +00001298 if (match(Op1, m_Zero()))
1299 return Op0;
1300
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00001301 // Fold undefined shifts.
1302 if (isUndefShift(Op1))
1303 return UndefValue::get(Op0->getType());
Duncan Sands7f60dc12011-01-14 00:37:45 +00001304
Duncan Sands571fd9a2011-01-14 14:44:12 +00001305 // If the operation is with the result of a select instruction, check whether
1306 // operating on either branch of the select always yields the same value.
1307 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001308 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001309 return V;
1310
1311 // If the operation is with the result of a phi instruction, check whether
1312 // operating on all incoming values of the phi always yields the same value.
1313 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001314 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001315 return V;
1316
Craig Topper9f008862014-04-15 04:59:12 +00001317 return nullptr;
Duncan Sands571fd9a2011-01-14 14:44:12 +00001318}
1319
David Majnemerbf7550e2014-11-05 00:59:59 +00001320/// \brief Given operands for an Shl, LShr or AShr, see if we can
1321/// fold the result. If not, this returns null.
1322static Value *SimplifyRightShift(unsigned Opcode, Value *Op0, Value *Op1,
1323 bool isExact, const Query &Q,
1324 unsigned MaxRecurse) {
1325 if (Value *V = SimplifyShift(Opcode, Op0, Op1, Q, MaxRecurse))
1326 return V;
1327
1328 // X >> X -> 0
1329 if (Op0 == Op1)
1330 return Constant::getNullValue(Op0->getType());
1331
David Majnemer65c52ae2014-12-17 01:54:33 +00001332 // undef >> X -> 0
1333 // undef >> X -> undef (if it's exact)
1334 if (match(Op0, m_Undef()))
1335 return isExact ? Op0 : Constant::getNullValue(Op0->getType());
1336
David Majnemerbf7550e2014-11-05 00:59:59 +00001337 // The low bit cannot be shifted out of an exact shift if it is set.
1338 if (isExact) {
1339 unsigned BitWidth = Op0->getType()->getScalarSizeInBits();
1340 APInt Op0KnownZero(BitWidth, 0);
1341 APInt Op0KnownOne(BitWidth, 0);
Chandler Carruth66b31302015-01-04 12:03:27 +00001342 computeKnownBits(Op0, Op0KnownZero, Op0KnownOne, Q.DL, /*Depth=*/0, Q.AC,
1343 Q.CxtI, Q.DT);
David Majnemerbf7550e2014-11-05 00:59:59 +00001344 if (Op0KnownOne[0])
1345 return Op0;
1346 }
1347
1348 return nullptr;
1349}
1350
Sanjay Patel472cc782016-01-11 22:14:42 +00001351/// Given operands for an Shl, see if we can fold the result.
1352/// If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001353static Value *SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001354 const Query &Q, unsigned MaxRecurse) {
1355 if (Value *V = SimplifyShift(Instruction::Shl, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001356 return V;
1357
1358 // undef << X -> 0
David Majnemer65c52ae2014-12-17 01:54:33 +00001359 // undef << X -> undef if (if it's NSW/NUW)
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001360 if (match(Op0, m_Undef()))
David Majnemer65c52ae2014-12-17 01:54:33 +00001361 return isNSW || isNUW ? Op0 : Constant::getNullValue(Op0->getType());
Duncan Sands571fd9a2011-01-14 14:44:12 +00001362
Chris Lattner9e4aa022011-02-09 17:15:04 +00001363 // (X >> A) << A -> X
1364 Value *X;
Benjamin Kramer9442cd02012-01-01 17:55:30 +00001365 if (match(Op0, m_Exact(m_Shr(m_Value(X), m_Specific(Op1)))))
Chris Lattner9e4aa022011-02-09 17:15:04 +00001366 return X;
Craig Topper9f008862014-04-15 04:59:12 +00001367 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001368}
1369
Chris Lattner9e4aa022011-02-09 17:15:04 +00001370Value *llvm::SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001371 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001372 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001373 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001374 return ::SimplifyShlInst(Op0, Op1, isNSW, isNUW, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00001375 RecursionLimit);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001376}
1377
Sanjay Patel472cc782016-01-11 22:14:42 +00001378/// Given operands for an LShr, see if we can fold the result.
1379/// If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001380static Value *SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001381 const Query &Q, unsigned MaxRecurse) {
David Majnemerbf7550e2014-11-05 00:59:59 +00001382 if (Value *V = SimplifyRightShift(Instruction::LShr, Op0, Op1, isExact, Q,
1383 MaxRecurse))
1384 return V;
David Majnemera80fed72013-07-09 22:01:22 +00001385
Chris Lattner9e4aa022011-02-09 17:15:04 +00001386 // (X << A) >> A -> X
1387 Value *X;
David Majnemer4f438372014-11-04 17:38:50 +00001388 if (match(Op0, m_NUWShl(m_Value(X), m_Specific(Op1))))
Chris Lattner9e4aa022011-02-09 17:15:04 +00001389 return X;
Duncan Sandsd114ab32011-02-13 17:15:40 +00001390
Craig Topper9f008862014-04-15 04:59:12 +00001391 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001392}
1393
Chris Lattner9e4aa022011-02-09 17:15:04 +00001394Value *llvm::SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001395 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001396 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001397 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001398 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001399 return ::SimplifyLShrInst(Op0, Op1, isExact, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00001400 RecursionLimit);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001401}
1402
Sanjay Patel472cc782016-01-11 22:14:42 +00001403/// Given operands for an AShr, see if we can fold the result.
1404/// If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001405static Value *SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001406 const Query &Q, unsigned MaxRecurse) {
David Majnemerbf7550e2014-11-05 00:59:59 +00001407 if (Value *V = SimplifyRightShift(Instruction::AShr, Op0, Op1, isExact, Q,
1408 MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001409 return V;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001410
1411 // all ones >>a X -> all ones
1412 if (match(Op0, m_AllOnes()))
1413 return Op0;
1414
Chris Lattner9e4aa022011-02-09 17:15:04 +00001415 // (X << A) >> A -> X
1416 Value *X;
David Majnemer2de97fc2014-11-04 17:47:13 +00001417 if (match(Op0, m_NSWShl(m_Value(X), m_Specific(Op1))))
Chris Lattner9e4aa022011-02-09 17:15:04 +00001418 return X;
Duncan Sandsd114ab32011-02-13 17:15:40 +00001419
Suyog Sarda68862412014-07-17 06:28:15 +00001420 // Arithmetic shifting an all-sign-bit value is a no-op.
Chandler Carruth66b31302015-01-04 12:03:27 +00001421 unsigned NumSignBits = ComputeNumSignBits(Op0, Q.DL, 0, Q.AC, Q.CxtI, Q.DT);
Suyog Sarda68862412014-07-17 06:28:15 +00001422 if (NumSignBits == Op0->getType()->getScalarSizeInBits())
1423 return Op0;
1424
Craig Topper9f008862014-04-15 04:59:12 +00001425 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001426}
1427
Chris Lattner9e4aa022011-02-09 17:15:04 +00001428Value *llvm::SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001429 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001430 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001431 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001432 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001433 return ::SimplifyAShrInst(Op0, Op1, isExact, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00001434 RecursionLimit);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001435}
1436
David Majnemer1af36e52014-12-06 10:51:40 +00001437static Value *simplifyUnsignedRangeCheck(ICmpInst *ZeroICmp,
1438 ICmpInst *UnsignedICmp, bool IsAnd) {
1439 Value *X, *Y;
1440
1441 ICmpInst::Predicate EqPred;
David Majnemerd5b3aa42014-12-08 18:30:43 +00001442 if (!match(ZeroICmp, m_ICmp(EqPred, m_Value(Y), m_Zero())) ||
1443 !ICmpInst::isEquality(EqPred))
David Majnemer1af36e52014-12-06 10:51:40 +00001444 return nullptr;
1445
1446 ICmpInst::Predicate UnsignedPred;
1447 if (match(UnsignedICmp, m_ICmp(UnsignedPred, m_Value(X), m_Specific(Y))) &&
1448 ICmpInst::isUnsigned(UnsignedPred))
1449 ;
1450 else if (match(UnsignedICmp,
1451 m_ICmp(UnsignedPred, m_Value(Y), m_Specific(X))) &&
1452 ICmpInst::isUnsigned(UnsignedPred))
1453 UnsignedPred = ICmpInst::getSwappedPredicate(UnsignedPred);
1454 else
1455 return nullptr;
1456
1457 // X < Y && Y != 0 --> X < Y
1458 // X < Y || Y != 0 --> Y != 0
1459 if (UnsignedPred == ICmpInst::ICMP_ULT && EqPred == ICmpInst::ICMP_NE)
1460 return IsAnd ? UnsignedICmp : ZeroICmp;
1461
1462 // X >= Y || Y != 0 --> true
1463 // X >= Y || Y == 0 --> X >= Y
1464 if (UnsignedPred == ICmpInst::ICMP_UGE && !IsAnd) {
1465 if (EqPred == ICmpInst::ICMP_NE)
1466 return getTrue(UnsignedICmp->getType());
1467 return UnsignedICmp;
1468 }
1469
David Majnemerd5b3aa42014-12-08 18:30:43 +00001470 // X < Y && Y == 0 --> false
1471 if (UnsignedPred == ICmpInst::ICMP_ULT && EqPred == ICmpInst::ICMP_EQ &&
1472 IsAnd)
1473 return getFalse(UnsignedICmp->getType());
1474
David Majnemer1af36e52014-12-06 10:51:40 +00001475 return nullptr;
1476}
1477
Sanjay Patel472cc782016-01-11 22:14:42 +00001478/// Simplify (and (icmp ...) (icmp ...)) to true when we can tell that the range
1479/// of possible values cannot be satisfied.
David Majnemera315bd82014-09-15 08:15:28 +00001480static Value *SimplifyAndOfICmps(ICmpInst *Op0, ICmpInst *Op1) {
1481 ICmpInst::Predicate Pred0, Pred1;
1482 ConstantInt *CI1, *CI2;
1483 Value *V;
David Majnemer1af36e52014-12-06 10:51:40 +00001484
1485 if (Value *X = simplifyUnsignedRangeCheck(Op0, Op1, /*IsAnd=*/true))
1486 return X;
1487
David Majnemera315bd82014-09-15 08:15:28 +00001488 if (!match(Op0, m_ICmp(Pred0, m_Add(m_Value(V), m_ConstantInt(CI1)),
1489 m_ConstantInt(CI2))))
1490 return nullptr;
1491
1492 if (!match(Op1, m_ICmp(Pred1, m_Specific(V), m_Specific(CI1))))
1493 return nullptr;
1494
1495 Type *ITy = Op0->getType();
1496
1497 auto *AddInst = cast<BinaryOperator>(Op0->getOperand(0));
1498 bool isNSW = AddInst->hasNoSignedWrap();
1499 bool isNUW = AddInst->hasNoUnsignedWrap();
1500
1501 const APInt &CI1V = CI1->getValue();
1502 const APInt &CI2V = CI2->getValue();
1503 const APInt Delta = CI2V - CI1V;
1504 if (CI1V.isStrictlyPositive()) {
1505 if (Delta == 2) {
1506 if (Pred0 == ICmpInst::ICMP_ULT && Pred1 == ICmpInst::ICMP_SGT)
1507 return getFalse(ITy);
1508 if (Pred0 == ICmpInst::ICMP_SLT && Pred1 == ICmpInst::ICMP_SGT && isNSW)
1509 return getFalse(ITy);
1510 }
1511 if (Delta == 1) {
1512 if (Pred0 == ICmpInst::ICMP_ULE && Pred1 == ICmpInst::ICMP_SGT)
1513 return getFalse(ITy);
1514 if (Pred0 == ICmpInst::ICMP_SLE && Pred1 == ICmpInst::ICMP_SGT && isNSW)
1515 return getFalse(ITy);
1516 }
1517 }
1518 if (CI1V.getBoolValue() && isNUW) {
1519 if (Delta == 2)
1520 if (Pred0 == ICmpInst::ICMP_ULT && Pred1 == ICmpInst::ICMP_UGT)
1521 return getFalse(ITy);
1522 if (Delta == 1)
1523 if (Pred0 == ICmpInst::ICMP_ULE && Pred1 == ICmpInst::ICMP_UGT)
1524 return getFalse(ITy);
1525 }
1526
1527 return nullptr;
1528}
1529
Sanjay Patel472cc782016-01-11 22:14:42 +00001530/// Given operands for an And, see if we can fold the result.
1531/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001532static Value *SimplifyAndInst(Value *Op0, Value *Op1, const Query &Q,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001533 unsigned MaxRecurse) {
Chris Lattnera71e9d62009-11-10 00:55:12 +00001534 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
Manuel Jacoba61ca372016-01-21 06:26:35 +00001535 if (Constant *CRHS = dyn_cast<Constant>(Op1))
1536 return ConstantFoldBinaryOpOperands(Instruction::And, CLHS, CRHS, Q.DL);
Duncan Sands7e800d62010-11-14 11:23:23 +00001537
Chris Lattnera71e9d62009-11-10 00:55:12 +00001538 // Canonicalize the constant to the RHS.
1539 std::swap(Op0, Op1);
1540 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001541
Chris Lattnera71e9d62009-11-10 00:55:12 +00001542 // X & undef -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001543 if (match(Op1, m_Undef()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001544 return Constant::getNullValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001545
Chris Lattnera71e9d62009-11-10 00:55:12 +00001546 // X & X = X
Duncan Sands772749a2011-01-01 20:08:02 +00001547 if (Op0 == Op1)
Chris Lattnera71e9d62009-11-10 00:55:12 +00001548 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001549
Duncan Sandsc89ac072010-11-17 18:52:15 +00001550 // X & 0 = 0
1551 if (match(Op1, m_Zero()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001552 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001553
Duncan Sandsc89ac072010-11-17 18:52:15 +00001554 // X & -1 = X
1555 if (match(Op1, m_AllOnes()))
1556 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001557
Chris Lattnera71e9d62009-11-10 00:55:12 +00001558 // A & ~A = ~A & A = 0
Chris Lattner9e4aa022011-02-09 17:15:04 +00001559 if (match(Op0, m_Not(m_Specific(Op1))) ||
1560 match(Op1, m_Not(m_Specific(Op0))))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001561 return Constant::getNullValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001562
Chris Lattnera71e9d62009-11-10 00:55:12 +00001563 // (A | ?) & A = A
Craig Topper9f008862014-04-15 04:59:12 +00001564 Value *A = nullptr, *B = nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00001565 if (match(Op0, m_Or(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001566 (A == Op1 || B == Op1))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001567 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001568
Chris Lattnera71e9d62009-11-10 00:55:12 +00001569 // A & (A | ?) = A
1570 if (match(Op1, m_Or(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001571 (A == Op0 || B == Op0))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001572 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001573
Duncan Sandsba286d72011-10-26 20:55:21 +00001574 // A & (-A) = A if A is a power of two or zero.
1575 if (match(Op0, m_Neg(m_Specific(Op1))) ||
1576 match(Op1, m_Neg(m_Specific(Op0)))) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001577 if (isKnownToBeAPowerOfTwo(Op0, Q.DL, /*OrZero*/ true, 0, Q.AC, Q.CxtI,
1578 Q.DT))
Duncan Sandsba286d72011-10-26 20:55:21 +00001579 return Op0;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001580 if (isKnownToBeAPowerOfTwo(Op1, Q.DL, /*OrZero*/ true, 0, Q.AC, Q.CxtI,
1581 Q.DT))
Duncan Sandsba286d72011-10-26 20:55:21 +00001582 return Op1;
1583 }
1584
David Majnemera315bd82014-09-15 08:15:28 +00001585 if (auto *ICILHS = dyn_cast<ICmpInst>(Op0)) {
1586 if (auto *ICIRHS = dyn_cast<ICmpInst>(Op1)) {
1587 if (Value *V = SimplifyAndOfICmps(ICILHS, ICIRHS))
1588 return V;
1589 if (Value *V = SimplifyAndOfICmps(ICIRHS, ICILHS))
1590 return V;
1591 }
1592 }
1593
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001594 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001595 if (Value *V = SimplifyAssociativeBinOp(Instruction::And, Op0, Op1, Q,
1596 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001597 return V;
Benjamin Kramer8c35fb02010-09-10 22:39:55 +00001598
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001599 // And distributes over Or. Try some generic simplifications based on this.
1600 if (Value *V = ExpandBinOp(Instruction::And, Op0, Op1, Instruction::Or,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001601 Q, MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001602 return V;
1603
1604 // And distributes over Xor. Try some generic simplifications based on this.
1605 if (Value *V = ExpandBinOp(Instruction::And, Op0, Op1, Instruction::Xor,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001606 Q, MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001607 return V;
1608
Duncan Sandsb0579e92010-11-10 13:00:08 +00001609 // If the operation is with the result of a select instruction, check whether
1610 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001611 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001612 if (Value *V = ThreadBinOpOverSelect(Instruction::And, Op0, Op1, Q,
1613 MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001614 return V;
1615
1616 // If the operation is with the result of a phi instruction, check whether
1617 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001618 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001619 if (Value *V = ThreadBinOpOverPHI(Instruction::And, Op0, Op1, Q,
Duncan Sandsf64e6902010-12-21 09:09:15 +00001620 MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00001621 return V;
1622
Craig Topper9f008862014-04-15 04:59:12 +00001623 return nullptr;
Chris Lattner084a1b52009-11-09 22:57:59 +00001624}
1625
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001626Value *llvm::SimplifyAndInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001627 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001628 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001629 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001630 return ::SimplifyAndInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001631 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001632}
1633
Sanjay Patel472cc782016-01-11 22:14:42 +00001634/// Simplify (or (icmp ...) (icmp ...)) to true when we can tell that the union
1635/// contains all possible values.
David Majnemera315bd82014-09-15 08:15:28 +00001636static Value *SimplifyOrOfICmps(ICmpInst *Op0, ICmpInst *Op1) {
1637 ICmpInst::Predicate Pred0, Pred1;
1638 ConstantInt *CI1, *CI2;
1639 Value *V;
David Majnemer1af36e52014-12-06 10:51:40 +00001640
1641 if (Value *X = simplifyUnsignedRangeCheck(Op0, Op1, /*IsAnd=*/false))
1642 return X;
1643
David Majnemera315bd82014-09-15 08:15:28 +00001644 if (!match(Op0, m_ICmp(Pred0, m_Add(m_Value(V), m_ConstantInt(CI1)),
1645 m_ConstantInt(CI2))))
1646 return nullptr;
1647
1648 if (!match(Op1, m_ICmp(Pred1, m_Specific(V), m_Specific(CI1))))
1649 return nullptr;
1650
1651 Type *ITy = Op0->getType();
1652
1653 auto *AddInst = cast<BinaryOperator>(Op0->getOperand(0));
1654 bool isNSW = AddInst->hasNoSignedWrap();
1655 bool isNUW = AddInst->hasNoUnsignedWrap();
1656
1657 const APInt &CI1V = CI1->getValue();
1658 const APInt &CI2V = CI2->getValue();
1659 const APInt Delta = CI2V - CI1V;
1660 if (CI1V.isStrictlyPositive()) {
1661 if (Delta == 2) {
1662 if (Pred0 == ICmpInst::ICMP_UGE && Pred1 == ICmpInst::ICMP_SLE)
1663 return getTrue(ITy);
1664 if (Pred0 == ICmpInst::ICMP_SGE && Pred1 == ICmpInst::ICMP_SLE && isNSW)
1665 return getTrue(ITy);
1666 }
1667 if (Delta == 1) {
1668 if (Pred0 == ICmpInst::ICMP_UGT && Pred1 == ICmpInst::ICMP_SLE)
1669 return getTrue(ITy);
1670 if (Pred0 == ICmpInst::ICMP_SGT && Pred1 == ICmpInst::ICMP_SLE && isNSW)
1671 return getTrue(ITy);
1672 }
1673 }
1674 if (CI1V.getBoolValue() && isNUW) {
1675 if (Delta == 2)
1676 if (Pred0 == ICmpInst::ICMP_UGE && Pred1 == ICmpInst::ICMP_ULE)
1677 return getTrue(ITy);
1678 if (Delta == 1)
1679 if (Pred0 == ICmpInst::ICMP_UGT && Pred1 == ICmpInst::ICMP_ULE)
1680 return getTrue(ITy);
1681 }
1682
1683 return nullptr;
1684}
1685
Sanjay Patel472cc782016-01-11 22:14:42 +00001686/// Given operands for an Or, see if we can fold the result.
1687/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001688static Value *SimplifyOrInst(Value *Op0, Value *Op1, const Query &Q,
1689 unsigned MaxRecurse) {
Chris Lattnera71e9d62009-11-10 00:55:12 +00001690 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
Manuel Jacoba61ca372016-01-21 06:26:35 +00001691 if (Constant *CRHS = dyn_cast<Constant>(Op1))
1692 return ConstantFoldBinaryOpOperands(Instruction::Or, CLHS, CRHS, Q.DL);
Duncan Sands7e800d62010-11-14 11:23:23 +00001693
Chris Lattnera71e9d62009-11-10 00:55:12 +00001694 // Canonicalize the constant to the RHS.
1695 std::swap(Op0, Op1);
1696 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001697
Chris Lattnera71e9d62009-11-10 00:55:12 +00001698 // X | undef -> -1
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001699 if (match(Op1, m_Undef()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001700 return Constant::getAllOnesValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001701
Chris Lattnera71e9d62009-11-10 00:55:12 +00001702 // X | X = X
Duncan Sands772749a2011-01-01 20:08:02 +00001703 if (Op0 == Op1)
Chris Lattnera71e9d62009-11-10 00:55:12 +00001704 return Op0;
1705
Duncan Sandsc89ac072010-11-17 18:52:15 +00001706 // X | 0 = X
1707 if (match(Op1, m_Zero()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001708 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001709
Duncan Sandsc89ac072010-11-17 18:52:15 +00001710 // X | -1 = -1
1711 if (match(Op1, m_AllOnes()))
1712 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001713
Chris Lattnera71e9d62009-11-10 00:55:12 +00001714 // A | ~A = ~A | A = -1
Chris Lattner9e4aa022011-02-09 17:15:04 +00001715 if (match(Op0, m_Not(m_Specific(Op1))) ||
1716 match(Op1, m_Not(m_Specific(Op0))))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001717 return Constant::getAllOnesValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001718
Chris Lattnera71e9d62009-11-10 00:55:12 +00001719 // (A & ?) | A = A
Craig Topper9f008862014-04-15 04:59:12 +00001720 Value *A = nullptr, *B = nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00001721 if (match(Op0, m_And(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001722 (A == Op1 || B == Op1))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001723 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001724
Chris Lattnera71e9d62009-11-10 00:55:12 +00001725 // A | (A & ?) = A
1726 if (match(Op1, m_And(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001727 (A == Op0 || B == Op0))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001728 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001729
Benjamin Kramer5b7a4e02011-02-20 15:20:01 +00001730 // ~(A & ?) | A = -1
1731 if (match(Op0, m_Not(m_And(m_Value(A), m_Value(B)))) &&
1732 (A == Op1 || B == Op1))
1733 return Constant::getAllOnesValue(Op1->getType());
1734
1735 // A | ~(A & ?) = -1
1736 if (match(Op1, m_Not(m_And(m_Value(A), m_Value(B)))) &&
1737 (A == Op0 || B == Op0))
1738 return Constant::getAllOnesValue(Op0->getType());
1739
David Majnemera315bd82014-09-15 08:15:28 +00001740 if (auto *ICILHS = dyn_cast<ICmpInst>(Op0)) {
1741 if (auto *ICIRHS = dyn_cast<ICmpInst>(Op1)) {
1742 if (Value *V = SimplifyOrOfICmps(ICILHS, ICIRHS))
1743 return V;
1744 if (Value *V = SimplifyOrOfICmps(ICIRHS, ICILHS))
1745 return V;
1746 }
1747 }
1748
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001749 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001750 if (Value *V = SimplifyAssociativeBinOp(Instruction::Or, Op0, Op1, Q,
1751 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001752 return V;
Benjamin Kramer8c35fb02010-09-10 22:39:55 +00001753
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001754 // Or distributes over And. Try some generic simplifications based on this.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001755 if (Value *V = ExpandBinOp(Instruction::Or, Op0, Op1, Instruction::And, Q,
1756 MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001757 return V;
1758
Duncan Sandsb0579e92010-11-10 13:00:08 +00001759 // If the operation is with the result of a select instruction, check whether
1760 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001761 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001762 if (Value *V = ThreadBinOpOverSelect(Instruction::Or, Op0, Op1, Q,
Duncan Sandsf64e6902010-12-21 09:09:15 +00001763 MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001764 return V;
1765
Nick Lewycky8561a492014-06-19 03:51:46 +00001766 // (A & C)|(B & D)
1767 Value *C = nullptr, *D = nullptr;
1768 if (match(Op0, m_And(m_Value(A), m_Value(C))) &&
1769 match(Op1, m_And(m_Value(B), m_Value(D)))) {
1770 ConstantInt *C1 = dyn_cast<ConstantInt>(C);
1771 ConstantInt *C2 = dyn_cast<ConstantInt>(D);
1772 if (C1 && C2 && (C1->getValue() == ~C2->getValue())) {
1773 // (A & C1)|(B & C2)
1774 // If we have: ((V + N) & C1) | (V & C2)
1775 // .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0
1776 // replace with V+N.
1777 Value *V1, *V2;
1778 if ((C2->getValue() & (C2->getValue() + 1)) == 0 && // C2 == 0+1+
1779 match(A, m_Add(m_Value(V1), m_Value(V2)))) {
1780 // Add commutes, try both ways.
Chandler Carruth66b31302015-01-04 12:03:27 +00001781 if (V1 == B &&
1782 MaskedValueIsZero(V2, C2->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001783 return A;
Chandler Carruth66b31302015-01-04 12:03:27 +00001784 if (V2 == B &&
1785 MaskedValueIsZero(V1, C2->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001786 return A;
1787 }
1788 // Or commutes, try both ways.
1789 if ((C1->getValue() & (C1->getValue() + 1)) == 0 &&
1790 match(B, m_Add(m_Value(V1), m_Value(V2)))) {
1791 // Add commutes, try both ways.
Chandler Carruth66b31302015-01-04 12:03:27 +00001792 if (V1 == A &&
1793 MaskedValueIsZero(V2, C1->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001794 return B;
Chandler Carruth66b31302015-01-04 12:03:27 +00001795 if (V2 == A &&
1796 MaskedValueIsZero(V1, C1->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001797 return B;
1798 }
1799 }
1800 }
1801
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001802 // If the operation is with the result of a phi instruction, check whether
1803 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001804 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001805 if (Value *V = ThreadBinOpOverPHI(Instruction::Or, Op0, Op1, Q, MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00001806 return V;
1807
Craig Topper9f008862014-04-15 04:59:12 +00001808 return nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00001809}
1810
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001811Value *llvm::SimplifyOrInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001812 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001813 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001814 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001815 return ::SimplifyOrInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001816 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001817}
Chris Lattnera71e9d62009-11-10 00:55:12 +00001818
Sanjay Patel472cc782016-01-11 22:14:42 +00001819/// Given operands for a Xor, see if we can fold the result.
1820/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001821static Value *SimplifyXorInst(Value *Op0, Value *Op1, const Query &Q,
1822 unsigned MaxRecurse) {
Duncan Sandsc89ac072010-11-17 18:52:15 +00001823 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
Manuel Jacoba61ca372016-01-21 06:26:35 +00001824 if (Constant *CRHS = dyn_cast<Constant>(Op1))
1825 return ConstantFoldBinaryOpOperands(Instruction::Xor, CLHS, CRHS, Q.DL);
Duncan Sandsc89ac072010-11-17 18:52:15 +00001826
1827 // Canonicalize the constant to the RHS.
1828 std::swap(Op0, Op1);
1829 }
1830
1831 // A ^ undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001832 if (match(Op1, m_Undef()))
Duncan Sands019a4182010-12-15 11:02:22 +00001833 return Op1;
Duncan Sandsc89ac072010-11-17 18:52:15 +00001834
1835 // A ^ 0 = A
1836 if (match(Op1, m_Zero()))
1837 return Op0;
1838
Eli Friedmanad3cfe72011-08-17 19:31:49 +00001839 // A ^ A = 0
1840 if (Op0 == Op1)
1841 return Constant::getNullValue(Op0->getType());
1842
Duncan Sandsc89ac072010-11-17 18:52:15 +00001843 // A ^ ~A = ~A ^ A = -1
Chris Lattner9e4aa022011-02-09 17:15:04 +00001844 if (match(Op0, m_Not(m_Specific(Op1))) ||
1845 match(Op1, m_Not(m_Specific(Op0))))
Duncan Sandsc89ac072010-11-17 18:52:15 +00001846 return Constant::getAllOnesValue(Op0->getType());
1847
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001848 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001849 if (Value *V = SimplifyAssociativeBinOp(Instruction::Xor, Op0, Op1, Q,
1850 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001851 return V;
Duncan Sandsc89ac072010-11-17 18:52:15 +00001852
Duncan Sandsb238de02010-11-19 09:20:39 +00001853 // Threading Xor over selects and phi nodes is pointless, so don't bother.
1854 // Threading over the select in "A ^ select(cond, B, C)" means evaluating
1855 // "A^B" and "A^C" and seeing if they are equal; but they are equal if and
1856 // only if B and C are equal. If B and C are equal then (since we assume
1857 // that operands have already been simplified) "select(cond, B, C)" should
1858 // have been simplified to the common value of B and C already. Analysing
1859 // "A^B" and "A^C" thus gains nothing, but costs compile time. Similarly
1860 // for threading over phi nodes.
Duncan Sandsc89ac072010-11-17 18:52:15 +00001861
Craig Topper9f008862014-04-15 04:59:12 +00001862 return nullptr;
Duncan Sandsc89ac072010-11-17 18:52:15 +00001863}
1864
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001865Value *llvm::SimplifyXorInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001866 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001867 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001868 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001869 return ::SimplifyXorInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001870 RecursionLimit);
Duncan Sandsc89ac072010-11-17 18:52:15 +00001871}
1872
Chris Lattner229907c2011-07-18 04:54:35 +00001873static Type *GetCompareTy(Value *Op) {
Chris Lattnerccfdceb2009-11-09 23:55:12 +00001874 return CmpInst::makeCmpResultType(Op->getType());
1875}
1876
Sanjay Patel472cc782016-01-11 22:14:42 +00001877/// Rummage around inside V looking for something equivalent to the comparison
1878/// "LHS Pred RHS". Return such a value if found, otherwise return null.
1879/// Helper function for analyzing max/min idioms.
Duncan Sandsaf327282011-05-07 16:56:49 +00001880static Value *ExtractEquivalentCondition(Value *V, CmpInst::Predicate Pred,
1881 Value *LHS, Value *RHS) {
1882 SelectInst *SI = dyn_cast<SelectInst>(V);
1883 if (!SI)
Craig Topper9f008862014-04-15 04:59:12 +00001884 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00001885 CmpInst *Cmp = dyn_cast<CmpInst>(SI->getCondition());
1886 if (!Cmp)
Craig Topper9f008862014-04-15 04:59:12 +00001887 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00001888 Value *CmpLHS = Cmp->getOperand(0), *CmpRHS = Cmp->getOperand(1);
1889 if (Pred == Cmp->getPredicate() && LHS == CmpLHS && RHS == CmpRHS)
1890 return Cmp;
1891 if (Pred == CmpInst::getSwappedPredicate(Cmp->getPredicate()) &&
1892 LHS == CmpRHS && RHS == CmpLHS)
1893 return Cmp;
Craig Topper9f008862014-04-15 04:59:12 +00001894 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00001895}
1896
Dan Gohman9631d902013-02-01 00:49:06 +00001897// A significant optimization not implemented here is assuming that alloca
1898// addresses are not equal to incoming argument values. They don't *alias*,
1899// as we say, but that doesn't mean they aren't equal, so we take a
1900// conservative approach.
1901//
1902// This is inspired in part by C++11 5.10p1:
1903// "Two pointers of the same type compare equal if and only if they are both
1904// null, both point to the same function, or both represent the same
1905// address."
1906//
1907// This is pretty permissive.
1908//
1909// It's also partly due to C11 6.5.9p6:
1910// "Two pointers compare equal if and only if both are null pointers, both are
1911// pointers to the same object (including a pointer to an object and a
1912// subobject at its beginning) or function, both are pointers to one past the
1913// last element of the same array object, or one is a pointer to one past the
1914// end of one array object and the other is a pointer to the start of a
NAKAMURA Takumi065fd352013-04-08 23:05:21 +00001915// different array object that happens to immediately follow the first array
Dan Gohman9631d902013-02-01 00:49:06 +00001916// object in the address space.)
1917//
1918// C11's version is more restrictive, however there's no reason why an argument
1919// couldn't be a one-past-the-end value for a stack object in the caller and be
1920// equal to the beginning of a stack object in the callee.
1921//
1922// If the C and C++ standards are ever made sufficiently restrictive in this
1923// area, it may be possible to update LLVM's semantics accordingly and reinstate
1924// this optimization.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001925static Constant *computePointerICmp(const DataLayout &DL,
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001926 const TargetLibraryInfo *TLI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001927 CmpInst::Predicate Pred, Value *LHS,
1928 Value *RHS) {
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001929 // First, skip past any trivial no-ops.
1930 LHS = LHS->stripPointerCasts();
1931 RHS = RHS->stripPointerCasts();
1932
1933 // A non-null pointer is not equal to a null pointer.
Benjamin Kramerfd4777c2013-09-24 16:37:51 +00001934 if (llvm::isKnownNonNull(LHS, TLI) && isa<ConstantPointerNull>(RHS) &&
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001935 (Pred == CmpInst::ICMP_EQ || Pred == CmpInst::ICMP_NE))
1936 return ConstantInt::get(GetCompareTy(LHS),
1937 !CmpInst::isTrueWhenEqual(Pred));
1938
Chandler Carruth8059c842012-03-25 21:28:14 +00001939 // We can only fold certain predicates on pointer comparisons.
1940 switch (Pred) {
1941 default:
Craig Topper9f008862014-04-15 04:59:12 +00001942 return nullptr;
Chandler Carruth8059c842012-03-25 21:28:14 +00001943
1944 // Equality comaprisons are easy to fold.
1945 case CmpInst::ICMP_EQ:
1946 case CmpInst::ICMP_NE:
1947 break;
1948
1949 // We can only handle unsigned relational comparisons because 'inbounds' on
1950 // a GEP only protects against unsigned wrapping.
1951 case CmpInst::ICMP_UGT:
1952 case CmpInst::ICMP_UGE:
1953 case CmpInst::ICMP_ULT:
1954 case CmpInst::ICMP_ULE:
1955 // However, we have to switch them to their signed variants to handle
1956 // negative indices from the base pointer.
1957 Pred = ICmpInst::getSignedPredicate(Pred);
1958 break;
1959 }
1960
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001961 // Strip off any constant offsets so that we can reason about them.
1962 // It's tempting to use getUnderlyingObject or even just stripInBoundsOffsets
1963 // here and compare base addresses like AliasAnalysis does, however there are
1964 // numerous hazards. AliasAnalysis and its utilities rely on special rules
1965 // governing loads and stores which don't apply to icmps. Also, AliasAnalysis
1966 // doesn't need to guarantee pointer inequality when it says NoAlias.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001967 Constant *LHSOffset = stripAndComputeConstantOffsets(DL, LHS);
1968 Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS);
Chandler Carruth8059c842012-03-25 21:28:14 +00001969
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001970 // If LHS and RHS are related via constant offsets to the same base
1971 // value, we can replace it with an icmp which just compares the offsets.
1972 if (LHS == RHS)
1973 return ConstantExpr::getICmp(Pred, LHSOffset, RHSOffset);
Chandler Carruth8059c842012-03-25 21:28:14 +00001974
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001975 // Various optimizations for (in)equality comparisons.
1976 if (Pred == CmpInst::ICMP_EQ || Pred == CmpInst::ICMP_NE) {
1977 // Different non-empty allocations that exist at the same time have
1978 // different addresses (if the program can tell). Global variables always
1979 // exist, so they always exist during the lifetime of each other and all
1980 // allocas. Two different allocas usually have different addresses...
1981 //
1982 // However, if there's an @llvm.stackrestore dynamically in between two
1983 // allocas, they may have the same address. It's tempting to reduce the
1984 // scope of the problem by only looking at *static* allocas here. That would
1985 // cover the majority of allocas while significantly reducing the likelihood
1986 // of having an @llvm.stackrestore pop up in the middle. However, it's not
1987 // actually impossible for an @llvm.stackrestore to pop up in the middle of
1988 // an entry block. Also, if we have a block that's not attached to a
1989 // function, we can't tell if it's "static" under the current definition.
1990 // Theoretically, this problem could be fixed by creating a new kind of
1991 // instruction kind specifically for static allocas. Such a new instruction
1992 // could be required to be at the top of the entry block, thus preventing it
1993 // from being subject to a @llvm.stackrestore. Instcombine could even
1994 // convert regular allocas into these special allocas. It'd be nifty.
1995 // However, until then, this problem remains open.
1996 //
1997 // So, we'll assume that two non-empty allocas have different addresses
1998 // for now.
1999 //
2000 // With all that, if the offsets are within the bounds of their allocations
2001 // (and not one-past-the-end! so we can't use inbounds!), and their
2002 // allocations aren't the same, the pointers are not equal.
2003 //
2004 // Note that it's not necessary to check for LHS being a global variable
2005 // address, due to canonicalization and constant folding.
2006 if (isa<AllocaInst>(LHS) &&
2007 (isa<AllocaInst>(RHS) || isa<GlobalVariable>(RHS))) {
Benjamin Kramerc05aa952013-02-01 15:21:10 +00002008 ConstantInt *LHSOffsetCI = dyn_cast<ConstantInt>(LHSOffset);
2009 ConstantInt *RHSOffsetCI = dyn_cast<ConstantInt>(RHSOffset);
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002010 uint64_t LHSSize, RHSSize;
Benjamin Kramerc05aa952013-02-01 15:21:10 +00002011 if (LHSOffsetCI && RHSOffsetCI &&
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002012 getObjectSize(LHS, LHSSize, DL, TLI) &&
2013 getObjectSize(RHS, RHSSize, DL, TLI)) {
Benjamin Kramerc05aa952013-02-01 15:21:10 +00002014 const APInt &LHSOffsetValue = LHSOffsetCI->getValue();
2015 const APInt &RHSOffsetValue = RHSOffsetCI->getValue();
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002016 if (!LHSOffsetValue.isNegative() &&
2017 !RHSOffsetValue.isNegative() &&
2018 LHSOffsetValue.ult(LHSSize) &&
2019 RHSOffsetValue.ult(RHSSize)) {
2020 return ConstantInt::get(GetCompareTy(LHS),
2021 !CmpInst::isTrueWhenEqual(Pred));
2022 }
2023 }
2024
2025 // Repeat the above check but this time without depending on DataLayout
2026 // or being able to compute a precise size.
2027 if (!cast<PointerType>(LHS->getType())->isEmptyTy() &&
2028 !cast<PointerType>(RHS->getType())->isEmptyTy() &&
2029 LHSOffset->isNullValue() &&
2030 RHSOffset->isNullValue())
2031 return ConstantInt::get(GetCompareTy(LHS),
2032 !CmpInst::isTrueWhenEqual(Pred));
2033 }
Benjamin Kramer942dfe62013-09-23 14:16:38 +00002034
2035 // Even if an non-inbounds GEP occurs along the path we can still optimize
2036 // equality comparisons concerning the result. We avoid walking the whole
2037 // chain again by starting where the last calls to
2038 // stripAndComputeConstantOffsets left off and accumulate the offsets.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002039 Constant *LHSNoBound = stripAndComputeConstantOffsets(DL, LHS, true);
2040 Constant *RHSNoBound = stripAndComputeConstantOffsets(DL, RHS, true);
Benjamin Kramer942dfe62013-09-23 14:16:38 +00002041 if (LHS == RHS)
2042 return ConstantExpr::getICmp(Pred,
2043 ConstantExpr::getAdd(LHSOffset, LHSNoBound),
2044 ConstantExpr::getAdd(RHSOffset, RHSNoBound));
Hal Finkelafcd8db2014-12-01 23:38:06 +00002045
2046 // If one side of the equality comparison must come from a noalias call
2047 // (meaning a system memory allocation function), and the other side must
2048 // come from a pointer that cannot overlap with dynamically-allocated
2049 // memory within the lifetime of the current function (allocas, byval
2050 // arguments, globals), then determine the comparison result here.
2051 SmallVector<Value *, 8> LHSUObjs, RHSUObjs;
2052 GetUnderlyingObjects(LHS, LHSUObjs, DL);
2053 GetUnderlyingObjects(RHS, RHSUObjs, DL);
2054
2055 // Is the set of underlying objects all noalias calls?
2056 auto IsNAC = [](SmallVectorImpl<Value *> &Objects) {
Craig Topperb4b66d02015-11-29 04:37:14 +00002057 return std::all_of(Objects.begin(), Objects.end(), isNoAliasCall);
Hal Finkelafcd8db2014-12-01 23:38:06 +00002058 };
2059
2060 // Is the set of underlying objects all things which must be disjoint from
Hal Finkelaa19baf2014-12-04 17:45:19 +00002061 // noalias calls. For allocas, we consider only static ones (dynamic
2062 // allocas might be transformed into calls to malloc not simultaneously
2063 // live with the compared-to allocation). For globals, we exclude symbols
2064 // that might be resolve lazily to symbols in another dynamically-loaded
2065 // library (and, thus, could be malloc'ed by the implementation).
Hal Finkelafcd8db2014-12-01 23:38:06 +00002066 auto IsAllocDisjoint = [](SmallVectorImpl<Value *> &Objects) {
Sanjay Patel34ea70a2016-01-11 22:24:35 +00002067 return std::all_of(Objects.begin(), Objects.end(), [](Value *V) {
2068 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V))
2069 return AI->getParent() && AI->getFunction() && AI->isStaticAlloca();
2070 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
2071 return (GV->hasLocalLinkage() || GV->hasHiddenVisibility() ||
2072 GV->hasProtectedVisibility() || GV->hasUnnamedAddr()) &&
2073 !GV->isThreadLocal();
2074 if (const Argument *A = dyn_cast<Argument>(V))
2075 return A->hasByValAttr();
2076 return false;
2077 });
Hal Finkelafcd8db2014-12-01 23:38:06 +00002078 };
2079
2080 if ((IsNAC(LHSUObjs) && IsAllocDisjoint(RHSUObjs)) ||
2081 (IsNAC(RHSUObjs) && IsAllocDisjoint(LHSUObjs)))
2082 return ConstantInt::get(GetCompareTy(LHS),
2083 !CmpInst::isTrueWhenEqual(Pred));
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002084 }
2085
2086 // Otherwise, fail.
Craig Topper9f008862014-04-15 04:59:12 +00002087 return nullptr;
Chandler Carruth8059c842012-03-25 21:28:14 +00002088}
Chris Lattner01990f02012-02-24 19:01:58 +00002089
Sanjay Patel472cc782016-01-11 22:14:42 +00002090/// Given operands for an ICmpInst, see if we can fold the result.
2091/// If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00002092static Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00002093 const Query &Q, unsigned MaxRecurse) {
Chris Lattner084a1b52009-11-09 22:57:59 +00002094 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate;
Chris Lattnerc1f19072009-11-09 23:28:39 +00002095 assert(CmpInst::isIntPredicate(Pred) && "Not an integer compare!");
Duncan Sands7e800d62010-11-14 11:23:23 +00002096
Chris Lattnera71e9d62009-11-10 00:55:12 +00002097 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
Chris Lattnercdfb80d2009-11-09 23:06:58 +00002098 if (Constant *CRHS = dyn_cast<Constant>(RHS))
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002099 return ConstantFoldCompareInstOperands(Pred, CLHS, CRHS, Q.DL, Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00002100
2101 // If we have a constant, make sure it is on the RHS.
2102 std::swap(LHS, RHS);
2103 Pred = CmpInst::getSwappedPredicate(Pred);
2104 }
Duncan Sands7e800d62010-11-14 11:23:23 +00002105
Chris Lattner229907c2011-07-18 04:54:35 +00002106 Type *ITy = GetCompareTy(LHS); // The return type.
2107 Type *OpTy = LHS->getType(); // The operand type.
Duncan Sands7e800d62010-11-14 11:23:23 +00002108
Chris Lattnerccfdceb2009-11-09 23:55:12 +00002109 // icmp X, X -> true/false
Chris Lattner3afc0722010-03-03 19:46:03 +00002110 // X icmp undef -> true/false. For example, icmp ugt %X, undef -> false
2111 // because X could be 0.
Duncan Sands772749a2011-01-01 20:08:02 +00002112 if (LHS == RHS || isa<UndefValue>(RHS))
Chris Lattnerccfdceb2009-11-09 23:55:12 +00002113 return ConstantInt::get(ITy, CmpInst::isTrueWhenEqual(Pred));
Duncan Sands7e800d62010-11-14 11:23:23 +00002114
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002115 // Special case logic when the operands have i1 type.
Nick Lewyckye659b842011-12-01 02:39:36 +00002116 if (OpTy->getScalarType()->isIntegerTy(1)) {
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002117 switch (Pred) {
2118 default: break;
2119 case ICmpInst::ICMP_EQ:
2120 // X == 1 -> X
2121 if (match(RHS, m_One()))
2122 return LHS;
2123 break;
2124 case ICmpInst::ICMP_NE:
2125 // X != 0 -> X
2126 if (match(RHS, m_Zero()))
2127 return LHS;
2128 break;
2129 case ICmpInst::ICMP_UGT:
2130 // X >u 0 -> X
2131 if (match(RHS, m_Zero()))
2132 return LHS;
2133 break;
Chad Rosierb7dfbb42016-04-19 17:19:14 +00002134 case ICmpInst::ICMP_UGE: {
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002135 // X >=u 1 -> X
2136 if (match(RHS, m_One()))
2137 return LHS;
Chad Rosier41dd31f2016-04-20 19:15:26 +00002138 if (isImpliedCondition(RHS, LHS, Q.DL).getValueOr(false))
Philip Reames13f023c2015-09-28 17:14:24 +00002139 return getTrue(ITy);
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002140 break;
Chad Rosierb7dfbb42016-04-19 17:19:14 +00002141 }
2142 case ICmpInst::ICMP_SGE: {
Junmo Park53470fc2016-04-05 21:14:31 +00002143 /// For signed comparison, the values for an i1 are 0 and -1
Philip Reamesdbbd7792015-10-29 03:19:10 +00002144 /// respectively. This maps into a truth table of:
2145 /// LHS | RHS | LHS >=s RHS | LHS implies RHS
2146 /// 0 | 0 | 1 (0 >= 0) | 1
2147 /// 0 | 1 | 1 (0 >= -1) | 1
2148 /// 1 | 0 | 0 (-1 >= 0) | 0
2149 /// 1 | 1 | 1 (-1 >= -1) | 1
Chad Rosier41dd31f2016-04-20 19:15:26 +00002150 if (isImpliedCondition(LHS, RHS, Q.DL).getValueOr(false))
Philip Reamesdbbd7792015-10-29 03:19:10 +00002151 return getTrue(ITy);
2152 break;
Chad Rosierb7dfbb42016-04-19 17:19:14 +00002153 }
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002154 case ICmpInst::ICMP_SLT:
2155 // X <s 0 -> X
2156 if (match(RHS, m_Zero()))
2157 return LHS;
2158 break;
2159 case ICmpInst::ICMP_SLE:
2160 // X <=s -1 -> X
2161 if (match(RHS, m_One()))
2162 return LHS;
2163 break;
Chad Rosierb7dfbb42016-04-19 17:19:14 +00002164 case ICmpInst::ICMP_ULE: {
Chad Rosier41dd31f2016-04-20 19:15:26 +00002165 if (isImpliedCondition(LHS, RHS, Q.DL).getValueOr(false))
Philip Reames13f023c2015-09-28 17:14:24 +00002166 return getTrue(ITy);
2167 break;
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002168 }
Chad Rosierb7dfbb42016-04-19 17:19:14 +00002169 }
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002170 }
2171
Duncan Sandsd3951082011-01-25 09:38:29 +00002172 // If we are comparing with zero then try hard since this is a common case.
2173 if (match(RHS, m_Zero())) {
2174 bool LHSKnownNonNegative, LHSKnownNegative;
2175 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00002176 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sandsd3951082011-01-25 09:38:29 +00002177 case ICmpInst::ICMP_ULT:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002178 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002179 case ICmpInst::ICMP_UGE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002180 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002181 case ICmpInst::ICMP_EQ:
2182 case ICmpInst::ICMP_ULE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002183 if (isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002184 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002185 break;
2186 case ICmpInst::ICMP_NE:
2187 case ICmpInst::ICMP_UGT:
Chandler Carruth66b31302015-01-04 12:03:27 +00002188 if (isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002189 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002190 break;
2191 case ICmpInst::ICMP_SLT:
Chandler Carruth66b31302015-01-04 12:03:27 +00002192 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC,
2193 Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002194 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002195 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002196 if (LHSKnownNonNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002197 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002198 break;
2199 case ICmpInst::ICMP_SLE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002200 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC,
2201 Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002202 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002203 return getTrue(ITy);
Chandler Carruth66b31302015-01-04 12:03:27 +00002204 if (LHSKnownNonNegative &&
2205 isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002206 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002207 break;
2208 case ICmpInst::ICMP_SGE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002209 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC,
2210 Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002211 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002212 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002213 if (LHSKnownNonNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002214 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002215 break;
2216 case ICmpInst::ICMP_SGT:
Chandler Carruth66b31302015-01-04 12:03:27 +00002217 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC,
2218 Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002219 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002220 return getFalse(ITy);
Chandler Carruth66b31302015-01-04 12:03:27 +00002221 if (LHSKnownNonNegative &&
2222 isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002223 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002224 break;
2225 }
2226 }
2227
2228 // See if we are doing a comparison with a constant integer.
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002229 if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002230 // Rule out tautological comparisons (eg., ult 0 or uge 0).
2231 ConstantRange RHS_CR = ICmpInst::makeConstantRange(Pred, CI->getValue());
2232 if (RHS_CR.isEmptySet())
2233 return ConstantInt::getFalse(CI->getContext());
2234 if (RHS_CR.isFullSet())
2235 return ConstantInt::getTrue(CI->getContext());
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002236
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002237 // Many binary operators with constant RHS have easy to compute constant
2238 // range. Use them to check whether the comparison is a tautology.
David Majnemer78910fc2014-05-16 17:14:03 +00002239 unsigned Width = CI->getBitWidth();
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002240 APInt Lower = APInt(Width, 0);
2241 APInt Upper = APInt(Width, 0);
2242 ConstantInt *CI2;
2243 if (match(LHS, m_URem(m_Value(), m_ConstantInt(CI2)))) {
2244 // 'urem x, CI2' produces [0, CI2).
2245 Upper = CI2->getValue();
2246 } else if (match(LHS, m_SRem(m_Value(), m_ConstantInt(CI2)))) {
2247 // 'srem x, CI2' produces (-|CI2|, |CI2|).
2248 Upper = CI2->getValue().abs();
2249 Lower = (-Upper) + 1;
Duncan Sands92af0a82011-10-28 18:17:44 +00002250 } else if (match(LHS, m_UDiv(m_ConstantInt(CI2), m_Value()))) {
2251 // 'udiv CI2, x' produces [0, CI2].
Eli Friedman0bae8b22011-11-08 21:08:02 +00002252 Upper = CI2->getValue() + 1;
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002253 } else if (match(LHS, m_UDiv(m_Value(), m_ConstantInt(CI2)))) {
2254 // 'udiv x, CI2' produces [0, UINT_MAX / CI2].
2255 APInt NegOne = APInt::getAllOnesValue(Width);
2256 if (!CI2->isZero())
2257 Upper = NegOne.udiv(CI2->getValue()) + 1;
David Majnemerea8d5db2014-05-16 16:57:04 +00002258 } else if (match(LHS, m_SDiv(m_ConstantInt(CI2), m_Value()))) {
David Majnemer651ed5e2014-07-04 00:23:39 +00002259 if (CI2->isMinSignedValue()) {
2260 // 'sdiv INT_MIN, x' produces [INT_MIN, INT_MIN / -2].
2261 Lower = CI2->getValue();
2262 Upper = Lower.lshr(1) + 1;
2263 } else {
2264 // 'sdiv CI2, x' produces [-|CI2|, |CI2|].
2265 Upper = CI2->getValue().abs() + 1;
2266 Lower = (-Upper) + 1;
2267 }
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002268 } else if (match(LHS, m_SDiv(m_Value(), m_ConstantInt(CI2)))) {
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002269 APInt IntMin = APInt::getSignedMinValue(Width);
2270 APInt IntMax = APInt::getSignedMaxValue(Width);
David Majnemeraf9180f2014-07-14 20:38:45 +00002271 APInt Val = CI2->getValue();
2272 if (Val.isAllOnesValue()) {
2273 // 'sdiv x, -1' produces [INT_MIN + 1, INT_MAX]
2274 // where CI2 != -1 and CI2 != 0 and CI2 != 1
2275 Lower = IntMin + 1;
2276 Upper = IntMax + 1;
2277 } else if (Val.countLeadingZeros() < Width - 1) {
2278 // 'sdiv x, CI2' produces [INT_MIN / CI2, INT_MAX / CI2]
2279 // where CI2 != -1 and CI2 != 0 and CI2 != 1
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002280 Lower = IntMin.sdiv(Val);
David Majnemeraf9180f2014-07-14 20:38:45 +00002281 Upper = IntMax.sdiv(Val);
2282 if (Lower.sgt(Upper))
2283 std::swap(Lower, Upper);
2284 Upper = Upper + 1;
David Majnemer5ea4fc02014-07-14 19:49:57 +00002285 assert(Upper != Lower && "Upper part of range has wrapped!");
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002286 }
David Majnemerd6d16712014-08-27 18:03:46 +00002287 } else if (match(LHS, m_NUWShl(m_ConstantInt(CI2), m_Value()))) {
2288 // 'shl nuw CI2, x' produces [CI2, CI2 << CLZ(CI2)]
2289 Lower = CI2->getValue();
2290 Upper = Lower.shl(Lower.countLeadingZeros()) + 1;
2291 } else if (match(LHS, m_NSWShl(m_ConstantInt(CI2), m_Value()))) {
2292 if (CI2->isNegative()) {
2293 // 'shl nsw CI2, x' produces [CI2 << CLO(CI2)-1, CI2]
2294 unsigned ShiftAmount = CI2->getValue().countLeadingOnes() - 1;
2295 Lower = CI2->getValue().shl(ShiftAmount);
2296 Upper = CI2->getValue() + 1;
2297 } else {
2298 // 'shl nsw CI2, x' produces [CI2, CI2 << CLZ(CI2)-1]
2299 unsigned ShiftAmount = CI2->getValue().countLeadingZeros() - 1;
2300 Lower = CI2->getValue();
2301 Upper = CI2->getValue().shl(ShiftAmount) + 1;
2302 }
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002303 } else if (match(LHS, m_LShr(m_Value(), m_ConstantInt(CI2)))) {
2304 // 'lshr x, CI2' produces [0, UINT_MAX >> CI2].
2305 APInt NegOne = APInt::getAllOnesValue(Width);
2306 if (CI2->getValue().ult(Width))
2307 Upper = NegOne.lshr(CI2->getValue()) + 1;
David Majnemer78910fc2014-05-16 17:14:03 +00002308 } else if (match(LHS, m_LShr(m_ConstantInt(CI2), m_Value()))) {
2309 // 'lshr CI2, x' produces [CI2 >> (Width-1), CI2].
2310 unsigned ShiftAmount = Width - 1;
2311 if (!CI2->isZero() && cast<BinaryOperator>(LHS)->isExact())
2312 ShiftAmount = CI2->getValue().countTrailingZeros();
2313 Lower = CI2->getValue().lshr(ShiftAmount);
2314 Upper = CI2->getValue() + 1;
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002315 } else if (match(LHS, m_AShr(m_Value(), m_ConstantInt(CI2)))) {
2316 // 'ashr x, CI2' produces [INT_MIN >> CI2, INT_MAX >> CI2].
2317 APInt IntMin = APInt::getSignedMinValue(Width);
2318 APInt IntMax = APInt::getSignedMaxValue(Width);
2319 if (CI2->getValue().ult(Width)) {
2320 Lower = IntMin.ashr(CI2->getValue());
2321 Upper = IntMax.ashr(CI2->getValue()) + 1;
2322 }
David Majnemer78910fc2014-05-16 17:14:03 +00002323 } else if (match(LHS, m_AShr(m_ConstantInt(CI2), m_Value()))) {
2324 unsigned ShiftAmount = Width - 1;
2325 if (!CI2->isZero() && cast<BinaryOperator>(LHS)->isExact())
2326 ShiftAmount = CI2->getValue().countTrailingZeros();
2327 if (CI2->isNegative()) {
2328 // 'ashr CI2, x' produces [CI2, CI2 >> (Width-1)]
2329 Lower = CI2->getValue();
2330 Upper = CI2->getValue().ashr(ShiftAmount) + 1;
2331 } else {
2332 // 'ashr CI2, x' produces [CI2 >> (Width-1), CI2]
2333 Lower = CI2->getValue().ashr(ShiftAmount);
2334 Upper = CI2->getValue() + 1;
2335 }
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002336 } else if (match(LHS, m_Or(m_Value(), m_ConstantInt(CI2)))) {
2337 // 'or x, CI2' produces [CI2, UINT_MAX].
2338 Lower = CI2->getValue();
2339 } else if (match(LHS, m_And(m_Value(), m_ConstantInt(CI2)))) {
2340 // 'and x, CI2' produces [0, CI2].
2341 Upper = CI2->getValue() + 1;
David Majnemer2df38cd2015-08-20 23:01:41 +00002342 } else if (match(LHS, m_NUWAdd(m_Value(), m_ConstantInt(CI2)))) {
2343 // 'add nuw x, CI2' produces [CI2, UINT_MAX].
2344 Lower = CI2->getValue();
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002345 }
Chen Li5cd6dee2015-09-23 17:58:44 +00002346
2347 ConstantRange LHS_CR = Lower != Upper ? ConstantRange(Lower, Upper)
2348 : ConstantRange(Width, true);
2349
2350 if (auto *I = dyn_cast<Instruction>(LHS))
2351 if (auto *Ranges = I->getMetadata(LLVMContext::MD_range))
Sanjoy Dasa7e13782015-10-24 05:37:35 +00002352 LHS_CR = LHS_CR.intersectWith(getConstantRangeFromMetadata(*Ranges));
Chen Li5cd6dee2015-09-23 17:58:44 +00002353
2354 if (!LHS_CR.isFullSet()) {
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002355 if (RHS_CR.contains(LHS_CR))
2356 return ConstantInt::getTrue(RHS->getContext());
2357 if (RHS_CR.inverse().contains(LHS_CR))
2358 return ConstantInt::getFalse(RHS->getContext());
2359 }
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002360 }
2361
Chen Li7452d952015-09-26 03:26:47 +00002362 // If both operands have range metadata, use the metadata
2363 // to simplify the comparison.
2364 if (isa<Instruction>(RHS) && isa<Instruction>(LHS)) {
2365 auto RHS_Instr = dyn_cast<Instruction>(RHS);
2366 auto LHS_Instr = dyn_cast<Instruction>(LHS);
2367
2368 if (RHS_Instr->getMetadata(LLVMContext::MD_range) &&
2369 LHS_Instr->getMetadata(LLVMContext::MD_range)) {
Sanjoy Dasa7e13782015-10-24 05:37:35 +00002370 auto RHS_CR = getConstantRangeFromMetadata(
2371 *RHS_Instr->getMetadata(LLVMContext::MD_range));
2372 auto LHS_CR = getConstantRangeFromMetadata(
2373 *LHS_Instr->getMetadata(LLVMContext::MD_range));
Chen Li7452d952015-09-26 03:26:47 +00002374
2375 auto Satisfied_CR = ConstantRange::makeSatisfyingICmpRegion(Pred, RHS_CR);
2376 if (Satisfied_CR.contains(LHS_CR))
2377 return ConstantInt::getTrue(RHS->getContext());
2378
2379 auto InversedSatisfied_CR = ConstantRange::makeSatisfyingICmpRegion(
2380 CmpInst::getInversePredicate(Pred), RHS_CR);
2381 if (InversedSatisfied_CR.contains(LHS_CR))
2382 return ConstantInt::getFalse(RHS->getContext());
2383 }
2384 }
2385
Duncan Sands8fb2c382011-01-20 13:21:55 +00002386 // Compare of cast, for example (zext X) != 0 -> X != 0
2387 if (isa<CastInst>(LHS) && (isa<Constant>(RHS) || isa<CastInst>(RHS))) {
2388 Instruction *LI = cast<CastInst>(LHS);
2389 Value *SrcOp = LI->getOperand(0);
Chris Lattner229907c2011-07-18 04:54:35 +00002390 Type *SrcTy = SrcOp->getType();
2391 Type *DstTy = LI->getType();
Duncan Sands8fb2c382011-01-20 13:21:55 +00002392
2393 // Turn icmp (ptrtoint x), (ptrtoint/constant) into a compare of the input
2394 // if the integer type is the same size as the pointer type.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002395 if (MaxRecurse && isa<PtrToIntInst>(LI) &&
2396 Q.DL.getTypeSizeInBits(SrcTy) == DstTy->getPrimitiveSizeInBits()) {
Duncan Sands8fb2c382011-01-20 13:21:55 +00002397 if (Constant *RHSC = dyn_cast<Constant>(RHS)) {
2398 // Transfer the cast to the constant.
2399 if (Value *V = SimplifyICmpInst(Pred, SrcOp,
2400 ConstantExpr::getIntToPtr(RHSC, SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002401 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002402 return V;
2403 } else if (PtrToIntInst *RI = dyn_cast<PtrToIntInst>(RHS)) {
2404 if (RI->getOperand(0)->getType() == SrcTy)
2405 // Compare without the cast.
2406 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002407 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002408 return V;
2409 }
2410 }
2411
2412 if (isa<ZExtInst>(LHS)) {
2413 // Turn icmp (zext X), (zext Y) into a compare of X and Y if they have the
2414 // same type.
2415 if (ZExtInst *RI = dyn_cast<ZExtInst>(RHS)) {
2416 if (MaxRecurse && SrcTy == RI->getOperand(0)->getType())
2417 // Compare X and Y. Note that signed predicates become unsigned.
2418 if (Value *V = SimplifyICmpInst(ICmpInst::getUnsignedPredicate(Pred),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002419 SrcOp, RI->getOperand(0), Q,
Duncan Sands8fb2c382011-01-20 13:21:55 +00002420 MaxRecurse-1))
2421 return V;
2422 }
2423 // Turn icmp (zext X), Cst into a compare of X and Cst if Cst is extended
2424 // too. If not, then try to deduce the result of the comparison.
2425 else if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
2426 // Compute the constant that would happen if we truncated to SrcTy then
2427 // reextended to DstTy.
2428 Constant *Trunc = ConstantExpr::getTrunc(CI, SrcTy);
2429 Constant *RExt = ConstantExpr::getCast(CastInst::ZExt, Trunc, DstTy);
2430
2431 // If the re-extended constant didn't change then this is effectively
2432 // also a case of comparing two zero-extended values.
2433 if (RExt == CI && MaxRecurse)
2434 if (Value *V = SimplifyICmpInst(ICmpInst::getUnsignedPredicate(Pred),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002435 SrcOp, Trunc, Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002436 return V;
2437
2438 // Otherwise the upper bits of LHS are zero while RHS has a non-zero bit
2439 // there. Use this to work out the result of the comparison.
2440 if (RExt != CI) {
2441 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00002442 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sands8fb2c382011-01-20 13:21:55 +00002443 // LHS <u RHS.
2444 case ICmpInst::ICMP_EQ:
2445 case ICmpInst::ICMP_UGT:
2446 case ICmpInst::ICMP_UGE:
2447 return ConstantInt::getFalse(CI->getContext());
2448
2449 case ICmpInst::ICMP_NE:
2450 case ICmpInst::ICMP_ULT:
2451 case ICmpInst::ICMP_ULE:
2452 return ConstantInt::getTrue(CI->getContext());
2453
2454 // LHS is non-negative. If RHS is negative then LHS >s LHS. If RHS
2455 // is non-negative then LHS <s RHS.
2456 case ICmpInst::ICMP_SGT:
2457 case ICmpInst::ICMP_SGE:
2458 return CI->getValue().isNegative() ?
2459 ConstantInt::getTrue(CI->getContext()) :
2460 ConstantInt::getFalse(CI->getContext());
2461
2462 case ICmpInst::ICMP_SLT:
2463 case ICmpInst::ICMP_SLE:
2464 return CI->getValue().isNegative() ?
2465 ConstantInt::getFalse(CI->getContext()) :
2466 ConstantInt::getTrue(CI->getContext());
2467 }
2468 }
2469 }
2470 }
2471
2472 if (isa<SExtInst>(LHS)) {
2473 // Turn icmp (sext X), (sext Y) into a compare of X and Y if they have the
2474 // same type.
2475 if (SExtInst *RI = dyn_cast<SExtInst>(RHS)) {
2476 if (MaxRecurse && SrcTy == RI->getOperand(0)->getType())
2477 // Compare X and Y. Note that the predicate does not change.
2478 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002479 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002480 return V;
2481 }
2482 // Turn icmp (sext X), Cst into a compare of X and Cst if Cst is extended
2483 // too. If not, then try to deduce the result of the comparison.
2484 else if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
2485 // Compute the constant that would happen if we truncated to SrcTy then
2486 // reextended to DstTy.
2487 Constant *Trunc = ConstantExpr::getTrunc(CI, SrcTy);
2488 Constant *RExt = ConstantExpr::getCast(CastInst::SExt, Trunc, DstTy);
2489
2490 // If the re-extended constant didn't change then this is effectively
2491 // also a case of comparing two sign-extended values.
2492 if (RExt == CI && MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002493 if (Value *V = SimplifyICmpInst(Pred, SrcOp, Trunc, Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002494 return V;
2495
2496 // Otherwise the upper bits of LHS are all equal, while RHS has varying
2497 // bits there. Use this to work out the result of the comparison.
2498 if (RExt != CI) {
2499 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00002500 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sands8fb2c382011-01-20 13:21:55 +00002501 case ICmpInst::ICMP_EQ:
2502 return ConstantInt::getFalse(CI->getContext());
2503 case ICmpInst::ICMP_NE:
2504 return ConstantInt::getTrue(CI->getContext());
2505
2506 // If RHS is non-negative then LHS <s RHS. If RHS is negative then
2507 // LHS >s RHS.
2508 case ICmpInst::ICMP_SGT:
2509 case ICmpInst::ICMP_SGE:
2510 return CI->getValue().isNegative() ?
2511 ConstantInt::getTrue(CI->getContext()) :
2512 ConstantInt::getFalse(CI->getContext());
2513 case ICmpInst::ICMP_SLT:
2514 case ICmpInst::ICMP_SLE:
2515 return CI->getValue().isNegative() ?
2516 ConstantInt::getFalse(CI->getContext()) :
2517 ConstantInt::getTrue(CI->getContext());
2518
2519 // If LHS is non-negative then LHS <u RHS. If LHS is negative then
2520 // LHS >u RHS.
2521 case ICmpInst::ICMP_UGT:
2522 case ICmpInst::ICMP_UGE:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002523 // Comparison is true iff the LHS <s 0.
Duncan Sands8fb2c382011-01-20 13:21:55 +00002524 if (MaxRecurse)
2525 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SLT, SrcOp,
2526 Constant::getNullValue(SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002527 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002528 return V;
2529 break;
2530 case ICmpInst::ICMP_ULT:
2531 case ICmpInst::ICMP_ULE:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002532 // Comparison is true iff the LHS >=s 0.
Duncan Sands8fb2c382011-01-20 13:21:55 +00002533 if (MaxRecurse)
2534 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SGE, SrcOp,
2535 Constant::getNullValue(SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002536 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002537 return V;
2538 break;
2539 }
2540 }
2541 }
2542 }
2543 }
2544
James Molloy1d88d6f2015-10-22 13:18:42 +00002545 // icmp eq|ne X, Y -> false|true if X != Y
2546 if ((Pred == ICmpInst::ICMP_EQ || Pred == ICmpInst::ICMP_NE) &&
2547 isKnownNonEqual(LHS, RHS, Q.DL, Q.AC, Q.CxtI, Q.DT)) {
2548 LLVMContext &Ctx = LHS->getType()->getContext();
2549 return Pred == ICmpInst::ICMP_NE ?
2550 ConstantInt::getTrue(Ctx) : ConstantInt::getFalse(Ctx);
2551 }
Junmo Park53470fc2016-04-05 21:14:31 +00002552
Duncan Sandsd114ab32011-02-13 17:15:40 +00002553 // Special logic for binary operators.
2554 BinaryOperator *LBO = dyn_cast<BinaryOperator>(LHS);
2555 BinaryOperator *RBO = dyn_cast<BinaryOperator>(RHS);
2556 if (MaxRecurse && (LBO || RBO)) {
Duncan Sandsd114ab32011-02-13 17:15:40 +00002557 // Analyze the case when either LHS or RHS is an add instruction.
Craig Topper9f008862014-04-15 04:59:12 +00002558 Value *A = nullptr, *B = nullptr, *C = nullptr, *D = nullptr;
Duncan Sandsd114ab32011-02-13 17:15:40 +00002559 // LHS = A + B (or A and B are null); RHS = C + D (or C and D are null).
2560 bool NoLHSWrapProblem = false, NoRHSWrapProblem = false;
2561 if (LBO && LBO->getOpcode() == Instruction::Add) {
2562 A = LBO->getOperand(0); B = LBO->getOperand(1);
2563 NoLHSWrapProblem = ICmpInst::isEquality(Pred) ||
2564 (CmpInst::isUnsigned(Pred) && LBO->hasNoUnsignedWrap()) ||
2565 (CmpInst::isSigned(Pred) && LBO->hasNoSignedWrap());
2566 }
2567 if (RBO && RBO->getOpcode() == Instruction::Add) {
2568 C = RBO->getOperand(0); D = RBO->getOperand(1);
2569 NoRHSWrapProblem = ICmpInst::isEquality(Pred) ||
2570 (CmpInst::isUnsigned(Pred) && RBO->hasNoUnsignedWrap()) ||
2571 (CmpInst::isSigned(Pred) && RBO->hasNoSignedWrap());
2572 }
2573
2574 // icmp (X+Y), X -> icmp Y, 0 for equalities or if there is no overflow.
2575 if ((A == RHS || B == RHS) && NoLHSWrapProblem)
2576 if (Value *V = SimplifyICmpInst(Pred, A == RHS ? B : A,
2577 Constant::getNullValue(RHS->getType()),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002578 Q, MaxRecurse-1))
Duncan Sandsd114ab32011-02-13 17:15:40 +00002579 return V;
2580
2581 // icmp X, (X+Y) -> icmp 0, Y for equalities or if there is no overflow.
2582 if ((C == LHS || D == LHS) && NoRHSWrapProblem)
2583 if (Value *V = SimplifyICmpInst(Pred,
2584 Constant::getNullValue(LHS->getType()),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002585 C == LHS ? D : C, Q, MaxRecurse-1))
Duncan Sandsd114ab32011-02-13 17:15:40 +00002586 return V;
2587
2588 // icmp (X+Y), (X+Z) -> icmp Y,Z for equalities or if there is no overflow.
2589 if (A && C && (A == C || A == D || B == C || B == D) &&
2590 NoLHSWrapProblem && NoRHSWrapProblem) {
2591 // Determine Y and Z in the form icmp (X+Y), (X+Z).
Duncan Sandsc41076c2012-11-16 19:41:26 +00002592 Value *Y, *Z;
2593 if (A == C) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002594 // C + B == C + D -> B == D
Duncan Sandsc41076c2012-11-16 19:41:26 +00002595 Y = B;
2596 Z = D;
2597 } else if (A == D) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002598 // D + B == C + D -> B == C
Duncan Sandsc41076c2012-11-16 19:41:26 +00002599 Y = B;
2600 Z = C;
2601 } else if (B == C) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002602 // A + C == C + D -> A == D
Duncan Sandsc41076c2012-11-16 19:41:26 +00002603 Y = A;
2604 Z = D;
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002605 } else {
2606 assert(B == D);
2607 // A + D == C + D -> A == C
Duncan Sandsc41076c2012-11-16 19:41:26 +00002608 Y = A;
2609 Z = C;
2610 }
Duncan Sandsb8cee002012-03-13 11:42:19 +00002611 if (Value *V = SimplifyICmpInst(Pred, Y, Z, Q, MaxRecurse-1))
Duncan Sandsd114ab32011-02-13 17:15:40 +00002612 return V;
2613 }
2614 }
2615
Nick Lewycky762f8a82016-04-21 00:53:14 +00002616 {
2617 Value *Y = nullptr;
2618 // icmp pred (or X, Y), X
2619 if (LBO && match(LBO, m_c_Or(m_Value(Y), m_Specific(RHS)))) {
2620 if (Pred == ICmpInst::ICMP_ULT)
2621 return getFalse(ITy);
2622 if (Pred == ICmpInst::ICMP_UGE)
2623 return getTrue(ITy);
2624
2625 if (Pred == ICmpInst::ICMP_SLT || Pred == ICmpInst::ICMP_SGE) {
2626 bool RHSKnownNonNegative, RHSKnownNegative;
2627 bool YKnownNonNegative, YKnownNegative;
2628 ComputeSignBit(RHS, RHSKnownNonNegative, RHSKnownNegative, Q.DL, 0,
2629 Q.AC, Q.CxtI, Q.DT);
2630 ComputeSignBit(Y, YKnownNonNegative, YKnownNegative, Q.DL, 0, Q.AC,
2631 Q.CxtI, Q.DT);
2632 if (RHSKnownNonNegative && YKnownNegative)
2633 return Pred == ICmpInst::ICMP_SLT ? getTrue(ITy) : getFalse(ITy);
2634 if (RHSKnownNegative || YKnownNonNegative)
2635 return Pred == ICmpInst::ICMP_SLT ? getFalse(ITy) : getTrue(ITy);
2636 }
2637 }
2638 // icmp pred X, (or X, Y)
2639 if (RBO && match(RBO, m_c_Or(m_Value(Y), m_Specific(LHS)))) {
2640 if (Pred == ICmpInst::ICMP_ULE)
2641 return getTrue(ITy);
2642 if (Pred == ICmpInst::ICMP_UGT)
2643 return getFalse(ITy);
2644
2645 if (Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_SLE) {
2646 bool LHSKnownNonNegative, LHSKnownNegative;
2647 bool YKnownNonNegative, YKnownNegative;
2648 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0,
2649 Q.AC, Q.CxtI, Q.DT);
2650 ComputeSignBit(Y, YKnownNonNegative, YKnownNegative, Q.DL, 0, Q.AC,
2651 Q.CxtI, Q.DT);
2652 if (LHSKnownNonNegative && YKnownNegative)
2653 return Pred == ICmpInst::ICMP_SGT ? getTrue(ITy) : getFalse(ITy);
2654 if (LHSKnownNegative || YKnownNonNegative)
2655 return Pred == ICmpInst::ICMP_SGT ? getFalse(ITy) : getTrue(ITy);
2656 }
2657 }
David Majnemerbd9ce4e2014-11-25 02:55:48 +00002658 }
2659
2660 // icmp pred (and X, Y), X
2661 if (LBO && match(LBO, m_CombineOr(m_And(m_Value(), m_Specific(RHS)),
2662 m_And(m_Specific(RHS), m_Value())))) {
2663 if (Pred == ICmpInst::ICMP_UGT)
2664 return getFalse(ITy);
2665 if (Pred == ICmpInst::ICMP_ULE)
2666 return getTrue(ITy);
2667 }
2668 // icmp pred X, (and X, Y)
2669 if (RBO && match(RBO, m_CombineOr(m_And(m_Value(), m_Specific(LHS)),
2670 m_And(m_Specific(LHS), m_Value())))) {
2671 if (Pred == ICmpInst::ICMP_UGE)
2672 return getTrue(ITy);
2673 if (Pred == ICmpInst::ICMP_ULT)
2674 return getFalse(ITy);
2675 }
2676
David Majnemer2d6c0232014-05-14 20:16:28 +00002677 // 0 - (zext X) pred C
2678 if (!CmpInst::isUnsigned(Pred) && match(LHS, m_Neg(m_ZExt(m_Value())))) {
2679 if (ConstantInt *RHSC = dyn_cast<ConstantInt>(RHS)) {
2680 if (RHSC->getValue().isStrictlyPositive()) {
2681 if (Pred == ICmpInst::ICMP_SLT)
2682 return ConstantInt::getTrue(RHSC->getContext());
2683 if (Pred == ICmpInst::ICMP_SGE)
2684 return ConstantInt::getFalse(RHSC->getContext());
2685 if (Pred == ICmpInst::ICMP_EQ)
2686 return ConstantInt::getFalse(RHSC->getContext());
2687 if (Pred == ICmpInst::ICMP_NE)
2688 return ConstantInt::getTrue(RHSC->getContext());
2689 }
2690 if (RHSC->getValue().isNonNegative()) {
2691 if (Pred == ICmpInst::ICMP_SLE)
2692 return ConstantInt::getTrue(RHSC->getContext());
2693 if (Pred == ICmpInst::ICMP_SGT)
2694 return ConstantInt::getFalse(RHSC->getContext());
2695 }
2696 }
2697 }
2698
Nick Lewycky35aeea92013-07-12 23:42:57 +00002699 // icmp pred (urem X, Y), Y
Nick Lewycky980104d2011-03-09 06:26:03 +00002700 if (LBO && match(LBO, m_URem(m_Value(), m_Specific(RHS)))) {
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002701 bool KnownNonNegative, KnownNegative;
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002702 switch (Pred) {
2703 default:
2704 break;
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002705 case ICmpInst::ICMP_SGT:
2706 case ICmpInst::ICMP_SGE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002707 ComputeSignBit(RHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC,
2708 Q.CxtI, Q.DT);
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002709 if (!KnownNonNegative)
2710 break;
2711 // fall-through
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002712 case ICmpInst::ICMP_EQ:
2713 case ICmpInst::ICMP_UGT:
2714 case ICmpInst::ICMP_UGE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002715 return getFalse(ITy);
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002716 case ICmpInst::ICMP_SLT:
2717 case ICmpInst::ICMP_SLE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002718 ComputeSignBit(RHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC,
2719 Q.CxtI, Q.DT);
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002720 if (!KnownNonNegative)
2721 break;
2722 // fall-through
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002723 case ICmpInst::ICMP_NE:
2724 case ICmpInst::ICMP_ULT:
2725 case ICmpInst::ICMP_ULE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002726 return getTrue(ITy);
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002727 }
2728 }
Nick Lewycky35aeea92013-07-12 23:42:57 +00002729
2730 // icmp pred X, (urem Y, X)
Nick Lewycky980104d2011-03-09 06:26:03 +00002731 if (RBO && match(RBO, m_URem(m_Value(), m_Specific(LHS)))) {
2732 bool KnownNonNegative, KnownNegative;
2733 switch (Pred) {
2734 default:
2735 break;
2736 case ICmpInst::ICMP_SGT:
2737 case ICmpInst::ICMP_SGE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002738 ComputeSignBit(LHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC,
2739 Q.CxtI, Q.DT);
Nick Lewycky980104d2011-03-09 06:26:03 +00002740 if (!KnownNonNegative)
2741 break;
2742 // fall-through
Nick Lewycky774647d2011-03-09 08:20:06 +00002743 case ICmpInst::ICMP_NE:
Nick Lewycky980104d2011-03-09 06:26:03 +00002744 case ICmpInst::ICMP_UGT:
2745 case ICmpInst::ICMP_UGE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002746 return getTrue(ITy);
Nick Lewycky980104d2011-03-09 06:26:03 +00002747 case ICmpInst::ICMP_SLT:
2748 case ICmpInst::ICMP_SLE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002749 ComputeSignBit(LHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC,
2750 Q.CxtI, Q.DT);
Nick Lewycky980104d2011-03-09 06:26:03 +00002751 if (!KnownNonNegative)
2752 break;
2753 // fall-through
Nick Lewycky774647d2011-03-09 08:20:06 +00002754 case ICmpInst::ICMP_EQ:
Nick Lewycky980104d2011-03-09 06:26:03 +00002755 case ICmpInst::ICMP_ULT:
2756 case ICmpInst::ICMP_ULE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002757 return getFalse(ITy);
Nick Lewycky980104d2011-03-09 06:26:03 +00002758 }
2759 }
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002760
David Majnemer3af5bf32016-01-21 18:55:54 +00002761 // x >> y <=u x
Duncan Sands92af0a82011-10-28 18:17:44 +00002762 // x udiv y <=u x.
David Majnemer3af5bf32016-01-21 18:55:54 +00002763 if (LBO && (match(LBO, m_LShr(m_Specific(RHS), m_Value())) ||
2764 match(LBO, m_UDiv(m_Specific(RHS), m_Value())))) {
2765 // icmp pred (X op Y), X
Duncan Sands92af0a82011-10-28 18:17:44 +00002766 if (Pred == ICmpInst::ICMP_UGT)
2767 return getFalse(ITy);
2768 if (Pred == ICmpInst::ICMP_ULE)
2769 return getTrue(ITy);
2770 }
2771
David Majnemer76d06bc2014-08-28 03:34:28 +00002772 // handle:
2773 // CI2 << X == CI
2774 // CI2 << X != CI
2775 //
2776 // where CI2 is a power of 2 and CI isn't
2777 if (auto *CI = dyn_cast<ConstantInt>(RHS)) {
2778 const APInt *CI2Val, *CIVal = &CI->getValue();
2779 if (LBO && match(LBO, m_Shl(m_APInt(CI2Val), m_Value())) &&
2780 CI2Val->isPowerOf2()) {
2781 if (!CIVal->isPowerOf2()) {
2782 // CI2 << X can equal zero in some circumstances,
2783 // this simplification is unsafe if CI is zero.
2784 //
2785 // We know it is safe if:
2786 // - The shift is nsw, we can't shift out the one bit.
2787 // - The shift is nuw, we can't shift out the one bit.
2788 // - CI2 is one
2789 // - CI isn't zero
2790 if (LBO->hasNoSignedWrap() || LBO->hasNoUnsignedWrap() ||
2791 *CI2Val == 1 || !CI->isZero()) {
2792 if (Pred == ICmpInst::ICMP_EQ)
2793 return ConstantInt::getFalse(RHS->getContext());
2794 if (Pred == ICmpInst::ICMP_NE)
2795 return ConstantInt::getTrue(RHS->getContext());
2796 }
2797 }
2798 if (CIVal->isSignBit() && *CI2Val == 1) {
2799 if (Pred == ICmpInst::ICMP_UGT)
2800 return ConstantInt::getFalse(RHS->getContext());
2801 if (Pred == ICmpInst::ICMP_ULE)
2802 return ConstantInt::getTrue(RHS->getContext());
2803 }
2804 }
2805 }
2806
Nick Lewycky9719a712011-03-05 05:19:11 +00002807 if (MaxRecurse && LBO && RBO && LBO->getOpcode() == RBO->getOpcode() &&
2808 LBO->getOperand(1) == RBO->getOperand(1)) {
2809 switch (LBO->getOpcode()) {
2810 default: break;
2811 case Instruction::UDiv:
2812 case Instruction::LShr:
2813 if (ICmpInst::isSigned(Pred))
2814 break;
2815 // fall-through
2816 case Instruction::SDiv:
2817 case Instruction::AShr:
Eli Friedman8a20e662011-05-05 21:59:18 +00002818 if (!LBO->isExact() || !RBO->isExact())
Nick Lewycky9719a712011-03-05 05:19:11 +00002819 break;
2820 if (Value *V = SimplifyICmpInst(Pred, LBO->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002821 RBO->getOperand(0), Q, MaxRecurse-1))
Nick Lewycky9719a712011-03-05 05:19:11 +00002822 return V;
2823 break;
2824 case Instruction::Shl: {
Duncan Sands020c1942011-08-04 10:02:21 +00002825 bool NUW = LBO->hasNoUnsignedWrap() && RBO->hasNoUnsignedWrap();
Nick Lewycky9719a712011-03-05 05:19:11 +00002826 bool NSW = LBO->hasNoSignedWrap() && RBO->hasNoSignedWrap();
2827 if (!NUW && !NSW)
2828 break;
2829 if (!NSW && ICmpInst::isSigned(Pred))
2830 break;
2831 if (Value *V = SimplifyICmpInst(Pred, LBO->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002832 RBO->getOperand(0), Q, MaxRecurse-1))
Nick Lewycky9719a712011-03-05 05:19:11 +00002833 return V;
2834 break;
2835 }
2836 }
2837 }
2838
Duncan Sands0a9c1242011-05-03 19:53:10 +00002839 // Simplify comparisons involving max/min.
2840 Value *A, *B;
2841 CmpInst::Predicate P = CmpInst::BAD_ICMP_PREDICATE;
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002842 CmpInst::Predicate EqP; // Chosen so that "A == max/min(A,B)" iff "A EqP B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002843
Duncan Sandsa2287852011-05-04 16:05:05 +00002844 // Signed variants on "max(a,b)>=a -> true".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002845 if (match(LHS, m_SMax(m_Value(A), m_Value(B))) && (A == RHS || B == RHS)) {
2846 if (A != RHS) std::swap(A, B); // smax(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002847 EqP = CmpInst::ICMP_SGE; // "A == smax(A, B)" iff "A sge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002848 // We analyze this as smax(A, B) pred A.
2849 P = Pred;
2850 } else if (match(RHS, m_SMax(m_Value(A), m_Value(B))) &&
2851 (A == LHS || B == LHS)) {
2852 if (A != LHS) std::swap(A, B); // A pred smax(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002853 EqP = CmpInst::ICMP_SGE; // "A == smax(A, B)" iff "A sge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002854 // We analyze this as smax(A, B) swapped-pred A.
2855 P = CmpInst::getSwappedPredicate(Pred);
2856 } else if (match(LHS, m_SMin(m_Value(A), m_Value(B))) &&
2857 (A == RHS || B == RHS)) {
2858 if (A != RHS) std::swap(A, B); // smin(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002859 EqP = CmpInst::ICMP_SLE; // "A == smin(A, B)" iff "A sle B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002860 // We analyze this as smax(-A, -B) swapped-pred -A.
2861 // Note that we do not need to actually form -A or -B thanks to EqP.
2862 P = CmpInst::getSwappedPredicate(Pred);
2863 } else if (match(RHS, m_SMin(m_Value(A), m_Value(B))) &&
2864 (A == LHS || B == LHS)) {
2865 if (A != LHS) std::swap(A, B); // A pred smin(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002866 EqP = CmpInst::ICMP_SLE; // "A == smin(A, B)" iff "A sle B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002867 // We analyze this as smax(-A, -B) pred -A.
2868 // Note that we do not need to actually form -A or -B thanks to EqP.
2869 P = Pred;
2870 }
2871 if (P != CmpInst::BAD_ICMP_PREDICATE) {
2872 // Cases correspond to "max(A, B) p A".
2873 switch (P) {
2874 default:
2875 break;
2876 case CmpInst::ICMP_EQ:
2877 case CmpInst::ICMP_SLE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002878 // Equivalent to "A EqP B". This may be the same as the condition tested
2879 // in the max/min; if so, we can just return that.
2880 if (Value *V = ExtractEquivalentCondition(LHS, EqP, A, B))
2881 return V;
2882 if (Value *V = ExtractEquivalentCondition(RHS, EqP, A, B))
2883 return V;
2884 // Otherwise, see if "A EqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002885 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002886 if (Value *V = SimplifyICmpInst(EqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002887 return V;
2888 break;
2889 case CmpInst::ICMP_NE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002890 case CmpInst::ICMP_SGT: {
2891 CmpInst::Predicate InvEqP = CmpInst::getInversePredicate(EqP);
2892 // Equivalent to "A InvEqP B". This may be the same as the condition
2893 // tested in the max/min; if so, we can just return that.
2894 if (Value *V = ExtractEquivalentCondition(LHS, InvEqP, A, B))
2895 return V;
2896 if (Value *V = ExtractEquivalentCondition(RHS, InvEqP, A, B))
2897 return V;
2898 // Otherwise, see if "A InvEqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002899 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002900 if (Value *V = SimplifyICmpInst(InvEqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002901 return V;
2902 break;
Duncan Sandsaf327282011-05-07 16:56:49 +00002903 }
Duncan Sands0a9c1242011-05-03 19:53:10 +00002904 case CmpInst::ICMP_SGE:
2905 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002906 return getTrue(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002907 case CmpInst::ICMP_SLT:
2908 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002909 return getFalse(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002910 }
2911 }
2912
Duncan Sandsa2287852011-05-04 16:05:05 +00002913 // Unsigned variants on "max(a,b)>=a -> true".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002914 P = CmpInst::BAD_ICMP_PREDICATE;
2915 if (match(LHS, m_UMax(m_Value(A), m_Value(B))) && (A == RHS || B == RHS)) {
2916 if (A != RHS) std::swap(A, B); // umax(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002917 EqP = CmpInst::ICMP_UGE; // "A == umax(A, B)" iff "A uge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002918 // We analyze this as umax(A, B) pred A.
2919 P = Pred;
2920 } else if (match(RHS, m_UMax(m_Value(A), m_Value(B))) &&
2921 (A == LHS || B == LHS)) {
2922 if (A != LHS) std::swap(A, B); // A pred umax(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002923 EqP = CmpInst::ICMP_UGE; // "A == umax(A, B)" iff "A uge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002924 // We analyze this as umax(A, B) swapped-pred A.
2925 P = CmpInst::getSwappedPredicate(Pred);
2926 } else if (match(LHS, m_UMin(m_Value(A), m_Value(B))) &&
2927 (A == RHS || B == RHS)) {
2928 if (A != RHS) std::swap(A, B); // umin(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002929 EqP = CmpInst::ICMP_ULE; // "A == umin(A, B)" iff "A ule B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002930 // We analyze this as umax(-A, -B) swapped-pred -A.
2931 // Note that we do not need to actually form -A or -B thanks to EqP.
2932 P = CmpInst::getSwappedPredicate(Pred);
2933 } else if (match(RHS, m_UMin(m_Value(A), m_Value(B))) &&
2934 (A == LHS || B == LHS)) {
2935 if (A != LHS) std::swap(A, B); // A pred umin(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002936 EqP = CmpInst::ICMP_ULE; // "A == umin(A, B)" iff "A ule B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002937 // We analyze this as umax(-A, -B) pred -A.
2938 // Note that we do not need to actually form -A or -B thanks to EqP.
2939 P = Pred;
2940 }
2941 if (P != CmpInst::BAD_ICMP_PREDICATE) {
2942 // Cases correspond to "max(A, B) p A".
2943 switch (P) {
2944 default:
2945 break;
2946 case CmpInst::ICMP_EQ:
2947 case CmpInst::ICMP_ULE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002948 // Equivalent to "A EqP B". This may be the same as the condition tested
2949 // in the max/min; if so, we can just return that.
2950 if (Value *V = ExtractEquivalentCondition(LHS, EqP, A, B))
2951 return V;
2952 if (Value *V = ExtractEquivalentCondition(RHS, EqP, A, B))
2953 return V;
2954 // Otherwise, see if "A EqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002955 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002956 if (Value *V = SimplifyICmpInst(EqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002957 return V;
2958 break;
2959 case CmpInst::ICMP_NE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002960 case CmpInst::ICMP_UGT: {
2961 CmpInst::Predicate InvEqP = CmpInst::getInversePredicate(EqP);
2962 // Equivalent to "A InvEqP B". This may be the same as the condition
2963 // tested in the max/min; if so, we can just return that.
2964 if (Value *V = ExtractEquivalentCondition(LHS, InvEqP, A, B))
2965 return V;
2966 if (Value *V = ExtractEquivalentCondition(RHS, InvEqP, A, B))
2967 return V;
2968 // Otherwise, see if "A InvEqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002969 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002970 if (Value *V = SimplifyICmpInst(InvEqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002971 return V;
2972 break;
Duncan Sandsaf327282011-05-07 16:56:49 +00002973 }
Duncan Sands0a9c1242011-05-03 19:53:10 +00002974 case CmpInst::ICMP_UGE:
2975 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002976 return getTrue(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002977 case CmpInst::ICMP_ULT:
2978 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002979 return getFalse(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002980 }
2981 }
2982
Duncan Sandsa2287852011-05-04 16:05:05 +00002983 // Variants on "max(x,y) >= min(x,z)".
2984 Value *C, *D;
2985 if (match(LHS, m_SMax(m_Value(A), m_Value(B))) &&
2986 match(RHS, m_SMin(m_Value(C), m_Value(D))) &&
2987 (A == C || A == D || B == C || B == D)) {
2988 // max(x, ?) pred min(x, ?).
2989 if (Pred == CmpInst::ICMP_SGE)
2990 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002991 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002992 if (Pred == CmpInst::ICMP_SLT)
2993 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002994 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002995 } else if (match(LHS, m_SMin(m_Value(A), m_Value(B))) &&
2996 match(RHS, m_SMax(m_Value(C), m_Value(D))) &&
2997 (A == C || A == D || B == C || B == D)) {
2998 // min(x, ?) pred max(x, ?).
2999 if (Pred == CmpInst::ICMP_SLE)
3000 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00003001 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00003002 if (Pred == CmpInst::ICMP_SGT)
3003 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00003004 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00003005 } else if (match(LHS, m_UMax(m_Value(A), m_Value(B))) &&
3006 match(RHS, m_UMin(m_Value(C), m_Value(D))) &&
3007 (A == C || A == D || B == C || B == D)) {
3008 // max(x, ?) pred min(x, ?).
3009 if (Pred == CmpInst::ICMP_UGE)
3010 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00003011 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00003012 if (Pred == CmpInst::ICMP_ULT)
3013 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00003014 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00003015 } else if (match(LHS, m_UMin(m_Value(A), m_Value(B))) &&
3016 match(RHS, m_UMax(m_Value(C), m_Value(D))) &&
3017 (A == C || A == D || B == C || B == D)) {
3018 // min(x, ?) pred max(x, ?).
3019 if (Pred == CmpInst::ICMP_ULE)
3020 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00003021 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00003022 if (Pred == CmpInst::ICMP_UGT)
3023 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00003024 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00003025 }
3026
Chandler Carruth8059c842012-03-25 21:28:14 +00003027 // Simplify comparisons of related pointers using a powerful, recursive
3028 // GEP-walk when we have target data available..
Dan Gohman18c77a12013-01-31 02:50:36 +00003029 if (LHS->getType()->isPointerTy())
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003030 if (Constant *C = computePointerICmp(Q.DL, Q.TLI, Pred, LHS, RHS))
Chandler Carruth8059c842012-03-25 21:28:14 +00003031 return C;
3032
Nick Lewycky3db143e2012-02-26 02:09:49 +00003033 if (GetElementPtrInst *GLHS = dyn_cast<GetElementPtrInst>(LHS)) {
3034 if (GEPOperator *GRHS = dyn_cast<GEPOperator>(RHS)) {
3035 if (GLHS->getPointerOperand() == GRHS->getPointerOperand() &&
3036 GLHS->hasAllConstantIndices() && GRHS->hasAllConstantIndices() &&
3037 (ICmpInst::isEquality(Pred) ||
3038 (GLHS->isInBounds() && GRHS->isInBounds() &&
3039 Pred == ICmpInst::getSignedPredicate(Pred)))) {
3040 // The bases are equal and the indices are constant. Build a constant
3041 // expression GEP with the same indices and a null base pointer to see
3042 // what constant folding can make out of it.
3043 Constant *Null = Constant::getNullValue(GLHS->getPointerOperandType());
3044 SmallVector<Value *, 4> IndicesLHS(GLHS->idx_begin(), GLHS->idx_end());
David Blaikie4a2e73b2015-04-02 18:55:32 +00003045 Constant *NewLHS = ConstantExpr::getGetElementPtr(
3046 GLHS->getSourceElementType(), Null, IndicesLHS);
Nick Lewycky3db143e2012-02-26 02:09:49 +00003047
3048 SmallVector<Value *, 4> IndicesRHS(GRHS->idx_begin(), GRHS->idx_end());
David Blaikie4a2e73b2015-04-02 18:55:32 +00003049 Constant *NewRHS = ConstantExpr::getGetElementPtr(
3050 GLHS->getSourceElementType(), Null, IndicesRHS);
Nick Lewycky3db143e2012-02-26 02:09:49 +00003051 return ConstantExpr::getICmp(Pred, NewLHS, NewRHS);
3052 }
3053 }
3054 }
3055
David Majnemer5854e9f2014-11-16 02:20:08 +00003056 // If a bit is known to be zero for A and known to be one for B,
3057 // then A and B cannot be equal.
3058 if (ICmpInst::isEquality(Pred)) {
3059 if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
3060 uint32_t BitWidth = CI->getBitWidth();
3061 APInt LHSKnownZero(BitWidth, 0);
3062 APInt LHSKnownOne(BitWidth, 0);
Chandler Carruth66b31302015-01-04 12:03:27 +00003063 computeKnownBits(LHS, LHSKnownZero, LHSKnownOne, Q.DL, /*Depth=*/0, Q.AC,
David Majnemer5854e9f2014-11-16 02:20:08 +00003064 Q.CxtI, Q.DT);
3065 const APInt &RHSVal = CI->getValue();
3066 if (((LHSKnownZero & RHSVal) != 0) || ((LHSKnownOne & ~RHSVal) != 0))
3067 return Pred == ICmpInst::ICMP_EQ
3068 ? ConstantInt::getFalse(CI->getContext())
3069 : ConstantInt::getTrue(CI->getContext());
3070 }
3071 }
3072
Duncan Sandsf532d312010-11-07 16:12:23 +00003073 // If the comparison is with the result of a select instruction, check whether
3074 // comparing with either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003075 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003076 if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003077 return V;
3078
3079 // If the comparison is with the result of a phi instruction, check whether
3080 // doing the compare with each incoming phi value yields a common result.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003081 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003082 if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsfc5ad3f02010-11-09 17:25:51 +00003083 return V;
Duncan Sandsf532d312010-11-07 16:12:23 +00003084
Craig Topper9f008862014-04-15 04:59:12 +00003085 return nullptr;
Chris Lattner084a1b52009-11-09 22:57:59 +00003086}
3087
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003088Value *llvm::SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003089 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00003090 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003091 const DominatorTree *DT, AssumptionCache *AC,
Chandler Carruth85dbea92015-12-24 09:08:08 +00003092 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003093 return ::SimplifyICmpInst(Predicate, LHS, RHS, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003094 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003095}
3096
Sanjay Patel472cc782016-01-11 22:14:42 +00003097/// Given operands for an FCmpInst, see if we can fold the result.
3098/// If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003099static Value *SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00003100 FastMathFlags FMF, const Query &Q,
3101 unsigned MaxRecurse) {
Chris Lattnerc1f19072009-11-09 23:28:39 +00003102 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate;
3103 assert(CmpInst::isFPPredicate(Pred) && "Not an FP compare!");
3104
Chris Lattnera71e9d62009-11-10 00:55:12 +00003105 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
Chris Lattnerc1f19072009-11-09 23:28:39 +00003106 if (Constant *CRHS = dyn_cast<Constant>(RHS))
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003107 return ConstantFoldCompareInstOperands(Pred, CLHS, CRHS, Q.DL, Q.TLI);
Duncan Sands7e800d62010-11-14 11:23:23 +00003108
Chris Lattnera71e9d62009-11-10 00:55:12 +00003109 // If we have a constant, make sure it is on the RHS.
3110 std::swap(LHS, RHS);
3111 Pred = CmpInst::getSwappedPredicate(Pred);
3112 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003113
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003114 // Fold trivial predicates.
3115 if (Pred == FCmpInst::FCMP_FALSE)
3116 return ConstantInt::get(GetCompareTy(LHS), 0);
3117 if (Pred == FCmpInst::FCMP_TRUE)
3118 return ConstantInt::get(GetCompareTy(LHS), 1);
3119
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00003120 // UNO/ORD predicates can be trivially folded if NaNs are ignored.
3121 if (FMF.noNaNs()) {
3122 if (Pred == FCmpInst::FCMP_UNO)
3123 return ConstantInt::get(GetCompareTy(LHS), 0);
3124 if (Pred == FCmpInst::FCMP_ORD)
3125 return ConstantInt::get(GetCompareTy(LHS), 1);
3126 }
3127
Mehdi Aminieb242a52015-03-09 03:20:25 +00003128 // fcmp pred x, undef and fcmp pred undef, x
3129 // fold to true if unordered, false if ordered
3130 if (isa<UndefValue>(LHS) || isa<UndefValue>(RHS)) {
3131 // Choosing NaN for the undef will always make unordered comparison succeed
3132 // and ordered comparison fail.
3133 return ConstantInt::get(GetCompareTy(LHS), CmpInst::isUnordered(Pred));
3134 }
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003135
3136 // fcmp x,x -> true/false. Not all compares are foldable.
Duncan Sands772749a2011-01-01 20:08:02 +00003137 if (LHS == RHS) {
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003138 if (CmpInst::isTrueWhenEqual(Pred))
3139 return ConstantInt::get(GetCompareTy(LHS), 1);
3140 if (CmpInst::isFalseWhenEqual(Pred))
3141 return ConstantInt::get(GetCompareTy(LHS), 0);
3142 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003143
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003144 // Handle fcmp with constant RHS
David Majnemer3ee5f342016-04-13 06:55:52 +00003145 const ConstantFP *CFP = nullptr;
3146 if (const auto *RHSC = dyn_cast<Constant>(RHS)) {
3147 if (RHS->getType()->isVectorTy())
3148 CFP = dyn_cast_or_null<ConstantFP>(RHSC->getSplatValue());
3149 else
3150 CFP = dyn_cast<ConstantFP>(RHSC);
3151 }
3152 if (CFP) {
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003153 // If the constant is a nan, see if we can fold the comparison based on it.
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003154 if (CFP->getValueAPF().isNaN()) {
3155 if (FCmpInst::isOrdered(Pred)) // True "if ordered and foo"
3156 return ConstantInt::getFalse(CFP->getContext());
3157 assert(FCmpInst::isUnordered(Pred) &&
3158 "Comparison must be either ordered or unordered!");
3159 // True if unordered.
David Majnemer3ee5f342016-04-13 06:55:52 +00003160 return ConstantInt::get(GetCompareTy(LHS), 1);
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003161 }
3162 // Check whether the constant is an infinity.
3163 if (CFP->getValueAPF().isInfinity()) {
3164 if (CFP->getValueAPF().isNegative()) {
Elena Demikhovsky45f04482015-01-28 08:03:58 +00003165 switch (Pred) {
Elena Demikhovsky45f04482015-01-28 08:03:58 +00003166 case FCmpInst::FCMP_OLT:
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003167 // No value is ordered and less than negative infinity.
David Majnemer3ee5f342016-04-13 06:55:52 +00003168 return ConstantInt::get(GetCompareTy(LHS), 0);
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003169 case FCmpInst::FCMP_UGE:
3170 // All values are unordered with or at least negative infinity.
David Majnemer3ee5f342016-04-13 06:55:52 +00003171 return ConstantInt::get(GetCompareTy(LHS), 1);
Elena Demikhovsky45f04482015-01-28 08:03:58 +00003172 default:
3173 break;
3174 }
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003175 } else {
3176 switch (Pred) {
3177 case FCmpInst::FCMP_OGT:
3178 // No value is ordered and greater than infinity.
David Majnemer3ee5f342016-04-13 06:55:52 +00003179 return ConstantInt::get(GetCompareTy(LHS), 0);
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003180 case FCmpInst::FCMP_ULE:
3181 // All values are unordered with and at most infinity.
David Majnemer3ee5f342016-04-13 06:55:52 +00003182 return ConstantInt::get(GetCompareTy(LHS), 1);
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003183 default:
3184 break;
3185 }
3186 }
3187 }
3188 if (CFP->getValueAPF().isZero()) {
3189 switch (Pred) {
3190 case FCmpInst::FCMP_UGE:
David Majnemer3ee5f342016-04-13 06:55:52 +00003191 if (CannotBeOrderedLessThanZero(LHS, Q.TLI))
3192 return ConstantInt::get(GetCompareTy(LHS), 1);
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003193 break;
3194 case FCmpInst::FCMP_OLT:
3195 // X < 0
David Majnemer3ee5f342016-04-13 06:55:52 +00003196 if (CannotBeOrderedLessThanZero(LHS, Q.TLI))
3197 return ConstantInt::get(GetCompareTy(LHS), 0);
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003198 break;
3199 default:
3200 break;
3201 }
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003202 }
3203 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003204
Duncan Sandsa620bd12010-11-07 16:46:25 +00003205 // If the comparison is with the result of a select instruction, check whether
3206 // comparing with either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003207 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003208 if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003209 return V;
3210
3211 // If the comparison is with the result of a phi instruction, check whether
3212 // doing the compare with each incoming phi value yields a common result.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003213 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003214 if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsfc5ad3f02010-11-09 17:25:51 +00003215 return V;
Duncan Sandsa620bd12010-11-07 16:46:25 +00003216
Craig Topper9f008862014-04-15 04:59:12 +00003217 return nullptr;
Chris Lattnerc1f19072009-11-09 23:28:39 +00003218}
3219
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003220Value *llvm::SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00003221 FastMathFlags FMF, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00003222 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003223 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003224 const Instruction *CxtI) {
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00003225 return ::SimplifyFCmpInst(Predicate, LHS, RHS, FMF,
3226 Query(DL, TLI, DT, AC, CxtI), RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003227}
3228
Sanjay Patel472cc782016-01-11 22:14:42 +00003229/// See if V simplifies when its operand Op is replaced with RepOp.
David Majnemer3f0fb982015-06-06 22:40:21 +00003230static const Value *SimplifyWithOpReplaced(Value *V, Value *Op, Value *RepOp,
3231 const Query &Q,
3232 unsigned MaxRecurse) {
3233 // Trivial replacement.
3234 if (V == Op)
3235 return RepOp;
3236
3237 auto *I = dyn_cast<Instruction>(V);
3238 if (!I)
3239 return nullptr;
3240
3241 // If this is a binary operator, try to simplify it with the replaced op.
3242 if (auto *B = dyn_cast<BinaryOperator>(I)) {
3243 // Consider:
3244 // %cmp = icmp eq i32 %x, 2147483647
3245 // %add = add nsw i32 %x, 1
3246 // %sel = select i1 %cmp, i32 -2147483648, i32 %add
3247 //
3248 // We can't replace %sel with %add unless we strip away the flags.
3249 if (isa<OverflowingBinaryOperator>(B))
3250 if (B->hasNoSignedWrap() || B->hasNoUnsignedWrap())
3251 return nullptr;
3252 if (isa<PossiblyExactOperator>(B))
3253 if (B->isExact())
3254 return nullptr;
3255
3256 if (MaxRecurse) {
3257 if (B->getOperand(0) == Op)
3258 return SimplifyBinOp(B->getOpcode(), RepOp, B->getOperand(1), Q,
3259 MaxRecurse - 1);
3260 if (B->getOperand(1) == Op)
3261 return SimplifyBinOp(B->getOpcode(), B->getOperand(0), RepOp, Q,
3262 MaxRecurse - 1);
3263 }
3264 }
3265
3266 // Same for CmpInsts.
3267 if (CmpInst *C = dyn_cast<CmpInst>(I)) {
3268 if (MaxRecurse) {
3269 if (C->getOperand(0) == Op)
3270 return SimplifyCmpInst(C->getPredicate(), RepOp, C->getOperand(1), Q,
3271 MaxRecurse - 1);
3272 if (C->getOperand(1) == Op)
3273 return SimplifyCmpInst(C->getPredicate(), C->getOperand(0), RepOp, Q,
3274 MaxRecurse - 1);
3275 }
3276 }
3277
3278 // TODO: We could hand off more cases to instsimplify here.
3279
3280 // If all operands are constant after substituting Op for RepOp then we can
3281 // constant fold the instruction.
3282 if (Constant *CRepOp = dyn_cast<Constant>(RepOp)) {
3283 // Build a list of all constant operands.
3284 SmallVector<Constant *, 8> ConstOps;
3285 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
3286 if (I->getOperand(i) == Op)
3287 ConstOps.push_back(CRepOp);
3288 else if (Constant *COp = dyn_cast<Constant>(I->getOperand(i)))
3289 ConstOps.push_back(COp);
3290 else
3291 break;
3292 }
3293
3294 // All operands were constants, fold it.
3295 if (ConstOps.size() == I->getNumOperands()) {
3296 if (CmpInst *C = dyn_cast<CmpInst>(I))
3297 return ConstantFoldCompareInstOperands(C->getPredicate(), ConstOps[0],
3298 ConstOps[1], Q.DL, Q.TLI);
3299
3300 if (LoadInst *LI = dyn_cast<LoadInst>(I))
3301 if (!LI->isVolatile())
Eduard Burtescu14239212016-01-22 01:17:26 +00003302 return ConstantFoldLoadFromConstPtr(ConstOps[0], LI->getType(), Q.DL);
David Majnemer3f0fb982015-06-06 22:40:21 +00003303
Manuel Jacobe9024592016-01-21 06:33:22 +00003304 return ConstantFoldInstOperands(I, ConstOps, Q.DL, Q.TLI);
David Majnemer3f0fb982015-06-06 22:40:21 +00003305 }
3306 }
3307
3308 return nullptr;
3309}
3310
Sanjay Patel472cc782016-01-11 22:14:42 +00003311/// Given operands for a SelectInst, see if we can fold the result.
3312/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00003313static Value *SimplifySelectInst(Value *CondVal, Value *TrueVal,
3314 Value *FalseVal, const Query &Q,
3315 unsigned MaxRecurse) {
Chris Lattnerc707fa92010-04-20 05:32:14 +00003316 // select true, X, Y -> X
3317 // select false, X, Y -> Y
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00003318 if (Constant *CB = dyn_cast<Constant>(CondVal)) {
3319 if (CB->isAllOnesValue())
3320 return TrueVal;
3321 if (CB->isNullValue())
3322 return FalseVal;
3323 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003324
Chris Lattnerc707fa92010-04-20 05:32:14 +00003325 // select C, X, X -> X
Duncan Sands772749a2011-01-01 20:08:02 +00003326 if (TrueVal == FalseVal)
Chris Lattnerc707fa92010-04-20 05:32:14 +00003327 return TrueVal;
Duncan Sands7e800d62010-11-14 11:23:23 +00003328
Chris Lattnerc707fa92010-04-20 05:32:14 +00003329 if (isa<UndefValue>(CondVal)) { // select undef, X, Y -> X or Y
3330 if (isa<Constant>(TrueVal))
3331 return TrueVal;
3332 return FalseVal;
3333 }
Dan Gohman54664ed2011-07-01 01:03:43 +00003334 if (isa<UndefValue>(TrueVal)) // select C, undef, X -> X
3335 return FalseVal;
3336 if (isa<UndefValue>(FalseVal)) // select C, X, undef -> X
3337 return TrueVal;
Duncan Sands7e800d62010-11-14 11:23:23 +00003338
David Majnemer3f0fb982015-06-06 22:40:21 +00003339 if (const auto *ICI = dyn_cast<ICmpInst>(CondVal)) {
3340 unsigned BitWidth = Q.DL.getTypeSizeInBits(TrueVal->getType());
David Majnemer7bd71442014-12-20 03:29:59 +00003341 ICmpInst::Predicate Pred = ICI->getPredicate();
David Majnemer3f0fb982015-06-06 22:40:21 +00003342 Value *CmpLHS = ICI->getOperand(0);
3343 Value *CmpRHS = ICI->getOperand(1);
David Majnemer147f8582014-12-20 04:45:33 +00003344 APInt MinSignedValue = APInt::getSignBit(BitWidth);
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003345 Value *X;
3346 const APInt *Y;
David Majnemer7bd71442014-12-20 03:29:59 +00003347 bool TrueWhenUnset;
David Majnemer147f8582014-12-20 04:45:33 +00003348 bool IsBitTest = false;
David Majnemer0b6a0b02014-12-20 03:04:38 +00003349 if (ICmpInst::isEquality(Pred) &&
David Majnemer3f0fb982015-06-06 22:40:21 +00003350 match(CmpLHS, m_And(m_Value(X), m_APInt(Y))) &&
3351 match(CmpRHS, m_Zero())) {
David Majnemer7bd71442014-12-20 03:29:59 +00003352 IsBitTest = true;
3353 TrueWhenUnset = Pred == ICmpInst::ICMP_EQ;
David Majnemer3f0fb982015-06-06 22:40:21 +00003354 } else if (Pred == ICmpInst::ICMP_SLT && match(CmpRHS, m_Zero())) {
3355 X = CmpLHS;
David Majnemer7bd71442014-12-20 03:29:59 +00003356 Y = &MinSignedValue;
3357 IsBitTest = true;
3358 TrueWhenUnset = false;
David Majnemer3f0fb982015-06-06 22:40:21 +00003359 } else if (Pred == ICmpInst::ICMP_SGT && match(CmpRHS, m_AllOnes())) {
3360 X = CmpLHS;
David Majnemer7bd71442014-12-20 03:29:59 +00003361 Y = &MinSignedValue;
3362 IsBitTest = true;
3363 TrueWhenUnset = true;
3364 }
3365 if (IsBitTest) {
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003366 const APInt *C;
3367 // (X & Y) == 0 ? X & ~Y : X --> X
3368 // (X & Y) != 0 ? X & ~Y : X --> X & ~Y
3369 if (FalseVal == X && match(TrueVal, m_And(m_Specific(X), m_APInt(C))) &&
3370 *Y == ~*C)
David Majnemer7bd71442014-12-20 03:29:59 +00003371 return TrueWhenUnset ? FalseVal : TrueVal;
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003372 // (X & Y) == 0 ? X : X & ~Y --> X & ~Y
3373 // (X & Y) != 0 ? X : X & ~Y --> X
3374 if (TrueVal == X && match(FalseVal, m_And(m_Specific(X), m_APInt(C))) &&
3375 *Y == ~*C)
David Majnemer7bd71442014-12-20 03:29:59 +00003376 return TrueWhenUnset ? FalseVal : TrueVal;
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003377
3378 if (Y->isPowerOf2()) {
3379 // (X & Y) == 0 ? X | Y : X --> X | Y
3380 // (X & Y) != 0 ? X | Y : X --> X
3381 if (FalseVal == X && match(TrueVal, m_Or(m_Specific(X), m_APInt(C))) &&
3382 *Y == *C)
David Majnemer7bd71442014-12-20 03:29:59 +00003383 return TrueWhenUnset ? TrueVal : FalseVal;
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003384 // (X & Y) == 0 ? X : X | Y --> X
3385 // (X & Y) != 0 ? X : X | Y --> X | Y
3386 if (TrueVal == X && match(FalseVal, m_Or(m_Specific(X), m_APInt(C))) &&
3387 *Y == *C)
David Majnemer7bd71442014-12-20 03:29:59 +00003388 return TrueWhenUnset ? TrueVal : FalseVal;
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003389 }
3390 }
David Majnemer3f0fb982015-06-06 22:40:21 +00003391 if (ICI->hasOneUse()) {
3392 const APInt *C;
3393 if (match(CmpRHS, m_APInt(C))) {
3394 // X < MIN ? T : F --> F
3395 if (Pred == ICmpInst::ICMP_SLT && C->isMinSignedValue())
3396 return FalseVal;
3397 // X < MIN ? T : F --> F
3398 if (Pred == ICmpInst::ICMP_ULT && C->isMinValue())
3399 return FalseVal;
3400 // X > MAX ? T : F --> F
3401 if (Pred == ICmpInst::ICMP_SGT && C->isMaxSignedValue())
3402 return FalseVal;
3403 // X > MAX ? T : F --> F
3404 if (Pred == ICmpInst::ICMP_UGT && C->isMaxValue())
3405 return FalseVal;
3406 }
3407 }
3408
3409 // If we have an equality comparison then we know the value in one of the
3410 // arms of the select. See if substituting this value into the arm and
3411 // simplifying the result yields the same value as the other arm.
3412 if (Pred == ICmpInst::ICMP_EQ) {
3413 if (SimplifyWithOpReplaced(FalseVal, CmpLHS, CmpRHS, Q, MaxRecurse) ==
3414 TrueVal ||
3415 SimplifyWithOpReplaced(FalseVal, CmpRHS, CmpLHS, Q, MaxRecurse) ==
3416 TrueVal)
3417 return FalseVal;
3418 if (SimplifyWithOpReplaced(TrueVal, CmpLHS, CmpRHS, Q, MaxRecurse) ==
3419 FalseVal ||
3420 SimplifyWithOpReplaced(TrueVal, CmpRHS, CmpLHS, Q, MaxRecurse) ==
3421 FalseVal)
3422 return FalseVal;
3423 } else if (Pred == ICmpInst::ICMP_NE) {
3424 if (SimplifyWithOpReplaced(TrueVal, CmpLHS, CmpRHS, Q, MaxRecurse) ==
3425 FalseVal ||
3426 SimplifyWithOpReplaced(TrueVal, CmpRHS, CmpLHS, Q, MaxRecurse) ==
3427 FalseVal)
3428 return TrueVal;
3429 if (SimplifyWithOpReplaced(FalseVal, CmpLHS, CmpRHS, Q, MaxRecurse) ==
3430 TrueVal ||
3431 SimplifyWithOpReplaced(FalseVal, CmpRHS, CmpLHS, Q, MaxRecurse) ==
3432 TrueVal)
3433 return TrueVal;
3434 }
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003435 }
3436
Craig Topper9f008862014-04-15 04:59:12 +00003437 return nullptr;
Chris Lattnerc707fa92010-04-20 05:32:14 +00003438}
3439
Duncan Sandsb8cee002012-03-13 11:42:19 +00003440Value *llvm::SimplifySelectInst(Value *Cond, Value *TrueVal, Value *FalseVal,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003441 const DataLayout &DL,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003442 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003443 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003444 const Instruction *CxtI) {
3445 return ::SimplifySelectInst(Cond, TrueVal, FalseVal,
Chandler Carruth66b31302015-01-04 12:03:27 +00003446 Query(DL, TLI, DT, AC, CxtI), RecursionLimit);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003447}
3448
Sanjay Patel472cc782016-01-11 22:14:42 +00003449/// Given operands for an GetElementPtrInst, see if we can fold the result.
3450/// If not, this returns null.
David Blaikie4a2e73b2015-04-02 18:55:32 +00003451static Value *SimplifyGEPInst(Type *SrcTy, ArrayRef<Value *> Ops,
3452 const Query &Q, unsigned) {
Duncan Sands8a0f4862010-11-22 13:42:49 +00003453 // The type of the GEP pointer operand.
David Blaikie4a2e73b2015-04-02 18:55:32 +00003454 unsigned AS =
3455 cast<PointerType>(Ops[0]->getType()->getScalarType())->getAddressSpace();
Duncan Sands8a0f4862010-11-22 13:42:49 +00003456
Chris Lattner8574aba2009-11-27 00:29:05 +00003457 // getelementptr P -> P.
Jay Foadb992a632011-07-19 15:07:52 +00003458 if (Ops.size() == 1)
Chris Lattner8574aba2009-11-27 00:29:05 +00003459 return Ops[0];
3460
Nico Weber48c82402014-08-27 20:06:19 +00003461 // Compute the (pointer) type returned by the GEP instruction.
David Blaikie4a2e73b2015-04-02 18:55:32 +00003462 Type *LastType = GetElementPtrInst::getIndexedType(SrcTy, Ops.slice(1));
Nico Weber48c82402014-08-27 20:06:19 +00003463 Type *GEPTy = PointerType::get(LastType, AS);
3464 if (VectorType *VT = dyn_cast<VectorType>(Ops[0]->getType()))
3465 GEPTy = VectorType::get(GEPTy, VT->getNumElements());
3466
3467 if (isa<UndefValue>(Ops[0]))
Duncan Sands8a0f4862010-11-22 13:42:49 +00003468 return UndefValue::get(GEPTy);
Chris Lattner8574aba2009-11-27 00:29:05 +00003469
Jay Foadb992a632011-07-19 15:07:52 +00003470 if (Ops.size() == 2) {
Duncan Sandscf4bceb2010-11-21 13:53:09 +00003471 // getelementptr P, 0 -> P.
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00003472 if (match(Ops[1], m_Zero()))
3473 return Ops[0];
Nico Weber48c82402014-08-27 20:06:19 +00003474
David Blaikie4a2e73b2015-04-02 18:55:32 +00003475 Type *Ty = SrcTy;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003476 if (Ty->isSized()) {
Nico Weber48c82402014-08-27 20:06:19 +00003477 Value *P;
3478 uint64_t C;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003479 uint64_t TyAllocSize = Q.DL.getTypeAllocSize(Ty);
Nico Weber48c82402014-08-27 20:06:19 +00003480 // getelementptr P, N -> P if P points to a type of zero size.
3481 if (TyAllocSize == 0)
Duncan Sandscf4bceb2010-11-21 13:53:09 +00003482 return Ops[0];
Nico Weber48c82402014-08-27 20:06:19 +00003483
3484 // The following transforms are only safe if the ptrtoint cast
3485 // doesn't truncate the pointers.
3486 if (Ops[1]->getType()->getScalarSizeInBits() ==
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003487 Q.DL.getPointerSizeInBits(AS)) {
Nico Weber48c82402014-08-27 20:06:19 +00003488 auto PtrToIntOrZero = [GEPTy](Value *P) -> Value * {
3489 if (match(P, m_Zero()))
3490 return Constant::getNullValue(GEPTy);
3491 Value *Temp;
3492 if (match(P, m_PtrToInt(m_Value(Temp))))
David Majnemer11ca2972014-08-27 20:08:34 +00003493 if (Temp->getType() == GEPTy)
3494 return Temp;
Nico Weber48c82402014-08-27 20:06:19 +00003495 return nullptr;
3496 };
3497
3498 // getelementptr V, (sub P, V) -> P if P points to a type of size 1.
3499 if (TyAllocSize == 1 &&
3500 match(Ops[1], m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0])))))
3501 if (Value *R = PtrToIntOrZero(P))
3502 return R;
3503
3504 // getelementptr V, (ashr (sub P, V), C) -> Q
3505 // if P points to a type of size 1 << C.
3506 if (match(Ops[1],
3507 m_AShr(m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0]))),
3508 m_ConstantInt(C))) &&
3509 TyAllocSize == 1ULL << C)
3510 if (Value *R = PtrToIntOrZero(P))
3511 return R;
3512
3513 // getelementptr V, (sdiv (sub P, V), C) -> Q
3514 // if P points to a type of size C.
3515 if (match(Ops[1],
3516 m_SDiv(m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0]))),
3517 m_SpecificInt(TyAllocSize))))
3518 if (Value *R = PtrToIntOrZero(P))
3519 return R;
3520 }
Duncan Sandscf4bceb2010-11-21 13:53:09 +00003521 }
3522 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003523
Chris Lattner8574aba2009-11-27 00:29:05 +00003524 // Check to see if this is constant foldable.
Jay Foadb992a632011-07-19 15:07:52 +00003525 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
Chris Lattner8574aba2009-11-27 00:29:05 +00003526 if (!isa<Constant>(Ops[i]))
Craig Topper9f008862014-04-15 04:59:12 +00003527 return nullptr;
Duncan Sands7e800d62010-11-14 11:23:23 +00003528
David Blaikie4a2e73b2015-04-02 18:55:32 +00003529 return ConstantExpr::getGetElementPtr(SrcTy, cast<Constant>(Ops[0]),
3530 Ops.slice(1));
Chris Lattner8574aba2009-11-27 00:29:05 +00003531}
3532
Manuel Jacob20c6d5b2016-01-17 22:46:43 +00003533Value *llvm::SimplifyGEPInst(Type *SrcTy, ArrayRef<Value *> Ops,
3534 const DataLayout &DL,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003535 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003536 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003537 const Instruction *CxtI) {
Manuel Jacob20c6d5b2016-01-17 22:46:43 +00003538 return ::SimplifyGEPInst(SrcTy, Ops,
3539 Query(DL, TLI, DT, AC, CxtI), RecursionLimit);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003540}
3541
Sanjay Patel472cc782016-01-11 22:14:42 +00003542/// Given operands for an InsertValueInst, see if we can fold the result.
3543/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00003544static Value *SimplifyInsertValueInst(Value *Agg, Value *Val,
3545 ArrayRef<unsigned> Idxs, const Query &Q,
3546 unsigned) {
Duncan Sandsfd26a952011-09-05 06:52:48 +00003547 if (Constant *CAgg = dyn_cast<Constant>(Agg))
3548 if (Constant *CVal = dyn_cast<Constant>(Val))
3549 return ConstantFoldInsertValueInstruction(CAgg, CVal, Idxs);
3550
3551 // insertvalue x, undef, n -> x
3552 if (match(Val, m_Undef()))
3553 return Agg;
3554
3555 // insertvalue x, (extractvalue y, n), n
3556 if (ExtractValueInst *EV = dyn_cast<ExtractValueInst>(Val))
Benjamin Kramer4b79c212011-09-05 18:16:19 +00003557 if (EV->getAggregateOperand()->getType() == Agg->getType() &&
3558 EV->getIndices() == Idxs) {
Duncan Sandsfd26a952011-09-05 06:52:48 +00003559 // insertvalue undef, (extractvalue y, n), n -> y
3560 if (match(Agg, m_Undef()))
3561 return EV->getAggregateOperand();
3562
3563 // insertvalue y, (extractvalue y, n), n -> y
3564 if (Agg == EV->getAggregateOperand())
3565 return Agg;
3566 }
3567
Craig Topper9f008862014-04-15 04:59:12 +00003568 return nullptr;
Duncan Sandsfd26a952011-09-05 06:52:48 +00003569}
3570
Chandler Carruth66b31302015-01-04 12:03:27 +00003571Value *llvm::SimplifyInsertValueInst(
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003572 Value *Agg, Value *Val, ArrayRef<unsigned> Idxs, const DataLayout &DL,
Chandler Carruth66b31302015-01-04 12:03:27 +00003573 const TargetLibraryInfo *TLI, const DominatorTree *DT, AssumptionCache *AC,
3574 const Instruction *CxtI) {
3575 return ::SimplifyInsertValueInst(Agg, Val, Idxs, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003576 RecursionLimit);
3577}
3578
Sanjay Patel472cc782016-01-11 22:14:42 +00003579/// Given operands for an ExtractValueInst, see if we can fold the result.
3580/// If not, this returns null.
David Majnemer25a796e2015-07-13 01:15:46 +00003581static Value *SimplifyExtractValueInst(Value *Agg, ArrayRef<unsigned> Idxs,
3582 const Query &, unsigned) {
3583 if (auto *CAgg = dyn_cast<Constant>(Agg))
3584 return ConstantFoldExtractValueInstruction(CAgg, Idxs);
3585
3586 // extractvalue x, (insertvalue y, elt, n), n -> elt
3587 unsigned NumIdxs = Idxs.size();
3588 for (auto *IVI = dyn_cast<InsertValueInst>(Agg); IVI != nullptr;
3589 IVI = dyn_cast<InsertValueInst>(IVI->getAggregateOperand())) {
3590 ArrayRef<unsigned> InsertValueIdxs = IVI->getIndices();
3591 unsigned NumInsertValueIdxs = InsertValueIdxs.size();
3592 unsigned NumCommonIdxs = std::min(NumInsertValueIdxs, NumIdxs);
3593 if (InsertValueIdxs.slice(0, NumCommonIdxs) ==
3594 Idxs.slice(0, NumCommonIdxs)) {
3595 if (NumIdxs == NumInsertValueIdxs)
3596 return IVI->getInsertedValueOperand();
3597 break;
3598 }
3599 }
3600
3601 return nullptr;
3602}
3603
3604Value *llvm::SimplifyExtractValueInst(Value *Agg, ArrayRef<unsigned> Idxs,
3605 const DataLayout &DL,
3606 const TargetLibraryInfo *TLI,
3607 const DominatorTree *DT,
3608 AssumptionCache *AC,
3609 const Instruction *CxtI) {
3610 return ::SimplifyExtractValueInst(Agg, Idxs, Query(DL, TLI, DT, AC, CxtI),
3611 RecursionLimit);
3612}
3613
Sanjay Patel472cc782016-01-11 22:14:42 +00003614/// Given operands for an ExtractElementInst, see if we can fold the result.
3615/// If not, this returns null.
David Majnemer599ca442015-07-13 01:15:53 +00003616static Value *SimplifyExtractElementInst(Value *Vec, Value *Idx, const Query &,
3617 unsigned) {
3618 if (auto *CVec = dyn_cast<Constant>(Vec)) {
3619 if (auto *CIdx = dyn_cast<Constant>(Idx))
3620 return ConstantFoldExtractElementInstruction(CVec, CIdx);
3621
3622 // The index is not relevant if our vector is a splat.
3623 if (auto *Splat = CVec->getSplatValue())
3624 return Splat;
3625
3626 if (isa<UndefValue>(Vec))
3627 return UndefValue::get(Vec->getType()->getVectorElementType());
3628 }
3629
3630 // If extracting a specified index from the vector, see if we can recursively
3631 // find a previously computed scalar that was inserted into the vector.
David Majnemer8e335ca2015-08-18 22:18:22 +00003632 if (auto *IdxC = dyn_cast<ConstantInt>(Idx))
3633 if (Value *Elt = findScalarElement(Vec, IdxC->getZExtValue()))
David Majnemer599ca442015-07-13 01:15:53 +00003634 return Elt;
David Majnemer599ca442015-07-13 01:15:53 +00003635
3636 return nullptr;
3637}
3638
3639Value *llvm::SimplifyExtractElementInst(
3640 Value *Vec, Value *Idx, const DataLayout &DL, const TargetLibraryInfo *TLI,
3641 const DominatorTree *DT, AssumptionCache *AC, const Instruction *CxtI) {
3642 return ::SimplifyExtractElementInst(Vec, Idx, Query(DL, TLI, DT, AC, CxtI),
3643 RecursionLimit);
3644}
3645
Sanjay Patel472cc782016-01-11 22:14:42 +00003646/// See if we can fold the given phi. If not, returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00003647static Value *SimplifyPHINode(PHINode *PN, const Query &Q) {
Duncan Sands7412f6e2010-11-17 04:30:22 +00003648 // If all of the PHI's incoming values are the same then replace the PHI node
3649 // with the common value.
Craig Topper9f008862014-04-15 04:59:12 +00003650 Value *CommonValue = nullptr;
Duncan Sands7412f6e2010-11-17 04:30:22 +00003651 bool HasUndefInput = false;
Pete Cooper833f34d2015-05-12 20:05:31 +00003652 for (Value *Incoming : PN->incoming_values()) {
Duncan Sands7412f6e2010-11-17 04:30:22 +00003653 // If the incoming value is the phi node itself, it can safely be skipped.
3654 if (Incoming == PN) continue;
3655 if (isa<UndefValue>(Incoming)) {
3656 // Remember that we saw an undef value, but otherwise ignore them.
3657 HasUndefInput = true;
3658 continue;
3659 }
3660 if (CommonValue && Incoming != CommonValue)
Craig Topper9f008862014-04-15 04:59:12 +00003661 return nullptr; // Not the same, bail out.
Duncan Sands7412f6e2010-11-17 04:30:22 +00003662 CommonValue = Incoming;
3663 }
3664
3665 // If CommonValue is null then all of the incoming values were either undef or
3666 // equal to the phi node itself.
3667 if (!CommonValue)
3668 return UndefValue::get(PN->getType());
3669
3670 // If we have a PHI node like phi(X, undef, X), where X is defined by some
3671 // instruction, we cannot return X as the result of the PHI node unless it
3672 // dominates the PHI block.
3673 if (HasUndefInput)
Craig Topper9f008862014-04-15 04:59:12 +00003674 return ValueDominatesPHI(CommonValue, PN, Q.DT) ? CommonValue : nullptr;
Duncan Sands7412f6e2010-11-17 04:30:22 +00003675
3676 return CommonValue;
3677}
3678
Duncan Sands395ac42d2012-03-13 14:07:05 +00003679static Value *SimplifyTruncInst(Value *Op, Type *Ty, const Query &Q, unsigned) {
3680 if (Constant *C = dyn_cast<Constant>(Op))
Manuel Jacob925d0292016-01-21 06:31:08 +00003681 return ConstantFoldCastOperand(Instruction::Trunc, C, Ty, Q.DL);
Duncan Sands395ac42d2012-03-13 14:07:05 +00003682
Craig Topper9f008862014-04-15 04:59:12 +00003683 return nullptr;
Duncan Sands395ac42d2012-03-13 14:07:05 +00003684}
3685
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003686Value *llvm::SimplifyTruncInst(Value *Op, Type *Ty, const DataLayout &DL,
Duncan Sands395ac42d2012-03-13 14:07:05 +00003687 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003688 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003689 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003690 return ::SimplifyTruncInst(Op, Ty, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00003691 RecursionLimit);
Duncan Sands395ac42d2012-03-13 14:07:05 +00003692}
3693
Chris Lattnera71e9d62009-11-10 00:55:12 +00003694//=== Helper functions for higher up the class hierarchy.
Chris Lattnerc1f19072009-11-09 23:28:39 +00003695
Sanjay Patel472cc782016-01-11 22:14:42 +00003696/// Given operands for a BinaryOperator, see if we can fold the result.
3697/// If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003698static Value *SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003699 const Query &Q, unsigned MaxRecurse) {
Chris Lattnera71e9d62009-11-10 00:55:12 +00003700 switch (Opcode) {
Chris Lattner9e4aa022011-02-09 17:15:04 +00003701 case Instruction::Add:
Duncan Sands8b4e2832011-02-09 17:45:03 +00003702 return SimplifyAddInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003703 Q, MaxRecurse);
Michael Ilsemand2b05e52012-12-12 00:29:16 +00003704 case Instruction::FAdd:
3705 return SimplifyFAddInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
3706
Chris Lattner9e4aa022011-02-09 17:15:04 +00003707 case Instruction::Sub:
Duncan Sands8b4e2832011-02-09 17:45:03 +00003708 return SimplifySubInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003709 Q, MaxRecurse);
Michael Ilsemand2b05e52012-12-12 00:29:16 +00003710 case Instruction::FSub:
3711 return SimplifyFSubInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
3712
Duncan Sandsb8cee002012-03-13 11:42:19 +00003713 case Instruction::Mul: return SimplifyMulInst (LHS, RHS, Q, MaxRecurse);
Michael Ilsemand2b05e52012-12-12 00:29:16 +00003714 case Instruction::FMul:
3715 return SimplifyFMulInst (LHS, RHS, FastMathFlags(), Q, MaxRecurse);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003716 case Instruction::SDiv: return SimplifySDivInst(LHS, RHS, Q, MaxRecurse);
3717 case Instruction::UDiv: return SimplifyUDivInst(LHS, RHS, Q, MaxRecurse);
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00003718 case Instruction::FDiv:
3719 return SimplifyFDivInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003720 case Instruction::SRem: return SimplifySRemInst(LHS, RHS, Q, MaxRecurse);
3721 case Instruction::URem: return SimplifyURemInst(LHS, RHS, Q, MaxRecurse);
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00003722 case Instruction::FRem:
3723 return SimplifyFRemInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00003724 case Instruction::Shl:
Duncan Sands8b4e2832011-02-09 17:45:03 +00003725 return SimplifyShlInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003726 Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00003727 case Instruction::LShr:
Duncan Sandsb8cee002012-03-13 11:42:19 +00003728 return SimplifyLShrInst(LHS, RHS, /*isExact*/false, Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00003729 case Instruction::AShr:
Duncan Sandsb8cee002012-03-13 11:42:19 +00003730 return SimplifyAShrInst(LHS, RHS, /*isExact*/false, Q, MaxRecurse);
3731 case Instruction::And: return SimplifyAndInst(LHS, RHS, Q, MaxRecurse);
3732 case Instruction::Or: return SimplifyOrInst (LHS, RHS, Q, MaxRecurse);
3733 case Instruction::Xor: return SimplifyXorInst(LHS, RHS, Q, MaxRecurse);
Chris Lattnera71e9d62009-11-10 00:55:12 +00003734 default:
3735 if (Constant *CLHS = dyn_cast<Constant>(LHS))
Manuel Jacoba61ca372016-01-21 06:26:35 +00003736 if (Constant *CRHS = dyn_cast<Constant>(RHS))
3737 return ConstantFoldBinaryOpOperands(Opcode, CLHS, CRHS, Q.DL);
Duncan Sandsb0579e92010-11-10 13:00:08 +00003738
Duncan Sands6c7a52c2010-12-21 08:49:00 +00003739 // If the operation is associative, try some generic simplifications.
3740 if (Instruction::isAssociative(Opcode))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003741 if (Value *V = SimplifyAssociativeBinOp(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00003742 return V;
3743
Duncan Sandsb8cee002012-03-13 11:42:19 +00003744 // If the operation is with the result of a select instruction check whether
Duncan Sandsb0579e92010-11-10 13:00:08 +00003745 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003746 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003747 if (Value *V = ThreadBinOpOverSelect(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003748 return V;
3749
3750 // If the operation is with the result of a phi instruction, check whether
3751 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003752 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003753 if (Value *V = ThreadBinOpOverPHI(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00003754 return V;
3755
Craig Topper9f008862014-04-15 04:59:12 +00003756 return nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00003757 }
3758}
Chris Lattnerc1f19072009-11-09 23:28:39 +00003759
Sanjay Patel472cc782016-01-11 22:14:42 +00003760/// Given operands for a BinaryOperator, see if we can fold the result.
3761/// If not, this returns null.
Michael Zolotukhin4e8598e2015-02-06 20:02:51 +00003762/// In contrast to SimplifyBinOp, try to use FastMathFlag when folding the
3763/// result. In case we don't need FastMathFlags, simply fall to SimplifyBinOp.
3764static Value *SimplifyFPBinOp(unsigned Opcode, Value *LHS, Value *RHS,
3765 const FastMathFlags &FMF, const Query &Q,
3766 unsigned MaxRecurse) {
3767 switch (Opcode) {
3768 case Instruction::FAdd:
3769 return SimplifyFAddInst(LHS, RHS, FMF, Q, MaxRecurse);
3770 case Instruction::FSub:
3771 return SimplifyFSubInst(LHS, RHS, FMF, Q, MaxRecurse);
3772 case Instruction::FMul:
3773 return SimplifyFMulInst(LHS, RHS, FMF, Q, MaxRecurse);
3774 default:
3775 return SimplifyBinOp(Opcode, LHS, RHS, Q, MaxRecurse);
3776 }
3777}
3778
Duncan Sands7e800d62010-11-14 11:23:23 +00003779Value *llvm::SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003780 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003781 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003782 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003783 return ::SimplifyBinOp(Opcode, LHS, RHS, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00003784 RecursionLimit);
Chris Lattnerc1f19072009-11-09 23:28:39 +00003785}
3786
Michael Zolotukhin4e8598e2015-02-06 20:02:51 +00003787Value *llvm::SimplifyFPBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003788 const FastMathFlags &FMF, const DataLayout &DL,
Michael Zolotukhin4e8598e2015-02-06 20:02:51 +00003789 const TargetLibraryInfo *TLI,
3790 const DominatorTree *DT, AssumptionCache *AC,
3791 const Instruction *CxtI) {
3792 return ::SimplifyFPBinOp(Opcode, LHS, RHS, FMF, Query(DL, TLI, DT, AC, CxtI),
3793 RecursionLimit);
3794}
3795
Sanjay Patel472cc782016-01-11 22:14:42 +00003796/// Given operands for a CmpInst, see if we can fold the result.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003797static Value *SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003798 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003799 if (CmpInst::isIntPredicate((CmpInst::Predicate)Predicate))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003800 return SimplifyICmpInst(Predicate, LHS, RHS, Q, MaxRecurse);
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00003801 return SimplifyFCmpInst(Predicate, LHS, RHS, FastMathFlags(), Q, MaxRecurse);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003802}
3803
3804Value *llvm::SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003805 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003806 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003807 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003808 return ::SimplifyCmpInst(Predicate, LHS, RHS, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003809 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003810}
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003811
Michael Ilseman54857292013-02-07 19:26:05 +00003812static bool IsIdempotent(Intrinsic::ID ID) {
3813 switch (ID) {
3814 default: return false;
3815
3816 // Unary idempotent: f(f(x)) = f(x)
3817 case Intrinsic::fabs:
3818 case Intrinsic::floor:
3819 case Intrinsic::ceil:
3820 case Intrinsic::trunc:
3821 case Intrinsic::rint:
3822 case Intrinsic::nearbyint:
Hal Finkel171817e2013-08-07 22:49:12 +00003823 case Intrinsic::round:
Michael Ilseman54857292013-02-07 19:26:05 +00003824 return true;
3825 }
3826}
3827
Peter Collingbourne7dd8dbf2016-04-22 21:18:02 +00003828static Value *SimplifyRelativeLoad(Constant *Ptr, Constant *Offset,
3829 const DataLayout &DL) {
3830 GlobalValue *PtrSym;
3831 APInt PtrOffset;
3832 if (!IsConstantOffsetFromGlobal(Ptr, PtrSym, PtrOffset, DL))
3833 return nullptr;
3834
3835 Type *Int8PtrTy = Type::getInt8PtrTy(Ptr->getContext());
3836 Type *Int32Ty = Type::getInt32Ty(Ptr->getContext());
3837 Type *Int32PtrTy = Int32Ty->getPointerTo();
3838 Type *Int64Ty = Type::getInt64Ty(Ptr->getContext());
3839
3840 auto *OffsetConstInt = dyn_cast<ConstantInt>(Offset);
3841 if (!OffsetConstInt || OffsetConstInt->getType()->getBitWidth() > 64)
3842 return nullptr;
3843
3844 uint64_t OffsetInt = OffsetConstInt->getSExtValue();
3845 if (OffsetInt % 4 != 0)
3846 return nullptr;
3847
3848 Constant *C = ConstantExpr::getGetElementPtr(
3849 Int32Ty, ConstantExpr::getBitCast(Ptr, Int32PtrTy),
3850 ConstantInt::get(Int64Ty, OffsetInt / 4));
3851 Constant *Loaded = ConstantFoldLoadFromConstPtr(C, Int32Ty, DL);
3852 if (!Loaded)
3853 return nullptr;
3854
3855 auto *LoadedCE = dyn_cast<ConstantExpr>(Loaded);
3856 if (!LoadedCE)
3857 return nullptr;
3858
3859 if (LoadedCE->getOpcode() == Instruction::Trunc) {
3860 LoadedCE = dyn_cast<ConstantExpr>(LoadedCE->getOperand(0));
3861 if (!LoadedCE)
3862 return nullptr;
3863 }
3864
3865 if (LoadedCE->getOpcode() != Instruction::Sub)
3866 return nullptr;
3867
3868 auto *LoadedLHS = dyn_cast<ConstantExpr>(LoadedCE->getOperand(0));
3869 if (!LoadedLHS || LoadedLHS->getOpcode() != Instruction::PtrToInt)
3870 return nullptr;
3871 auto *LoadedLHSPtr = LoadedLHS->getOperand(0);
3872
3873 Constant *LoadedRHS = LoadedCE->getOperand(1);
3874 GlobalValue *LoadedRHSSym;
3875 APInt LoadedRHSOffset;
3876 if (!IsConstantOffsetFromGlobal(LoadedRHS, LoadedRHSSym, LoadedRHSOffset,
3877 DL) ||
3878 PtrSym != LoadedRHSSym || PtrOffset != LoadedRHSOffset)
3879 return nullptr;
3880
3881 return ConstantExpr::getBitCast(LoadedLHSPtr, Int8PtrTy);
3882}
3883
Michael Ilseman54857292013-02-07 19:26:05 +00003884template <typename IterTy>
David Majnemer15032582015-05-22 03:56:46 +00003885static Value *SimplifyIntrinsic(Function *F, IterTy ArgBegin, IterTy ArgEnd,
Michael Ilseman54857292013-02-07 19:26:05 +00003886 const Query &Q, unsigned MaxRecurse) {
David Majnemer15032582015-05-22 03:56:46 +00003887 Intrinsic::ID IID = F->getIntrinsicID();
3888 unsigned NumOperands = std::distance(ArgBegin, ArgEnd);
3889 Type *ReturnType = F->getReturnType();
3890
3891 // Binary Ops
3892 if (NumOperands == 2) {
3893 Value *LHS = *ArgBegin;
3894 Value *RHS = *(ArgBegin + 1);
3895 if (IID == Intrinsic::usub_with_overflow ||
3896 IID == Intrinsic::ssub_with_overflow) {
3897 // X - X -> { 0, false }
3898 if (LHS == RHS)
3899 return Constant::getNullValue(ReturnType);
3900
3901 // X - undef -> undef
3902 // undef - X -> undef
3903 if (isa<UndefValue>(LHS) || isa<UndefValue>(RHS))
3904 return UndefValue::get(ReturnType);
3905 }
3906
3907 if (IID == Intrinsic::uadd_with_overflow ||
3908 IID == Intrinsic::sadd_with_overflow) {
3909 // X + undef -> undef
3910 if (isa<UndefValue>(RHS))
3911 return UndefValue::get(ReturnType);
3912 }
3913
3914 if (IID == Intrinsic::umul_with_overflow ||
3915 IID == Intrinsic::smul_with_overflow) {
3916 // X * 0 -> { 0, false }
3917 if (match(RHS, m_Zero()))
3918 return Constant::getNullValue(ReturnType);
3919
3920 // X * undef -> { 0, false }
3921 if (match(RHS, m_Undef()))
3922 return Constant::getNullValue(ReturnType);
3923 }
Peter Collingbourne7dd8dbf2016-04-22 21:18:02 +00003924
3925 if (IID == Intrinsic::load_relative && isa<Constant>(LHS) &&
3926 isa<Constant>(RHS))
3927 return SimplifyRelativeLoad(cast<Constant>(LHS), cast<Constant>(RHS),
3928 Q.DL);
David Majnemer15032582015-05-22 03:56:46 +00003929 }
3930
Michael Ilseman54857292013-02-07 19:26:05 +00003931 // Perform idempotent optimizations
3932 if (!IsIdempotent(IID))
Craig Topper9f008862014-04-15 04:59:12 +00003933 return nullptr;
Michael Ilseman54857292013-02-07 19:26:05 +00003934
3935 // Unary Ops
David Majnemer15032582015-05-22 03:56:46 +00003936 if (NumOperands == 1)
Michael Ilseman54857292013-02-07 19:26:05 +00003937 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(*ArgBegin))
3938 if (II->getIntrinsicID() == IID)
3939 return II;
3940
Craig Topper9f008862014-04-15 04:59:12 +00003941 return nullptr;
Michael Ilseman54857292013-02-07 19:26:05 +00003942}
3943
Chandler Carruth9dc35582012-12-28 11:30:55 +00003944template <typename IterTy>
Chandler Carruthf6182152012-12-28 14:23:29 +00003945static Value *SimplifyCall(Value *V, IterTy ArgBegin, IterTy ArgEnd,
Chandler Carruth9dc35582012-12-28 11:30:55 +00003946 const Query &Q, unsigned MaxRecurse) {
Chandler Carruthf6182152012-12-28 14:23:29 +00003947 Type *Ty = V->getType();
Chandler Carruth9dc35582012-12-28 11:30:55 +00003948 if (PointerType *PTy = dyn_cast<PointerType>(Ty))
3949 Ty = PTy->getElementType();
3950 FunctionType *FTy = cast<FunctionType>(Ty);
3951
Dan Gohman85977e62011-11-04 18:32:42 +00003952 // call undef -> undef
Chandler Carruthf6182152012-12-28 14:23:29 +00003953 if (isa<UndefValue>(V))
Chandler Carruth9dc35582012-12-28 11:30:55 +00003954 return UndefValue::get(FTy->getReturnType());
Dan Gohman85977e62011-11-04 18:32:42 +00003955
Chandler Carruthf6182152012-12-28 14:23:29 +00003956 Function *F = dyn_cast<Function>(V);
3957 if (!F)
Craig Topper9f008862014-04-15 04:59:12 +00003958 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00003959
David Majnemer15032582015-05-22 03:56:46 +00003960 if (F->isIntrinsic())
3961 if (Value *Ret = SimplifyIntrinsic(F, ArgBegin, ArgEnd, Q, MaxRecurse))
Michael Ilseman54857292013-02-07 19:26:05 +00003962 return Ret;
3963
Chandler Carruthf6182152012-12-28 14:23:29 +00003964 if (!canConstantFoldCallTo(F))
Craig Topper9f008862014-04-15 04:59:12 +00003965 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00003966
3967 SmallVector<Constant *, 4> ConstantArgs;
3968 ConstantArgs.reserve(ArgEnd - ArgBegin);
3969 for (IterTy I = ArgBegin, E = ArgEnd; I != E; ++I) {
3970 Constant *C = dyn_cast<Constant>(*I);
3971 if (!C)
Craig Topper9f008862014-04-15 04:59:12 +00003972 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00003973 ConstantArgs.push_back(C);
3974 }
3975
3976 return ConstantFoldCall(F, ConstantArgs, Q.TLI);
Dan Gohman85977e62011-11-04 18:32:42 +00003977}
3978
Chandler Carruthf6182152012-12-28 14:23:29 +00003979Value *llvm::SimplifyCall(Value *V, User::op_iterator ArgBegin,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003980 User::op_iterator ArgEnd, const DataLayout &DL,
Chandler Carruth66b31302015-01-04 12:03:27 +00003981 const TargetLibraryInfo *TLI, const DominatorTree *DT,
3982 AssumptionCache *AC, const Instruction *CxtI) {
3983 return ::SimplifyCall(V, ArgBegin, ArgEnd, Query(DL, TLI, DT, AC, CxtI),
Chandler Carruth9dc35582012-12-28 11:30:55 +00003984 RecursionLimit);
3985}
3986
Chandler Carruthf6182152012-12-28 14:23:29 +00003987Value *llvm::SimplifyCall(Value *V, ArrayRef<Value *> Args,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003988 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003989 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003990 const Instruction *CxtI) {
3991 return ::SimplifyCall(V, Args.begin(), Args.end(),
Chandler Carruth66b31302015-01-04 12:03:27 +00003992 Query(DL, TLI, DT, AC, CxtI), RecursionLimit);
Chandler Carruth9dc35582012-12-28 11:30:55 +00003993}
3994
Sanjay Patel472cc782016-01-11 22:14:42 +00003995/// See if we can compute a simplified version of this instruction.
3996/// If not, this returns null.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003997Value *llvm::SimplifyInstruction(Instruction *I, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00003998 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003999 const DominatorTree *DT, AssumptionCache *AC) {
Duncan Sands64e41cf2010-11-17 08:35:29 +00004000 Value *Result;
4001
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00004002 switch (I->getOpcode()) {
4003 default:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00004004 Result = ConstantFoldInstruction(I, DL, TLI);
Duncan Sands64e41cf2010-11-17 08:35:29 +00004005 break;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00004006 case Instruction::FAdd:
4007 Result = SimplifyFAddInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00004008 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00004009 break;
Chris Lattner3d9823b2009-11-27 17:42:22 +00004010 case Instruction::Add:
Duncan Sands64e41cf2010-11-17 08:35:29 +00004011 Result = SimplifyAddInst(I->getOperand(0), I->getOperand(1),
4012 cast<BinaryOperator>(I)->hasNoSignedWrap(),
Chandler Carruth66b31302015-01-04 12:03:27 +00004013 cast<BinaryOperator>(I)->hasNoUnsignedWrap(), DL,
4014 TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00004015 break;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00004016 case Instruction::FSub:
4017 Result = SimplifyFSubInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00004018 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00004019 break;
Duncan Sands0a2c41682010-12-15 14:07:39 +00004020 case Instruction::Sub:
4021 Result = SimplifySubInst(I->getOperand(0), I->getOperand(1),
4022 cast<BinaryOperator>(I)->hasNoSignedWrap(),
Chandler Carruth66b31302015-01-04 12:03:27 +00004023 cast<BinaryOperator>(I)->hasNoUnsignedWrap(), DL,
4024 TLI, DT, AC, I);
Duncan Sands0a2c41682010-12-15 14:07:39 +00004025 break;
Michael Ilsemanbe9137a2012-11-27 00:46:26 +00004026 case Instruction::FMul:
4027 Result = SimplifyFMulInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00004028 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +00004029 break;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00004030 case Instruction::Mul:
Chandler Carruth66b31302015-01-04 12:03:27 +00004031 Result =
4032 SimplifyMulInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00004033 break;
Duncan Sands771e82a2011-01-28 16:51:11 +00004034 case Instruction::SDiv:
Chandler Carruth66b31302015-01-04 12:03:27 +00004035 Result = SimplifySDivInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
4036 AC, I);
Duncan Sands771e82a2011-01-28 16:51:11 +00004037 break;
4038 case Instruction::UDiv:
Chandler Carruth66b31302015-01-04 12:03:27 +00004039 Result = SimplifyUDivInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
4040 AC, I);
Duncan Sands771e82a2011-01-28 16:51:11 +00004041 break;
Frits van Bommelc2549662011-01-29 15:26:31 +00004042 case Instruction::FDiv:
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00004043 Result = SimplifyFDivInst(I->getOperand(0), I->getOperand(1),
4044 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Frits van Bommelc2549662011-01-29 15:26:31 +00004045 break;
Duncan Sandsa3e36992011-05-02 16:27:02 +00004046 case Instruction::SRem:
Chandler Carruth66b31302015-01-04 12:03:27 +00004047 Result = SimplifySRemInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
4048 AC, I);
Duncan Sandsa3e36992011-05-02 16:27:02 +00004049 break;
4050 case Instruction::URem:
Chandler Carruth66b31302015-01-04 12:03:27 +00004051 Result = SimplifyURemInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
4052 AC, I);
Duncan Sandsa3e36992011-05-02 16:27:02 +00004053 break;
4054 case Instruction::FRem:
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00004055 Result = SimplifyFRemInst(I->getOperand(0), I->getOperand(1),
4056 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Duncan Sandsa3e36992011-05-02 16:27:02 +00004057 break;
Duncan Sands7f60dc12011-01-14 00:37:45 +00004058 case Instruction::Shl:
Chris Lattner9e4aa022011-02-09 17:15:04 +00004059 Result = SimplifyShlInst(I->getOperand(0), I->getOperand(1),
4060 cast<BinaryOperator>(I)->hasNoSignedWrap(),
Chandler Carruth66b31302015-01-04 12:03:27 +00004061 cast<BinaryOperator>(I)->hasNoUnsignedWrap(), DL,
4062 TLI, DT, AC, I);
Duncan Sands7f60dc12011-01-14 00:37:45 +00004063 break;
4064 case Instruction::LShr:
Chris Lattner9e4aa022011-02-09 17:15:04 +00004065 Result = SimplifyLShrInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00004066 cast<BinaryOperator>(I)->isExact(), DL, TLI, DT,
4067 AC, I);
Duncan Sands7f60dc12011-01-14 00:37:45 +00004068 break;
4069 case Instruction::AShr:
Chris Lattner9e4aa022011-02-09 17:15:04 +00004070 Result = SimplifyAShrInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00004071 cast<BinaryOperator>(I)->isExact(), DL, TLI, DT,
4072 AC, I);
Duncan Sands7f60dc12011-01-14 00:37:45 +00004073 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00004074 case Instruction::And:
Chandler Carruth66b31302015-01-04 12:03:27 +00004075 Result =
4076 SimplifyAndInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00004077 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00004078 case Instruction::Or:
Chandler Carruth66b31302015-01-04 12:03:27 +00004079 Result =
4080 SimplifyOrInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00004081 break;
Duncan Sandsc89ac072010-11-17 18:52:15 +00004082 case Instruction::Xor:
Chandler Carruth66b31302015-01-04 12:03:27 +00004083 Result =
4084 SimplifyXorInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sandsc89ac072010-11-17 18:52:15 +00004085 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00004086 case Instruction::ICmp:
Chandler Carruth66b31302015-01-04 12:03:27 +00004087 Result =
4088 SimplifyICmpInst(cast<ICmpInst>(I)->getPredicate(), I->getOperand(0),
4089 I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00004090 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00004091 case Instruction::FCmp:
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00004092 Result = SimplifyFCmpInst(cast<FCmpInst>(I)->getPredicate(),
4093 I->getOperand(0), I->getOperand(1),
4094 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00004095 break;
Chris Lattnerc707fa92010-04-20 05:32:14 +00004096 case Instruction::Select:
Duncan Sands64e41cf2010-11-17 08:35:29 +00004097 Result = SimplifySelectInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00004098 I->getOperand(2), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00004099 break;
Chris Lattner8574aba2009-11-27 00:29:05 +00004100 case Instruction::GetElementPtr: {
4101 SmallVector<Value*, 8> Ops(I->op_begin(), I->op_end());
Manuel Jacob20c6d5b2016-01-17 22:46:43 +00004102 Result = SimplifyGEPInst(cast<GetElementPtrInst>(I)->getSourceElementType(),
4103 Ops, DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00004104 break;
Chris Lattner8574aba2009-11-27 00:29:05 +00004105 }
Duncan Sandsfd26a952011-09-05 06:52:48 +00004106 case Instruction::InsertValue: {
4107 InsertValueInst *IV = cast<InsertValueInst>(I);
4108 Result = SimplifyInsertValueInst(IV->getAggregateOperand(),
4109 IV->getInsertedValueOperand(),
Chandler Carruth66b31302015-01-04 12:03:27 +00004110 IV->getIndices(), DL, TLI, DT, AC, I);
Duncan Sandsfd26a952011-09-05 06:52:48 +00004111 break;
4112 }
David Majnemer25a796e2015-07-13 01:15:46 +00004113 case Instruction::ExtractValue: {
4114 auto *EVI = cast<ExtractValueInst>(I);
4115 Result = SimplifyExtractValueInst(EVI->getAggregateOperand(),
4116 EVI->getIndices(), DL, TLI, DT, AC, I);
4117 break;
4118 }
David Majnemer599ca442015-07-13 01:15:53 +00004119 case Instruction::ExtractElement: {
4120 auto *EEI = cast<ExtractElementInst>(I);
4121 Result = SimplifyExtractElementInst(
4122 EEI->getVectorOperand(), EEI->getIndexOperand(), DL, TLI, DT, AC, I);
4123 break;
4124 }
Duncan Sands4581ddc2010-11-14 13:30:18 +00004125 case Instruction::PHI:
Chandler Carruth66b31302015-01-04 12:03:27 +00004126 Result = SimplifyPHINode(cast<PHINode>(I), Query(DL, TLI, DT, AC, I));
Duncan Sands64e41cf2010-11-17 08:35:29 +00004127 break;
Chandler Carruth9dc35582012-12-28 11:30:55 +00004128 case Instruction::Call: {
4129 CallSite CS(cast<CallInst>(I));
Chandler Carruth66b31302015-01-04 12:03:27 +00004130 Result = SimplifyCall(CS.getCalledValue(), CS.arg_begin(), CS.arg_end(), DL,
4131 TLI, DT, AC, I);
Dan Gohman85977e62011-11-04 18:32:42 +00004132 break;
Chandler Carruth9dc35582012-12-28 11:30:55 +00004133 }
Duncan Sands395ac42d2012-03-13 14:07:05 +00004134 case Instruction::Trunc:
Chandler Carruth66b31302015-01-04 12:03:27 +00004135 Result =
4136 SimplifyTruncInst(I->getOperand(0), I->getType(), DL, TLI, DT, AC, I);
Duncan Sands395ac42d2012-03-13 14:07:05 +00004137 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00004138 }
Duncan Sands64e41cf2010-11-17 08:35:29 +00004139
Hal Finkelf2199b22015-10-23 20:37:08 +00004140 // In general, it is possible for computeKnownBits to determine all bits in a
4141 // value even when the operands are not all constants.
4142 if (!Result && I->getType()->isIntegerTy()) {
4143 unsigned BitWidth = I->getType()->getScalarSizeInBits();
4144 APInt KnownZero(BitWidth, 0);
4145 APInt KnownOne(BitWidth, 0);
4146 computeKnownBits(I, KnownZero, KnownOne, DL, /*Depth*/0, AC, I, DT);
4147 if ((KnownZero | KnownOne).isAllOnesValue())
4148 Result = ConstantInt::get(I->getContext(), KnownOne);
4149 }
4150
Duncan Sands64e41cf2010-11-17 08:35:29 +00004151 /// If called on unreachable code, the above logic may report that the
4152 /// instruction simplified to itself. Make life easier for users by
Duncan Sands019a4182010-12-15 11:02:22 +00004153 /// detecting that case here, returning a safe value instead.
4154 return Result == I ? UndefValue::get(I->getType()) : Result;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00004155}
4156
Sanjay Patelf44bd382016-01-20 18:59:48 +00004157/// \brief Implementation of recursive simplification through an instruction's
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004158/// uses.
Chris Lattner852d6d62009-11-10 22:26:15 +00004159///
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004160/// This is the common implementation of the recursive simplification routines.
4161/// If we have a pre-simplified value in 'SimpleV', that is forcibly used to
4162/// replace the instruction 'I'. Otherwise, we simply add 'I' to the list of
4163/// instructions to process and attempt to simplify it using
4164/// InstructionSimplify.
4165///
4166/// This routine returns 'true' only when *it* simplifies something. The passed
4167/// in simplified value does not count toward this.
4168static bool replaceAndRecursivelySimplifyImpl(Instruction *I, Value *SimpleV,
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004169 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00004170 const DominatorTree *DT,
Chandler Carruth66b31302015-01-04 12:03:27 +00004171 AssumptionCache *AC) {
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004172 bool Simplified = false;
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00004173 SmallSetVector<Instruction *, 8> Worklist;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004174 const DataLayout &DL = I->getModule()->getDataLayout();
Duncan Sands7e800d62010-11-14 11:23:23 +00004175
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004176 // If we have an explicit value to collapse to, do that round of the
4177 // simplification loop by hand initially.
4178 if (SimpleV) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00004179 for (User *U : I->users())
4180 if (U != I)
4181 Worklist.insert(cast<Instruction>(U));
Duncan Sands7e800d62010-11-14 11:23:23 +00004182
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004183 // Replace the instruction with its simplified value.
4184 I->replaceAllUsesWith(SimpleV);
Chris Lattner19eff2a2010-07-15 06:36:08 +00004185
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004186 // Gracefully handle edge cases where the instruction is not wired into any
4187 // parent block.
4188 if (I->getParent())
4189 I->eraseFromParent();
4190 } else {
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00004191 Worklist.insert(I);
Chris Lattner852d6d62009-11-10 22:26:15 +00004192 }
Duncan Sands7e800d62010-11-14 11:23:23 +00004193
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00004194 // Note that we must test the size on each iteration, the worklist can grow.
4195 for (unsigned Idx = 0; Idx != Worklist.size(); ++Idx) {
4196 I = Worklist[Idx];
Duncan Sands7e800d62010-11-14 11:23:23 +00004197
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004198 // See if this instruction simplifies.
Chandler Carruth66b31302015-01-04 12:03:27 +00004199 SimpleV = SimplifyInstruction(I, DL, TLI, DT, AC);
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004200 if (!SimpleV)
4201 continue;
4202
4203 Simplified = true;
4204
4205 // Stash away all the uses of the old instruction so we can check them for
4206 // recursive simplifications after a RAUW. This is cheaper than checking all
4207 // uses of To on the recursive step in most cases.
Chandler Carruthcdf47882014-03-09 03:16:01 +00004208 for (User *U : I->users())
4209 Worklist.insert(cast<Instruction>(U));
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004210
4211 // Replace the instruction with its simplified value.
4212 I->replaceAllUsesWith(SimpleV);
4213
4214 // Gracefully handle edge cases where the instruction is not wired into any
4215 // parent block.
4216 if (I->getParent())
4217 I->eraseFromParent();
4218 }
4219 return Simplified;
4220}
4221
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004222bool llvm::recursivelySimplifyInstruction(Instruction *I,
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004223 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00004224 const DominatorTree *DT,
Chandler Carruth66b31302015-01-04 12:03:27 +00004225 AssumptionCache *AC) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004226 return replaceAndRecursivelySimplifyImpl(I, nullptr, TLI, DT, AC);
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004227}
4228
4229bool llvm::replaceAndRecursivelySimplify(Instruction *I, Value *SimpleV,
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004230 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00004231 const DominatorTree *DT,
Chandler Carruth66b31302015-01-04 12:03:27 +00004232 AssumptionCache *AC) {
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004233 assert(I != SimpleV && "replaceAndRecursivelySimplify(X,X) is not valid!");
4234 assert(SimpleV && "Must provide a simplified value.");
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004235 return replaceAndRecursivelySimplifyImpl(I, SimpleV, TLI, DT, AC);
Chris Lattner852d6d62009-11-10 22:26:15 +00004236}