blob: 2b577f0342bb52ad92a1a46cbfc4eef53dc91062 [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)) {
619 if (GA->mayBeOverridden())
620 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()) &&
797 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0)))
798 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()) &&
833 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0)))
834 return Op0;
835
836 // fsub 0, (fsub -0.0, X) ==> X
837 Value *X;
838 if (match(Op0, m_AnyZero())) {
839 if (match(Op1, m_FSub(m_NegZero(), m_Value(X))))
840 return X;
841 if (FMF.noSignedZeros() && match(Op1, m_FSub(m_AnyZero(), m_Value(X))))
842 return X;
843 }
844
Benjamin Kramer228680d2015-06-14 21:01:20 +0000845 // fsub nnan x, x ==> 0.0
846 if (FMF.noNaNs() && Op0 == Op1)
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000847 return Constant::getNullValue(Op0->getType());
848
Craig Topper9f008862014-04-15 04:59:12 +0000849 return nullptr;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000850}
851
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000852/// Given the operands for an FMul, see if we can fold the result
853static Value *SimplifyFMulInst(Value *Op0, Value *Op1,
854 FastMathFlags FMF,
855 const Query &Q,
856 unsigned MaxRecurse) {
857 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
Manuel Jacoba61ca372016-01-21 06:26:35 +0000858 if (Constant *CRHS = dyn_cast<Constant>(Op1))
859 return ConstantFoldBinaryOpOperands(Instruction::FMul, CLHS, CRHS, Q.DL);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000860
861 // Canonicalize the constant to the RHS.
862 std::swap(Op0, Op1);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000863 }
864
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000865 // fmul X, 1.0 ==> X
866 if (match(Op1, m_FPOne()))
867 return Op0;
868
869 // fmul nnan nsz X, 0 ==> 0
870 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op1, m_AnyZero()))
871 return Op1;
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000872
Craig Topper9f008862014-04-15 04:59:12 +0000873 return nullptr;
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000874}
875
Sanjay Patel472cc782016-01-11 22:14:42 +0000876/// Given operands for a Mul, see if we can fold the result.
877/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000878static Value *SimplifyMulInst(Value *Op0, Value *Op1, const Query &Q,
879 unsigned MaxRecurse) {
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000880 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
Manuel Jacoba61ca372016-01-21 06:26:35 +0000881 if (Constant *CRHS = dyn_cast<Constant>(Op1))
882 return ConstantFoldBinaryOpOperands(Instruction::Mul, CLHS, CRHS, Q.DL);
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000883
884 // Canonicalize the constant to the RHS.
885 std::swap(Op0, Op1);
886 }
887
888 // X * undef -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000889 if (match(Op1, m_Undef()))
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000890 return Constant::getNullValue(Op0->getType());
891
892 // X * 0 -> 0
893 if (match(Op1, m_Zero()))
894 return Op1;
895
896 // X * 1 -> X
897 if (match(Op1, m_One()))
898 return Op0;
899
Duncan Sandsb67edc62011-01-30 18:03:50 +0000900 // (X / Y) * Y -> X if the division is exact.
Craig Topper9f008862014-04-15 04:59:12 +0000901 Value *X = nullptr;
Benjamin Kramer9442cd02012-01-01 17:55:30 +0000902 if (match(Op0, m_Exact(m_IDiv(m_Value(X), m_Specific(Op1)))) || // (X / Y) * Y
903 match(Op1, m_Exact(m_IDiv(m_Value(X), m_Specific(Op0))))) // Y * (X / Y)
904 return X;
Duncan Sandsb67edc62011-01-30 18:03:50 +0000905
Nick Lewyckyb89d9a42011-01-29 19:55:23 +0000906 // i1 mul -> and.
Duncan Sands5def0d62010-12-21 14:48:48 +0000907 if (MaxRecurse && Op0->getType()->isIntegerTy(1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000908 if (Value *V = SimplifyAndInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sandsfecc6422010-12-21 15:03:43 +0000909 return V;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000910
911 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000912 if (Value *V = SimplifyAssociativeBinOp(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000913 MaxRecurse))
914 return V;
915
916 // Mul distributes over Add. Try some generic simplifications based on this.
917 if (Value *V = ExpandBinOp(Instruction::Mul, Op0, Op1, Instruction::Add,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000918 Q, MaxRecurse))
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000919 return V;
920
921 // If the operation is with the result of a select instruction, check whether
922 // operating on either branch of the select always yields the same value.
923 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000924 if (Value *V = ThreadBinOpOverSelect(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000925 MaxRecurse))
926 return V;
927
928 // If the operation is with the result of a phi instruction, check whether
929 // operating on all incoming values of the phi always yields the same value.
930 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000931 if (Value *V = ThreadBinOpOverPHI(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000932 MaxRecurse))
933 return V;
934
Craig Topper9f008862014-04-15 04:59:12 +0000935 return nullptr;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000936}
937
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000938Value *llvm::SimplifyFAddInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000939 const DataLayout &DL,
Chandler Carruth66b31302015-01-04 12:03:27 +0000940 const TargetLibraryInfo *TLI,
941 const DominatorTree *DT, AssumptionCache *AC,
942 const Instruction *CxtI) {
943 return ::SimplifyFAddInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +0000944 RecursionLimit);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000945}
946
947Value *llvm::SimplifyFSubInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000948 const DataLayout &DL,
Chandler Carruth66b31302015-01-04 12:03:27 +0000949 const TargetLibraryInfo *TLI,
950 const DominatorTree *DT, AssumptionCache *AC,
951 const Instruction *CxtI) {
952 return ::SimplifyFSubInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +0000953 RecursionLimit);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000954}
955
Chandler Carruth66b31302015-01-04 12:03:27 +0000956Value *llvm::SimplifyFMulInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000957 const DataLayout &DL,
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000958 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +0000959 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +0000960 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +0000961 return ::SimplifyFMulInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +0000962 RecursionLimit);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000963}
964
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000965Value *llvm::SimplifyMulInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +0000966 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +0000967 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +0000968 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +0000969 return ::SimplifyMulInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +0000970 RecursionLimit);
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000971}
972
Sanjay Patel472cc782016-01-11 22:14:42 +0000973/// Given operands for an SDiv or UDiv, see if we can fold the result.
974/// If not, this returns null.
Anders Carlsson36c6d232011-02-05 18:33:43 +0000975static Value *SimplifyDiv(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000976 const Query &Q, unsigned MaxRecurse) {
Manuel Jacoba61ca372016-01-21 06:26:35 +0000977 if (Constant *C0 = dyn_cast<Constant>(Op0))
978 if (Constant *C1 = dyn_cast<Constant>(Op1))
979 return ConstantFoldBinaryOpOperands(Opcode, C0, C1, Q.DL);
Duncan Sands771e82a2011-01-28 16:51:11 +0000980
Duncan Sands65995fa2011-01-28 18:50:50 +0000981 bool isSigned = Opcode == Instruction::SDiv;
982
Duncan Sands771e82a2011-01-28 16:51:11 +0000983 // X / undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000984 if (match(Op1, m_Undef()))
Duncan Sands771e82a2011-01-28 16:51:11 +0000985 return Op1;
986
David Majnemer71dc8fb2014-12-10 07:52:18 +0000987 // X / 0 -> undef, we don't need to preserve faults!
988 if (match(Op1, m_Zero()))
989 return UndefValue::get(Op1->getType());
990
Duncan Sands771e82a2011-01-28 16:51:11 +0000991 // undef / X -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000992 if (match(Op0, m_Undef()))
Duncan Sands771e82a2011-01-28 16:51:11 +0000993 return Constant::getNullValue(Op0->getType());
994
995 // 0 / X -> 0, we don't need to preserve faults!
996 if (match(Op0, m_Zero()))
997 return Op0;
998
999 // X / 1 -> X
1000 if (match(Op1, m_One()))
1001 return Op0;
Duncan Sands771e82a2011-01-28 16:51:11 +00001002
1003 if (Op0->getType()->isIntegerTy(1))
1004 // It can't be division by zero, hence it must be division by one.
1005 return Op0;
1006
1007 // X / X -> 1
1008 if (Op0 == Op1)
1009 return ConstantInt::get(Op0->getType(), 1);
1010
1011 // (X * Y) / Y -> X if the multiplication does not overflow.
Craig Topper9f008862014-04-15 04:59:12 +00001012 Value *X = nullptr, *Y = nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001013 if (match(Op0, m_Mul(m_Value(X), m_Value(Y))) && (X == Op1 || Y == Op1)) {
1014 if (Y != Op1) std::swap(X, Y); // Ensure expression is (X * Y) / Y, Y = Op1
Duncan Sands7cb61e52011-10-27 19:16:21 +00001015 OverflowingBinaryOperator *Mul = cast<OverflowingBinaryOperator>(Op0);
Duncan Sands5747aba2011-02-02 20:52:00 +00001016 // If the Mul knows it does not overflow, then we are good to go.
1017 if ((isSigned && Mul->hasNoSignedWrap()) ||
1018 (!isSigned && Mul->hasNoUnsignedWrap()))
1019 return X;
Duncan Sands771e82a2011-01-28 16:51:11 +00001020 // If X has the form X = A / Y then X * Y cannot overflow.
1021 if (BinaryOperator *Div = dyn_cast<BinaryOperator>(X))
1022 if (Div->getOpcode() == Opcode && Div->getOperand(1) == Y)
1023 return X;
1024 }
1025
Duncan Sands65995fa2011-01-28 18:50:50 +00001026 // (X rem Y) / Y -> 0
1027 if ((isSigned && match(Op0, m_SRem(m_Value(), m_Specific(Op1)))) ||
1028 (!isSigned && match(Op0, m_URem(m_Value(), m_Specific(Op1)))))
1029 return Constant::getNullValue(Op0->getType());
1030
David Majnemercb9d5962014-10-11 10:20:01 +00001031 // (X /u C1) /u C2 -> 0 if C1 * C2 overflow
1032 ConstantInt *C1, *C2;
1033 if (!isSigned && match(Op0, m_UDiv(m_Value(X), m_ConstantInt(C1))) &&
1034 match(Op1, m_ConstantInt(C2))) {
1035 bool Overflow;
1036 C1->getValue().umul_ov(C2->getValue(), Overflow);
1037 if (Overflow)
1038 return Constant::getNullValue(Op0->getType());
1039 }
1040
Duncan Sands65995fa2011-01-28 18:50:50 +00001041 // If the operation is with the result of a select instruction, check whether
1042 // operating on either branch of the select always yields the same value.
1043 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001044 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands65995fa2011-01-28 18:50:50 +00001045 return V;
1046
1047 // If the operation is with the result of a phi instruction, check whether
1048 // operating on all incoming values of the phi always yields the same value.
1049 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001050 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands65995fa2011-01-28 18:50:50 +00001051 return V;
1052
Craig Topper9f008862014-04-15 04:59:12 +00001053 return nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001054}
1055
Sanjay Patel472cc782016-01-11 22:14:42 +00001056/// Given operands for an SDiv, see if we can fold the result.
1057/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001058static Value *SimplifySDivInst(Value *Op0, Value *Op1, const Query &Q,
1059 unsigned MaxRecurse) {
1060 if (Value *V = SimplifyDiv(Instruction::SDiv, Op0, Op1, Q, MaxRecurse))
Duncan Sands771e82a2011-01-28 16:51:11 +00001061 return V;
1062
Craig Topper9f008862014-04-15 04:59:12 +00001063 return nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001064}
1065
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001066Value *llvm::SimplifySDivInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001067 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001068 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001069 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001070 return ::SimplifySDivInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001071 RecursionLimit);
Duncan Sands771e82a2011-01-28 16:51:11 +00001072}
1073
Sanjay Patel472cc782016-01-11 22:14:42 +00001074/// Given operands for a UDiv, see if we can fold the result.
1075/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001076static Value *SimplifyUDivInst(Value *Op0, Value *Op1, const Query &Q,
1077 unsigned MaxRecurse) {
1078 if (Value *V = SimplifyDiv(Instruction::UDiv, Op0, Op1, Q, MaxRecurse))
Duncan Sands771e82a2011-01-28 16:51:11 +00001079 return V;
1080
Craig Topper9f008862014-04-15 04:59:12 +00001081 return nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001082}
1083
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001084Value *llvm::SimplifyUDivInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001085 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001086 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001087 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001088 return ::SimplifyUDivInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001089 RecursionLimit);
Duncan Sands771e82a2011-01-28 16:51:11 +00001090}
1091
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001092static Value *SimplifyFDivInst(Value *Op0, Value *Op1, FastMathFlags FMF,
1093 const Query &Q, unsigned) {
Frits van Bommelc2549662011-01-29 15:26:31 +00001094 // undef / X -> undef (the undef could be a snan).
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001095 if (match(Op0, m_Undef()))
Frits van Bommelc2549662011-01-29 15:26:31 +00001096 return Op0;
1097
1098 // X / undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001099 if (match(Op1, m_Undef()))
Frits van Bommelc2549662011-01-29 15:26:31 +00001100 return Op1;
1101
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001102 // 0 / X -> 0
1103 // Requires that NaNs are off (X could be zero) and signed zeroes are
1104 // ignored (X could be positive or negative, so the output sign is unknown).
1105 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op0, m_AnyZero()))
1106 return Op0;
1107
Benjamin Kramer1ee59cb2015-06-16 14:57:29 +00001108 if (FMF.noNaNs()) {
1109 // X / X -> 1.0 is legal when NaNs are ignored.
Benjamin Kramer4f052462015-06-14 18:53:58 +00001110 if (Op0 == Op1)
1111 return ConstantFP::get(Op0->getType(), 1.0);
1112
1113 // -X / X -> -1.0 and
Benjamin Kramer1ee59cb2015-06-16 14:57:29 +00001114 // X / -X -> -1.0 are legal when NaNs are ignored.
Benjamin Kramer4f052462015-06-14 18:53:58 +00001115 // We can ignore signed zeros because +-0.0/+-0.0 is NaN and ignored.
1116 if ((BinaryOperator::isFNeg(Op0, /*IgnoreZeroSign=*/true) &&
1117 BinaryOperator::getFNegArgument(Op0) == Op1) ||
1118 (BinaryOperator::isFNeg(Op1, /*IgnoreZeroSign=*/true) &&
1119 BinaryOperator::getFNegArgument(Op1) == Op0))
1120 return ConstantFP::get(Op0->getType(), -1.0);
1121 }
1122
Craig Topper9f008862014-04-15 04:59:12 +00001123 return nullptr;
Frits van Bommelc2549662011-01-29 15:26:31 +00001124}
1125
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001126Value *llvm::SimplifyFDivInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001127 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001128 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001129 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001130 const Instruction *CxtI) {
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001131 return ::SimplifyFDivInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001132 RecursionLimit);
Frits van Bommelc2549662011-01-29 15:26:31 +00001133}
1134
Sanjay Patel472cc782016-01-11 22:14:42 +00001135/// Given operands for an SRem or URem, see if we can fold the result.
1136/// If not, this returns null.
Duncan Sandsa3e36992011-05-02 16:27:02 +00001137static Value *SimplifyRem(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001138 const Query &Q, unsigned MaxRecurse) {
Manuel Jacoba61ca372016-01-21 06:26:35 +00001139 if (Constant *C0 = dyn_cast<Constant>(Op0))
1140 if (Constant *C1 = dyn_cast<Constant>(Op1))
1141 return ConstantFoldBinaryOpOperands(Opcode, C0, C1, Q.DL);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001142
Duncan Sandsa3e36992011-05-02 16:27:02 +00001143 // X % undef -> undef
1144 if (match(Op1, m_Undef()))
1145 return Op1;
1146
1147 // undef % X -> 0
1148 if (match(Op0, m_Undef()))
1149 return Constant::getNullValue(Op0->getType());
1150
1151 // 0 % X -> 0, we don't need to preserve faults!
1152 if (match(Op0, m_Zero()))
1153 return Op0;
1154
1155 // X % 0 -> undef, we don't need to preserve faults!
1156 if (match(Op1, m_Zero()))
1157 return UndefValue::get(Op0->getType());
1158
1159 // X % 1 -> 0
1160 if (match(Op1, m_One()))
1161 return Constant::getNullValue(Op0->getType());
1162
1163 if (Op0->getType()->isIntegerTy(1))
1164 // It can't be remainder by zero, hence it must be remainder by one.
1165 return Constant::getNullValue(Op0->getType());
1166
1167 // X % X -> 0
1168 if (Op0 == Op1)
1169 return Constant::getNullValue(Op0->getType());
1170
David Majnemerb435a422014-09-17 04:16:35 +00001171 // (X % Y) % Y -> X % Y
1172 if ((Opcode == Instruction::SRem &&
1173 match(Op0, m_SRem(m_Value(), m_Specific(Op1)))) ||
1174 (Opcode == Instruction::URem &&
1175 match(Op0, m_URem(m_Value(), m_Specific(Op1)))))
David Majnemerac717f02014-09-17 03:34:34 +00001176 return Op0;
David Majnemerac717f02014-09-17 03:34:34 +00001177
Duncan Sandsa3e36992011-05-02 16:27:02 +00001178 // If the operation is with the result of a select instruction, check whether
1179 // operating on either branch of the select always yields the same value.
1180 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001181 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001182 return V;
1183
1184 // If the operation is with the result of a phi instruction, check whether
1185 // operating on all incoming values of the phi always yields the same value.
1186 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001187 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001188 return V;
1189
Craig Topper9f008862014-04-15 04:59:12 +00001190 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001191}
1192
Sanjay Patel472cc782016-01-11 22:14:42 +00001193/// Given operands for an SRem, see if we can fold the result.
1194/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001195static Value *SimplifySRemInst(Value *Op0, Value *Op1, const Query &Q,
1196 unsigned MaxRecurse) {
1197 if (Value *V = SimplifyRem(Instruction::SRem, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001198 return V;
1199
Craig Topper9f008862014-04-15 04:59:12 +00001200 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001201}
1202
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001203Value *llvm::SimplifySRemInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001204 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001205 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001206 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001207 return ::SimplifySRemInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001208 RecursionLimit);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001209}
1210
Sanjay Patel472cc782016-01-11 22:14:42 +00001211/// Given operands for a URem, see if we can fold the result.
1212/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001213static Value *SimplifyURemInst(Value *Op0, Value *Op1, const Query &Q,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001214 unsigned MaxRecurse) {
Duncan Sandsb8cee002012-03-13 11:42:19 +00001215 if (Value *V = SimplifyRem(Instruction::URem, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001216 return V;
1217
Craig Topper9f008862014-04-15 04:59:12 +00001218 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001219}
1220
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001221Value *llvm::SimplifyURemInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001222 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001223 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001224 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001225 return ::SimplifyURemInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001226 RecursionLimit);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001227}
1228
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001229static Value *SimplifyFRemInst(Value *Op0, Value *Op1, FastMathFlags FMF,
1230 const Query &, unsigned) {
Duncan Sandsa3e36992011-05-02 16:27:02 +00001231 // undef % X -> undef (the undef could be a snan).
1232 if (match(Op0, m_Undef()))
1233 return Op0;
1234
1235 // X % undef -> undef
1236 if (match(Op1, m_Undef()))
1237 return Op1;
1238
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001239 // 0 % X -> 0
1240 // Requires that NaNs are off (X could be zero) and signed zeroes are
1241 // ignored (X could be positive or negative, so the output sign is unknown).
1242 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op0, m_AnyZero()))
1243 return Op0;
1244
Craig Topper9f008862014-04-15 04:59:12 +00001245 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001246}
1247
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001248Value *llvm::SimplifyFRemInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001249 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001250 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001251 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001252 const Instruction *CxtI) {
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001253 return ::SimplifyFRemInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001254 RecursionLimit);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001255}
1256
Sanjay Patel472cc782016-01-11 22:14:42 +00001257/// Returns true if a shift by \c Amount always yields undef.
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00001258static bool isUndefShift(Value *Amount) {
1259 Constant *C = dyn_cast<Constant>(Amount);
1260 if (!C)
1261 return false;
1262
1263 // X shift by undef -> undef because it may shift by the bitwidth.
1264 if (isa<UndefValue>(C))
1265 return true;
1266
1267 // Shifting by the bitwidth or more is undefined.
1268 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
1269 if (CI->getValue().getLimitedValue() >=
1270 CI->getType()->getScalarSizeInBits())
1271 return true;
1272
1273 // If all lanes of a vector shift are undefined the whole shift is.
1274 if (isa<ConstantVector>(C) || isa<ConstantDataVector>(C)) {
1275 for (unsigned I = 0, E = C->getType()->getVectorNumElements(); I != E; ++I)
1276 if (!isUndefShift(C->getAggregateElement(I)))
1277 return false;
1278 return true;
1279 }
1280
1281 return false;
1282}
1283
Sanjay Patel472cc782016-01-11 22:14:42 +00001284/// Given operands for an Shl, LShr or AShr, see if we can fold the result.
1285/// If not, this returns null.
Duncan Sands571fd9a2011-01-14 14:44:12 +00001286static Value *SimplifyShift(unsigned Opcode, Value *Op0, Value *Op1,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001287 const Query &Q, unsigned MaxRecurse) {
Manuel Jacoba61ca372016-01-21 06:26:35 +00001288 if (Constant *C0 = dyn_cast<Constant>(Op0))
1289 if (Constant *C1 = dyn_cast<Constant>(Op1))
1290 return ConstantFoldBinaryOpOperands(Opcode, C0, C1, Q.DL);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001291
Duncan Sands571fd9a2011-01-14 14:44:12 +00001292 // 0 shift by X -> 0
Duncan Sands7f60dc12011-01-14 00:37:45 +00001293 if (match(Op0, m_Zero()))
1294 return Op0;
1295
Duncan Sands571fd9a2011-01-14 14:44:12 +00001296 // X shift by 0 -> X
Duncan Sands7f60dc12011-01-14 00:37:45 +00001297 if (match(Op1, m_Zero()))
1298 return Op0;
1299
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00001300 // Fold undefined shifts.
1301 if (isUndefShift(Op1))
1302 return UndefValue::get(Op0->getType());
Duncan Sands7f60dc12011-01-14 00:37:45 +00001303
Duncan Sands571fd9a2011-01-14 14:44:12 +00001304 // If the operation is with the result of a select instruction, check whether
1305 // operating on either branch of the select always yields the same value.
1306 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001307 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001308 return V;
1309
1310 // If the operation is with the result of a phi instruction, check whether
1311 // operating on all incoming values of the phi always yields the same value.
1312 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001313 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001314 return V;
1315
Craig Topper9f008862014-04-15 04:59:12 +00001316 return nullptr;
Duncan Sands571fd9a2011-01-14 14:44:12 +00001317}
1318
David Majnemerbf7550e2014-11-05 00:59:59 +00001319/// \brief Given operands for an Shl, LShr or AShr, see if we can
1320/// fold the result. If not, this returns null.
1321static Value *SimplifyRightShift(unsigned Opcode, Value *Op0, Value *Op1,
1322 bool isExact, const Query &Q,
1323 unsigned MaxRecurse) {
1324 if (Value *V = SimplifyShift(Opcode, Op0, Op1, Q, MaxRecurse))
1325 return V;
1326
1327 // X >> X -> 0
1328 if (Op0 == Op1)
1329 return Constant::getNullValue(Op0->getType());
1330
David Majnemer65c52ae2014-12-17 01:54:33 +00001331 // undef >> X -> 0
1332 // undef >> X -> undef (if it's exact)
1333 if (match(Op0, m_Undef()))
1334 return isExact ? Op0 : Constant::getNullValue(Op0->getType());
1335
David Majnemerbf7550e2014-11-05 00:59:59 +00001336 // The low bit cannot be shifted out of an exact shift if it is set.
1337 if (isExact) {
1338 unsigned BitWidth = Op0->getType()->getScalarSizeInBits();
1339 APInt Op0KnownZero(BitWidth, 0);
1340 APInt Op0KnownOne(BitWidth, 0);
Chandler Carruth66b31302015-01-04 12:03:27 +00001341 computeKnownBits(Op0, Op0KnownZero, Op0KnownOne, Q.DL, /*Depth=*/0, Q.AC,
1342 Q.CxtI, Q.DT);
David Majnemerbf7550e2014-11-05 00:59:59 +00001343 if (Op0KnownOne[0])
1344 return Op0;
1345 }
1346
1347 return nullptr;
1348}
1349
Sanjay Patel472cc782016-01-11 22:14:42 +00001350/// Given operands for an Shl, see if we can fold the result.
1351/// If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001352static Value *SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001353 const Query &Q, unsigned MaxRecurse) {
1354 if (Value *V = SimplifyShift(Instruction::Shl, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001355 return V;
1356
1357 // undef << X -> 0
David Majnemer65c52ae2014-12-17 01:54:33 +00001358 // undef << X -> undef if (if it's NSW/NUW)
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001359 if (match(Op0, m_Undef()))
David Majnemer65c52ae2014-12-17 01:54:33 +00001360 return isNSW || isNUW ? Op0 : Constant::getNullValue(Op0->getType());
Duncan Sands571fd9a2011-01-14 14:44:12 +00001361
Chris Lattner9e4aa022011-02-09 17:15:04 +00001362 // (X >> A) << A -> X
1363 Value *X;
Benjamin Kramer9442cd02012-01-01 17:55:30 +00001364 if (match(Op0, m_Exact(m_Shr(m_Value(X), m_Specific(Op1)))))
Chris Lattner9e4aa022011-02-09 17:15:04 +00001365 return X;
Craig Topper9f008862014-04-15 04:59:12 +00001366 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001367}
1368
Chris Lattner9e4aa022011-02-09 17:15:04 +00001369Value *llvm::SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001370 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001371 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001372 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001373 return ::SimplifyShlInst(Op0, Op1, isNSW, isNUW, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00001374 RecursionLimit);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001375}
1376
Sanjay Patel472cc782016-01-11 22:14:42 +00001377/// Given operands for an LShr, see if we can fold the result.
1378/// If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001379static Value *SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001380 const Query &Q, unsigned MaxRecurse) {
David Majnemerbf7550e2014-11-05 00:59:59 +00001381 if (Value *V = SimplifyRightShift(Instruction::LShr, Op0, Op1, isExact, Q,
1382 MaxRecurse))
1383 return V;
David Majnemera80fed72013-07-09 22:01:22 +00001384
Chris Lattner9e4aa022011-02-09 17:15:04 +00001385 // (X << A) >> A -> X
1386 Value *X;
David Majnemer4f438372014-11-04 17:38:50 +00001387 if (match(Op0, m_NUWShl(m_Value(X), m_Specific(Op1))))
Chris Lattner9e4aa022011-02-09 17:15:04 +00001388 return X;
Duncan Sandsd114ab32011-02-13 17:15:40 +00001389
Craig Topper9f008862014-04-15 04:59:12 +00001390 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001391}
1392
Chris Lattner9e4aa022011-02-09 17:15:04 +00001393Value *llvm::SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001394 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001395 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001396 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001397 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001398 return ::SimplifyLShrInst(Op0, Op1, isExact, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00001399 RecursionLimit);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001400}
1401
Sanjay Patel472cc782016-01-11 22:14:42 +00001402/// Given operands for an AShr, see if we can fold the result.
1403/// If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001404static Value *SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001405 const Query &Q, unsigned MaxRecurse) {
David Majnemerbf7550e2014-11-05 00:59:59 +00001406 if (Value *V = SimplifyRightShift(Instruction::AShr, Op0, Op1, isExact, Q,
1407 MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001408 return V;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001409
1410 // all ones >>a X -> all ones
1411 if (match(Op0, m_AllOnes()))
1412 return Op0;
1413
Chris Lattner9e4aa022011-02-09 17:15:04 +00001414 // (X << A) >> A -> X
1415 Value *X;
David Majnemer2de97fc2014-11-04 17:47:13 +00001416 if (match(Op0, m_NSWShl(m_Value(X), m_Specific(Op1))))
Chris Lattner9e4aa022011-02-09 17:15:04 +00001417 return X;
Duncan Sandsd114ab32011-02-13 17:15:40 +00001418
Suyog Sarda68862412014-07-17 06:28:15 +00001419 // Arithmetic shifting an all-sign-bit value is a no-op.
Chandler Carruth66b31302015-01-04 12:03:27 +00001420 unsigned NumSignBits = ComputeNumSignBits(Op0, Q.DL, 0, Q.AC, Q.CxtI, Q.DT);
Suyog Sarda68862412014-07-17 06:28:15 +00001421 if (NumSignBits == Op0->getType()->getScalarSizeInBits())
1422 return Op0;
1423
Craig Topper9f008862014-04-15 04:59:12 +00001424 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001425}
1426
Chris Lattner9e4aa022011-02-09 17:15:04 +00001427Value *llvm::SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001428 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001429 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001430 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001431 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001432 return ::SimplifyAShrInst(Op0, Op1, isExact, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00001433 RecursionLimit);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001434}
1435
David Majnemer1af36e52014-12-06 10:51:40 +00001436static Value *simplifyUnsignedRangeCheck(ICmpInst *ZeroICmp,
1437 ICmpInst *UnsignedICmp, bool IsAnd) {
1438 Value *X, *Y;
1439
1440 ICmpInst::Predicate EqPred;
David Majnemerd5b3aa42014-12-08 18:30:43 +00001441 if (!match(ZeroICmp, m_ICmp(EqPred, m_Value(Y), m_Zero())) ||
1442 !ICmpInst::isEquality(EqPred))
David Majnemer1af36e52014-12-06 10:51:40 +00001443 return nullptr;
1444
1445 ICmpInst::Predicate UnsignedPred;
1446 if (match(UnsignedICmp, m_ICmp(UnsignedPred, m_Value(X), m_Specific(Y))) &&
1447 ICmpInst::isUnsigned(UnsignedPred))
1448 ;
1449 else if (match(UnsignedICmp,
1450 m_ICmp(UnsignedPred, m_Value(Y), m_Specific(X))) &&
1451 ICmpInst::isUnsigned(UnsignedPred))
1452 UnsignedPred = ICmpInst::getSwappedPredicate(UnsignedPred);
1453 else
1454 return nullptr;
1455
1456 // X < Y && Y != 0 --> X < Y
1457 // X < Y || Y != 0 --> Y != 0
1458 if (UnsignedPred == ICmpInst::ICMP_ULT && EqPred == ICmpInst::ICMP_NE)
1459 return IsAnd ? UnsignedICmp : ZeroICmp;
1460
1461 // X >= Y || Y != 0 --> true
1462 // X >= Y || Y == 0 --> X >= Y
1463 if (UnsignedPred == ICmpInst::ICMP_UGE && !IsAnd) {
1464 if (EqPred == ICmpInst::ICMP_NE)
1465 return getTrue(UnsignedICmp->getType());
1466 return UnsignedICmp;
1467 }
1468
David Majnemerd5b3aa42014-12-08 18:30:43 +00001469 // X < Y && Y == 0 --> false
1470 if (UnsignedPred == ICmpInst::ICMP_ULT && EqPred == ICmpInst::ICMP_EQ &&
1471 IsAnd)
1472 return getFalse(UnsignedICmp->getType());
1473
David Majnemer1af36e52014-12-06 10:51:40 +00001474 return nullptr;
1475}
1476
Sanjay Patel472cc782016-01-11 22:14:42 +00001477/// Simplify (and (icmp ...) (icmp ...)) to true when we can tell that the range
1478/// of possible values cannot be satisfied.
David Majnemera315bd82014-09-15 08:15:28 +00001479static Value *SimplifyAndOfICmps(ICmpInst *Op0, ICmpInst *Op1) {
1480 ICmpInst::Predicate Pred0, Pred1;
1481 ConstantInt *CI1, *CI2;
1482 Value *V;
David Majnemer1af36e52014-12-06 10:51:40 +00001483
1484 if (Value *X = simplifyUnsignedRangeCheck(Op0, Op1, /*IsAnd=*/true))
1485 return X;
1486
David Majnemera315bd82014-09-15 08:15:28 +00001487 if (!match(Op0, m_ICmp(Pred0, m_Add(m_Value(V), m_ConstantInt(CI1)),
1488 m_ConstantInt(CI2))))
1489 return nullptr;
1490
1491 if (!match(Op1, m_ICmp(Pred1, m_Specific(V), m_Specific(CI1))))
1492 return nullptr;
1493
1494 Type *ITy = Op0->getType();
1495
1496 auto *AddInst = cast<BinaryOperator>(Op0->getOperand(0));
1497 bool isNSW = AddInst->hasNoSignedWrap();
1498 bool isNUW = AddInst->hasNoUnsignedWrap();
1499
1500 const APInt &CI1V = CI1->getValue();
1501 const APInt &CI2V = CI2->getValue();
1502 const APInt Delta = CI2V - CI1V;
1503 if (CI1V.isStrictlyPositive()) {
1504 if (Delta == 2) {
1505 if (Pred0 == ICmpInst::ICMP_ULT && Pred1 == ICmpInst::ICMP_SGT)
1506 return getFalse(ITy);
1507 if (Pred0 == ICmpInst::ICMP_SLT && Pred1 == ICmpInst::ICMP_SGT && isNSW)
1508 return getFalse(ITy);
1509 }
1510 if (Delta == 1) {
1511 if (Pred0 == ICmpInst::ICMP_ULE && Pred1 == ICmpInst::ICMP_SGT)
1512 return getFalse(ITy);
1513 if (Pred0 == ICmpInst::ICMP_SLE && Pred1 == ICmpInst::ICMP_SGT && isNSW)
1514 return getFalse(ITy);
1515 }
1516 }
1517 if (CI1V.getBoolValue() && isNUW) {
1518 if (Delta == 2)
1519 if (Pred0 == ICmpInst::ICMP_ULT && Pred1 == ICmpInst::ICMP_UGT)
1520 return getFalse(ITy);
1521 if (Delta == 1)
1522 if (Pred0 == ICmpInst::ICMP_ULE && Pred1 == ICmpInst::ICMP_UGT)
1523 return getFalse(ITy);
1524 }
1525
1526 return nullptr;
1527}
1528
Sanjay Patel472cc782016-01-11 22:14:42 +00001529/// Given operands for an And, see if we can fold the result.
1530/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001531static Value *SimplifyAndInst(Value *Op0, Value *Op1, const Query &Q,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001532 unsigned MaxRecurse) {
Chris Lattnera71e9d62009-11-10 00:55:12 +00001533 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
Manuel Jacoba61ca372016-01-21 06:26:35 +00001534 if (Constant *CRHS = dyn_cast<Constant>(Op1))
1535 return ConstantFoldBinaryOpOperands(Instruction::And, CLHS, CRHS, Q.DL);
Duncan Sands7e800d62010-11-14 11:23:23 +00001536
Chris Lattnera71e9d62009-11-10 00:55:12 +00001537 // Canonicalize the constant to the RHS.
1538 std::swap(Op0, Op1);
1539 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001540
Chris Lattnera71e9d62009-11-10 00:55:12 +00001541 // X & undef -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001542 if (match(Op1, m_Undef()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001543 return Constant::getNullValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001544
Chris Lattnera71e9d62009-11-10 00:55:12 +00001545 // X & X = X
Duncan Sands772749a2011-01-01 20:08:02 +00001546 if (Op0 == Op1)
Chris Lattnera71e9d62009-11-10 00:55:12 +00001547 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001548
Duncan Sandsc89ac072010-11-17 18:52:15 +00001549 // X & 0 = 0
1550 if (match(Op1, m_Zero()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001551 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001552
Duncan Sandsc89ac072010-11-17 18:52:15 +00001553 // X & -1 = X
1554 if (match(Op1, m_AllOnes()))
1555 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001556
Chris Lattnera71e9d62009-11-10 00:55:12 +00001557 // A & ~A = ~A & A = 0
Chris Lattner9e4aa022011-02-09 17:15:04 +00001558 if (match(Op0, m_Not(m_Specific(Op1))) ||
1559 match(Op1, m_Not(m_Specific(Op0))))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001560 return Constant::getNullValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001561
Chris Lattnera71e9d62009-11-10 00:55:12 +00001562 // (A | ?) & A = A
Craig Topper9f008862014-04-15 04:59:12 +00001563 Value *A = nullptr, *B = nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00001564 if (match(Op0, m_Or(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001565 (A == Op1 || B == Op1))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001566 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001567
Chris Lattnera71e9d62009-11-10 00:55:12 +00001568 // A & (A | ?) = A
1569 if (match(Op1, m_Or(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001570 (A == Op0 || B == Op0))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001571 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001572
Duncan Sandsba286d72011-10-26 20:55:21 +00001573 // A & (-A) = A if A is a power of two or zero.
1574 if (match(Op0, m_Neg(m_Specific(Op1))) ||
1575 match(Op1, m_Neg(m_Specific(Op0)))) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001576 if (isKnownToBeAPowerOfTwo(Op0, Q.DL, /*OrZero*/ true, 0, Q.AC, Q.CxtI,
1577 Q.DT))
Duncan Sandsba286d72011-10-26 20:55:21 +00001578 return Op0;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001579 if (isKnownToBeAPowerOfTwo(Op1, Q.DL, /*OrZero*/ true, 0, Q.AC, Q.CxtI,
1580 Q.DT))
Duncan Sandsba286d72011-10-26 20:55:21 +00001581 return Op1;
1582 }
1583
David Majnemera315bd82014-09-15 08:15:28 +00001584 if (auto *ICILHS = dyn_cast<ICmpInst>(Op0)) {
1585 if (auto *ICIRHS = dyn_cast<ICmpInst>(Op1)) {
1586 if (Value *V = SimplifyAndOfICmps(ICILHS, ICIRHS))
1587 return V;
1588 if (Value *V = SimplifyAndOfICmps(ICIRHS, ICILHS))
1589 return V;
1590 }
1591 }
1592
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001593 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001594 if (Value *V = SimplifyAssociativeBinOp(Instruction::And, Op0, Op1, Q,
1595 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001596 return V;
Benjamin Kramer8c35fb02010-09-10 22:39:55 +00001597
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001598 // And distributes over Or. Try some generic simplifications based on this.
1599 if (Value *V = ExpandBinOp(Instruction::And, Op0, Op1, Instruction::Or,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001600 Q, MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001601 return V;
1602
1603 // And distributes over Xor. Try some generic simplifications based on this.
1604 if (Value *V = ExpandBinOp(Instruction::And, Op0, Op1, Instruction::Xor,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001605 Q, MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001606 return V;
1607
Duncan Sandsb0579e92010-11-10 13:00:08 +00001608 // If the operation is with the result of a select instruction, check whether
1609 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001610 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001611 if (Value *V = ThreadBinOpOverSelect(Instruction::And, Op0, Op1, Q,
1612 MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001613 return V;
1614
1615 // If the operation is with the result of a phi instruction, check whether
1616 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001617 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001618 if (Value *V = ThreadBinOpOverPHI(Instruction::And, Op0, Op1, Q,
Duncan Sandsf64e6902010-12-21 09:09:15 +00001619 MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00001620 return V;
1621
Craig Topper9f008862014-04-15 04:59:12 +00001622 return nullptr;
Chris Lattner084a1b52009-11-09 22:57:59 +00001623}
1624
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001625Value *llvm::SimplifyAndInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001626 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001627 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001628 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001629 return ::SimplifyAndInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001630 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001631}
1632
Sanjay Patel472cc782016-01-11 22:14:42 +00001633/// Simplify (or (icmp ...) (icmp ...)) to true when we can tell that the union
1634/// contains all possible values.
David Majnemera315bd82014-09-15 08:15:28 +00001635static Value *SimplifyOrOfICmps(ICmpInst *Op0, ICmpInst *Op1) {
1636 ICmpInst::Predicate Pred0, Pred1;
1637 ConstantInt *CI1, *CI2;
1638 Value *V;
David Majnemer1af36e52014-12-06 10:51:40 +00001639
1640 if (Value *X = simplifyUnsignedRangeCheck(Op0, Op1, /*IsAnd=*/false))
1641 return X;
1642
David Majnemera315bd82014-09-15 08:15:28 +00001643 if (!match(Op0, m_ICmp(Pred0, m_Add(m_Value(V), m_ConstantInt(CI1)),
1644 m_ConstantInt(CI2))))
1645 return nullptr;
1646
1647 if (!match(Op1, m_ICmp(Pred1, m_Specific(V), m_Specific(CI1))))
1648 return nullptr;
1649
1650 Type *ITy = Op0->getType();
1651
1652 auto *AddInst = cast<BinaryOperator>(Op0->getOperand(0));
1653 bool isNSW = AddInst->hasNoSignedWrap();
1654 bool isNUW = AddInst->hasNoUnsignedWrap();
1655
1656 const APInt &CI1V = CI1->getValue();
1657 const APInt &CI2V = CI2->getValue();
1658 const APInt Delta = CI2V - CI1V;
1659 if (CI1V.isStrictlyPositive()) {
1660 if (Delta == 2) {
1661 if (Pred0 == ICmpInst::ICMP_UGE && Pred1 == ICmpInst::ICMP_SLE)
1662 return getTrue(ITy);
1663 if (Pred0 == ICmpInst::ICMP_SGE && Pred1 == ICmpInst::ICMP_SLE && isNSW)
1664 return getTrue(ITy);
1665 }
1666 if (Delta == 1) {
1667 if (Pred0 == ICmpInst::ICMP_UGT && Pred1 == ICmpInst::ICMP_SLE)
1668 return getTrue(ITy);
1669 if (Pred0 == ICmpInst::ICMP_SGT && Pred1 == ICmpInst::ICMP_SLE && isNSW)
1670 return getTrue(ITy);
1671 }
1672 }
1673 if (CI1V.getBoolValue() && isNUW) {
1674 if (Delta == 2)
1675 if (Pred0 == ICmpInst::ICMP_UGE && Pred1 == ICmpInst::ICMP_ULE)
1676 return getTrue(ITy);
1677 if (Delta == 1)
1678 if (Pred0 == ICmpInst::ICMP_UGT && Pred1 == ICmpInst::ICMP_ULE)
1679 return getTrue(ITy);
1680 }
1681
1682 return nullptr;
1683}
1684
Sanjay Patel472cc782016-01-11 22:14:42 +00001685/// Given operands for an Or, see if we can fold the result.
1686/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001687static Value *SimplifyOrInst(Value *Op0, Value *Op1, const Query &Q,
1688 unsigned MaxRecurse) {
Chris Lattnera71e9d62009-11-10 00:55:12 +00001689 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
Manuel Jacoba61ca372016-01-21 06:26:35 +00001690 if (Constant *CRHS = dyn_cast<Constant>(Op1))
1691 return ConstantFoldBinaryOpOperands(Instruction::Or, CLHS, CRHS, Q.DL);
Duncan Sands7e800d62010-11-14 11:23:23 +00001692
Chris Lattnera71e9d62009-11-10 00:55:12 +00001693 // Canonicalize the constant to the RHS.
1694 std::swap(Op0, Op1);
1695 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001696
Chris Lattnera71e9d62009-11-10 00:55:12 +00001697 // X | undef -> -1
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001698 if (match(Op1, m_Undef()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001699 return Constant::getAllOnesValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001700
Chris Lattnera71e9d62009-11-10 00:55:12 +00001701 // X | X = X
Duncan Sands772749a2011-01-01 20:08:02 +00001702 if (Op0 == Op1)
Chris Lattnera71e9d62009-11-10 00:55:12 +00001703 return Op0;
1704
Duncan Sandsc89ac072010-11-17 18:52:15 +00001705 // X | 0 = X
1706 if (match(Op1, m_Zero()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001707 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001708
Duncan Sandsc89ac072010-11-17 18:52:15 +00001709 // X | -1 = -1
1710 if (match(Op1, m_AllOnes()))
1711 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001712
Chris Lattnera71e9d62009-11-10 00:55:12 +00001713 // A | ~A = ~A | A = -1
Chris Lattner9e4aa022011-02-09 17:15:04 +00001714 if (match(Op0, m_Not(m_Specific(Op1))) ||
1715 match(Op1, m_Not(m_Specific(Op0))))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001716 return Constant::getAllOnesValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001717
Chris Lattnera71e9d62009-11-10 00:55:12 +00001718 // (A & ?) | A = A
Craig Topper9f008862014-04-15 04:59:12 +00001719 Value *A = nullptr, *B = nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00001720 if (match(Op0, m_And(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001721 (A == Op1 || B == Op1))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001722 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001723
Chris Lattnera71e9d62009-11-10 00:55:12 +00001724 // A | (A & ?) = A
1725 if (match(Op1, m_And(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001726 (A == Op0 || B == Op0))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001727 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001728
Benjamin Kramer5b7a4e02011-02-20 15:20:01 +00001729 // ~(A & ?) | A = -1
1730 if (match(Op0, m_Not(m_And(m_Value(A), m_Value(B)))) &&
1731 (A == Op1 || B == Op1))
1732 return Constant::getAllOnesValue(Op1->getType());
1733
1734 // A | ~(A & ?) = -1
1735 if (match(Op1, m_Not(m_And(m_Value(A), m_Value(B)))) &&
1736 (A == Op0 || B == Op0))
1737 return Constant::getAllOnesValue(Op0->getType());
1738
David Majnemera315bd82014-09-15 08:15:28 +00001739 if (auto *ICILHS = dyn_cast<ICmpInst>(Op0)) {
1740 if (auto *ICIRHS = dyn_cast<ICmpInst>(Op1)) {
1741 if (Value *V = SimplifyOrOfICmps(ICILHS, ICIRHS))
1742 return V;
1743 if (Value *V = SimplifyOrOfICmps(ICIRHS, ICILHS))
1744 return V;
1745 }
1746 }
1747
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001748 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001749 if (Value *V = SimplifyAssociativeBinOp(Instruction::Or, Op0, Op1, Q,
1750 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001751 return V;
Benjamin Kramer8c35fb02010-09-10 22:39:55 +00001752
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001753 // Or distributes over And. Try some generic simplifications based on this.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001754 if (Value *V = ExpandBinOp(Instruction::Or, Op0, Op1, Instruction::And, Q,
1755 MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001756 return V;
1757
Duncan Sandsb0579e92010-11-10 13:00:08 +00001758 // If the operation is with the result of a select instruction, check whether
1759 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001760 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001761 if (Value *V = ThreadBinOpOverSelect(Instruction::Or, Op0, Op1, Q,
Duncan Sandsf64e6902010-12-21 09:09:15 +00001762 MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001763 return V;
1764
Nick Lewycky8561a492014-06-19 03:51:46 +00001765 // (A & C)|(B & D)
1766 Value *C = nullptr, *D = nullptr;
1767 if (match(Op0, m_And(m_Value(A), m_Value(C))) &&
1768 match(Op1, m_And(m_Value(B), m_Value(D)))) {
1769 ConstantInt *C1 = dyn_cast<ConstantInt>(C);
1770 ConstantInt *C2 = dyn_cast<ConstantInt>(D);
1771 if (C1 && C2 && (C1->getValue() == ~C2->getValue())) {
1772 // (A & C1)|(B & C2)
1773 // If we have: ((V + N) & C1) | (V & C2)
1774 // .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0
1775 // replace with V+N.
1776 Value *V1, *V2;
1777 if ((C2->getValue() & (C2->getValue() + 1)) == 0 && // C2 == 0+1+
1778 match(A, m_Add(m_Value(V1), m_Value(V2)))) {
1779 // Add commutes, try both ways.
Chandler Carruth66b31302015-01-04 12:03:27 +00001780 if (V1 == B &&
1781 MaskedValueIsZero(V2, C2->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001782 return A;
Chandler Carruth66b31302015-01-04 12:03:27 +00001783 if (V2 == B &&
1784 MaskedValueIsZero(V1, C2->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001785 return A;
1786 }
1787 // Or commutes, try both ways.
1788 if ((C1->getValue() & (C1->getValue() + 1)) == 0 &&
1789 match(B, m_Add(m_Value(V1), m_Value(V2)))) {
1790 // Add commutes, try both ways.
Chandler Carruth66b31302015-01-04 12:03:27 +00001791 if (V1 == A &&
1792 MaskedValueIsZero(V2, C1->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001793 return B;
Chandler Carruth66b31302015-01-04 12:03:27 +00001794 if (V2 == A &&
1795 MaskedValueIsZero(V1, C1->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001796 return B;
1797 }
1798 }
1799 }
1800
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001801 // If the operation is with the result of a phi instruction, check whether
1802 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001803 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001804 if (Value *V = ThreadBinOpOverPHI(Instruction::Or, Op0, Op1, Q, MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00001805 return V;
1806
Craig Topper9f008862014-04-15 04:59:12 +00001807 return nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00001808}
1809
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001810Value *llvm::SimplifyOrInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001811 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001812 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001813 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001814 return ::SimplifyOrInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001815 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001816}
Chris Lattnera71e9d62009-11-10 00:55:12 +00001817
Sanjay Patel472cc782016-01-11 22:14:42 +00001818/// Given operands for a Xor, see if we can fold the result.
1819/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001820static Value *SimplifyXorInst(Value *Op0, Value *Op1, const Query &Q,
1821 unsigned MaxRecurse) {
Duncan Sandsc89ac072010-11-17 18:52:15 +00001822 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
Manuel Jacoba61ca372016-01-21 06:26:35 +00001823 if (Constant *CRHS = dyn_cast<Constant>(Op1))
1824 return ConstantFoldBinaryOpOperands(Instruction::Xor, CLHS, CRHS, Q.DL);
Duncan Sandsc89ac072010-11-17 18:52:15 +00001825
1826 // Canonicalize the constant to the RHS.
1827 std::swap(Op0, Op1);
1828 }
1829
1830 // A ^ undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001831 if (match(Op1, m_Undef()))
Duncan Sands019a4182010-12-15 11:02:22 +00001832 return Op1;
Duncan Sandsc89ac072010-11-17 18:52:15 +00001833
1834 // A ^ 0 = A
1835 if (match(Op1, m_Zero()))
1836 return Op0;
1837
Eli Friedmanad3cfe72011-08-17 19:31:49 +00001838 // A ^ A = 0
1839 if (Op0 == Op1)
1840 return Constant::getNullValue(Op0->getType());
1841
Duncan Sandsc89ac072010-11-17 18:52:15 +00001842 // A ^ ~A = ~A ^ A = -1
Chris Lattner9e4aa022011-02-09 17:15:04 +00001843 if (match(Op0, m_Not(m_Specific(Op1))) ||
1844 match(Op1, m_Not(m_Specific(Op0))))
Duncan Sandsc89ac072010-11-17 18:52:15 +00001845 return Constant::getAllOnesValue(Op0->getType());
1846
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001847 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001848 if (Value *V = SimplifyAssociativeBinOp(Instruction::Xor, Op0, Op1, Q,
1849 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001850 return V;
Duncan Sandsc89ac072010-11-17 18:52:15 +00001851
Duncan Sandsb238de02010-11-19 09:20:39 +00001852 // Threading Xor over selects and phi nodes is pointless, so don't bother.
1853 // Threading over the select in "A ^ select(cond, B, C)" means evaluating
1854 // "A^B" and "A^C" and seeing if they are equal; but they are equal if and
1855 // only if B and C are equal. If B and C are equal then (since we assume
1856 // that operands have already been simplified) "select(cond, B, C)" should
1857 // have been simplified to the common value of B and C already. Analysing
1858 // "A^B" and "A^C" thus gains nothing, but costs compile time. Similarly
1859 // for threading over phi nodes.
Duncan Sandsc89ac072010-11-17 18:52:15 +00001860
Craig Topper9f008862014-04-15 04:59:12 +00001861 return nullptr;
Duncan Sandsc89ac072010-11-17 18:52:15 +00001862}
1863
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001864Value *llvm::SimplifyXorInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001865 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001866 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001867 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001868 return ::SimplifyXorInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001869 RecursionLimit);
Duncan Sandsc89ac072010-11-17 18:52:15 +00001870}
1871
Chris Lattner229907c2011-07-18 04:54:35 +00001872static Type *GetCompareTy(Value *Op) {
Chris Lattnerccfdceb2009-11-09 23:55:12 +00001873 return CmpInst::makeCmpResultType(Op->getType());
1874}
1875
Sanjay Patel472cc782016-01-11 22:14:42 +00001876/// Rummage around inside V looking for something equivalent to the comparison
1877/// "LHS Pred RHS". Return such a value if found, otherwise return null.
1878/// Helper function for analyzing max/min idioms.
Duncan Sandsaf327282011-05-07 16:56:49 +00001879static Value *ExtractEquivalentCondition(Value *V, CmpInst::Predicate Pred,
1880 Value *LHS, Value *RHS) {
1881 SelectInst *SI = dyn_cast<SelectInst>(V);
1882 if (!SI)
Craig Topper9f008862014-04-15 04:59:12 +00001883 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00001884 CmpInst *Cmp = dyn_cast<CmpInst>(SI->getCondition());
1885 if (!Cmp)
Craig Topper9f008862014-04-15 04:59:12 +00001886 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00001887 Value *CmpLHS = Cmp->getOperand(0), *CmpRHS = Cmp->getOperand(1);
1888 if (Pred == Cmp->getPredicate() && LHS == CmpLHS && RHS == CmpRHS)
1889 return Cmp;
1890 if (Pred == CmpInst::getSwappedPredicate(Cmp->getPredicate()) &&
1891 LHS == CmpRHS && RHS == CmpLHS)
1892 return Cmp;
Craig Topper9f008862014-04-15 04:59:12 +00001893 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00001894}
1895
Dan Gohman9631d902013-02-01 00:49:06 +00001896// A significant optimization not implemented here is assuming that alloca
1897// addresses are not equal to incoming argument values. They don't *alias*,
1898// as we say, but that doesn't mean they aren't equal, so we take a
1899// conservative approach.
1900//
1901// This is inspired in part by C++11 5.10p1:
1902// "Two pointers of the same type compare equal if and only if they are both
1903// null, both point to the same function, or both represent the same
1904// address."
1905//
1906// This is pretty permissive.
1907//
1908// It's also partly due to C11 6.5.9p6:
1909// "Two pointers compare equal if and only if both are null pointers, both are
1910// pointers to the same object (including a pointer to an object and a
1911// subobject at its beginning) or function, both are pointers to one past the
1912// last element of the same array object, or one is a pointer to one past the
1913// end of one array object and the other is a pointer to the start of a
NAKAMURA Takumi065fd352013-04-08 23:05:21 +00001914// different array object that happens to immediately follow the first array
Dan Gohman9631d902013-02-01 00:49:06 +00001915// object in the address space.)
1916//
1917// C11's version is more restrictive, however there's no reason why an argument
1918// couldn't be a one-past-the-end value for a stack object in the caller and be
1919// equal to the beginning of a stack object in the callee.
1920//
1921// If the C and C++ standards are ever made sufficiently restrictive in this
1922// area, it may be possible to update LLVM's semantics accordingly and reinstate
1923// this optimization.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001924static Constant *computePointerICmp(const DataLayout &DL,
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001925 const TargetLibraryInfo *TLI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001926 CmpInst::Predicate Pred, Value *LHS,
1927 Value *RHS) {
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001928 // First, skip past any trivial no-ops.
1929 LHS = LHS->stripPointerCasts();
1930 RHS = RHS->stripPointerCasts();
1931
1932 // A non-null pointer is not equal to a null pointer.
Benjamin Kramerfd4777c2013-09-24 16:37:51 +00001933 if (llvm::isKnownNonNull(LHS, TLI) && isa<ConstantPointerNull>(RHS) &&
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001934 (Pred == CmpInst::ICMP_EQ || Pred == CmpInst::ICMP_NE))
1935 return ConstantInt::get(GetCompareTy(LHS),
1936 !CmpInst::isTrueWhenEqual(Pred));
1937
Chandler Carruth8059c842012-03-25 21:28:14 +00001938 // We can only fold certain predicates on pointer comparisons.
1939 switch (Pred) {
1940 default:
Craig Topper9f008862014-04-15 04:59:12 +00001941 return nullptr;
Chandler Carruth8059c842012-03-25 21:28:14 +00001942
1943 // Equality comaprisons are easy to fold.
1944 case CmpInst::ICMP_EQ:
1945 case CmpInst::ICMP_NE:
1946 break;
1947
1948 // We can only handle unsigned relational comparisons because 'inbounds' on
1949 // a GEP only protects against unsigned wrapping.
1950 case CmpInst::ICMP_UGT:
1951 case CmpInst::ICMP_UGE:
1952 case CmpInst::ICMP_ULT:
1953 case CmpInst::ICMP_ULE:
1954 // However, we have to switch them to their signed variants to handle
1955 // negative indices from the base pointer.
1956 Pred = ICmpInst::getSignedPredicate(Pred);
1957 break;
1958 }
1959
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001960 // Strip off any constant offsets so that we can reason about them.
1961 // It's tempting to use getUnderlyingObject or even just stripInBoundsOffsets
1962 // here and compare base addresses like AliasAnalysis does, however there are
1963 // numerous hazards. AliasAnalysis and its utilities rely on special rules
1964 // governing loads and stores which don't apply to icmps. Also, AliasAnalysis
1965 // doesn't need to guarantee pointer inequality when it says NoAlias.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001966 Constant *LHSOffset = stripAndComputeConstantOffsets(DL, LHS);
1967 Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS);
Chandler Carruth8059c842012-03-25 21:28:14 +00001968
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001969 // If LHS and RHS are related via constant offsets to the same base
1970 // value, we can replace it with an icmp which just compares the offsets.
1971 if (LHS == RHS)
1972 return ConstantExpr::getICmp(Pred, LHSOffset, RHSOffset);
Chandler Carruth8059c842012-03-25 21:28:14 +00001973
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001974 // Various optimizations for (in)equality comparisons.
1975 if (Pred == CmpInst::ICMP_EQ || Pred == CmpInst::ICMP_NE) {
1976 // Different non-empty allocations that exist at the same time have
1977 // different addresses (if the program can tell). Global variables always
1978 // exist, so they always exist during the lifetime of each other and all
1979 // allocas. Two different allocas usually have different addresses...
1980 //
1981 // However, if there's an @llvm.stackrestore dynamically in between two
1982 // allocas, they may have the same address. It's tempting to reduce the
1983 // scope of the problem by only looking at *static* allocas here. That would
1984 // cover the majority of allocas while significantly reducing the likelihood
1985 // of having an @llvm.stackrestore pop up in the middle. However, it's not
1986 // actually impossible for an @llvm.stackrestore to pop up in the middle of
1987 // an entry block. Also, if we have a block that's not attached to a
1988 // function, we can't tell if it's "static" under the current definition.
1989 // Theoretically, this problem could be fixed by creating a new kind of
1990 // instruction kind specifically for static allocas. Such a new instruction
1991 // could be required to be at the top of the entry block, thus preventing it
1992 // from being subject to a @llvm.stackrestore. Instcombine could even
1993 // convert regular allocas into these special allocas. It'd be nifty.
1994 // However, until then, this problem remains open.
1995 //
1996 // So, we'll assume that two non-empty allocas have different addresses
1997 // for now.
1998 //
1999 // With all that, if the offsets are within the bounds of their allocations
2000 // (and not one-past-the-end! so we can't use inbounds!), and their
2001 // allocations aren't the same, the pointers are not equal.
2002 //
2003 // Note that it's not necessary to check for LHS being a global variable
2004 // address, due to canonicalization and constant folding.
2005 if (isa<AllocaInst>(LHS) &&
2006 (isa<AllocaInst>(RHS) || isa<GlobalVariable>(RHS))) {
Benjamin Kramerc05aa952013-02-01 15:21:10 +00002007 ConstantInt *LHSOffsetCI = dyn_cast<ConstantInt>(LHSOffset);
2008 ConstantInt *RHSOffsetCI = dyn_cast<ConstantInt>(RHSOffset);
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002009 uint64_t LHSSize, RHSSize;
Benjamin Kramerc05aa952013-02-01 15:21:10 +00002010 if (LHSOffsetCI && RHSOffsetCI &&
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002011 getObjectSize(LHS, LHSSize, DL, TLI) &&
2012 getObjectSize(RHS, RHSSize, DL, TLI)) {
Benjamin Kramerc05aa952013-02-01 15:21:10 +00002013 const APInt &LHSOffsetValue = LHSOffsetCI->getValue();
2014 const APInt &RHSOffsetValue = RHSOffsetCI->getValue();
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002015 if (!LHSOffsetValue.isNegative() &&
2016 !RHSOffsetValue.isNegative() &&
2017 LHSOffsetValue.ult(LHSSize) &&
2018 RHSOffsetValue.ult(RHSSize)) {
2019 return ConstantInt::get(GetCompareTy(LHS),
2020 !CmpInst::isTrueWhenEqual(Pred));
2021 }
2022 }
2023
2024 // Repeat the above check but this time without depending on DataLayout
2025 // or being able to compute a precise size.
2026 if (!cast<PointerType>(LHS->getType())->isEmptyTy() &&
2027 !cast<PointerType>(RHS->getType())->isEmptyTy() &&
2028 LHSOffset->isNullValue() &&
2029 RHSOffset->isNullValue())
2030 return ConstantInt::get(GetCompareTy(LHS),
2031 !CmpInst::isTrueWhenEqual(Pred));
2032 }
Benjamin Kramer942dfe62013-09-23 14:16:38 +00002033
2034 // Even if an non-inbounds GEP occurs along the path we can still optimize
2035 // equality comparisons concerning the result. We avoid walking the whole
2036 // chain again by starting where the last calls to
2037 // stripAndComputeConstantOffsets left off and accumulate the offsets.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002038 Constant *LHSNoBound = stripAndComputeConstantOffsets(DL, LHS, true);
2039 Constant *RHSNoBound = stripAndComputeConstantOffsets(DL, RHS, true);
Benjamin Kramer942dfe62013-09-23 14:16:38 +00002040 if (LHS == RHS)
2041 return ConstantExpr::getICmp(Pred,
2042 ConstantExpr::getAdd(LHSOffset, LHSNoBound),
2043 ConstantExpr::getAdd(RHSOffset, RHSNoBound));
Hal Finkelafcd8db2014-12-01 23:38:06 +00002044
2045 // If one side of the equality comparison must come from a noalias call
2046 // (meaning a system memory allocation function), and the other side must
2047 // come from a pointer that cannot overlap with dynamically-allocated
2048 // memory within the lifetime of the current function (allocas, byval
2049 // arguments, globals), then determine the comparison result here.
2050 SmallVector<Value *, 8> LHSUObjs, RHSUObjs;
2051 GetUnderlyingObjects(LHS, LHSUObjs, DL);
2052 GetUnderlyingObjects(RHS, RHSUObjs, DL);
2053
2054 // Is the set of underlying objects all noalias calls?
2055 auto IsNAC = [](SmallVectorImpl<Value *> &Objects) {
Craig Topperb4b66d02015-11-29 04:37:14 +00002056 return std::all_of(Objects.begin(), Objects.end(), isNoAliasCall);
Hal Finkelafcd8db2014-12-01 23:38:06 +00002057 };
2058
2059 // Is the set of underlying objects all things which must be disjoint from
Hal Finkelaa19baf2014-12-04 17:45:19 +00002060 // noalias calls. For allocas, we consider only static ones (dynamic
2061 // allocas might be transformed into calls to malloc not simultaneously
2062 // live with the compared-to allocation). For globals, we exclude symbols
2063 // that might be resolve lazily to symbols in another dynamically-loaded
2064 // library (and, thus, could be malloc'ed by the implementation).
Hal Finkelafcd8db2014-12-01 23:38:06 +00002065 auto IsAllocDisjoint = [](SmallVectorImpl<Value *> &Objects) {
Sanjay Patel34ea70a2016-01-11 22:24:35 +00002066 return std::all_of(Objects.begin(), Objects.end(), [](Value *V) {
2067 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V))
2068 return AI->getParent() && AI->getFunction() && AI->isStaticAlloca();
2069 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
2070 return (GV->hasLocalLinkage() || GV->hasHiddenVisibility() ||
2071 GV->hasProtectedVisibility() || GV->hasUnnamedAddr()) &&
2072 !GV->isThreadLocal();
2073 if (const Argument *A = dyn_cast<Argument>(V))
2074 return A->hasByValAttr();
2075 return false;
2076 });
Hal Finkelafcd8db2014-12-01 23:38:06 +00002077 };
2078
2079 if ((IsNAC(LHSUObjs) && IsAllocDisjoint(RHSUObjs)) ||
2080 (IsNAC(RHSUObjs) && IsAllocDisjoint(LHSUObjs)))
2081 return ConstantInt::get(GetCompareTy(LHS),
2082 !CmpInst::isTrueWhenEqual(Pred));
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002083 }
2084
2085 // Otherwise, fail.
Craig Topper9f008862014-04-15 04:59:12 +00002086 return nullptr;
Chandler Carruth8059c842012-03-25 21:28:14 +00002087}
Chris Lattner01990f02012-02-24 19:01:58 +00002088
Sanjay Patel472cc782016-01-11 22:14:42 +00002089/// Given operands for an ICmpInst, see if we can fold the result.
2090/// If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00002091static Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00002092 const Query &Q, unsigned MaxRecurse) {
Chris Lattner084a1b52009-11-09 22:57:59 +00002093 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate;
Chris Lattnerc1f19072009-11-09 23:28:39 +00002094 assert(CmpInst::isIntPredicate(Pred) && "Not an integer compare!");
Duncan Sands7e800d62010-11-14 11:23:23 +00002095
Chris Lattnera71e9d62009-11-10 00:55:12 +00002096 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
Chris Lattnercdfb80d2009-11-09 23:06:58 +00002097 if (Constant *CRHS = dyn_cast<Constant>(RHS))
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002098 return ConstantFoldCompareInstOperands(Pred, CLHS, CRHS, Q.DL, Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00002099
2100 // If we have a constant, make sure it is on the RHS.
2101 std::swap(LHS, RHS);
2102 Pred = CmpInst::getSwappedPredicate(Pred);
2103 }
Duncan Sands7e800d62010-11-14 11:23:23 +00002104
Chris Lattner229907c2011-07-18 04:54:35 +00002105 Type *ITy = GetCompareTy(LHS); // The return type.
2106 Type *OpTy = LHS->getType(); // The operand type.
Duncan Sands7e800d62010-11-14 11:23:23 +00002107
Chris Lattnerccfdceb2009-11-09 23:55:12 +00002108 // icmp X, X -> true/false
Chris Lattner3afc0722010-03-03 19:46:03 +00002109 // X icmp undef -> true/false. For example, icmp ugt %X, undef -> false
2110 // because X could be 0.
Duncan Sands772749a2011-01-01 20:08:02 +00002111 if (LHS == RHS || isa<UndefValue>(RHS))
Chris Lattnerccfdceb2009-11-09 23:55:12 +00002112 return ConstantInt::get(ITy, CmpInst::isTrueWhenEqual(Pred));
Duncan Sands7e800d62010-11-14 11:23:23 +00002113
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002114 // Special case logic when the operands have i1 type.
Nick Lewyckye659b842011-12-01 02:39:36 +00002115 if (OpTy->getScalarType()->isIntegerTy(1)) {
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002116 switch (Pred) {
2117 default: break;
2118 case ICmpInst::ICMP_EQ:
2119 // X == 1 -> X
2120 if (match(RHS, m_One()))
2121 return LHS;
2122 break;
2123 case ICmpInst::ICMP_NE:
2124 // X != 0 -> X
2125 if (match(RHS, m_Zero()))
2126 return LHS;
2127 break;
2128 case ICmpInst::ICMP_UGT:
2129 // X >u 0 -> X
2130 if (match(RHS, m_Zero()))
2131 return LHS;
2132 break;
2133 case ICmpInst::ICMP_UGE:
2134 // X >=u 1 -> X
2135 if (match(RHS, m_One()))
2136 return LHS;
Sanjoy Das55ea67c2015-11-06 19:01:08 +00002137 if (isImpliedCondition(RHS, LHS, Q.DL))
Philip Reames13f023c2015-09-28 17:14:24 +00002138 return getTrue(ITy);
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002139 break;
Philip Reamesdbbd7792015-10-29 03:19:10 +00002140 case ICmpInst::ICMP_SGE:
2141 /// For signed comparison, the values for an i1 are 0 and -1
2142 /// respectively. This maps into a truth table of:
2143 /// LHS | RHS | LHS >=s RHS | LHS implies RHS
2144 /// 0 | 0 | 1 (0 >= 0) | 1
2145 /// 0 | 1 | 1 (0 >= -1) | 1
2146 /// 1 | 0 | 0 (-1 >= 0) | 0
2147 /// 1 | 1 | 1 (-1 >= -1) | 1
Sanjoy Das55ea67c2015-11-06 19:01:08 +00002148 if (isImpliedCondition(LHS, RHS, Q.DL))
Philip Reamesdbbd7792015-10-29 03:19:10 +00002149 return getTrue(ITy);
2150 break;
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002151 case ICmpInst::ICMP_SLT:
2152 // X <s 0 -> X
2153 if (match(RHS, m_Zero()))
2154 return LHS;
2155 break;
2156 case ICmpInst::ICMP_SLE:
2157 // X <=s -1 -> X
2158 if (match(RHS, m_One()))
2159 return LHS;
2160 break;
Philip Reames13f023c2015-09-28 17:14:24 +00002161 case ICmpInst::ICMP_ULE:
Sanjoy Das55ea67c2015-11-06 19:01:08 +00002162 if (isImpliedCondition(LHS, RHS, Q.DL))
Philip Reames13f023c2015-09-28 17:14:24 +00002163 return getTrue(ITy);
2164 break;
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002165 }
2166 }
2167
Duncan Sandsd3951082011-01-25 09:38:29 +00002168 // If we are comparing with zero then try hard since this is a common case.
2169 if (match(RHS, m_Zero())) {
2170 bool LHSKnownNonNegative, LHSKnownNegative;
2171 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00002172 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sandsd3951082011-01-25 09:38:29 +00002173 case ICmpInst::ICMP_ULT:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002174 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002175 case ICmpInst::ICMP_UGE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002176 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002177 case ICmpInst::ICMP_EQ:
2178 case ICmpInst::ICMP_ULE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002179 if (isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002180 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002181 break;
2182 case ICmpInst::ICMP_NE:
2183 case ICmpInst::ICMP_UGT:
Chandler Carruth66b31302015-01-04 12:03:27 +00002184 if (isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002185 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002186 break;
2187 case ICmpInst::ICMP_SLT:
Chandler Carruth66b31302015-01-04 12:03:27 +00002188 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC,
2189 Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002190 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002191 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002192 if (LHSKnownNonNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002193 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002194 break;
2195 case ICmpInst::ICMP_SLE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002196 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC,
2197 Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002198 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002199 return getTrue(ITy);
Chandler Carruth66b31302015-01-04 12:03:27 +00002200 if (LHSKnownNonNegative &&
2201 isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002202 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002203 break;
2204 case ICmpInst::ICMP_SGE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002205 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC,
2206 Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002207 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002208 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002209 if (LHSKnownNonNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002210 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002211 break;
2212 case ICmpInst::ICMP_SGT:
Chandler Carruth66b31302015-01-04 12:03:27 +00002213 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC,
2214 Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002215 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002216 return getFalse(ITy);
Chandler Carruth66b31302015-01-04 12:03:27 +00002217 if (LHSKnownNonNegative &&
2218 isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002219 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002220 break;
2221 }
2222 }
2223
2224 // See if we are doing a comparison with a constant integer.
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002225 if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002226 // Rule out tautological comparisons (eg., ult 0 or uge 0).
2227 ConstantRange RHS_CR = ICmpInst::makeConstantRange(Pred, CI->getValue());
2228 if (RHS_CR.isEmptySet())
2229 return ConstantInt::getFalse(CI->getContext());
2230 if (RHS_CR.isFullSet())
2231 return ConstantInt::getTrue(CI->getContext());
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002232
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002233 // Many binary operators with constant RHS have easy to compute constant
2234 // range. Use them to check whether the comparison is a tautology.
David Majnemer78910fc2014-05-16 17:14:03 +00002235 unsigned Width = CI->getBitWidth();
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002236 APInt Lower = APInt(Width, 0);
2237 APInt Upper = APInt(Width, 0);
2238 ConstantInt *CI2;
2239 if (match(LHS, m_URem(m_Value(), m_ConstantInt(CI2)))) {
2240 // 'urem x, CI2' produces [0, CI2).
2241 Upper = CI2->getValue();
2242 } else if (match(LHS, m_SRem(m_Value(), m_ConstantInt(CI2)))) {
2243 // 'srem x, CI2' produces (-|CI2|, |CI2|).
2244 Upper = CI2->getValue().abs();
2245 Lower = (-Upper) + 1;
Duncan Sands92af0a82011-10-28 18:17:44 +00002246 } else if (match(LHS, m_UDiv(m_ConstantInt(CI2), m_Value()))) {
2247 // 'udiv CI2, x' produces [0, CI2].
Eli Friedman0bae8b22011-11-08 21:08:02 +00002248 Upper = CI2->getValue() + 1;
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002249 } else if (match(LHS, m_UDiv(m_Value(), m_ConstantInt(CI2)))) {
2250 // 'udiv x, CI2' produces [0, UINT_MAX / CI2].
2251 APInt NegOne = APInt::getAllOnesValue(Width);
2252 if (!CI2->isZero())
2253 Upper = NegOne.udiv(CI2->getValue()) + 1;
David Majnemerea8d5db2014-05-16 16:57:04 +00002254 } else if (match(LHS, m_SDiv(m_ConstantInt(CI2), m_Value()))) {
David Majnemer651ed5e2014-07-04 00:23:39 +00002255 if (CI2->isMinSignedValue()) {
2256 // 'sdiv INT_MIN, x' produces [INT_MIN, INT_MIN / -2].
2257 Lower = CI2->getValue();
2258 Upper = Lower.lshr(1) + 1;
2259 } else {
2260 // 'sdiv CI2, x' produces [-|CI2|, |CI2|].
2261 Upper = CI2->getValue().abs() + 1;
2262 Lower = (-Upper) + 1;
2263 }
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002264 } else if (match(LHS, m_SDiv(m_Value(), m_ConstantInt(CI2)))) {
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002265 APInt IntMin = APInt::getSignedMinValue(Width);
2266 APInt IntMax = APInt::getSignedMaxValue(Width);
David Majnemeraf9180f2014-07-14 20:38:45 +00002267 APInt Val = CI2->getValue();
2268 if (Val.isAllOnesValue()) {
2269 // 'sdiv x, -1' produces [INT_MIN + 1, INT_MAX]
2270 // where CI2 != -1 and CI2 != 0 and CI2 != 1
2271 Lower = IntMin + 1;
2272 Upper = IntMax + 1;
2273 } else if (Val.countLeadingZeros() < Width - 1) {
2274 // 'sdiv x, CI2' produces [INT_MIN / CI2, INT_MAX / CI2]
2275 // where CI2 != -1 and CI2 != 0 and CI2 != 1
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002276 Lower = IntMin.sdiv(Val);
David Majnemeraf9180f2014-07-14 20:38:45 +00002277 Upper = IntMax.sdiv(Val);
2278 if (Lower.sgt(Upper))
2279 std::swap(Lower, Upper);
2280 Upper = Upper + 1;
David Majnemer5ea4fc02014-07-14 19:49:57 +00002281 assert(Upper != Lower && "Upper part of range has wrapped!");
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002282 }
David Majnemerd6d16712014-08-27 18:03:46 +00002283 } else if (match(LHS, m_NUWShl(m_ConstantInt(CI2), m_Value()))) {
2284 // 'shl nuw CI2, x' produces [CI2, CI2 << CLZ(CI2)]
2285 Lower = CI2->getValue();
2286 Upper = Lower.shl(Lower.countLeadingZeros()) + 1;
2287 } else if (match(LHS, m_NSWShl(m_ConstantInt(CI2), m_Value()))) {
2288 if (CI2->isNegative()) {
2289 // 'shl nsw CI2, x' produces [CI2 << CLO(CI2)-1, CI2]
2290 unsigned ShiftAmount = CI2->getValue().countLeadingOnes() - 1;
2291 Lower = CI2->getValue().shl(ShiftAmount);
2292 Upper = CI2->getValue() + 1;
2293 } else {
2294 // 'shl nsw CI2, x' produces [CI2, CI2 << CLZ(CI2)-1]
2295 unsigned ShiftAmount = CI2->getValue().countLeadingZeros() - 1;
2296 Lower = CI2->getValue();
2297 Upper = CI2->getValue().shl(ShiftAmount) + 1;
2298 }
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002299 } else if (match(LHS, m_LShr(m_Value(), m_ConstantInt(CI2)))) {
2300 // 'lshr x, CI2' produces [0, UINT_MAX >> CI2].
2301 APInt NegOne = APInt::getAllOnesValue(Width);
2302 if (CI2->getValue().ult(Width))
2303 Upper = NegOne.lshr(CI2->getValue()) + 1;
David Majnemer78910fc2014-05-16 17:14:03 +00002304 } else if (match(LHS, m_LShr(m_ConstantInt(CI2), m_Value()))) {
2305 // 'lshr CI2, x' produces [CI2 >> (Width-1), CI2].
2306 unsigned ShiftAmount = Width - 1;
2307 if (!CI2->isZero() && cast<BinaryOperator>(LHS)->isExact())
2308 ShiftAmount = CI2->getValue().countTrailingZeros();
2309 Lower = CI2->getValue().lshr(ShiftAmount);
2310 Upper = CI2->getValue() + 1;
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002311 } else if (match(LHS, m_AShr(m_Value(), m_ConstantInt(CI2)))) {
2312 // 'ashr x, CI2' produces [INT_MIN >> CI2, INT_MAX >> CI2].
2313 APInt IntMin = APInt::getSignedMinValue(Width);
2314 APInt IntMax = APInt::getSignedMaxValue(Width);
2315 if (CI2->getValue().ult(Width)) {
2316 Lower = IntMin.ashr(CI2->getValue());
2317 Upper = IntMax.ashr(CI2->getValue()) + 1;
2318 }
David Majnemer78910fc2014-05-16 17:14:03 +00002319 } else if (match(LHS, m_AShr(m_ConstantInt(CI2), m_Value()))) {
2320 unsigned ShiftAmount = Width - 1;
2321 if (!CI2->isZero() && cast<BinaryOperator>(LHS)->isExact())
2322 ShiftAmount = CI2->getValue().countTrailingZeros();
2323 if (CI2->isNegative()) {
2324 // 'ashr CI2, x' produces [CI2, CI2 >> (Width-1)]
2325 Lower = CI2->getValue();
2326 Upper = CI2->getValue().ashr(ShiftAmount) + 1;
2327 } else {
2328 // 'ashr CI2, x' produces [CI2 >> (Width-1), CI2]
2329 Lower = CI2->getValue().ashr(ShiftAmount);
2330 Upper = CI2->getValue() + 1;
2331 }
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002332 } else if (match(LHS, m_Or(m_Value(), m_ConstantInt(CI2)))) {
2333 // 'or x, CI2' produces [CI2, UINT_MAX].
2334 Lower = CI2->getValue();
2335 } else if (match(LHS, m_And(m_Value(), m_ConstantInt(CI2)))) {
2336 // 'and x, CI2' produces [0, CI2].
2337 Upper = CI2->getValue() + 1;
David Majnemer2df38cd2015-08-20 23:01:41 +00002338 } else if (match(LHS, m_NUWAdd(m_Value(), m_ConstantInt(CI2)))) {
2339 // 'add nuw x, CI2' produces [CI2, UINT_MAX].
2340 Lower = CI2->getValue();
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002341 }
Chen Li5cd6dee2015-09-23 17:58:44 +00002342
2343 ConstantRange LHS_CR = Lower != Upper ? ConstantRange(Lower, Upper)
2344 : ConstantRange(Width, true);
2345
2346 if (auto *I = dyn_cast<Instruction>(LHS))
2347 if (auto *Ranges = I->getMetadata(LLVMContext::MD_range))
Sanjoy Dasa7e13782015-10-24 05:37:35 +00002348 LHS_CR = LHS_CR.intersectWith(getConstantRangeFromMetadata(*Ranges));
Chen Li5cd6dee2015-09-23 17:58:44 +00002349
2350 if (!LHS_CR.isFullSet()) {
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002351 if (RHS_CR.contains(LHS_CR))
2352 return ConstantInt::getTrue(RHS->getContext());
2353 if (RHS_CR.inverse().contains(LHS_CR))
2354 return ConstantInt::getFalse(RHS->getContext());
2355 }
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002356 }
2357
Chen Li7452d952015-09-26 03:26:47 +00002358 // If both operands have range metadata, use the metadata
2359 // to simplify the comparison.
2360 if (isa<Instruction>(RHS) && isa<Instruction>(LHS)) {
2361 auto RHS_Instr = dyn_cast<Instruction>(RHS);
2362 auto LHS_Instr = dyn_cast<Instruction>(LHS);
2363
2364 if (RHS_Instr->getMetadata(LLVMContext::MD_range) &&
2365 LHS_Instr->getMetadata(LLVMContext::MD_range)) {
Sanjoy Dasa7e13782015-10-24 05:37:35 +00002366 auto RHS_CR = getConstantRangeFromMetadata(
2367 *RHS_Instr->getMetadata(LLVMContext::MD_range));
2368 auto LHS_CR = getConstantRangeFromMetadata(
2369 *LHS_Instr->getMetadata(LLVMContext::MD_range));
Chen Li7452d952015-09-26 03:26:47 +00002370
2371 auto Satisfied_CR = ConstantRange::makeSatisfyingICmpRegion(Pred, RHS_CR);
2372 if (Satisfied_CR.contains(LHS_CR))
2373 return ConstantInt::getTrue(RHS->getContext());
2374
2375 auto InversedSatisfied_CR = ConstantRange::makeSatisfyingICmpRegion(
2376 CmpInst::getInversePredicate(Pred), RHS_CR);
2377 if (InversedSatisfied_CR.contains(LHS_CR))
2378 return ConstantInt::getFalse(RHS->getContext());
2379 }
2380 }
2381
Duncan Sands8fb2c382011-01-20 13:21:55 +00002382 // Compare of cast, for example (zext X) != 0 -> X != 0
2383 if (isa<CastInst>(LHS) && (isa<Constant>(RHS) || isa<CastInst>(RHS))) {
2384 Instruction *LI = cast<CastInst>(LHS);
2385 Value *SrcOp = LI->getOperand(0);
Chris Lattner229907c2011-07-18 04:54:35 +00002386 Type *SrcTy = SrcOp->getType();
2387 Type *DstTy = LI->getType();
Duncan Sands8fb2c382011-01-20 13:21:55 +00002388
2389 // Turn icmp (ptrtoint x), (ptrtoint/constant) into a compare of the input
2390 // if the integer type is the same size as the pointer type.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002391 if (MaxRecurse && isa<PtrToIntInst>(LI) &&
2392 Q.DL.getTypeSizeInBits(SrcTy) == DstTy->getPrimitiveSizeInBits()) {
Duncan Sands8fb2c382011-01-20 13:21:55 +00002393 if (Constant *RHSC = dyn_cast<Constant>(RHS)) {
2394 // Transfer the cast to the constant.
2395 if (Value *V = SimplifyICmpInst(Pred, SrcOp,
2396 ConstantExpr::getIntToPtr(RHSC, SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002397 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002398 return V;
2399 } else if (PtrToIntInst *RI = dyn_cast<PtrToIntInst>(RHS)) {
2400 if (RI->getOperand(0)->getType() == SrcTy)
2401 // Compare without the cast.
2402 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002403 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002404 return V;
2405 }
2406 }
2407
2408 if (isa<ZExtInst>(LHS)) {
2409 // Turn icmp (zext X), (zext Y) into a compare of X and Y if they have the
2410 // same type.
2411 if (ZExtInst *RI = dyn_cast<ZExtInst>(RHS)) {
2412 if (MaxRecurse && SrcTy == RI->getOperand(0)->getType())
2413 // Compare X and Y. Note that signed predicates become unsigned.
2414 if (Value *V = SimplifyICmpInst(ICmpInst::getUnsignedPredicate(Pred),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002415 SrcOp, RI->getOperand(0), Q,
Duncan Sands8fb2c382011-01-20 13:21:55 +00002416 MaxRecurse-1))
2417 return V;
2418 }
2419 // Turn icmp (zext X), Cst into a compare of X and Cst if Cst is extended
2420 // too. If not, then try to deduce the result of the comparison.
2421 else if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
2422 // Compute the constant that would happen if we truncated to SrcTy then
2423 // reextended to DstTy.
2424 Constant *Trunc = ConstantExpr::getTrunc(CI, SrcTy);
2425 Constant *RExt = ConstantExpr::getCast(CastInst::ZExt, Trunc, DstTy);
2426
2427 // If the re-extended constant didn't change then this is effectively
2428 // also a case of comparing two zero-extended values.
2429 if (RExt == CI && MaxRecurse)
2430 if (Value *V = SimplifyICmpInst(ICmpInst::getUnsignedPredicate(Pred),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002431 SrcOp, Trunc, Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002432 return V;
2433
2434 // Otherwise the upper bits of LHS are zero while RHS has a non-zero bit
2435 // there. Use this to work out the result of the comparison.
2436 if (RExt != CI) {
2437 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00002438 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sands8fb2c382011-01-20 13:21:55 +00002439 // LHS <u RHS.
2440 case ICmpInst::ICMP_EQ:
2441 case ICmpInst::ICMP_UGT:
2442 case ICmpInst::ICMP_UGE:
2443 return ConstantInt::getFalse(CI->getContext());
2444
2445 case ICmpInst::ICMP_NE:
2446 case ICmpInst::ICMP_ULT:
2447 case ICmpInst::ICMP_ULE:
2448 return ConstantInt::getTrue(CI->getContext());
2449
2450 // LHS is non-negative. If RHS is negative then LHS >s LHS. If RHS
2451 // is non-negative then LHS <s RHS.
2452 case ICmpInst::ICMP_SGT:
2453 case ICmpInst::ICMP_SGE:
2454 return CI->getValue().isNegative() ?
2455 ConstantInt::getTrue(CI->getContext()) :
2456 ConstantInt::getFalse(CI->getContext());
2457
2458 case ICmpInst::ICMP_SLT:
2459 case ICmpInst::ICMP_SLE:
2460 return CI->getValue().isNegative() ?
2461 ConstantInt::getFalse(CI->getContext()) :
2462 ConstantInt::getTrue(CI->getContext());
2463 }
2464 }
2465 }
2466 }
2467
2468 if (isa<SExtInst>(LHS)) {
2469 // Turn icmp (sext X), (sext Y) into a compare of X and Y if they have the
2470 // same type.
2471 if (SExtInst *RI = dyn_cast<SExtInst>(RHS)) {
2472 if (MaxRecurse && SrcTy == RI->getOperand(0)->getType())
2473 // Compare X and Y. Note that the predicate does not change.
2474 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002475 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002476 return V;
2477 }
2478 // Turn icmp (sext X), Cst into a compare of X and Cst if Cst is extended
2479 // too. If not, then try to deduce the result of the comparison.
2480 else if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
2481 // Compute the constant that would happen if we truncated to SrcTy then
2482 // reextended to DstTy.
2483 Constant *Trunc = ConstantExpr::getTrunc(CI, SrcTy);
2484 Constant *RExt = ConstantExpr::getCast(CastInst::SExt, Trunc, DstTy);
2485
2486 // If the re-extended constant didn't change then this is effectively
2487 // also a case of comparing two sign-extended values.
2488 if (RExt == CI && MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002489 if (Value *V = SimplifyICmpInst(Pred, SrcOp, Trunc, Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002490 return V;
2491
2492 // Otherwise the upper bits of LHS are all equal, while RHS has varying
2493 // bits there. Use this to work out the result of the comparison.
2494 if (RExt != CI) {
2495 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00002496 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sands8fb2c382011-01-20 13:21:55 +00002497 case ICmpInst::ICMP_EQ:
2498 return ConstantInt::getFalse(CI->getContext());
2499 case ICmpInst::ICMP_NE:
2500 return ConstantInt::getTrue(CI->getContext());
2501
2502 // If RHS is non-negative then LHS <s RHS. If RHS is negative then
2503 // LHS >s RHS.
2504 case ICmpInst::ICMP_SGT:
2505 case ICmpInst::ICMP_SGE:
2506 return CI->getValue().isNegative() ?
2507 ConstantInt::getTrue(CI->getContext()) :
2508 ConstantInt::getFalse(CI->getContext());
2509 case ICmpInst::ICMP_SLT:
2510 case ICmpInst::ICMP_SLE:
2511 return CI->getValue().isNegative() ?
2512 ConstantInt::getFalse(CI->getContext()) :
2513 ConstantInt::getTrue(CI->getContext());
2514
2515 // If LHS is non-negative then LHS <u RHS. If LHS is negative then
2516 // LHS >u RHS.
2517 case ICmpInst::ICMP_UGT:
2518 case ICmpInst::ICMP_UGE:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002519 // Comparison is true iff the LHS <s 0.
Duncan Sands8fb2c382011-01-20 13:21:55 +00002520 if (MaxRecurse)
2521 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SLT, SrcOp,
2522 Constant::getNullValue(SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002523 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002524 return V;
2525 break;
2526 case ICmpInst::ICMP_ULT:
2527 case ICmpInst::ICMP_ULE:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002528 // Comparison is true iff the LHS >=s 0.
Duncan Sands8fb2c382011-01-20 13:21:55 +00002529 if (MaxRecurse)
2530 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SGE, SrcOp,
2531 Constant::getNullValue(SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002532 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002533 return V;
2534 break;
2535 }
2536 }
2537 }
2538 }
2539 }
2540
James Molloy1d88d6f2015-10-22 13:18:42 +00002541 // icmp eq|ne X, Y -> false|true if X != Y
2542 if ((Pred == ICmpInst::ICMP_EQ || Pred == ICmpInst::ICMP_NE) &&
2543 isKnownNonEqual(LHS, RHS, Q.DL, Q.AC, Q.CxtI, Q.DT)) {
2544 LLVMContext &Ctx = LHS->getType()->getContext();
2545 return Pred == ICmpInst::ICMP_NE ?
2546 ConstantInt::getTrue(Ctx) : ConstantInt::getFalse(Ctx);
2547 }
2548
Duncan Sandsd114ab32011-02-13 17:15:40 +00002549 // Special logic for binary operators.
2550 BinaryOperator *LBO = dyn_cast<BinaryOperator>(LHS);
2551 BinaryOperator *RBO = dyn_cast<BinaryOperator>(RHS);
2552 if (MaxRecurse && (LBO || RBO)) {
Duncan Sandsd114ab32011-02-13 17:15:40 +00002553 // Analyze the case when either LHS or RHS is an add instruction.
Craig Topper9f008862014-04-15 04:59:12 +00002554 Value *A = nullptr, *B = nullptr, *C = nullptr, *D = nullptr;
Duncan Sandsd114ab32011-02-13 17:15:40 +00002555 // LHS = A + B (or A and B are null); RHS = C + D (or C and D are null).
2556 bool NoLHSWrapProblem = false, NoRHSWrapProblem = false;
2557 if (LBO && LBO->getOpcode() == Instruction::Add) {
2558 A = LBO->getOperand(0); B = LBO->getOperand(1);
2559 NoLHSWrapProblem = ICmpInst::isEquality(Pred) ||
2560 (CmpInst::isUnsigned(Pred) && LBO->hasNoUnsignedWrap()) ||
2561 (CmpInst::isSigned(Pred) && LBO->hasNoSignedWrap());
2562 }
2563 if (RBO && RBO->getOpcode() == Instruction::Add) {
2564 C = RBO->getOperand(0); D = RBO->getOperand(1);
2565 NoRHSWrapProblem = ICmpInst::isEquality(Pred) ||
2566 (CmpInst::isUnsigned(Pred) && RBO->hasNoUnsignedWrap()) ||
2567 (CmpInst::isSigned(Pred) && RBO->hasNoSignedWrap());
2568 }
2569
2570 // icmp (X+Y), X -> icmp Y, 0 for equalities or if there is no overflow.
2571 if ((A == RHS || B == RHS) && NoLHSWrapProblem)
2572 if (Value *V = SimplifyICmpInst(Pred, A == RHS ? B : A,
2573 Constant::getNullValue(RHS->getType()),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002574 Q, MaxRecurse-1))
Duncan Sandsd114ab32011-02-13 17:15:40 +00002575 return V;
2576
2577 // icmp X, (X+Y) -> icmp 0, Y for equalities or if there is no overflow.
2578 if ((C == LHS || D == LHS) && NoRHSWrapProblem)
2579 if (Value *V = SimplifyICmpInst(Pred,
2580 Constant::getNullValue(LHS->getType()),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002581 C == LHS ? D : C, Q, MaxRecurse-1))
Duncan Sandsd114ab32011-02-13 17:15:40 +00002582 return V;
2583
2584 // icmp (X+Y), (X+Z) -> icmp Y,Z for equalities or if there is no overflow.
2585 if (A && C && (A == C || A == D || B == C || B == D) &&
2586 NoLHSWrapProblem && NoRHSWrapProblem) {
2587 // Determine Y and Z in the form icmp (X+Y), (X+Z).
Duncan Sandsc41076c2012-11-16 19:41:26 +00002588 Value *Y, *Z;
2589 if (A == C) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002590 // C + B == C + D -> B == D
Duncan Sandsc41076c2012-11-16 19:41:26 +00002591 Y = B;
2592 Z = D;
2593 } else if (A == D) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002594 // D + B == C + D -> B == C
Duncan Sandsc41076c2012-11-16 19:41:26 +00002595 Y = B;
2596 Z = C;
2597 } else if (B == C) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002598 // A + C == C + D -> A == D
Duncan Sandsc41076c2012-11-16 19:41:26 +00002599 Y = A;
2600 Z = D;
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002601 } else {
2602 assert(B == D);
2603 // A + D == C + D -> A == C
Duncan Sandsc41076c2012-11-16 19:41:26 +00002604 Y = A;
2605 Z = C;
2606 }
Duncan Sandsb8cee002012-03-13 11:42:19 +00002607 if (Value *V = SimplifyICmpInst(Pred, Y, Z, Q, MaxRecurse-1))
Duncan Sandsd114ab32011-02-13 17:15:40 +00002608 return V;
2609 }
2610 }
2611
David Majnemerbd9ce4e2014-11-25 02:55:48 +00002612 // icmp pred (or X, Y), X
2613 if (LBO && match(LBO, m_CombineOr(m_Or(m_Value(), m_Specific(RHS)),
2614 m_Or(m_Specific(RHS), m_Value())))) {
2615 if (Pred == ICmpInst::ICMP_ULT)
2616 return getFalse(ITy);
2617 if (Pred == ICmpInst::ICMP_UGE)
2618 return getTrue(ITy);
2619 }
2620 // icmp pred X, (or X, Y)
2621 if (RBO && match(RBO, m_CombineOr(m_Or(m_Value(), m_Specific(LHS)),
2622 m_Or(m_Specific(LHS), m_Value())))) {
2623 if (Pred == ICmpInst::ICMP_ULE)
2624 return getTrue(ITy);
2625 if (Pred == ICmpInst::ICMP_UGT)
2626 return getFalse(ITy);
2627 }
2628
2629 // icmp pred (and X, Y), X
2630 if (LBO && match(LBO, m_CombineOr(m_And(m_Value(), m_Specific(RHS)),
2631 m_And(m_Specific(RHS), m_Value())))) {
2632 if (Pred == ICmpInst::ICMP_UGT)
2633 return getFalse(ITy);
2634 if (Pred == ICmpInst::ICMP_ULE)
2635 return getTrue(ITy);
2636 }
2637 // icmp pred X, (and X, Y)
2638 if (RBO && match(RBO, m_CombineOr(m_And(m_Value(), m_Specific(LHS)),
2639 m_And(m_Specific(LHS), m_Value())))) {
2640 if (Pred == ICmpInst::ICMP_UGE)
2641 return getTrue(ITy);
2642 if (Pred == ICmpInst::ICMP_ULT)
2643 return getFalse(ITy);
2644 }
2645
David Majnemer2d6c0232014-05-14 20:16:28 +00002646 // 0 - (zext X) pred C
2647 if (!CmpInst::isUnsigned(Pred) && match(LHS, m_Neg(m_ZExt(m_Value())))) {
2648 if (ConstantInt *RHSC = dyn_cast<ConstantInt>(RHS)) {
2649 if (RHSC->getValue().isStrictlyPositive()) {
2650 if (Pred == ICmpInst::ICMP_SLT)
2651 return ConstantInt::getTrue(RHSC->getContext());
2652 if (Pred == ICmpInst::ICMP_SGE)
2653 return ConstantInt::getFalse(RHSC->getContext());
2654 if (Pred == ICmpInst::ICMP_EQ)
2655 return ConstantInt::getFalse(RHSC->getContext());
2656 if (Pred == ICmpInst::ICMP_NE)
2657 return ConstantInt::getTrue(RHSC->getContext());
2658 }
2659 if (RHSC->getValue().isNonNegative()) {
2660 if (Pred == ICmpInst::ICMP_SLE)
2661 return ConstantInt::getTrue(RHSC->getContext());
2662 if (Pred == ICmpInst::ICMP_SGT)
2663 return ConstantInt::getFalse(RHSC->getContext());
2664 }
2665 }
2666 }
2667
Nick Lewycky35aeea92013-07-12 23:42:57 +00002668 // icmp pred (urem X, Y), Y
Nick Lewycky980104d2011-03-09 06:26:03 +00002669 if (LBO && match(LBO, m_URem(m_Value(), m_Specific(RHS)))) {
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002670 bool KnownNonNegative, KnownNegative;
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002671 switch (Pred) {
2672 default:
2673 break;
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002674 case ICmpInst::ICMP_SGT:
2675 case ICmpInst::ICMP_SGE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002676 ComputeSignBit(RHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC,
2677 Q.CxtI, Q.DT);
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002678 if (!KnownNonNegative)
2679 break;
2680 // fall-through
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002681 case ICmpInst::ICMP_EQ:
2682 case ICmpInst::ICMP_UGT:
2683 case ICmpInst::ICMP_UGE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002684 return getFalse(ITy);
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002685 case ICmpInst::ICMP_SLT:
2686 case ICmpInst::ICMP_SLE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002687 ComputeSignBit(RHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC,
2688 Q.CxtI, Q.DT);
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002689 if (!KnownNonNegative)
2690 break;
2691 // fall-through
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002692 case ICmpInst::ICMP_NE:
2693 case ICmpInst::ICMP_ULT:
2694 case ICmpInst::ICMP_ULE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002695 return getTrue(ITy);
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002696 }
2697 }
Nick Lewycky35aeea92013-07-12 23:42:57 +00002698
2699 // icmp pred X, (urem Y, X)
Nick Lewycky980104d2011-03-09 06:26:03 +00002700 if (RBO && match(RBO, m_URem(m_Value(), m_Specific(LHS)))) {
2701 bool KnownNonNegative, KnownNegative;
2702 switch (Pred) {
2703 default:
2704 break;
2705 case ICmpInst::ICMP_SGT:
2706 case ICmpInst::ICMP_SGE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002707 ComputeSignBit(LHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC,
2708 Q.CxtI, Q.DT);
Nick Lewycky980104d2011-03-09 06:26:03 +00002709 if (!KnownNonNegative)
2710 break;
2711 // fall-through
Nick Lewycky774647d2011-03-09 08:20:06 +00002712 case ICmpInst::ICMP_NE:
Nick Lewycky980104d2011-03-09 06:26:03 +00002713 case ICmpInst::ICMP_UGT:
2714 case ICmpInst::ICMP_UGE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002715 return getTrue(ITy);
Nick Lewycky980104d2011-03-09 06:26:03 +00002716 case ICmpInst::ICMP_SLT:
2717 case ICmpInst::ICMP_SLE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002718 ComputeSignBit(LHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC,
2719 Q.CxtI, Q.DT);
Nick Lewycky980104d2011-03-09 06:26:03 +00002720 if (!KnownNonNegative)
2721 break;
2722 // fall-through
Nick Lewycky774647d2011-03-09 08:20:06 +00002723 case ICmpInst::ICMP_EQ:
Nick Lewycky980104d2011-03-09 06:26:03 +00002724 case ICmpInst::ICMP_ULT:
2725 case ICmpInst::ICMP_ULE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002726 return getFalse(ITy);
Nick Lewycky980104d2011-03-09 06:26:03 +00002727 }
2728 }
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002729
Duncan Sands92af0a82011-10-28 18:17:44 +00002730 // x udiv y <=u x.
2731 if (LBO && match(LBO, m_UDiv(m_Specific(RHS), m_Value()))) {
2732 // icmp pred (X /u Y), X
2733 if (Pred == ICmpInst::ICMP_UGT)
2734 return getFalse(ITy);
2735 if (Pred == ICmpInst::ICMP_ULE)
2736 return getTrue(ITy);
2737 }
2738
David Majnemer76d06bc2014-08-28 03:34:28 +00002739 // handle:
2740 // CI2 << X == CI
2741 // CI2 << X != CI
2742 //
2743 // where CI2 is a power of 2 and CI isn't
2744 if (auto *CI = dyn_cast<ConstantInt>(RHS)) {
2745 const APInt *CI2Val, *CIVal = &CI->getValue();
2746 if (LBO && match(LBO, m_Shl(m_APInt(CI2Val), m_Value())) &&
2747 CI2Val->isPowerOf2()) {
2748 if (!CIVal->isPowerOf2()) {
2749 // CI2 << X can equal zero in some circumstances,
2750 // this simplification is unsafe if CI is zero.
2751 //
2752 // We know it is safe if:
2753 // - The shift is nsw, we can't shift out the one bit.
2754 // - The shift is nuw, we can't shift out the one bit.
2755 // - CI2 is one
2756 // - CI isn't zero
2757 if (LBO->hasNoSignedWrap() || LBO->hasNoUnsignedWrap() ||
2758 *CI2Val == 1 || !CI->isZero()) {
2759 if (Pred == ICmpInst::ICMP_EQ)
2760 return ConstantInt::getFalse(RHS->getContext());
2761 if (Pred == ICmpInst::ICMP_NE)
2762 return ConstantInt::getTrue(RHS->getContext());
2763 }
2764 }
2765 if (CIVal->isSignBit() && *CI2Val == 1) {
2766 if (Pred == ICmpInst::ICMP_UGT)
2767 return ConstantInt::getFalse(RHS->getContext());
2768 if (Pred == ICmpInst::ICMP_ULE)
2769 return ConstantInt::getTrue(RHS->getContext());
2770 }
2771 }
2772 }
2773
Nick Lewycky9719a712011-03-05 05:19:11 +00002774 if (MaxRecurse && LBO && RBO && LBO->getOpcode() == RBO->getOpcode() &&
2775 LBO->getOperand(1) == RBO->getOperand(1)) {
2776 switch (LBO->getOpcode()) {
2777 default: break;
2778 case Instruction::UDiv:
2779 case Instruction::LShr:
2780 if (ICmpInst::isSigned(Pred))
2781 break;
2782 // fall-through
2783 case Instruction::SDiv:
2784 case Instruction::AShr:
Eli Friedman8a20e662011-05-05 21:59:18 +00002785 if (!LBO->isExact() || !RBO->isExact())
Nick Lewycky9719a712011-03-05 05:19:11 +00002786 break;
2787 if (Value *V = SimplifyICmpInst(Pred, LBO->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002788 RBO->getOperand(0), Q, MaxRecurse-1))
Nick Lewycky9719a712011-03-05 05:19:11 +00002789 return V;
2790 break;
2791 case Instruction::Shl: {
Duncan Sands020c1942011-08-04 10:02:21 +00002792 bool NUW = LBO->hasNoUnsignedWrap() && RBO->hasNoUnsignedWrap();
Nick Lewycky9719a712011-03-05 05:19:11 +00002793 bool NSW = LBO->hasNoSignedWrap() && RBO->hasNoSignedWrap();
2794 if (!NUW && !NSW)
2795 break;
2796 if (!NSW && ICmpInst::isSigned(Pred))
2797 break;
2798 if (Value *V = SimplifyICmpInst(Pred, LBO->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002799 RBO->getOperand(0), Q, MaxRecurse-1))
Nick Lewycky9719a712011-03-05 05:19:11 +00002800 return V;
2801 break;
2802 }
2803 }
2804 }
2805
Duncan Sands0a9c1242011-05-03 19:53:10 +00002806 // Simplify comparisons involving max/min.
2807 Value *A, *B;
2808 CmpInst::Predicate P = CmpInst::BAD_ICMP_PREDICATE;
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002809 CmpInst::Predicate EqP; // Chosen so that "A == max/min(A,B)" iff "A EqP B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002810
Duncan Sandsa2287852011-05-04 16:05:05 +00002811 // Signed variants on "max(a,b)>=a -> true".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002812 if (match(LHS, m_SMax(m_Value(A), m_Value(B))) && (A == RHS || B == RHS)) {
2813 if (A != RHS) std::swap(A, B); // smax(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002814 EqP = CmpInst::ICMP_SGE; // "A == smax(A, B)" iff "A sge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002815 // We analyze this as smax(A, B) pred A.
2816 P = Pred;
2817 } else if (match(RHS, m_SMax(m_Value(A), m_Value(B))) &&
2818 (A == LHS || B == LHS)) {
2819 if (A != LHS) std::swap(A, B); // A pred smax(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002820 EqP = CmpInst::ICMP_SGE; // "A == smax(A, B)" iff "A sge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002821 // We analyze this as smax(A, B) swapped-pred A.
2822 P = CmpInst::getSwappedPredicate(Pred);
2823 } else if (match(LHS, m_SMin(m_Value(A), m_Value(B))) &&
2824 (A == RHS || B == RHS)) {
2825 if (A != RHS) std::swap(A, B); // smin(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002826 EqP = CmpInst::ICMP_SLE; // "A == smin(A, B)" iff "A sle B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002827 // We analyze this as smax(-A, -B) swapped-pred -A.
2828 // Note that we do not need to actually form -A or -B thanks to EqP.
2829 P = CmpInst::getSwappedPredicate(Pred);
2830 } else if (match(RHS, m_SMin(m_Value(A), m_Value(B))) &&
2831 (A == LHS || B == LHS)) {
2832 if (A != LHS) std::swap(A, B); // A pred smin(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002833 EqP = CmpInst::ICMP_SLE; // "A == smin(A, B)" iff "A sle B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002834 // We analyze this as smax(-A, -B) pred -A.
2835 // Note that we do not need to actually form -A or -B thanks to EqP.
2836 P = Pred;
2837 }
2838 if (P != CmpInst::BAD_ICMP_PREDICATE) {
2839 // Cases correspond to "max(A, B) p A".
2840 switch (P) {
2841 default:
2842 break;
2843 case CmpInst::ICMP_EQ:
2844 case CmpInst::ICMP_SLE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002845 // Equivalent to "A EqP B". This may be the same as the condition tested
2846 // in the max/min; if so, we can just return that.
2847 if (Value *V = ExtractEquivalentCondition(LHS, EqP, A, B))
2848 return V;
2849 if (Value *V = ExtractEquivalentCondition(RHS, EqP, A, B))
2850 return V;
2851 // Otherwise, see if "A EqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002852 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002853 if (Value *V = SimplifyICmpInst(EqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002854 return V;
2855 break;
2856 case CmpInst::ICMP_NE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002857 case CmpInst::ICMP_SGT: {
2858 CmpInst::Predicate InvEqP = CmpInst::getInversePredicate(EqP);
2859 // Equivalent to "A InvEqP B". This may be the same as the condition
2860 // tested in the max/min; if so, we can just return that.
2861 if (Value *V = ExtractEquivalentCondition(LHS, InvEqP, A, B))
2862 return V;
2863 if (Value *V = ExtractEquivalentCondition(RHS, InvEqP, A, B))
2864 return V;
2865 // Otherwise, see if "A InvEqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002866 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002867 if (Value *V = SimplifyICmpInst(InvEqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002868 return V;
2869 break;
Duncan Sandsaf327282011-05-07 16:56:49 +00002870 }
Duncan Sands0a9c1242011-05-03 19:53:10 +00002871 case CmpInst::ICMP_SGE:
2872 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002873 return getTrue(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002874 case CmpInst::ICMP_SLT:
2875 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002876 return getFalse(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002877 }
2878 }
2879
Duncan Sandsa2287852011-05-04 16:05:05 +00002880 // Unsigned variants on "max(a,b)>=a -> true".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002881 P = CmpInst::BAD_ICMP_PREDICATE;
2882 if (match(LHS, m_UMax(m_Value(A), m_Value(B))) && (A == RHS || B == RHS)) {
2883 if (A != RHS) std::swap(A, B); // umax(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002884 EqP = CmpInst::ICMP_UGE; // "A == umax(A, B)" iff "A uge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002885 // We analyze this as umax(A, B) pred A.
2886 P = Pred;
2887 } else if (match(RHS, m_UMax(m_Value(A), m_Value(B))) &&
2888 (A == LHS || B == LHS)) {
2889 if (A != LHS) std::swap(A, B); // A pred umax(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002890 EqP = CmpInst::ICMP_UGE; // "A == umax(A, B)" iff "A uge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002891 // We analyze this as umax(A, B) swapped-pred A.
2892 P = CmpInst::getSwappedPredicate(Pred);
2893 } else if (match(LHS, m_UMin(m_Value(A), m_Value(B))) &&
2894 (A == RHS || B == RHS)) {
2895 if (A != RHS) std::swap(A, B); // umin(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002896 EqP = CmpInst::ICMP_ULE; // "A == umin(A, B)" iff "A ule B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002897 // We analyze this as umax(-A, -B) swapped-pred -A.
2898 // Note that we do not need to actually form -A or -B thanks to EqP.
2899 P = CmpInst::getSwappedPredicate(Pred);
2900 } else if (match(RHS, m_UMin(m_Value(A), m_Value(B))) &&
2901 (A == LHS || B == LHS)) {
2902 if (A != LHS) std::swap(A, B); // A pred umin(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002903 EqP = CmpInst::ICMP_ULE; // "A == umin(A, B)" iff "A ule B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002904 // We analyze this as umax(-A, -B) pred -A.
2905 // Note that we do not need to actually form -A or -B thanks to EqP.
2906 P = Pred;
2907 }
2908 if (P != CmpInst::BAD_ICMP_PREDICATE) {
2909 // Cases correspond to "max(A, B) p A".
2910 switch (P) {
2911 default:
2912 break;
2913 case CmpInst::ICMP_EQ:
2914 case CmpInst::ICMP_ULE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002915 // Equivalent to "A EqP B". This may be the same as the condition tested
2916 // in the max/min; if so, we can just return that.
2917 if (Value *V = ExtractEquivalentCondition(LHS, EqP, A, B))
2918 return V;
2919 if (Value *V = ExtractEquivalentCondition(RHS, EqP, A, B))
2920 return V;
2921 // Otherwise, see if "A EqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002922 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002923 if (Value *V = SimplifyICmpInst(EqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002924 return V;
2925 break;
2926 case CmpInst::ICMP_NE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002927 case CmpInst::ICMP_UGT: {
2928 CmpInst::Predicate InvEqP = CmpInst::getInversePredicate(EqP);
2929 // Equivalent to "A InvEqP B". This may be the same as the condition
2930 // tested in the max/min; if so, we can just return that.
2931 if (Value *V = ExtractEquivalentCondition(LHS, InvEqP, A, B))
2932 return V;
2933 if (Value *V = ExtractEquivalentCondition(RHS, InvEqP, A, B))
2934 return V;
2935 // Otherwise, see if "A InvEqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002936 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002937 if (Value *V = SimplifyICmpInst(InvEqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002938 return V;
2939 break;
Duncan Sandsaf327282011-05-07 16:56:49 +00002940 }
Duncan Sands0a9c1242011-05-03 19:53:10 +00002941 case CmpInst::ICMP_UGE:
2942 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002943 return getTrue(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002944 case CmpInst::ICMP_ULT:
2945 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002946 return getFalse(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002947 }
2948 }
2949
Duncan Sandsa2287852011-05-04 16:05:05 +00002950 // Variants on "max(x,y) >= min(x,z)".
2951 Value *C, *D;
2952 if (match(LHS, m_SMax(m_Value(A), m_Value(B))) &&
2953 match(RHS, m_SMin(m_Value(C), m_Value(D))) &&
2954 (A == C || A == D || B == C || B == D)) {
2955 // max(x, ?) pred min(x, ?).
2956 if (Pred == CmpInst::ICMP_SGE)
2957 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002958 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002959 if (Pred == CmpInst::ICMP_SLT)
2960 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002961 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002962 } else if (match(LHS, m_SMin(m_Value(A), m_Value(B))) &&
2963 match(RHS, m_SMax(m_Value(C), m_Value(D))) &&
2964 (A == C || A == D || B == C || B == D)) {
2965 // min(x, ?) pred max(x, ?).
2966 if (Pred == CmpInst::ICMP_SLE)
2967 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002968 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002969 if (Pred == CmpInst::ICMP_SGT)
2970 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002971 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002972 } else if (match(LHS, m_UMax(m_Value(A), m_Value(B))) &&
2973 match(RHS, m_UMin(m_Value(C), m_Value(D))) &&
2974 (A == C || A == D || B == C || B == D)) {
2975 // max(x, ?) pred min(x, ?).
2976 if (Pred == CmpInst::ICMP_UGE)
2977 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002978 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002979 if (Pred == CmpInst::ICMP_ULT)
2980 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002981 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002982 } else if (match(LHS, m_UMin(m_Value(A), m_Value(B))) &&
2983 match(RHS, m_UMax(m_Value(C), m_Value(D))) &&
2984 (A == C || A == D || B == C || B == D)) {
2985 // min(x, ?) pred max(x, ?).
2986 if (Pred == CmpInst::ICMP_ULE)
2987 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002988 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002989 if (Pred == CmpInst::ICMP_UGT)
2990 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002991 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002992 }
2993
Chandler Carruth8059c842012-03-25 21:28:14 +00002994 // Simplify comparisons of related pointers using a powerful, recursive
2995 // GEP-walk when we have target data available..
Dan Gohman18c77a12013-01-31 02:50:36 +00002996 if (LHS->getType()->isPointerTy())
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002997 if (Constant *C = computePointerICmp(Q.DL, Q.TLI, Pred, LHS, RHS))
Chandler Carruth8059c842012-03-25 21:28:14 +00002998 return C;
2999
Nick Lewycky3db143e2012-02-26 02:09:49 +00003000 if (GetElementPtrInst *GLHS = dyn_cast<GetElementPtrInst>(LHS)) {
3001 if (GEPOperator *GRHS = dyn_cast<GEPOperator>(RHS)) {
3002 if (GLHS->getPointerOperand() == GRHS->getPointerOperand() &&
3003 GLHS->hasAllConstantIndices() && GRHS->hasAllConstantIndices() &&
3004 (ICmpInst::isEquality(Pred) ||
3005 (GLHS->isInBounds() && GRHS->isInBounds() &&
3006 Pred == ICmpInst::getSignedPredicate(Pred)))) {
3007 // The bases are equal and the indices are constant. Build a constant
3008 // expression GEP with the same indices and a null base pointer to see
3009 // what constant folding can make out of it.
3010 Constant *Null = Constant::getNullValue(GLHS->getPointerOperandType());
3011 SmallVector<Value *, 4> IndicesLHS(GLHS->idx_begin(), GLHS->idx_end());
David Blaikie4a2e73b2015-04-02 18:55:32 +00003012 Constant *NewLHS = ConstantExpr::getGetElementPtr(
3013 GLHS->getSourceElementType(), Null, IndicesLHS);
Nick Lewycky3db143e2012-02-26 02:09:49 +00003014
3015 SmallVector<Value *, 4> IndicesRHS(GRHS->idx_begin(), GRHS->idx_end());
David Blaikie4a2e73b2015-04-02 18:55:32 +00003016 Constant *NewRHS = ConstantExpr::getGetElementPtr(
3017 GLHS->getSourceElementType(), Null, IndicesRHS);
Nick Lewycky3db143e2012-02-26 02:09:49 +00003018 return ConstantExpr::getICmp(Pred, NewLHS, NewRHS);
3019 }
3020 }
3021 }
3022
David Majnemer5854e9f2014-11-16 02:20:08 +00003023 // If a bit is known to be zero for A and known to be one for B,
3024 // then A and B cannot be equal.
3025 if (ICmpInst::isEquality(Pred)) {
3026 if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
3027 uint32_t BitWidth = CI->getBitWidth();
3028 APInt LHSKnownZero(BitWidth, 0);
3029 APInt LHSKnownOne(BitWidth, 0);
Chandler Carruth66b31302015-01-04 12:03:27 +00003030 computeKnownBits(LHS, LHSKnownZero, LHSKnownOne, Q.DL, /*Depth=*/0, Q.AC,
David Majnemer5854e9f2014-11-16 02:20:08 +00003031 Q.CxtI, Q.DT);
3032 const APInt &RHSVal = CI->getValue();
3033 if (((LHSKnownZero & RHSVal) != 0) || ((LHSKnownOne & ~RHSVal) != 0))
3034 return Pred == ICmpInst::ICMP_EQ
3035 ? ConstantInt::getFalse(CI->getContext())
3036 : ConstantInt::getTrue(CI->getContext());
3037 }
3038 }
3039
Duncan Sandsf532d312010-11-07 16:12:23 +00003040 // If the comparison is with the result of a select instruction, check whether
3041 // comparing with either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003042 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003043 if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003044 return V;
3045
3046 // If the comparison is with the result of a phi instruction, check whether
3047 // doing the compare with each incoming phi value yields a common result.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003048 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003049 if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsfc5ad3f02010-11-09 17:25:51 +00003050 return V;
Duncan Sandsf532d312010-11-07 16:12:23 +00003051
Craig Topper9f008862014-04-15 04:59:12 +00003052 return nullptr;
Chris Lattner084a1b52009-11-09 22:57:59 +00003053}
3054
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003055Value *llvm::SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003056 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00003057 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003058 const DominatorTree *DT, AssumptionCache *AC,
Chandler Carruth85dbea92015-12-24 09:08:08 +00003059 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003060 return ::SimplifyICmpInst(Predicate, LHS, RHS, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003061 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003062}
3063
Sanjay Patel472cc782016-01-11 22:14:42 +00003064/// Given operands for an FCmpInst, see if we can fold the result.
3065/// If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003066static Value *SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00003067 FastMathFlags FMF, const Query &Q,
3068 unsigned MaxRecurse) {
Chris Lattnerc1f19072009-11-09 23:28:39 +00003069 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate;
3070 assert(CmpInst::isFPPredicate(Pred) && "Not an FP compare!");
3071
Chris Lattnera71e9d62009-11-10 00:55:12 +00003072 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
Chris Lattnerc1f19072009-11-09 23:28:39 +00003073 if (Constant *CRHS = dyn_cast<Constant>(RHS))
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003074 return ConstantFoldCompareInstOperands(Pred, CLHS, CRHS, Q.DL, Q.TLI);
Duncan Sands7e800d62010-11-14 11:23:23 +00003075
Chris Lattnera71e9d62009-11-10 00:55:12 +00003076 // If we have a constant, make sure it is on the RHS.
3077 std::swap(LHS, RHS);
3078 Pred = CmpInst::getSwappedPredicate(Pred);
3079 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003080
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003081 // Fold trivial predicates.
3082 if (Pred == FCmpInst::FCMP_FALSE)
3083 return ConstantInt::get(GetCompareTy(LHS), 0);
3084 if (Pred == FCmpInst::FCMP_TRUE)
3085 return ConstantInt::get(GetCompareTy(LHS), 1);
3086
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00003087 // UNO/ORD predicates can be trivially folded if NaNs are ignored.
3088 if (FMF.noNaNs()) {
3089 if (Pred == FCmpInst::FCMP_UNO)
3090 return ConstantInt::get(GetCompareTy(LHS), 0);
3091 if (Pred == FCmpInst::FCMP_ORD)
3092 return ConstantInt::get(GetCompareTy(LHS), 1);
3093 }
3094
Mehdi Aminieb242a52015-03-09 03:20:25 +00003095 // fcmp pred x, undef and fcmp pred undef, x
3096 // fold to true if unordered, false if ordered
3097 if (isa<UndefValue>(LHS) || isa<UndefValue>(RHS)) {
3098 // Choosing NaN for the undef will always make unordered comparison succeed
3099 // and ordered comparison fail.
3100 return ConstantInt::get(GetCompareTy(LHS), CmpInst::isUnordered(Pred));
3101 }
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003102
3103 // fcmp x,x -> true/false. Not all compares are foldable.
Duncan Sands772749a2011-01-01 20:08:02 +00003104 if (LHS == RHS) {
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003105 if (CmpInst::isTrueWhenEqual(Pred))
3106 return ConstantInt::get(GetCompareTy(LHS), 1);
3107 if (CmpInst::isFalseWhenEqual(Pred))
3108 return ConstantInt::get(GetCompareTy(LHS), 0);
3109 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003110
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003111 // Handle fcmp with constant RHS
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003112 if (ConstantFP *CFP = dyn_cast<ConstantFP>(RHS)) {
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003113 // If the constant is a nan, see if we can fold the comparison based on it.
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003114 if (CFP->getValueAPF().isNaN()) {
3115 if (FCmpInst::isOrdered(Pred)) // True "if ordered and foo"
3116 return ConstantInt::getFalse(CFP->getContext());
3117 assert(FCmpInst::isUnordered(Pred) &&
3118 "Comparison must be either ordered or unordered!");
3119 // True if unordered.
3120 return ConstantInt::getTrue(CFP->getContext());
3121 }
3122 // Check whether the constant is an infinity.
3123 if (CFP->getValueAPF().isInfinity()) {
3124 if (CFP->getValueAPF().isNegative()) {
Elena Demikhovsky45f04482015-01-28 08:03:58 +00003125 switch (Pred) {
Elena Demikhovsky45f04482015-01-28 08:03:58 +00003126 case FCmpInst::FCMP_OLT:
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003127 // No value is ordered and less than negative infinity.
3128 return ConstantInt::getFalse(CFP->getContext());
3129 case FCmpInst::FCMP_UGE:
3130 // All values are unordered with or at least negative infinity.
3131 return ConstantInt::getTrue(CFP->getContext());
Elena Demikhovsky45f04482015-01-28 08:03:58 +00003132 default:
3133 break;
3134 }
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003135 } else {
3136 switch (Pred) {
3137 case FCmpInst::FCMP_OGT:
3138 // No value is ordered and greater than infinity.
3139 return ConstantInt::getFalse(CFP->getContext());
3140 case FCmpInst::FCMP_ULE:
3141 // All values are unordered with and at most infinity.
3142 return ConstantInt::getTrue(CFP->getContext());
3143 default:
3144 break;
3145 }
3146 }
3147 }
3148 if (CFP->getValueAPF().isZero()) {
3149 switch (Pred) {
3150 case FCmpInst::FCMP_UGE:
3151 if (CannotBeOrderedLessThanZero(LHS))
3152 return ConstantInt::getTrue(CFP->getContext());
3153 break;
3154 case FCmpInst::FCMP_OLT:
3155 // X < 0
3156 if (CannotBeOrderedLessThanZero(LHS))
3157 return ConstantInt::getFalse(CFP->getContext());
3158 break;
3159 default:
3160 break;
3161 }
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003162 }
3163 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003164
Duncan Sandsa620bd12010-11-07 16:46:25 +00003165 // If the comparison is with the result of a select instruction, check whether
3166 // comparing with either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003167 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003168 if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003169 return V;
3170
3171 // If the comparison is with the result of a phi instruction, check whether
3172 // doing the compare with each incoming phi value yields a common result.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003173 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003174 if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsfc5ad3f02010-11-09 17:25:51 +00003175 return V;
Duncan Sandsa620bd12010-11-07 16:46:25 +00003176
Craig Topper9f008862014-04-15 04:59:12 +00003177 return nullptr;
Chris Lattnerc1f19072009-11-09 23:28:39 +00003178}
3179
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003180Value *llvm::SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00003181 FastMathFlags FMF, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00003182 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003183 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003184 const Instruction *CxtI) {
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00003185 return ::SimplifyFCmpInst(Predicate, LHS, RHS, FMF,
3186 Query(DL, TLI, DT, AC, CxtI), RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003187}
3188
Sanjay Patel472cc782016-01-11 22:14:42 +00003189/// See if V simplifies when its operand Op is replaced with RepOp.
David Majnemer3f0fb982015-06-06 22:40:21 +00003190static const Value *SimplifyWithOpReplaced(Value *V, Value *Op, Value *RepOp,
3191 const Query &Q,
3192 unsigned MaxRecurse) {
3193 // Trivial replacement.
3194 if (V == Op)
3195 return RepOp;
3196
3197 auto *I = dyn_cast<Instruction>(V);
3198 if (!I)
3199 return nullptr;
3200
3201 // If this is a binary operator, try to simplify it with the replaced op.
3202 if (auto *B = dyn_cast<BinaryOperator>(I)) {
3203 // Consider:
3204 // %cmp = icmp eq i32 %x, 2147483647
3205 // %add = add nsw i32 %x, 1
3206 // %sel = select i1 %cmp, i32 -2147483648, i32 %add
3207 //
3208 // We can't replace %sel with %add unless we strip away the flags.
3209 if (isa<OverflowingBinaryOperator>(B))
3210 if (B->hasNoSignedWrap() || B->hasNoUnsignedWrap())
3211 return nullptr;
3212 if (isa<PossiblyExactOperator>(B))
3213 if (B->isExact())
3214 return nullptr;
3215
3216 if (MaxRecurse) {
3217 if (B->getOperand(0) == Op)
3218 return SimplifyBinOp(B->getOpcode(), RepOp, B->getOperand(1), Q,
3219 MaxRecurse - 1);
3220 if (B->getOperand(1) == Op)
3221 return SimplifyBinOp(B->getOpcode(), B->getOperand(0), RepOp, Q,
3222 MaxRecurse - 1);
3223 }
3224 }
3225
3226 // Same for CmpInsts.
3227 if (CmpInst *C = dyn_cast<CmpInst>(I)) {
3228 if (MaxRecurse) {
3229 if (C->getOperand(0) == Op)
3230 return SimplifyCmpInst(C->getPredicate(), RepOp, C->getOperand(1), Q,
3231 MaxRecurse - 1);
3232 if (C->getOperand(1) == Op)
3233 return SimplifyCmpInst(C->getPredicate(), C->getOperand(0), RepOp, Q,
3234 MaxRecurse - 1);
3235 }
3236 }
3237
3238 // TODO: We could hand off more cases to instsimplify here.
3239
3240 // If all operands are constant after substituting Op for RepOp then we can
3241 // constant fold the instruction.
3242 if (Constant *CRepOp = dyn_cast<Constant>(RepOp)) {
3243 // Build a list of all constant operands.
3244 SmallVector<Constant *, 8> ConstOps;
3245 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
3246 if (I->getOperand(i) == Op)
3247 ConstOps.push_back(CRepOp);
3248 else if (Constant *COp = dyn_cast<Constant>(I->getOperand(i)))
3249 ConstOps.push_back(COp);
3250 else
3251 break;
3252 }
3253
3254 // All operands were constants, fold it.
3255 if (ConstOps.size() == I->getNumOperands()) {
3256 if (CmpInst *C = dyn_cast<CmpInst>(I))
3257 return ConstantFoldCompareInstOperands(C->getPredicate(), ConstOps[0],
3258 ConstOps[1], Q.DL, Q.TLI);
3259
3260 if (LoadInst *LI = dyn_cast<LoadInst>(I))
3261 if (!LI->isVolatile())
3262 return ConstantFoldLoadFromConstPtr(ConstOps[0], Q.DL);
3263
Manuel Jacobe9024592016-01-21 06:33:22 +00003264 return ConstantFoldInstOperands(I, ConstOps, Q.DL, Q.TLI);
David Majnemer3f0fb982015-06-06 22:40:21 +00003265 }
3266 }
3267
3268 return nullptr;
3269}
3270
Sanjay Patel472cc782016-01-11 22:14:42 +00003271/// Given operands for a SelectInst, see if we can fold the result.
3272/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00003273static Value *SimplifySelectInst(Value *CondVal, Value *TrueVal,
3274 Value *FalseVal, const Query &Q,
3275 unsigned MaxRecurse) {
Chris Lattnerc707fa92010-04-20 05:32:14 +00003276 // select true, X, Y -> X
3277 // select false, X, Y -> Y
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00003278 if (Constant *CB = dyn_cast<Constant>(CondVal)) {
3279 if (CB->isAllOnesValue())
3280 return TrueVal;
3281 if (CB->isNullValue())
3282 return FalseVal;
3283 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003284
Chris Lattnerc707fa92010-04-20 05:32:14 +00003285 // select C, X, X -> X
Duncan Sands772749a2011-01-01 20:08:02 +00003286 if (TrueVal == FalseVal)
Chris Lattnerc707fa92010-04-20 05:32:14 +00003287 return TrueVal;
Duncan Sands7e800d62010-11-14 11:23:23 +00003288
Chris Lattnerc707fa92010-04-20 05:32:14 +00003289 if (isa<UndefValue>(CondVal)) { // select undef, X, Y -> X or Y
3290 if (isa<Constant>(TrueVal))
3291 return TrueVal;
3292 return FalseVal;
3293 }
Dan Gohman54664ed2011-07-01 01:03:43 +00003294 if (isa<UndefValue>(TrueVal)) // select C, undef, X -> X
3295 return FalseVal;
3296 if (isa<UndefValue>(FalseVal)) // select C, X, undef -> X
3297 return TrueVal;
Duncan Sands7e800d62010-11-14 11:23:23 +00003298
David Majnemer3f0fb982015-06-06 22:40:21 +00003299 if (const auto *ICI = dyn_cast<ICmpInst>(CondVal)) {
3300 unsigned BitWidth = Q.DL.getTypeSizeInBits(TrueVal->getType());
David Majnemer7bd71442014-12-20 03:29:59 +00003301 ICmpInst::Predicate Pred = ICI->getPredicate();
David Majnemer3f0fb982015-06-06 22:40:21 +00003302 Value *CmpLHS = ICI->getOperand(0);
3303 Value *CmpRHS = ICI->getOperand(1);
David Majnemer147f8582014-12-20 04:45:33 +00003304 APInt MinSignedValue = APInt::getSignBit(BitWidth);
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003305 Value *X;
3306 const APInt *Y;
David Majnemer7bd71442014-12-20 03:29:59 +00003307 bool TrueWhenUnset;
David Majnemer147f8582014-12-20 04:45:33 +00003308 bool IsBitTest = false;
David Majnemer0b6a0b02014-12-20 03:04:38 +00003309 if (ICmpInst::isEquality(Pred) &&
David Majnemer3f0fb982015-06-06 22:40:21 +00003310 match(CmpLHS, m_And(m_Value(X), m_APInt(Y))) &&
3311 match(CmpRHS, m_Zero())) {
David Majnemer7bd71442014-12-20 03:29:59 +00003312 IsBitTest = true;
3313 TrueWhenUnset = Pred == ICmpInst::ICMP_EQ;
David Majnemer3f0fb982015-06-06 22:40:21 +00003314 } else if (Pred == ICmpInst::ICMP_SLT && match(CmpRHS, m_Zero())) {
3315 X = CmpLHS;
David Majnemer7bd71442014-12-20 03:29:59 +00003316 Y = &MinSignedValue;
3317 IsBitTest = true;
3318 TrueWhenUnset = false;
David Majnemer3f0fb982015-06-06 22:40:21 +00003319 } else if (Pred == ICmpInst::ICMP_SGT && match(CmpRHS, m_AllOnes())) {
3320 X = CmpLHS;
David Majnemer7bd71442014-12-20 03:29:59 +00003321 Y = &MinSignedValue;
3322 IsBitTest = true;
3323 TrueWhenUnset = true;
3324 }
3325 if (IsBitTest) {
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003326 const APInt *C;
3327 // (X & Y) == 0 ? X & ~Y : X --> X
3328 // (X & Y) != 0 ? X & ~Y : X --> X & ~Y
3329 if (FalseVal == X && match(TrueVal, m_And(m_Specific(X), m_APInt(C))) &&
3330 *Y == ~*C)
David Majnemer7bd71442014-12-20 03:29:59 +00003331 return TrueWhenUnset ? FalseVal : TrueVal;
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003332 // (X & Y) == 0 ? X : X & ~Y --> X & ~Y
3333 // (X & Y) != 0 ? X : X & ~Y --> X
3334 if (TrueVal == X && match(FalseVal, m_And(m_Specific(X), m_APInt(C))) &&
3335 *Y == ~*C)
David Majnemer7bd71442014-12-20 03:29:59 +00003336 return TrueWhenUnset ? FalseVal : TrueVal;
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003337
3338 if (Y->isPowerOf2()) {
3339 // (X & Y) == 0 ? X | Y : X --> X | Y
3340 // (X & Y) != 0 ? X | Y : X --> X
3341 if (FalseVal == X && match(TrueVal, m_Or(m_Specific(X), m_APInt(C))) &&
3342 *Y == *C)
David Majnemer7bd71442014-12-20 03:29:59 +00003343 return TrueWhenUnset ? TrueVal : FalseVal;
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003344 // (X & Y) == 0 ? X : X | Y --> X
3345 // (X & Y) != 0 ? X : X | Y --> X | Y
3346 if (TrueVal == X && match(FalseVal, m_Or(m_Specific(X), m_APInt(C))) &&
3347 *Y == *C)
David Majnemer7bd71442014-12-20 03:29:59 +00003348 return TrueWhenUnset ? TrueVal : FalseVal;
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003349 }
3350 }
David Majnemer3f0fb982015-06-06 22:40:21 +00003351 if (ICI->hasOneUse()) {
3352 const APInt *C;
3353 if (match(CmpRHS, m_APInt(C))) {
3354 // X < MIN ? T : F --> F
3355 if (Pred == ICmpInst::ICMP_SLT && C->isMinSignedValue())
3356 return FalseVal;
3357 // X < MIN ? T : F --> F
3358 if (Pred == ICmpInst::ICMP_ULT && C->isMinValue())
3359 return FalseVal;
3360 // X > MAX ? T : F --> F
3361 if (Pred == ICmpInst::ICMP_SGT && C->isMaxSignedValue())
3362 return FalseVal;
3363 // X > MAX ? T : F --> F
3364 if (Pred == ICmpInst::ICMP_UGT && C->isMaxValue())
3365 return FalseVal;
3366 }
3367 }
3368
3369 // If we have an equality comparison then we know the value in one of the
3370 // arms of the select. See if substituting this value into the arm and
3371 // simplifying the result yields the same value as the other arm.
3372 if (Pred == ICmpInst::ICMP_EQ) {
3373 if (SimplifyWithOpReplaced(FalseVal, CmpLHS, CmpRHS, Q, MaxRecurse) ==
3374 TrueVal ||
3375 SimplifyWithOpReplaced(FalseVal, CmpRHS, CmpLHS, Q, MaxRecurse) ==
3376 TrueVal)
3377 return FalseVal;
3378 if (SimplifyWithOpReplaced(TrueVal, CmpLHS, CmpRHS, Q, MaxRecurse) ==
3379 FalseVal ||
3380 SimplifyWithOpReplaced(TrueVal, CmpRHS, CmpLHS, Q, MaxRecurse) ==
3381 FalseVal)
3382 return FalseVal;
3383 } else if (Pred == ICmpInst::ICMP_NE) {
3384 if (SimplifyWithOpReplaced(TrueVal, CmpLHS, CmpRHS, Q, MaxRecurse) ==
3385 FalseVal ||
3386 SimplifyWithOpReplaced(TrueVal, CmpRHS, CmpLHS, Q, MaxRecurse) ==
3387 FalseVal)
3388 return TrueVal;
3389 if (SimplifyWithOpReplaced(FalseVal, CmpLHS, CmpRHS, Q, MaxRecurse) ==
3390 TrueVal ||
3391 SimplifyWithOpReplaced(FalseVal, CmpRHS, CmpLHS, Q, MaxRecurse) ==
3392 TrueVal)
3393 return TrueVal;
3394 }
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003395 }
3396
Craig Topper9f008862014-04-15 04:59:12 +00003397 return nullptr;
Chris Lattnerc707fa92010-04-20 05:32:14 +00003398}
3399
Duncan Sandsb8cee002012-03-13 11:42:19 +00003400Value *llvm::SimplifySelectInst(Value *Cond, Value *TrueVal, Value *FalseVal,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003401 const DataLayout &DL,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003402 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003403 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003404 const Instruction *CxtI) {
3405 return ::SimplifySelectInst(Cond, TrueVal, FalseVal,
Chandler Carruth66b31302015-01-04 12:03:27 +00003406 Query(DL, TLI, DT, AC, CxtI), RecursionLimit);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003407}
3408
Sanjay Patel472cc782016-01-11 22:14:42 +00003409/// Given operands for an GetElementPtrInst, see if we can fold the result.
3410/// If not, this returns null.
David Blaikie4a2e73b2015-04-02 18:55:32 +00003411static Value *SimplifyGEPInst(Type *SrcTy, ArrayRef<Value *> Ops,
3412 const Query &Q, unsigned) {
Duncan Sands8a0f4862010-11-22 13:42:49 +00003413 // The type of the GEP pointer operand.
David Blaikie4a2e73b2015-04-02 18:55:32 +00003414 unsigned AS =
3415 cast<PointerType>(Ops[0]->getType()->getScalarType())->getAddressSpace();
Duncan Sands8a0f4862010-11-22 13:42:49 +00003416
Chris Lattner8574aba2009-11-27 00:29:05 +00003417 // getelementptr P -> P.
Jay Foadb992a632011-07-19 15:07:52 +00003418 if (Ops.size() == 1)
Chris Lattner8574aba2009-11-27 00:29:05 +00003419 return Ops[0];
3420
Nico Weber48c82402014-08-27 20:06:19 +00003421 // Compute the (pointer) type returned by the GEP instruction.
David Blaikie4a2e73b2015-04-02 18:55:32 +00003422 Type *LastType = GetElementPtrInst::getIndexedType(SrcTy, Ops.slice(1));
Nico Weber48c82402014-08-27 20:06:19 +00003423 Type *GEPTy = PointerType::get(LastType, AS);
3424 if (VectorType *VT = dyn_cast<VectorType>(Ops[0]->getType()))
3425 GEPTy = VectorType::get(GEPTy, VT->getNumElements());
3426
3427 if (isa<UndefValue>(Ops[0]))
Duncan Sands8a0f4862010-11-22 13:42:49 +00003428 return UndefValue::get(GEPTy);
Chris Lattner8574aba2009-11-27 00:29:05 +00003429
Jay Foadb992a632011-07-19 15:07:52 +00003430 if (Ops.size() == 2) {
Duncan Sandscf4bceb2010-11-21 13:53:09 +00003431 // getelementptr P, 0 -> P.
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00003432 if (match(Ops[1], m_Zero()))
3433 return Ops[0];
Nico Weber48c82402014-08-27 20:06:19 +00003434
David Blaikie4a2e73b2015-04-02 18:55:32 +00003435 Type *Ty = SrcTy;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003436 if (Ty->isSized()) {
Nico Weber48c82402014-08-27 20:06:19 +00003437 Value *P;
3438 uint64_t C;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003439 uint64_t TyAllocSize = Q.DL.getTypeAllocSize(Ty);
Nico Weber48c82402014-08-27 20:06:19 +00003440 // getelementptr P, N -> P if P points to a type of zero size.
3441 if (TyAllocSize == 0)
Duncan Sandscf4bceb2010-11-21 13:53:09 +00003442 return Ops[0];
Nico Weber48c82402014-08-27 20:06:19 +00003443
3444 // The following transforms are only safe if the ptrtoint cast
3445 // doesn't truncate the pointers.
3446 if (Ops[1]->getType()->getScalarSizeInBits() ==
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003447 Q.DL.getPointerSizeInBits(AS)) {
Nico Weber48c82402014-08-27 20:06:19 +00003448 auto PtrToIntOrZero = [GEPTy](Value *P) -> Value * {
3449 if (match(P, m_Zero()))
3450 return Constant::getNullValue(GEPTy);
3451 Value *Temp;
3452 if (match(P, m_PtrToInt(m_Value(Temp))))
David Majnemer11ca2972014-08-27 20:08:34 +00003453 if (Temp->getType() == GEPTy)
3454 return Temp;
Nico Weber48c82402014-08-27 20:06:19 +00003455 return nullptr;
3456 };
3457
3458 // getelementptr V, (sub P, V) -> P if P points to a type of size 1.
3459 if (TyAllocSize == 1 &&
3460 match(Ops[1], m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0])))))
3461 if (Value *R = PtrToIntOrZero(P))
3462 return R;
3463
3464 // getelementptr V, (ashr (sub P, V), C) -> Q
3465 // if P points to a type of size 1 << C.
3466 if (match(Ops[1],
3467 m_AShr(m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0]))),
3468 m_ConstantInt(C))) &&
3469 TyAllocSize == 1ULL << C)
3470 if (Value *R = PtrToIntOrZero(P))
3471 return R;
3472
3473 // getelementptr V, (sdiv (sub P, V), C) -> Q
3474 // if P points to a type of size C.
3475 if (match(Ops[1],
3476 m_SDiv(m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0]))),
3477 m_SpecificInt(TyAllocSize))))
3478 if (Value *R = PtrToIntOrZero(P))
3479 return R;
3480 }
Duncan Sandscf4bceb2010-11-21 13:53:09 +00003481 }
3482 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003483
Chris Lattner8574aba2009-11-27 00:29:05 +00003484 // Check to see if this is constant foldable.
Jay Foadb992a632011-07-19 15:07:52 +00003485 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
Chris Lattner8574aba2009-11-27 00:29:05 +00003486 if (!isa<Constant>(Ops[i]))
Craig Topper9f008862014-04-15 04:59:12 +00003487 return nullptr;
Duncan Sands7e800d62010-11-14 11:23:23 +00003488
David Blaikie4a2e73b2015-04-02 18:55:32 +00003489 return ConstantExpr::getGetElementPtr(SrcTy, cast<Constant>(Ops[0]),
3490 Ops.slice(1));
Chris Lattner8574aba2009-11-27 00:29:05 +00003491}
3492
Manuel Jacob20c6d5b2016-01-17 22:46:43 +00003493Value *llvm::SimplifyGEPInst(Type *SrcTy, ArrayRef<Value *> Ops,
3494 const DataLayout &DL,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003495 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003496 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003497 const Instruction *CxtI) {
Manuel Jacob20c6d5b2016-01-17 22:46:43 +00003498 return ::SimplifyGEPInst(SrcTy, Ops,
3499 Query(DL, TLI, DT, AC, CxtI), RecursionLimit);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003500}
3501
Sanjay Patel472cc782016-01-11 22:14:42 +00003502/// Given operands for an InsertValueInst, see if we can fold the result.
3503/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00003504static Value *SimplifyInsertValueInst(Value *Agg, Value *Val,
3505 ArrayRef<unsigned> Idxs, const Query &Q,
3506 unsigned) {
Duncan Sandsfd26a952011-09-05 06:52:48 +00003507 if (Constant *CAgg = dyn_cast<Constant>(Agg))
3508 if (Constant *CVal = dyn_cast<Constant>(Val))
3509 return ConstantFoldInsertValueInstruction(CAgg, CVal, Idxs);
3510
3511 // insertvalue x, undef, n -> x
3512 if (match(Val, m_Undef()))
3513 return Agg;
3514
3515 // insertvalue x, (extractvalue y, n), n
3516 if (ExtractValueInst *EV = dyn_cast<ExtractValueInst>(Val))
Benjamin Kramer4b79c212011-09-05 18:16:19 +00003517 if (EV->getAggregateOperand()->getType() == Agg->getType() &&
3518 EV->getIndices() == Idxs) {
Duncan Sandsfd26a952011-09-05 06:52:48 +00003519 // insertvalue undef, (extractvalue y, n), n -> y
3520 if (match(Agg, m_Undef()))
3521 return EV->getAggregateOperand();
3522
3523 // insertvalue y, (extractvalue y, n), n -> y
3524 if (Agg == EV->getAggregateOperand())
3525 return Agg;
3526 }
3527
Craig Topper9f008862014-04-15 04:59:12 +00003528 return nullptr;
Duncan Sandsfd26a952011-09-05 06:52:48 +00003529}
3530
Chandler Carruth66b31302015-01-04 12:03:27 +00003531Value *llvm::SimplifyInsertValueInst(
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003532 Value *Agg, Value *Val, ArrayRef<unsigned> Idxs, const DataLayout &DL,
Chandler Carruth66b31302015-01-04 12:03:27 +00003533 const TargetLibraryInfo *TLI, const DominatorTree *DT, AssumptionCache *AC,
3534 const Instruction *CxtI) {
3535 return ::SimplifyInsertValueInst(Agg, Val, Idxs, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003536 RecursionLimit);
3537}
3538
Sanjay Patel472cc782016-01-11 22:14:42 +00003539/// Given operands for an ExtractValueInst, see if we can fold the result.
3540/// If not, this returns null.
David Majnemer25a796e2015-07-13 01:15:46 +00003541static Value *SimplifyExtractValueInst(Value *Agg, ArrayRef<unsigned> Idxs,
3542 const Query &, unsigned) {
3543 if (auto *CAgg = dyn_cast<Constant>(Agg))
3544 return ConstantFoldExtractValueInstruction(CAgg, Idxs);
3545
3546 // extractvalue x, (insertvalue y, elt, n), n -> elt
3547 unsigned NumIdxs = Idxs.size();
3548 for (auto *IVI = dyn_cast<InsertValueInst>(Agg); IVI != nullptr;
3549 IVI = dyn_cast<InsertValueInst>(IVI->getAggregateOperand())) {
3550 ArrayRef<unsigned> InsertValueIdxs = IVI->getIndices();
3551 unsigned NumInsertValueIdxs = InsertValueIdxs.size();
3552 unsigned NumCommonIdxs = std::min(NumInsertValueIdxs, NumIdxs);
3553 if (InsertValueIdxs.slice(0, NumCommonIdxs) ==
3554 Idxs.slice(0, NumCommonIdxs)) {
3555 if (NumIdxs == NumInsertValueIdxs)
3556 return IVI->getInsertedValueOperand();
3557 break;
3558 }
3559 }
3560
3561 return nullptr;
3562}
3563
3564Value *llvm::SimplifyExtractValueInst(Value *Agg, ArrayRef<unsigned> Idxs,
3565 const DataLayout &DL,
3566 const TargetLibraryInfo *TLI,
3567 const DominatorTree *DT,
3568 AssumptionCache *AC,
3569 const Instruction *CxtI) {
3570 return ::SimplifyExtractValueInst(Agg, Idxs, Query(DL, TLI, DT, AC, CxtI),
3571 RecursionLimit);
3572}
3573
Sanjay Patel472cc782016-01-11 22:14:42 +00003574/// Given operands for an ExtractElementInst, see if we can fold the result.
3575/// If not, this returns null.
David Majnemer599ca442015-07-13 01:15:53 +00003576static Value *SimplifyExtractElementInst(Value *Vec, Value *Idx, const Query &,
3577 unsigned) {
3578 if (auto *CVec = dyn_cast<Constant>(Vec)) {
3579 if (auto *CIdx = dyn_cast<Constant>(Idx))
3580 return ConstantFoldExtractElementInstruction(CVec, CIdx);
3581
3582 // The index is not relevant if our vector is a splat.
3583 if (auto *Splat = CVec->getSplatValue())
3584 return Splat;
3585
3586 if (isa<UndefValue>(Vec))
3587 return UndefValue::get(Vec->getType()->getVectorElementType());
3588 }
3589
3590 // If extracting a specified index from the vector, see if we can recursively
3591 // find a previously computed scalar that was inserted into the vector.
David Majnemer8e335ca2015-08-18 22:18:22 +00003592 if (auto *IdxC = dyn_cast<ConstantInt>(Idx))
3593 if (Value *Elt = findScalarElement(Vec, IdxC->getZExtValue()))
David Majnemer599ca442015-07-13 01:15:53 +00003594 return Elt;
David Majnemer599ca442015-07-13 01:15:53 +00003595
3596 return nullptr;
3597}
3598
3599Value *llvm::SimplifyExtractElementInst(
3600 Value *Vec, Value *Idx, const DataLayout &DL, const TargetLibraryInfo *TLI,
3601 const DominatorTree *DT, AssumptionCache *AC, const Instruction *CxtI) {
3602 return ::SimplifyExtractElementInst(Vec, Idx, Query(DL, TLI, DT, AC, CxtI),
3603 RecursionLimit);
3604}
3605
Sanjay Patel472cc782016-01-11 22:14:42 +00003606/// See if we can fold the given phi. If not, returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00003607static Value *SimplifyPHINode(PHINode *PN, const Query &Q) {
Duncan Sands7412f6e2010-11-17 04:30:22 +00003608 // If all of the PHI's incoming values are the same then replace the PHI node
3609 // with the common value.
Craig Topper9f008862014-04-15 04:59:12 +00003610 Value *CommonValue = nullptr;
Duncan Sands7412f6e2010-11-17 04:30:22 +00003611 bool HasUndefInput = false;
Pete Cooper833f34d2015-05-12 20:05:31 +00003612 for (Value *Incoming : PN->incoming_values()) {
Duncan Sands7412f6e2010-11-17 04:30:22 +00003613 // If the incoming value is the phi node itself, it can safely be skipped.
3614 if (Incoming == PN) continue;
3615 if (isa<UndefValue>(Incoming)) {
3616 // Remember that we saw an undef value, but otherwise ignore them.
3617 HasUndefInput = true;
3618 continue;
3619 }
3620 if (CommonValue && Incoming != CommonValue)
Craig Topper9f008862014-04-15 04:59:12 +00003621 return nullptr; // Not the same, bail out.
Duncan Sands7412f6e2010-11-17 04:30:22 +00003622 CommonValue = Incoming;
3623 }
3624
3625 // If CommonValue is null then all of the incoming values were either undef or
3626 // equal to the phi node itself.
3627 if (!CommonValue)
3628 return UndefValue::get(PN->getType());
3629
3630 // If we have a PHI node like phi(X, undef, X), where X is defined by some
3631 // instruction, we cannot return X as the result of the PHI node unless it
3632 // dominates the PHI block.
3633 if (HasUndefInput)
Craig Topper9f008862014-04-15 04:59:12 +00003634 return ValueDominatesPHI(CommonValue, PN, Q.DT) ? CommonValue : nullptr;
Duncan Sands7412f6e2010-11-17 04:30:22 +00003635
3636 return CommonValue;
3637}
3638
Duncan Sands395ac42d2012-03-13 14:07:05 +00003639static Value *SimplifyTruncInst(Value *Op, Type *Ty, const Query &Q, unsigned) {
3640 if (Constant *C = dyn_cast<Constant>(Op))
Manuel Jacob925d0292016-01-21 06:31:08 +00003641 return ConstantFoldCastOperand(Instruction::Trunc, C, Ty, Q.DL);
Duncan Sands395ac42d2012-03-13 14:07:05 +00003642
Craig Topper9f008862014-04-15 04:59:12 +00003643 return nullptr;
Duncan Sands395ac42d2012-03-13 14:07:05 +00003644}
3645
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003646Value *llvm::SimplifyTruncInst(Value *Op, Type *Ty, const DataLayout &DL,
Duncan Sands395ac42d2012-03-13 14:07:05 +00003647 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003648 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003649 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003650 return ::SimplifyTruncInst(Op, Ty, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00003651 RecursionLimit);
Duncan Sands395ac42d2012-03-13 14:07:05 +00003652}
3653
Chris Lattnera71e9d62009-11-10 00:55:12 +00003654//=== Helper functions for higher up the class hierarchy.
Chris Lattnerc1f19072009-11-09 23:28:39 +00003655
Sanjay Patel472cc782016-01-11 22:14:42 +00003656/// Given operands for a BinaryOperator, see if we can fold the result.
3657/// If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003658static Value *SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003659 const Query &Q, unsigned MaxRecurse) {
Chris Lattnera71e9d62009-11-10 00:55:12 +00003660 switch (Opcode) {
Chris Lattner9e4aa022011-02-09 17:15:04 +00003661 case Instruction::Add:
Duncan Sands8b4e2832011-02-09 17:45:03 +00003662 return SimplifyAddInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003663 Q, MaxRecurse);
Michael Ilsemand2b05e52012-12-12 00:29:16 +00003664 case Instruction::FAdd:
3665 return SimplifyFAddInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
3666
Chris Lattner9e4aa022011-02-09 17:15:04 +00003667 case Instruction::Sub:
Duncan Sands8b4e2832011-02-09 17:45:03 +00003668 return SimplifySubInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003669 Q, MaxRecurse);
Michael Ilsemand2b05e52012-12-12 00:29:16 +00003670 case Instruction::FSub:
3671 return SimplifyFSubInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
3672
Duncan Sandsb8cee002012-03-13 11:42:19 +00003673 case Instruction::Mul: return SimplifyMulInst (LHS, RHS, Q, MaxRecurse);
Michael Ilsemand2b05e52012-12-12 00:29:16 +00003674 case Instruction::FMul:
3675 return SimplifyFMulInst (LHS, RHS, FastMathFlags(), Q, MaxRecurse);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003676 case Instruction::SDiv: return SimplifySDivInst(LHS, RHS, Q, MaxRecurse);
3677 case Instruction::UDiv: return SimplifyUDivInst(LHS, RHS, Q, MaxRecurse);
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00003678 case Instruction::FDiv:
3679 return SimplifyFDivInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003680 case Instruction::SRem: return SimplifySRemInst(LHS, RHS, Q, MaxRecurse);
3681 case Instruction::URem: return SimplifyURemInst(LHS, RHS, Q, MaxRecurse);
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00003682 case Instruction::FRem:
3683 return SimplifyFRemInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00003684 case Instruction::Shl:
Duncan Sands8b4e2832011-02-09 17:45:03 +00003685 return SimplifyShlInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003686 Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00003687 case Instruction::LShr:
Duncan Sandsb8cee002012-03-13 11:42:19 +00003688 return SimplifyLShrInst(LHS, RHS, /*isExact*/false, Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00003689 case Instruction::AShr:
Duncan Sandsb8cee002012-03-13 11:42:19 +00003690 return SimplifyAShrInst(LHS, RHS, /*isExact*/false, Q, MaxRecurse);
3691 case Instruction::And: return SimplifyAndInst(LHS, RHS, Q, MaxRecurse);
3692 case Instruction::Or: return SimplifyOrInst (LHS, RHS, Q, MaxRecurse);
3693 case Instruction::Xor: return SimplifyXorInst(LHS, RHS, Q, MaxRecurse);
Chris Lattnera71e9d62009-11-10 00:55:12 +00003694 default:
3695 if (Constant *CLHS = dyn_cast<Constant>(LHS))
Manuel Jacoba61ca372016-01-21 06:26:35 +00003696 if (Constant *CRHS = dyn_cast<Constant>(RHS))
3697 return ConstantFoldBinaryOpOperands(Opcode, CLHS, CRHS, Q.DL);
Duncan Sandsb0579e92010-11-10 13:00:08 +00003698
Duncan Sands6c7a52c2010-12-21 08:49:00 +00003699 // If the operation is associative, try some generic simplifications.
3700 if (Instruction::isAssociative(Opcode))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003701 if (Value *V = SimplifyAssociativeBinOp(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00003702 return V;
3703
Duncan Sandsb8cee002012-03-13 11:42:19 +00003704 // If the operation is with the result of a select instruction check whether
Duncan Sandsb0579e92010-11-10 13:00:08 +00003705 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003706 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003707 if (Value *V = ThreadBinOpOverSelect(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003708 return V;
3709
3710 // If the operation is with the result of a phi instruction, check whether
3711 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003712 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003713 if (Value *V = ThreadBinOpOverPHI(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00003714 return V;
3715
Craig Topper9f008862014-04-15 04:59:12 +00003716 return nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00003717 }
3718}
Chris Lattnerc1f19072009-11-09 23:28:39 +00003719
Sanjay Patel472cc782016-01-11 22:14:42 +00003720/// Given operands for a BinaryOperator, see if we can fold the result.
3721/// If not, this returns null.
Michael Zolotukhin4e8598e2015-02-06 20:02:51 +00003722/// In contrast to SimplifyBinOp, try to use FastMathFlag when folding the
3723/// result. In case we don't need FastMathFlags, simply fall to SimplifyBinOp.
3724static Value *SimplifyFPBinOp(unsigned Opcode, Value *LHS, Value *RHS,
3725 const FastMathFlags &FMF, const Query &Q,
3726 unsigned MaxRecurse) {
3727 switch (Opcode) {
3728 case Instruction::FAdd:
3729 return SimplifyFAddInst(LHS, RHS, FMF, Q, MaxRecurse);
3730 case Instruction::FSub:
3731 return SimplifyFSubInst(LHS, RHS, FMF, Q, MaxRecurse);
3732 case Instruction::FMul:
3733 return SimplifyFMulInst(LHS, RHS, FMF, Q, MaxRecurse);
3734 default:
3735 return SimplifyBinOp(Opcode, LHS, RHS, Q, MaxRecurse);
3736 }
3737}
3738
Duncan Sands7e800d62010-11-14 11:23:23 +00003739Value *llvm::SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003740 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003741 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003742 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003743 return ::SimplifyBinOp(Opcode, LHS, RHS, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00003744 RecursionLimit);
Chris Lattnerc1f19072009-11-09 23:28:39 +00003745}
3746
Michael Zolotukhin4e8598e2015-02-06 20:02:51 +00003747Value *llvm::SimplifyFPBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003748 const FastMathFlags &FMF, const DataLayout &DL,
Michael Zolotukhin4e8598e2015-02-06 20:02:51 +00003749 const TargetLibraryInfo *TLI,
3750 const DominatorTree *DT, AssumptionCache *AC,
3751 const Instruction *CxtI) {
3752 return ::SimplifyFPBinOp(Opcode, LHS, RHS, FMF, Query(DL, TLI, DT, AC, CxtI),
3753 RecursionLimit);
3754}
3755
Sanjay Patel472cc782016-01-11 22:14:42 +00003756/// Given operands for a CmpInst, see if we can fold the result.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003757static Value *SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003758 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003759 if (CmpInst::isIntPredicate((CmpInst::Predicate)Predicate))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003760 return SimplifyICmpInst(Predicate, LHS, RHS, Q, MaxRecurse);
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00003761 return SimplifyFCmpInst(Predicate, LHS, RHS, FastMathFlags(), Q, MaxRecurse);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003762}
3763
3764Value *llvm::SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003765 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003766 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003767 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003768 return ::SimplifyCmpInst(Predicate, LHS, RHS, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003769 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003770}
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003771
Michael Ilseman54857292013-02-07 19:26:05 +00003772static bool IsIdempotent(Intrinsic::ID ID) {
3773 switch (ID) {
3774 default: return false;
3775
3776 // Unary idempotent: f(f(x)) = f(x)
3777 case Intrinsic::fabs:
3778 case Intrinsic::floor:
3779 case Intrinsic::ceil:
3780 case Intrinsic::trunc:
3781 case Intrinsic::rint:
3782 case Intrinsic::nearbyint:
Hal Finkel171817e2013-08-07 22:49:12 +00003783 case Intrinsic::round:
Michael Ilseman54857292013-02-07 19:26:05 +00003784 return true;
3785 }
3786}
3787
3788template <typename IterTy>
David Majnemer15032582015-05-22 03:56:46 +00003789static Value *SimplifyIntrinsic(Function *F, IterTy ArgBegin, IterTy ArgEnd,
Michael Ilseman54857292013-02-07 19:26:05 +00003790 const Query &Q, unsigned MaxRecurse) {
David Majnemer15032582015-05-22 03:56:46 +00003791 Intrinsic::ID IID = F->getIntrinsicID();
3792 unsigned NumOperands = std::distance(ArgBegin, ArgEnd);
3793 Type *ReturnType = F->getReturnType();
3794
3795 // Binary Ops
3796 if (NumOperands == 2) {
3797 Value *LHS = *ArgBegin;
3798 Value *RHS = *(ArgBegin + 1);
3799 if (IID == Intrinsic::usub_with_overflow ||
3800 IID == Intrinsic::ssub_with_overflow) {
3801 // X - X -> { 0, false }
3802 if (LHS == RHS)
3803 return Constant::getNullValue(ReturnType);
3804
3805 // X - undef -> undef
3806 // undef - X -> undef
3807 if (isa<UndefValue>(LHS) || isa<UndefValue>(RHS))
3808 return UndefValue::get(ReturnType);
3809 }
3810
3811 if (IID == Intrinsic::uadd_with_overflow ||
3812 IID == Intrinsic::sadd_with_overflow) {
3813 // X + undef -> undef
3814 if (isa<UndefValue>(RHS))
3815 return UndefValue::get(ReturnType);
3816 }
3817
3818 if (IID == Intrinsic::umul_with_overflow ||
3819 IID == Intrinsic::smul_with_overflow) {
3820 // X * 0 -> { 0, false }
3821 if (match(RHS, m_Zero()))
3822 return Constant::getNullValue(ReturnType);
3823
3824 // X * undef -> { 0, false }
3825 if (match(RHS, m_Undef()))
3826 return Constant::getNullValue(ReturnType);
3827 }
3828 }
3829
Michael Ilseman54857292013-02-07 19:26:05 +00003830 // Perform idempotent optimizations
3831 if (!IsIdempotent(IID))
Craig Topper9f008862014-04-15 04:59:12 +00003832 return nullptr;
Michael Ilseman54857292013-02-07 19:26:05 +00003833
3834 // Unary Ops
David Majnemer15032582015-05-22 03:56:46 +00003835 if (NumOperands == 1)
Michael Ilseman54857292013-02-07 19:26:05 +00003836 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(*ArgBegin))
3837 if (II->getIntrinsicID() == IID)
3838 return II;
3839
Craig Topper9f008862014-04-15 04:59:12 +00003840 return nullptr;
Michael Ilseman54857292013-02-07 19:26:05 +00003841}
3842
Chandler Carruth9dc35582012-12-28 11:30:55 +00003843template <typename IterTy>
Chandler Carruthf6182152012-12-28 14:23:29 +00003844static Value *SimplifyCall(Value *V, IterTy ArgBegin, IterTy ArgEnd,
Chandler Carruth9dc35582012-12-28 11:30:55 +00003845 const Query &Q, unsigned MaxRecurse) {
Chandler Carruthf6182152012-12-28 14:23:29 +00003846 Type *Ty = V->getType();
Chandler Carruth9dc35582012-12-28 11:30:55 +00003847 if (PointerType *PTy = dyn_cast<PointerType>(Ty))
3848 Ty = PTy->getElementType();
3849 FunctionType *FTy = cast<FunctionType>(Ty);
3850
Dan Gohman85977e62011-11-04 18:32:42 +00003851 // call undef -> undef
Chandler Carruthf6182152012-12-28 14:23:29 +00003852 if (isa<UndefValue>(V))
Chandler Carruth9dc35582012-12-28 11:30:55 +00003853 return UndefValue::get(FTy->getReturnType());
Dan Gohman85977e62011-11-04 18:32:42 +00003854
Chandler Carruthf6182152012-12-28 14:23:29 +00003855 Function *F = dyn_cast<Function>(V);
3856 if (!F)
Craig Topper9f008862014-04-15 04:59:12 +00003857 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00003858
David Majnemer15032582015-05-22 03:56:46 +00003859 if (F->isIntrinsic())
3860 if (Value *Ret = SimplifyIntrinsic(F, ArgBegin, ArgEnd, Q, MaxRecurse))
Michael Ilseman54857292013-02-07 19:26:05 +00003861 return Ret;
3862
Chandler Carruthf6182152012-12-28 14:23:29 +00003863 if (!canConstantFoldCallTo(F))
Craig Topper9f008862014-04-15 04:59:12 +00003864 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00003865
3866 SmallVector<Constant *, 4> ConstantArgs;
3867 ConstantArgs.reserve(ArgEnd - ArgBegin);
3868 for (IterTy I = ArgBegin, E = ArgEnd; I != E; ++I) {
3869 Constant *C = dyn_cast<Constant>(*I);
3870 if (!C)
Craig Topper9f008862014-04-15 04:59:12 +00003871 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00003872 ConstantArgs.push_back(C);
3873 }
3874
3875 return ConstantFoldCall(F, ConstantArgs, Q.TLI);
Dan Gohman85977e62011-11-04 18:32:42 +00003876}
3877
Chandler Carruthf6182152012-12-28 14:23:29 +00003878Value *llvm::SimplifyCall(Value *V, User::op_iterator ArgBegin,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003879 User::op_iterator ArgEnd, const DataLayout &DL,
Chandler Carruth66b31302015-01-04 12:03:27 +00003880 const TargetLibraryInfo *TLI, const DominatorTree *DT,
3881 AssumptionCache *AC, const Instruction *CxtI) {
3882 return ::SimplifyCall(V, ArgBegin, ArgEnd, Query(DL, TLI, DT, AC, CxtI),
Chandler Carruth9dc35582012-12-28 11:30:55 +00003883 RecursionLimit);
3884}
3885
Chandler Carruthf6182152012-12-28 14:23:29 +00003886Value *llvm::SimplifyCall(Value *V, ArrayRef<Value *> Args,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003887 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003888 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003889 const Instruction *CxtI) {
3890 return ::SimplifyCall(V, Args.begin(), Args.end(),
Chandler Carruth66b31302015-01-04 12:03:27 +00003891 Query(DL, TLI, DT, AC, CxtI), RecursionLimit);
Chandler Carruth9dc35582012-12-28 11:30:55 +00003892}
3893
Sanjay Patel472cc782016-01-11 22:14:42 +00003894/// See if we can compute a simplified version of this instruction.
3895/// If not, this returns null.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003896Value *llvm::SimplifyInstruction(Instruction *I, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00003897 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003898 const DominatorTree *DT, AssumptionCache *AC) {
Duncan Sands64e41cf2010-11-17 08:35:29 +00003899 Value *Result;
3900
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003901 switch (I->getOpcode()) {
3902 default:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003903 Result = ConstantFoldInstruction(I, DL, TLI);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003904 break;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00003905 case Instruction::FAdd:
3906 Result = SimplifyFAddInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00003907 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00003908 break;
Chris Lattner3d9823b2009-11-27 17:42:22 +00003909 case Instruction::Add:
Duncan Sands64e41cf2010-11-17 08:35:29 +00003910 Result = SimplifyAddInst(I->getOperand(0), I->getOperand(1),
3911 cast<BinaryOperator>(I)->hasNoSignedWrap(),
Chandler Carruth66b31302015-01-04 12:03:27 +00003912 cast<BinaryOperator>(I)->hasNoUnsignedWrap(), DL,
3913 TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003914 break;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00003915 case Instruction::FSub:
3916 Result = SimplifyFSubInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00003917 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00003918 break;
Duncan Sands0a2c41682010-12-15 14:07:39 +00003919 case Instruction::Sub:
3920 Result = SimplifySubInst(I->getOperand(0), I->getOperand(1),
3921 cast<BinaryOperator>(I)->hasNoSignedWrap(),
Chandler Carruth66b31302015-01-04 12:03:27 +00003922 cast<BinaryOperator>(I)->hasNoUnsignedWrap(), DL,
3923 TLI, DT, AC, I);
Duncan Sands0a2c41682010-12-15 14:07:39 +00003924 break;
Michael Ilsemanbe9137a2012-11-27 00:46:26 +00003925 case Instruction::FMul:
3926 Result = SimplifyFMulInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00003927 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +00003928 break;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00003929 case Instruction::Mul:
Chandler Carruth66b31302015-01-04 12:03:27 +00003930 Result =
3931 SimplifyMulInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00003932 break;
Duncan Sands771e82a2011-01-28 16:51:11 +00003933 case Instruction::SDiv:
Chandler Carruth66b31302015-01-04 12:03:27 +00003934 Result = SimplifySDivInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
3935 AC, I);
Duncan Sands771e82a2011-01-28 16:51:11 +00003936 break;
3937 case Instruction::UDiv:
Chandler Carruth66b31302015-01-04 12:03:27 +00003938 Result = SimplifyUDivInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
3939 AC, I);
Duncan Sands771e82a2011-01-28 16:51:11 +00003940 break;
Frits van Bommelc2549662011-01-29 15:26:31 +00003941 case Instruction::FDiv:
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00003942 Result = SimplifyFDivInst(I->getOperand(0), I->getOperand(1),
3943 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Frits van Bommelc2549662011-01-29 15:26:31 +00003944 break;
Duncan Sandsa3e36992011-05-02 16:27:02 +00003945 case Instruction::SRem:
Chandler Carruth66b31302015-01-04 12:03:27 +00003946 Result = SimplifySRemInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
3947 AC, I);
Duncan Sandsa3e36992011-05-02 16:27:02 +00003948 break;
3949 case Instruction::URem:
Chandler Carruth66b31302015-01-04 12:03:27 +00003950 Result = SimplifyURemInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
3951 AC, I);
Duncan Sandsa3e36992011-05-02 16:27:02 +00003952 break;
3953 case Instruction::FRem:
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00003954 Result = SimplifyFRemInst(I->getOperand(0), I->getOperand(1),
3955 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Duncan Sandsa3e36992011-05-02 16:27:02 +00003956 break;
Duncan Sands7f60dc12011-01-14 00:37:45 +00003957 case Instruction::Shl:
Chris Lattner9e4aa022011-02-09 17:15:04 +00003958 Result = SimplifyShlInst(I->getOperand(0), I->getOperand(1),
3959 cast<BinaryOperator>(I)->hasNoSignedWrap(),
Chandler Carruth66b31302015-01-04 12:03:27 +00003960 cast<BinaryOperator>(I)->hasNoUnsignedWrap(), DL,
3961 TLI, DT, AC, I);
Duncan Sands7f60dc12011-01-14 00:37:45 +00003962 break;
3963 case Instruction::LShr:
Chris Lattner9e4aa022011-02-09 17:15:04 +00003964 Result = SimplifyLShrInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00003965 cast<BinaryOperator>(I)->isExact(), DL, TLI, DT,
3966 AC, I);
Duncan Sands7f60dc12011-01-14 00:37:45 +00003967 break;
3968 case Instruction::AShr:
Chris Lattner9e4aa022011-02-09 17:15:04 +00003969 Result = SimplifyAShrInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00003970 cast<BinaryOperator>(I)->isExact(), DL, TLI, DT,
3971 AC, I);
Duncan Sands7f60dc12011-01-14 00:37:45 +00003972 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003973 case Instruction::And:
Chandler Carruth66b31302015-01-04 12:03:27 +00003974 Result =
3975 SimplifyAndInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003976 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003977 case Instruction::Or:
Chandler Carruth66b31302015-01-04 12:03:27 +00003978 Result =
3979 SimplifyOrInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003980 break;
Duncan Sandsc89ac072010-11-17 18:52:15 +00003981 case Instruction::Xor:
Chandler Carruth66b31302015-01-04 12:03:27 +00003982 Result =
3983 SimplifyXorInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sandsc89ac072010-11-17 18:52:15 +00003984 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003985 case Instruction::ICmp:
Chandler Carruth66b31302015-01-04 12:03:27 +00003986 Result =
3987 SimplifyICmpInst(cast<ICmpInst>(I)->getPredicate(), I->getOperand(0),
3988 I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003989 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003990 case Instruction::FCmp:
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00003991 Result = SimplifyFCmpInst(cast<FCmpInst>(I)->getPredicate(),
3992 I->getOperand(0), I->getOperand(1),
3993 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003994 break;
Chris Lattnerc707fa92010-04-20 05:32:14 +00003995 case Instruction::Select:
Duncan Sands64e41cf2010-11-17 08:35:29 +00003996 Result = SimplifySelectInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00003997 I->getOperand(2), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003998 break;
Chris Lattner8574aba2009-11-27 00:29:05 +00003999 case Instruction::GetElementPtr: {
4000 SmallVector<Value*, 8> Ops(I->op_begin(), I->op_end());
Manuel Jacob20c6d5b2016-01-17 22:46:43 +00004001 Result = SimplifyGEPInst(cast<GetElementPtrInst>(I)->getSourceElementType(),
4002 Ops, DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00004003 break;
Chris Lattner8574aba2009-11-27 00:29:05 +00004004 }
Duncan Sandsfd26a952011-09-05 06:52:48 +00004005 case Instruction::InsertValue: {
4006 InsertValueInst *IV = cast<InsertValueInst>(I);
4007 Result = SimplifyInsertValueInst(IV->getAggregateOperand(),
4008 IV->getInsertedValueOperand(),
Chandler Carruth66b31302015-01-04 12:03:27 +00004009 IV->getIndices(), DL, TLI, DT, AC, I);
Duncan Sandsfd26a952011-09-05 06:52:48 +00004010 break;
4011 }
David Majnemer25a796e2015-07-13 01:15:46 +00004012 case Instruction::ExtractValue: {
4013 auto *EVI = cast<ExtractValueInst>(I);
4014 Result = SimplifyExtractValueInst(EVI->getAggregateOperand(),
4015 EVI->getIndices(), DL, TLI, DT, AC, I);
4016 break;
4017 }
David Majnemer599ca442015-07-13 01:15:53 +00004018 case Instruction::ExtractElement: {
4019 auto *EEI = cast<ExtractElementInst>(I);
4020 Result = SimplifyExtractElementInst(
4021 EEI->getVectorOperand(), EEI->getIndexOperand(), DL, TLI, DT, AC, I);
4022 break;
4023 }
Duncan Sands4581ddc2010-11-14 13:30:18 +00004024 case Instruction::PHI:
Chandler Carruth66b31302015-01-04 12:03:27 +00004025 Result = SimplifyPHINode(cast<PHINode>(I), Query(DL, TLI, DT, AC, I));
Duncan Sands64e41cf2010-11-17 08:35:29 +00004026 break;
Chandler Carruth9dc35582012-12-28 11:30:55 +00004027 case Instruction::Call: {
4028 CallSite CS(cast<CallInst>(I));
Chandler Carruth66b31302015-01-04 12:03:27 +00004029 Result = SimplifyCall(CS.getCalledValue(), CS.arg_begin(), CS.arg_end(), DL,
4030 TLI, DT, AC, I);
Dan Gohman85977e62011-11-04 18:32:42 +00004031 break;
Chandler Carruth9dc35582012-12-28 11:30:55 +00004032 }
Duncan Sands395ac42d2012-03-13 14:07:05 +00004033 case Instruction::Trunc:
Chandler Carruth66b31302015-01-04 12:03:27 +00004034 Result =
4035 SimplifyTruncInst(I->getOperand(0), I->getType(), DL, TLI, DT, AC, I);
Duncan Sands395ac42d2012-03-13 14:07:05 +00004036 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00004037 }
Duncan Sands64e41cf2010-11-17 08:35:29 +00004038
Hal Finkelf2199b22015-10-23 20:37:08 +00004039 // In general, it is possible for computeKnownBits to determine all bits in a
4040 // value even when the operands are not all constants.
4041 if (!Result && I->getType()->isIntegerTy()) {
4042 unsigned BitWidth = I->getType()->getScalarSizeInBits();
4043 APInt KnownZero(BitWidth, 0);
4044 APInt KnownOne(BitWidth, 0);
4045 computeKnownBits(I, KnownZero, KnownOne, DL, /*Depth*/0, AC, I, DT);
4046 if ((KnownZero | KnownOne).isAllOnesValue())
4047 Result = ConstantInt::get(I->getContext(), KnownOne);
4048 }
4049
Duncan Sands64e41cf2010-11-17 08:35:29 +00004050 /// If called on unreachable code, the above logic may report that the
4051 /// instruction simplified to itself. Make life easier for users by
Duncan Sands019a4182010-12-15 11:02:22 +00004052 /// detecting that case here, returning a safe value instead.
4053 return Result == I ? UndefValue::get(I->getType()) : Result;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00004054}
4055
Sanjay Patelf44bd382016-01-20 18:59:48 +00004056/// \brief Implementation of recursive simplification through an instruction's
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004057/// uses.
Chris Lattner852d6d62009-11-10 22:26:15 +00004058///
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004059/// This is the common implementation of the recursive simplification routines.
4060/// If we have a pre-simplified value in 'SimpleV', that is forcibly used to
4061/// replace the instruction 'I'. Otherwise, we simply add 'I' to the list of
4062/// instructions to process and attempt to simplify it using
4063/// InstructionSimplify.
4064///
4065/// This routine returns 'true' only when *it* simplifies something. The passed
4066/// in simplified value does not count toward this.
4067static bool replaceAndRecursivelySimplifyImpl(Instruction *I, Value *SimpleV,
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004068 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00004069 const DominatorTree *DT,
Chandler Carruth66b31302015-01-04 12:03:27 +00004070 AssumptionCache *AC) {
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004071 bool Simplified = false;
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00004072 SmallSetVector<Instruction *, 8> Worklist;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004073 const DataLayout &DL = I->getModule()->getDataLayout();
Duncan Sands7e800d62010-11-14 11:23:23 +00004074
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004075 // If we have an explicit value to collapse to, do that round of the
4076 // simplification loop by hand initially.
4077 if (SimpleV) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00004078 for (User *U : I->users())
4079 if (U != I)
4080 Worklist.insert(cast<Instruction>(U));
Duncan Sands7e800d62010-11-14 11:23:23 +00004081
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004082 // Replace the instruction with its simplified value.
4083 I->replaceAllUsesWith(SimpleV);
Chris Lattner19eff2a2010-07-15 06:36:08 +00004084
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004085 // Gracefully handle edge cases where the instruction is not wired into any
4086 // parent block.
4087 if (I->getParent())
4088 I->eraseFromParent();
4089 } else {
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00004090 Worklist.insert(I);
Chris Lattner852d6d62009-11-10 22:26:15 +00004091 }
Duncan Sands7e800d62010-11-14 11:23:23 +00004092
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00004093 // Note that we must test the size on each iteration, the worklist can grow.
4094 for (unsigned Idx = 0; Idx != Worklist.size(); ++Idx) {
4095 I = Worklist[Idx];
Duncan Sands7e800d62010-11-14 11:23:23 +00004096
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004097 // See if this instruction simplifies.
Chandler Carruth66b31302015-01-04 12:03:27 +00004098 SimpleV = SimplifyInstruction(I, DL, TLI, DT, AC);
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004099 if (!SimpleV)
4100 continue;
4101
4102 Simplified = true;
4103
4104 // Stash away all the uses of the old instruction so we can check them for
4105 // recursive simplifications after a RAUW. This is cheaper than checking all
4106 // uses of To on the recursive step in most cases.
Chandler Carruthcdf47882014-03-09 03:16:01 +00004107 for (User *U : I->users())
4108 Worklist.insert(cast<Instruction>(U));
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004109
4110 // Replace the instruction with its simplified value.
4111 I->replaceAllUsesWith(SimpleV);
4112
4113 // Gracefully handle edge cases where the instruction is not wired into any
4114 // parent block.
4115 if (I->getParent())
4116 I->eraseFromParent();
4117 }
4118 return Simplified;
4119}
4120
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004121bool llvm::recursivelySimplifyInstruction(Instruction *I,
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004122 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00004123 const DominatorTree *DT,
Chandler Carruth66b31302015-01-04 12:03:27 +00004124 AssumptionCache *AC) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004125 return replaceAndRecursivelySimplifyImpl(I, nullptr, TLI, DT, AC);
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004126}
4127
4128bool llvm::replaceAndRecursivelySimplify(Instruction *I, Value *SimpleV,
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004129 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00004130 const DominatorTree *DT,
Chandler Carruth66b31302015-01-04 12:03:27 +00004131 AssumptionCache *AC) {
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004132 assert(I != SimpleV && "replaceAndRecursivelySimplify(X,X) is not valid!");
4133 assert(SimpleV && "Must provide a simplified value.");
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004134 return replaceAndRecursivelySimplifyImpl(I, SimpleV, TLI, DT, AC);
Chris Lattner852d6d62009-11-10 22:26:15 +00004135}