blob: 6dfe6259627503fe65150de90529941835f30bc2 [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)) {
531 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
532 Constant *Ops[] = { CLHS, CRHS };
Duncan Sandsb8cee002012-03-13 11:42:19 +0000533 return ConstantFoldInstOperands(Instruction::Add, CLHS->getType(), Ops,
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000534 Q.DL, Q.TLI);
Chris Lattner3d9823b2009-11-27 17:42:22 +0000535 }
Duncan Sands7e800d62010-11-14 11:23:23 +0000536
Chris Lattner3d9823b2009-11-27 17:42:22 +0000537 // Canonicalize the constant to the RHS.
538 std::swap(Op0, Op1);
539 }
Duncan Sands7e800d62010-11-14 11:23:23 +0000540
Duncan Sands0a2c41682010-12-15 14:07:39 +0000541 // X + undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000542 if (match(Op1, m_Undef()))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000543 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +0000544
Duncan Sands0a2c41682010-12-15 14:07:39 +0000545 // X + 0 -> X
546 if (match(Op1, m_Zero()))
547 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +0000548
Duncan Sands0a2c41682010-12-15 14:07:39 +0000549 // X + (Y - X) -> Y
550 // (Y - X) + X -> Y
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000551 // Eg: X + -X -> 0
Craig Topper9f008862014-04-15 04:59:12 +0000552 Value *Y = nullptr;
Duncan Sands772749a2011-01-01 20:08:02 +0000553 if (match(Op1, m_Sub(m_Value(Y), m_Specific(Op0))) ||
554 match(Op0, m_Sub(m_Value(Y), m_Specific(Op1))))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000555 return Y;
556
557 // X + ~X -> -1 since ~X = -X-1
Duncan Sands772749a2011-01-01 20:08:02 +0000558 if (match(Op0, m_Not(m_Specific(Op1))) ||
559 match(Op1, m_Not(m_Specific(Op0))))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000560 return Constant::getAllOnesValue(Op0->getType());
Duncan Sandsb238de02010-11-19 09:20:39 +0000561
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000562 /// i1 add -> xor.
Duncan Sands5def0d62010-12-21 14:48:48 +0000563 if (MaxRecurse && Op0->getType()->isIntegerTy(1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000564 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sandsfecc6422010-12-21 15:03:43 +0000565 return V;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000566
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000567 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000568 if (Value *V = SimplifyAssociativeBinOp(Instruction::Add, Op0, Op1, Q,
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000569 MaxRecurse))
570 return V;
571
Duncan Sandsb238de02010-11-19 09:20:39 +0000572 // Threading Add over selects and phi nodes is pointless, so don't bother.
573 // Threading over the select in "A + select(cond, B, C)" means evaluating
574 // "A+B" and "A+C" and seeing if they are equal; but they are equal if and
575 // only if B and C are equal. If B and C are equal then (since we assume
576 // that operands have already been simplified) "select(cond, B, C)" should
577 // have been simplified to the common value of B and C already. Analysing
578 // "A+B" and "A+C" thus gains nothing, but costs compile time. Similarly
579 // for threading over phi nodes.
580
Craig Topper9f008862014-04-15 04:59:12 +0000581 return nullptr;
Chris Lattner3d9823b2009-11-27 17:42:22 +0000582}
583
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000584Value *llvm::SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000585 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +0000586 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +0000587 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +0000588 return ::SimplifyAddInst(Op0, Op1, isNSW, isNUW, Query(DL, TLI, DT, AC, CxtI),
589 RecursionLimit);
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000590}
591
Chandler Carrutha0796552012-03-12 11:19:31 +0000592/// \brief Compute the base pointer and cumulative constant offsets for V.
593///
594/// This strips all constant offsets off of V, leaving it the base pointer, and
595/// accumulates the total constant offset applied in the returned constant. It
596/// returns 0 if V is not a pointer, and returns the constant '0' if there are
597/// no constant offsets applied.
Dan Gohman36fa8392013-01-31 02:45:26 +0000598///
599/// This is very similar to GetPointerBaseWithConstantOffset except it doesn't
600/// follow non-inbounds geps. This allows it to remain usable for icmp ult/etc.
601/// folding.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000602static Constant *stripAndComputeConstantOffsets(const DataLayout &DL, Value *&V,
Benjamin Kramer942dfe62013-09-23 14:16:38 +0000603 bool AllowNonInbounds = false) {
Benjamin Kramerc05aa952013-02-01 15:21:10 +0000604 assert(V->getType()->getScalarType()->isPointerTy());
Chandler Carrutha0796552012-03-12 11:19:31 +0000605
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000606 Type *IntPtrTy = DL.getIntPtrType(V->getType())->getScalarType();
Matt Arsenault2f9cce22013-08-03 01:03:12 +0000607 APInt Offset = APInt::getNullValue(IntPtrTy->getIntegerBitWidth());
Chandler Carrutha0796552012-03-12 11:19:31 +0000608
609 // Even though we don't look through PHI nodes, we could be called on an
610 // instruction in an unreachable block, which may be on a cycle.
611 SmallPtrSet<Value *, 4> Visited;
612 Visited.insert(V);
613 do {
614 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
Benjamin Kramer942dfe62013-09-23 14:16:38 +0000615 if ((!AllowNonInbounds && !GEP->isInBounds()) ||
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000616 !GEP->accumulateConstantOffset(DL, Offset))
Chandler Carrutha0796552012-03-12 11:19:31 +0000617 break;
Chandler Carrutha0796552012-03-12 11:19:31 +0000618 V = GEP->getPointerOperand();
619 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
Matt Arsenault2f9cce22013-08-03 01:03:12 +0000620 V = cast<Operator>(V)->getOperand(0);
Chandler Carrutha0796552012-03-12 11:19:31 +0000621 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) {
622 if (GA->mayBeOverridden())
623 break;
624 V = GA->getAliasee();
625 } else {
626 break;
627 }
Benjamin Kramerc05aa952013-02-01 15:21:10 +0000628 assert(V->getType()->getScalarType()->isPointerTy() &&
629 "Unexpected operand type!");
David Blaikie70573dc2014-11-19 07:49:26 +0000630 } while (Visited.insert(V).second);
Chandler Carrutha0796552012-03-12 11:19:31 +0000631
Benjamin Kramerc05aa952013-02-01 15:21:10 +0000632 Constant *OffsetIntPtr = ConstantInt::get(IntPtrTy, Offset);
633 if (V->getType()->isVectorTy())
634 return ConstantVector::getSplat(V->getType()->getVectorNumElements(),
635 OffsetIntPtr);
636 return OffsetIntPtr;
Chandler Carrutha0796552012-03-12 11:19:31 +0000637}
638
639/// \brief Compute the constant difference between two pointer values.
640/// If the difference is not a constant, returns zero.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000641static Constant *computePointerDifference(const DataLayout &DL, Value *LHS,
642 Value *RHS) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000643 Constant *LHSOffset = stripAndComputeConstantOffsets(DL, LHS);
644 Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS);
Chandler Carrutha0796552012-03-12 11:19:31 +0000645
646 // If LHS and RHS are not related via constant offsets to the same base
647 // value, there is nothing we can do here.
648 if (LHS != RHS)
Craig Topper9f008862014-04-15 04:59:12 +0000649 return nullptr;
Chandler Carrutha0796552012-03-12 11:19:31 +0000650
651 // Otherwise, the difference of LHS - RHS can be computed as:
652 // LHS - RHS
653 // = (LHSOffset + Base) - (RHSOffset + Base)
654 // = LHSOffset - RHSOffset
655 return ConstantExpr::getSub(LHSOffset, RHSOffset);
656}
657
Sanjay Patel472cc782016-01-11 22:14:42 +0000658/// Given operands for a Sub, see if we can fold the result.
659/// If not, this returns null.
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000660static Value *SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000661 const Query &Q, unsigned MaxRecurse) {
Duncan Sands0a2c41682010-12-15 14:07:39 +0000662 if (Constant *CLHS = dyn_cast<Constant>(Op0))
663 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
664 Constant *Ops[] = { CLHS, CRHS };
665 return ConstantFoldInstOperands(Instruction::Sub, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000666 Ops, Q.DL, Q.TLI);
Duncan Sands0a2c41682010-12-15 14:07:39 +0000667 }
668
669 // X - undef -> undef
670 // undef - X -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000671 if (match(Op0, m_Undef()) || match(Op1, m_Undef()))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000672 return UndefValue::get(Op0->getType());
673
674 // X - 0 -> X
675 if (match(Op1, m_Zero()))
676 return Op0;
677
678 // X - X -> 0
Duncan Sands772749a2011-01-01 20:08:02 +0000679 if (Op0 == Op1)
Duncan Sands0a2c41682010-12-15 14:07:39 +0000680 return Constant::getNullValue(Op0->getType());
681
David Majnemer4efa9ff2014-11-22 07:15:16 +0000682 // 0 - X -> 0 if the sub is NUW.
683 if (isNUW && match(Op0, m_Zero()))
684 return Op0;
David Majnemercd4fbcd2014-07-31 04:49:18 +0000685
Duncan Sands99589d02011-01-18 11:50:19 +0000686 // (X + Y) - Z -> X + (Y - Z) or Y + (X - Z) if everything simplifies.
687 // For example, (X + Y) - Y -> X; (Y + X) - Y -> X
Dinesh Dwivedi99281a02014-06-26 08:57:33 +0000688 Value *X = nullptr, *Y = nullptr, *Z = Op1;
Duncan Sands99589d02011-01-18 11:50:19 +0000689 if (MaxRecurse && match(Op0, m_Add(m_Value(X), m_Value(Y)))) { // (X + Y) - Z
690 // See if "V === Y - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000691 if (Value *V = SimplifyBinOp(Instruction::Sub, Y, Z, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000692 // It does! Now see if "X + V" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000693 if (Value *W = SimplifyBinOp(Instruction::Add, X, V, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000694 // It does, we successfully reassociated!
695 ++NumReassoc;
696 return W;
697 }
698 // See if "V === X - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000699 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Z, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000700 // It does! Now see if "Y + V" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000701 if (Value *W = SimplifyBinOp(Instruction::Add, Y, V, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000702 // It does, we successfully reassociated!
703 ++NumReassoc;
704 return W;
705 }
706 }
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000707
Duncan Sands99589d02011-01-18 11:50:19 +0000708 // X - (Y + Z) -> (X - Y) - Z or (X - Z) - Y if everything simplifies.
709 // For example, X - (X + 1) -> -1
710 X = Op0;
711 if (MaxRecurse && match(Op1, m_Add(m_Value(Y), m_Value(Z)))) { // X - (Y + Z)
712 // See if "V === X - Y" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000713 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Y, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000714 // It does! Now see if "V - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000715 if (Value *W = SimplifyBinOp(Instruction::Sub, V, Z, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000716 // It does, we successfully reassociated!
717 ++NumReassoc;
718 return W;
719 }
720 // See if "V === X - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000721 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Z, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000722 // It does! Now see if "V - Y" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000723 if (Value *W = SimplifyBinOp(Instruction::Sub, V, Y, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000724 // It does, we successfully reassociated!
725 ++NumReassoc;
726 return W;
727 }
728 }
729
730 // Z - (X - Y) -> (Z - X) + Y if everything simplifies.
731 // For example, X - (X - Y) -> Y.
732 Z = Op0;
Duncan Sandsd6f1a952011-01-14 15:26:10 +0000733 if (MaxRecurse && match(Op1, m_Sub(m_Value(X), m_Value(Y)))) // Z - (X - Y)
734 // See if "V === Z - X" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000735 if (Value *V = SimplifyBinOp(Instruction::Sub, Z, X, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000736 // It does! Now see if "V + Y" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000737 if (Value *W = SimplifyBinOp(Instruction::Add, V, Y, Q, MaxRecurse-1)) {
Duncan Sandsd6f1a952011-01-14 15:26:10 +0000738 // It does, we successfully reassociated!
739 ++NumReassoc;
740 return W;
741 }
742
Duncan Sands395ac42d2012-03-13 14:07:05 +0000743 // trunc(X) - trunc(Y) -> trunc(X - Y) if everything simplifies.
744 if (MaxRecurse && match(Op0, m_Trunc(m_Value(X))) &&
745 match(Op1, m_Trunc(m_Value(Y))))
746 if (X->getType() == Y->getType())
747 // See if "V === X - Y" simplifies.
748 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Y, Q, MaxRecurse-1))
749 // It does! Now see if "trunc V" simplifies.
750 if (Value *W = SimplifyTruncInst(V, Op0->getType(), Q, MaxRecurse-1))
751 // It does, return the simplified "trunc V".
752 return W;
753
754 // Variations on GEP(base, I, ...) - GEP(base, i, ...) -> GEP(null, I-i, ...).
Dan Gohman18c77a12013-01-31 02:50:36 +0000755 if (match(Op0, m_PtrToInt(m_Value(X))) &&
Duncan Sands395ac42d2012-03-13 14:07:05 +0000756 match(Op1, m_PtrToInt(m_Value(Y))))
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000757 if (Constant *Result = computePointerDifference(Q.DL, X, Y))
Duncan Sands395ac42d2012-03-13 14:07:05 +0000758 return ConstantExpr::getIntegerCast(Result, Op0->getType(), true);
759
Duncan Sands99589d02011-01-18 11:50:19 +0000760 // i1 sub -> xor.
761 if (MaxRecurse && Op0->getType()->isIntegerTy(1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000762 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000763 return V;
764
Duncan Sands0a2c41682010-12-15 14:07:39 +0000765 // Threading Sub over selects and phi nodes is pointless, so don't bother.
766 // Threading over the select in "A - select(cond, B, C)" means evaluating
767 // "A-B" and "A-C" and seeing if they are equal; but they are equal if and
768 // only if B and C are equal. If B and C are equal then (since we assume
769 // that operands have already been simplified) "select(cond, B, C)" should
770 // have been simplified to the common value of B and C already. Analysing
771 // "A-B" and "A-C" thus gains nothing, but costs compile time. Similarly
772 // for threading over phi nodes.
773
Craig Topper9f008862014-04-15 04:59:12 +0000774 return nullptr;
Duncan Sands0a2c41682010-12-15 14:07:39 +0000775}
776
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000777Value *llvm::SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000778 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +0000779 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +0000780 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +0000781 return ::SimplifySubInst(Op0, Op1, isNSW, isNUW, Query(DL, TLI, DT, AC, CxtI),
782 RecursionLimit);
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000783}
784
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000785/// Given operands for an FAdd, see if we can fold the result. If not, this
786/// returns null.
787static Value *SimplifyFAddInst(Value *Op0, Value *Op1, FastMathFlags FMF,
788 const Query &Q, unsigned MaxRecurse) {
789 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
790 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
791 Constant *Ops[] = { CLHS, CRHS };
792 return ConstantFoldInstOperands(Instruction::FAdd, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000793 Ops, Q.DL, Q.TLI);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000794 }
795
796 // Canonicalize the constant to the RHS.
797 std::swap(Op0, Op1);
798 }
799
800 // fadd X, -0 ==> X
801 if (match(Op1, m_NegZero()))
802 return Op0;
803
804 // fadd X, 0 ==> X, when we know X is not -0
805 if (match(Op1, m_Zero()) &&
806 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0)))
807 return Op0;
808
809 // fadd [nnan ninf] X, (fsub [nnan ninf] 0, X) ==> 0
810 // where nnan and ninf have to occur at least once somewhere in this
811 // expression
Craig Topper9f008862014-04-15 04:59:12 +0000812 Value *SubOp = nullptr;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000813 if (match(Op1, m_FSub(m_AnyZero(), m_Specific(Op0))))
814 SubOp = Op1;
815 else if (match(Op0, m_FSub(m_AnyZero(), m_Specific(Op1))))
816 SubOp = Op0;
817 if (SubOp) {
818 Instruction *FSub = cast<Instruction>(SubOp);
819 if ((FMF.noNaNs() || FSub->hasNoNaNs()) &&
820 (FMF.noInfs() || FSub->hasNoInfs()))
821 return Constant::getNullValue(Op0->getType());
822 }
823
Craig Topper9f008862014-04-15 04:59:12 +0000824 return nullptr;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000825}
826
827/// Given operands for an FSub, see if we can fold the result. If not, this
828/// returns null.
829static Value *SimplifyFSubInst(Value *Op0, Value *Op1, FastMathFlags FMF,
830 const Query &Q, unsigned MaxRecurse) {
831 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
832 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
833 Constant *Ops[] = { CLHS, CRHS };
834 return ConstantFoldInstOperands(Instruction::FSub, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000835 Ops, Q.DL, Q.TLI);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000836 }
837 }
838
839 // fsub X, 0 ==> X
840 if (match(Op1, m_Zero()))
841 return Op0;
842
843 // fsub X, -0 ==> X, when we know X is not -0
844 if (match(Op1, m_NegZero()) &&
845 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0)))
846 return Op0;
847
848 // fsub 0, (fsub -0.0, X) ==> X
849 Value *X;
850 if (match(Op0, m_AnyZero())) {
851 if (match(Op1, m_FSub(m_NegZero(), m_Value(X))))
852 return X;
853 if (FMF.noSignedZeros() && match(Op1, m_FSub(m_AnyZero(), m_Value(X))))
854 return X;
855 }
856
Benjamin Kramer228680d2015-06-14 21:01:20 +0000857 // fsub nnan x, x ==> 0.0
858 if (FMF.noNaNs() && Op0 == Op1)
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000859 return Constant::getNullValue(Op0->getType());
860
Craig Topper9f008862014-04-15 04:59:12 +0000861 return nullptr;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000862}
863
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000864/// Given the operands for an FMul, see if we can fold the result
865static Value *SimplifyFMulInst(Value *Op0, Value *Op1,
866 FastMathFlags FMF,
867 const Query &Q,
868 unsigned MaxRecurse) {
869 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
870 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
871 Constant *Ops[] = { CLHS, CRHS };
872 return ConstantFoldInstOperands(Instruction::FMul, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000873 Ops, Q.DL, Q.TLI);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000874 }
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000875
876 // Canonicalize the constant to the RHS.
877 std::swap(Op0, Op1);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000878 }
879
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000880 // fmul X, 1.0 ==> X
881 if (match(Op1, m_FPOne()))
882 return Op0;
883
884 // fmul nnan nsz X, 0 ==> 0
885 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op1, m_AnyZero()))
886 return Op1;
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000887
Craig Topper9f008862014-04-15 04:59:12 +0000888 return nullptr;
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000889}
890
Sanjay Patel472cc782016-01-11 22:14:42 +0000891/// Given operands for a Mul, see if we can fold the result.
892/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000893static Value *SimplifyMulInst(Value *Op0, Value *Op1, const Query &Q,
894 unsigned MaxRecurse) {
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000895 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
896 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
897 Constant *Ops[] = { CLHS, CRHS };
898 return ConstantFoldInstOperands(Instruction::Mul, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000899 Ops, Q.DL, Q.TLI);
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000900 }
901
902 // Canonicalize the constant to the RHS.
903 std::swap(Op0, Op1);
904 }
905
906 // X * undef -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000907 if (match(Op1, m_Undef()))
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000908 return Constant::getNullValue(Op0->getType());
909
910 // X * 0 -> 0
911 if (match(Op1, m_Zero()))
912 return Op1;
913
914 // X * 1 -> X
915 if (match(Op1, m_One()))
916 return Op0;
917
Duncan Sandsb67edc62011-01-30 18:03:50 +0000918 // (X / Y) * Y -> X if the division is exact.
Craig Topper9f008862014-04-15 04:59:12 +0000919 Value *X = nullptr;
Benjamin Kramer9442cd02012-01-01 17:55:30 +0000920 if (match(Op0, m_Exact(m_IDiv(m_Value(X), m_Specific(Op1)))) || // (X / Y) * Y
921 match(Op1, m_Exact(m_IDiv(m_Value(X), m_Specific(Op0))))) // Y * (X / Y)
922 return X;
Duncan Sandsb67edc62011-01-30 18:03:50 +0000923
Nick Lewyckyb89d9a42011-01-29 19:55:23 +0000924 // i1 mul -> and.
Duncan Sands5def0d62010-12-21 14:48:48 +0000925 if (MaxRecurse && Op0->getType()->isIntegerTy(1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000926 if (Value *V = SimplifyAndInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sandsfecc6422010-12-21 15:03:43 +0000927 return V;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000928
929 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000930 if (Value *V = SimplifyAssociativeBinOp(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000931 MaxRecurse))
932 return V;
933
934 // Mul distributes over Add. Try some generic simplifications based on this.
935 if (Value *V = ExpandBinOp(Instruction::Mul, Op0, Op1, Instruction::Add,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000936 Q, MaxRecurse))
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000937 return V;
938
939 // If the operation is with the result of a select instruction, check whether
940 // operating on either branch of the select always yields the same value.
941 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000942 if (Value *V = ThreadBinOpOverSelect(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000943 MaxRecurse))
944 return V;
945
946 // If the operation is with the result of a phi instruction, check whether
947 // operating on all incoming values of the phi always yields the same value.
948 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000949 if (Value *V = ThreadBinOpOverPHI(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000950 MaxRecurse))
951 return V;
952
Craig Topper9f008862014-04-15 04:59:12 +0000953 return nullptr;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000954}
955
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000956Value *llvm::SimplifyFAddInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000957 const DataLayout &DL,
Chandler Carruth66b31302015-01-04 12:03:27 +0000958 const TargetLibraryInfo *TLI,
959 const DominatorTree *DT, AssumptionCache *AC,
960 const Instruction *CxtI) {
961 return ::SimplifyFAddInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +0000962 RecursionLimit);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000963}
964
965Value *llvm::SimplifyFSubInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000966 const DataLayout &DL,
Chandler Carruth66b31302015-01-04 12:03:27 +0000967 const TargetLibraryInfo *TLI,
968 const DominatorTree *DT, AssumptionCache *AC,
969 const Instruction *CxtI) {
970 return ::SimplifyFSubInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +0000971 RecursionLimit);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000972}
973
Chandler Carruth66b31302015-01-04 12:03:27 +0000974Value *llvm::SimplifyFMulInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000975 const DataLayout &DL,
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000976 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +0000977 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +0000978 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +0000979 return ::SimplifyFMulInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +0000980 RecursionLimit);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000981}
982
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000983Value *llvm::SimplifyMulInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +0000984 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +0000985 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +0000986 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +0000987 return ::SimplifyMulInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +0000988 RecursionLimit);
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000989}
990
Sanjay Patel472cc782016-01-11 22:14:42 +0000991/// Given operands for an SDiv or UDiv, see if we can fold the result.
992/// If not, this returns null.
Anders Carlsson36c6d232011-02-05 18:33:43 +0000993static Value *SimplifyDiv(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000994 const Query &Q, unsigned MaxRecurse) {
Duncan Sands771e82a2011-01-28 16:51:11 +0000995 if (Constant *C0 = dyn_cast<Constant>(Op0)) {
996 if (Constant *C1 = dyn_cast<Constant>(Op1)) {
997 Constant *Ops[] = { C0, C1 };
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000998 return ConstantFoldInstOperands(Opcode, C0->getType(), Ops, Q.DL, Q.TLI);
Duncan Sands771e82a2011-01-28 16:51:11 +0000999 }
1000 }
1001
Duncan Sands65995fa2011-01-28 18:50:50 +00001002 bool isSigned = Opcode == Instruction::SDiv;
1003
Duncan Sands771e82a2011-01-28 16:51:11 +00001004 // X / undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001005 if (match(Op1, m_Undef()))
Duncan Sands771e82a2011-01-28 16:51:11 +00001006 return Op1;
1007
David Majnemer71dc8fb2014-12-10 07:52:18 +00001008 // X / 0 -> undef, we don't need to preserve faults!
1009 if (match(Op1, m_Zero()))
1010 return UndefValue::get(Op1->getType());
1011
Duncan Sands771e82a2011-01-28 16:51:11 +00001012 // undef / X -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001013 if (match(Op0, m_Undef()))
Duncan Sands771e82a2011-01-28 16:51:11 +00001014 return Constant::getNullValue(Op0->getType());
1015
1016 // 0 / X -> 0, we don't need to preserve faults!
1017 if (match(Op0, m_Zero()))
1018 return Op0;
1019
1020 // X / 1 -> X
1021 if (match(Op1, m_One()))
1022 return Op0;
Duncan Sands771e82a2011-01-28 16:51:11 +00001023
1024 if (Op0->getType()->isIntegerTy(1))
1025 // It can't be division by zero, hence it must be division by one.
1026 return Op0;
1027
1028 // X / X -> 1
1029 if (Op0 == Op1)
1030 return ConstantInt::get(Op0->getType(), 1);
1031
1032 // (X * Y) / Y -> X if the multiplication does not overflow.
Craig Topper9f008862014-04-15 04:59:12 +00001033 Value *X = nullptr, *Y = nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001034 if (match(Op0, m_Mul(m_Value(X), m_Value(Y))) && (X == Op1 || Y == Op1)) {
1035 if (Y != Op1) std::swap(X, Y); // Ensure expression is (X * Y) / Y, Y = Op1
Duncan Sands7cb61e52011-10-27 19:16:21 +00001036 OverflowingBinaryOperator *Mul = cast<OverflowingBinaryOperator>(Op0);
Duncan Sands5747aba2011-02-02 20:52:00 +00001037 // If the Mul knows it does not overflow, then we are good to go.
1038 if ((isSigned && Mul->hasNoSignedWrap()) ||
1039 (!isSigned && Mul->hasNoUnsignedWrap()))
1040 return X;
Duncan Sands771e82a2011-01-28 16:51:11 +00001041 // If X has the form X = A / Y then X * Y cannot overflow.
1042 if (BinaryOperator *Div = dyn_cast<BinaryOperator>(X))
1043 if (Div->getOpcode() == Opcode && Div->getOperand(1) == Y)
1044 return X;
1045 }
1046
Duncan Sands65995fa2011-01-28 18:50:50 +00001047 // (X rem Y) / Y -> 0
1048 if ((isSigned && match(Op0, m_SRem(m_Value(), m_Specific(Op1)))) ||
1049 (!isSigned && match(Op0, m_URem(m_Value(), m_Specific(Op1)))))
1050 return Constant::getNullValue(Op0->getType());
1051
David Majnemercb9d5962014-10-11 10:20:01 +00001052 // (X /u C1) /u C2 -> 0 if C1 * C2 overflow
1053 ConstantInt *C1, *C2;
1054 if (!isSigned && match(Op0, m_UDiv(m_Value(X), m_ConstantInt(C1))) &&
1055 match(Op1, m_ConstantInt(C2))) {
1056 bool Overflow;
1057 C1->getValue().umul_ov(C2->getValue(), Overflow);
1058 if (Overflow)
1059 return Constant::getNullValue(Op0->getType());
1060 }
1061
Duncan Sands65995fa2011-01-28 18:50:50 +00001062 // If the operation is with the result of a select instruction, check whether
1063 // operating on either branch of the select always yields the same value.
1064 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001065 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands65995fa2011-01-28 18:50:50 +00001066 return V;
1067
1068 // If the operation is with the result of a phi instruction, check whether
1069 // operating on all incoming values of the phi always yields the same value.
1070 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001071 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands65995fa2011-01-28 18:50:50 +00001072 return V;
1073
Craig Topper9f008862014-04-15 04:59:12 +00001074 return nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001075}
1076
Sanjay Patel472cc782016-01-11 22:14:42 +00001077/// Given operands for an SDiv, see if we can fold the result.
1078/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001079static Value *SimplifySDivInst(Value *Op0, Value *Op1, const Query &Q,
1080 unsigned MaxRecurse) {
1081 if (Value *V = SimplifyDiv(Instruction::SDiv, Op0, Op1, Q, MaxRecurse))
Duncan Sands771e82a2011-01-28 16:51:11 +00001082 return V;
1083
Craig Topper9f008862014-04-15 04:59:12 +00001084 return nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001085}
1086
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001087Value *llvm::SimplifySDivInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001088 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001089 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001090 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001091 return ::SimplifySDivInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001092 RecursionLimit);
Duncan Sands771e82a2011-01-28 16:51:11 +00001093}
1094
Sanjay Patel472cc782016-01-11 22:14:42 +00001095/// Given operands for a UDiv, see if we can fold the result.
1096/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001097static Value *SimplifyUDivInst(Value *Op0, Value *Op1, const Query &Q,
1098 unsigned MaxRecurse) {
1099 if (Value *V = SimplifyDiv(Instruction::UDiv, Op0, Op1, Q, MaxRecurse))
Duncan Sands771e82a2011-01-28 16:51:11 +00001100 return V;
1101
Craig Topper9f008862014-04-15 04:59:12 +00001102 return nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001103}
1104
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001105Value *llvm::SimplifyUDivInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001106 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001107 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001108 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001109 return ::SimplifyUDivInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001110 RecursionLimit);
Duncan Sands771e82a2011-01-28 16:51:11 +00001111}
1112
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001113static Value *SimplifyFDivInst(Value *Op0, Value *Op1, FastMathFlags FMF,
1114 const Query &Q, unsigned) {
Frits van Bommelc2549662011-01-29 15:26:31 +00001115 // undef / X -> undef (the undef could be a snan).
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001116 if (match(Op0, m_Undef()))
Frits van Bommelc2549662011-01-29 15:26:31 +00001117 return Op0;
1118
1119 // X / undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001120 if (match(Op1, m_Undef()))
Frits van Bommelc2549662011-01-29 15:26:31 +00001121 return Op1;
1122
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001123 // 0 / X -> 0
1124 // Requires that NaNs are off (X could be zero) and signed zeroes are
1125 // ignored (X could be positive or negative, so the output sign is unknown).
1126 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op0, m_AnyZero()))
1127 return Op0;
1128
Benjamin Kramer1ee59cb2015-06-16 14:57:29 +00001129 if (FMF.noNaNs()) {
1130 // X / X -> 1.0 is legal when NaNs are ignored.
Benjamin Kramer4f052462015-06-14 18:53:58 +00001131 if (Op0 == Op1)
1132 return ConstantFP::get(Op0->getType(), 1.0);
1133
1134 // -X / X -> -1.0 and
Benjamin Kramer1ee59cb2015-06-16 14:57:29 +00001135 // X / -X -> -1.0 are legal when NaNs are ignored.
Benjamin Kramer4f052462015-06-14 18:53:58 +00001136 // We can ignore signed zeros because +-0.0/+-0.0 is NaN and ignored.
1137 if ((BinaryOperator::isFNeg(Op0, /*IgnoreZeroSign=*/true) &&
1138 BinaryOperator::getFNegArgument(Op0) == Op1) ||
1139 (BinaryOperator::isFNeg(Op1, /*IgnoreZeroSign=*/true) &&
1140 BinaryOperator::getFNegArgument(Op1) == Op0))
1141 return ConstantFP::get(Op0->getType(), -1.0);
1142 }
1143
Craig Topper9f008862014-04-15 04:59:12 +00001144 return nullptr;
Frits van Bommelc2549662011-01-29 15:26:31 +00001145}
1146
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001147Value *llvm::SimplifyFDivInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001148 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001149 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001150 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001151 const Instruction *CxtI) {
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001152 return ::SimplifyFDivInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001153 RecursionLimit);
Frits van Bommelc2549662011-01-29 15:26:31 +00001154}
1155
Sanjay Patel472cc782016-01-11 22:14:42 +00001156/// Given operands for an SRem or URem, see if we can fold the result.
1157/// If not, this returns null.
Duncan Sandsa3e36992011-05-02 16:27:02 +00001158static Value *SimplifyRem(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001159 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsa3e36992011-05-02 16:27:02 +00001160 if (Constant *C0 = dyn_cast<Constant>(Op0)) {
1161 if (Constant *C1 = dyn_cast<Constant>(Op1)) {
1162 Constant *Ops[] = { C0, C1 };
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001163 return ConstantFoldInstOperands(Opcode, C0->getType(), Ops, Q.DL, Q.TLI);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001164 }
1165 }
1166
Duncan Sandsa3e36992011-05-02 16:27:02 +00001167 // X % undef -> undef
1168 if (match(Op1, m_Undef()))
1169 return Op1;
1170
1171 // undef % X -> 0
1172 if (match(Op0, m_Undef()))
1173 return Constant::getNullValue(Op0->getType());
1174
1175 // 0 % X -> 0, we don't need to preserve faults!
1176 if (match(Op0, m_Zero()))
1177 return Op0;
1178
1179 // X % 0 -> undef, we don't need to preserve faults!
1180 if (match(Op1, m_Zero()))
1181 return UndefValue::get(Op0->getType());
1182
1183 // X % 1 -> 0
1184 if (match(Op1, m_One()))
1185 return Constant::getNullValue(Op0->getType());
1186
1187 if (Op0->getType()->isIntegerTy(1))
1188 // It can't be remainder by zero, hence it must be remainder by one.
1189 return Constant::getNullValue(Op0->getType());
1190
1191 // X % X -> 0
1192 if (Op0 == Op1)
1193 return Constant::getNullValue(Op0->getType());
1194
David Majnemerb435a422014-09-17 04:16:35 +00001195 // (X % Y) % Y -> X % Y
1196 if ((Opcode == Instruction::SRem &&
1197 match(Op0, m_SRem(m_Value(), m_Specific(Op1)))) ||
1198 (Opcode == Instruction::URem &&
1199 match(Op0, m_URem(m_Value(), m_Specific(Op1)))))
David Majnemerac717f02014-09-17 03:34:34 +00001200 return Op0;
David Majnemerac717f02014-09-17 03:34:34 +00001201
Duncan Sandsa3e36992011-05-02 16:27:02 +00001202 // If the operation is with the result of a select instruction, check whether
1203 // operating on either branch of the select always yields the same value.
1204 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001205 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001206 return V;
1207
1208 // If the operation is with the result of a phi instruction, check whether
1209 // operating on all incoming values of the phi always yields the same value.
1210 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001211 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001212 return V;
1213
Craig Topper9f008862014-04-15 04:59:12 +00001214 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001215}
1216
Sanjay Patel472cc782016-01-11 22:14:42 +00001217/// Given operands for an SRem, see if we can fold the result.
1218/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001219static Value *SimplifySRemInst(Value *Op0, Value *Op1, const Query &Q,
1220 unsigned MaxRecurse) {
1221 if (Value *V = SimplifyRem(Instruction::SRem, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001222 return V;
1223
Craig Topper9f008862014-04-15 04:59:12 +00001224 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001225}
1226
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001227Value *llvm::SimplifySRemInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001228 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001229 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001230 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001231 return ::SimplifySRemInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001232 RecursionLimit);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001233}
1234
Sanjay Patel472cc782016-01-11 22:14:42 +00001235/// Given operands for a URem, see if we can fold the result.
1236/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001237static Value *SimplifyURemInst(Value *Op0, Value *Op1, const Query &Q,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001238 unsigned MaxRecurse) {
Duncan Sandsb8cee002012-03-13 11:42:19 +00001239 if (Value *V = SimplifyRem(Instruction::URem, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001240 return V;
1241
Craig Topper9f008862014-04-15 04:59:12 +00001242 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001243}
1244
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001245Value *llvm::SimplifyURemInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001246 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001247 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001248 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001249 return ::SimplifyURemInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001250 RecursionLimit);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001251}
1252
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001253static Value *SimplifyFRemInst(Value *Op0, Value *Op1, FastMathFlags FMF,
1254 const Query &, unsigned) {
Duncan Sandsa3e36992011-05-02 16:27:02 +00001255 // undef % X -> undef (the undef could be a snan).
1256 if (match(Op0, m_Undef()))
1257 return Op0;
1258
1259 // X % undef -> undef
1260 if (match(Op1, m_Undef()))
1261 return Op1;
1262
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001263 // 0 % X -> 0
1264 // Requires that NaNs are off (X could be zero) and signed zeroes are
1265 // ignored (X could be positive or negative, so the output sign is unknown).
1266 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op0, m_AnyZero()))
1267 return Op0;
1268
Craig Topper9f008862014-04-15 04:59:12 +00001269 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001270}
1271
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001272Value *llvm::SimplifyFRemInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001273 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001274 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001275 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001276 const Instruction *CxtI) {
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001277 return ::SimplifyFRemInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001278 RecursionLimit);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001279}
1280
Sanjay Patel472cc782016-01-11 22:14:42 +00001281/// Returns true if a shift by \c Amount always yields undef.
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00001282static bool isUndefShift(Value *Amount) {
1283 Constant *C = dyn_cast<Constant>(Amount);
1284 if (!C)
1285 return false;
1286
1287 // X shift by undef -> undef because it may shift by the bitwidth.
1288 if (isa<UndefValue>(C))
1289 return true;
1290
1291 // Shifting by the bitwidth or more is undefined.
1292 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
1293 if (CI->getValue().getLimitedValue() >=
1294 CI->getType()->getScalarSizeInBits())
1295 return true;
1296
1297 // If all lanes of a vector shift are undefined the whole shift is.
1298 if (isa<ConstantVector>(C) || isa<ConstantDataVector>(C)) {
1299 for (unsigned I = 0, E = C->getType()->getVectorNumElements(); I != E; ++I)
1300 if (!isUndefShift(C->getAggregateElement(I)))
1301 return false;
1302 return true;
1303 }
1304
1305 return false;
1306}
1307
Sanjay Patel472cc782016-01-11 22:14:42 +00001308/// Given operands for an Shl, LShr or AShr, see if we can fold the result.
1309/// If not, this returns null.
Duncan Sands571fd9a2011-01-14 14:44:12 +00001310static Value *SimplifyShift(unsigned Opcode, Value *Op0, Value *Op1,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001311 const Query &Q, unsigned MaxRecurse) {
Duncan Sands7f60dc12011-01-14 00:37:45 +00001312 if (Constant *C0 = dyn_cast<Constant>(Op0)) {
1313 if (Constant *C1 = dyn_cast<Constant>(Op1)) {
1314 Constant *Ops[] = { C0, C1 };
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001315 return ConstantFoldInstOperands(Opcode, C0->getType(), Ops, Q.DL, Q.TLI);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001316 }
1317 }
1318
Duncan Sands571fd9a2011-01-14 14:44:12 +00001319 // 0 shift by X -> 0
Duncan Sands7f60dc12011-01-14 00:37:45 +00001320 if (match(Op0, m_Zero()))
1321 return Op0;
1322
Duncan Sands571fd9a2011-01-14 14:44:12 +00001323 // X shift by 0 -> X
Duncan Sands7f60dc12011-01-14 00:37:45 +00001324 if (match(Op1, m_Zero()))
1325 return Op0;
1326
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00001327 // Fold undefined shifts.
1328 if (isUndefShift(Op1))
1329 return UndefValue::get(Op0->getType());
Duncan Sands7f60dc12011-01-14 00:37:45 +00001330
Duncan Sands571fd9a2011-01-14 14:44:12 +00001331 // If the operation is with the result of a select instruction, check whether
1332 // operating on either branch of the select always yields the same value.
1333 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001334 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001335 return V;
1336
1337 // If the operation is with the result of a phi instruction, check whether
1338 // operating on all incoming values of the phi always yields the same value.
1339 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001340 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001341 return V;
1342
Craig Topper9f008862014-04-15 04:59:12 +00001343 return nullptr;
Duncan Sands571fd9a2011-01-14 14:44:12 +00001344}
1345
David Majnemerbf7550e2014-11-05 00:59:59 +00001346/// \brief Given operands for an Shl, LShr or AShr, see if we can
1347/// fold the result. If not, this returns null.
1348static Value *SimplifyRightShift(unsigned Opcode, Value *Op0, Value *Op1,
1349 bool isExact, const Query &Q,
1350 unsigned MaxRecurse) {
1351 if (Value *V = SimplifyShift(Opcode, Op0, Op1, Q, MaxRecurse))
1352 return V;
1353
1354 // X >> X -> 0
1355 if (Op0 == Op1)
1356 return Constant::getNullValue(Op0->getType());
1357
David Majnemer65c52ae2014-12-17 01:54:33 +00001358 // undef >> X -> 0
1359 // undef >> X -> undef (if it's exact)
1360 if (match(Op0, m_Undef()))
1361 return isExact ? Op0 : Constant::getNullValue(Op0->getType());
1362
David Majnemerbf7550e2014-11-05 00:59:59 +00001363 // The low bit cannot be shifted out of an exact shift if it is set.
1364 if (isExact) {
1365 unsigned BitWidth = Op0->getType()->getScalarSizeInBits();
1366 APInt Op0KnownZero(BitWidth, 0);
1367 APInt Op0KnownOne(BitWidth, 0);
Chandler Carruth66b31302015-01-04 12:03:27 +00001368 computeKnownBits(Op0, Op0KnownZero, Op0KnownOne, Q.DL, /*Depth=*/0, Q.AC,
1369 Q.CxtI, Q.DT);
David Majnemerbf7550e2014-11-05 00:59:59 +00001370 if (Op0KnownOne[0])
1371 return Op0;
1372 }
1373
1374 return nullptr;
1375}
1376
Sanjay Patel472cc782016-01-11 22:14:42 +00001377/// Given operands for an Shl, see if we can fold the result.
1378/// If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001379static Value *SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001380 const Query &Q, unsigned MaxRecurse) {
1381 if (Value *V = SimplifyShift(Instruction::Shl, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001382 return V;
1383
1384 // undef << X -> 0
David Majnemer65c52ae2014-12-17 01:54:33 +00001385 // undef << X -> undef if (if it's NSW/NUW)
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001386 if (match(Op0, m_Undef()))
David Majnemer65c52ae2014-12-17 01:54:33 +00001387 return isNSW || isNUW ? Op0 : Constant::getNullValue(Op0->getType());
Duncan Sands571fd9a2011-01-14 14:44:12 +00001388
Chris Lattner9e4aa022011-02-09 17:15:04 +00001389 // (X >> A) << A -> X
1390 Value *X;
Benjamin Kramer9442cd02012-01-01 17:55:30 +00001391 if (match(Op0, m_Exact(m_Shr(m_Value(X), m_Specific(Op1)))))
Chris Lattner9e4aa022011-02-09 17:15:04 +00001392 return X;
Craig Topper9f008862014-04-15 04:59:12 +00001393 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001394}
1395
Chris Lattner9e4aa022011-02-09 17:15:04 +00001396Value *llvm::SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001397 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001398 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001399 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001400 return ::SimplifyShlInst(Op0, Op1, isNSW, isNUW, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00001401 RecursionLimit);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001402}
1403
Sanjay Patel472cc782016-01-11 22:14:42 +00001404/// Given operands for an LShr, see if we can fold the result.
1405/// If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001406static Value *SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001407 const Query &Q, unsigned MaxRecurse) {
David Majnemerbf7550e2014-11-05 00:59:59 +00001408 if (Value *V = SimplifyRightShift(Instruction::LShr, Op0, Op1, isExact, Q,
1409 MaxRecurse))
1410 return V;
David Majnemera80fed72013-07-09 22:01:22 +00001411
Chris Lattner9e4aa022011-02-09 17:15:04 +00001412 // (X << A) >> A -> X
1413 Value *X;
David Majnemer4f438372014-11-04 17:38:50 +00001414 if (match(Op0, m_NUWShl(m_Value(X), m_Specific(Op1))))
Chris Lattner9e4aa022011-02-09 17:15:04 +00001415 return X;
Duncan Sandsd114ab32011-02-13 17:15:40 +00001416
Craig Topper9f008862014-04-15 04:59:12 +00001417 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001418}
1419
Chris Lattner9e4aa022011-02-09 17:15:04 +00001420Value *llvm::SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001421 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001422 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001423 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001424 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001425 return ::SimplifyLShrInst(Op0, Op1, isExact, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00001426 RecursionLimit);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001427}
1428
Sanjay Patel472cc782016-01-11 22:14:42 +00001429/// Given operands for an AShr, see if we can fold the result.
1430/// If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001431static Value *SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001432 const Query &Q, unsigned MaxRecurse) {
David Majnemerbf7550e2014-11-05 00:59:59 +00001433 if (Value *V = SimplifyRightShift(Instruction::AShr, Op0, Op1, isExact, Q,
1434 MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001435 return V;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001436
1437 // all ones >>a X -> all ones
1438 if (match(Op0, m_AllOnes()))
1439 return Op0;
1440
Chris Lattner9e4aa022011-02-09 17:15:04 +00001441 // (X << A) >> A -> X
1442 Value *X;
David Majnemer2de97fc2014-11-04 17:47:13 +00001443 if (match(Op0, m_NSWShl(m_Value(X), m_Specific(Op1))))
Chris Lattner9e4aa022011-02-09 17:15:04 +00001444 return X;
Duncan Sandsd114ab32011-02-13 17:15:40 +00001445
Suyog Sarda68862412014-07-17 06:28:15 +00001446 // Arithmetic shifting an all-sign-bit value is a no-op.
Chandler Carruth66b31302015-01-04 12:03:27 +00001447 unsigned NumSignBits = ComputeNumSignBits(Op0, Q.DL, 0, Q.AC, Q.CxtI, Q.DT);
Suyog Sarda68862412014-07-17 06:28:15 +00001448 if (NumSignBits == Op0->getType()->getScalarSizeInBits())
1449 return Op0;
1450
Craig Topper9f008862014-04-15 04:59:12 +00001451 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001452}
1453
Chris Lattner9e4aa022011-02-09 17:15:04 +00001454Value *llvm::SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001455 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001456 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001457 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001458 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001459 return ::SimplifyAShrInst(Op0, Op1, isExact, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00001460 RecursionLimit);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001461}
1462
David Majnemer1af36e52014-12-06 10:51:40 +00001463static Value *simplifyUnsignedRangeCheck(ICmpInst *ZeroICmp,
1464 ICmpInst *UnsignedICmp, bool IsAnd) {
1465 Value *X, *Y;
1466
1467 ICmpInst::Predicate EqPred;
David Majnemerd5b3aa42014-12-08 18:30:43 +00001468 if (!match(ZeroICmp, m_ICmp(EqPred, m_Value(Y), m_Zero())) ||
1469 !ICmpInst::isEquality(EqPred))
David Majnemer1af36e52014-12-06 10:51:40 +00001470 return nullptr;
1471
1472 ICmpInst::Predicate UnsignedPred;
1473 if (match(UnsignedICmp, m_ICmp(UnsignedPred, m_Value(X), m_Specific(Y))) &&
1474 ICmpInst::isUnsigned(UnsignedPred))
1475 ;
1476 else if (match(UnsignedICmp,
1477 m_ICmp(UnsignedPred, m_Value(Y), m_Specific(X))) &&
1478 ICmpInst::isUnsigned(UnsignedPred))
1479 UnsignedPred = ICmpInst::getSwappedPredicate(UnsignedPred);
1480 else
1481 return nullptr;
1482
1483 // X < Y && Y != 0 --> X < Y
1484 // X < Y || Y != 0 --> Y != 0
1485 if (UnsignedPred == ICmpInst::ICMP_ULT && EqPred == ICmpInst::ICMP_NE)
1486 return IsAnd ? UnsignedICmp : ZeroICmp;
1487
1488 // X >= Y || Y != 0 --> true
1489 // X >= Y || Y == 0 --> X >= Y
1490 if (UnsignedPred == ICmpInst::ICMP_UGE && !IsAnd) {
1491 if (EqPred == ICmpInst::ICMP_NE)
1492 return getTrue(UnsignedICmp->getType());
1493 return UnsignedICmp;
1494 }
1495
David Majnemerd5b3aa42014-12-08 18:30:43 +00001496 // X < Y && Y == 0 --> false
1497 if (UnsignedPred == ICmpInst::ICMP_ULT && EqPred == ICmpInst::ICMP_EQ &&
1498 IsAnd)
1499 return getFalse(UnsignedICmp->getType());
1500
David Majnemer1af36e52014-12-06 10:51:40 +00001501 return nullptr;
1502}
1503
Sanjay Patel472cc782016-01-11 22:14:42 +00001504/// Simplify (and (icmp ...) (icmp ...)) to true when we can tell that the range
1505/// of possible values cannot be satisfied.
David Majnemera315bd82014-09-15 08:15:28 +00001506static Value *SimplifyAndOfICmps(ICmpInst *Op0, ICmpInst *Op1) {
1507 ICmpInst::Predicate Pred0, Pred1;
1508 ConstantInt *CI1, *CI2;
1509 Value *V;
David Majnemer1af36e52014-12-06 10:51:40 +00001510
1511 if (Value *X = simplifyUnsignedRangeCheck(Op0, Op1, /*IsAnd=*/true))
1512 return X;
1513
David Majnemera315bd82014-09-15 08:15:28 +00001514 if (!match(Op0, m_ICmp(Pred0, m_Add(m_Value(V), m_ConstantInt(CI1)),
1515 m_ConstantInt(CI2))))
1516 return nullptr;
1517
1518 if (!match(Op1, m_ICmp(Pred1, m_Specific(V), m_Specific(CI1))))
1519 return nullptr;
1520
1521 Type *ITy = Op0->getType();
1522
1523 auto *AddInst = cast<BinaryOperator>(Op0->getOperand(0));
1524 bool isNSW = AddInst->hasNoSignedWrap();
1525 bool isNUW = AddInst->hasNoUnsignedWrap();
1526
1527 const APInt &CI1V = CI1->getValue();
1528 const APInt &CI2V = CI2->getValue();
1529 const APInt Delta = CI2V - CI1V;
1530 if (CI1V.isStrictlyPositive()) {
1531 if (Delta == 2) {
1532 if (Pred0 == ICmpInst::ICMP_ULT && Pred1 == ICmpInst::ICMP_SGT)
1533 return getFalse(ITy);
1534 if (Pred0 == ICmpInst::ICMP_SLT && Pred1 == ICmpInst::ICMP_SGT && isNSW)
1535 return getFalse(ITy);
1536 }
1537 if (Delta == 1) {
1538 if (Pred0 == ICmpInst::ICMP_ULE && Pred1 == ICmpInst::ICMP_SGT)
1539 return getFalse(ITy);
1540 if (Pred0 == ICmpInst::ICMP_SLE && Pred1 == ICmpInst::ICMP_SGT && isNSW)
1541 return getFalse(ITy);
1542 }
1543 }
1544 if (CI1V.getBoolValue() && isNUW) {
1545 if (Delta == 2)
1546 if (Pred0 == ICmpInst::ICMP_ULT && Pred1 == ICmpInst::ICMP_UGT)
1547 return getFalse(ITy);
1548 if (Delta == 1)
1549 if (Pred0 == ICmpInst::ICMP_ULE && Pred1 == ICmpInst::ICMP_UGT)
1550 return getFalse(ITy);
1551 }
1552
1553 return nullptr;
1554}
1555
Sanjay Patel472cc782016-01-11 22:14:42 +00001556/// Given operands for an And, see if we can fold the result.
1557/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001558static Value *SimplifyAndInst(Value *Op0, Value *Op1, const Query &Q,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001559 unsigned MaxRecurse) {
Chris Lattnera71e9d62009-11-10 00:55:12 +00001560 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
1561 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
1562 Constant *Ops[] = { CLHS, CRHS };
1563 return ConstantFoldInstOperands(Instruction::And, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001564 Ops, Q.DL, Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00001565 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001566
Chris Lattnera71e9d62009-11-10 00:55:12 +00001567 // Canonicalize the constant to the RHS.
1568 std::swap(Op0, Op1);
1569 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001570
Chris Lattnera71e9d62009-11-10 00:55:12 +00001571 // X & undef -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001572 if (match(Op1, m_Undef()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001573 return Constant::getNullValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001574
Chris Lattnera71e9d62009-11-10 00:55:12 +00001575 // X & X = X
Duncan Sands772749a2011-01-01 20:08:02 +00001576 if (Op0 == Op1)
Chris Lattnera71e9d62009-11-10 00:55:12 +00001577 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001578
Duncan Sandsc89ac072010-11-17 18:52:15 +00001579 // X & 0 = 0
1580 if (match(Op1, m_Zero()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001581 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001582
Duncan Sandsc89ac072010-11-17 18:52:15 +00001583 // X & -1 = X
1584 if (match(Op1, m_AllOnes()))
1585 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001586
Chris Lattnera71e9d62009-11-10 00:55:12 +00001587 // A & ~A = ~A & A = 0
Chris Lattner9e4aa022011-02-09 17:15:04 +00001588 if (match(Op0, m_Not(m_Specific(Op1))) ||
1589 match(Op1, m_Not(m_Specific(Op0))))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001590 return Constant::getNullValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001591
Chris Lattnera71e9d62009-11-10 00:55:12 +00001592 // (A | ?) & A = A
Craig Topper9f008862014-04-15 04:59:12 +00001593 Value *A = nullptr, *B = nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00001594 if (match(Op0, m_Or(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001595 (A == Op1 || B == Op1))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001596 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001597
Chris Lattnera71e9d62009-11-10 00:55:12 +00001598 // A & (A | ?) = A
1599 if (match(Op1, m_Or(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001600 (A == Op0 || B == Op0))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001601 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001602
Duncan Sandsba286d72011-10-26 20:55:21 +00001603 // A & (-A) = A if A is a power of two or zero.
1604 if (match(Op0, m_Neg(m_Specific(Op1))) ||
1605 match(Op1, m_Neg(m_Specific(Op0)))) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001606 if (isKnownToBeAPowerOfTwo(Op0, Q.DL, /*OrZero*/ true, 0, Q.AC, Q.CxtI,
1607 Q.DT))
Duncan Sandsba286d72011-10-26 20:55:21 +00001608 return Op0;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001609 if (isKnownToBeAPowerOfTwo(Op1, Q.DL, /*OrZero*/ true, 0, Q.AC, Q.CxtI,
1610 Q.DT))
Duncan Sandsba286d72011-10-26 20:55:21 +00001611 return Op1;
1612 }
1613
David Majnemera315bd82014-09-15 08:15:28 +00001614 if (auto *ICILHS = dyn_cast<ICmpInst>(Op0)) {
1615 if (auto *ICIRHS = dyn_cast<ICmpInst>(Op1)) {
1616 if (Value *V = SimplifyAndOfICmps(ICILHS, ICIRHS))
1617 return V;
1618 if (Value *V = SimplifyAndOfICmps(ICIRHS, ICILHS))
1619 return V;
1620 }
1621 }
1622
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001623 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001624 if (Value *V = SimplifyAssociativeBinOp(Instruction::And, Op0, Op1, Q,
1625 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001626 return V;
Benjamin Kramer8c35fb02010-09-10 22:39:55 +00001627
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001628 // And distributes over Or. Try some generic simplifications based on this.
1629 if (Value *V = ExpandBinOp(Instruction::And, Op0, Op1, Instruction::Or,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001630 Q, MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001631 return V;
1632
1633 // And distributes over Xor. Try some generic simplifications based on this.
1634 if (Value *V = ExpandBinOp(Instruction::And, Op0, Op1, Instruction::Xor,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001635 Q, MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001636 return V;
1637
Duncan Sandsb0579e92010-11-10 13:00:08 +00001638 // If the operation is with the result of a select instruction, check whether
1639 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001640 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001641 if (Value *V = ThreadBinOpOverSelect(Instruction::And, Op0, Op1, Q,
1642 MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001643 return V;
1644
1645 // If the operation is with the result of a phi instruction, check whether
1646 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001647 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001648 if (Value *V = ThreadBinOpOverPHI(Instruction::And, Op0, Op1, Q,
Duncan Sandsf64e6902010-12-21 09:09:15 +00001649 MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00001650 return V;
1651
Craig Topper9f008862014-04-15 04:59:12 +00001652 return nullptr;
Chris Lattner084a1b52009-11-09 22:57:59 +00001653}
1654
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001655Value *llvm::SimplifyAndInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001656 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001657 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001658 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001659 return ::SimplifyAndInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001660 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001661}
1662
Sanjay Patel472cc782016-01-11 22:14:42 +00001663/// Simplify (or (icmp ...) (icmp ...)) to true when we can tell that the union
1664/// contains all possible values.
David Majnemera315bd82014-09-15 08:15:28 +00001665static Value *SimplifyOrOfICmps(ICmpInst *Op0, ICmpInst *Op1) {
1666 ICmpInst::Predicate Pred0, Pred1;
1667 ConstantInt *CI1, *CI2;
1668 Value *V;
David Majnemer1af36e52014-12-06 10:51:40 +00001669
1670 if (Value *X = simplifyUnsignedRangeCheck(Op0, Op1, /*IsAnd=*/false))
1671 return X;
1672
David Majnemera315bd82014-09-15 08:15:28 +00001673 if (!match(Op0, m_ICmp(Pred0, m_Add(m_Value(V), m_ConstantInt(CI1)),
1674 m_ConstantInt(CI2))))
1675 return nullptr;
1676
1677 if (!match(Op1, m_ICmp(Pred1, m_Specific(V), m_Specific(CI1))))
1678 return nullptr;
1679
1680 Type *ITy = Op0->getType();
1681
1682 auto *AddInst = cast<BinaryOperator>(Op0->getOperand(0));
1683 bool isNSW = AddInst->hasNoSignedWrap();
1684 bool isNUW = AddInst->hasNoUnsignedWrap();
1685
1686 const APInt &CI1V = CI1->getValue();
1687 const APInt &CI2V = CI2->getValue();
1688 const APInt Delta = CI2V - CI1V;
1689 if (CI1V.isStrictlyPositive()) {
1690 if (Delta == 2) {
1691 if (Pred0 == ICmpInst::ICMP_UGE && Pred1 == ICmpInst::ICMP_SLE)
1692 return getTrue(ITy);
1693 if (Pred0 == ICmpInst::ICMP_SGE && Pred1 == ICmpInst::ICMP_SLE && isNSW)
1694 return getTrue(ITy);
1695 }
1696 if (Delta == 1) {
1697 if (Pred0 == ICmpInst::ICMP_UGT && Pred1 == ICmpInst::ICMP_SLE)
1698 return getTrue(ITy);
1699 if (Pred0 == ICmpInst::ICMP_SGT && Pred1 == ICmpInst::ICMP_SLE && isNSW)
1700 return getTrue(ITy);
1701 }
1702 }
1703 if (CI1V.getBoolValue() && isNUW) {
1704 if (Delta == 2)
1705 if (Pred0 == ICmpInst::ICMP_UGE && Pred1 == ICmpInst::ICMP_ULE)
1706 return getTrue(ITy);
1707 if (Delta == 1)
1708 if (Pred0 == ICmpInst::ICMP_UGT && Pred1 == ICmpInst::ICMP_ULE)
1709 return getTrue(ITy);
1710 }
1711
1712 return nullptr;
1713}
1714
Sanjay Patel472cc782016-01-11 22:14:42 +00001715/// Given operands for an Or, see if we can fold the result.
1716/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001717static Value *SimplifyOrInst(Value *Op0, Value *Op1, const Query &Q,
1718 unsigned MaxRecurse) {
Chris Lattnera71e9d62009-11-10 00:55:12 +00001719 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
1720 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
1721 Constant *Ops[] = { CLHS, CRHS };
1722 return ConstantFoldInstOperands(Instruction::Or, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001723 Ops, Q.DL, Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00001724 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001725
Chris Lattnera71e9d62009-11-10 00:55:12 +00001726 // Canonicalize the constant to the RHS.
1727 std::swap(Op0, Op1);
1728 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001729
Chris Lattnera71e9d62009-11-10 00:55:12 +00001730 // X | undef -> -1
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001731 if (match(Op1, m_Undef()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001732 return Constant::getAllOnesValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001733
Chris Lattnera71e9d62009-11-10 00:55:12 +00001734 // X | X = X
Duncan Sands772749a2011-01-01 20:08:02 +00001735 if (Op0 == Op1)
Chris Lattnera71e9d62009-11-10 00:55:12 +00001736 return Op0;
1737
Duncan Sandsc89ac072010-11-17 18:52:15 +00001738 // X | 0 = X
1739 if (match(Op1, m_Zero()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001740 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001741
Duncan Sandsc89ac072010-11-17 18:52:15 +00001742 // X | -1 = -1
1743 if (match(Op1, m_AllOnes()))
1744 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001745
Chris Lattnera71e9d62009-11-10 00:55:12 +00001746 // A | ~A = ~A | A = -1
Chris Lattner9e4aa022011-02-09 17:15:04 +00001747 if (match(Op0, m_Not(m_Specific(Op1))) ||
1748 match(Op1, m_Not(m_Specific(Op0))))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001749 return Constant::getAllOnesValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001750
Chris Lattnera71e9d62009-11-10 00:55:12 +00001751 // (A & ?) | A = A
Craig Topper9f008862014-04-15 04:59:12 +00001752 Value *A = nullptr, *B = nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00001753 if (match(Op0, m_And(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001754 (A == Op1 || B == Op1))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001755 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001756
Chris Lattnera71e9d62009-11-10 00:55:12 +00001757 // A | (A & ?) = A
1758 if (match(Op1, m_And(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001759 (A == Op0 || B == Op0))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001760 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001761
Benjamin Kramer5b7a4e02011-02-20 15:20:01 +00001762 // ~(A & ?) | A = -1
1763 if (match(Op0, m_Not(m_And(m_Value(A), m_Value(B)))) &&
1764 (A == Op1 || B == Op1))
1765 return Constant::getAllOnesValue(Op1->getType());
1766
1767 // A | ~(A & ?) = -1
1768 if (match(Op1, m_Not(m_And(m_Value(A), m_Value(B)))) &&
1769 (A == Op0 || B == Op0))
1770 return Constant::getAllOnesValue(Op0->getType());
1771
David Majnemera315bd82014-09-15 08:15:28 +00001772 if (auto *ICILHS = dyn_cast<ICmpInst>(Op0)) {
1773 if (auto *ICIRHS = dyn_cast<ICmpInst>(Op1)) {
1774 if (Value *V = SimplifyOrOfICmps(ICILHS, ICIRHS))
1775 return V;
1776 if (Value *V = SimplifyOrOfICmps(ICIRHS, ICILHS))
1777 return V;
1778 }
1779 }
1780
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001781 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001782 if (Value *V = SimplifyAssociativeBinOp(Instruction::Or, Op0, Op1, Q,
1783 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001784 return V;
Benjamin Kramer8c35fb02010-09-10 22:39:55 +00001785
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001786 // Or distributes over And. Try some generic simplifications based on this.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001787 if (Value *V = ExpandBinOp(Instruction::Or, Op0, Op1, Instruction::And, Q,
1788 MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001789 return V;
1790
Duncan Sandsb0579e92010-11-10 13:00:08 +00001791 // If the operation is with the result of a select instruction, check whether
1792 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001793 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001794 if (Value *V = ThreadBinOpOverSelect(Instruction::Or, Op0, Op1, Q,
Duncan Sandsf64e6902010-12-21 09:09:15 +00001795 MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001796 return V;
1797
Nick Lewycky8561a492014-06-19 03:51:46 +00001798 // (A & C)|(B & D)
1799 Value *C = nullptr, *D = nullptr;
1800 if (match(Op0, m_And(m_Value(A), m_Value(C))) &&
1801 match(Op1, m_And(m_Value(B), m_Value(D)))) {
1802 ConstantInt *C1 = dyn_cast<ConstantInt>(C);
1803 ConstantInt *C2 = dyn_cast<ConstantInt>(D);
1804 if (C1 && C2 && (C1->getValue() == ~C2->getValue())) {
1805 // (A & C1)|(B & C2)
1806 // If we have: ((V + N) & C1) | (V & C2)
1807 // .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0
1808 // replace with V+N.
1809 Value *V1, *V2;
1810 if ((C2->getValue() & (C2->getValue() + 1)) == 0 && // C2 == 0+1+
1811 match(A, m_Add(m_Value(V1), m_Value(V2)))) {
1812 // Add commutes, try both ways.
Chandler Carruth66b31302015-01-04 12:03:27 +00001813 if (V1 == B &&
1814 MaskedValueIsZero(V2, C2->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001815 return A;
Chandler Carruth66b31302015-01-04 12:03:27 +00001816 if (V2 == B &&
1817 MaskedValueIsZero(V1, C2->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001818 return A;
1819 }
1820 // Or commutes, try both ways.
1821 if ((C1->getValue() & (C1->getValue() + 1)) == 0 &&
1822 match(B, m_Add(m_Value(V1), m_Value(V2)))) {
1823 // Add commutes, try both ways.
Chandler Carruth66b31302015-01-04 12:03:27 +00001824 if (V1 == A &&
1825 MaskedValueIsZero(V2, C1->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001826 return B;
Chandler Carruth66b31302015-01-04 12:03:27 +00001827 if (V2 == A &&
1828 MaskedValueIsZero(V1, C1->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001829 return B;
1830 }
1831 }
1832 }
1833
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001834 // If the operation is with the result of a phi instruction, check whether
1835 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001836 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001837 if (Value *V = ThreadBinOpOverPHI(Instruction::Or, Op0, Op1, Q, MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00001838 return V;
1839
Craig Topper9f008862014-04-15 04:59:12 +00001840 return nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00001841}
1842
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001843Value *llvm::SimplifyOrInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001844 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001845 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001846 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001847 return ::SimplifyOrInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001848 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001849}
Chris Lattnera71e9d62009-11-10 00:55:12 +00001850
Sanjay Patel472cc782016-01-11 22:14:42 +00001851/// Given operands for a Xor, see if we can fold the result.
1852/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001853static Value *SimplifyXorInst(Value *Op0, Value *Op1, const Query &Q,
1854 unsigned MaxRecurse) {
Duncan Sandsc89ac072010-11-17 18:52:15 +00001855 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
1856 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
1857 Constant *Ops[] = { CLHS, CRHS };
1858 return ConstantFoldInstOperands(Instruction::Xor, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001859 Ops, Q.DL, Q.TLI);
Duncan Sandsc89ac072010-11-17 18:52:15 +00001860 }
1861
1862 // Canonicalize the constant to the RHS.
1863 std::swap(Op0, Op1);
1864 }
1865
1866 // A ^ undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001867 if (match(Op1, m_Undef()))
Duncan Sands019a4182010-12-15 11:02:22 +00001868 return Op1;
Duncan Sandsc89ac072010-11-17 18:52:15 +00001869
1870 // A ^ 0 = A
1871 if (match(Op1, m_Zero()))
1872 return Op0;
1873
Eli Friedmanad3cfe72011-08-17 19:31:49 +00001874 // A ^ A = 0
1875 if (Op0 == Op1)
1876 return Constant::getNullValue(Op0->getType());
1877
Duncan Sandsc89ac072010-11-17 18:52:15 +00001878 // A ^ ~A = ~A ^ A = -1
Chris Lattner9e4aa022011-02-09 17:15:04 +00001879 if (match(Op0, m_Not(m_Specific(Op1))) ||
1880 match(Op1, m_Not(m_Specific(Op0))))
Duncan Sandsc89ac072010-11-17 18:52:15 +00001881 return Constant::getAllOnesValue(Op0->getType());
1882
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001883 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001884 if (Value *V = SimplifyAssociativeBinOp(Instruction::Xor, Op0, Op1, Q,
1885 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001886 return V;
Duncan Sandsc89ac072010-11-17 18:52:15 +00001887
Duncan Sandsb238de02010-11-19 09:20:39 +00001888 // Threading Xor over selects and phi nodes is pointless, so don't bother.
1889 // Threading over the select in "A ^ select(cond, B, C)" means evaluating
1890 // "A^B" and "A^C" and seeing if they are equal; but they are equal if and
1891 // only if B and C are equal. If B and C are equal then (since we assume
1892 // that operands have already been simplified) "select(cond, B, C)" should
1893 // have been simplified to the common value of B and C already. Analysing
1894 // "A^B" and "A^C" thus gains nothing, but costs compile time. Similarly
1895 // for threading over phi nodes.
Duncan Sandsc89ac072010-11-17 18:52:15 +00001896
Craig Topper9f008862014-04-15 04:59:12 +00001897 return nullptr;
Duncan Sandsc89ac072010-11-17 18:52:15 +00001898}
1899
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001900Value *llvm::SimplifyXorInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001901 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001902 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001903 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001904 return ::SimplifyXorInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001905 RecursionLimit);
Duncan Sandsc89ac072010-11-17 18:52:15 +00001906}
1907
Chris Lattner229907c2011-07-18 04:54:35 +00001908static Type *GetCompareTy(Value *Op) {
Chris Lattnerccfdceb2009-11-09 23:55:12 +00001909 return CmpInst::makeCmpResultType(Op->getType());
1910}
1911
Sanjay Patel472cc782016-01-11 22:14:42 +00001912/// Rummage around inside V looking for something equivalent to the comparison
1913/// "LHS Pred RHS". Return such a value if found, otherwise return null.
1914/// Helper function for analyzing max/min idioms.
Duncan Sandsaf327282011-05-07 16:56:49 +00001915static Value *ExtractEquivalentCondition(Value *V, CmpInst::Predicate Pred,
1916 Value *LHS, Value *RHS) {
1917 SelectInst *SI = dyn_cast<SelectInst>(V);
1918 if (!SI)
Craig Topper9f008862014-04-15 04:59:12 +00001919 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00001920 CmpInst *Cmp = dyn_cast<CmpInst>(SI->getCondition());
1921 if (!Cmp)
Craig Topper9f008862014-04-15 04:59:12 +00001922 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00001923 Value *CmpLHS = Cmp->getOperand(0), *CmpRHS = Cmp->getOperand(1);
1924 if (Pred == Cmp->getPredicate() && LHS == CmpLHS && RHS == CmpRHS)
1925 return Cmp;
1926 if (Pred == CmpInst::getSwappedPredicate(Cmp->getPredicate()) &&
1927 LHS == CmpRHS && RHS == CmpLHS)
1928 return Cmp;
Craig Topper9f008862014-04-15 04:59:12 +00001929 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00001930}
1931
Dan Gohman9631d902013-02-01 00:49:06 +00001932// A significant optimization not implemented here is assuming that alloca
1933// addresses are not equal to incoming argument values. They don't *alias*,
1934// as we say, but that doesn't mean they aren't equal, so we take a
1935// conservative approach.
1936//
1937// This is inspired in part by C++11 5.10p1:
1938// "Two pointers of the same type compare equal if and only if they are both
1939// null, both point to the same function, or both represent the same
1940// address."
1941//
1942// This is pretty permissive.
1943//
1944// It's also partly due to C11 6.5.9p6:
1945// "Two pointers compare equal if and only if both are null pointers, both are
1946// pointers to the same object (including a pointer to an object and a
1947// subobject at its beginning) or function, both are pointers to one past the
1948// last element of the same array object, or one is a pointer to one past the
1949// end of one array object and the other is a pointer to the start of a
NAKAMURA Takumi065fd352013-04-08 23:05:21 +00001950// different array object that happens to immediately follow the first array
Dan Gohman9631d902013-02-01 00:49:06 +00001951// object in the address space.)
1952//
1953// C11's version is more restrictive, however there's no reason why an argument
1954// couldn't be a one-past-the-end value for a stack object in the caller and be
1955// equal to the beginning of a stack object in the callee.
1956//
1957// If the C and C++ standards are ever made sufficiently restrictive in this
1958// area, it may be possible to update LLVM's semantics accordingly and reinstate
1959// this optimization.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001960static Constant *computePointerICmp(const DataLayout &DL,
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001961 const TargetLibraryInfo *TLI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001962 CmpInst::Predicate Pred, Value *LHS,
1963 Value *RHS) {
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001964 // First, skip past any trivial no-ops.
1965 LHS = LHS->stripPointerCasts();
1966 RHS = RHS->stripPointerCasts();
1967
1968 // A non-null pointer is not equal to a null pointer.
Benjamin Kramerfd4777c2013-09-24 16:37:51 +00001969 if (llvm::isKnownNonNull(LHS, TLI) && isa<ConstantPointerNull>(RHS) &&
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001970 (Pred == CmpInst::ICMP_EQ || Pred == CmpInst::ICMP_NE))
1971 return ConstantInt::get(GetCompareTy(LHS),
1972 !CmpInst::isTrueWhenEqual(Pred));
1973
Chandler Carruth8059c842012-03-25 21:28:14 +00001974 // We can only fold certain predicates on pointer comparisons.
1975 switch (Pred) {
1976 default:
Craig Topper9f008862014-04-15 04:59:12 +00001977 return nullptr;
Chandler Carruth8059c842012-03-25 21:28:14 +00001978
1979 // Equality comaprisons are easy to fold.
1980 case CmpInst::ICMP_EQ:
1981 case CmpInst::ICMP_NE:
1982 break;
1983
1984 // We can only handle unsigned relational comparisons because 'inbounds' on
1985 // a GEP only protects against unsigned wrapping.
1986 case CmpInst::ICMP_UGT:
1987 case CmpInst::ICMP_UGE:
1988 case CmpInst::ICMP_ULT:
1989 case CmpInst::ICMP_ULE:
1990 // However, we have to switch them to their signed variants to handle
1991 // negative indices from the base pointer.
1992 Pred = ICmpInst::getSignedPredicate(Pred);
1993 break;
1994 }
1995
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001996 // Strip off any constant offsets so that we can reason about them.
1997 // It's tempting to use getUnderlyingObject or even just stripInBoundsOffsets
1998 // here and compare base addresses like AliasAnalysis does, however there are
1999 // numerous hazards. AliasAnalysis and its utilities rely on special rules
2000 // governing loads and stores which don't apply to icmps. Also, AliasAnalysis
2001 // doesn't need to guarantee pointer inequality when it says NoAlias.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002002 Constant *LHSOffset = stripAndComputeConstantOffsets(DL, LHS);
2003 Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS);
Chandler Carruth8059c842012-03-25 21:28:14 +00002004
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002005 // If LHS and RHS are related via constant offsets to the same base
2006 // value, we can replace it with an icmp which just compares the offsets.
2007 if (LHS == RHS)
2008 return ConstantExpr::getICmp(Pred, LHSOffset, RHSOffset);
Chandler Carruth8059c842012-03-25 21:28:14 +00002009
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002010 // Various optimizations for (in)equality comparisons.
2011 if (Pred == CmpInst::ICMP_EQ || Pred == CmpInst::ICMP_NE) {
2012 // Different non-empty allocations that exist at the same time have
2013 // different addresses (if the program can tell). Global variables always
2014 // exist, so they always exist during the lifetime of each other and all
2015 // allocas. Two different allocas usually have different addresses...
2016 //
2017 // However, if there's an @llvm.stackrestore dynamically in between two
2018 // allocas, they may have the same address. It's tempting to reduce the
2019 // scope of the problem by only looking at *static* allocas here. That would
2020 // cover the majority of allocas while significantly reducing the likelihood
2021 // of having an @llvm.stackrestore pop up in the middle. However, it's not
2022 // actually impossible for an @llvm.stackrestore to pop up in the middle of
2023 // an entry block. Also, if we have a block that's not attached to a
2024 // function, we can't tell if it's "static" under the current definition.
2025 // Theoretically, this problem could be fixed by creating a new kind of
2026 // instruction kind specifically for static allocas. Such a new instruction
2027 // could be required to be at the top of the entry block, thus preventing it
2028 // from being subject to a @llvm.stackrestore. Instcombine could even
2029 // convert regular allocas into these special allocas. It'd be nifty.
2030 // However, until then, this problem remains open.
2031 //
2032 // So, we'll assume that two non-empty allocas have different addresses
2033 // for now.
2034 //
2035 // With all that, if the offsets are within the bounds of their allocations
2036 // (and not one-past-the-end! so we can't use inbounds!), and their
2037 // allocations aren't the same, the pointers are not equal.
2038 //
2039 // Note that it's not necessary to check for LHS being a global variable
2040 // address, due to canonicalization and constant folding.
2041 if (isa<AllocaInst>(LHS) &&
2042 (isa<AllocaInst>(RHS) || isa<GlobalVariable>(RHS))) {
Benjamin Kramerc05aa952013-02-01 15:21:10 +00002043 ConstantInt *LHSOffsetCI = dyn_cast<ConstantInt>(LHSOffset);
2044 ConstantInt *RHSOffsetCI = dyn_cast<ConstantInt>(RHSOffset);
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002045 uint64_t LHSSize, RHSSize;
Benjamin Kramerc05aa952013-02-01 15:21:10 +00002046 if (LHSOffsetCI && RHSOffsetCI &&
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002047 getObjectSize(LHS, LHSSize, DL, TLI) &&
2048 getObjectSize(RHS, RHSSize, DL, TLI)) {
Benjamin Kramerc05aa952013-02-01 15:21:10 +00002049 const APInt &LHSOffsetValue = LHSOffsetCI->getValue();
2050 const APInt &RHSOffsetValue = RHSOffsetCI->getValue();
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002051 if (!LHSOffsetValue.isNegative() &&
2052 !RHSOffsetValue.isNegative() &&
2053 LHSOffsetValue.ult(LHSSize) &&
2054 RHSOffsetValue.ult(RHSSize)) {
2055 return ConstantInt::get(GetCompareTy(LHS),
2056 !CmpInst::isTrueWhenEqual(Pred));
2057 }
2058 }
2059
2060 // Repeat the above check but this time without depending on DataLayout
2061 // or being able to compute a precise size.
2062 if (!cast<PointerType>(LHS->getType())->isEmptyTy() &&
2063 !cast<PointerType>(RHS->getType())->isEmptyTy() &&
2064 LHSOffset->isNullValue() &&
2065 RHSOffset->isNullValue())
2066 return ConstantInt::get(GetCompareTy(LHS),
2067 !CmpInst::isTrueWhenEqual(Pred));
2068 }
Benjamin Kramer942dfe62013-09-23 14:16:38 +00002069
2070 // Even if an non-inbounds GEP occurs along the path we can still optimize
2071 // equality comparisons concerning the result. We avoid walking the whole
2072 // chain again by starting where the last calls to
2073 // stripAndComputeConstantOffsets left off and accumulate the offsets.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002074 Constant *LHSNoBound = stripAndComputeConstantOffsets(DL, LHS, true);
2075 Constant *RHSNoBound = stripAndComputeConstantOffsets(DL, RHS, true);
Benjamin Kramer942dfe62013-09-23 14:16:38 +00002076 if (LHS == RHS)
2077 return ConstantExpr::getICmp(Pred,
2078 ConstantExpr::getAdd(LHSOffset, LHSNoBound),
2079 ConstantExpr::getAdd(RHSOffset, RHSNoBound));
Hal Finkelafcd8db2014-12-01 23:38:06 +00002080
2081 // If one side of the equality comparison must come from a noalias call
2082 // (meaning a system memory allocation function), and the other side must
2083 // come from a pointer that cannot overlap with dynamically-allocated
2084 // memory within the lifetime of the current function (allocas, byval
2085 // arguments, globals), then determine the comparison result here.
2086 SmallVector<Value *, 8> LHSUObjs, RHSUObjs;
2087 GetUnderlyingObjects(LHS, LHSUObjs, DL);
2088 GetUnderlyingObjects(RHS, RHSUObjs, DL);
2089
2090 // Is the set of underlying objects all noalias calls?
2091 auto IsNAC = [](SmallVectorImpl<Value *> &Objects) {
Craig Topperb4b66d02015-11-29 04:37:14 +00002092 return std::all_of(Objects.begin(), Objects.end(), isNoAliasCall);
Hal Finkelafcd8db2014-12-01 23:38:06 +00002093 };
2094
2095 // Is the set of underlying objects all things which must be disjoint from
Hal Finkelaa19baf2014-12-04 17:45:19 +00002096 // noalias calls. For allocas, we consider only static ones (dynamic
2097 // allocas might be transformed into calls to malloc not simultaneously
2098 // live with the compared-to allocation). For globals, we exclude symbols
2099 // that might be resolve lazily to symbols in another dynamically-loaded
2100 // library (and, thus, could be malloc'ed by the implementation).
Hal Finkelafcd8db2014-12-01 23:38:06 +00002101 auto IsAllocDisjoint = [](SmallVectorImpl<Value *> &Objects) {
Sanjay Patel34ea70a2016-01-11 22:24:35 +00002102 return std::all_of(Objects.begin(), Objects.end(), [](Value *V) {
2103 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V))
2104 return AI->getParent() && AI->getFunction() && AI->isStaticAlloca();
2105 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
2106 return (GV->hasLocalLinkage() || GV->hasHiddenVisibility() ||
2107 GV->hasProtectedVisibility() || GV->hasUnnamedAddr()) &&
2108 !GV->isThreadLocal();
2109 if (const Argument *A = dyn_cast<Argument>(V))
2110 return A->hasByValAttr();
2111 return false;
2112 });
Hal Finkelafcd8db2014-12-01 23:38:06 +00002113 };
2114
2115 if ((IsNAC(LHSUObjs) && IsAllocDisjoint(RHSUObjs)) ||
2116 (IsNAC(RHSUObjs) && IsAllocDisjoint(LHSUObjs)))
2117 return ConstantInt::get(GetCompareTy(LHS),
2118 !CmpInst::isTrueWhenEqual(Pred));
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002119 }
2120
2121 // Otherwise, fail.
Craig Topper9f008862014-04-15 04:59:12 +00002122 return nullptr;
Chandler Carruth8059c842012-03-25 21:28:14 +00002123}
Chris Lattner01990f02012-02-24 19:01:58 +00002124
Sanjay Patel472cc782016-01-11 22:14:42 +00002125/// Given operands for an ICmpInst, see if we can fold the result.
2126/// If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00002127static Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00002128 const Query &Q, unsigned MaxRecurse) {
Chris Lattner084a1b52009-11-09 22:57:59 +00002129 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate;
Chris Lattnerc1f19072009-11-09 23:28:39 +00002130 assert(CmpInst::isIntPredicate(Pred) && "Not an integer compare!");
Duncan Sands7e800d62010-11-14 11:23:23 +00002131
Chris Lattnera71e9d62009-11-10 00:55:12 +00002132 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
Chris Lattnercdfb80d2009-11-09 23:06:58 +00002133 if (Constant *CRHS = dyn_cast<Constant>(RHS))
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002134 return ConstantFoldCompareInstOperands(Pred, CLHS, CRHS, Q.DL, Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00002135
2136 // If we have a constant, make sure it is on the RHS.
2137 std::swap(LHS, RHS);
2138 Pred = CmpInst::getSwappedPredicate(Pred);
2139 }
Duncan Sands7e800d62010-11-14 11:23:23 +00002140
Chris Lattner229907c2011-07-18 04:54:35 +00002141 Type *ITy = GetCompareTy(LHS); // The return type.
2142 Type *OpTy = LHS->getType(); // The operand type.
Duncan Sands7e800d62010-11-14 11:23:23 +00002143
Chris Lattnerccfdceb2009-11-09 23:55:12 +00002144 // icmp X, X -> true/false
Chris Lattner3afc0722010-03-03 19:46:03 +00002145 // X icmp undef -> true/false. For example, icmp ugt %X, undef -> false
2146 // because X could be 0.
Duncan Sands772749a2011-01-01 20:08:02 +00002147 if (LHS == RHS || isa<UndefValue>(RHS))
Chris Lattnerccfdceb2009-11-09 23:55:12 +00002148 return ConstantInt::get(ITy, CmpInst::isTrueWhenEqual(Pred));
Duncan Sands7e800d62010-11-14 11:23:23 +00002149
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002150 // Special case logic when the operands have i1 type.
Nick Lewyckye659b842011-12-01 02:39:36 +00002151 if (OpTy->getScalarType()->isIntegerTy(1)) {
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002152 switch (Pred) {
2153 default: break;
2154 case ICmpInst::ICMP_EQ:
2155 // X == 1 -> X
2156 if (match(RHS, m_One()))
2157 return LHS;
2158 break;
2159 case ICmpInst::ICMP_NE:
2160 // X != 0 -> X
2161 if (match(RHS, m_Zero()))
2162 return LHS;
2163 break;
2164 case ICmpInst::ICMP_UGT:
2165 // X >u 0 -> X
2166 if (match(RHS, m_Zero()))
2167 return LHS;
2168 break;
2169 case ICmpInst::ICMP_UGE:
2170 // X >=u 1 -> X
2171 if (match(RHS, m_One()))
2172 return LHS;
Sanjoy Das55ea67c2015-11-06 19:01:08 +00002173 if (isImpliedCondition(RHS, LHS, Q.DL))
Philip Reames13f023c2015-09-28 17:14:24 +00002174 return getTrue(ITy);
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002175 break;
Philip Reamesdbbd7792015-10-29 03:19:10 +00002176 case ICmpInst::ICMP_SGE:
2177 /// For signed comparison, the values for an i1 are 0 and -1
2178 /// respectively. This maps into a truth table of:
2179 /// LHS | RHS | LHS >=s RHS | LHS implies RHS
2180 /// 0 | 0 | 1 (0 >= 0) | 1
2181 /// 0 | 1 | 1 (0 >= -1) | 1
2182 /// 1 | 0 | 0 (-1 >= 0) | 0
2183 /// 1 | 1 | 1 (-1 >= -1) | 1
Sanjoy Das55ea67c2015-11-06 19:01:08 +00002184 if (isImpliedCondition(LHS, RHS, Q.DL))
Philip Reamesdbbd7792015-10-29 03:19:10 +00002185 return getTrue(ITy);
2186 break;
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002187 case ICmpInst::ICMP_SLT:
2188 // X <s 0 -> X
2189 if (match(RHS, m_Zero()))
2190 return LHS;
2191 break;
2192 case ICmpInst::ICMP_SLE:
2193 // X <=s -1 -> X
2194 if (match(RHS, m_One()))
2195 return LHS;
2196 break;
Philip Reames13f023c2015-09-28 17:14:24 +00002197 case ICmpInst::ICMP_ULE:
Sanjoy Das55ea67c2015-11-06 19:01:08 +00002198 if (isImpliedCondition(LHS, RHS, Q.DL))
Philip Reames13f023c2015-09-28 17:14:24 +00002199 return getTrue(ITy);
2200 break;
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002201 }
2202 }
2203
Duncan Sandsd3951082011-01-25 09:38:29 +00002204 // If we are comparing with zero then try hard since this is a common case.
2205 if (match(RHS, m_Zero())) {
2206 bool LHSKnownNonNegative, LHSKnownNegative;
2207 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00002208 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sandsd3951082011-01-25 09:38:29 +00002209 case ICmpInst::ICMP_ULT:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002210 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002211 case ICmpInst::ICMP_UGE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002212 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002213 case ICmpInst::ICMP_EQ:
2214 case ICmpInst::ICMP_ULE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002215 if (isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002216 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002217 break;
2218 case ICmpInst::ICMP_NE:
2219 case ICmpInst::ICMP_UGT:
Chandler Carruth66b31302015-01-04 12:03:27 +00002220 if (isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002221 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002222 break;
2223 case ICmpInst::ICMP_SLT:
Chandler Carruth66b31302015-01-04 12:03:27 +00002224 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC,
2225 Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002226 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002227 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002228 if (LHSKnownNonNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002229 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002230 break;
2231 case ICmpInst::ICMP_SLE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002232 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC,
2233 Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002234 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002235 return getTrue(ITy);
Chandler Carruth66b31302015-01-04 12:03:27 +00002236 if (LHSKnownNonNegative &&
2237 isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002238 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002239 break;
2240 case ICmpInst::ICMP_SGE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002241 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC,
2242 Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002243 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002244 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002245 if (LHSKnownNonNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002246 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002247 break;
2248 case ICmpInst::ICMP_SGT:
Chandler Carruth66b31302015-01-04 12:03:27 +00002249 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC,
2250 Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002251 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002252 return getFalse(ITy);
Chandler Carruth66b31302015-01-04 12:03:27 +00002253 if (LHSKnownNonNegative &&
2254 isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002255 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002256 break;
2257 }
2258 }
2259
2260 // See if we are doing a comparison with a constant integer.
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002261 if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002262 // Rule out tautological comparisons (eg., ult 0 or uge 0).
2263 ConstantRange RHS_CR = ICmpInst::makeConstantRange(Pred, CI->getValue());
2264 if (RHS_CR.isEmptySet())
2265 return ConstantInt::getFalse(CI->getContext());
2266 if (RHS_CR.isFullSet())
2267 return ConstantInt::getTrue(CI->getContext());
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002268
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002269 // Many binary operators with constant RHS have easy to compute constant
2270 // range. Use them to check whether the comparison is a tautology.
David Majnemer78910fc2014-05-16 17:14:03 +00002271 unsigned Width = CI->getBitWidth();
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002272 APInt Lower = APInt(Width, 0);
2273 APInt Upper = APInt(Width, 0);
2274 ConstantInt *CI2;
2275 if (match(LHS, m_URem(m_Value(), m_ConstantInt(CI2)))) {
2276 // 'urem x, CI2' produces [0, CI2).
2277 Upper = CI2->getValue();
2278 } else if (match(LHS, m_SRem(m_Value(), m_ConstantInt(CI2)))) {
2279 // 'srem x, CI2' produces (-|CI2|, |CI2|).
2280 Upper = CI2->getValue().abs();
2281 Lower = (-Upper) + 1;
Duncan Sands92af0a82011-10-28 18:17:44 +00002282 } else if (match(LHS, m_UDiv(m_ConstantInt(CI2), m_Value()))) {
2283 // 'udiv CI2, x' produces [0, CI2].
Eli Friedman0bae8b22011-11-08 21:08:02 +00002284 Upper = CI2->getValue() + 1;
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002285 } else if (match(LHS, m_UDiv(m_Value(), m_ConstantInt(CI2)))) {
2286 // 'udiv x, CI2' produces [0, UINT_MAX / CI2].
2287 APInt NegOne = APInt::getAllOnesValue(Width);
2288 if (!CI2->isZero())
2289 Upper = NegOne.udiv(CI2->getValue()) + 1;
David Majnemerea8d5db2014-05-16 16:57:04 +00002290 } else if (match(LHS, m_SDiv(m_ConstantInt(CI2), m_Value()))) {
David Majnemer651ed5e2014-07-04 00:23:39 +00002291 if (CI2->isMinSignedValue()) {
2292 // 'sdiv INT_MIN, x' produces [INT_MIN, INT_MIN / -2].
2293 Lower = CI2->getValue();
2294 Upper = Lower.lshr(1) + 1;
2295 } else {
2296 // 'sdiv CI2, x' produces [-|CI2|, |CI2|].
2297 Upper = CI2->getValue().abs() + 1;
2298 Lower = (-Upper) + 1;
2299 }
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002300 } else if (match(LHS, m_SDiv(m_Value(), m_ConstantInt(CI2)))) {
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002301 APInt IntMin = APInt::getSignedMinValue(Width);
2302 APInt IntMax = APInt::getSignedMaxValue(Width);
David Majnemeraf9180f2014-07-14 20:38:45 +00002303 APInt Val = CI2->getValue();
2304 if (Val.isAllOnesValue()) {
2305 // 'sdiv x, -1' produces [INT_MIN + 1, INT_MAX]
2306 // where CI2 != -1 and CI2 != 0 and CI2 != 1
2307 Lower = IntMin + 1;
2308 Upper = IntMax + 1;
2309 } else if (Val.countLeadingZeros() < Width - 1) {
2310 // 'sdiv x, CI2' produces [INT_MIN / CI2, INT_MAX / CI2]
2311 // where CI2 != -1 and CI2 != 0 and CI2 != 1
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002312 Lower = IntMin.sdiv(Val);
David Majnemeraf9180f2014-07-14 20:38:45 +00002313 Upper = IntMax.sdiv(Val);
2314 if (Lower.sgt(Upper))
2315 std::swap(Lower, Upper);
2316 Upper = Upper + 1;
David Majnemer5ea4fc02014-07-14 19:49:57 +00002317 assert(Upper != Lower && "Upper part of range has wrapped!");
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002318 }
David Majnemerd6d16712014-08-27 18:03:46 +00002319 } else if (match(LHS, m_NUWShl(m_ConstantInt(CI2), m_Value()))) {
2320 // 'shl nuw CI2, x' produces [CI2, CI2 << CLZ(CI2)]
2321 Lower = CI2->getValue();
2322 Upper = Lower.shl(Lower.countLeadingZeros()) + 1;
2323 } else if (match(LHS, m_NSWShl(m_ConstantInt(CI2), m_Value()))) {
2324 if (CI2->isNegative()) {
2325 // 'shl nsw CI2, x' produces [CI2 << CLO(CI2)-1, CI2]
2326 unsigned ShiftAmount = CI2->getValue().countLeadingOnes() - 1;
2327 Lower = CI2->getValue().shl(ShiftAmount);
2328 Upper = CI2->getValue() + 1;
2329 } else {
2330 // 'shl nsw CI2, x' produces [CI2, CI2 << CLZ(CI2)-1]
2331 unsigned ShiftAmount = CI2->getValue().countLeadingZeros() - 1;
2332 Lower = CI2->getValue();
2333 Upper = CI2->getValue().shl(ShiftAmount) + 1;
2334 }
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002335 } else if (match(LHS, m_LShr(m_Value(), m_ConstantInt(CI2)))) {
2336 // 'lshr x, CI2' produces [0, UINT_MAX >> CI2].
2337 APInt NegOne = APInt::getAllOnesValue(Width);
2338 if (CI2->getValue().ult(Width))
2339 Upper = NegOne.lshr(CI2->getValue()) + 1;
David Majnemer78910fc2014-05-16 17:14:03 +00002340 } else if (match(LHS, m_LShr(m_ConstantInt(CI2), m_Value()))) {
2341 // 'lshr CI2, x' produces [CI2 >> (Width-1), CI2].
2342 unsigned ShiftAmount = Width - 1;
2343 if (!CI2->isZero() && cast<BinaryOperator>(LHS)->isExact())
2344 ShiftAmount = CI2->getValue().countTrailingZeros();
2345 Lower = CI2->getValue().lshr(ShiftAmount);
2346 Upper = CI2->getValue() + 1;
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002347 } else if (match(LHS, m_AShr(m_Value(), m_ConstantInt(CI2)))) {
2348 // 'ashr x, CI2' produces [INT_MIN >> CI2, INT_MAX >> CI2].
2349 APInt IntMin = APInt::getSignedMinValue(Width);
2350 APInt IntMax = APInt::getSignedMaxValue(Width);
2351 if (CI2->getValue().ult(Width)) {
2352 Lower = IntMin.ashr(CI2->getValue());
2353 Upper = IntMax.ashr(CI2->getValue()) + 1;
2354 }
David Majnemer78910fc2014-05-16 17:14:03 +00002355 } else if (match(LHS, m_AShr(m_ConstantInt(CI2), m_Value()))) {
2356 unsigned ShiftAmount = Width - 1;
2357 if (!CI2->isZero() && cast<BinaryOperator>(LHS)->isExact())
2358 ShiftAmount = CI2->getValue().countTrailingZeros();
2359 if (CI2->isNegative()) {
2360 // 'ashr CI2, x' produces [CI2, CI2 >> (Width-1)]
2361 Lower = CI2->getValue();
2362 Upper = CI2->getValue().ashr(ShiftAmount) + 1;
2363 } else {
2364 // 'ashr CI2, x' produces [CI2 >> (Width-1), CI2]
2365 Lower = CI2->getValue().ashr(ShiftAmount);
2366 Upper = CI2->getValue() + 1;
2367 }
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002368 } else if (match(LHS, m_Or(m_Value(), m_ConstantInt(CI2)))) {
2369 // 'or x, CI2' produces [CI2, UINT_MAX].
2370 Lower = CI2->getValue();
2371 } else if (match(LHS, m_And(m_Value(), m_ConstantInt(CI2)))) {
2372 // 'and x, CI2' produces [0, CI2].
2373 Upper = CI2->getValue() + 1;
David Majnemer2df38cd2015-08-20 23:01:41 +00002374 } else if (match(LHS, m_NUWAdd(m_Value(), m_ConstantInt(CI2)))) {
2375 // 'add nuw x, CI2' produces [CI2, UINT_MAX].
2376 Lower = CI2->getValue();
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002377 }
Chen Li5cd6dee2015-09-23 17:58:44 +00002378
2379 ConstantRange LHS_CR = Lower != Upper ? ConstantRange(Lower, Upper)
2380 : ConstantRange(Width, true);
2381
2382 if (auto *I = dyn_cast<Instruction>(LHS))
2383 if (auto *Ranges = I->getMetadata(LLVMContext::MD_range))
Sanjoy Dasa7e13782015-10-24 05:37:35 +00002384 LHS_CR = LHS_CR.intersectWith(getConstantRangeFromMetadata(*Ranges));
Chen Li5cd6dee2015-09-23 17:58:44 +00002385
2386 if (!LHS_CR.isFullSet()) {
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002387 if (RHS_CR.contains(LHS_CR))
2388 return ConstantInt::getTrue(RHS->getContext());
2389 if (RHS_CR.inverse().contains(LHS_CR))
2390 return ConstantInt::getFalse(RHS->getContext());
2391 }
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002392 }
2393
Chen Li7452d952015-09-26 03:26:47 +00002394 // If both operands have range metadata, use the metadata
2395 // to simplify the comparison.
2396 if (isa<Instruction>(RHS) && isa<Instruction>(LHS)) {
2397 auto RHS_Instr = dyn_cast<Instruction>(RHS);
2398 auto LHS_Instr = dyn_cast<Instruction>(LHS);
2399
2400 if (RHS_Instr->getMetadata(LLVMContext::MD_range) &&
2401 LHS_Instr->getMetadata(LLVMContext::MD_range)) {
Sanjoy Dasa7e13782015-10-24 05:37:35 +00002402 auto RHS_CR = getConstantRangeFromMetadata(
2403 *RHS_Instr->getMetadata(LLVMContext::MD_range));
2404 auto LHS_CR = getConstantRangeFromMetadata(
2405 *LHS_Instr->getMetadata(LLVMContext::MD_range));
Chen Li7452d952015-09-26 03:26:47 +00002406
2407 auto Satisfied_CR = ConstantRange::makeSatisfyingICmpRegion(Pred, RHS_CR);
2408 if (Satisfied_CR.contains(LHS_CR))
2409 return ConstantInt::getTrue(RHS->getContext());
2410
2411 auto InversedSatisfied_CR = ConstantRange::makeSatisfyingICmpRegion(
2412 CmpInst::getInversePredicate(Pred), RHS_CR);
2413 if (InversedSatisfied_CR.contains(LHS_CR))
2414 return ConstantInt::getFalse(RHS->getContext());
2415 }
2416 }
2417
Duncan Sands8fb2c382011-01-20 13:21:55 +00002418 // Compare of cast, for example (zext X) != 0 -> X != 0
2419 if (isa<CastInst>(LHS) && (isa<Constant>(RHS) || isa<CastInst>(RHS))) {
2420 Instruction *LI = cast<CastInst>(LHS);
2421 Value *SrcOp = LI->getOperand(0);
Chris Lattner229907c2011-07-18 04:54:35 +00002422 Type *SrcTy = SrcOp->getType();
2423 Type *DstTy = LI->getType();
Duncan Sands8fb2c382011-01-20 13:21:55 +00002424
2425 // Turn icmp (ptrtoint x), (ptrtoint/constant) into a compare of the input
2426 // if the integer type is the same size as the pointer type.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002427 if (MaxRecurse && isa<PtrToIntInst>(LI) &&
2428 Q.DL.getTypeSizeInBits(SrcTy) == DstTy->getPrimitiveSizeInBits()) {
Duncan Sands8fb2c382011-01-20 13:21:55 +00002429 if (Constant *RHSC = dyn_cast<Constant>(RHS)) {
2430 // Transfer the cast to the constant.
2431 if (Value *V = SimplifyICmpInst(Pred, SrcOp,
2432 ConstantExpr::getIntToPtr(RHSC, SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002433 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002434 return V;
2435 } else if (PtrToIntInst *RI = dyn_cast<PtrToIntInst>(RHS)) {
2436 if (RI->getOperand(0)->getType() == SrcTy)
2437 // Compare without the cast.
2438 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002439 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002440 return V;
2441 }
2442 }
2443
2444 if (isa<ZExtInst>(LHS)) {
2445 // Turn icmp (zext X), (zext Y) into a compare of X and Y if they have the
2446 // same type.
2447 if (ZExtInst *RI = dyn_cast<ZExtInst>(RHS)) {
2448 if (MaxRecurse && SrcTy == RI->getOperand(0)->getType())
2449 // Compare X and Y. Note that signed predicates become unsigned.
2450 if (Value *V = SimplifyICmpInst(ICmpInst::getUnsignedPredicate(Pred),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002451 SrcOp, RI->getOperand(0), Q,
Duncan Sands8fb2c382011-01-20 13:21:55 +00002452 MaxRecurse-1))
2453 return V;
2454 }
2455 // Turn icmp (zext X), Cst into a compare of X and Cst if Cst is extended
2456 // too. If not, then try to deduce the result of the comparison.
2457 else if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
2458 // Compute the constant that would happen if we truncated to SrcTy then
2459 // reextended to DstTy.
2460 Constant *Trunc = ConstantExpr::getTrunc(CI, SrcTy);
2461 Constant *RExt = ConstantExpr::getCast(CastInst::ZExt, Trunc, DstTy);
2462
2463 // If the re-extended constant didn't change then this is effectively
2464 // also a case of comparing two zero-extended values.
2465 if (RExt == CI && MaxRecurse)
2466 if (Value *V = SimplifyICmpInst(ICmpInst::getUnsignedPredicate(Pred),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002467 SrcOp, Trunc, Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002468 return V;
2469
2470 // Otherwise the upper bits of LHS are zero while RHS has a non-zero bit
2471 // there. Use this to work out the result of the comparison.
2472 if (RExt != CI) {
2473 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00002474 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sands8fb2c382011-01-20 13:21:55 +00002475 // LHS <u RHS.
2476 case ICmpInst::ICMP_EQ:
2477 case ICmpInst::ICMP_UGT:
2478 case ICmpInst::ICMP_UGE:
2479 return ConstantInt::getFalse(CI->getContext());
2480
2481 case ICmpInst::ICMP_NE:
2482 case ICmpInst::ICMP_ULT:
2483 case ICmpInst::ICMP_ULE:
2484 return ConstantInt::getTrue(CI->getContext());
2485
2486 // LHS is non-negative. If RHS is negative then LHS >s LHS. If RHS
2487 // is non-negative then LHS <s RHS.
2488 case ICmpInst::ICMP_SGT:
2489 case ICmpInst::ICMP_SGE:
2490 return CI->getValue().isNegative() ?
2491 ConstantInt::getTrue(CI->getContext()) :
2492 ConstantInt::getFalse(CI->getContext());
2493
2494 case ICmpInst::ICMP_SLT:
2495 case ICmpInst::ICMP_SLE:
2496 return CI->getValue().isNegative() ?
2497 ConstantInt::getFalse(CI->getContext()) :
2498 ConstantInt::getTrue(CI->getContext());
2499 }
2500 }
2501 }
2502 }
2503
2504 if (isa<SExtInst>(LHS)) {
2505 // Turn icmp (sext X), (sext Y) into a compare of X and Y if they have the
2506 // same type.
2507 if (SExtInst *RI = dyn_cast<SExtInst>(RHS)) {
2508 if (MaxRecurse && SrcTy == RI->getOperand(0)->getType())
2509 // Compare X and Y. Note that the predicate does not change.
2510 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002511 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002512 return V;
2513 }
2514 // Turn icmp (sext X), Cst into a compare of X and Cst if Cst is extended
2515 // too. If not, then try to deduce the result of the comparison.
2516 else if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
2517 // Compute the constant that would happen if we truncated to SrcTy then
2518 // reextended to DstTy.
2519 Constant *Trunc = ConstantExpr::getTrunc(CI, SrcTy);
2520 Constant *RExt = ConstantExpr::getCast(CastInst::SExt, Trunc, DstTy);
2521
2522 // If the re-extended constant didn't change then this is effectively
2523 // also a case of comparing two sign-extended values.
2524 if (RExt == CI && MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002525 if (Value *V = SimplifyICmpInst(Pred, SrcOp, Trunc, Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002526 return V;
2527
2528 // Otherwise the upper bits of LHS are all equal, while RHS has varying
2529 // bits there. Use this to work out the result of the comparison.
2530 if (RExt != CI) {
2531 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00002532 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sands8fb2c382011-01-20 13:21:55 +00002533 case ICmpInst::ICMP_EQ:
2534 return ConstantInt::getFalse(CI->getContext());
2535 case ICmpInst::ICMP_NE:
2536 return ConstantInt::getTrue(CI->getContext());
2537
2538 // If RHS is non-negative then LHS <s RHS. If RHS is negative then
2539 // LHS >s RHS.
2540 case ICmpInst::ICMP_SGT:
2541 case ICmpInst::ICMP_SGE:
2542 return CI->getValue().isNegative() ?
2543 ConstantInt::getTrue(CI->getContext()) :
2544 ConstantInt::getFalse(CI->getContext());
2545 case ICmpInst::ICMP_SLT:
2546 case ICmpInst::ICMP_SLE:
2547 return CI->getValue().isNegative() ?
2548 ConstantInt::getFalse(CI->getContext()) :
2549 ConstantInt::getTrue(CI->getContext());
2550
2551 // If LHS is non-negative then LHS <u RHS. If LHS is negative then
2552 // LHS >u RHS.
2553 case ICmpInst::ICMP_UGT:
2554 case ICmpInst::ICMP_UGE:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002555 // Comparison is true iff the LHS <s 0.
Duncan Sands8fb2c382011-01-20 13:21:55 +00002556 if (MaxRecurse)
2557 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SLT, SrcOp,
2558 Constant::getNullValue(SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002559 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002560 return V;
2561 break;
2562 case ICmpInst::ICMP_ULT:
2563 case ICmpInst::ICMP_ULE:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002564 // Comparison is true iff the LHS >=s 0.
Duncan Sands8fb2c382011-01-20 13:21:55 +00002565 if (MaxRecurse)
2566 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SGE, SrcOp,
2567 Constant::getNullValue(SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002568 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002569 return V;
2570 break;
2571 }
2572 }
2573 }
2574 }
2575 }
2576
James Molloy1d88d6f2015-10-22 13:18:42 +00002577 // icmp eq|ne X, Y -> false|true if X != Y
2578 if ((Pred == ICmpInst::ICMP_EQ || Pred == ICmpInst::ICMP_NE) &&
2579 isKnownNonEqual(LHS, RHS, Q.DL, Q.AC, Q.CxtI, Q.DT)) {
2580 LLVMContext &Ctx = LHS->getType()->getContext();
2581 return Pred == ICmpInst::ICMP_NE ?
2582 ConstantInt::getTrue(Ctx) : ConstantInt::getFalse(Ctx);
2583 }
2584
Duncan Sandsd114ab32011-02-13 17:15:40 +00002585 // Special logic for binary operators.
2586 BinaryOperator *LBO = dyn_cast<BinaryOperator>(LHS);
2587 BinaryOperator *RBO = dyn_cast<BinaryOperator>(RHS);
2588 if (MaxRecurse && (LBO || RBO)) {
Duncan Sandsd114ab32011-02-13 17:15:40 +00002589 // Analyze the case when either LHS or RHS is an add instruction.
Craig Topper9f008862014-04-15 04:59:12 +00002590 Value *A = nullptr, *B = nullptr, *C = nullptr, *D = nullptr;
Duncan Sandsd114ab32011-02-13 17:15:40 +00002591 // LHS = A + B (or A and B are null); RHS = C + D (or C and D are null).
2592 bool NoLHSWrapProblem = false, NoRHSWrapProblem = false;
2593 if (LBO && LBO->getOpcode() == Instruction::Add) {
2594 A = LBO->getOperand(0); B = LBO->getOperand(1);
2595 NoLHSWrapProblem = ICmpInst::isEquality(Pred) ||
2596 (CmpInst::isUnsigned(Pred) && LBO->hasNoUnsignedWrap()) ||
2597 (CmpInst::isSigned(Pred) && LBO->hasNoSignedWrap());
2598 }
2599 if (RBO && RBO->getOpcode() == Instruction::Add) {
2600 C = RBO->getOperand(0); D = RBO->getOperand(1);
2601 NoRHSWrapProblem = ICmpInst::isEquality(Pred) ||
2602 (CmpInst::isUnsigned(Pred) && RBO->hasNoUnsignedWrap()) ||
2603 (CmpInst::isSigned(Pred) && RBO->hasNoSignedWrap());
2604 }
2605
2606 // icmp (X+Y), X -> icmp Y, 0 for equalities or if there is no overflow.
2607 if ((A == RHS || B == RHS) && NoLHSWrapProblem)
2608 if (Value *V = SimplifyICmpInst(Pred, A == RHS ? B : A,
2609 Constant::getNullValue(RHS->getType()),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002610 Q, MaxRecurse-1))
Duncan Sandsd114ab32011-02-13 17:15:40 +00002611 return V;
2612
2613 // icmp X, (X+Y) -> icmp 0, Y for equalities or if there is no overflow.
2614 if ((C == LHS || D == LHS) && NoRHSWrapProblem)
2615 if (Value *V = SimplifyICmpInst(Pred,
2616 Constant::getNullValue(LHS->getType()),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002617 C == LHS ? D : C, Q, MaxRecurse-1))
Duncan Sandsd114ab32011-02-13 17:15:40 +00002618 return V;
2619
2620 // icmp (X+Y), (X+Z) -> icmp Y,Z for equalities or if there is no overflow.
2621 if (A && C && (A == C || A == D || B == C || B == D) &&
2622 NoLHSWrapProblem && NoRHSWrapProblem) {
2623 // Determine Y and Z in the form icmp (X+Y), (X+Z).
Duncan Sandsc41076c2012-11-16 19:41:26 +00002624 Value *Y, *Z;
2625 if (A == C) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002626 // C + B == C + D -> B == D
Duncan Sandsc41076c2012-11-16 19:41:26 +00002627 Y = B;
2628 Z = D;
2629 } else if (A == D) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002630 // D + B == C + D -> B == C
Duncan Sandsc41076c2012-11-16 19:41:26 +00002631 Y = B;
2632 Z = C;
2633 } else if (B == C) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002634 // A + C == C + D -> A == D
Duncan Sandsc41076c2012-11-16 19:41:26 +00002635 Y = A;
2636 Z = D;
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002637 } else {
2638 assert(B == D);
2639 // A + D == C + D -> A == C
Duncan Sandsc41076c2012-11-16 19:41:26 +00002640 Y = A;
2641 Z = C;
2642 }
Duncan Sandsb8cee002012-03-13 11:42:19 +00002643 if (Value *V = SimplifyICmpInst(Pred, Y, Z, Q, MaxRecurse-1))
Duncan Sandsd114ab32011-02-13 17:15:40 +00002644 return V;
2645 }
2646 }
2647
David Majnemerbd9ce4e2014-11-25 02:55:48 +00002648 // icmp pred (or X, Y), X
2649 if (LBO && match(LBO, m_CombineOr(m_Or(m_Value(), m_Specific(RHS)),
2650 m_Or(m_Specific(RHS), m_Value())))) {
2651 if (Pred == ICmpInst::ICMP_ULT)
2652 return getFalse(ITy);
2653 if (Pred == ICmpInst::ICMP_UGE)
2654 return getTrue(ITy);
2655 }
2656 // icmp pred X, (or X, Y)
2657 if (RBO && match(RBO, m_CombineOr(m_Or(m_Value(), m_Specific(LHS)),
2658 m_Or(m_Specific(LHS), m_Value())))) {
2659 if (Pred == ICmpInst::ICMP_ULE)
2660 return getTrue(ITy);
2661 if (Pred == ICmpInst::ICMP_UGT)
2662 return getFalse(ITy);
2663 }
2664
2665 // icmp pred (and X, Y), X
2666 if (LBO && match(LBO, m_CombineOr(m_And(m_Value(), m_Specific(RHS)),
2667 m_And(m_Specific(RHS), m_Value())))) {
2668 if (Pred == ICmpInst::ICMP_UGT)
2669 return getFalse(ITy);
2670 if (Pred == ICmpInst::ICMP_ULE)
2671 return getTrue(ITy);
2672 }
2673 // icmp pred X, (and X, Y)
2674 if (RBO && match(RBO, m_CombineOr(m_And(m_Value(), m_Specific(LHS)),
2675 m_And(m_Specific(LHS), m_Value())))) {
2676 if (Pred == ICmpInst::ICMP_UGE)
2677 return getTrue(ITy);
2678 if (Pred == ICmpInst::ICMP_ULT)
2679 return getFalse(ITy);
2680 }
2681
David Majnemer2d6c0232014-05-14 20:16:28 +00002682 // 0 - (zext X) pred C
2683 if (!CmpInst::isUnsigned(Pred) && match(LHS, m_Neg(m_ZExt(m_Value())))) {
2684 if (ConstantInt *RHSC = dyn_cast<ConstantInt>(RHS)) {
2685 if (RHSC->getValue().isStrictlyPositive()) {
2686 if (Pred == ICmpInst::ICMP_SLT)
2687 return ConstantInt::getTrue(RHSC->getContext());
2688 if (Pred == ICmpInst::ICMP_SGE)
2689 return ConstantInt::getFalse(RHSC->getContext());
2690 if (Pred == ICmpInst::ICMP_EQ)
2691 return ConstantInt::getFalse(RHSC->getContext());
2692 if (Pred == ICmpInst::ICMP_NE)
2693 return ConstantInt::getTrue(RHSC->getContext());
2694 }
2695 if (RHSC->getValue().isNonNegative()) {
2696 if (Pred == ICmpInst::ICMP_SLE)
2697 return ConstantInt::getTrue(RHSC->getContext());
2698 if (Pred == ICmpInst::ICMP_SGT)
2699 return ConstantInt::getFalse(RHSC->getContext());
2700 }
2701 }
2702 }
2703
Nick Lewycky35aeea92013-07-12 23:42:57 +00002704 // icmp pred (urem X, Y), Y
Nick Lewycky980104d2011-03-09 06:26:03 +00002705 if (LBO && match(LBO, m_URem(m_Value(), m_Specific(RHS)))) {
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002706 bool KnownNonNegative, KnownNegative;
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002707 switch (Pred) {
2708 default:
2709 break;
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002710 case ICmpInst::ICMP_SGT:
2711 case ICmpInst::ICMP_SGE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002712 ComputeSignBit(RHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC,
2713 Q.CxtI, Q.DT);
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002714 if (!KnownNonNegative)
2715 break;
2716 // fall-through
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002717 case ICmpInst::ICMP_EQ:
2718 case ICmpInst::ICMP_UGT:
2719 case ICmpInst::ICMP_UGE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002720 return getFalse(ITy);
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002721 case ICmpInst::ICMP_SLT:
2722 case ICmpInst::ICMP_SLE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002723 ComputeSignBit(RHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC,
2724 Q.CxtI, Q.DT);
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002725 if (!KnownNonNegative)
2726 break;
2727 // fall-through
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002728 case ICmpInst::ICMP_NE:
2729 case ICmpInst::ICMP_ULT:
2730 case ICmpInst::ICMP_ULE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002731 return getTrue(ITy);
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002732 }
2733 }
Nick Lewycky35aeea92013-07-12 23:42:57 +00002734
2735 // icmp pred X, (urem Y, X)
Nick Lewycky980104d2011-03-09 06:26:03 +00002736 if (RBO && match(RBO, m_URem(m_Value(), m_Specific(LHS)))) {
2737 bool KnownNonNegative, KnownNegative;
2738 switch (Pred) {
2739 default:
2740 break;
2741 case ICmpInst::ICMP_SGT:
2742 case ICmpInst::ICMP_SGE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002743 ComputeSignBit(LHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC,
2744 Q.CxtI, Q.DT);
Nick Lewycky980104d2011-03-09 06:26:03 +00002745 if (!KnownNonNegative)
2746 break;
2747 // fall-through
Nick Lewycky774647d2011-03-09 08:20:06 +00002748 case ICmpInst::ICMP_NE:
Nick Lewycky980104d2011-03-09 06:26:03 +00002749 case ICmpInst::ICMP_UGT:
2750 case ICmpInst::ICMP_UGE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002751 return getTrue(ITy);
Nick Lewycky980104d2011-03-09 06:26:03 +00002752 case ICmpInst::ICMP_SLT:
2753 case ICmpInst::ICMP_SLE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002754 ComputeSignBit(LHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC,
2755 Q.CxtI, Q.DT);
Nick Lewycky980104d2011-03-09 06:26:03 +00002756 if (!KnownNonNegative)
2757 break;
2758 // fall-through
Nick Lewycky774647d2011-03-09 08:20:06 +00002759 case ICmpInst::ICMP_EQ:
Nick Lewycky980104d2011-03-09 06:26:03 +00002760 case ICmpInst::ICMP_ULT:
2761 case ICmpInst::ICMP_ULE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002762 return getFalse(ITy);
Nick Lewycky980104d2011-03-09 06:26:03 +00002763 }
2764 }
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002765
Duncan Sands92af0a82011-10-28 18:17:44 +00002766 // x udiv y <=u x.
2767 if (LBO && match(LBO, m_UDiv(m_Specific(RHS), m_Value()))) {
2768 // icmp pred (X /u Y), X
2769 if (Pred == ICmpInst::ICMP_UGT)
2770 return getFalse(ITy);
2771 if (Pred == ICmpInst::ICMP_ULE)
2772 return getTrue(ITy);
2773 }
2774
David Majnemer76d06bc2014-08-28 03:34:28 +00002775 // handle:
2776 // CI2 << X == CI
2777 // CI2 << X != CI
2778 //
2779 // where CI2 is a power of 2 and CI isn't
2780 if (auto *CI = dyn_cast<ConstantInt>(RHS)) {
2781 const APInt *CI2Val, *CIVal = &CI->getValue();
2782 if (LBO && match(LBO, m_Shl(m_APInt(CI2Val), m_Value())) &&
2783 CI2Val->isPowerOf2()) {
2784 if (!CIVal->isPowerOf2()) {
2785 // CI2 << X can equal zero in some circumstances,
2786 // this simplification is unsafe if CI is zero.
2787 //
2788 // We know it is safe if:
2789 // - The shift is nsw, we can't shift out the one bit.
2790 // - The shift is nuw, we can't shift out the one bit.
2791 // - CI2 is one
2792 // - CI isn't zero
2793 if (LBO->hasNoSignedWrap() || LBO->hasNoUnsignedWrap() ||
2794 *CI2Val == 1 || !CI->isZero()) {
2795 if (Pred == ICmpInst::ICMP_EQ)
2796 return ConstantInt::getFalse(RHS->getContext());
2797 if (Pred == ICmpInst::ICMP_NE)
2798 return ConstantInt::getTrue(RHS->getContext());
2799 }
2800 }
2801 if (CIVal->isSignBit() && *CI2Val == 1) {
2802 if (Pred == ICmpInst::ICMP_UGT)
2803 return ConstantInt::getFalse(RHS->getContext());
2804 if (Pred == ICmpInst::ICMP_ULE)
2805 return ConstantInt::getTrue(RHS->getContext());
2806 }
2807 }
2808 }
2809
Nick Lewycky9719a712011-03-05 05:19:11 +00002810 if (MaxRecurse && LBO && RBO && LBO->getOpcode() == RBO->getOpcode() &&
2811 LBO->getOperand(1) == RBO->getOperand(1)) {
2812 switch (LBO->getOpcode()) {
2813 default: break;
2814 case Instruction::UDiv:
2815 case Instruction::LShr:
2816 if (ICmpInst::isSigned(Pred))
2817 break;
2818 // fall-through
2819 case Instruction::SDiv:
2820 case Instruction::AShr:
Eli Friedman8a20e662011-05-05 21:59:18 +00002821 if (!LBO->isExact() || !RBO->isExact())
Nick Lewycky9719a712011-03-05 05:19:11 +00002822 break;
2823 if (Value *V = SimplifyICmpInst(Pred, LBO->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002824 RBO->getOperand(0), Q, MaxRecurse-1))
Nick Lewycky9719a712011-03-05 05:19:11 +00002825 return V;
2826 break;
2827 case Instruction::Shl: {
Duncan Sands020c1942011-08-04 10:02:21 +00002828 bool NUW = LBO->hasNoUnsignedWrap() && RBO->hasNoUnsignedWrap();
Nick Lewycky9719a712011-03-05 05:19:11 +00002829 bool NSW = LBO->hasNoSignedWrap() && RBO->hasNoSignedWrap();
2830 if (!NUW && !NSW)
2831 break;
2832 if (!NSW && ICmpInst::isSigned(Pred))
2833 break;
2834 if (Value *V = SimplifyICmpInst(Pred, LBO->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002835 RBO->getOperand(0), Q, MaxRecurse-1))
Nick Lewycky9719a712011-03-05 05:19:11 +00002836 return V;
2837 break;
2838 }
2839 }
2840 }
2841
Duncan Sands0a9c1242011-05-03 19:53:10 +00002842 // Simplify comparisons involving max/min.
2843 Value *A, *B;
2844 CmpInst::Predicate P = CmpInst::BAD_ICMP_PREDICATE;
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002845 CmpInst::Predicate EqP; // Chosen so that "A == max/min(A,B)" iff "A EqP B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002846
Duncan Sandsa2287852011-05-04 16:05:05 +00002847 // Signed variants on "max(a,b)>=a -> true".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002848 if (match(LHS, m_SMax(m_Value(A), m_Value(B))) && (A == RHS || B == RHS)) {
2849 if (A != RHS) std::swap(A, B); // smax(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002850 EqP = CmpInst::ICMP_SGE; // "A == smax(A, B)" iff "A sge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002851 // We analyze this as smax(A, B) pred A.
2852 P = Pred;
2853 } else if (match(RHS, m_SMax(m_Value(A), m_Value(B))) &&
2854 (A == LHS || B == LHS)) {
2855 if (A != LHS) std::swap(A, B); // A pred smax(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002856 EqP = CmpInst::ICMP_SGE; // "A == smax(A, B)" iff "A sge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002857 // We analyze this as smax(A, B) swapped-pred A.
2858 P = CmpInst::getSwappedPredicate(Pred);
2859 } else if (match(LHS, m_SMin(m_Value(A), m_Value(B))) &&
2860 (A == RHS || B == RHS)) {
2861 if (A != RHS) std::swap(A, B); // smin(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002862 EqP = CmpInst::ICMP_SLE; // "A == smin(A, B)" iff "A sle B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002863 // We analyze this as smax(-A, -B) swapped-pred -A.
2864 // Note that we do not need to actually form -A or -B thanks to EqP.
2865 P = CmpInst::getSwappedPredicate(Pred);
2866 } else if (match(RHS, m_SMin(m_Value(A), m_Value(B))) &&
2867 (A == LHS || B == LHS)) {
2868 if (A != LHS) std::swap(A, B); // A pred smin(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002869 EqP = CmpInst::ICMP_SLE; // "A == smin(A, B)" iff "A sle B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002870 // We analyze this as smax(-A, -B) pred -A.
2871 // Note that we do not need to actually form -A or -B thanks to EqP.
2872 P = Pred;
2873 }
2874 if (P != CmpInst::BAD_ICMP_PREDICATE) {
2875 // Cases correspond to "max(A, B) p A".
2876 switch (P) {
2877 default:
2878 break;
2879 case CmpInst::ICMP_EQ:
2880 case CmpInst::ICMP_SLE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002881 // Equivalent to "A EqP B". This may be the same as the condition tested
2882 // in the max/min; if so, we can just return that.
2883 if (Value *V = ExtractEquivalentCondition(LHS, EqP, A, B))
2884 return V;
2885 if (Value *V = ExtractEquivalentCondition(RHS, EqP, A, B))
2886 return V;
2887 // Otherwise, see if "A EqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002888 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002889 if (Value *V = SimplifyICmpInst(EqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002890 return V;
2891 break;
2892 case CmpInst::ICMP_NE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002893 case CmpInst::ICMP_SGT: {
2894 CmpInst::Predicate InvEqP = CmpInst::getInversePredicate(EqP);
2895 // Equivalent to "A InvEqP B". This may be the same as the condition
2896 // tested in the max/min; if so, we can just return that.
2897 if (Value *V = ExtractEquivalentCondition(LHS, InvEqP, A, B))
2898 return V;
2899 if (Value *V = ExtractEquivalentCondition(RHS, InvEqP, A, B))
2900 return V;
2901 // Otherwise, see if "A InvEqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002902 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002903 if (Value *V = SimplifyICmpInst(InvEqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002904 return V;
2905 break;
Duncan Sandsaf327282011-05-07 16:56:49 +00002906 }
Duncan Sands0a9c1242011-05-03 19:53:10 +00002907 case CmpInst::ICMP_SGE:
2908 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002909 return getTrue(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002910 case CmpInst::ICMP_SLT:
2911 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002912 return getFalse(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002913 }
2914 }
2915
Duncan Sandsa2287852011-05-04 16:05:05 +00002916 // Unsigned variants on "max(a,b)>=a -> true".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002917 P = CmpInst::BAD_ICMP_PREDICATE;
2918 if (match(LHS, m_UMax(m_Value(A), m_Value(B))) && (A == RHS || B == RHS)) {
2919 if (A != RHS) std::swap(A, B); // umax(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002920 EqP = CmpInst::ICMP_UGE; // "A == umax(A, B)" iff "A uge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002921 // We analyze this as umax(A, B) pred A.
2922 P = Pred;
2923 } else if (match(RHS, m_UMax(m_Value(A), m_Value(B))) &&
2924 (A == LHS || B == LHS)) {
2925 if (A != LHS) std::swap(A, B); // A pred umax(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002926 EqP = CmpInst::ICMP_UGE; // "A == umax(A, B)" iff "A uge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002927 // We analyze this as umax(A, B) swapped-pred A.
2928 P = CmpInst::getSwappedPredicate(Pred);
2929 } else if (match(LHS, m_UMin(m_Value(A), m_Value(B))) &&
2930 (A == RHS || B == RHS)) {
2931 if (A != RHS) std::swap(A, B); // umin(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002932 EqP = CmpInst::ICMP_ULE; // "A == umin(A, B)" iff "A ule B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002933 // We analyze this as umax(-A, -B) swapped-pred -A.
2934 // Note that we do not need to actually form -A or -B thanks to EqP.
2935 P = CmpInst::getSwappedPredicate(Pred);
2936 } else if (match(RHS, m_UMin(m_Value(A), m_Value(B))) &&
2937 (A == LHS || B == LHS)) {
2938 if (A != LHS) std::swap(A, B); // A pred umin(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002939 EqP = CmpInst::ICMP_ULE; // "A == umin(A, B)" iff "A ule B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002940 // We analyze this as umax(-A, -B) pred -A.
2941 // Note that we do not need to actually form -A or -B thanks to EqP.
2942 P = Pred;
2943 }
2944 if (P != CmpInst::BAD_ICMP_PREDICATE) {
2945 // Cases correspond to "max(A, B) p A".
2946 switch (P) {
2947 default:
2948 break;
2949 case CmpInst::ICMP_EQ:
2950 case CmpInst::ICMP_ULE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002951 // Equivalent to "A EqP B". This may be the same as the condition tested
2952 // in the max/min; if so, we can just return that.
2953 if (Value *V = ExtractEquivalentCondition(LHS, EqP, A, B))
2954 return V;
2955 if (Value *V = ExtractEquivalentCondition(RHS, EqP, A, B))
2956 return V;
2957 // Otherwise, see if "A EqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002958 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002959 if (Value *V = SimplifyICmpInst(EqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002960 return V;
2961 break;
2962 case CmpInst::ICMP_NE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002963 case CmpInst::ICMP_UGT: {
2964 CmpInst::Predicate InvEqP = CmpInst::getInversePredicate(EqP);
2965 // Equivalent to "A InvEqP B". This may be the same as the condition
2966 // tested in the max/min; if so, we can just return that.
2967 if (Value *V = ExtractEquivalentCondition(LHS, InvEqP, A, B))
2968 return V;
2969 if (Value *V = ExtractEquivalentCondition(RHS, InvEqP, A, B))
2970 return V;
2971 // Otherwise, see if "A InvEqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002972 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002973 if (Value *V = SimplifyICmpInst(InvEqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002974 return V;
2975 break;
Duncan Sandsaf327282011-05-07 16:56:49 +00002976 }
Duncan Sands0a9c1242011-05-03 19:53:10 +00002977 case CmpInst::ICMP_UGE:
2978 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002979 return getTrue(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002980 case CmpInst::ICMP_ULT:
2981 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002982 return getFalse(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002983 }
2984 }
2985
Duncan Sandsa2287852011-05-04 16:05:05 +00002986 // Variants on "max(x,y) >= min(x,z)".
2987 Value *C, *D;
2988 if (match(LHS, m_SMax(m_Value(A), m_Value(B))) &&
2989 match(RHS, m_SMin(m_Value(C), m_Value(D))) &&
2990 (A == C || A == D || B == C || B == D)) {
2991 // max(x, ?) pred min(x, ?).
2992 if (Pred == CmpInst::ICMP_SGE)
2993 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002994 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002995 if (Pred == CmpInst::ICMP_SLT)
2996 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002997 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002998 } else if (match(LHS, m_SMin(m_Value(A), m_Value(B))) &&
2999 match(RHS, m_SMax(m_Value(C), m_Value(D))) &&
3000 (A == C || A == D || B == C || B == D)) {
3001 // min(x, ?) pred max(x, ?).
3002 if (Pred == CmpInst::ICMP_SLE)
3003 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00003004 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00003005 if (Pred == CmpInst::ICMP_SGT)
3006 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00003007 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00003008 } else if (match(LHS, m_UMax(m_Value(A), m_Value(B))) &&
3009 match(RHS, m_UMin(m_Value(C), m_Value(D))) &&
3010 (A == C || A == D || B == C || B == D)) {
3011 // max(x, ?) pred min(x, ?).
3012 if (Pred == CmpInst::ICMP_UGE)
3013 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00003014 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00003015 if (Pred == CmpInst::ICMP_ULT)
3016 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00003017 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00003018 } else if (match(LHS, m_UMin(m_Value(A), m_Value(B))) &&
3019 match(RHS, m_UMax(m_Value(C), m_Value(D))) &&
3020 (A == C || A == D || B == C || B == D)) {
3021 // min(x, ?) pred max(x, ?).
3022 if (Pred == CmpInst::ICMP_ULE)
3023 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00003024 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00003025 if (Pred == CmpInst::ICMP_UGT)
3026 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00003027 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00003028 }
3029
Chandler Carruth8059c842012-03-25 21:28:14 +00003030 // Simplify comparisons of related pointers using a powerful, recursive
3031 // GEP-walk when we have target data available..
Dan Gohman18c77a12013-01-31 02:50:36 +00003032 if (LHS->getType()->isPointerTy())
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003033 if (Constant *C = computePointerICmp(Q.DL, Q.TLI, Pred, LHS, RHS))
Chandler Carruth8059c842012-03-25 21:28:14 +00003034 return C;
3035
Nick Lewycky3db143e2012-02-26 02:09:49 +00003036 if (GetElementPtrInst *GLHS = dyn_cast<GetElementPtrInst>(LHS)) {
3037 if (GEPOperator *GRHS = dyn_cast<GEPOperator>(RHS)) {
3038 if (GLHS->getPointerOperand() == GRHS->getPointerOperand() &&
3039 GLHS->hasAllConstantIndices() && GRHS->hasAllConstantIndices() &&
3040 (ICmpInst::isEquality(Pred) ||
3041 (GLHS->isInBounds() && GRHS->isInBounds() &&
3042 Pred == ICmpInst::getSignedPredicate(Pred)))) {
3043 // The bases are equal and the indices are constant. Build a constant
3044 // expression GEP with the same indices and a null base pointer to see
3045 // what constant folding can make out of it.
3046 Constant *Null = Constant::getNullValue(GLHS->getPointerOperandType());
3047 SmallVector<Value *, 4> IndicesLHS(GLHS->idx_begin(), GLHS->idx_end());
David Blaikie4a2e73b2015-04-02 18:55:32 +00003048 Constant *NewLHS = ConstantExpr::getGetElementPtr(
3049 GLHS->getSourceElementType(), Null, IndicesLHS);
Nick Lewycky3db143e2012-02-26 02:09:49 +00003050
3051 SmallVector<Value *, 4> IndicesRHS(GRHS->idx_begin(), GRHS->idx_end());
David Blaikie4a2e73b2015-04-02 18:55:32 +00003052 Constant *NewRHS = ConstantExpr::getGetElementPtr(
3053 GLHS->getSourceElementType(), Null, IndicesRHS);
Nick Lewycky3db143e2012-02-26 02:09:49 +00003054 return ConstantExpr::getICmp(Pred, NewLHS, NewRHS);
3055 }
3056 }
3057 }
3058
David Majnemer5854e9f2014-11-16 02:20:08 +00003059 // If a bit is known to be zero for A and known to be one for B,
3060 // then A and B cannot be equal.
3061 if (ICmpInst::isEquality(Pred)) {
3062 if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
3063 uint32_t BitWidth = CI->getBitWidth();
3064 APInt LHSKnownZero(BitWidth, 0);
3065 APInt LHSKnownOne(BitWidth, 0);
Chandler Carruth66b31302015-01-04 12:03:27 +00003066 computeKnownBits(LHS, LHSKnownZero, LHSKnownOne, Q.DL, /*Depth=*/0, Q.AC,
David Majnemer5854e9f2014-11-16 02:20:08 +00003067 Q.CxtI, Q.DT);
3068 const APInt &RHSVal = CI->getValue();
3069 if (((LHSKnownZero & RHSVal) != 0) || ((LHSKnownOne & ~RHSVal) != 0))
3070 return Pred == ICmpInst::ICMP_EQ
3071 ? ConstantInt::getFalse(CI->getContext())
3072 : ConstantInt::getTrue(CI->getContext());
3073 }
3074 }
3075
Duncan Sandsf532d312010-11-07 16:12:23 +00003076 // If the comparison is with the result of a select instruction, check whether
3077 // comparing with either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003078 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003079 if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003080 return V;
3081
3082 // If the comparison is with the result of a phi instruction, check whether
3083 // doing the compare with each incoming phi value yields a common result.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003084 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003085 if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsfc5ad3f02010-11-09 17:25:51 +00003086 return V;
Duncan Sandsf532d312010-11-07 16:12:23 +00003087
Craig Topper9f008862014-04-15 04:59:12 +00003088 return nullptr;
Chris Lattner084a1b52009-11-09 22:57:59 +00003089}
3090
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003091Value *llvm::SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003092 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00003093 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003094 const DominatorTree *DT, AssumptionCache *AC,
Chandler Carruth85dbea92015-12-24 09:08:08 +00003095 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003096 return ::SimplifyICmpInst(Predicate, LHS, RHS, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003097 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003098}
3099
Sanjay Patel472cc782016-01-11 22:14:42 +00003100/// Given operands for an FCmpInst, see if we can fold the result.
3101/// If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003102static Value *SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00003103 FastMathFlags FMF, const Query &Q,
3104 unsigned MaxRecurse) {
Chris Lattnerc1f19072009-11-09 23:28:39 +00003105 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate;
3106 assert(CmpInst::isFPPredicate(Pred) && "Not an FP compare!");
3107
Chris Lattnera71e9d62009-11-10 00:55:12 +00003108 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
Chris Lattnerc1f19072009-11-09 23:28:39 +00003109 if (Constant *CRHS = dyn_cast<Constant>(RHS))
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003110 return ConstantFoldCompareInstOperands(Pred, CLHS, CRHS, Q.DL, Q.TLI);
Duncan Sands7e800d62010-11-14 11:23:23 +00003111
Chris Lattnera71e9d62009-11-10 00:55:12 +00003112 // If we have a constant, make sure it is on the RHS.
3113 std::swap(LHS, RHS);
3114 Pred = CmpInst::getSwappedPredicate(Pred);
3115 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003116
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003117 // Fold trivial predicates.
3118 if (Pred == FCmpInst::FCMP_FALSE)
3119 return ConstantInt::get(GetCompareTy(LHS), 0);
3120 if (Pred == FCmpInst::FCMP_TRUE)
3121 return ConstantInt::get(GetCompareTy(LHS), 1);
3122
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00003123 // UNO/ORD predicates can be trivially folded if NaNs are ignored.
3124 if (FMF.noNaNs()) {
3125 if (Pred == FCmpInst::FCMP_UNO)
3126 return ConstantInt::get(GetCompareTy(LHS), 0);
3127 if (Pred == FCmpInst::FCMP_ORD)
3128 return ConstantInt::get(GetCompareTy(LHS), 1);
3129 }
3130
Mehdi Aminieb242a52015-03-09 03:20:25 +00003131 // fcmp pred x, undef and fcmp pred undef, x
3132 // fold to true if unordered, false if ordered
3133 if (isa<UndefValue>(LHS) || isa<UndefValue>(RHS)) {
3134 // Choosing NaN for the undef will always make unordered comparison succeed
3135 // and ordered comparison fail.
3136 return ConstantInt::get(GetCompareTy(LHS), CmpInst::isUnordered(Pred));
3137 }
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003138
3139 // fcmp x,x -> true/false. Not all compares are foldable.
Duncan Sands772749a2011-01-01 20:08:02 +00003140 if (LHS == RHS) {
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003141 if (CmpInst::isTrueWhenEqual(Pred))
3142 return ConstantInt::get(GetCompareTy(LHS), 1);
3143 if (CmpInst::isFalseWhenEqual(Pred))
3144 return ConstantInt::get(GetCompareTy(LHS), 0);
3145 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003146
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003147 // Handle fcmp with constant RHS
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003148 if (ConstantFP *CFP = dyn_cast<ConstantFP>(RHS)) {
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003149 // If the constant is a nan, see if we can fold the comparison based on it.
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003150 if (CFP->getValueAPF().isNaN()) {
3151 if (FCmpInst::isOrdered(Pred)) // True "if ordered and foo"
3152 return ConstantInt::getFalse(CFP->getContext());
3153 assert(FCmpInst::isUnordered(Pred) &&
3154 "Comparison must be either ordered or unordered!");
3155 // True if unordered.
3156 return ConstantInt::getTrue(CFP->getContext());
3157 }
3158 // Check whether the constant is an infinity.
3159 if (CFP->getValueAPF().isInfinity()) {
3160 if (CFP->getValueAPF().isNegative()) {
Elena Demikhovsky45f04482015-01-28 08:03:58 +00003161 switch (Pred) {
Elena Demikhovsky45f04482015-01-28 08:03:58 +00003162 case FCmpInst::FCMP_OLT:
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003163 // No value is ordered and less than negative infinity.
3164 return ConstantInt::getFalse(CFP->getContext());
3165 case FCmpInst::FCMP_UGE:
3166 // All values are unordered with or at least negative infinity.
3167 return ConstantInt::getTrue(CFP->getContext());
Elena Demikhovsky45f04482015-01-28 08:03:58 +00003168 default:
3169 break;
3170 }
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003171 } else {
3172 switch (Pred) {
3173 case FCmpInst::FCMP_OGT:
3174 // No value is ordered and greater than infinity.
3175 return ConstantInt::getFalse(CFP->getContext());
3176 case FCmpInst::FCMP_ULE:
3177 // All values are unordered with and at most infinity.
3178 return ConstantInt::getTrue(CFP->getContext());
3179 default:
3180 break;
3181 }
3182 }
3183 }
3184 if (CFP->getValueAPF().isZero()) {
3185 switch (Pred) {
3186 case FCmpInst::FCMP_UGE:
3187 if (CannotBeOrderedLessThanZero(LHS))
3188 return ConstantInt::getTrue(CFP->getContext());
3189 break;
3190 case FCmpInst::FCMP_OLT:
3191 // X < 0
3192 if (CannotBeOrderedLessThanZero(LHS))
3193 return ConstantInt::getFalse(CFP->getContext());
3194 break;
3195 default:
3196 break;
3197 }
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003198 }
3199 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003200
Duncan Sandsa620bd12010-11-07 16:46:25 +00003201 // If the comparison is with the result of a select instruction, check whether
3202 // comparing with either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003203 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003204 if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003205 return V;
3206
3207 // If the comparison is with the result of a phi instruction, check whether
3208 // doing the compare with each incoming phi value yields a common result.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003209 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003210 if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsfc5ad3f02010-11-09 17:25:51 +00003211 return V;
Duncan Sandsa620bd12010-11-07 16:46:25 +00003212
Craig Topper9f008862014-04-15 04:59:12 +00003213 return nullptr;
Chris Lattnerc1f19072009-11-09 23:28:39 +00003214}
3215
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003216Value *llvm::SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00003217 FastMathFlags FMF, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00003218 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003219 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003220 const Instruction *CxtI) {
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00003221 return ::SimplifyFCmpInst(Predicate, LHS, RHS, FMF,
3222 Query(DL, TLI, DT, AC, CxtI), RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003223}
3224
Sanjay Patel472cc782016-01-11 22:14:42 +00003225/// See if V simplifies when its operand Op is replaced with RepOp.
David Majnemer3f0fb982015-06-06 22:40:21 +00003226static const Value *SimplifyWithOpReplaced(Value *V, Value *Op, Value *RepOp,
3227 const Query &Q,
3228 unsigned MaxRecurse) {
3229 // Trivial replacement.
3230 if (V == Op)
3231 return RepOp;
3232
3233 auto *I = dyn_cast<Instruction>(V);
3234 if (!I)
3235 return nullptr;
3236
3237 // If this is a binary operator, try to simplify it with the replaced op.
3238 if (auto *B = dyn_cast<BinaryOperator>(I)) {
3239 // Consider:
3240 // %cmp = icmp eq i32 %x, 2147483647
3241 // %add = add nsw i32 %x, 1
3242 // %sel = select i1 %cmp, i32 -2147483648, i32 %add
3243 //
3244 // We can't replace %sel with %add unless we strip away the flags.
3245 if (isa<OverflowingBinaryOperator>(B))
3246 if (B->hasNoSignedWrap() || B->hasNoUnsignedWrap())
3247 return nullptr;
3248 if (isa<PossiblyExactOperator>(B))
3249 if (B->isExact())
3250 return nullptr;
3251
3252 if (MaxRecurse) {
3253 if (B->getOperand(0) == Op)
3254 return SimplifyBinOp(B->getOpcode(), RepOp, B->getOperand(1), Q,
3255 MaxRecurse - 1);
3256 if (B->getOperand(1) == Op)
3257 return SimplifyBinOp(B->getOpcode(), B->getOperand(0), RepOp, Q,
3258 MaxRecurse - 1);
3259 }
3260 }
3261
3262 // Same for CmpInsts.
3263 if (CmpInst *C = dyn_cast<CmpInst>(I)) {
3264 if (MaxRecurse) {
3265 if (C->getOperand(0) == Op)
3266 return SimplifyCmpInst(C->getPredicate(), RepOp, C->getOperand(1), Q,
3267 MaxRecurse - 1);
3268 if (C->getOperand(1) == Op)
3269 return SimplifyCmpInst(C->getPredicate(), C->getOperand(0), RepOp, Q,
3270 MaxRecurse - 1);
3271 }
3272 }
3273
3274 // TODO: We could hand off more cases to instsimplify here.
3275
3276 // If all operands are constant after substituting Op for RepOp then we can
3277 // constant fold the instruction.
3278 if (Constant *CRepOp = dyn_cast<Constant>(RepOp)) {
3279 // Build a list of all constant operands.
3280 SmallVector<Constant *, 8> ConstOps;
3281 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
3282 if (I->getOperand(i) == Op)
3283 ConstOps.push_back(CRepOp);
3284 else if (Constant *COp = dyn_cast<Constant>(I->getOperand(i)))
3285 ConstOps.push_back(COp);
3286 else
3287 break;
3288 }
3289
3290 // All operands were constants, fold it.
3291 if (ConstOps.size() == I->getNumOperands()) {
3292 if (CmpInst *C = dyn_cast<CmpInst>(I))
3293 return ConstantFoldCompareInstOperands(C->getPredicate(), ConstOps[0],
3294 ConstOps[1], Q.DL, Q.TLI);
3295
3296 if (LoadInst *LI = dyn_cast<LoadInst>(I))
3297 if (!LI->isVolatile())
3298 return ConstantFoldLoadFromConstPtr(ConstOps[0], Q.DL);
3299
3300 return ConstantFoldInstOperands(I->getOpcode(), I->getType(), ConstOps,
3301 Q.DL, Q.TLI);
3302 }
3303 }
3304
3305 return nullptr;
3306}
3307
Sanjay Patel472cc782016-01-11 22:14:42 +00003308/// Given operands for a SelectInst, see if we can fold the result.
3309/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00003310static Value *SimplifySelectInst(Value *CondVal, Value *TrueVal,
3311 Value *FalseVal, const Query &Q,
3312 unsigned MaxRecurse) {
Chris Lattnerc707fa92010-04-20 05:32:14 +00003313 // select true, X, Y -> X
3314 // select false, X, Y -> Y
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00003315 if (Constant *CB = dyn_cast<Constant>(CondVal)) {
3316 if (CB->isAllOnesValue())
3317 return TrueVal;
3318 if (CB->isNullValue())
3319 return FalseVal;
3320 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003321
Chris Lattnerc707fa92010-04-20 05:32:14 +00003322 // select C, X, X -> X
Duncan Sands772749a2011-01-01 20:08:02 +00003323 if (TrueVal == FalseVal)
Chris Lattnerc707fa92010-04-20 05:32:14 +00003324 return TrueVal;
Duncan Sands7e800d62010-11-14 11:23:23 +00003325
Chris Lattnerc707fa92010-04-20 05:32:14 +00003326 if (isa<UndefValue>(CondVal)) { // select undef, X, Y -> X or Y
3327 if (isa<Constant>(TrueVal))
3328 return TrueVal;
3329 return FalseVal;
3330 }
Dan Gohman54664ed2011-07-01 01:03:43 +00003331 if (isa<UndefValue>(TrueVal)) // select C, undef, X -> X
3332 return FalseVal;
3333 if (isa<UndefValue>(FalseVal)) // select C, X, undef -> X
3334 return TrueVal;
Duncan Sands7e800d62010-11-14 11:23:23 +00003335
David Majnemer3f0fb982015-06-06 22:40:21 +00003336 if (const auto *ICI = dyn_cast<ICmpInst>(CondVal)) {
3337 unsigned BitWidth = Q.DL.getTypeSizeInBits(TrueVal->getType());
David Majnemer7bd71442014-12-20 03:29:59 +00003338 ICmpInst::Predicate Pred = ICI->getPredicate();
David Majnemer3f0fb982015-06-06 22:40:21 +00003339 Value *CmpLHS = ICI->getOperand(0);
3340 Value *CmpRHS = ICI->getOperand(1);
David Majnemer147f8582014-12-20 04:45:33 +00003341 APInt MinSignedValue = APInt::getSignBit(BitWidth);
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003342 Value *X;
3343 const APInt *Y;
David Majnemer7bd71442014-12-20 03:29:59 +00003344 bool TrueWhenUnset;
David Majnemer147f8582014-12-20 04:45:33 +00003345 bool IsBitTest = false;
David Majnemer0b6a0b02014-12-20 03:04:38 +00003346 if (ICmpInst::isEquality(Pred) &&
David Majnemer3f0fb982015-06-06 22:40:21 +00003347 match(CmpLHS, m_And(m_Value(X), m_APInt(Y))) &&
3348 match(CmpRHS, m_Zero())) {
David Majnemer7bd71442014-12-20 03:29:59 +00003349 IsBitTest = true;
3350 TrueWhenUnset = Pred == ICmpInst::ICMP_EQ;
David Majnemer3f0fb982015-06-06 22:40:21 +00003351 } else if (Pred == ICmpInst::ICMP_SLT && match(CmpRHS, m_Zero())) {
3352 X = CmpLHS;
David Majnemer7bd71442014-12-20 03:29:59 +00003353 Y = &MinSignedValue;
3354 IsBitTest = true;
3355 TrueWhenUnset = false;
David Majnemer3f0fb982015-06-06 22:40:21 +00003356 } else if (Pred == ICmpInst::ICMP_SGT && match(CmpRHS, m_AllOnes())) {
3357 X = CmpLHS;
David Majnemer7bd71442014-12-20 03:29:59 +00003358 Y = &MinSignedValue;
3359 IsBitTest = true;
3360 TrueWhenUnset = true;
3361 }
3362 if (IsBitTest) {
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003363 const APInt *C;
3364 // (X & Y) == 0 ? X & ~Y : X --> X
3365 // (X & Y) != 0 ? X & ~Y : X --> X & ~Y
3366 if (FalseVal == X && match(TrueVal, m_And(m_Specific(X), m_APInt(C))) &&
3367 *Y == ~*C)
David Majnemer7bd71442014-12-20 03:29:59 +00003368 return TrueWhenUnset ? FalseVal : TrueVal;
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003369 // (X & Y) == 0 ? X : X & ~Y --> X & ~Y
3370 // (X & Y) != 0 ? X : X & ~Y --> X
3371 if (TrueVal == X && match(FalseVal, m_And(m_Specific(X), m_APInt(C))) &&
3372 *Y == ~*C)
David Majnemer7bd71442014-12-20 03:29:59 +00003373 return TrueWhenUnset ? FalseVal : TrueVal;
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003374
3375 if (Y->isPowerOf2()) {
3376 // (X & Y) == 0 ? X | Y : X --> X | Y
3377 // (X & Y) != 0 ? X | Y : X --> X
3378 if (FalseVal == X && match(TrueVal, m_Or(m_Specific(X), m_APInt(C))) &&
3379 *Y == *C)
David Majnemer7bd71442014-12-20 03:29:59 +00003380 return TrueWhenUnset ? TrueVal : FalseVal;
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003381 // (X & Y) == 0 ? X : X | Y --> X
3382 // (X & Y) != 0 ? X : X | Y --> X | Y
3383 if (TrueVal == X && match(FalseVal, m_Or(m_Specific(X), m_APInt(C))) &&
3384 *Y == *C)
David Majnemer7bd71442014-12-20 03:29:59 +00003385 return TrueWhenUnset ? TrueVal : FalseVal;
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003386 }
3387 }
David Majnemer3f0fb982015-06-06 22:40:21 +00003388 if (ICI->hasOneUse()) {
3389 const APInt *C;
3390 if (match(CmpRHS, m_APInt(C))) {
3391 // X < MIN ? T : F --> F
3392 if (Pred == ICmpInst::ICMP_SLT && C->isMinSignedValue())
3393 return FalseVal;
3394 // X < MIN ? T : F --> F
3395 if (Pred == ICmpInst::ICMP_ULT && C->isMinValue())
3396 return FalseVal;
3397 // X > MAX ? T : F --> F
3398 if (Pred == ICmpInst::ICMP_SGT && C->isMaxSignedValue())
3399 return FalseVal;
3400 // X > MAX ? T : F --> F
3401 if (Pred == ICmpInst::ICMP_UGT && C->isMaxValue())
3402 return FalseVal;
3403 }
3404 }
3405
3406 // If we have an equality comparison then we know the value in one of the
3407 // arms of the select. See if substituting this value into the arm and
3408 // simplifying the result yields the same value as the other arm.
3409 if (Pred == ICmpInst::ICMP_EQ) {
3410 if (SimplifyWithOpReplaced(FalseVal, CmpLHS, CmpRHS, Q, MaxRecurse) ==
3411 TrueVal ||
3412 SimplifyWithOpReplaced(FalseVal, CmpRHS, CmpLHS, Q, MaxRecurse) ==
3413 TrueVal)
3414 return FalseVal;
3415 if (SimplifyWithOpReplaced(TrueVal, CmpLHS, CmpRHS, Q, MaxRecurse) ==
3416 FalseVal ||
3417 SimplifyWithOpReplaced(TrueVal, CmpRHS, CmpLHS, Q, MaxRecurse) ==
3418 FalseVal)
3419 return FalseVal;
3420 } else if (Pred == ICmpInst::ICMP_NE) {
3421 if (SimplifyWithOpReplaced(TrueVal, CmpLHS, CmpRHS, Q, MaxRecurse) ==
3422 FalseVal ||
3423 SimplifyWithOpReplaced(TrueVal, CmpRHS, CmpLHS, Q, MaxRecurse) ==
3424 FalseVal)
3425 return TrueVal;
3426 if (SimplifyWithOpReplaced(FalseVal, CmpLHS, CmpRHS, Q, MaxRecurse) ==
3427 TrueVal ||
3428 SimplifyWithOpReplaced(FalseVal, CmpRHS, CmpLHS, Q, MaxRecurse) ==
3429 TrueVal)
3430 return TrueVal;
3431 }
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003432 }
3433
Craig Topper9f008862014-04-15 04:59:12 +00003434 return nullptr;
Chris Lattnerc707fa92010-04-20 05:32:14 +00003435}
3436
Duncan Sandsb8cee002012-03-13 11:42:19 +00003437Value *llvm::SimplifySelectInst(Value *Cond, Value *TrueVal, Value *FalseVal,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003438 const DataLayout &DL,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003439 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003440 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003441 const Instruction *CxtI) {
3442 return ::SimplifySelectInst(Cond, TrueVal, FalseVal,
Chandler Carruth66b31302015-01-04 12:03:27 +00003443 Query(DL, TLI, DT, AC, CxtI), RecursionLimit);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003444}
3445
Sanjay Patel472cc782016-01-11 22:14:42 +00003446/// Given operands for an GetElementPtrInst, see if we can fold the result.
3447/// If not, this returns null.
David Blaikie4a2e73b2015-04-02 18:55:32 +00003448static Value *SimplifyGEPInst(Type *SrcTy, ArrayRef<Value *> Ops,
3449 const Query &Q, unsigned) {
Duncan Sands8a0f4862010-11-22 13:42:49 +00003450 // The type of the GEP pointer operand.
David Blaikie4a2e73b2015-04-02 18:55:32 +00003451 unsigned AS =
3452 cast<PointerType>(Ops[0]->getType()->getScalarType())->getAddressSpace();
Duncan Sands8a0f4862010-11-22 13:42:49 +00003453
Chris Lattner8574aba2009-11-27 00:29:05 +00003454 // getelementptr P -> P.
Jay Foadb992a632011-07-19 15:07:52 +00003455 if (Ops.size() == 1)
Chris Lattner8574aba2009-11-27 00:29:05 +00003456 return Ops[0];
3457
Nico Weber48c82402014-08-27 20:06:19 +00003458 // Compute the (pointer) type returned by the GEP instruction.
David Blaikie4a2e73b2015-04-02 18:55:32 +00003459 Type *LastType = GetElementPtrInst::getIndexedType(SrcTy, Ops.slice(1));
Nico Weber48c82402014-08-27 20:06:19 +00003460 Type *GEPTy = PointerType::get(LastType, AS);
3461 if (VectorType *VT = dyn_cast<VectorType>(Ops[0]->getType()))
3462 GEPTy = VectorType::get(GEPTy, VT->getNumElements());
3463
3464 if (isa<UndefValue>(Ops[0]))
Duncan Sands8a0f4862010-11-22 13:42:49 +00003465 return UndefValue::get(GEPTy);
Chris Lattner8574aba2009-11-27 00:29:05 +00003466
Jay Foadb992a632011-07-19 15:07:52 +00003467 if (Ops.size() == 2) {
Duncan Sandscf4bceb2010-11-21 13:53:09 +00003468 // getelementptr P, 0 -> P.
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00003469 if (match(Ops[1], m_Zero()))
3470 return Ops[0];
Nico Weber48c82402014-08-27 20:06:19 +00003471
David Blaikie4a2e73b2015-04-02 18:55:32 +00003472 Type *Ty = SrcTy;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003473 if (Ty->isSized()) {
Nico Weber48c82402014-08-27 20:06:19 +00003474 Value *P;
3475 uint64_t C;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003476 uint64_t TyAllocSize = Q.DL.getTypeAllocSize(Ty);
Nico Weber48c82402014-08-27 20:06:19 +00003477 // getelementptr P, N -> P if P points to a type of zero size.
3478 if (TyAllocSize == 0)
Duncan Sandscf4bceb2010-11-21 13:53:09 +00003479 return Ops[0];
Nico Weber48c82402014-08-27 20:06:19 +00003480
3481 // The following transforms are only safe if the ptrtoint cast
3482 // doesn't truncate the pointers.
3483 if (Ops[1]->getType()->getScalarSizeInBits() ==
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003484 Q.DL.getPointerSizeInBits(AS)) {
Nico Weber48c82402014-08-27 20:06:19 +00003485 auto PtrToIntOrZero = [GEPTy](Value *P) -> Value * {
3486 if (match(P, m_Zero()))
3487 return Constant::getNullValue(GEPTy);
3488 Value *Temp;
3489 if (match(P, m_PtrToInt(m_Value(Temp))))
David Majnemer11ca2972014-08-27 20:08:34 +00003490 if (Temp->getType() == GEPTy)
3491 return Temp;
Nico Weber48c82402014-08-27 20:06:19 +00003492 return nullptr;
3493 };
3494
3495 // getelementptr V, (sub P, V) -> P if P points to a type of size 1.
3496 if (TyAllocSize == 1 &&
3497 match(Ops[1], m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0])))))
3498 if (Value *R = PtrToIntOrZero(P))
3499 return R;
3500
3501 // getelementptr V, (ashr (sub P, V), C) -> Q
3502 // if P points to a type of size 1 << C.
3503 if (match(Ops[1],
3504 m_AShr(m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0]))),
3505 m_ConstantInt(C))) &&
3506 TyAllocSize == 1ULL << C)
3507 if (Value *R = PtrToIntOrZero(P))
3508 return R;
3509
3510 // getelementptr V, (sdiv (sub P, V), C) -> Q
3511 // if P points to a type of size C.
3512 if (match(Ops[1],
3513 m_SDiv(m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0]))),
3514 m_SpecificInt(TyAllocSize))))
3515 if (Value *R = PtrToIntOrZero(P))
3516 return R;
3517 }
Duncan Sandscf4bceb2010-11-21 13:53:09 +00003518 }
3519 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003520
Chris Lattner8574aba2009-11-27 00:29:05 +00003521 // Check to see if this is constant foldable.
Jay Foadb992a632011-07-19 15:07:52 +00003522 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
Chris Lattner8574aba2009-11-27 00:29:05 +00003523 if (!isa<Constant>(Ops[i]))
Craig Topper9f008862014-04-15 04:59:12 +00003524 return nullptr;
Duncan Sands7e800d62010-11-14 11:23:23 +00003525
David Blaikie4a2e73b2015-04-02 18:55:32 +00003526 return ConstantExpr::getGetElementPtr(SrcTy, cast<Constant>(Ops[0]),
3527 Ops.slice(1));
Chris Lattner8574aba2009-11-27 00:29:05 +00003528}
3529
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003530Value *llvm::SimplifyGEPInst(ArrayRef<Value *> Ops, const DataLayout &DL,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003531 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003532 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003533 const Instruction *CxtI) {
David Blaikie4a2e73b2015-04-02 18:55:32 +00003534 return ::SimplifyGEPInst(
3535 cast<PointerType>(Ops[0]->getType()->getScalarType())->getElementType(),
3536 Ops, Query(DL, TLI, DT, AC, CxtI), RecursionLimit);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003537}
3538
Sanjay Patel472cc782016-01-11 22:14:42 +00003539/// Given operands for an InsertValueInst, see if we can fold the result.
3540/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00003541static Value *SimplifyInsertValueInst(Value *Agg, Value *Val,
3542 ArrayRef<unsigned> Idxs, const Query &Q,
3543 unsigned) {
Duncan Sandsfd26a952011-09-05 06:52:48 +00003544 if (Constant *CAgg = dyn_cast<Constant>(Agg))
3545 if (Constant *CVal = dyn_cast<Constant>(Val))
3546 return ConstantFoldInsertValueInstruction(CAgg, CVal, Idxs);
3547
3548 // insertvalue x, undef, n -> x
3549 if (match(Val, m_Undef()))
3550 return Agg;
3551
3552 // insertvalue x, (extractvalue y, n), n
3553 if (ExtractValueInst *EV = dyn_cast<ExtractValueInst>(Val))
Benjamin Kramer4b79c212011-09-05 18:16:19 +00003554 if (EV->getAggregateOperand()->getType() == Agg->getType() &&
3555 EV->getIndices() == Idxs) {
Duncan Sandsfd26a952011-09-05 06:52:48 +00003556 // insertvalue undef, (extractvalue y, n), n -> y
3557 if (match(Agg, m_Undef()))
3558 return EV->getAggregateOperand();
3559
3560 // insertvalue y, (extractvalue y, n), n -> y
3561 if (Agg == EV->getAggregateOperand())
3562 return Agg;
3563 }
3564
Craig Topper9f008862014-04-15 04:59:12 +00003565 return nullptr;
Duncan Sandsfd26a952011-09-05 06:52:48 +00003566}
3567
Chandler Carruth66b31302015-01-04 12:03:27 +00003568Value *llvm::SimplifyInsertValueInst(
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003569 Value *Agg, Value *Val, ArrayRef<unsigned> Idxs, const DataLayout &DL,
Chandler Carruth66b31302015-01-04 12:03:27 +00003570 const TargetLibraryInfo *TLI, const DominatorTree *DT, AssumptionCache *AC,
3571 const Instruction *CxtI) {
3572 return ::SimplifyInsertValueInst(Agg, Val, Idxs, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003573 RecursionLimit);
3574}
3575
Sanjay Patel472cc782016-01-11 22:14:42 +00003576/// Given operands for an ExtractValueInst, see if we can fold the result.
3577/// If not, this returns null.
David Majnemer25a796e2015-07-13 01:15:46 +00003578static Value *SimplifyExtractValueInst(Value *Agg, ArrayRef<unsigned> Idxs,
3579 const Query &, unsigned) {
3580 if (auto *CAgg = dyn_cast<Constant>(Agg))
3581 return ConstantFoldExtractValueInstruction(CAgg, Idxs);
3582
3583 // extractvalue x, (insertvalue y, elt, n), n -> elt
3584 unsigned NumIdxs = Idxs.size();
3585 for (auto *IVI = dyn_cast<InsertValueInst>(Agg); IVI != nullptr;
3586 IVI = dyn_cast<InsertValueInst>(IVI->getAggregateOperand())) {
3587 ArrayRef<unsigned> InsertValueIdxs = IVI->getIndices();
3588 unsigned NumInsertValueIdxs = InsertValueIdxs.size();
3589 unsigned NumCommonIdxs = std::min(NumInsertValueIdxs, NumIdxs);
3590 if (InsertValueIdxs.slice(0, NumCommonIdxs) ==
3591 Idxs.slice(0, NumCommonIdxs)) {
3592 if (NumIdxs == NumInsertValueIdxs)
3593 return IVI->getInsertedValueOperand();
3594 break;
3595 }
3596 }
3597
3598 return nullptr;
3599}
3600
3601Value *llvm::SimplifyExtractValueInst(Value *Agg, ArrayRef<unsigned> Idxs,
3602 const DataLayout &DL,
3603 const TargetLibraryInfo *TLI,
3604 const DominatorTree *DT,
3605 AssumptionCache *AC,
3606 const Instruction *CxtI) {
3607 return ::SimplifyExtractValueInst(Agg, Idxs, Query(DL, TLI, DT, AC, CxtI),
3608 RecursionLimit);
3609}
3610
Sanjay Patel472cc782016-01-11 22:14:42 +00003611/// Given operands for an ExtractElementInst, see if we can fold the result.
3612/// If not, this returns null.
David Majnemer599ca442015-07-13 01:15:53 +00003613static Value *SimplifyExtractElementInst(Value *Vec, Value *Idx, const Query &,
3614 unsigned) {
3615 if (auto *CVec = dyn_cast<Constant>(Vec)) {
3616 if (auto *CIdx = dyn_cast<Constant>(Idx))
3617 return ConstantFoldExtractElementInstruction(CVec, CIdx);
3618
3619 // The index is not relevant if our vector is a splat.
3620 if (auto *Splat = CVec->getSplatValue())
3621 return Splat;
3622
3623 if (isa<UndefValue>(Vec))
3624 return UndefValue::get(Vec->getType()->getVectorElementType());
3625 }
3626
3627 // If extracting a specified index from the vector, see if we can recursively
3628 // find a previously computed scalar that was inserted into the vector.
David Majnemer8e335ca2015-08-18 22:18:22 +00003629 if (auto *IdxC = dyn_cast<ConstantInt>(Idx))
3630 if (Value *Elt = findScalarElement(Vec, IdxC->getZExtValue()))
David Majnemer599ca442015-07-13 01:15:53 +00003631 return Elt;
David Majnemer599ca442015-07-13 01:15:53 +00003632
3633 return nullptr;
3634}
3635
3636Value *llvm::SimplifyExtractElementInst(
3637 Value *Vec, Value *Idx, const DataLayout &DL, const TargetLibraryInfo *TLI,
3638 const DominatorTree *DT, AssumptionCache *AC, const Instruction *CxtI) {
3639 return ::SimplifyExtractElementInst(Vec, Idx, Query(DL, TLI, DT, AC, CxtI),
3640 RecursionLimit);
3641}
3642
Sanjay Patel472cc782016-01-11 22:14:42 +00003643/// See if we can fold the given phi. If not, returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00003644static Value *SimplifyPHINode(PHINode *PN, const Query &Q) {
Duncan Sands7412f6e2010-11-17 04:30:22 +00003645 // If all of the PHI's incoming values are the same then replace the PHI node
3646 // with the common value.
Craig Topper9f008862014-04-15 04:59:12 +00003647 Value *CommonValue = nullptr;
Duncan Sands7412f6e2010-11-17 04:30:22 +00003648 bool HasUndefInput = false;
Pete Cooper833f34d2015-05-12 20:05:31 +00003649 for (Value *Incoming : PN->incoming_values()) {
Duncan Sands7412f6e2010-11-17 04:30:22 +00003650 // If the incoming value is the phi node itself, it can safely be skipped.
3651 if (Incoming == PN) continue;
3652 if (isa<UndefValue>(Incoming)) {
3653 // Remember that we saw an undef value, but otherwise ignore them.
3654 HasUndefInput = true;
3655 continue;
3656 }
3657 if (CommonValue && Incoming != CommonValue)
Craig Topper9f008862014-04-15 04:59:12 +00003658 return nullptr; // Not the same, bail out.
Duncan Sands7412f6e2010-11-17 04:30:22 +00003659 CommonValue = Incoming;
3660 }
3661
3662 // If CommonValue is null then all of the incoming values were either undef or
3663 // equal to the phi node itself.
3664 if (!CommonValue)
3665 return UndefValue::get(PN->getType());
3666
3667 // If we have a PHI node like phi(X, undef, X), where X is defined by some
3668 // instruction, we cannot return X as the result of the PHI node unless it
3669 // dominates the PHI block.
3670 if (HasUndefInput)
Craig Topper9f008862014-04-15 04:59:12 +00003671 return ValueDominatesPHI(CommonValue, PN, Q.DT) ? CommonValue : nullptr;
Duncan Sands7412f6e2010-11-17 04:30:22 +00003672
3673 return CommonValue;
3674}
3675
Duncan Sands395ac42d2012-03-13 14:07:05 +00003676static Value *SimplifyTruncInst(Value *Op, Type *Ty, const Query &Q, unsigned) {
3677 if (Constant *C = dyn_cast<Constant>(Op))
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003678 return ConstantFoldInstOperands(Instruction::Trunc, Ty, C, Q.DL, Q.TLI);
Duncan Sands395ac42d2012-03-13 14:07:05 +00003679
Craig Topper9f008862014-04-15 04:59:12 +00003680 return nullptr;
Duncan Sands395ac42d2012-03-13 14:07:05 +00003681}
3682
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003683Value *llvm::SimplifyTruncInst(Value *Op, Type *Ty, const DataLayout &DL,
Duncan Sands395ac42d2012-03-13 14:07:05 +00003684 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003685 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003686 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003687 return ::SimplifyTruncInst(Op, Ty, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00003688 RecursionLimit);
Duncan Sands395ac42d2012-03-13 14:07:05 +00003689}
3690
Chris Lattnera71e9d62009-11-10 00:55:12 +00003691//=== Helper functions for higher up the class hierarchy.
Chris Lattnerc1f19072009-11-09 23:28:39 +00003692
Sanjay Patel472cc782016-01-11 22:14:42 +00003693/// Given operands for a BinaryOperator, see if we can fold the result.
3694/// If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003695static Value *SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003696 const Query &Q, unsigned MaxRecurse) {
Chris Lattnera71e9d62009-11-10 00:55:12 +00003697 switch (Opcode) {
Chris Lattner9e4aa022011-02-09 17:15:04 +00003698 case Instruction::Add:
Duncan Sands8b4e2832011-02-09 17:45:03 +00003699 return SimplifyAddInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003700 Q, MaxRecurse);
Michael Ilsemand2b05e52012-12-12 00:29:16 +00003701 case Instruction::FAdd:
3702 return SimplifyFAddInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
3703
Chris Lattner9e4aa022011-02-09 17:15:04 +00003704 case Instruction::Sub:
Duncan Sands8b4e2832011-02-09 17:45:03 +00003705 return SimplifySubInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003706 Q, MaxRecurse);
Michael Ilsemand2b05e52012-12-12 00:29:16 +00003707 case Instruction::FSub:
3708 return SimplifyFSubInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
3709
Duncan Sandsb8cee002012-03-13 11:42:19 +00003710 case Instruction::Mul: return SimplifyMulInst (LHS, RHS, Q, MaxRecurse);
Michael Ilsemand2b05e52012-12-12 00:29:16 +00003711 case Instruction::FMul:
3712 return SimplifyFMulInst (LHS, RHS, FastMathFlags(), Q, MaxRecurse);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003713 case Instruction::SDiv: return SimplifySDivInst(LHS, RHS, Q, MaxRecurse);
3714 case Instruction::UDiv: return SimplifyUDivInst(LHS, RHS, Q, MaxRecurse);
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00003715 case Instruction::FDiv:
3716 return SimplifyFDivInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003717 case Instruction::SRem: return SimplifySRemInst(LHS, RHS, Q, MaxRecurse);
3718 case Instruction::URem: return SimplifyURemInst(LHS, RHS, Q, MaxRecurse);
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00003719 case Instruction::FRem:
3720 return SimplifyFRemInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00003721 case Instruction::Shl:
Duncan Sands8b4e2832011-02-09 17:45:03 +00003722 return SimplifyShlInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003723 Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00003724 case Instruction::LShr:
Duncan Sandsb8cee002012-03-13 11:42:19 +00003725 return SimplifyLShrInst(LHS, RHS, /*isExact*/false, Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00003726 case Instruction::AShr:
Duncan Sandsb8cee002012-03-13 11:42:19 +00003727 return SimplifyAShrInst(LHS, RHS, /*isExact*/false, Q, MaxRecurse);
3728 case Instruction::And: return SimplifyAndInst(LHS, RHS, Q, MaxRecurse);
3729 case Instruction::Or: return SimplifyOrInst (LHS, RHS, Q, MaxRecurse);
3730 case Instruction::Xor: return SimplifyXorInst(LHS, RHS, Q, MaxRecurse);
Chris Lattnera71e9d62009-11-10 00:55:12 +00003731 default:
3732 if (Constant *CLHS = dyn_cast<Constant>(LHS))
3733 if (Constant *CRHS = dyn_cast<Constant>(RHS)) {
3734 Constant *COps[] = {CLHS, CRHS};
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003735 return ConstantFoldInstOperands(Opcode, LHS->getType(), COps, Q.DL,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003736 Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00003737 }
Duncan Sandsb0579e92010-11-10 13:00:08 +00003738
Duncan Sands6c7a52c2010-12-21 08:49:00 +00003739 // If the operation is associative, try some generic simplifications.
3740 if (Instruction::isAssociative(Opcode))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003741 if (Value *V = SimplifyAssociativeBinOp(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00003742 return V;
3743
Duncan Sandsb8cee002012-03-13 11:42:19 +00003744 // If the operation is with the result of a select instruction check whether
Duncan Sandsb0579e92010-11-10 13:00:08 +00003745 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003746 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003747 if (Value *V = ThreadBinOpOverSelect(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003748 return V;
3749
3750 // If the operation is with the result of a phi instruction, check whether
3751 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003752 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003753 if (Value *V = ThreadBinOpOverPHI(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00003754 return V;
3755
Craig Topper9f008862014-04-15 04:59:12 +00003756 return nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00003757 }
3758}
Chris Lattnerc1f19072009-11-09 23:28:39 +00003759
Sanjay Patel472cc782016-01-11 22:14:42 +00003760/// Given operands for a BinaryOperator, see if we can fold the result.
3761/// If not, this returns null.
Michael Zolotukhin4e8598e2015-02-06 20:02:51 +00003762/// In contrast to SimplifyBinOp, try to use FastMathFlag when folding the
3763/// result. In case we don't need FastMathFlags, simply fall to SimplifyBinOp.
3764static Value *SimplifyFPBinOp(unsigned Opcode, Value *LHS, Value *RHS,
3765 const FastMathFlags &FMF, const Query &Q,
3766 unsigned MaxRecurse) {
3767 switch (Opcode) {
3768 case Instruction::FAdd:
3769 return SimplifyFAddInst(LHS, RHS, FMF, Q, MaxRecurse);
3770 case Instruction::FSub:
3771 return SimplifyFSubInst(LHS, RHS, FMF, Q, MaxRecurse);
3772 case Instruction::FMul:
3773 return SimplifyFMulInst(LHS, RHS, FMF, Q, MaxRecurse);
3774 default:
3775 return SimplifyBinOp(Opcode, LHS, RHS, Q, MaxRecurse);
3776 }
3777}
3778
Duncan Sands7e800d62010-11-14 11:23:23 +00003779Value *llvm::SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003780 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003781 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003782 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003783 return ::SimplifyBinOp(Opcode, LHS, RHS, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00003784 RecursionLimit);
Chris Lattnerc1f19072009-11-09 23:28:39 +00003785}
3786
Michael Zolotukhin4e8598e2015-02-06 20:02:51 +00003787Value *llvm::SimplifyFPBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003788 const FastMathFlags &FMF, const DataLayout &DL,
Michael Zolotukhin4e8598e2015-02-06 20:02:51 +00003789 const TargetLibraryInfo *TLI,
3790 const DominatorTree *DT, AssumptionCache *AC,
3791 const Instruction *CxtI) {
3792 return ::SimplifyFPBinOp(Opcode, LHS, RHS, FMF, Query(DL, TLI, DT, AC, CxtI),
3793 RecursionLimit);
3794}
3795
Sanjay Patel472cc782016-01-11 22:14:42 +00003796/// Given operands for a CmpInst, see if we can fold the result.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003797static Value *SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003798 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003799 if (CmpInst::isIntPredicate((CmpInst::Predicate)Predicate))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003800 return SimplifyICmpInst(Predicate, LHS, RHS, Q, MaxRecurse);
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00003801 return SimplifyFCmpInst(Predicate, LHS, RHS, FastMathFlags(), Q, MaxRecurse);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003802}
3803
3804Value *llvm::SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003805 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003806 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003807 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003808 return ::SimplifyCmpInst(Predicate, LHS, RHS, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003809 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003810}
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003811
Michael Ilseman54857292013-02-07 19:26:05 +00003812static bool IsIdempotent(Intrinsic::ID ID) {
3813 switch (ID) {
3814 default: return false;
3815
3816 // Unary idempotent: f(f(x)) = f(x)
3817 case Intrinsic::fabs:
3818 case Intrinsic::floor:
3819 case Intrinsic::ceil:
3820 case Intrinsic::trunc:
3821 case Intrinsic::rint:
3822 case Intrinsic::nearbyint:
Hal Finkel171817e2013-08-07 22:49:12 +00003823 case Intrinsic::round:
Michael Ilseman54857292013-02-07 19:26:05 +00003824 return true;
3825 }
3826}
3827
3828template <typename IterTy>
David Majnemer15032582015-05-22 03:56:46 +00003829static Value *SimplifyIntrinsic(Function *F, IterTy ArgBegin, IterTy ArgEnd,
Michael Ilseman54857292013-02-07 19:26:05 +00003830 const Query &Q, unsigned MaxRecurse) {
David Majnemer15032582015-05-22 03:56:46 +00003831 Intrinsic::ID IID = F->getIntrinsicID();
3832 unsigned NumOperands = std::distance(ArgBegin, ArgEnd);
3833 Type *ReturnType = F->getReturnType();
3834
3835 // Binary Ops
3836 if (NumOperands == 2) {
3837 Value *LHS = *ArgBegin;
3838 Value *RHS = *(ArgBegin + 1);
3839 if (IID == Intrinsic::usub_with_overflow ||
3840 IID == Intrinsic::ssub_with_overflow) {
3841 // X - X -> { 0, false }
3842 if (LHS == RHS)
3843 return Constant::getNullValue(ReturnType);
3844
3845 // X - undef -> undef
3846 // undef - X -> undef
3847 if (isa<UndefValue>(LHS) || isa<UndefValue>(RHS))
3848 return UndefValue::get(ReturnType);
3849 }
3850
3851 if (IID == Intrinsic::uadd_with_overflow ||
3852 IID == Intrinsic::sadd_with_overflow) {
3853 // X + undef -> undef
3854 if (isa<UndefValue>(RHS))
3855 return UndefValue::get(ReturnType);
3856 }
3857
3858 if (IID == Intrinsic::umul_with_overflow ||
3859 IID == Intrinsic::smul_with_overflow) {
3860 // X * 0 -> { 0, false }
3861 if (match(RHS, m_Zero()))
3862 return Constant::getNullValue(ReturnType);
3863
3864 // X * undef -> { 0, false }
3865 if (match(RHS, m_Undef()))
3866 return Constant::getNullValue(ReturnType);
3867 }
3868 }
3869
Michael Ilseman54857292013-02-07 19:26:05 +00003870 // Perform idempotent optimizations
3871 if (!IsIdempotent(IID))
Craig Topper9f008862014-04-15 04:59:12 +00003872 return nullptr;
Michael Ilseman54857292013-02-07 19:26:05 +00003873
3874 // Unary Ops
David Majnemer15032582015-05-22 03:56:46 +00003875 if (NumOperands == 1)
Michael Ilseman54857292013-02-07 19:26:05 +00003876 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(*ArgBegin))
3877 if (II->getIntrinsicID() == IID)
3878 return II;
3879
Craig Topper9f008862014-04-15 04:59:12 +00003880 return nullptr;
Michael Ilseman54857292013-02-07 19:26:05 +00003881}
3882
Chandler Carruth9dc35582012-12-28 11:30:55 +00003883template <typename IterTy>
Chandler Carruthf6182152012-12-28 14:23:29 +00003884static Value *SimplifyCall(Value *V, IterTy ArgBegin, IterTy ArgEnd,
Chandler Carruth9dc35582012-12-28 11:30:55 +00003885 const Query &Q, unsigned MaxRecurse) {
Chandler Carruthf6182152012-12-28 14:23:29 +00003886 Type *Ty = V->getType();
Chandler Carruth9dc35582012-12-28 11:30:55 +00003887 if (PointerType *PTy = dyn_cast<PointerType>(Ty))
3888 Ty = PTy->getElementType();
3889 FunctionType *FTy = cast<FunctionType>(Ty);
3890
Dan Gohman85977e62011-11-04 18:32:42 +00003891 // call undef -> undef
Chandler Carruthf6182152012-12-28 14:23:29 +00003892 if (isa<UndefValue>(V))
Chandler Carruth9dc35582012-12-28 11:30:55 +00003893 return UndefValue::get(FTy->getReturnType());
Dan Gohman85977e62011-11-04 18:32:42 +00003894
Chandler Carruthf6182152012-12-28 14:23:29 +00003895 Function *F = dyn_cast<Function>(V);
3896 if (!F)
Craig Topper9f008862014-04-15 04:59:12 +00003897 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00003898
David Majnemer15032582015-05-22 03:56:46 +00003899 if (F->isIntrinsic())
3900 if (Value *Ret = SimplifyIntrinsic(F, ArgBegin, ArgEnd, Q, MaxRecurse))
Michael Ilseman54857292013-02-07 19:26:05 +00003901 return Ret;
3902
Chandler Carruthf6182152012-12-28 14:23:29 +00003903 if (!canConstantFoldCallTo(F))
Craig Topper9f008862014-04-15 04:59:12 +00003904 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00003905
3906 SmallVector<Constant *, 4> ConstantArgs;
3907 ConstantArgs.reserve(ArgEnd - ArgBegin);
3908 for (IterTy I = ArgBegin, E = ArgEnd; I != E; ++I) {
3909 Constant *C = dyn_cast<Constant>(*I);
3910 if (!C)
Craig Topper9f008862014-04-15 04:59:12 +00003911 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00003912 ConstantArgs.push_back(C);
3913 }
3914
3915 return ConstantFoldCall(F, ConstantArgs, Q.TLI);
Dan Gohman85977e62011-11-04 18:32:42 +00003916}
3917
Chandler Carruthf6182152012-12-28 14:23:29 +00003918Value *llvm::SimplifyCall(Value *V, User::op_iterator ArgBegin,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003919 User::op_iterator ArgEnd, const DataLayout &DL,
Chandler Carruth66b31302015-01-04 12:03:27 +00003920 const TargetLibraryInfo *TLI, const DominatorTree *DT,
3921 AssumptionCache *AC, const Instruction *CxtI) {
3922 return ::SimplifyCall(V, ArgBegin, ArgEnd, Query(DL, TLI, DT, AC, CxtI),
Chandler Carruth9dc35582012-12-28 11:30:55 +00003923 RecursionLimit);
3924}
3925
Chandler Carruthf6182152012-12-28 14:23:29 +00003926Value *llvm::SimplifyCall(Value *V, ArrayRef<Value *> Args,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003927 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003928 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003929 const Instruction *CxtI) {
3930 return ::SimplifyCall(V, Args.begin(), Args.end(),
Chandler Carruth66b31302015-01-04 12:03:27 +00003931 Query(DL, TLI, DT, AC, CxtI), RecursionLimit);
Chandler Carruth9dc35582012-12-28 11:30:55 +00003932}
3933
Sanjay Patel472cc782016-01-11 22:14:42 +00003934/// See if we can compute a simplified version of this instruction.
3935/// If not, this returns null.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003936Value *llvm::SimplifyInstruction(Instruction *I, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00003937 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003938 const DominatorTree *DT, AssumptionCache *AC) {
Duncan Sands64e41cf2010-11-17 08:35:29 +00003939 Value *Result;
3940
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003941 switch (I->getOpcode()) {
3942 default:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003943 Result = ConstantFoldInstruction(I, DL, TLI);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003944 break;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00003945 case Instruction::FAdd:
3946 Result = SimplifyFAddInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00003947 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00003948 break;
Chris Lattner3d9823b2009-11-27 17:42:22 +00003949 case Instruction::Add:
Duncan Sands64e41cf2010-11-17 08:35:29 +00003950 Result = SimplifyAddInst(I->getOperand(0), I->getOperand(1),
3951 cast<BinaryOperator>(I)->hasNoSignedWrap(),
Chandler Carruth66b31302015-01-04 12:03:27 +00003952 cast<BinaryOperator>(I)->hasNoUnsignedWrap(), DL,
3953 TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003954 break;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00003955 case Instruction::FSub:
3956 Result = SimplifyFSubInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00003957 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00003958 break;
Duncan Sands0a2c41682010-12-15 14:07:39 +00003959 case Instruction::Sub:
3960 Result = SimplifySubInst(I->getOperand(0), I->getOperand(1),
3961 cast<BinaryOperator>(I)->hasNoSignedWrap(),
Chandler Carruth66b31302015-01-04 12:03:27 +00003962 cast<BinaryOperator>(I)->hasNoUnsignedWrap(), DL,
3963 TLI, DT, AC, I);
Duncan Sands0a2c41682010-12-15 14:07:39 +00003964 break;
Michael Ilsemanbe9137a2012-11-27 00:46:26 +00003965 case Instruction::FMul:
3966 Result = SimplifyFMulInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00003967 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +00003968 break;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00003969 case Instruction::Mul:
Chandler Carruth66b31302015-01-04 12:03:27 +00003970 Result =
3971 SimplifyMulInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00003972 break;
Duncan Sands771e82a2011-01-28 16:51:11 +00003973 case Instruction::SDiv:
Chandler Carruth66b31302015-01-04 12:03:27 +00003974 Result = SimplifySDivInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
3975 AC, I);
Duncan Sands771e82a2011-01-28 16:51:11 +00003976 break;
3977 case Instruction::UDiv:
Chandler Carruth66b31302015-01-04 12:03:27 +00003978 Result = SimplifyUDivInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
3979 AC, I);
Duncan Sands771e82a2011-01-28 16:51:11 +00003980 break;
Frits van Bommelc2549662011-01-29 15:26:31 +00003981 case Instruction::FDiv:
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00003982 Result = SimplifyFDivInst(I->getOperand(0), I->getOperand(1),
3983 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Frits van Bommelc2549662011-01-29 15:26:31 +00003984 break;
Duncan Sandsa3e36992011-05-02 16:27:02 +00003985 case Instruction::SRem:
Chandler Carruth66b31302015-01-04 12:03:27 +00003986 Result = SimplifySRemInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
3987 AC, I);
Duncan Sandsa3e36992011-05-02 16:27:02 +00003988 break;
3989 case Instruction::URem:
Chandler Carruth66b31302015-01-04 12:03:27 +00003990 Result = SimplifyURemInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
3991 AC, I);
Duncan Sandsa3e36992011-05-02 16:27:02 +00003992 break;
3993 case Instruction::FRem:
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00003994 Result = SimplifyFRemInst(I->getOperand(0), I->getOperand(1),
3995 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Duncan Sandsa3e36992011-05-02 16:27:02 +00003996 break;
Duncan Sands7f60dc12011-01-14 00:37:45 +00003997 case Instruction::Shl:
Chris Lattner9e4aa022011-02-09 17:15:04 +00003998 Result = SimplifyShlInst(I->getOperand(0), I->getOperand(1),
3999 cast<BinaryOperator>(I)->hasNoSignedWrap(),
Chandler Carruth66b31302015-01-04 12:03:27 +00004000 cast<BinaryOperator>(I)->hasNoUnsignedWrap(), DL,
4001 TLI, DT, AC, I);
Duncan Sands7f60dc12011-01-14 00:37:45 +00004002 break;
4003 case Instruction::LShr:
Chris Lattner9e4aa022011-02-09 17:15:04 +00004004 Result = SimplifyLShrInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00004005 cast<BinaryOperator>(I)->isExact(), DL, TLI, DT,
4006 AC, I);
Duncan Sands7f60dc12011-01-14 00:37:45 +00004007 break;
4008 case Instruction::AShr:
Chris Lattner9e4aa022011-02-09 17:15:04 +00004009 Result = SimplifyAShrInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00004010 cast<BinaryOperator>(I)->isExact(), DL, TLI, DT,
4011 AC, I);
Duncan Sands7f60dc12011-01-14 00:37:45 +00004012 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00004013 case Instruction::And:
Chandler Carruth66b31302015-01-04 12:03:27 +00004014 Result =
4015 SimplifyAndInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00004016 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00004017 case Instruction::Or:
Chandler Carruth66b31302015-01-04 12:03:27 +00004018 Result =
4019 SimplifyOrInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00004020 break;
Duncan Sandsc89ac072010-11-17 18:52:15 +00004021 case Instruction::Xor:
Chandler Carruth66b31302015-01-04 12:03:27 +00004022 Result =
4023 SimplifyXorInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sandsc89ac072010-11-17 18:52:15 +00004024 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00004025 case Instruction::ICmp:
Chandler Carruth66b31302015-01-04 12:03:27 +00004026 Result =
4027 SimplifyICmpInst(cast<ICmpInst>(I)->getPredicate(), I->getOperand(0),
4028 I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00004029 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00004030 case Instruction::FCmp:
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00004031 Result = SimplifyFCmpInst(cast<FCmpInst>(I)->getPredicate(),
4032 I->getOperand(0), I->getOperand(1),
4033 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00004034 break;
Chris Lattnerc707fa92010-04-20 05:32:14 +00004035 case Instruction::Select:
Duncan Sands64e41cf2010-11-17 08:35:29 +00004036 Result = SimplifySelectInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00004037 I->getOperand(2), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00004038 break;
Chris Lattner8574aba2009-11-27 00:29:05 +00004039 case Instruction::GetElementPtr: {
4040 SmallVector<Value*, 8> Ops(I->op_begin(), I->op_end());
Chandler Carruth66b31302015-01-04 12:03:27 +00004041 Result = SimplifyGEPInst(Ops, DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00004042 break;
Chris Lattner8574aba2009-11-27 00:29:05 +00004043 }
Duncan Sandsfd26a952011-09-05 06:52:48 +00004044 case Instruction::InsertValue: {
4045 InsertValueInst *IV = cast<InsertValueInst>(I);
4046 Result = SimplifyInsertValueInst(IV->getAggregateOperand(),
4047 IV->getInsertedValueOperand(),
Chandler Carruth66b31302015-01-04 12:03:27 +00004048 IV->getIndices(), DL, TLI, DT, AC, I);
Duncan Sandsfd26a952011-09-05 06:52:48 +00004049 break;
4050 }
David Majnemer25a796e2015-07-13 01:15:46 +00004051 case Instruction::ExtractValue: {
4052 auto *EVI = cast<ExtractValueInst>(I);
4053 Result = SimplifyExtractValueInst(EVI->getAggregateOperand(),
4054 EVI->getIndices(), DL, TLI, DT, AC, I);
4055 break;
4056 }
David Majnemer599ca442015-07-13 01:15:53 +00004057 case Instruction::ExtractElement: {
4058 auto *EEI = cast<ExtractElementInst>(I);
4059 Result = SimplifyExtractElementInst(
4060 EEI->getVectorOperand(), EEI->getIndexOperand(), DL, TLI, DT, AC, I);
4061 break;
4062 }
Duncan Sands4581ddc2010-11-14 13:30:18 +00004063 case Instruction::PHI:
Chandler Carruth66b31302015-01-04 12:03:27 +00004064 Result = SimplifyPHINode(cast<PHINode>(I), Query(DL, TLI, DT, AC, I));
Duncan Sands64e41cf2010-11-17 08:35:29 +00004065 break;
Chandler Carruth9dc35582012-12-28 11:30:55 +00004066 case Instruction::Call: {
4067 CallSite CS(cast<CallInst>(I));
Chandler Carruth66b31302015-01-04 12:03:27 +00004068 Result = SimplifyCall(CS.getCalledValue(), CS.arg_begin(), CS.arg_end(), DL,
4069 TLI, DT, AC, I);
Dan Gohman85977e62011-11-04 18:32:42 +00004070 break;
Chandler Carruth9dc35582012-12-28 11:30:55 +00004071 }
Duncan Sands395ac42d2012-03-13 14:07:05 +00004072 case Instruction::Trunc:
Chandler Carruth66b31302015-01-04 12:03:27 +00004073 Result =
4074 SimplifyTruncInst(I->getOperand(0), I->getType(), DL, TLI, DT, AC, I);
Duncan Sands395ac42d2012-03-13 14:07:05 +00004075 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00004076 }
Duncan Sands64e41cf2010-11-17 08:35:29 +00004077
Hal Finkelf2199b22015-10-23 20:37:08 +00004078 // In general, it is possible for computeKnownBits to determine all bits in a
4079 // value even when the operands are not all constants.
4080 if (!Result && I->getType()->isIntegerTy()) {
4081 unsigned BitWidth = I->getType()->getScalarSizeInBits();
4082 APInt KnownZero(BitWidth, 0);
4083 APInt KnownOne(BitWidth, 0);
4084 computeKnownBits(I, KnownZero, KnownOne, DL, /*Depth*/0, AC, I, DT);
4085 if ((KnownZero | KnownOne).isAllOnesValue())
4086 Result = ConstantInt::get(I->getContext(), KnownOne);
4087 }
4088
Duncan Sands64e41cf2010-11-17 08:35:29 +00004089 /// If called on unreachable code, the above logic may report that the
4090 /// instruction simplified to itself. Make life easier for users by
Duncan Sands019a4182010-12-15 11:02:22 +00004091 /// detecting that case here, returning a safe value instead.
4092 return Result == I ? UndefValue::get(I->getType()) : Result;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00004093}
4094
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004095/// \brief Implementation of recursive simplification through an instructions
4096/// uses.
Chris Lattner852d6d62009-11-10 22:26:15 +00004097///
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004098/// This is the common implementation of the recursive simplification routines.
4099/// If we have a pre-simplified value in 'SimpleV', that is forcibly used to
4100/// replace the instruction 'I'. Otherwise, we simply add 'I' to the list of
4101/// instructions to process and attempt to simplify it using
4102/// InstructionSimplify.
4103///
4104/// This routine returns 'true' only when *it* simplifies something. The passed
4105/// in simplified value does not count toward this.
4106static bool replaceAndRecursivelySimplifyImpl(Instruction *I, Value *SimpleV,
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004107 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00004108 const DominatorTree *DT,
Chandler Carruth66b31302015-01-04 12:03:27 +00004109 AssumptionCache *AC) {
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004110 bool Simplified = false;
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00004111 SmallSetVector<Instruction *, 8> Worklist;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004112 const DataLayout &DL = I->getModule()->getDataLayout();
Duncan Sands7e800d62010-11-14 11:23:23 +00004113
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004114 // If we have an explicit value to collapse to, do that round of the
4115 // simplification loop by hand initially.
4116 if (SimpleV) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00004117 for (User *U : I->users())
4118 if (U != I)
4119 Worklist.insert(cast<Instruction>(U));
Duncan Sands7e800d62010-11-14 11:23:23 +00004120
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004121 // Replace the instruction with its simplified value.
4122 I->replaceAllUsesWith(SimpleV);
Chris Lattner19eff2a2010-07-15 06:36:08 +00004123
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004124 // Gracefully handle edge cases where the instruction is not wired into any
4125 // parent block.
4126 if (I->getParent())
4127 I->eraseFromParent();
4128 } else {
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00004129 Worklist.insert(I);
Chris Lattner852d6d62009-11-10 22:26:15 +00004130 }
Duncan Sands7e800d62010-11-14 11:23:23 +00004131
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00004132 // Note that we must test the size on each iteration, the worklist can grow.
4133 for (unsigned Idx = 0; Idx != Worklist.size(); ++Idx) {
4134 I = Worklist[Idx];
Duncan Sands7e800d62010-11-14 11:23:23 +00004135
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004136 // See if this instruction simplifies.
Chandler Carruth66b31302015-01-04 12:03:27 +00004137 SimpleV = SimplifyInstruction(I, DL, TLI, DT, AC);
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004138 if (!SimpleV)
4139 continue;
4140
4141 Simplified = true;
4142
4143 // Stash away all the uses of the old instruction so we can check them for
4144 // recursive simplifications after a RAUW. This is cheaper than checking all
4145 // uses of To on the recursive step in most cases.
Chandler Carruthcdf47882014-03-09 03:16:01 +00004146 for (User *U : I->users())
4147 Worklist.insert(cast<Instruction>(U));
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004148
4149 // Replace the instruction with its simplified value.
4150 I->replaceAllUsesWith(SimpleV);
4151
4152 // Gracefully handle edge cases where the instruction is not wired into any
4153 // parent block.
4154 if (I->getParent())
4155 I->eraseFromParent();
4156 }
4157 return Simplified;
4158}
4159
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004160bool llvm::recursivelySimplifyInstruction(Instruction *I,
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004161 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00004162 const DominatorTree *DT,
Chandler Carruth66b31302015-01-04 12:03:27 +00004163 AssumptionCache *AC) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004164 return replaceAndRecursivelySimplifyImpl(I, nullptr, TLI, DT, AC);
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004165}
4166
4167bool llvm::replaceAndRecursivelySimplify(Instruction *I, Value *SimpleV,
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004168 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00004169 const DominatorTree *DT,
Chandler Carruth66b31302015-01-04 12:03:27 +00004170 AssumptionCache *AC) {
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004171 assert(I != SimpleV && "replaceAndRecursivelySimplify(X,X) is not valid!");
4172 assert(SimpleV && "Must provide a simplified value.");
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004173 return replaceAndRecursivelySimplifyImpl(I, SimpleV, TLI, DT, AC);
Chris Lattner852d6d62009-11-10 22:26:15 +00004174}