blob: cf6aa9a116300787bd4aa72ba95681336e95b7dc [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
Duncan Sandsc1c92712011-07-26 15:03:53 +000073/// getFalse - For a boolean type, or a vector of boolean type, return false, or
74/// a vector with every element false, as appropriate for the type.
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
81/// getTrue - For a boolean type, or a vector of boolean type, return true, or
82/// a vector with every element true, as appropriate for the type.
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
Duncan Sands5ffc2982010-11-16 12:16:38 +0000103/// ValueDominatesPHI - Does the given value dominate the specified phi node?
104static 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
125 // Otherwise, if the instruction is in the entry block, and is not an invoke,
David Majnemer0bc0eef2015-08-15 02:46:08 +0000126 // and is not a catchpad, then it obviously dominates all phi nodes.
Duncan Sands5ffc2982010-11-16 12:16:38 +0000127 if (I->getParent() == &I->getParent()->getParent()->getEntryBlock() &&
David Majnemer0bc0eef2015-08-15 02:46:08 +0000128 !isa<InvokeInst>(I) && !isa<CatchPadInst>(I))
Duncan Sands5ffc2982010-11-16 12:16:38 +0000129 return true;
130
131 return false;
132}
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000133
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000134/// ExpandBinOp - Simplify "A op (B op' C)" by distributing op over op', turning
135/// it into "(A op B) op' (A op C)". Here "op" is given by Opcode and "op'" is
136/// given by OpcodeToExpand, while "A" corresponds to LHS and "B op' C" to RHS.
137/// Also performs the transform "(A op' B) op C" -> "(A op C) op' (B op C)".
138/// Returns the simplified value, or null if no simplification was performed.
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
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000196/// SimplifyAssociativeBinOp - Generic simplifications for associative binary
197/// operations. 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
Duncan Sandsb0579e92010-11-10 13:00:08 +0000293/// ThreadBinOpOverSelect - In the case of a binary operation with a select
294/// instruction as an operand, try to simplify the binop by seeing whether
295/// evaluating it on both branches of the select results in the same value.
296/// Returns the common value if so, otherwise returns null.
297static 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
365/// ThreadCmpOverSelect - In the case of a comparison with a select instruction,
366/// try to simplify the comparison by seeing whether both branches of the select
367/// result in the same value. Returns the common value if so, otherwise returns
368/// null.
369static Value *ThreadCmpOverSelect(CmpInst::Predicate Pred, Value *LHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000370 Value *RHS, const Query &Q,
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000371 unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000372 // Recursion is always used, so bail out at once if we already hit the limit.
373 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000374 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000375
Duncan Sandsb0579e92010-11-10 13:00:08 +0000376 // Make sure the select is on the LHS.
377 if (!isa<SelectInst>(LHS)) {
378 std::swap(LHS, RHS);
379 Pred = CmpInst::getSwappedPredicate(Pred);
380 }
381 assert(isa<SelectInst>(LHS) && "Not comparing with a select instruction!");
382 SelectInst *SI = cast<SelectInst>(LHS);
Duncan Sands3d5692a2011-10-30 19:56:36 +0000383 Value *Cond = SI->getCondition();
384 Value *TV = SI->getTrueValue();
385 Value *FV = SI->getFalseValue();
Duncan Sandsb0579e92010-11-10 13:00:08 +0000386
Duncan Sands06504022011-02-03 09:37:39 +0000387 // Now that we have "cmp select(Cond, TV, FV), RHS", analyse it.
Duncan Sandsb0579e92010-11-10 13:00:08 +0000388 // Does "cmp TV, RHS" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000389 Value *TCmp = SimplifyCmpInst(Pred, TV, RHS, Q, MaxRecurse);
Duncan Sands3d5692a2011-10-30 19:56:36 +0000390 if (TCmp == Cond) {
391 // It not only simplified, it simplified to the select condition. Replace
392 // it with 'true'.
393 TCmp = getTrue(Cond->getType());
394 } else if (!TCmp) {
395 // It didn't simplify. However if "cmp TV, RHS" is equal to the select
396 // condition then we can replace it with 'true'. Otherwise give up.
397 if (!isSameCompare(Cond, Pred, TV, RHS))
Craig Topper9f008862014-04-15 04:59:12 +0000398 return nullptr;
Duncan Sands3d5692a2011-10-30 19:56:36 +0000399 TCmp = getTrue(Cond->getType());
Duncan Sands06504022011-02-03 09:37:39 +0000400 }
401
Duncan Sands3d5692a2011-10-30 19:56:36 +0000402 // Does "cmp FV, RHS" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000403 Value *FCmp = SimplifyCmpInst(Pred, FV, RHS, Q, MaxRecurse);
Duncan Sands3d5692a2011-10-30 19:56:36 +0000404 if (FCmp == Cond) {
405 // It not only simplified, it simplified to the select condition. Replace
406 // it with 'false'.
407 FCmp = getFalse(Cond->getType());
408 } else if (!FCmp) {
409 // It didn't simplify. However if "cmp FV, RHS" is equal to the select
410 // condition then we can replace it with 'false'. Otherwise give up.
411 if (!isSameCompare(Cond, Pred, FV, RHS))
Craig Topper9f008862014-04-15 04:59:12 +0000412 return nullptr;
Duncan Sands3d5692a2011-10-30 19:56:36 +0000413 FCmp = getFalse(Cond->getType());
414 }
415
416 // If both sides simplified to the same value, then use it as the result of
417 // the original comparison.
418 if (TCmp == FCmp)
419 return TCmp;
Duncan Sands26641d72012-02-10 14:31:24 +0000420
421 // The remaining cases only make sense if the select condition has the same
422 // type as the result of the comparison, so bail out if this is not so.
423 if (Cond->getType()->isVectorTy() != RHS->getType()->isVectorTy())
Craig Topper9f008862014-04-15 04:59:12 +0000424 return nullptr;
Duncan Sands3d5692a2011-10-30 19:56:36 +0000425 // If the false value simplified to false, then the result of the compare
426 // is equal to "Cond && TCmp". This also catches the case when the false
427 // value simplified to false and the true value to true, returning "Cond".
428 if (match(FCmp, m_Zero()))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000429 if (Value *V = SimplifyAndInst(Cond, TCmp, Q, MaxRecurse))
Duncan Sands3d5692a2011-10-30 19:56:36 +0000430 return V;
431 // If the true value simplified to true, then the result of the compare
432 // is equal to "Cond || FCmp".
433 if (match(TCmp, m_One()))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000434 if (Value *V = SimplifyOrInst(Cond, FCmp, Q, MaxRecurse))
Duncan Sands3d5692a2011-10-30 19:56:36 +0000435 return V;
436 // Finally, if the false value simplified to true and the true value to
437 // false, then the result of the compare is equal to "!Cond".
438 if (match(FCmp, m_One()) && match(TCmp, m_Zero()))
439 if (Value *V =
440 SimplifyXorInst(Cond, Constant::getAllOnesValue(Cond->getType()),
Duncan Sandsb8cee002012-03-13 11:42:19 +0000441 Q, MaxRecurse))
Duncan Sands3d5692a2011-10-30 19:56:36 +0000442 return V;
443
Craig Topper9f008862014-04-15 04:59:12 +0000444 return nullptr;
Duncan Sandsb0579e92010-11-10 13:00:08 +0000445}
446
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000447/// ThreadBinOpOverPHI - In the case of a binary operation with an operand that
448/// is a PHI instruction, try to simplify the binop by seeing whether evaluating
449/// it on the incoming phi values yields the same result for every value. If so
450/// returns the common value, otherwise returns null.
451static Value *ThreadBinOpOverPHI(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000452 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000453 // Recursion is always used, so bail out at once if we already hit the limit.
454 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000455 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000456
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000457 PHINode *PI;
458 if (isa<PHINode>(LHS)) {
459 PI = cast<PHINode>(LHS);
Duncan Sands5ffc2982010-11-16 12:16:38 +0000460 // Bail out if RHS and the phi may be mutually interdependent due to a loop.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000461 if (!ValueDominatesPHI(RHS, PI, Q.DT))
Craig Topper9f008862014-04-15 04:59:12 +0000462 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000463 } else {
464 assert(isa<PHINode>(RHS) && "No PHI instruction operand!");
465 PI = cast<PHINode>(RHS);
Duncan Sands5ffc2982010-11-16 12:16:38 +0000466 // Bail out if LHS and the phi may be mutually interdependent due to a loop.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000467 if (!ValueDominatesPHI(LHS, PI, Q.DT))
Craig Topper9f008862014-04-15 04:59:12 +0000468 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000469 }
470
471 // Evaluate the BinOp on the incoming phi values.
Craig Topper9f008862014-04-15 04:59:12 +0000472 Value *CommonValue = nullptr;
Pete Cooper833f34d2015-05-12 20:05:31 +0000473 for (Value *Incoming : PI->incoming_values()) {
Duncan Sands7412f6e2010-11-17 04:30:22 +0000474 // If the incoming value is the phi node itself, it can safely be skipped.
Duncan Sandsf12ba1d2010-11-15 17:52:45 +0000475 if (Incoming == PI) continue;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000476 Value *V = PI == LHS ?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000477 SimplifyBinOp(Opcode, Incoming, RHS, Q, MaxRecurse) :
478 SimplifyBinOp(Opcode, LHS, Incoming, Q, MaxRecurse);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000479 // If the operation failed to simplify, or simplified to a different value
480 // to previously, then give up.
481 if (!V || (CommonValue && V != CommonValue))
Craig Topper9f008862014-04-15 04:59:12 +0000482 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000483 CommonValue = V;
484 }
485
486 return CommonValue;
487}
488
489/// ThreadCmpOverPHI - In the case of a comparison with a PHI instruction, try
490/// try to simplify the comparison by seeing whether comparing with all of the
491/// incoming phi values yields the same result every time. If so returns the
492/// common result, otherwise returns null.
493static Value *ThreadCmpOverPHI(CmpInst::Predicate Pred, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000494 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000495 // Recursion is always used, so bail out at once if we already hit the limit.
496 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000497 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000498
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000499 // Make sure the phi is on the LHS.
500 if (!isa<PHINode>(LHS)) {
501 std::swap(LHS, RHS);
502 Pred = CmpInst::getSwappedPredicate(Pred);
503 }
504 assert(isa<PHINode>(LHS) && "Not comparing with a phi instruction!");
505 PHINode *PI = cast<PHINode>(LHS);
506
Duncan Sands5ffc2982010-11-16 12:16:38 +0000507 // Bail out if RHS and the phi may be mutually interdependent due to a loop.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000508 if (!ValueDominatesPHI(RHS, PI, Q.DT))
Craig Topper9f008862014-04-15 04:59:12 +0000509 return nullptr;
Duncan Sands5ffc2982010-11-16 12:16:38 +0000510
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000511 // Evaluate the BinOp on the incoming phi values.
Craig Topper9f008862014-04-15 04:59:12 +0000512 Value *CommonValue = nullptr;
Pete Cooper833f34d2015-05-12 20:05:31 +0000513 for (Value *Incoming : PI->incoming_values()) {
Duncan Sands7412f6e2010-11-17 04:30:22 +0000514 // If the incoming value is the phi node itself, it can safely be skipped.
Duncan Sandsf12ba1d2010-11-15 17:52:45 +0000515 if (Incoming == PI) continue;
Duncan Sandsb8cee002012-03-13 11:42:19 +0000516 Value *V = SimplifyCmpInst(Pred, Incoming, RHS, Q, MaxRecurse);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000517 // If the operation failed to simplify, or simplified to a different value
518 // to previously, then give up.
519 if (!V || (CommonValue && V != CommonValue))
Craig Topper9f008862014-04-15 04:59:12 +0000520 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000521 CommonValue = V;
522 }
523
524 return CommonValue;
525}
526
Chris Lattner3d9823b2009-11-27 17:42:22 +0000527/// SimplifyAddInst - Given operands for an Add, see if we can
528/// fold the result. If not, this returns null.
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000529static Value *SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000530 const Query &Q, unsigned MaxRecurse) {
Chris Lattner3d9823b2009-11-27 17:42:22 +0000531 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
532 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
533 Constant *Ops[] = { CLHS, CRHS };
Duncan Sandsb8cee002012-03-13 11:42:19 +0000534 return ConstantFoldInstOperands(Instruction::Add, CLHS->getType(), Ops,
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000535 Q.DL, Q.TLI);
Chris Lattner3d9823b2009-11-27 17:42:22 +0000536 }
Duncan Sands7e800d62010-11-14 11:23:23 +0000537
Chris Lattner3d9823b2009-11-27 17:42:22 +0000538 // Canonicalize the constant to the RHS.
539 std::swap(Op0, Op1);
540 }
Duncan Sands7e800d62010-11-14 11:23:23 +0000541
Duncan Sands0a2c41682010-12-15 14:07:39 +0000542 // X + undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000543 if (match(Op1, m_Undef()))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000544 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +0000545
Duncan Sands0a2c41682010-12-15 14:07:39 +0000546 // X + 0 -> X
547 if (match(Op1, m_Zero()))
548 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +0000549
Duncan Sands0a2c41682010-12-15 14:07:39 +0000550 // X + (Y - X) -> Y
551 // (Y - X) + X -> Y
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000552 // Eg: X + -X -> 0
Craig Topper9f008862014-04-15 04:59:12 +0000553 Value *Y = nullptr;
Duncan Sands772749a2011-01-01 20:08:02 +0000554 if (match(Op1, m_Sub(m_Value(Y), m_Specific(Op0))) ||
555 match(Op0, m_Sub(m_Value(Y), m_Specific(Op1))))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000556 return Y;
557
558 // X + ~X -> -1 since ~X = -X-1
Duncan Sands772749a2011-01-01 20:08:02 +0000559 if (match(Op0, m_Not(m_Specific(Op1))) ||
560 match(Op1, m_Not(m_Specific(Op0))))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000561 return Constant::getAllOnesValue(Op0->getType());
Duncan Sandsb238de02010-11-19 09:20:39 +0000562
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000563 /// i1 add -> xor.
Duncan Sands5def0d62010-12-21 14:48:48 +0000564 if (MaxRecurse && Op0->getType()->isIntegerTy(1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000565 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sandsfecc6422010-12-21 15:03:43 +0000566 return V;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000567
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000568 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000569 if (Value *V = SimplifyAssociativeBinOp(Instruction::Add, Op0, Op1, Q,
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000570 MaxRecurse))
571 return V;
572
Duncan Sandsb238de02010-11-19 09:20:39 +0000573 // Threading Add over selects and phi nodes is pointless, so don't bother.
574 // Threading over the select in "A + select(cond, B, C)" means evaluating
575 // "A+B" and "A+C" and seeing if they are equal; but they are equal if and
576 // only if B and C are equal. If B and C are equal then (since we assume
577 // that operands have already been simplified) "select(cond, B, C)" should
578 // have been simplified to the common value of B and C already. Analysing
579 // "A+B" and "A+C" thus gains nothing, but costs compile time. Similarly
580 // for threading over phi nodes.
581
Craig Topper9f008862014-04-15 04:59:12 +0000582 return nullptr;
Chris Lattner3d9823b2009-11-27 17:42:22 +0000583}
584
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000585Value *llvm::SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000586 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +0000587 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +0000588 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +0000589 return ::SimplifyAddInst(Op0, Op1, isNSW, isNUW, Query(DL, TLI, DT, AC, CxtI),
590 RecursionLimit);
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000591}
592
Chandler Carrutha0796552012-03-12 11:19:31 +0000593/// \brief Compute the base pointer and cumulative constant offsets for V.
594///
595/// This strips all constant offsets off of V, leaving it the base pointer, and
596/// accumulates the total constant offset applied in the returned constant. It
597/// returns 0 if V is not a pointer, and returns the constant '0' if there are
598/// no constant offsets applied.
Dan Gohman36fa8392013-01-31 02:45:26 +0000599///
600/// This is very similar to GetPointerBaseWithConstantOffset except it doesn't
601/// follow non-inbounds geps. This allows it to remain usable for icmp ult/etc.
602/// folding.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000603static Constant *stripAndComputeConstantOffsets(const DataLayout &DL, Value *&V,
Benjamin Kramer942dfe62013-09-23 14:16:38 +0000604 bool AllowNonInbounds = false) {
Benjamin Kramerc05aa952013-02-01 15:21:10 +0000605 assert(V->getType()->getScalarType()->isPointerTy());
Chandler Carrutha0796552012-03-12 11:19:31 +0000606
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000607 Type *IntPtrTy = DL.getIntPtrType(V->getType())->getScalarType();
Matt Arsenault2f9cce22013-08-03 01:03:12 +0000608 APInt Offset = APInt::getNullValue(IntPtrTy->getIntegerBitWidth());
Chandler Carrutha0796552012-03-12 11:19:31 +0000609
610 // Even though we don't look through PHI nodes, we could be called on an
611 // instruction in an unreachable block, which may be on a cycle.
612 SmallPtrSet<Value *, 4> Visited;
613 Visited.insert(V);
614 do {
615 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
Benjamin Kramer942dfe62013-09-23 14:16:38 +0000616 if ((!AllowNonInbounds && !GEP->isInBounds()) ||
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000617 !GEP->accumulateConstantOffset(DL, Offset))
Chandler Carrutha0796552012-03-12 11:19:31 +0000618 break;
Chandler Carrutha0796552012-03-12 11:19:31 +0000619 V = GEP->getPointerOperand();
620 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
Matt Arsenault2f9cce22013-08-03 01:03:12 +0000621 V = cast<Operator>(V)->getOperand(0);
Chandler Carrutha0796552012-03-12 11:19:31 +0000622 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) {
623 if (GA->mayBeOverridden())
624 break;
625 V = GA->getAliasee();
626 } else {
627 break;
628 }
Benjamin Kramerc05aa952013-02-01 15:21:10 +0000629 assert(V->getType()->getScalarType()->isPointerTy() &&
630 "Unexpected operand type!");
David Blaikie70573dc2014-11-19 07:49:26 +0000631 } while (Visited.insert(V).second);
Chandler Carrutha0796552012-03-12 11:19:31 +0000632
Benjamin Kramerc05aa952013-02-01 15:21:10 +0000633 Constant *OffsetIntPtr = ConstantInt::get(IntPtrTy, Offset);
634 if (V->getType()->isVectorTy())
635 return ConstantVector::getSplat(V->getType()->getVectorNumElements(),
636 OffsetIntPtr);
637 return OffsetIntPtr;
Chandler Carrutha0796552012-03-12 11:19:31 +0000638}
639
640/// \brief Compute the constant difference between two pointer values.
641/// If the difference is not a constant, returns zero.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000642static Constant *computePointerDifference(const DataLayout &DL, Value *LHS,
643 Value *RHS) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000644 Constant *LHSOffset = stripAndComputeConstantOffsets(DL, LHS);
645 Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS);
Chandler Carrutha0796552012-03-12 11:19:31 +0000646
647 // If LHS and RHS are not related via constant offsets to the same base
648 // value, there is nothing we can do here.
649 if (LHS != RHS)
Craig Topper9f008862014-04-15 04:59:12 +0000650 return nullptr;
Chandler Carrutha0796552012-03-12 11:19:31 +0000651
652 // Otherwise, the difference of LHS - RHS can be computed as:
653 // LHS - RHS
654 // = (LHSOffset + Base) - (RHSOffset + Base)
655 // = LHSOffset - RHSOffset
656 return ConstantExpr::getSub(LHSOffset, RHSOffset);
657}
658
Duncan Sands0a2c41682010-12-15 14:07:39 +0000659/// SimplifySubInst - Given operands for a Sub, see if we can
660/// fold the result. If not, this returns null.
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000661static Value *SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000662 const Query &Q, unsigned MaxRecurse) {
Duncan Sands0a2c41682010-12-15 14:07:39 +0000663 if (Constant *CLHS = dyn_cast<Constant>(Op0))
664 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
665 Constant *Ops[] = { CLHS, CRHS };
666 return ConstantFoldInstOperands(Instruction::Sub, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000667 Ops, Q.DL, Q.TLI);
Duncan Sands0a2c41682010-12-15 14:07:39 +0000668 }
669
670 // X - undef -> undef
671 // undef - X -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000672 if (match(Op0, m_Undef()) || match(Op1, m_Undef()))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000673 return UndefValue::get(Op0->getType());
674
675 // X - 0 -> X
676 if (match(Op1, m_Zero()))
677 return Op0;
678
679 // X - X -> 0
Duncan Sands772749a2011-01-01 20:08:02 +0000680 if (Op0 == Op1)
Duncan Sands0a2c41682010-12-15 14:07:39 +0000681 return Constant::getNullValue(Op0->getType());
682
David Majnemer4efa9ff2014-11-22 07:15:16 +0000683 // 0 - X -> 0 if the sub is NUW.
684 if (isNUW && match(Op0, m_Zero()))
685 return Op0;
David Majnemercd4fbcd2014-07-31 04:49:18 +0000686
Duncan Sands99589d02011-01-18 11:50:19 +0000687 // (X + Y) - Z -> X + (Y - Z) or Y + (X - Z) if everything simplifies.
688 // For example, (X + Y) - Y -> X; (Y + X) - Y -> X
Dinesh Dwivedi99281a02014-06-26 08:57:33 +0000689 Value *X = nullptr, *Y = nullptr, *Z = Op1;
Duncan Sands99589d02011-01-18 11:50:19 +0000690 if (MaxRecurse && match(Op0, m_Add(m_Value(X), m_Value(Y)))) { // (X + Y) - Z
691 // See if "V === Y - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000692 if (Value *V = SimplifyBinOp(Instruction::Sub, Y, Z, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000693 // It does! Now see if "X + V" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000694 if (Value *W = SimplifyBinOp(Instruction::Add, X, V, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000695 // It does, we successfully reassociated!
696 ++NumReassoc;
697 return W;
698 }
699 // See if "V === X - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000700 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Z, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000701 // It does! Now see if "Y + V" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000702 if (Value *W = SimplifyBinOp(Instruction::Add, Y, V, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000703 // It does, we successfully reassociated!
704 ++NumReassoc;
705 return W;
706 }
707 }
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000708
Duncan Sands99589d02011-01-18 11:50:19 +0000709 // X - (Y + Z) -> (X - Y) - Z or (X - Z) - Y if everything simplifies.
710 // For example, X - (X + 1) -> -1
711 X = Op0;
712 if (MaxRecurse && match(Op1, m_Add(m_Value(Y), m_Value(Z)))) { // X - (Y + Z)
713 // See if "V === X - Y" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000714 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Y, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000715 // It does! Now see if "V - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000716 if (Value *W = SimplifyBinOp(Instruction::Sub, V, Z, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000717 // It does, we successfully reassociated!
718 ++NumReassoc;
719 return W;
720 }
721 // See if "V === X - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000722 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Z, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000723 // It does! Now see if "V - Y" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000724 if (Value *W = SimplifyBinOp(Instruction::Sub, V, Y, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000725 // It does, we successfully reassociated!
726 ++NumReassoc;
727 return W;
728 }
729 }
730
731 // Z - (X - Y) -> (Z - X) + Y if everything simplifies.
732 // For example, X - (X - Y) -> Y.
733 Z = Op0;
Duncan Sandsd6f1a952011-01-14 15:26:10 +0000734 if (MaxRecurse && match(Op1, m_Sub(m_Value(X), m_Value(Y)))) // Z - (X - Y)
735 // See if "V === Z - X" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000736 if (Value *V = SimplifyBinOp(Instruction::Sub, Z, X, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000737 // It does! Now see if "V + Y" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000738 if (Value *W = SimplifyBinOp(Instruction::Add, V, Y, Q, MaxRecurse-1)) {
Duncan Sandsd6f1a952011-01-14 15:26:10 +0000739 // It does, we successfully reassociated!
740 ++NumReassoc;
741 return W;
742 }
743
Duncan Sands395ac42d2012-03-13 14:07:05 +0000744 // trunc(X) - trunc(Y) -> trunc(X - Y) if everything simplifies.
745 if (MaxRecurse && match(Op0, m_Trunc(m_Value(X))) &&
746 match(Op1, m_Trunc(m_Value(Y))))
747 if (X->getType() == Y->getType())
748 // See if "V === X - Y" simplifies.
749 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Y, Q, MaxRecurse-1))
750 // It does! Now see if "trunc V" simplifies.
751 if (Value *W = SimplifyTruncInst(V, Op0->getType(), Q, MaxRecurse-1))
752 // It does, return the simplified "trunc V".
753 return W;
754
755 // Variations on GEP(base, I, ...) - GEP(base, i, ...) -> GEP(null, I-i, ...).
Dan Gohman18c77a12013-01-31 02:50:36 +0000756 if (match(Op0, m_PtrToInt(m_Value(X))) &&
Duncan Sands395ac42d2012-03-13 14:07:05 +0000757 match(Op1, m_PtrToInt(m_Value(Y))))
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000758 if (Constant *Result = computePointerDifference(Q.DL, X, Y))
Duncan Sands395ac42d2012-03-13 14:07:05 +0000759 return ConstantExpr::getIntegerCast(Result, Op0->getType(), true);
760
Duncan Sands99589d02011-01-18 11:50:19 +0000761 // i1 sub -> xor.
762 if (MaxRecurse && Op0->getType()->isIntegerTy(1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000763 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000764 return V;
765
Duncan Sands0a2c41682010-12-15 14:07:39 +0000766 // Threading Sub over selects and phi nodes is pointless, so don't bother.
767 // Threading over the select in "A - select(cond, B, C)" means evaluating
768 // "A-B" and "A-C" and seeing if they are equal; but they are equal if and
769 // only if B and C are equal. If B and C are equal then (since we assume
770 // that operands have already been simplified) "select(cond, B, C)" should
771 // have been simplified to the common value of B and C already. Analysing
772 // "A-B" and "A-C" thus gains nothing, but costs compile time. Similarly
773 // for threading over phi nodes.
774
Craig Topper9f008862014-04-15 04:59:12 +0000775 return nullptr;
Duncan Sands0a2c41682010-12-15 14:07:39 +0000776}
777
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000778Value *llvm::SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000779 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +0000780 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +0000781 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +0000782 return ::SimplifySubInst(Op0, Op1, isNSW, isNUW, Query(DL, TLI, DT, AC, CxtI),
783 RecursionLimit);
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000784}
785
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000786/// Given operands for an FAdd, see if we can fold the result. If not, this
787/// returns null.
788static Value *SimplifyFAddInst(Value *Op0, Value *Op1, FastMathFlags FMF,
789 const Query &Q, unsigned MaxRecurse) {
790 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
791 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
792 Constant *Ops[] = { CLHS, CRHS };
793 return ConstantFoldInstOperands(Instruction::FAdd, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000794 Ops, Q.DL, Q.TLI);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000795 }
796
797 // Canonicalize the constant to the RHS.
798 std::swap(Op0, Op1);
799 }
800
801 // fadd X, -0 ==> X
802 if (match(Op1, m_NegZero()))
803 return Op0;
804
805 // fadd X, 0 ==> X, when we know X is not -0
806 if (match(Op1, m_Zero()) &&
807 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0)))
808 return Op0;
809
810 // fadd [nnan ninf] X, (fsub [nnan ninf] 0, X) ==> 0
811 // where nnan and ninf have to occur at least once somewhere in this
812 // expression
Craig Topper9f008862014-04-15 04:59:12 +0000813 Value *SubOp = nullptr;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000814 if (match(Op1, m_FSub(m_AnyZero(), m_Specific(Op0))))
815 SubOp = Op1;
816 else if (match(Op0, m_FSub(m_AnyZero(), m_Specific(Op1))))
817 SubOp = Op0;
818 if (SubOp) {
819 Instruction *FSub = cast<Instruction>(SubOp);
820 if ((FMF.noNaNs() || FSub->hasNoNaNs()) &&
821 (FMF.noInfs() || FSub->hasNoInfs()))
822 return Constant::getNullValue(Op0->getType());
823 }
824
Craig Topper9f008862014-04-15 04:59:12 +0000825 return nullptr;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000826}
827
828/// Given operands for an FSub, see if we can fold the result. If not, this
829/// returns null.
830static Value *SimplifyFSubInst(Value *Op0, Value *Op1, FastMathFlags FMF,
831 const Query &Q, unsigned MaxRecurse) {
832 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
833 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
834 Constant *Ops[] = { CLHS, CRHS };
835 return ConstantFoldInstOperands(Instruction::FSub, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000836 Ops, Q.DL, Q.TLI);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000837 }
838 }
839
840 // fsub X, 0 ==> X
841 if (match(Op1, m_Zero()))
842 return Op0;
843
844 // fsub X, -0 ==> X, when we know X is not -0
845 if (match(Op1, m_NegZero()) &&
846 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0)))
847 return Op0;
848
849 // fsub 0, (fsub -0.0, X) ==> X
850 Value *X;
851 if (match(Op0, m_AnyZero())) {
852 if (match(Op1, m_FSub(m_NegZero(), m_Value(X))))
853 return X;
854 if (FMF.noSignedZeros() && match(Op1, m_FSub(m_AnyZero(), m_Value(X))))
855 return X;
856 }
857
Benjamin Kramer228680d2015-06-14 21:01:20 +0000858 // fsub nnan x, x ==> 0.0
859 if (FMF.noNaNs() && Op0 == Op1)
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000860 return Constant::getNullValue(Op0->getType());
861
Craig Topper9f008862014-04-15 04:59:12 +0000862 return nullptr;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000863}
864
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000865/// Given the operands for an FMul, see if we can fold the result
866static Value *SimplifyFMulInst(Value *Op0, Value *Op1,
867 FastMathFlags FMF,
868 const Query &Q,
869 unsigned MaxRecurse) {
870 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
871 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
872 Constant *Ops[] = { CLHS, CRHS };
873 return ConstantFoldInstOperands(Instruction::FMul, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000874 Ops, Q.DL, Q.TLI);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000875 }
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000876
877 // Canonicalize the constant to the RHS.
878 std::swap(Op0, Op1);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000879 }
880
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000881 // fmul X, 1.0 ==> X
882 if (match(Op1, m_FPOne()))
883 return Op0;
884
885 // fmul nnan nsz X, 0 ==> 0
886 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op1, m_AnyZero()))
887 return Op1;
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000888
Craig Topper9f008862014-04-15 04:59:12 +0000889 return nullptr;
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000890}
891
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000892/// SimplifyMulInst - Given operands for a Mul, see if we can
893/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000894static Value *SimplifyMulInst(Value *Op0, Value *Op1, const Query &Q,
895 unsigned MaxRecurse) {
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000896 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
897 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
898 Constant *Ops[] = { CLHS, CRHS };
899 return ConstantFoldInstOperands(Instruction::Mul, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000900 Ops, Q.DL, Q.TLI);
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000901 }
902
903 // Canonicalize the constant to the RHS.
904 std::swap(Op0, Op1);
905 }
906
907 // X * undef -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000908 if (match(Op1, m_Undef()))
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000909 return Constant::getNullValue(Op0->getType());
910
911 // X * 0 -> 0
912 if (match(Op1, m_Zero()))
913 return Op1;
914
915 // X * 1 -> X
916 if (match(Op1, m_One()))
917 return Op0;
918
Duncan Sandsb67edc62011-01-30 18:03:50 +0000919 // (X / Y) * Y -> X if the division is exact.
Craig Topper9f008862014-04-15 04:59:12 +0000920 Value *X = nullptr;
Benjamin Kramer9442cd02012-01-01 17:55:30 +0000921 if (match(Op0, m_Exact(m_IDiv(m_Value(X), m_Specific(Op1)))) || // (X / Y) * Y
922 match(Op1, m_Exact(m_IDiv(m_Value(X), m_Specific(Op0))))) // Y * (X / Y)
923 return X;
Duncan Sandsb67edc62011-01-30 18:03:50 +0000924
Nick Lewyckyb89d9a42011-01-29 19:55:23 +0000925 // i1 mul -> and.
Duncan Sands5def0d62010-12-21 14:48:48 +0000926 if (MaxRecurse && Op0->getType()->isIntegerTy(1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000927 if (Value *V = SimplifyAndInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sandsfecc6422010-12-21 15:03:43 +0000928 return V;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000929
930 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000931 if (Value *V = SimplifyAssociativeBinOp(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000932 MaxRecurse))
933 return V;
934
935 // Mul distributes over Add. Try some generic simplifications based on this.
936 if (Value *V = ExpandBinOp(Instruction::Mul, Op0, Op1, Instruction::Add,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000937 Q, MaxRecurse))
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000938 return V;
939
940 // If the operation is with the result of a select instruction, check whether
941 // operating on either branch of the select always yields the same value.
942 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000943 if (Value *V = ThreadBinOpOverSelect(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000944 MaxRecurse))
945 return V;
946
947 // If the operation is with the result of a phi instruction, check whether
948 // operating on all incoming values of the phi always yields the same value.
949 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000950 if (Value *V = ThreadBinOpOverPHI(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000951 MaxRecurse))
952 return V;
953
Craig Topper9f008862014-04-15 04:59:12 +0000954 return nullptr;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000955}
956
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000957Value *llvm::SimplifyFAddInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000958 const DataLayout &DL,
Chandler Carruth66b31302015-01-04 12:03:27 +0000959 const TargetLibraryInfo *TLI,
960 const DominatorTree *DT, AssumptionCache *AC,
961 const Instruction *CxtI) {
962 return ::SimplifyFAddInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +0000963 RecursionLimit);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000964}
965
966Value *llvm::SimplifyFSubInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000967 const DataLayout &DL,
Chandler Carruth66b31302015-01-04 12:03:27 +0000968 const TargetLibraryInfo *TLI,
969 const DominatorTree *DT, AssumptionCache *AC,
970 const Instruction *CxtI) {
971 return ::SimplifyFSubInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +0000972 RecursionLimit);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000973}
974
Chandler Carruth66b31302015-01-04 12:03:27 +0000975Value *llvm::SimplifyFMulInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000976 const DataLayout &DL,
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000977 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +0000978 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +0000979 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +0000980 return ::SimplifyFMulInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +0000981 RecursionLimit);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000982}
983
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000984Value *llvm::SimplifyMulInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +0000985 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +0000986 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +0000987 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +0000988 return ::SimplifyMulInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +0000989 RecursionLimit);
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000990}
991
Duncan Sands771e82a2011-01-28 16:51:11 +0000992/// SimplifyDiv - Given operands for an SDiv or UDiv, see if we can
993/// fold the result. If not, this returns null.
Anders Carlsson36c6d232011-02-05 18:33:43 +0000994static Value *SimplifyDiv(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000995 const Query &Q, unsigned MaxRecurse) {
Duncan Sands771e82a2011-01-28 16:51:11 +0000996 if (Constant *C0 = dyn_cast<Constant>(Op0)) {
997 if (Constant *C1 = dyn_cast<Constant>(Op1)) {
998 Constant *Ops[] = { C0, C1 };
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000999 return ConstantFoldInstOperands(Opcode, C0->getType(), Ops, Q.DL, Q.TLI);
Duncan Sands771e82a2011-01-28 16:51:11 +00001000 }
1001 }
1002
Duncan Sands65995fa2011-01-28 18:50:50 +00001003 bool isSigned = Opcode == Instruction::SDiv;
1004
Duncan Sands771e82a2011-01-28 16:51:11 +00001005 // X / undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001006 if (match(Op1, m_Undef()))
Duncan Sands771e82a2011-01-28 16:51:11 +00001007 return Op1;
1008
David Majnemer71dc8fb2014-12-10 07:52:18 +00001009 // X / 0 -> undef, we don't need to preserve faults!
1010 if (match(Op1, m_Zero()))
1011 return UndefValue::get(Op1->getType());
1012
Duncan Sands771e82a2011-01-28 16:51:11 +00001013 // undef / X -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001014 if (match(Op0, m_Undef()))
Duncan Sands771e82a2011-01-28 16:51:11 +00001015 return Constant::getNullValue(Op0->getType());
1016
1017 // 0 / X -> 0, we don't need to preserve faults!
1018 if (match(Op0, m_Zero()))
1019 return Op0;
1020
1021 // X / 1 -> X
1022 if (match(Op1, m_One()))
1023 return Op0;
Duncan Sands771e82a2011-01-28 16:51:11 +00001024
1025 if (Op0->getType()->isIntegerTy(1))
1026 // It can't be division by zero, hence it must be division by one.
1027 return Op0;
1028
1029 // X / X -> 1
1030 if (Op0 == Op1)
1031 return ConstantInt::get(Op0->getType(), 1);
1032
1033 // (X * Y) / Y -> X if the multiplication does not overflow.
Craig Topper9f008862014-04-15 04:59:12 +00001034 Value *X = nullptr, *Y = nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001035 if (match(Op0, m_Mul(m_Value(X), m_Value(Y))) && (X == Op1 || Y == Op1)) {
1036 if (Y != Op1) std::swap(X, Y); // Ensure expression is (X * Y) / Y, Y = Op1
Duncan Sands7cb61e52011-10-27 19:16:21 +00001037 OverflowingBinaryOperator *Mul = cast<OverflowingBinaryOperator>(Op0);
Duncan Sands5747aba2011-02-02 20:52:00 +00001038 // If the Mul knows it does not overflow, then we are good to go.
1039 if ((isSigned && Mul->hasNoSignedWrap()) ||
1040 (!isSigned && Mul->hasNoUnsignedWrap()))
1041 return X;
Duncan Sands771e82a2011-01-28 16:51:11 +00001042 // If X has the form X = A / Y then X * Y cannot overflow.
1043 if (BinaryOperator *Div = dyn_cast<BinaryOperator>(X))
1044 if (Div->getOpcode() == Opcode && Div->getOperand(1) == Y)
1045 return X;
1046 }
1047
Duncan Sands65995fa2011-01-28 18:50:50 +00001048 // (X rem Y) / Y -> 0
1049 if ((isSigned && match(Op0, m_SRem(m_Value(), m_Specific(Op1)))) ||
1050 (!isSigned && match(Op0, m_URem(m_Value(), m_Specific(Op1)))))
1051 return Constant::getNullValue(Op0->getType());
1052
David Majnemercb9d5962014-10-11 10:20:01 +00001053 // (X /u C1) /u C2 -> 0 if C1 * C2 overflow
1054 ConstantInt *C1, *C2;
1055 if (!isSigned && match(Op0, m_UDiv(m_Value(X), m_ConstantInt(C1))) &&
1056 match(Op1, m_ConstantInt(C2))) {
1057 bool Overflow;
1058 C1->getValue().umul_ov(C2->getValue(), Overflow);
1059 if (Overflow)
1060 return Constant::getNullValue(Op0->getType());
1061 }
1062
Duncan Sands65995fa2011-01-28 18:50:50 +00001063 // If the operation is with the result of a select instruction, check whether
1064 // operating on either branch of the select always yields the same value.
1065 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001066 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands65995fa2011-01-28 18:50:50 +00001067 return V;
1068
1069 // If the operation is with the result of a phi instruction, check whether
1070 // operating on all incoming values of the phi always yields the same value.
1071 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001072 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands65995fa2011-01-28 18:50:50 +00001073 return V;
1074
Craig Topper9f008862014-04-15 04:59:12 +00001075 return nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001076}
1077
1078/// SimplifySDivInst - Given operands for an SDiv, see if we can
1079/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001080static Value *SimplifySDivInst(Value *Op0, Value *Op1, const Query &Q,
1081 unsigned MaxRecurse) {
1082 if (Value *V = SimplifyDiv(Instruction::SDiv, Op0, Op1, Q, MaxRecurse))
Duncan Sands771e82a2011-01-28 16:51:11 +00001083 return V;
1084
Craig Topper9f008862014-04-15 04:59:12 +00001085 return nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001086}
1087
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001088Value *llvm::SimplifySDivInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001089 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001090 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001091 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001092 return ::SimplifySDivInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001093 RecursionLimit);
Duncan Sands771e82a2011-01-28 16:51:11 +00001094}
1095
1096/// SimplifyUDivInst - Given operands for a UDiv, see if we can
1097/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001098static Value *SimplifyUDivInst(Value *Op0, Value *Op1, const Query &Q,
1099 unsigned MaxRecurse) {
1100 if (Value *V = SimplifyDiv(Instruction::UDiv, Op0, Op1, Q, MaxRecurse))
Duncan Sands771e82a2011-01-28 16:51:11 +00001101 return V;
1102
Craig Topper9f008862014-04-15 04:59:12 +00001103 return nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001104}
1105
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001106Value *llvm::SimplifyUDivInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001107 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001108 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001109 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001110 return ::SimplifyUDivInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001111 RecursionLimit);
Duncan Sands771e82a2011-01-28 16:51:11 +00001112}
1113
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001114static Value *SimplifyFDivInst(Value *Op0, Value *Op1, FastMathFlags FMF,
1115 const Query &Q, unsigned) {
Frits van Bommelc2549662011-01-29 15:26:31 +00001116 // undef / X -> undef (the undef could be a snan).
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001117 if (match(Op0, m_Undef()))
Frits van Bommelc2549662011-01-29 15:26:31 +00001118 return Op0;
1119
1120 // X / undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001121 if (match(Op1, m_Undef()))
Frits van Bommelc2549662011-01-29 15:26:31 +00001122 return Op1;
1123
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001124 // 0 / X -> 0
1125 // Requires that NaNs are off (X could be zero) and signed zeroes are
1126 // ignored (X could be positive or negative, so the output sign is unknown).
1127 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op0, m_AnyZero()))
1128 return Op0;
1129
Benjamin Kramer1ee59cb2015-06-16 14:57:29 +00001130 if (FMF.noNaNs()) {
1131 // X / X -> 1.0 is legal when NaNs are ignored.
Benjamin Kramer4f052462015-06-14 18:53:58 +00001132 if (Op0 == Op1)
1133 return ConstantFP::get(Op0->getType(), 1.0);
1134
1135 // -X / X -> -1.0 and
Benjamin Kramer1ee59cb2015-06-16 14:57:29 +00001136 // X / -X -> -1.0 are legal when NaNs are ignored.
Benjamin Kramer4f052462015-06-14 18:53:58 +00001137 // We can ignore signed zeros because +-0.0/+-0.0 is NaN and ignored.
1138 if ((BinaryOperator::isFNeg(Op0, /*IgnoreZeroSign=*/true) &&
1139 BinaryOperator::getFNegArgument(Op0) == Op1) ||
1140 (BinaryOperator::isFNeg(Op1, /*IgnoreZeroSign=*/true) &&
1141 BinaryOperator::getFNegArgument(Op1) == Op0))
1142 return ConstantFP::get(Op0->getType(), -1.0);
1143 }
1144
Craig Topper9f008862014-04-15 04:59:12 +00001145 return nullptr;
Frits van Bommelc2549662011-01-29 15:26:31 +00001146}
1147
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001148Value *llvm::SimplifyFDivInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001149 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001150 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001151 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001152 const Instruction *CxtI) {
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001153 return ::SimplifyFDivInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001154 RecursionLimit);
Frits van Bommelc2549662011-01-29 15:26:31 +00001155}
1156
Duncan Sandsa3e36992011-05-02 16:27:02 +00001157/// SimplifyRem - Given operands for an SRem or URem, see if we can
1158/// fold the result. If not, this returns null.
1159static Value *SimplifyRem(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001160 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsa3e36992011-05-02 16:27:02 +00001161 if (Constant *C0 = dyn_cast<Constant>(Op0)) {
1162 if (Constant *C1 = dyn_cast<Constant>(Op1)) {
1163 Constant *Ops[] = { C0, C1 };
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001164 return ConstantFoldInstOperands(Opcode, C0->getType(), Ops, Q.DL, Q.TLI);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001165 }
1166 }
1167
Duncan Sandsa3e36992011-05-02 16:27:02 +00001168 // X % undef -> undef
1169 if (match(Op1, m_Undef()))
1170 return Op1;
1171
1172 // undef % X -> 0
1173 if (match(Op0, m_Undef()))
1174 return Constant::getNullValue(Op0->getType());
1175
1176 // 0 % X -> 0, we don't need to preserve faults!
1177 if (match(Op0, m_Zero()))
1178 return Op0;
1179
1180 // X % 0 -> undef, we don't need to preserve faults!
1181 if (match(Op1, m_Zero()))
1182 return UndefValue::get(Op0->getType());
1183
1184 // X % 1 -> 0
1185 if (match(Op1, m_One()))
1186 return Constant::getNullValue(Op0->getType());
1187
1188 if (Op0->getType()->isIntegerTy(1))
1189 // It can't be remainder by zero, hence it must be remainder by one.
1190 return Constant::getNullValue(Op0->getType());
1191
1192 // X % X -> 0
1193 if (Op0 == Op1)
1194 return Constant::getNullValue(Op0->getType());
1195
David Majnemerb435a422014-09-17 04:16:35 +00001196 // (X % Y) % Y -> X % Y
1197 if ((Opcode == Instruction::SRem &&
1198 match(Op0, m_SRem(m_Value(), m_Specific(Op1)))) ||
1199 (Opcode == Instruction::URem &&
1200 match(Op0, m_URem(m_Value(), m_Specific(Op1)))))
David Majnemerac717f02014-09-17 03:34:34 +00001201 return Op0;
David Majnemerac717f02014-09-17 03:34:34 +00001202
Duncan Sandsa3e36992011-05-02 16:27:02 +00001203 // If the operation is with the result of a select instruction, check whether
1204 // operating on either branch of the select always yields the same value.
1205 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001206 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001207 return V;
1208
1209 // If the operation is with the result of a phi instruction, check whether
1210 // operating on all incoming values of the phi always yields the same value.
1211 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001212 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001213 return V;
1214
Craig Topper9f008862014-04-15 04:59:12 +00001215 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001216}
1217
1218/// SimplifySRemInst - Given operands for an SRem, see if we can
1219/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001220static Value *SimplifySRemInst(Value *Op0, Value *Op1, const Query &Q,
1221 unsigned MaxRecurse) {
1222 if (Value *V = SimplifyRem(Instruction::SRem, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001223 return V;
1224
Craig Topper9f008862014-04-15 04:59:12 +00001225 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001226}
1227
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001228Value *llvm::SimplifySRemInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001229 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001230 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001231 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001232 return ::SimplifySRemInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001233 RecursionLimit);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001234}
1235
1236/// SimplifyURemInst - Given operands for a URem, see if we can
1237/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001238static Value *SimplifyURemInst(Value *Op0, Value *Op1, const Query &Q,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001239 unsigned MaxRecurse) {
Duncan Sandsb8cee002012-03-13 11:42:19 +00001240 if (Value *V = SimplifyRem(Instruction::URem, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001241 return V;
1242
Craig Topper9f008862014-04-15 04:59:12 +00001243 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001244}
1245
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001246Value *llvm::SimplifyURemInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001247 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001248 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001249 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001250 return ::SimplifyURemInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001251 RecursionLimit);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001252}
1253
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001254static Value *SimplifyFRemInst(Value *Op0, Value *Op1, FastMathFlags FMF,
1255 const Query &, unsigned) {
Duncan Sandsa3e36992011-05-02 16:27:02 +00001256 // undef % X -> undef (the undef could be a snan).
1257 if (match(Op0, m_Undef()))
1258 return Op0;
1259
1260 // X % undef -> undef
1261 if (match(Op1, m_Undef()))
1262 return Op1;
1263
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001264 // 0 % X -> 0
1265 // Requires that NaNs are off (X could be zero) and signed zeroes are
1266 // ignored (X could be positive or negative, so the output sign is unknown).
1267 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op0, m_AnyZero()))
1268 return Op0;
1269
Craig Topper9f008862014-04-15 04:59:12 +00001270 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001271}
1272
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001273Value *llvm::SimplifyFRemInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001274 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001275 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001276 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001277 const Instruction *CxtI) {
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001278 return ::SimplifyFRemInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001279 RecursionLimit);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001280}
1281
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00001282/// isUndefShift - Returns true if a shift by \c Amount always yields undef.
1283static bool isUndefShift(Value *Amount) {
1284 Constant *C = dyn_cast<Constant>(Amount);
1285 if (!C)
1286 return false;
1287
1288 // X shift by undef -> undef because it may shift by the bitwidth.
1289 if (isa<UndefValue>(C))
1290 return true;
1291
1292 // Shifting by the bitwidth or more is undefined.
1293 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
1294 if (CI->getValue().getLimitedValue() >=
1295 CI->getType()->getScalarSizeInBits())
1296 return true;
1297
1298 // If all lanes of a vector shift are undefined the whole shift is.
1299 if (isa<ConstantVector>(C) || isa<ConstantDataVector>(C)) {
1300 for (unsigned I = 0, E = C->getType()->getVectorNumElements(); I != E; ++I)
1301 if (!isUndefShift(C->getAggregateElement(I)))
1302 return false;
1303 return true;
1304 }
1305
1306 return false;
1307}
1308
Duncan Sands571fd9a2011-01-14 14:44:12 +00001309/// SimplifyShift - Given operands for an Shl, LShr or AShr, see if we can
Duncan Sands7f60dc12011-01-14 00:37:45 +00001310/// fold the result. If not, this returns null.
Duncan Sands571fd9a2011-01-14 14:44:12 +00001311static Value *SimplifyShift(unsigned Opcode, Value *Op0, Value *Op1,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001312 const Query &Q, unsigned MaxRecurse) {
Duncan Sands7f60dc12011-01-14 00:37:45 +00001313 if (Constant *C0 = dyn_cast<Constant>(Op0)) {
1314 if (Constant *C1 = dyn_cast<Constant>(Op1)) {
1315 Constant *Ops[] = { C0, C1 };
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001316 return ConstantFoldInstOperands(Opcode, C0->getType(), Ops, Q.DL, Q.TLI);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001317 }
1318 }
1319
Duncan Sands571fd9a2011-01-14 14:44:12 +00001320 // 0 shift by X -> 0
Duncan Sands7f60dc12011-01-14 00:37:45 +00001321 if (match(Op0, m_Zero()))
1322 return Op0;
1323
Duncan Sands571fd9a2011-01-14 14:44:12 +00001324 // X shift by 0 -> X
Duncan Sands7f60dc12011-01-14 00:37:45 +00001325 if (match(Op1, m_Zero()))
1326 return Op0;
1327
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00001328 // Fold undefined shifts.
1329 if (isUndefShift(Op1))
1330 return UndefValue::get(Op0->getType());
Duncan Sands7f60dc12011-01-14 00:37:45 +00001331
Duncan Sands571fd9a2011-01-14 14:44:12 +00001332 // If the operation is with the result of a select instruction, check whether
1333 // operating on either branch of the select always yields the same value.
1334 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001335 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001336 return V;
1337
1338 // If the operation is with the result of a phi instruction, check whether
1339 // operating on all incoming values of the phi always yields the same value.
1340 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001341 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001342 return V;
1343
Craig Topper9f008862014-04-15 04:59:12 +00001344 return nullptr;
Duncan Sands571fd9a2011-01-14 14:44:12 +00001345}
1346
David Majnemerbf7550e2014-11-05 00:59:59 +00001347/// \brief Given operands for an Shl, LShr or AShr, see if we can
1348/// fold the result. If not, this returns null.
1349static Value *SimplifyRightShift(unsigned Opcode, Value *Op0, Value *Op1,
1350 bool isExact, const Query &Q,
1351 unsigned MaxRecurse) {
1352 if (Value *V = SimplifyShift(Opcode, Op0, Op1, Q, MaxRecurse))
1353 return V;
1354
1355 // X >> X -> 0
1356 if (Op0 == Op1)
1357 return Constant::getNullValue(Op0->getType());
1358
David Majnemer65c52ae2014-12-17 01:54:33 +00001359 // undef >> X -> 0
1360 // undef >> X -> undef (if it's exact)
1361 if (match(Op0, m_Undef()))
1362 return isExact ? Op0 : Constant::getNullValue(Op0->getType());
1363
David Majnemerbf7550e2014-11-05 00:59:59 +00001364 // The low bit cannot be shifted out of an exact shift if it is set.
1365 if (isExact) {
1366 unsigned BitWidth = Op0->getType()->getScalarSizeInBits();
1367 APInt Op0KnownZero(BitWidth, 0);
1368 APInt Op0KnownOne(BitWidth, 0);
Chandler Carruth66b31302015-01-04 12:03:27 +00001369 computeKnownBits(Op0, Op0KnownZero, Op0KnownOne, Q.DL, /*Depth=*/0, Q.AC,
1370 Q.CxtI, Q.DT);
David Majnemerbf7550e2014-11-05 00:59:59 +00001371 if (Op0KnownOne[0])
1372 return Op0;
1373 }
1374
1375 return nullptr;
1376}
1377
Duncan Sands571fd9a2011-01-14 14:44:12 +00001378/// SimplifyShlInst - Given operands for an Shl, see if we can
1379/// fold the result. If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001380static Value *SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001381 const Query &Q, unsigned MaxRecurse) {
1382 if (Value *V = SimplifyShift(Instruction::Shl, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001383 return V;
1384
1385 // undef << X -> 0
David Majnemer65c52ae2014-12-17 01:54:33 +00001386 // undef << X -> undef if (if it's NSW/NUW)
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001387 if (match(Op0, m_Undef()))
David Majnemer65c52ae2014-12-17 01:54:33 +00001388 return isNSW || isNUW ? Op0 : Constant::getNullValue(Op0->getType());
Duncan Sands571fd9a2011-01-14 14:44:12 +00001389
Chris Lattner9e4aa022011-02-09 17:15:04 +00001390 // (X >> A) << A -> X
1391 Value *X;
Benjamin Kramer9442cd02012-01-01 17:55:30 +00001392 if (match(Op0, m_Exact(m_Shr(m_Value(X), m_Specific(Op1)))))
Chris Lattner9e4aa022011-02-09 17:15:04 +00001393 return X;
Craig Topper9f008862014-04-15 04:59:12 +00001394 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001395}
1396
Chris Lattner9e4aa022011-02-09 17:15:04 +00001397Value *llvm::SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001398 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001399 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001400 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001401 return ::SimplifyShlInst(Op0, Op1, isNSW, isNUW, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00001402 RecursionLimit);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001403}
1404
1405/// SimplifyLShrInst - Given operands for an LShr, see if we can
1406/// fold the result. If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001407static Value *SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001408 const Query &Q, unsigned MaxRecurse) {
David Majnemerbf7550e2014-11-05 00:59:59 +00001409 if (Value *V = SimplifyRightShift(Instruction::LShr, Op0, Op1, isExact, Q,
1410 MaxRecurse))
1411 return V;
David Majnemera80fed72013-07-09 22:01:22 +00001412
Chris Lattner9e4aa022011-02-09 17:15:04 +00001413 // (X << A) >> A -> X
1414 Value *X;
David Majnemer4f438372014-11-04 17:38:50 +00001415 if (match(Op0, m_NUWShl(m_Value(X), m_Specific(Op1))))
Chris Lattner9e4aa022011-02-09 17:15:04 +00001416 return X;
Duncan Sandsd114ab32011-02-13 17:15:40 +00001417
Craig Topper9f008862014-04-15 04:59:12 +00001418 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001419}
1420
Chris Lattner9e4aa022011-02-09 17:15:04 +00001421Value *llvm::SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001422 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001423 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001424 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001425 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001426 return ::SimplifyLShrInst(Op0, Op1, isExact, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00001427 RecursionLimit);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001428}
1429
1430/// SimplifyAShrInst - Given operands for an AShr, see if we can
1431/// fold the result. If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001432static Value *SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001433 const Query &Q, unsigned MaxRecurse) {
David Majnemerbf7550e2014-11-05 00:59:59 +00001434 if (Value *V = SimplifyRightShift(Instruction::AShr, Op0, Op1, isExact, Q,
1435 MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001436 return V;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001437
1438 // all ones >>a X -> all ones
1439 if (match(Op0, m_AllOnes()))
1440 return Op0;
1441
Chris Lattner9e4aa022011-02-09 17:15:04 +00001442 // (X << A) >> A -> X
1443 Value *X;
David Majnemer2de97fc2014-11-04 17:47:13 +00001444 if (match(Op0, m_NSWShl(m_Value(X), m_Specific(Op1))))
Chris Lattner9e4aa022011-02-09 17:15:04 +00001445 return X;
Duncan Sandsd114ab32011-02-13 17:15:40 +00001446
Suyog Sarda68862412014-07-17 06:28:15 +00001447 // Arithmetic shifting an all-sign-bit value is a no-op.
Chandler Carruth66b31302015-01-04 12:03:27 +00001448 unsigned NumSignBits = ComputeNumSignBits(Op0, Q.DL, 0, Q.AC, Q.CxtI, Q.DT);
Suyog Sarda68862412014-07-17 06:28:15 +00001449 if (NumSignBits == Op0->getType()->getScalarSizeInBits())
1450 return Op0;
1451
Craig Topper9f008862014-04-15 04:59:12 +00001452 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001453}
1454
Chris Lattner9e4aa022011-02-09 17:15:04 +00001455Value *llvm::SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001456 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001457 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001458 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001459 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001460 return ::SimplifyAShrInst(Op0, Op1, isExact, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00001461 RecursionLimit);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001462}
1463
David Majnemer1af36e52014-12-06 10:51:40 +00001464static Value *simplifyUnsignedRangeCheck(ICmpInst *ZeroICmp,
1465 ICmpInst *UnsignedICmp, bool IsAnd) {
1466 Value *X, *Y;
1467
1468 ICmpInst::Predicate EqPred;
David Majnemerd5b3aa42014-12-08 18:30:43 +00001469 if (!match(ZeroICmp, m_ICmp(EqPred, m_Value(Y), m_Zero())) ||
1470 !ICmpInst::isEquality(EqPred))
David Majnemer1af36e52014-12-06 10:51:40 +00001471 return nullptr;
1472
1473 ICmpInst::Predicate UnsignedPred;
1474 if (match(UnsignedICmp, m_ICmp(UnsignedPred, m_Value(X), m_Specific(Y))) &&
1475 ICmpInst::isUnsigned(UnsignedPred))
1476 ;
1477 else if (match(UnsignedICmp,
1478 m_ICmp(UnsignedPred, m_Value(Y), m_Specific(X))) &&
1479 ICmpInst::isUnsigned(UnsignedPred))
1480 UnsignedPred = ICmpInst::getSwappedPredicate(UnsignedPred);
1481 else
1482 return nullptr;
1483
1484 // X < Y && Y != 0 --> X < Y
1485 // X < Y || Y != 0 --> Y != 0
1486 if (UnsignedPred == ICmpInst::ICMP_ULT && EqPred == ICmpInst::ICMP_NE)
1487 return IsAnd ? UnsignedICmp : ZeroICmp;
1488
1489 // X >= Y || Y != 0 --> true
1490 // X >= Y || Y == 0 --> X >= Y
1491 if (UnsignedPred == ICmpInst::ICMP_UGE && !IsAnd) {
1492 if (EqPred == ICmpInst::ICMP_NE)
1493 return getTrue(UnsignedICmp->getType());
1494 return UnsignedICmp;
1495 }
1496
David Majnemerd5b3aa42014-12-08 18:30:43 +00001497 // X < Y && Y == 0 --> false
1498 if (UnsignedPred == ICmpInst::ICMP_ULT && EqPred == ICmpInst::ICMP_EQ &&
1499 IsAnd)
1500 return getFalse(UnsignedICmp->getType());
1501
David Majnemer1af36e52014-12-06 10:51:40 +00001502 return nullptr;
1503}
1504
David Majnemera315bd82014-09-15 08:15:28 +00001505// Simplify (and (icmp ...) (icmp ...)) to true when we can tell that the range
1506// of possible values cannot be satisfied.
1507static Value *SimplifyAndOfICmps(ICmpInst *Op0, ICmpInst *Op1) {
1508 ICmpInst::Predicate Pred0, Pred1;
1509 ConstantInt *CI1, *CI2;
1510 Value *V;
David Majnemer1af36e52014-12-06 10:51:40 +00001511
1512 if (Value *X = simplifyUnsignedRangeCheck(Op0, Op1, /*IsAnd=*/true))
1513 return X;
1514
David Majnemera315bd82014-09-15 08:15:28 +00001515 if (!match(Op0, m_ICmp(Pred0, m_Add(m_Value(V), m_ConstantInt(CI1)),
1516 m_ConstantInt(CI2))))
1517 return nullptr;
1518
1519 if (!match(Op1, m_ICmp(Pred1, m_Specific(V), m_Specific(CI1))))
1520 return nullptr;
1521
1522 Type *ITy = Op0->getType();
1523
1524 auto *AddInst = cast<BinaryOperator>(Op0->getOperand(0));
1525 bool isNSW = AddInst->hasNoSignedWrap();
1526 bool isNUW = AddInst->hasNoUnsignedWrap();
1527
1528 const APInt &CI1V = CI1->getValue();
1529 const APInt &CI2V = CI2->getValue();
1530 const APInt Delta = CI2V - CI1V;
1531 if (CI1V.isStrictlyPositive()) {
1532 if (Delta == 2) {
1533 if (Pred0 == ICmpInst::ICMP_ULT && Pred1 == ICmpInst::ICMP_SGT)
1534 return getFalse(ITy);
1535 if (Pred0 == ICmpInst::ICMP_SLT && Pred1 == ICmpInst::ICMP_SGT && isNSW)
1536 return getFalse(ITy);
1537 }
1538 if (Delta == 1) {
1539 if (Pred0 == ICmpInst::ICMP_ULE && Pred1 == ICmpInst::ICMP_SGT)
1540 return getFalse(ITy);
1541 if (Pred0 == ICmpInst::ICMP_SLE && Pred1 == ICmpInst::ICMP_SGT && isNSW)
1542 return getFalse(ITy);
1543 }
1544 }
1545 if (CI1V.getBoolValue() && isNUW) {
1546 if (Delta == 2)
1547 if (Pred0 == ICmpInst::ICMP_ULT && Pred1 == ICmpInst::ICMP_UGT)
1548 return getFalse(ITy);
1549 if (Delta == 1)
1550 if (Pred0 == ICmpInst::ICMP_ULE && Pred1 == ICmpInst::ICMP_UGT)
1551 return getFalse(ITy);
1552 }
1553
1554 return nullptr;
1555}
1556
Chris Lattnera71e9d62009-11-10 00:55:12 +00001557/// SimplifyAndInst - Given operands for an And, see if we can
Chris Lattner084a1b52009-11-09 22:57:59 +00001558/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001559static Value *SimplifyAndInst(Value *Op0, Value *Op1, const Query &Q,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001560 unsigned MaxRecurse) {
Chris Lattnera71e9d62009-11-10 00:55:12 +00001561 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
1562 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
1563 Constant *Ops[] = { CLHS, CRHS };
1564 return ConstantFoldInstOperands(Instruction::And, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001565 Ops, Q.DL, Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00001566 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001567
Chris Lattnera71e9d62009-11-10 00:55:12 +00001568 // Canonicalize the constant to the RHS.
1569 std::swap(Op0, Op1);
1570 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001571
Chris Lattnera71e9d62009-11-10 00:55:12 +00001572 // X & undef -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001573 if (match(Op1, m_Undef()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001574 return Constant::getNullValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001575
Chris Lattnera71e9d62009-11-10 00:55:12 +00001576 // X & X = X
Duncan Sands772749a2011-01-01 20:08:02 +00001577 if (Op0 == Op1)
Chris Lattnera71e9d62009-11-10 00:55:12 +00001578 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001579
Duncan Sandsc89ac072010-11-17 18:52:15 +00001580 // X & 0 = 0
1581 if (match(Op1, m_Zero()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001582 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001583
Duncan Sandsc89ac072010-11-17 18:52:15 +00001584 // X & -1 = X
1585 if (match(Op1, m_AllOnes()))
1586 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001587
Chris Lattnera71e9d62009-11-10 00:55:12 +00001588 // A & ~A = ~A & A = 0
Chris Lattner9e4aa022011-02-09 17:15:04 +00001589 if (match(Op0, m_Not(m_Specific(Op1))) ||
1590 match(Op1, m_Not(m_Specific(Op0))))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001591 return Constant::getNullValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001592
Chris Lattnera71e9d62009-11-10 00:55:12 +00001593 // (A | ?) & A = A
Craig Topper9f008862014-04-15 04:59:12 +00001594 Value *A = nullptr, *B = nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00001595 if (match(Op0, m_Or(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001596 (A == Op1 || B == Op1))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001597 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001598
Chris Lattnera71e9d62009-11-10 00:55:12 +00001599 // A & (A | ?) = A
1600 if (match(Op1, m_Or(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001601 (A == Op0 || B == Op0))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001602 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001603
Duncan Sandsba286d72011-10-26 20:55:21 +00001604 // A & (-A) = A if A is a power of two or zero.
1605 if (match(Op0, m_Neg(m_Specific(Op1))) ||
1606 match(Op1, m_Neg(m_Specific(Op0)))) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001607 if (isKnownToBeAPowerOfTwo(Op0, Q.DL, /*OrZero*/ true, 0, Q.AC, Q.CxtI,
1608 Q.DT))
Duncan Sandsba286d72011-10-26 20:55:21 +00001609 return Op0;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001610 if (isKnownToBeAPowerOfTwo(Op1, Q.DL, /*OrZero*/ true, 0, Q.AC, Q.CxtI,
1611 Q.DT))
Duncan Sandsba286d72011-10-26 20:55:21 +00001612 return Op1;
1613 }
1614
David Majnemera315bd82014-09-15 08:15:28 +00001615 if (auto *ICILHS = dyn_cast<ICmpInst>(Op0)) {
1616 if (auto *ICIRHS = dyn_cast<ICmpInst>(Op1)) {
1617 if (Value *V = SimplifyAndOfICmps(ICILHS, ICIRHS))
1618 return V;
1619 if (Value *V = SimplifyAndOfICmps(ICIRHS, ICILHS))
1620 return V;
1621 }
1622 }
1623
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001624 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001625 if (Value *V = SimplifyAssociativeBinOp(Instruction::And, Op0, Op1, Q,
1626 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001627 return V;
Benjamin Kramer8c35fb02010-09-10 22:39:55 +00001628
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001629 // And distributes over Or. Try some generic simplifications based on this.
1630 if (Value *V = ExpandBinOp(Instruction::And, Op0, Op1, Instruction::Or,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001631 Q, MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001632 return V;
1633
1634 // And distributes over Xor. Try some generic simplifications based on this.
1635 if (Value *V = ExpandBinOp(Instruction::And, Op0, Op1, Instruction::Xor,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001636 Q, MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001637 return V;
1638
Duncan Sandsb0579e92010-11-10 13:00:08 +00001639 // If the operation is with the result of a select instruction, check whether
1640 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001641 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001642 if (Value *V = ThreadBinOpOverSelect(Instruction::And, Op0, Op1, Q,
1643 MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001644 return V;
1645
1646 // If the operation is with the result of a phi instruction, check whether
1647 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001648 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001649 if (Value *V = ThreadBinOpOverPHI(Instruction::And, Op0, Op1, Q,
Duncan Sandsf64e6902010-12-21 09:09:15 +00001650 MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00001651 return V;
1652
Craig Topper9f008862014-04-15 04:59:12 +00001653 return nullptr;
Chris Lattner084a1b52009-11-09 22:57:59 +00001654}
1655
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001656Value *llvm::SimplifyAndInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001657 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001658 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001659 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001660 return ::SimplifyAndInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001661 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001662}
1663
David Majnemera315bd82014-09-15 08:15:28 +00001664// Simplify (or (icmp ...) (icmp ...)) to true when we can tell that the union
1665// contains all possible values.
1666static Value *SimplifyOrOfICmps(ICmpInst *Op0, ICmpInst *Op1) {
1667 ICmpInst::Predicate Pred0, Pred1;
1668 ConstantInt *CI1, *CI2;
1669 Value *V;
David Majnemer1af36e52014-12-06 10:51:40 +00001670
1671 if (Value *X = simplifyUnsignedRangeCheck(Op0, Op1, /*IsAnd=*/false))
1672 return X;
1673
David Majnemera315bd82014-09-15 08:15:28 +00001674 if (!match(Op0, m_ICmp(Pred0, m_Add(m_Value(V), m_ConstantInt(CI1)),
1675 m_ConstantInt(CI2))))
1676 return nullptr;
1677
1678 if (!match(Op1, m_ICmp(Pred1, m_Specific(V), m_Specific(CI1))))
1679 return nullptr;
1680
1681 Type *ITy = Op0->getType();
1682
1683 auto *AddInst = cast<BinaryOperator>(Op0->getOperand(0));
1684 bool isNSW = AddInst->hasNoSignedWrap();
1685 bool isNUW = AddInst->hasNoUnsignedWrap();
1686
1687 const APInt &CI1V = CI1->getValue();
1688 const APInt &CI2V = CI2->getValue();
1689 const APInt Delta = CI2V - CI1V;
1690 if (CI1V.isStrictlyPositive()) {
1691 if (Delta == 2) {
1692 if (Pred0 == ICmpInst::ICMP_UGE && Pred1 == ICmpInst::ICMP_SLE)
1693 return getTrue(ITy);
1694 if (Pred0 == ICmpInst::ICMP_SGE && Pred1 == ICmpInst::ICMP_SLE && isNSW)
1695 return getTrue(ITy);
1696 }
1697 if (Delta == 1) {
1698 if (Pred0 == ICmpInst::ICMP_UGT && Pred1 == ICmpInst::ICMP_SLE)
1699 return getTrue(ITy);
1700 if (Pred0 == ICmpInst::ICMP_SGT && Pred1 == ICmpInst::ICMP_SLE && isNSW)
1701 return getTrue(ITy);
1702 }
1703 }
1704 if (CI1V.getBoolValue() && isNUW) {
1705 if (Delta == 2)
1706 if (Pred0 == ICmpInst::ICMP_UGE && Pred1 == ICmpInst::ICMP_ULE)
1707 return getTrue(ITy);
1708 if (Delta == 1)
1709 if (Pred0 == ICmpInst::ICMP_UGT && Pred1 == ICmpInst::ICMP_ULE)
1710 return getTrue(ITy);
1711 }
1712
1713 return nullptr;
1714}
1715
Chris Lattnera71e9d62009-11-10 00:55:12 +00001716/// SimplifyOrInst - Given operands for an Or, see if we can
1717/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001718static Value *SimplifyOrInst(Value *Op0, Value *Op1, const Query &Q,
1719 unsigned MaxRecurse) {
Chris Lattnera71e9d62009-11-10 00:55:12 +00001720 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
1721 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
1722 Constant *Ops[] = { CLHS, CRHS };
1723 return ConstantFoldInstOperands(Instruction::Or, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001724 Ops, Q.DL, Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00001725 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001726
Chris Lattnera71e9d62009-11-10 00:55:12 +00001727 // Canonicalize the constant to the RHS.
1728 std::swap(Op0, Op1);
1729 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001730
Chris Lattnera71e9d62009-11-10 00:55:12 +00001731 // X | undef -> -1
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001732 if (match(Op1, m_Undef()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001733 return Constant::getAllOnesValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001734
Chris Lattnera71e9d62009-11-10 00:55:12 +00001735 // X | X = X
Duncan Sands772749a2011-01-01 20:08:02 +00001736 if (Op0 == Op1)
Chris Lattnera71e9d62009-11-10 00:55:12 +00001737 return Op0;
1738
Duncan Sandsc89ac072010-11-17 18:52:15 +00001739 // X | 0 = X
1740 if (match(Op1, m_Zero()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001741 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001742
Duncan Sandsc89ac072010-11-17 18:52:15 +00001743 // X | -1 = -1
1744 if (match(Op1, m_AllOnes()))
1745 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001746
Chris Lattnera71e9d62009-11-10 00:55:12 +00001747 // A | ~A = ~A | A = -1
Chris Lattner9e4aa022011-02-09 17:15:04 +00001748 if (match(Op0, m_Not(m_Specific(Op1))) ||
1749 match(Op1, m_Not(m_Specific(Op0))))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001750 return Constant::getAllOnesValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001751
Chris Lattnera71e9d62009-11-10 00:55:12 +00001752 // (A & ?) | A = A
Craig Topper9f008862014-04-15 04:59:12 +00001753 Value *A = nullptr, *B = nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00001754 if (match(Op0, m_And(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001755 (A == Op1 || B == Op1))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001756 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001757
Chris Lattnera71e9d62009-11-10 00:55:12 +00001758 // A | (A & ?) = A
1759 if (match(Op1, m_And(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001760 (A == Op0 || B == Op0))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001761 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001762
Benjamin Kramer5b7a4e02011-02-20 15:20:01 +00001763 // ~(A & ?) | A = -1
1764 if (match(Op0, m_Not(m_And(m_Value(A), m_Value(B)))) &&
1765 (A == Op1 || B == Op1))
1766 return Constant::getAllOnesValue(Op1->getType());
1767
1768 // A | ~(A & ?) = -1
1769 if (match(Op1, m_Not(m_And(m_Value(A), m_Value(B)))) &&
1770 (A == Op0 || B == Op0))
1771 return Constant::getAllOnesValue(Op0->getType());
1772
David Majnemera315bd82014-09-15 08:15:28 +00001773 if (auto *ICILHS = dyn_cast<ICmpInst>(Op0)) {
1774 if (auto *ICIRHS = dyn_cast<ICmpInst>(Op1)) {
1775 if (Value *V = SimplifyOrOfICmps(ICILHS, ICIRHS))
1776 return V;
1777 if (Value *V = SimplifyOrOfICmps(ICIRHS, ICILHS))
1778 return V;
1779 }
1780 }
1781
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001782 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001783 if (Value *V = SimplifyAssociativeBinOp(Instruction::Or, Op0, Op1, Q,
1784 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001785 return V;
Benjamin Kramer8c35fb02010-09-10 22:39:55 +00001786
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001787 // Or distributes over And. Try some generic simplifications based on this.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001788 if (Value *V = ExpandBinOp(Instruction::Or, Op0, Op1, Instruction::And, Q,
1789 MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001790 return V;
1791
Duncan Sandsb0579e92010-11-10 13:00:08 +00001792 // If the operation is with the result of a select instruction, check whether
1793 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001794 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001795 if (Value *V = ThreadBinOpOverSelect(Instruction::Or, Op0, Op1, Q,
Duncan Sandsf64e6902010-12-21 09:09:15 +00001796 MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001797 return V;
1798
Nick Lewycky8561a492014-06-19 03:51:46 +00001799 // (A & C)|(B & D)
1800 Value *C = nullptr, *D = nullptr;
1801 if (match(Op0, m_And(m_Value(A), m_Value(C))) &&
1802 match(Op1, m_And(m_Value(B), m_Value(D)))) {
1803 ConstantInt *C1 = dyn_cast<ConstantInt>(C);
1804 ConstantInt *C2 = dyn_cast<ConstantInt>(D);
1805 if (C1 && C2 && (C1->getValue() == ~C2->getValue())) {
1806 // (A & C1)|(B & C2)
1807 // If we have: ((V + N) & C1) | (V & C2)
1808 // .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0
1809 // replace with V+N.
1810 Value *V1, *V2;
1811 if ((C2->getValue() & (C2->getValue() + 1)) == 0 && // C2 == 0+1+
1812 match(A, m_Add(m_Value(V1), m_Value(V2)))) {
1813 // Add commutes, try both ways.
Chandler Carruth66b31302015-01-04 12:03:27 +00001814 if (V1 == B &&
1815 MaskedValueIsZero(V2, C2->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001816 return A;
Chandler Carruth66b31302015-01-04 12:03:27 +00001817 if (V2 == B &&
1818 MaskedValueIsZero(V1, C2->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001819 return A;
1820 }
1821 // Or commutes, try both ways.
1822 if ((C1->getValue() & (C1->getValue() + 1)) == 0 &&
1823 match(B, m_Add(m_Value(V1), m_Value(V2)))) {
1824 // Add commutes, try both ways.
Chandler Carruth66b31302015-01-04 12:03:27 +00001825 if (V1 == A &&
1826 MaskedValueIsZero(V2, C1->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001827 return B;
Chandler Carruth66b31302015-01-04 12:03:27 +00001828 if (V2 == A &&
1829 MaskedValueIsZero(V1, C1->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001830 return B;
1831 }
1832 }
1833 }
1834
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001835 // If the operation is with the result of a phi instruction, check whether
1836 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001837 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001838 if (Value *V = ThreadBinOpOverPHI(Instruction::Or, Op0, Op1, Q, MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00001839 return V;
1840
Craig Topper9f008862014-04-15 04:59:12 +00001841 return nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00001842}
1843
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001844Value *llvm::SimplifyOrInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001845 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001846 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001847 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001848 return ::SimplifyOrInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001849 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001850}
Chris Lattnera71e9d62009-11-10 00:55:12 +00001851
Duncan Sandsc89ac072010-11-17 18:52:15 +00001852/// SimplifyXorInst - Given operands for a Xor, see if we can
1853/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001854static Value *SimplifyXorInst(Value *Op0, Value *Op1, const Query &Q,
1855 unsigned MaxRecurse) {
Duncan Sandsc89ac072010-11-17 18:52:15 +00001856 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
1857 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
1858 Constant *Ops[] = { CLHS, CRHS };
1859 return ConstantFoldInstOperands(Instruction::Xor, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001860 Ops, Q.DL, Q.TLI);
Duncan Sandsc89ac072010-11-17 18:52:15 +00001861 }
1862
1863 // Canonicalize the constant to the RHS.
1864 std::swap(Op0, Op1);
1865 }
1866
1867 // A ^ undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001868 if (match(Op1, m_Undef()))
Duncan Sands019a4182010-12-15 11:02:22 +00001869 return Op1;
Duncan Sandsc89ac072010-11-17 18:52:15 +00001870
1871 // A ^ 0 = A
1872 if (match(Op1, m_Zero()))
1873 return Op0;
1874
Eli Friedmanad3cfe72011-08-17 19:31:49 +00001875 // A ^ A = 0
1876 if (Op0 == Op1)
1877 return Constant::getNullValue(Op0->getType());
1878
Duncan Sandsc89ac072010-11-17 18:52:15 +00001879 // A ^ ~A = ~A ^ A = -1
Chris Lattner9e4aa022011-02-09 17:15:04 +00001880 if (match(Op0, m_Not(m_Specific(Op1))) ||
1881 match(Op1, m_Not(m_Specific(Op0))))
Duncan Sandsc89ac072010-11-17 18:52:15 +00001882 return Constant::getAllOnesValue(Op0->getType());
1883
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001884 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001885 if (Value *V = SimplifyAssociativeBinOp(Instruction::Xor, Op0, Op1, Q,
1886 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001887 return V;
Duncan Sandsc89ac072010-11-17 18:52:15 +00001888
Duncan Sandsb238de02010-11-19 09:20:39 +00001889 // Threading Xor over selects and phi nodes is pointless, so don't bother.
1890 // Threading over the select in "A ^ select(cond, B, C)" means evaluating
1891 // "A^B" and "A^C" and seeing if they are equal; but they are equal if and
1892 // only if B and C are equal. If B and C are equal then (since we assume
1893 // that operands have already been simplified) "select(cond, B, C)" should
1894 // have been simplified to the common value of B and C already. Analysing
1895 // "A^B" and "A^C" thus gains nothing, but costs compile time. Similarly
1896 // for threading over phi nodes.
Duncan Sandsc89ac072010-11-17 18:52:15 +00001897
Craig Topper9f008862014-04-15 04:59:12 +00001898 return nullptr;
Duncan Sandsc89ac072010-11-17 18:52:15 +00001899}
1900
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001901Value *llvm::SimplifyXorInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001902 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001903 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001904 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001905 return ::SimplifyXorInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001906 RecursionLimit);
Duncan Sandsc89ac072010-11-17 18:52:15 +00001907}
1908
Chris Lattner229907c2011-07-18 04:54:35 +00001909static Type *GetCompareTy(Value *Op) {
Chris Lattnerccfdceb2009-11-09 23:55:12 +00001910 return CmpInst::makeCmpResultType(Op->getType());
1911}
1912
Duncan Sandsaf327282011-05-07 16:56:49 +00001913/// ExtractEquivalentCondition - Rummage around inside V looking for something
1914/// equivalent to the comparison "LHS Pred RHS". Return such a value if found,
1915/// otherwise return null. Helper function for analyzing max/min idioms.
1916static Value *ExtractEquivalentCondition(Value *V, CmpInst::Predicate Pred,
1917 Value *LHS, Value *RHS) {
1918 SelectInst *SI = dyn_cast<SelectInst>(V);
1919 if (!SI)
Craig Topper9f008862014-04-15 04:59:12 +00001920 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00001921 CmpInst *Cmp = dyn_cast<CmpInst>(SI->getCondition());
1922 if (!Cmp)
Craig Topper9f008862014-04-15 04:59:12 +00001923 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00001924 Value *CmpLHS = Cmp->getOperand(0), *CmpRHS = Cmp->getOperand(1);
1925 if (Pred == Cmp->getPredicate() && LHS == CmpLHS && RHS == CmpRHS)
1926 return Cmp;
1927 if (Pred == CmpInst::getSwappedPredicate(Cmp->getPredicate()) &&
1928 LHS == CmpRHS && RHS == CmpLHS)
1929 return Cmp;
Craig Topper9f008862014-04-15 04:59:12 +00001930 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00001931}
1932
Dan Gohman9631d902013-02-01 00:49:06 +00001933// A significant optimization not implemented here is assuming that alloca
1934// addresses are not equal to incoming argument values. They don't *alias*,
1935// as we say, but that doesn't mean they aren't equal, so we take a
1936// conservative approach.
1937//
1938// This is inspired in part by C++11 5.10p1:
1939// "Two pointers of the same type compare equal if and only if they are both
1940// null, both point to the same function, or both represent the same
1941// address."
1942//
1943// This is pretty permissive.
1944//
1945// It's also partly due to C11 6.5.9p6:
1946// "Two pointers compare equal if and only if both are null pointers, both are
1947// pointers to the same object (including a pointer to an object and a
1948// subobject at its beginning) or function, both are pointers to one past the
1949// last element of the same array object, or one is a pointer to one past the
1950// end of one array object and the other is a pointer to the start of a
NAKAMURA Takumi065fd352013-04-08 23:05:21 +00001951// different array object that happens to immediately follow the first array
Dan Gohman9631d902013-02-01 00:49:06 +00001952// object in the address space.)
1953//
1954// C11's version is more restrictive, however there's no reason why an argument
1955// couldn't be a one-past-the-end value for a stack object in the caller and be
1956// equal to the beginning of a stack object in the callee.
1957//
1958// If the C and C++ standards are ever made sufficiently restrictive in this
1959// area, it may be possible to update LLVM's semantics accordingly and reinstate
1960// this optimization.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001961static Constant *computePointerICmp(const DataLayout &DL,
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001962 const TargetLibraryInfo *TLI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001963 CmpInst::Predicate Pred, Value *LHS,
1964 Value *RHS) {
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001965 // First, skip past any trivial no-ops.
1966 LHS = LHS->stripPointerCasts();
1967 RHS = RHS->stripPointerCasts();
1968
1969 // A non-null pointer is not equal to a null pointer.
Benjamin Kramerfd4777c2013-09-24 16:37:51 +00001970 if (llvm::isKnownNonNull(LHS, TLI) && isa<ConstantPointerNull>(RHS) &&
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001971 (Pred == CmpInst::ICMP_EQ || Pred == CmpInst::ICMP_NE))
1972 return ConstantInt::get(GetCompareTy(LHS),
1973 !CmpInst::isTrueWhenEqual(Pred));
1974
Chandler Carruth8059c842012-03-25 21:28:14 +00001975 // We can only fold certain predicates on pointer comparisons.
1976 switch (Pred) {
1977 default:
Craig Topper9f008862014-04-15 04:59:12 +00001978 return nullptr;
Chandler Carruth8059c842012-03-25 21:28:14 +00001979
1980 // Equality comaprisons are easy to fold.
1981 case CmpInst::ICMP_EQ:
1982 case CmpInst::ICMP_NE:
1983 break;
1984
1985 // We can only handle unsigned relational comparisons because 'inbounds' on
1986 // a GEP only protects against unsigned wrapping.
1987 case CmpInst::ICMP_UGT:
1988 case CmpInst::ICMP_UGE:
1989 case CmpInst::ICMP_ULT:
1990 case CmpInst::ICMP_ULE:
1991 // However, we have to switch them to their signed variants to handle
1992 // negative indices from the base pointer.
1993 Pred = ICmpInst::getSignedPredicate(Pred);
1994 break;
1995 }
1996
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001997 // Strip off any constant offsets so that we can reason about them.
1998 // It's tempting to use getUnderlyingObject or even just stripInBoundsOffsets
1999 // here and compare base addresses like AliasAnalysis does, however there are
2000 // numerous hazards. AliasAnalysis and its utilities rely on special rules
2001 // governing loads and stores which don't apply to icmps. Also, AliasAnalysis
2002 // doesn't need to guarantee pointer inequality when it says NoAlias.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002003 Constant *LHSOffset = stripAndComputeConstantOffsets(DL, LHS);
2004 Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS);
Chandler Carruth8059c842012-03-25 21:28:14 +00002005
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002006 // If LHS and RHS are related via constant offsets to the same base
2007 // value, we can replace it with an icmp which just compares the offsets.
2008 if (LHS == RHS)
2009 return ConstantExpr::getICmp(Pred, LHSOffset, RHSOffset);
Chandler Carruth8059c842012-03-25 21:28:14 +00002010
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002011 // Various optimizations for (in)equality comparisons.
2012 if (Pred == CmpInst::ICMP_EQ || Pred == CmpInst::ICMP_NE) {
2013 // Different non-empty allocations that exist at the same time have
2014 // different addresses (if the program can tell). Global variables always
2015 // exist, so they always exist during the lifetime of each other and all
2016 // allocas. Two different allocas usually have different addresses...
2017 //
2018 // However, if there's an @llvm.stackrestore dynamically in between two
2019 // allocas, they may have the same address. It's tempting to reduce the
2020 // scope of the problem by only looking at *static* allocas here. That would
2021 // cover the majority of allocas while significantly reducing the likelihood
2022 // of having an @llvm.stackrestore pop up in the middle. However, it's not
2023 // actually impossible for an @llvm.stackrestore to pop up in the middle of
2024 // an entry block. Also, if we have a block that's not attached to a
2025 // function, we can't tell if it's "static" under the current definition.
2026 // Theoretically, this problem could be fixed by creating a new kind of
2027 // instruction kind specifically for static allocas. Such a new instruction
2028 // could be required to be at the top of the entry block, thus preventing it
2029 // from being subject to a @llvm.stackrestore. Instcombine could even
2030 // convert regular allocas into these special allocas. It'd be nifty.
2031 // However, until then, this problem remains open.
2032 //
2033 // So, we'll assume that two non-empty allocas have different addresses
2034 // for now.
2035 //
2036 // With all that, if the offsets are within the bounds of their allocations
2037 // (and not one-past-the-end! so we can't use inbounds!), and their
2038 // allocations aren't the same, the pointers are not equal.
2039 //
2040 // Note that it's not necessary to check for LHS being a global variable
2041 // address, due to canonicalization and constant folding.
2042 if (isa<AllocaInst>(LHS) &&
2043 (isa<AllocaInst>(RHS) || isa<GlobalVariable>(RHS))) {
Benjamin Kramerc05aa952013-02-01 15:21:10 +00002044 ConstantInt *LHSOffsetCI = dyn_cast<ConstantInt>(LHSOffset);
2045 ConstantInt *RHSOffsetCI = dyn_cast<ConstantInt>(RHSOffset);
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002046 uint64_t LHSSize, RHSSize;
Benjamin Kramerc05aa952013-02-01 15:21:10 +00002047 if (LHSOffsetCI && RHSOffsetCI &&
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002048 getObjectSize(LHS, LHSSize, DL, TLI) &&
2049 getObjectSize(RHS, RHSSize, DL, TLI)) {
Benjamin Kramerc05aa952013-02-01 15:21:10 +00002050 const APInt &LHSOffsetValue = LHSOffsetCI->getValue();
2051 const APInt &RHSOffsetValue = RHSOffsetCI->getValue();
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002052 if (!LHSOffsetValue.isNegative() &&
2053 !RHSOffsetValue.isNegative() &&
2054 LHSOffsetValue.ult(LHSSize) &&
2055 RHSOffsetValue.ult(RHSSize)) {
2056 return ConstantInt::get(GetCompareTy(LHS),
2057 !CmpInst::isTrueWhenEqual(Pred));
2058 }
2059 }
2060
2061 // Repeat the above check but this time without depending on DataLayout
2062 // or being able to compute a precise size.
2063 if (!cast<PointerType>(LHS->getType())->isEmptyTy() &&
2064 !cast<PointerType>(RHS->getType())->isEmptyTy() &&
2065 LHSOffset->isNullValue() &&
2066 RHSOffset->isNullValue())
2067 return ConstantInt::get(GetCompareTy(LHS),
2068 !CmpInst::isTrueWhenEqual(Pred));
2069 }
Benjamin Kramer942dfe62013-09-23 14:16:38 +00002070
2071 // Even if an non-inbounds GEP occurs along the path we can still optimize
2072 // equality comparisons concerning the result. We avoid walking the whole
2073 // chain again by starting where the last calls to
2074 // stripAndComputeConstantOffsets left off and accumulate the offsets.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002075 Constant *LHSNoBound = stripAndComputeConstantOffsets(DL, LHS, true);
2076 Constant *RHSNoBound = stripAndComputeConstantOffsets(DL, RHS, true);
Benjamin Kramer942dfe62013-09-23 14:16:38 +00002077 if (LHS == RHS)
2078 return ConstantExpr::getICmp(Pred,
2079 ConstantExpr::getAdd(LHSOffset, LHSNoBound),
2080 ConstantExpr::getAdd(RHSOffset, RHSNoBound));
Hal Finkelafcd8db2014-12-01 23:38:06 +00002081
2082 // If one side of the equality comparison must come from a noalias call
2083 // (meaning a system memory allocation function), and the other side must
2084 // come from a pointer that cannot overlap with dynamically-allocated
2085 // memory within the lifetime of the current function (allocas, byval
2086 // arguments, globals), then determine the comparison result here.
2087 SmallVector<Value *, 8> LHSUObjs, RHSUObjs;
2088 GetUnderlyingObjects(LHS, LHSUObjs, DL);
2089 GetUnderlyingObjects(RHS, RHSUObjs, DL);
2090
2091 // Is the set of underlying objects all noalias calls?
2092 auto IsNAC = [](SmallVectorImpl<Value *> &Objects) {
2093 return std::all_of(Objects.begin(), Objects.end(),
2094 [](Value *V){ return isNoAliasCall(V); });
2095 };
2096
2097 // Is the set of underlying objects all things which must be disjoint from
Hal Finkelaa19baf2014-12-04 17:45:19 +00002098 // noalias calls. For allocas, we consider only static ones (dynamic
2099 // allocas might be transformed into calls to malloc not simultaneously
2100 // live with the compared-to allocation). For globals, we exclude symbols
2101 // that might be resolve lazily to symbols in another dynamically-loaded
2102 // library (and, thus, could be malloc'ed by the implementation).
Hal Finkelafcd8db2014-12-01 23:38:06 +00002103 auto IsAllocDisjoint = [](SmallVectorImpl<Value *> &Objects) {
2104 return std::all_of(Objects.begin(), Objects.end(),
2105 [](Value *V){
Hal Finkelaa19baf2014-12-04 17:45:19 +00002106 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V))
2107 return AI->getParent() && AI->getParent()->getParent() &&
2108 AI->isStaticAlloca();
2109 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
2110 return (GV->hasLocalLinkage() ||
2111 GV->hasHiddenVisibility() ||
2112 GV->hasProtectedVisibility() ||
2113 GV->hasUnnamedAddr()) &&
2114 !GV->isThreadLocal();
Hal Finkelafcd8db2014-12-01 23:38:06 +00002115 if (const Argument *A = dyn_cast<Argument>(V))
2116 return A->hasByValAttr();
2117 return false;
2118 });
2119 };
2120
2121 if ((IsNAC(LHSUObjs) && IsAllocDisjoint(RHSUObjs)) ||
2122 (IsNAC(RHSUObjs) && IsAllocDisjoint(LHSUObjs)))
2123 return ConstantInt::get(GetCompareTy(LHS),
2124 !CmpInst::isTrueWhenEqual(Pred));
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002125 }
2126
2127 // Otherwise, fail.
Craig Topper9f008862014-04-15 04:59:12 +00002128 return nullptr;
Chandler Carruth8059c842012-03-25 21:28:14 +00002129}
Chris Lattner01990f02012-02-24 19:01:58 +00002130
Philip Reames13f023c2015-09-28 17:14:24 +00002131/// Return true if B is known to be implied by A. A & B must be i1 (boolean)
Philip Reames600a9152015-10-06 19:00:02 +00002132/// values or a vector of such values. Note that the truth table for
2133/// implication is the same as <=u on i1 values (but not <=s!). The truth
2134/// table for both is:
Philip Reames13f023c2015-09-28 17:14:24 +00002135/// | T | F (B)
2136/// T | T | F
2137/// F | T | T
2138/// (A)
2139static bool implies(Value *A, Value *B) {
Philip Reames600a9152015-10-06 19:00:02 +00002140 assert(A->getType() == B->getType() && "mismatched type");
2141 Type *OpTy = A->getType();
2142 assert(OpTy->getScalarType()->isIntegerTy(1));
Philip Reames13f023c2015-09-28 17:14:24 +00002143
2144 // A ==> A by definition
2145 if (A == B) return true;
2146
Philip Reames600a9152015-10-06 19:00:02 +00002147 if (OpTy->isVectorTy())
2148 // TODO: extending the code below to handle vectors
2149 return false;
2150 assert(OpTy->isIntegerTy(1) && "implied by above");
2151
Philip Reames13f023c2015-09-28 17:14:24 +00002152 ICmpInst::Predicate APred, BPred;
2153 Value *I;
2154 Value *L;
2155 ConstantInt *CI;
2156 // i +_{nsw} C_{>0} <s L ==> i <s L
2157 if (match(A, m_ICmp(APred,
2158 m_NSWAdd(m_Value(I), m_ConstantInt(CI)),
2159 m_Value(L))) &&
2160 APred == ICmpInst::ICMP_SLT &&
2161 !CI->isNegative() &&
2162 match(B, m_ICmp(BPred, m_Specific(I), m_Specific(L))) &&
2163 BPred == ICmpInst::ICMP_SLT)
2164 return true;
2165
2166 // i +_{nuw} C_{>0} <u L ==> i <u L
2167 if (match(A, m_ICmp(APred,
2168 m_NUWAdd(m_Value(I), m_ConstantInt(CI)),
2169 m_Value(L))) &&
2170 APred == ICmpInst::ICMP_ULT &&
2171 !CI->isNegative() &&
2172 match(B, m_ICmp(BPred, m_Specific(I), m_Specific(L))) &&
2173 BPred == ICmpInst::ICMP_ULT)
2174 return true;
2175
2176 return false;
2177}
2178
Chen Li5cd6dee2015-09-23 17:58:44 +00002179static ConstantRange GetConstantRangeFromMetadata(MDNode *Ranges, uint32_t BitWidth) {
2180 const unsigned NumRanges = Ranges->getNumOperands() / 2;
2181 assert(NumRanges >= 1);
2182
2183 ConstantRange CR(BitWidth, false);
2184 for (unsigned i = 0; i < NumRanges; ++i) {
2185 auto *Low =
2186 mdconst::extract<ConstantInt>(Ranges->getOperand(2 * i + 0));
2187 auto *High =
2188 mdconst::extract<ConstantInt>(Ranges->getOperand(2 * i + 1));
2189
2190 // Union will merge two ranges to one and potentially introduce a range
2191 // not covered by the original two ranges. For example, [1, 5) and [8, 10)
2192 // will become [1, 10). In this case, we can not fold comparison between
2193 // constant 6 and a value of the above ranges. In practice, most values
2194 // have only one range, so it might not be worth handling this by
2195 // introducing additional complexity.
2196 CR = CR.unionWith(ConstantRange(Low->getValue(), High->getValue()));
2197 }
2198
2199 return CR;
2200}
2201
Chris Lattnerc1f19072009-11-09 23:28:39 +00002202/// SimplifyICmpInst - Given operands for an ICmpInst, see if we can
2203/// fold the result. If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00002204static Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00002205 const Query &Q, unsigned MaxRecurse) {
Chris Lattner084a1b52009-11-09 22:57:59 +00002206 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate;
Chris Lattnerc1f19072009-11-09 23:28:39 +00002207 assert(CmpInst::isIntPredicate(Pred) && "Not an integer compare!");
Duncan Sands7e800d62010-11-14 11:23:23 +00002208
Chris Lattnera71e9d62009-11-10 00:55:12 +00002209 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
Chris Lattnercdfb80d2009-11-09 23:06:58 +00002210 if (Constant *CRHS = dyn_cast<Constant>(RHS))
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002211 return ConstantFoldCompareInstOperands(Pred, CLHS, CRHS, Q.DL, Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00002212
2213 // If we have a constant, make sure it is on the RHS.
2214 std::swap(LHS, RHS);
2215 Pred = CmpInst::getSwappedPredicate(Pred);
2216 }
Duncan Sands7e800d62010-11-14 11:23:23 +00002217
Chris Lattner229907c2011-07-18 04:54:35 +00002218 Type *ITy = GetCompareTy(LHS); // The return type.
2219 Type *OpTy = LHS->getType(); // The operand type.
Duncan Sands7e800d62010-11-14 11:23:23 +00002220
Chris Lattnerccfdceb2009-11-09 23:55:12 +00002221 // icmp X, X -> true/false
Chris Lattner3afc0722010-03-03 19:46:03 +00002222 // X icmp undef -> true/false. For example, icmp ugt %X, undef -> false
2223 // because X could be 0.
Duncan Sands772749a2011-01-01 20:08:02 +00002224 if (LHS == RHS || isa<UndefValue>(RHS))
Chris Lattnerccfdceb2009-11-09 23:55:12 +00002225 return ConstantInt::get(ITy, CmpInst::isTrueWhenEqual(Pred));
Duncan Sands7e800d62010-11-14 11:23:23 +00002226
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002227 // Special case logic when the operands have i1 type.
Nick Lewyckye659b842011-12-01 02:39:36 +00002228 if (OpTy->getScalarType()->isIntegerTy(1)) {
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002229 switch (Pred) {
2230 default: break;
2231 case ICmpInst::ICMP_EQ:
2232 // X == 1 -> X
2233 if (match(RHS, m_One()))
2234 return LHS;
2235 break;
2236 case ICmpInst::ICMP_NE:
2237 // X != 0 -> X
2238 if (match(RHS, m_Zero()))
2239 return LHS;
2240 break;
2241 case ICmpInst::ICMP_UGT:
2242 // X >u 0 -> X
2243 if (match(RHS, m_Zero()))
2244 return LHS;
2245 break;
2246 case ICmpInst::ICMP_UGE:
2247 // X >=u 1 -> X
2248 if (match(RHS, m_One()))
2249 return LHS;
Philip Reames13f023c2015-09-28 17:14:24 +00002250 if (implies(RHS, LHS))
2251 return getTrue(ITy);
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002252 break;
2253 case ICmpInst::ICMP_SLT:
2254 // X <s 0 -> X
2255 if (match(RHS, m_Zero()))
2256 return LHS;
2257 break;
2258 case ICmpInst::ICMP_SLE:
2259 // X <=s -1 -> X
2260 if (match(RHS, m_One()))
2261 return LHS;
2262 break;
Philip Reames13f023c2015-09-28 17:14:24 +00002263 case ICmpInst::ICMP_ULE:
2264 if (implies(LHS, RHS))
2265 return getTrue(ITy);
2266 break;
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002267 }
2268 }
2269
Duncan Sandsd3951082011-01-25 09:38:29 +00002270 // If we are comparing with zero then try hard since this is a common case.
2271 if (match(RHS, m_Zero())) {
2272 bool LHSKnownNonNegative, LHSKnownNegative;
2273 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00002274 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sandsd3951082011-01-25 09:38:29 +00002275 case ICmpInst::ICMP_ULT:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002276 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002277 case ICmpInst::ICMP_UGE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002278 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002279 case ICmpInst::ICMP_EQ:
2280 case ICmpInst::ICMP_ULE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002281 if (isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002282 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002283 break;
2284 case ICmpInst::ICMP_NE:
2285 case ICmpInst::ICMP_UGT:
Chandler Carruth66b31302015-01-04 12:03:27 +00002286 if (isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002287 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002288 break;
2289 case ICmpInst::ICMP_SLT:
Chandler Carruth66b31302015-01-04 12:03:27 +00002290 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC,
2291 Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002292 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002293 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002294 if (LHSKnownNonNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002295 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002296 break;
2297 case ICmpInst::ICMP_SLE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002298 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC,
2299 Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002300 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002301 return getTrue(ITy);
Chandler Carruth66b31302015-01-04 12:03:27 +00002302 if (LHSKnownNonNegative &&
2303 isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002304 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002305 break;
2306 case ICmpInst::ICMP_SGE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002307 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC,
2308 Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002309 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002310 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002311 if (LHSKnownNonNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002312 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002313 break;
2314 case ICmpInst::ICMP_SGT:
Chandler Carruth66b31302015-01-04 12:03:27 +00002315 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC,
2316 Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002317 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002318 return getFalse(ITy);
Chandler Carruth66b31302015-01-04 12:03:27 +00002319 if (LHSKnownNonNegative &&
2320 isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002321 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002322 break;
2323 }
2324 }
2325
2326 // See if we are doing a comparison with a constant integer.
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002327 if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002328 // Rule out tautological comparisons (eg., ult 0 or uge 0).
2329 ConstantRange RHS_CR = ICmpInst::makeConstantRange(Pred, CI->getValue());
2330 if (RHS_CR.isEmptySet())
2331 return ConstantInt::getFalse(CI->getContext());
2332 if (RHS_CR.isFullSet())
2333 return ConstantInt::getTrue(CI->getContext());
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002334
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002335 // Many binary operators with constant RHS have easy to compute constant
2336 // range. Use them to check whether the comparison is a tautology.
David Majnemer78910fc2014-05-16 17:14:03 +00002337 unsigned Width = CI->getBitWidth();
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002338 APInt Lower = APInt(Width, 0);
2339 APInt Upper = APInt(Width, 0);
2340 ConstantInt *CI2;
2341 if (match(LHS, m_URem(m_Value(), m_ConstantInt(CI2)))) {
2342 // 'urem x, CI2' produces [0, CI2).
2343 Upper = CI2->getValue();
2344 } else if (match(LHS, m_SRem(m_Value(), m_ConstantInt(CI2)))) {
2345 // 'srem x, CI2' produces (-|CI2|, |CI2|).
2346 Upper = CI2->getValue().abs();
2347 Lower = (-Upper) + 1;
Duncan Sands92af0a82011-10-28 18:17:44 +00002348 } else if (match(LHS, m_UDiv(m_ConstantInt(CI2), m_Value()))) {
2349 // 'udiv CI2, x' produces [0, CI2].
Eli Friedman0bae8b22011-11-08 21:08:02 +00002350 Upper = CI2->getValue() + 1;
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002351 } else if (match(LHS, m_UDiv(m_Value(), m_ConstantInt(CI2)))) {
2352 // 'udiv x, CI2' produces [0, UINT_MAX / CI2].
2353 APInt NegOne = APInt::getAllOnesValue(Width);
2354 if (!CI2->isZero())
2355 Upper = NegOne.udiv(CI2->getValue()) + 1;
David Majnemerea8d5db2014-05-16 16:57:04 +00002356 } else if (match(LHS, m_SDiv(m_ConstantInt(CI2), m_Value()))) {
David Majnemer651ed5e2014-07-04 00:23:39 +00002357 if (CI2->isMinSignedValue()) {
2358 // 'sdiv INT_MIN, x' produces [INT_MIN, INT_MIN / -2].
2359 Lower = CI2->getValue();
2360 Upper = Lower.lshr(1) + 1;
2361 } else {
2362 // 'sdiv CI2, x' produces [-|CI2|, |CI2|].
2363 Upper = CI2->getValue().abs() + 1;
2364 Lower = (-Upper) + 1;
2365 }
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002366 } else if (match(LHS, m_SDiv(m_Value(), m_ConstantInt(CI2)))) {
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002367 APInt IntMin = APInt::getSignedMinValue(Width);
2368 APInt IntMax = APInt::getSignedMaxValue(Width);
David Majnemeraf9180f2014-07-14 20:38:45 +00002369 APInt Val = CI2->getValue();
2370 if (Val.isAllOnesValue()) {
2371 // 'sdiv x, -1' produces [INT_MIN + 1, INT_MAX]
2372 // where CI2 != -1 and CI2 != 0 and CI2 != 1
2373 Lower = IntMin + 1;
2374 Upper = IntMax + 1;
2375 } else if (Val.countLeadingZeros() < Width - 1) {
2376 // 'sdiv x, CI2' produces [INT_MIN / CI2, INT_MAX / CI2]
2377 // where CI2 != -1 and CI2 != 0 and CI2 != 1
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002378 Lower = IntMin.sdiv(Val);
David Majnemeraf9180f2014-07-14 20:38:45 +00002379 Upper = IntMax.sdiv(Val);
2380 if (Lower.sgt(Upper))
2381 std::swap(Lower, Upper);
2382 Upper = Upper + 1;
David Majnemer5ea4fc02014-07-14 19:49:57 +00002383 assert(Upper != Lower && "Upper part of range has wrapped!");
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002384 }
David Majnemerd6d16712014-08-27 18:03:46 +00002385 } else if (match(LHS, m_NUWShl(m_ConstantInt(CI2), m_Value()))) {
2386 // 'shl nuw CI2, x' produces [CI2, CI2 << CLZ(CI2)]
2387 Lower = CI2->getValue();
2388 Upper = Lower.shl(Lower.countLeadingZeros()) + 1;
2389 } else if (match(LHS, m_NSWShl(m_ConstantInt(CI2), m_Value()))) {
2390 if (CI2->isNegative()) {
2391 // 'shl nsw CI2, x' produces [CI2 << CLO(CI2)-1, CI2]
2392 unsigned ShiftAmount = CI2->getValue().countLeadingOnes() - 1;
2393 Lower = CI2->getValue().shl(ShiftAmount);
2394 Upper = CI2->getValue() + 1;
2395 } else {
2396 // 'shl nsw CI2, x' produces [CI2, CI2 << CLZ(CI2)-1]
2397 unsigned ShiftAmount = CI2->getValue().countLeadingZeros() - 1;
2398 Lower = CI2->getValue();
2399 Upper = CI2->getValue().shl(ShiftAmount) + 1;
2400 }
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002401 } else if (match(LHS, m_LShr(m_Value(), m_ConstantInt(CI2)))) {
2402 // 'lshr x, CI2' produces [0, UINT_MAX >> CI2].
2403 APInt NegOne = APInt::getAllOnesValue(Width);
2404 if (CI2->getValue().ult(Width))
2405 Upper = NegOne.lshr(CI2->getValue()) + 1;
David Majnemer78910fc2014-05-16 17:14:03 +00002406 } else if (match(LHS, m_LShr(m_ConstantInt(CI2), m_Value()))) {
2407 // 'lshr CI2, x' produces [CI2 >> (Width-1), CI2].
2408 unsigned ShiftAmount = Width - 1;
2409 if (!CI2->isZero() && cast<BinaryOperator>(LHS)->isExact())
2410 ShiftAmount = CI2->getValue().countTrailingZeros();
2411 Lower = CI2->getValue().lshr(ShiftAmount);
2412 Upper = CI2->getValue() + 1;
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002413 } else if (match(LHS, m_AShr(m_Value(), m_ConstantInt(CI2)))) {
2414 // 'ashr x, CI2' produces [INT_MIN >> CI2, INT_MAX >> CI2].
2415 APInt IntMin = APInt::getSignedMinValue(Width);
2416 APInt IntMax = APInt::getSignedMaxValue(Width);
2417 if (CI2->getValue().ult(Width)) {
2418 Lower = IntMin.ashr(CI2->getValue());
2419 Upper = IntMax.ashr(CI2->getValue()) + 1;
2420 }
David Majnemer78910fc2014-05-16 17:14:03 +00002421 } else if (match(LHS, m_AShr(m_ConstantInt(CI2), m_Value()))) {
2422 unsigned ShiftAmount = Width - 1;
2423 if (!CI2->isZero() && cast<BinaryOperator>(LHS)->isExact())
2424 ShiftAmount = CI2->getValue().countTrailingZeros();
2425 if (CI2->isNegative()) {
2426 // 'ashr CI2, x' produces [CI2, CI2 >> (Width-1)]
2427 Lower = CI2->getValue();
2428 Upper = CI2->getValue().ashr(ShiftAmount) + 1;
2429 } else {
2430 // 'ashr CI2, x' produces [CI2 >> (Width-1), CI2]
2431 Lower = CI2->getValue().ashr(ShiftAmount);
2432 Upper = CI2->getValue() + 1;
2433 }
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002434 } else if (match(LHS, m_Or(m_Value(), m_ConstantInt(CI2)))) {
2435 // 'or x, CI2' produces [CI2, UINT_MAX].
2436 Lower = CI2->getValue();
2437 } else if (match(LHS, m_And(m_Value(), m_ConstantInt(CI2)))) {
2438 // 'and x, CI2' produces [0, CI2].
2439 Upper = CI2->getValue() + 1;
David Majnemer2df38cd2015-08-20 23:01:41 +00002440 } else if (match(LHS, m_NUWAdd(m_Value(), m_ConstantInt(CI2)))) {
2441 // 'add nuw x, CI2' produces [CI2, UINT_MAX].
2442 Lower = CI2->getValue();
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002443 }
Chen Li5cd6dee2015-09-23 17:58:44 +00002444
2445 ConstantRange LHS_CR = Lower != Upper ? ConstantRange(Lower, Upper)
2446 : ConstantRange(Width, true);
2447
2448 if (auto *I = dyn_cast<Instruction>(LHS))
2449 if (auto *Ranges = I->getMetadata(LLVMContext::MD_range))
2450 LHS_CR = LHS_CR.intersectWith(GetConstantRangeFromMetadata(Ranges, Width));
2451
2452 if (!LHS_CR.isFullSet()) {
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002453 if (RHS_CR.contains(LHS_CR))
2454 return ConstantInt::getTrue(RHS->getContext());
2455 if (RHS_CR.inverse().contains(LHS_CR))
2456 return ConstantInt::getFalse(RHS->getContext());
2457 }
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002458 }
2459
Chen Li7452d952015-09-26 03:26:47 +00002460 // If both operands have range metadata, use the metadata
2461 // to simplify the comparison.
2462 if (isa<Instruction>(RHS) && isa<Instruction>(LHS)) {
2463 auto RHS_Instr = dyn_cast<Instruction>(RHS);
2464 auto LHS_Instr = dyn_cast<Instruction>(LHS);
2465
2466 if (RHS_Instr->getMetadata(LLVMContext::MD_range) &&
2467 LHS_Instr->getMetadata(LLVMContext::MD_range)) {
2468 uint32_t BitWidth = Q.DL.getTypeSizeInBits(RHS->getType());
2469
2470 auto RHS_CR = GetConstantRangeFromMetadata(
2471 RHS_Instr->getMetadata(LLVMContext::MD_range), BitWidth);
2472 auto LHS_CR = GetConstantRangeFromMetadata(
2473 LHS_Instr->getMetadata(LLVMContext::MD_range), BitWidth);
2474
2475 auto Satisfied_CR = ConstantRange::makeSatisfyingICmpRegion(Pred, RHS_CR);
2476 if (Satisfied_CR.contains(LHS_CR))
2477 return ConstantInt::getTrue(RHS->getContext());
2478
2479 auto InversedSatisfied_CR = ConstantRange::makeSatisfyingICmpRegion(
2480 CmpInst::getInversePredicate(Pred), RHS_CR);
2481 if (InversedSatisfied_CR.contains(LHS_CR))
2482 return ConstantInt::getFalse(RHS->getContext());
2483 }
2484 }
2485
Duncan Sands8fb2c382011-01-20 13:21:55 +00002486 // Compare of cast, for example (zext X) != 0 -> X != 0
2487 if (isa<CastInst>(LHS) && (isa<Constant>(RHS) || isa<CastInst>(RHS))) {
2488 Instruction *LI = cast<CastInst>(LHS);
2489 Value *SrcOp = LI->getOperand(0);
Chris Lattner229907c2011-07-18 04:54:35 +00002490 Type *SrcTy = SrcOp->getType();
2491 Type *DstTy = LI->getType();
Duncan Sands8fb2c382011-01-20 13:21:55 +00002492
2493 // Turn icmp (ptrtoint x), (ptrtoint/constant) into a compare of the input
2494 // if the integer type is the same size as the pointer type.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002495 if (MaxRecurse && isa<PtrToIntInst>(LI) &&
2496 Q.DL.getTypeSizeInBits(SrcTy) == DstTy->getPrimitiveSizeInBits()) {
Duncan Sands8fb2c382011-01-20 13:21:55 +00002497 if (Constant *RHSC = dyn_cast<Constant>(RHS)) {
2498 // Transfer the cast to the constant.
2499 if (Value *V = SimplifyICmpInst(Pred, SrcOp,
2500 ConstantExpr::getIntToPtr(RHSC, SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002501 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002502 return V;
2503 } else if (PtrToIntInst *RI = dyn_cast<PtrToIntInst>(RHS)) {
2504 if (RI->getOperand(0)->getType() == SrcTy)
2505 // Compare without the cast.
2506 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002507 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002508 return V;
2509 }
2510 }
2511
2512 if (isa<ZExtInst>(LHS)) {
2513 // Turn icmp (zext X), (zext Y) into a compare of X and Y if they have the
2514 // same type.
2515 if (ZExtInst *RI = dyn_cast<ZExtInst>(RHS)) {
2516 if (MaxRecurse && SrcTy == RI->getOperand(0)->getType())
2517 // Compare X and Y. Note that signed predicates become unsigned.
2518 if (Value *V = SimplifyICmpInst(ICmpInst::getUnsignedPredicate(Pred),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002519 SrcOp, RI->getOperand(0), Q,
Duncan Sands8fb2c382011-01-20 13:21:55 +00002520 MaxRecurse-1))
2521 return V;
2522 }
2523 // Turn icmp (zext X), Cst into a compare of X and Cst if Cst is extended
2524 // too. If not, then try to deduce the result of the comparison.
2525 else if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
2526 // Compute the constant that would happen if we truncated to SrcTy then
2527 // reextended to DstTy.
2528 Constant *Trunc = ConstantExpr::getTrunc(CI, SrcTy);
2529 Constant *RExt = ConstantExpr::getCast(CastInst::ZExt, Trunc, DstTy);
2530
2531 // If the re-extended constant didn't change then this is effectively
2532 // also a case of comparing two zero-extended values.
2533 if (RExt == CI && MaxRecurse)
2534 if (Value *V = SimplifyICmpInst(ICmpInst::getUnsignedPredicate(Pred),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002535 SrcOp, Trunc, Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002536 return V;
2537
2538 // Otherwise the upper bits of LHS are zero while RHS has a non-zero bit
2539 // there. Use this to work out the result of the comparison.
2540 if (RExt != CI) {
2541 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00002542 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sands8fb2c382011-01-20 13:21:55 +00002543 // LHS <u RHS.
2544 case ICmpInst::ICMP_EQ:
2545 case ICmpInst::ICMP_UGT:
2546 case ICmpInst::ICMP_UGE:
2547 return ConstantInt::getFalse(CI->getContext());
2548
2549 case ICmpInst::ICMP_NE:
2550 case ICmpInst::ICMP_ULT:
2551 case ICmpInst::ICMP_ULE:
2552 return ConstantInt::getTrue(CI->getContext());
2553
2554 // LHS is non-negative. If RHS is negative then LHS >s LHS. If RHS
2555 // is non-negative then LHS <s RHS.
2556 case ICmpInst::ICMP_SGT:
2557 case ICmpInst::ICMP_SGE:
2558 return CI->getValue().isNegative() ?
2559 ConstantInt::getTrue(CI->getContext()) :
2560 ConstantInt::getFalse(CI->getContext());
2561
2562 case ICmpInst::ICMP_SLT:
2563 case ICmpInst::ICMP_SLE:
2564 return CI->getValue().isNegative() ?
2565 ConstantInt::getFalse(CI->getContext()) :
2566 ConstantInt::getTrue(CI->getContext());
2567 }
2568 }
2569 }
2570 }
2571
2572 if (isa<SExtInst>(LHS)) {
2573 // Turn icmp (sext X), (sext Y) into a compare of X and Y if they have the
2574 // same type.
2575 if (SExtInst *RI = dyn_cast<SExtInst>(RHS)) {
2576 if (MaxRecurse && SrcTy == RI->getOperand(0)->getType())
2577 // Compare X and Y. Note that the predicate does not change.
2578 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002579 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002580 return V;
2581 }
2582 // Turn icmp (sext X), Cst into a compare of X and Cst if Cst is extended
2583 // too. If not, then try to deduce the result of the comparison.
2584 else if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
2585 // Compute the constant that would happen if we truncated to SrcTy then
2586 // reextended to DstTy.
2587 Constant *Trunc = ConstantExpr::getTrunc(CI, SrcTy);
2588 Constant *RExt = ConstantExpr::getCast(CastInst::SExt, Trunc, DstTy);
2589
2590 // If the re-extended constant didn't change then this is effectively
2591 // also a case of comparing two sign-extended values.
2592 if (RExt == CI && MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002593 if (Value *V = SimplifyICmpInst(Pred, SrcOp, Trunc, Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002594 return V;
2595
2596 // Otherwise the upper bits of LHS are all equal, while RHS has varying
2597 // bits there. Use this to work out the result of the comparison.
2598 if (RExt != CI) {
2599 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00002600 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sands8fb2c382011-01-20 13:21:55 +00002601 case ICmpInst::ICMP_EQ:
2602 return ConstantInt::getFalse(CI->getContext());
2603 case ICmpInst::ICMP_NE:
2604 return ConstantInt::getTrue(CI->getContext());
2605
2606 // If RHS is non-negative then LHS <s RHS. If RHS is negative then
2607 // LHS >s RHS.
2608 case ICmpInst::ICMP_SGT:
2609 case ICmpInst::ICMP_SGE:
2610 return CI->getValue().isNegative() ?
2611 ConstantInt::getTrue(CI->getContext()) :
2612 ConstantInt::getFalse(CI->getContext());
2613 case ICmpInst::ICMP_SLT:
2614 case ICmpInst::ICMP_SLE:
2615 return CI->getValue().isNegative() ?
2616 ConstantInt::getFalse(CI->getContext()) :
2617 ConstantInt::getTrue(CI->getContext());
2618
2619 // If LHS is non-negative then LHS <u RHS. If LHS is negative then
2620 // LHS >u RHS.
2621 case ICmpInst::ICMP_UGT:
2622 case ICmpInst::ICMP_UGE:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002623 // Comparison is true iff the LHS <s 0.
Duncan Sands8fb2c382011-01-20 13:21:55 +00002624 if (MaxRecurse)
2625 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SLT, SrcOp,
2626 Constant::getNullValue(SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002627 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002628 return V;
2629 break;
2630 case ICmpInst::ICMP_ULT:
2631 case ICmpInst::ICMP_ULE:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002632 // Comparison is true iff the LHS >=s 0.
Duncan Sands8fb2c382011-01-20 13:21:55 +00002633 if (MaxRecurse)
2634 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SGE, SrcOp,
2635 Constant::getNullValue(SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002636 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002637 return V;
2638 break;
2639 }
2640 }
2641 }
2642 }
2643 }
2644
James Molloy1d88d6f2015-10-22 13:18:42 +00002645 // icmp eq|ne X, Y -> false|true if X != Y
2646 if ((Pred == ICmpInst::ICMP_EQ || Pred == ICmpInst::ICMP_NE) &&
2647 isKnownNonEqual(LHS, RHS, Q.DL, Q.AC, Q.CxtI, Q.DT)) {
2648 LLVMContext &Ctx = LHS->getType()->getContext();
2649 return Pred == ICmpInst::ICMP_NE ?
2650 ConstantInt::getTrue(Ctx) : ConstantInt::getFalse(Ctx);
2651 }
2652
Duncan Sandsd114ab32011-02-13 17:15:40 +00002653 // Special logic for binary operators.
2654 BinaryOperator *LBO = dyn_cast<BinaryOperator>(LHS);
2655 BinaryOperator *RBO = dyn_cast<BinaryOperator>(RHS);
2656 if (MaxRecurse && (LBO || RBO)) {
Duncan Sandsd114ab32011-02-13 17:15:40 +00002657 // Analyze the case when either LHS or RHS is an add instruction.
Craig Topper9f008862014-04-15 04:59:12 +00002658 Value *A = nullptr, *B = nullptr, *C = nullptr, *D = nullptr;
Duncan Sandsd114ab32011-02-13 17:15:40 +00002659 // LHS = A + B (or A and B are null); RHS = C + D (or C and D are null).
2660 bool NoLHSWrapProblem = false, NoRHSWrapProblem = false;
2661 if (LBO && LBO->getOpcode() == Instruction::Add) {
2662 A = LBO->getOperand(0); B = LBO->getOperand(1);
2663 NoLHSWrapProblem = ICmpInst::isEquality(Pred) ||
2664 (CmpInst::isUnsigned(Pred) && LBO->hasNoUnsignedWrap()) ||
2665 (CmpInst::isSigned(Pred) && LBO->hasNoSignedWrap());
2666 }
2667 if (RBO && RBO->getOpcode() == Instruction::Add) {
2668 C = RBO->getOperand(0); D = RBO->getOperand(1);
2669 NoRHSWrapProblem = ICmpInst::isEquality(Pred) ||
2670 (CmpInst::isUnsigned(Pred) && RBO->hasNoUnsignedWrap()) ||
2671 (CmpInst::isSigned(Pred) && RBO->hasNoSignedWrap());
2672 }
2673
2674 // icmp (X+Y), X -> icmp Y, 0 for equalities or if there is no overflow.
2675 if ((A == RHS || B == RHS) && NoLHSWrapProblem)
2676 if (Value *V = SimplifyICmpInst(Pred, A == RHS ? B : A,
2677 Constant::getNullValue(RHS->getType()),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002678 Q, MaxRecurse-1))
Duncan Sandsd114ab32011-02-13 17:15:40 +00002679 return V;
2680
2681 // icmp X, (X+Y) -> icmp 0, Y for equalities or if there is no overflow.
2682 if ((C == LHS || D == LHS) && NoRHSWrapProblem)
2683 if (Value *V = SimplifyICmpInst(Pred,
2684 Constant::getNullValue(LHS->getType()),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002685 C == LHS ? D : C, Q, MaxRecurse-1))
Duncan Sandsd114ab32011-02-13 17:15:40 +00002686 return V;
2687
2688 // icmp (X+Y), (X+Z) -> icmp Y,Z for equalities or if there is no overflow.
2689 if (A && C && (A == C || A == D || B == C || B == D) &&
2690 NoLHSWrapProblem && NoRHSWrapProblem) {
2691 // Determine Y and Z in the form icmp (X+Y), (X+Z).
Duncan Sandsc41076c2012-11-16 19:41:26 +00002692 Value *Y, *Z;
2693 if (A == C) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002694 // C + B == C + D -> B == D
Duncan Sandsc41076c2012-11-16 19:41:26 +00002695 Y = B;
2696 Z = D;
2697 } else if (A == D) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002698 // D + B == C + D -> B == C
Duncan Sandsc41076c2012-11-16 19:41:26 +00002699 Y = B;
2700 Z = C;
2701 } else if (B == C) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002702 // A + C == C + D -> A == D
Duncan Sandsc41076c2012-11-16 19:41:26 +00002703 Y = A;
2704 Z = D;
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002705 } else {
2706 assert(B == D);
2707 // A + D == C + D -> A == C
Duncan Sandsc41076c2012-11-16 19:41:26 +00002708 Y = A;
2709 Z = C;
2710 }
Duncan Sandsb8cee002012-03-13 11:42:19 +00002711 if (Value *V = SimplifyICmpInst(Pred, Y, Z, Q, MaxRecurse-1))
Duncan Sandsd114ab32011-02-13 17:15:40 +00002712 return V;
2713 }
2714 }
2715
David Majnemerbd9ce4e2014-11-25 02:55:48 +00002716 // icmp pred (or X, Y), X
2717 if (LBO && match(LBO, m_CombineOr(m_Or(m_Value(), m_Specific(RHS)),
2718 m_Or(m_Specific(RHS), m_Value())))) {
2719 if (Pred == ICmpInst::ICMP_ULT)
2720 return getFalse(ITy);
2721 if (Pred == ICmpInst::ICMP_UGE)
2722 return getTrue(ITy);
2723 }
2724 // icmp pred X, (or X, Y)
2725 if (RBO && match(RBO, m_CombineOr(m_Or(m_Value(), m_Specific(LHS)),
2726 m_Or(m_Specific(LHS), m_Value())))) {
2727 if (Pred == ICmpInst::ICMP_ULE)
2728 return getTrue(ITy);
2729 if (Pred == ICmpInst::ICMP_UGT)
2730 return getFalse(ITy);
2731 }
2732
2733 // icmp pred (and X, Y), X
2734 if (LBO && match(LBO, m_CombineOr(m_And(m_Value(), m_Specific(RHS)),
2735 m_And(m_Specific(RHS), m_Value())))) {
2736 if (Pred == ICmpInst::ICMP_UGT)
2737 return getFalse(ITy);
2738 if (Pred == ICmpInst::ICMP_ULE)
2739 return getTrue(ITy);
2740 }
2741 // icmp pred X, (and X, Y)
2742 if (RBO && match(RBO, m_CombineOr(m_And(m_Value(), m_Specific(LHS)),
2743 m_And(m_Specific(LHS), m_Value())))) {
2744 if (Pred == ICmpInst::ICMP_UGE)
2745 return getTrue(ITy);
2746 if (Pred == ICmpInst::ICMP_ULT)
2747 return getFalse(ITy);
2748 }
2749
David Majnemer2d6c0232014-05-14 20:16:28 +00002750 // 0 - (zext X) pred C
2751 if (!CmpInst::isUnsigned(Pred) && match(LHS, m_Neg(m_ZExt(m_Value())))) {
2752 if (ConstantInt *RHSC = dyn_cast<ConstantInt>(RHS)) {
2753 if (RHSC->getValue().isStrictlyPositive()) {
2754 if (Pred == ICmpInst::ICMP_SLT)
2755 return ConstantInt::getTrue(RHSC->getContext());
2756 if (Pred == ICmpInst::ICMP_SGE)
2757 return ConstantInt::getFalse(RHSC->getContext());
2758 if (Pred == ICmpInst::ICMP_EQ)
2759 return ConstantInt::getFalse(RHSC->getContext());
2760 if (Pred == ICmpInst::ICMP_NE)
2761 return ConstantInt::getTrue(RHSC->getContext());
2762 }
2763 if (RHSC->getValue().isNonNegative()) {
2764 if (Pred == ICmpInst::ICMP_SLE)
2765 return ConstantInt::getTrue(RHSC->getContext());
2766 if (Pred == ICmpInst::ICMP_SGT)
2767 return ConstantInt::getFalse(RHSC->getContext());
2768 }
2769 }
2770 }
2771
Nick Lewycky35aeea92013-07-12 23:42:57 +00002772 // icmp pred (urem X, Y), Y
Nick Lewycky980104d2011-03-09 06:26:03 +00002773 if (LBO && match(LBO, m_URem(m_Value(), m_Specific(RHS)))) {
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002774 bool KnownNonNegative, KnownNegative;
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002775 switch (Pred) {
2776 default:
2777 break;
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002778 case ICmpInst::ICMP_SGT:
2779 case ICmpInst::ICMP_SGE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002780 ComputeSignBit(RHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC,
2781 Q.CxtI, Q.DT);
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002782 if (!KnownNonNegative)
2783 break;
2784 // fall-through
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002785 case ICmpInst::ICMP_EQ:
2786 case ICmpInst::ICMP_UGT:
2787 case ICmpInst::ICMP_UGE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002788 return getFalse(ITy);
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002789 case ICmpInst::ICMP_SLT:
2790 case ICmpInst::ICMP_SLE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002791 ComputeSignBit(RHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC,
2792 Q.CxtI, Q.DT);
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002793 if (!KnownNonNegative)
2794 break;
2795 // fall-through
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002796 case ICmpInst::ICMP_NE:
2797 case ICmpInst::ICMP_ULT:
2798 case ICmpInst::ICMP_ULE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002799 return getTrue(ITy);
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002800 }
2801 }
Nick Lewycky35aeea92013-07-12 23:42:57 +00002802
2803 // icmp pred X, (urem Y, X)
Nick Lewycky980104d2011-03-09 06:26:03 +00002804 if (RBO && match(RBO, m_URem(m_Value(), m_Specific(LHS)))) {
2805 bool KnownNonNegative, KnownNegative;
2806 switch (Pred) {
2807 default:
2808 break;
2809 case ICmpInst::ICMP_SGT:
2810 case ICmpInst::ICMP_SGE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002811 ComputeSignBit(LHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC,
2812 Q.CxtI, Q.DT);
Nick Lewycky980104d2011-03-09 06:26:03 +00002813 if (!KnownNonNegative)
2814 break;
2815 // fall-through
Nick Lewycky774647d2011-03-09 08:20:06 +00002816 case ICmpInst::ICMP_NE:
Nick Lewycky980104d2011-03-09 06:26:03 +00002817 case ICmpInst::ICMP_UGT:
2818 case ICmpInst::ICMP_UGE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002819 return getTrue(ITy);
Nick Lewycky980104d2011-03-09 06:26:03 +00002820 case ICmpInst::ICMP_SLT:
2821 case ICmpInst::ICMP_SLE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002822 ComputeSignBit(LHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC,
2823 Q.CxtI, Q.DT);
Nick Lewycky980104d2011-03-09 06:26:03 +00002824 if (!KnownNonNegative)
2825 break;
2826 // fall-through
Nick Lewycky774647d2011-03-09 08:20:06 +00002827 case ICmpInst::ICMP_EQ:
Nick Lewycky980104d2011-03-09 06:26:03 +00002828 case ICmpInst::ICMP_ULT:
2829 case ICmpInst::ICMP_ULE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002830 return getFalse(ITy);
Nick Lewycky980104d2011-03-09 06:26:03 +00002831 }
2832 }
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002833
Duncan Sands92af0a82011-10-28 18:17:44 +00002834 // x udiv y <=u x.
2835 if (LBO && match(LBO, m_UDiv(m_Specific(RHS), m_Value()))) {
2836 // icmp pred (X /u Y), X
2837 if (Pred == ICmpInst::ICMP_UGT)
2838 return getFalse(ITy);
2839 if (Pred == ICmpInst::ICMP_ULE)
2840 return getTrue(ITy);
2841 }
2842
David Majnemer76d06bc2014-08-28 03:34:28 +00002843 // handle:
2844 // CI2 << X == CI
2845 // CI2 << X != CI
2846 //
2847 // where CI2 is a power of 2 and CI isn't
2848 if (auto *CI = dyn_cast<ConstantInt>(RHS)) {
2849 const APInt *CI2Val, *CIVal = &CI->getValue();
2850 if (LBO && match(LBO, m_Shl(m_APInt(CI2Val), m_Value())) &&
2851 CI2Val->isPowerOf2()) {
2852 if (!CIVal->isPowerOf2()) {
2853 // CI2 << X can equal zero in some circumstances,
2854 // this simplification is unsafe if CI is zero.
2855 //
2856 // We know it is safe if:
2857 // - The shift is nsw, we can't shift out the one bit.
2858 // - The shift is nuw, we can't shift out the one bit.
2859 // - CI2 is one
2860 // - CI isn't zero
2861 if (LBO->hasNoSignedWrap() || LBO->hasNoUnsignedWrap() ||
2862 *CI2Val == 1 || !CI->isZero()) {
2863 if (Pred == ICmpInst::ICMP_EQ)
2864 return ConstantInt::getFalse(RHS->getContext());
2865 if (Pred == ICmpInst::ICMP_NE)
2866 return ConstantInt::getTrue(RHS->getContext());
2867 }
2868 }
2869 if (CIVal->isSignBit() && *CI2Val == 1) {
2870 if (Pred == ICmpInst::ICMP_UGT)
2871 return ConstantInt::getFalse(RHS->getContext());
2872 if (Pred == ICmpInst::ICMP_ULE)
2873 return ConstantInt::getTrue(RHS->getContext());
2874 }
2875 }
2876 }
2877
Nick Lewycky9719a712011-03-05 05:19:11 +00002878 if (MaxRecurse && LBO && RBO && LBO->getOpcode() == RBO->getOpcode() &&
2879 LBO->getOperand(1) == RBO->getOperand(1)) {
2880 switch (LBO->getOpcode()) {
2881 default: break;
2882 case Instruction::UDiv:
2883 case Instruction::LShr:
2884 if (ICmpInst::isSigned(Pred))
2885 break;
2886 // fall-through
2887 case Instruction::SDiv:
2888 case Instruction::AShr:
Eli Friedman8a20e662011-05-05 21:59:18 +00002889 if (!LBO->isExact() || !RBO->isExact())
Nick Lewycky9719a712011-03-05 05:19:11 +00002890 break;
2891 if (Value *V = SimplifyICmpInst(Pred, LBO->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002892 RBO->getOperand(0), Q, MaxRecurse-1))
Nick Lewycky9719a712011-03-05 05:19:11 +00002893 return V;
2894 break;
2895 case Instruction::Shl: {
Duncan Sands020c1942011-08-04 10:02:21 +00002896 bool NUW = LBO->hasNoUnsignedWrap() && RBO->hasNoUnsignedWrap();
Nick Lewycky9719a712011-03-05 05:19:11 +00002897 bool NSW = LBO->hasNoSignedWrap() && RBO->hasNoSignedWrap();
2898 if (!NUW && !NSW)
2899 break;
2900 if (!NSW && ICmpInst::isSigned(Pred))
2901 break;
2902 if (Value *V = SimplifyICmpInst(Pred, LBO->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002903 RBO->getOperand(0), Q, MaxRecurse-1))
Nick Lewycky9719a712011-03-05 05:19:11 +00002904 return V;
2905 break;
2906 }
2907 }
2908 }
2909
Duncan Sands0a9c1242011-05-03 19:53:10 +00002910 // Simplify comparisons involving max/min.
2911 Value *A, *B;
2912 CmpInst::Predicate P = CmpInst::BAD_ICMP_PREDICATE;
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002913 CmpInst::Predicate EqP; // Chosen so that "A == max/min(A,B)" iff "A EqP B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002914
Duncan Sandsa2287852011-05-04 16:05:05 +00002915 // Signed variants on "max(a,b)>=a -> true".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002916 if (match(LHS, m_SMax(m_Value(A), m_Value(B))) && (A == RHS || B == RHS)) {
2917 if (A != RHS) std::swap(A, B); // smax(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002918 EqP = CmpInst::ICMP_SGE; // "A == smax(A, B)" iff "A sge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002919 // We analyze this as smax(A, B) pred A.
2920 P = Pred;
2921 } else if (match(RHS, m_SMax(m_Value(A), m_Value(B))) &&
2922 (A == LHS || B == LHS)) {
2923 if (A != LHS) std::swap(A, B); // A pred smax(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002924 EqP = CmpInst::ICMP_SGE; // "A == smax(A, B)" iff "A sge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002925 // We analyze this as smax(A, B) swapped-pred A.
2926 P = CmpInst::getSwappedPredicate(Pred);
2927 } else if (match(LHS, m_SMin(m_Value(A), m_Value(B))) &&
2928 (A == RHS || B == RHS)) {
2929 if (A != RHS) std::swap(A, B); // smin(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002930 EqP = CmpInst::ICMP_SLE; // "A == smin(A, B)" iff "A sle B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002931 // We analyze this as smax(-A, -B) swapped-pred -A.
2932 // Note that we do not need to actually form -A or -B thanks to EqP.
2933 P = CmpInst::getSwappedPredicate(Pred);
2934 } else if (match(RHS, m_SMin(m_Value(A), m_Value(B))) &&
2935 (A == LHS || B == LHS)) {
2936 if (A != LHS) std::swap(A, B); // A pred smin(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002937 EqP = CmpInst::ICMP_SLE; // "A == smin(A, B)" iff "A sle B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002938 // We analyze this as smax(-A, -B) pred -A.
2939 // Note that we do not need to actually form -A or -B thanks to EqP.
2940 P = Pred;
2941 }
2942 if (P != CmpInst::BAD_ICMP_PREDICATE) {
2943 // Cases correspond to "max(A, B) p A".
2944 switch (P) {
2945 default:
2946 break;
2947 case CmpInst::ICMP_EQ:
2948 case CmpInst::ICMP_SLE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002949 // Equivalent to "A EqP B". This may be the same as the condition tested
2950 // in the max/min; if so, we can just return that.
2951 if (Value *V = ExtractEquivalentCondition(LHS, EqP, A, B))
2952 return V;
2953 if (Value *V = ExtractEquivalentCondition(RHS, EqP, A, B))
2954 return V;
2955 // Otherwise, see if "A EqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002956 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002957 if (Value *V = SimplifyICmpInst(EqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002958 return V;
2959 break;
2960 case CmpInst::ICMP_NE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002961 case CmpInst::ICMP_SGT: {
2962 CmpInst::Predicate InvEqP = CmpInst::getInversePredicate(EqP);
2963 // Equivalent to "A InvEqP B". This may be the same as the condition
2964 // tested in the max/min; if so, we can just return that.
2965 if (Value *V = ExtractEquivalentCondition(LHS, InvEqP, A, B))
2966 return V;
2967 if (Value *V = ExtractEquivalentCondition(RHS, InvEqP, A, B))
2968 return V;
2969 // Otherwise, see if "A InvEqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002970 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002971 if (Value *V = SimplifyICmpInst(InvEqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002972 return V;
2973 break;
Duncan Sandsaf327282011-05-07 16:56:49 +00002974 }
Duncan Sands0a9c1242011-05-03 19:53:10 +00002975 case CmpInst::ICMP_SGE:
2976 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002977 return getTrue(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002978 case CmpInst::ICMP_SLT:
2979 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002980 return getFalse(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002981 }
2982 }
2983
Duncan Sandsa2287852011-05-04 16:05:05 +00002984 // Unsigned variants on "max(a,b)>=a -> true".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002985 P = CmpInst::BAD_ICMP_PREDICATE;
2986 if (match(LHS, m_UMax(m_Value(A), m_Value(B))) && (A == RHS || B == RHS)) {
2987 if (A != RHS) std::swap(A, B); // umax(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002988 EqP = CmpInst::ICMP_UGE; // "A == umax(A, B)" iff "A uge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002989 // We analyze this as umax(A, B) pred A.
2990 P = Pred;
2991 } else if (match(RHS, m_UMax(m_Value(A), m_Value(B))) &&
2992 (A == LHS || B == LHS)) {
2993 if (A != LHS) std::swap(A, B); // A pred umax(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002994 EqP = CmpInst::ICMP_UGE; // "A == umax(A, B)" iff "A uge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002995 // We analyze this as umax(A, B) swapped-pred A.
2996 P = CmpInst::getSwappedPredicate(Pred);
2997 } else if (match(LHS, m_UMin(m_Value(A), m_Value(B))) &&
2998 (A == RHS || B == RHS)) {
2999 if (A != RHS) std::swap(A, B); // umin(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00003000 EqP = CmpInst::ICMP_ULE; // "A == umin(A, B)" iff "A ule B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00003001 // We analyze this as umax(-A, -B) swapped-pred -A.
3002 // Note that we do not need to actually form -A or -B thanks to EqP.
3003 P = CmpInst::getSwappedPredicate(Pred);
3004 } else if (match(RHS, m_UMin(m_Value(A), m_Value(B))) &&
3005 (A == LHS || B == LHS)) {
3006 if (A != LHS) std::swap(A, B); // A pred umin(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00003007 EqP = CmpInst::ICMP_ULE; // "A == umin(A, B)" iff "A ule B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00003008 // We analyze this as umax(-A, -B) pred -A.
3009 // Note that we do not need to actually form -A or -B thanks to EqP.
3010 P = Pred;
3011 }
3012 if (P != CmpInst::BAD_ICMP_PREDICATE) {
3013 // Cases correspond to "max(A, B) p A".
3014 switch (P) {
3015 default:
3016 break;
3017 case CmpInst::ICMP_EQ:
3018 case CmpInst::ICMP_ULE:
Duncan Sandsaf327282011-05-07 16:56:49 +00003019 // Equivalent to "A EqP B". This may be the same as the condition tested
3020 // in the max/min; if so, we can just return that.
3021 if (Value *V = ExtractEquivalentCondition(LHS, EqP, A, B))
3022 return V;
3023 if (Value *V = ExtractEquivalentCondition(RHS, EqP, A, B))
3024 return V;
3025 // Otherwise, see if "A EqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00003026 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00003027 if (Value *V = SimplifyICmpInst(EqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00003028 return V;
3029 break;
3030 case CmpInst::ICMP_NE:
Duncan Sandsaf327282011-05-07 16:56:49 +00003031 case CmpInst::ICMP_UGT: {
3032 CmpInst::Predicate InvEqP = CmpInst::getInversePredicate(EqP);
3033 // Equivalent to "A InvEqP B". This may be the same as the condition
3034 // tested in the max/min; if so, we can just return that.
3035 if (Value *V = ExtractEquivalentCondition(LHS, InvEqP, A, B))
3036 return V;
3037 if (Value *V = ExtractEquivalentCondition(RHS, InvEqP, A, B))
3038 return V;
3039 // Otherwise, see if "A InvEqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00003040 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00003041 if (Value *V = SimplifyICmpInst(InvEqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00003042 return V;
3043 break;
Duncan Sandsaf327282011-05-07 16:56:49 +00003044 }
Duncan Sands0a9c1242011-05-03 19:53:10 +00003045 case CmpInst::ICMP_UGE:
3046 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00003047 return getTrue(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00003048 case CmpInst::ICMP_ULT:
3049 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00003050 return getFalse(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00003051 }
3052 }
3053
Duncan Sandsa2287852011-05-04 16:05:05 +00003054 // Variants on "max(x,y) >= min(x,z)".
3055 Value *C, *D;
3056 if (match(LHS, m_SMax(m_Value(A), m_Value(B))) &&
3057 match(RHS, m_SMin(m_Value(C), m_Value(D))) &&
3058 (A == C || A == D || B == C || B == D)) {
3059 // max(x, ?) pred min(x, ?).
3060 if (Pred == CmpInst::ICMP_SGE)
3061 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00003062 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00003063 if (Pred == CmpInst::ICMP_SLT)
3064 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00003065 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00003066 } else if (match(LHS, m_SMin(m_Value(A), m_Value(B))) &&
3067 match(RHS, m_SMax(m_Value(C), m_Value(D))) &&
3068 (A == C || A == D || B == C || B == D)) {
3069 // min(x, ?) pred max(x, ?).
3070 if (Pred == CmpInst::ICMP_SLE)
3071 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00003072 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00003073 if (Pred == CmpInst::ICMP_SGT)
3074 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00003075 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00003076 } else if (match(LHS, m_UMax(m_Value(A), m_Value(B))) &&
3077 match(RHS, m_UMin(m_Value(C), m_Value(D))) &&
3078 (A == C || A == D || B == C || B == D)) {
3079 // max(x, ?) pred min(x, ?).
3080 if (Pred == CmpInst::ICMP_UGE)
3081 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00003082 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00003083 if (Pred == CmpInst::ICMP_ULT)
3084 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00003085 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00003086 } else if (match(LHS, m_UMin(m_Value(A), m_Value(B))) &&
3087 match(RHS, m_UMax(m_Value(C), m_Value(D))) &&
3088 (A == C || A == D || B == C || B == D)) {
3089 // min(x, ?) pred max(x, ?).
3090 if (Pred == CmpInst::ICMP_ULE)
3091 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00003092 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00003093 if (Pred == CmpInst::ICMP_UGT)
3094 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00003095 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00003096 }
3097
Chandler Carruth8059c842012-03-25 21:28:14 +00003098 // Simplify comparisons of related pointers using a powerful, recursive
3099 // GEP-walk when we have target data available..
Dan Gohman18c77a12013-01-31 02:50:36 +00003100 if (LHS->getType()->isPointerTy())
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003101 if (Constant *C = computePointerICmp(Q.DL, Q.TLI, Pred, LHS, RHS))
Chandler Carruth8059c842012-03-25 21:28:14 +00003102 return C;
3103
Nick Lewycky3db143e2012-02-26 02:09:49 +00003104 if (GetElementPtrInst *GLHS = dyn_cast<GetElementPtrInst>(LHS)) {
3105 if (GEPOperator *GRHS = dyn_cast<GEPOperator>(RHS)) {
3106 if (GLHS->getPointerOperand() == GRHS->getPointerOperand() &&
3107 GLHS->hasAllConstantIndices() && GRHS->hasAllConstantIndices() &&
3108 (ICmpInst::isEquality(Pred) ||
3109 (GLHS->isInBounds() && GRHS->isInBounds() &&
3110 Pred == ICmpInst::getSignedPredicate(Pred)))) {
3111 // The bases are equal and the indices are constant. Build a constant
3112 // expression GEP with the same indices and a null base pointer to see
3113 // what constant folding can make out of it.
3114 Constant *Null = Constant::getNullValue(GLHS->getPointerOperandType());
3115 SmallVector<Value *, 4> IndicesLHS(GLHS->idx_begin(), GLHS->idx_end());
David Blaikie4a2e73b2015-04-02 18:55:32 +00003116 Constant *NewLHS = ConstantExpr::getGetElementPtr(
3117 GLHS->getSourceElementType(), Null, IndicesLHS);
Nick Lewycky3db143e2012-02-26 02:09:49 +00003118
3119 SmallVector<Value *, 4> IndicesRHS(GRHS->idx_begin(), GRHS->idx_end());
David Blaikie4a2e73b2015-04-02 18:55:32 +00003120 Constant *NewRHS = ConstantExpr::getGetElementPtr(
3121 GLHS->getSourceElementType(), Null, IndicesRHS);
Nick Lewycky3db143e2012-02-26 02:09:49 +00003122 return ConstantExpr::getICmp(Pred, NewLHS, NewRHS);
3123 }
3124 }
3125 }
3126
David Majnemer5854e9f2014-11-16 02:20:08 +00003127 // If a bit is known to be zero for A and known to be one for B,
3128 // then A and B cannot be equal.
3129 if (ICmpInst::isEquality(Pred)) {
3130 if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
3131 uint32_t BitWidth = CI->getBitWidth();
3132 APInt LHSKnownZero(BitWidth, 0);
3133 APInt LHSKnownOne(BitWidth, 0);
Chandler Carruth66b31302015-01-04 12:03:27 +00003134 computeKnownBits(LHS, LHSKnownZero, LHSKnownOne, Q.DL, /*Depth=*/0, Q.AC,
David Majnemer5854e9f2014-11-16 02:20:08 +00003135 Q.CxtI, Q.DT);
3136 const APInt &RHSVal = CI->getValue();
3137 if (((LHSKnownZero & RHSVal) != 0) || ((LHSKnownOne & ~RHSVal) != 0))
3138 return Pred == ICmpInst::ICMP_EQ
3139 ? ConstantInt::getFalse(CI->getContext())
3140 : ConstantInt::getTrue(CI->getContext());
3141 }
3142 }
3143
Duncan Sandsf532d312010-11-07 16:12:23 +00003144 // If the comparison is with the result of a select instruction, check whether
3145 // comparing with either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003146 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003147 if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003148 return V;
3149
3150 // If the comparison is with the result of a phi instruction, check whether
3151 // doing the compare with each incoming phi value yields a common result.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003152 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003153 if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsfc5ad3f02010-11-09 17:25:51 +00003154 return V;
Duncan Sandsf532d312010-11-07 16:12:23 +00003155
Craig Topper9f008862014-04-15 04:59:12 +00003156 return nullptr;
Chris Lattner084a1b52009-11-09 22:57:59 +00003157}
3158
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003159Value *llvm::SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003160 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00003161 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003162 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003163 Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003164 return ::SimplifyICmpInst(Predicate, LHS, RHS, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003165 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003166}
3167
Chris Lattnerc1f19072009-11-09 23:28:39 +00003168/// SimplifyFCmpInst - Given operands for an FCmpInst, see if we can
3169/// fold the result. If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003170static Value *SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00003171 FastMathFlags FMF, const Query &Q,
3172 unsigned MaxRecurse) {
Chris Lattnerc1f19072009-11-09 23:28:39 +00003173 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate;
3174 assert(CmpInst::isFPPredicate(Pred) && "Not an FP compare!");
3175
Chris Lattnera71e9d62009-11-10 00:55:12 +00003176 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
Chris Lattnerc1f19072009-11-09 23:28:39 +00003177 if (Constant *CRHS = dyn_cast<Constant>(RHS))
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003178 return ConstantFoldCompareInstOperands(Pred, CLHS, CRHS, Q.DL, Q.TLI);
Duncan Sands7e800d62010-11-14 11:23:23 +00003179
Chris Lattnera71e9d62009-11-10 00:55:12 +00003180 // If we have a constant, make sure it is on the RHS.
3181 std::swap(LHS, RHS);
3182 Pred = CmpInst::getSwappedPredicate(Pred);
3183 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003184
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003185 // Fold trivial predicates.
3186 if (Pred == FCmpInst::FCMP_FALSE)
3187 return ConstantInt::get(GetCompareTy(LHS), 0);
3188 if (Pred == FCmpInst::FCMP_TRUE)
3189 return ConstantInt::get(GetCompareTy(LHS), 1);
3190
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00003191 // UNO/ORD predicates can be trivially folded if NaNs are ignored.
3192 if (FMF.noNaNs()) {
3193 if (Pred == FCmpInst::FCMP_UNO)
3194 return ConstantInt::get(GetCompareTy(LHS), 0);
3195 if (Pred == FCmpInst::FCMP_ORD)
3196 return ConstantInt::get(GetCompareTy(LHS), 1);
3197 }
3198
Mehdi Aminieb242a52015-03-09 03:20:25 +00003199 // fcmp pred x, undef and fcmp pred undef, x
3200 // fold to true if unordered, false if ordered
3201 if (isa<UndefValue>(LHS) || isa<UndefValue>(RHS)) {
3202 // Choosing NaN for the undef will always make unordered comparison succeed
3203 // and ordered comparison fail.
3204 return ConstantInt::get(GetCompareTy(LHS), CmpInst::isUnordered(Pred));
3205 }
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003206
3207 // fcmp x,x -> true/false. Not all compares are foldable.
Duncan Sands772749a2011-01-01 20:08:02 +00003208 if (LHS == RHS) {
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003209 if (CmpInst::isTrueWhenEqual(Pred))
3210 return ConstantInt::get(GetCompareTy(LHS), 1);
3211 if (CmpInst::isFalseWhenEqual(Pred))
3212 return ConstantInt::get(GetCompareTy(LHS), 0);
3213 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003214
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003215 // Handle fcmp with constant RHS
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003216 if (ConstantFP *CFP = dyn_cast<ConstantFP>(RHS)) {
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003217 // If the constant is a nan, see if we can fold the comparison based on it.
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003218 if (CFP->getValueAPF().isNaN()) {
3219 if (FCmpInst::isOrdered(Pred)) // True "if ordered and foo"
3220 return ConstantInt::getFalse(CFP->getContext());
3221 assert(FCmpInst::isUnordered(Pred) &&
3222 "Comparison must be either ordered or unordered!");
3223 // True if unordered.
3224 return ConstantInt::getTrue(CFP->getContext());
3225 }
3226 // Check whether the constant is an infinity.
3227 if (CFP->getValueAPF().isInfinity()) {
3228 if (CFP->getValueAPF().isNegative()) {
Elena Demikhovsky45f04482015-01-28 08:03:58 +00003229 switch (Pred) {
Elena Demikhovsky45f04482015-01-28 08:03:58 +00003230 case FCmpInst::FCMP_OLT:
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003231 // No value is ordered and less than negative infinity.
3232 return ConstantInt::getFalse(CFP->getContext());
3233 case FCmpInst::FCMP_UGE:
3234 // All values are unordered with or at least negative infinity.
3235 return ConstantInt::getTrue(CFP->getContext());
Elena Demikhovsky45f04482015-01-28 08:03:58 +00003236 default:
3237 break;
3238 }
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003239 } else {
3240 switch (Pred) {
3241 case FCmpInst::FCMP_OGT:
3242 // No value is ordered and greater than infinity.
3243 return ConstantInt::getFalse(CFP->getContext());
3244 case FCmpInst::FCMP_ULE:
3245 // All values are unordered with and at most infinity.
3246 return ConstantInt::getTrue(CFP->getContext());
3247 default:
3248 break;
3249 }
3250 }
3251 }
3252 if (CFP->getValueAPF().isZero()) {
3253 switch (Pred) {
3254 case FCmpInst::FCMP_UGE:
3255 if (CannotBeOrderedLessThanZero(LHS))
3256 return ConstantInt::getTrue(CFP->getContext());
3257 break;
3258 case FCmpInst::FCMP_OLT:
3259 // X < 0
3260 if (CannotBeOrderedLessThanZero(LHS))
3261 return ConstantInt::getFalse(CFP->getContext());
3262 break;
3263 default:
3264 break;
3265 }
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003266 }
3267 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003268
Duncan Sandsa620bd12010-11-07 16:46:25 +00003269 // If the comparison is with the result of a select instruction, check whether
3270 // comparing with either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003271 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003272 if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003273 return V;
3274
3275 // If the comparison is with the result of a phi instruction, check whether
3276 // doing the compare with each incoming phi value yields a common result.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003277 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003278 if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsfc5ad3f02010-11-09 17:25:51 +00003279 return V;
Duncan Sandsa620bd12010-11-07 16:46:25 +00003280
Craig Topper9f008862014-04-15 04:59:12 +00003281 return nullptr;
Chris Lattnerc1f19072009-11-09 23:28:39 +00003282}
3283
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003284Value *llvm::SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00003285 FastMathFlags FMF, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00003286 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003287 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003288 const Instruction *CxtI) {
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00003289 return ::SimplifyFCmpInst(Predicate, LHS, RHS, FMF,
3290 Query(DL, TLI, DT, AC, CxtI), RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003291}
3292
David Majnemer3f0fb982015-06-06 22:40:21 +00003293/// SimplifyWithOpReplaced - See if V simplifies when its operand Op is
3294/// replaced with RepOp.
3295static const Value *SimplifyWithOpReplaced(Value *V, Value *Op, Value *RepOp,
3296 const Query &Q,
3297 unsigned MaxRecurse) {
3298 // Trivial replacement.
3299 if (V == Op)
3300 return RepOp;
3301
3302 auto *I = dyn_cast<Instruction>(V);
3303 if (!I)
3304 return nullptr;
3305
3306 // If this is a binary operator, try to simplify it with the replaced op.
3307 if (auto *B = dyn_cast<BinaryOperator>(I)) {
3308 // Consider:
3309 // %cmp = icmp eq i32 %x, 2147483647
3310 // %add = add nsw i32 %x, 1
3311 // %sel = select i1 %cmp, i32 -2147483648, i32 %add
3312 //
3313 // We can't replace %sel with %add unless we strip away the flags.
3314 if (isa<OverflowingBinaryOperator>(B))
3315 if (B->hasNoSignedWrap() || B->hasNoUnsignedWrap())
3316 return nullptr;
3317 if (isa<PossiblyExactOperator>(B))
3318 if (B->isExact())
3319 return nullptr;
3320
3321 if (MaxRecurse) {
3322 if (B->getOperand(0) == Op)
3323 return SimplifyBinOp(B->getOpcode(), RepOp, B->getOperand(1), Q,
3324 MaxRecurse - 1);
3325 if (B->getOperand(1) == Op)
3326 return SimplifyBinOp(B->getOpcode(), B->getOperand(0), RepOp, Q,
3327 MaxRecurse - 1);
3328 }
3329 }
3330
3331 // Same for CmpInsts.
3332 if (CmpInst *C = dyn_cast<CmpInst>(I)) {
3333 if (MaxRecurse) {
3334 if (C->getOperand(0) == Op)
3335 return SimplifyCmpInst(C->getPredicate(), RepOp, C->getOperand(1), Q,
3336 MaxRecurse - 1);
3337 if (C->getOperand(1) == Op)
3338 return SimplifyCmpInst(C->getPredicate(), C->getOperand(0), RepOp, Q,
3339 MaxRecurse - 1);
3340 }
3341 }
3342
3343 // TODO: We could hand off more cases to instsimplify here.
3344
3345 // If all operands are constant after substituting Op for RepOp then we can
3346 // constant fold the instruction.
3347 if (Constant *CRepOp = dyn_cast<Constant>(RepOp)) {
3348 // Build a list of all constant operands.
3349 SmallVector<Constant *, 8> ConstOps;
3350 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
3351 if (I->getOperand(i) == Op)
3352 ConstOps.push_back(CRepOp);
3353 else if (Constant *COp = dyn_cast<Constant>(I->getOperand(i)))
3354 ConstOps.push_back(COp);
3355 else
3356 break;
3357 }
3358
3359 // All operands were constants, fold it.
3360 if (ConstOps.size() == I->getNumOperands()) {
3361 if (CmpInst *C = dyn_cast<CmpInst>(I))
3362 return ConstantFoldCompareInstOperands(C->getPredicate(), ConstOps[0],
3363 ConstOps[1], Q.DL, Q.TLI);
3364
3365 if (LoadInst *LI = dyn_cast<LoadInst>(I))
3366 if (!LI->isVolatile())
3367 return ConstantFoldLoadFromConstPtr(ConstOps[0], Q.DL);
3368
3369 return ConstantFoldInstOperands(I->getOpcode(), I->getType(), ConstOps,
3370 Q.DL, Q.TLI);
3371 }
3372 }
3373
3374 return nullptr;
3375}
3376
Chris Lattnerc707fa92010-04-20 05:32:14 +00003377/// SimplifySelectInst - Given operands for a SelectInst, see if we can fold
3378/// the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00003379static Value *SimplifySelectInst(Value *CondVal, Value *TrueVal,
3380 Value *FalseVal, const Query &Q,
3381 unsigned MaxRecurse) {
Chris Lattnerc707fa92010-04-20 05:32:14 +00003382 // select true, X, Y -> X
3383 // select false, X, Y -> Y
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00003384 if (Constant *CB = dyn_cast<Constant>(CondVal)) {
3385 if (CB->isAllOnesValue())
3386 return TrueVal;
3387 if (CB->isNullValue())
3388 return FalseVal;
3389 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003390
Chris Lattnerc707fa92010-04-20 05:32:14 +00003391 // select C, X, X -> X
Duncan Sands772749a2011-01-01 20:08:02 +00003392 if (TrueVal == FalseVal)
Chris Lattnerc707fa92010-04-20 05:32:14 +00003393 return TrueVal;
Duncan Sands7e800d62010-11-14 11:23:23 +00003394
Chris Lattnerc707fa92010-04-20 05:32:14 +00003395 if (isa<UndefValue>(CondVal)) { // select undef, X, Y -> X or Y
3396 if (isa<Constant>(TrueVal))
3397 return TrueVal;
3398 return FalseVal;
3399 }
Dan Gohman54664ed2011-07-01 01:03:43 +00003400 if (isa<UndefValue>(TrueVal)) // select C, undef, X -> X
3401 return FalseVal;
3402 if (isa<UndefValue>(FalseVal)) // select C, X, undef -> X
3403 return TrueVal;
Duncan Sands7e800d62010-11-14 11:23:23 +00003404
David Majnemer3f0fb982015-06-06 22:40:21 +00003405 if (const auto *ICI = dyn_cast<ICmpInst>(CondVal)) {
3406 unsigned BitWidth = Q.DL.getTypeSizeInBits(TrueVal->getType());
David Majnemer7bd71442014-12-20 03:29:59 +00003407 ICmpInst::Predicate Pred = ICI->getPredicate();
David Majnemer3f0fb982015-06-06 22:40:21 +00003408 Value *CmpLHS = ICI->getOperand(0);
3409 Value *CmpRHS = ICI->getOperand(1);
David Majnemer147f8582014-12-20 04:45:33 +00003410 APInt MinSignedValue = APInt::getSignBit(BitWidth);
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003411 Value *X;
3412 const APInt *Y;
David Majnemer7bd71442014-12-20 03:29:59 +00003413 bool TrueWhenUnset;
David Majnemer147f8582014-12-20 04:45:33 +00003414 bool IsBitTest = false;
David Majnemer0b6a0b02014-12-20 03:04:38 +00003415 if (ICmpInst::isEquality(Pred) &&
David Majnemer3f0fb982015-06-06 22:40:21 +00003416 match(CmpLHS, m_And(m_Value(X), m_APInt(Y))) &&
3417 match(CmpRHS, m_Zero())) {
David Majnemer7bd71442014-12-20 03:29:59 +00003418 IsBitTest = true;
3419 TrueWhenUnset = Pred == ICmpInst::ICMP_EQ;
David Majnemer3f0fb982015-06-06 22:40:21 +00003420 } else if (Pred == ICmpInst::ICMP_SLT && match(CmpRHS, m_Zero())) {
3421 X = CmpLHS;
David Majnemer7bd71442014-12-20 03:29:59 +00003422 Y = &MinSignedValue;
3423 IsBitTest = true;
3424 TrueWhenUnset = false;
David Majnemer3f0fb982015-06-06 22:40:21 +00003425 } else if (Pred == ICmpInst::ICMP_SGT && match(CmpRHS, m_AllOnes())) {
3426 X = CmpLHS;
David Majnemer7bd71442014-12-20 03:29:59 +00003427 Y = &MinSignedValue;
3428 IsBitTest = true;
3429 TrueWhenUnset = true;
3430 }
3431 if (IsBitTest) {
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003432 const APInt *C;
3433 // (X & Y) == 0 ? X & ~Y : X --> X
3434 // (X & Y) != 0 ? X & ~Y : X --> X & ~Y
3435 if (FalseVal == X && match(TrueVal, m_And(m_Specific(X), m_APInt(C))) &&
3436 *Y == ~*C)
David Majnemer7bd71442014-12-20 03:29:59 +00003437 return TrueWhenUnset ? FalseVal : TrueVal;
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003438 // (X & Y) == 0 ? X : X & ~Y --> X & ~Y
3439 // (X & Y) != 0 ? X : X & ~Y --> X
3440 if (TrueVal == X && match(FalseVal, m_And(m_Specific(X), m_APInt(C))) &&
3441 *Y == ~*C)
David Majnemer7bd71442014-12-20 03:29:59 +00003442 return TrueWhenUnset ? FalseVal : TrueVal;
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003443
3444 if (Y->isPowerOf2()) {
3445 // (X & Y) == 0 ? X | Y : X --> X | Y
3446 // (X & Y) != 0 ? X | Y : X --> X
3447 if (FalseVal == X && match(TrueVal, m_Or(m_Specific(X), m_APInt(C))) &&
3448 *Y == *C)
David Majnemer7bd71442014-12-20 03:29:59 +00003449 return TrueWhenUnset ? TrueVal : FalseVal;
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003450 // (X & Y) == 0 ? X : X | Y --> X
3451 // (X & Y) != 0 ? X : X | Y --> X | Y
3452 if (TrueVal == X && match(FalseVal, m_Or(m_Specific(X), m_APInt(C))) &&
3453 *Y == *C)
David Majnemer7bd71442014-12-20 03:29:59 +00003454 return TrueWhenUnset ? TrueVal : FalseVal;
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003455 }
3456 }
David Majnemer3f0fb982015-06-06 22:40:21 +00003457 if (ICI->hasOneUse()) {
3458 const APInt *C;
3459 if (match(CmpRHS, m_APInt(C))) {
3460 // X < MIN ? T : F --> F
3461 if (Pred == ICmpInst::ICMP_SLT && C->isMinSignedValue())
3462 return FalseVal;
3463 // X < MIN ? T : F --> F
3464 if (Pred == ICmpInst::ICMP_ULT && C->isMinValue())
3465 return FalseVal;
3466 // X > MAX ? T : F --> F
3467 if (Pred == ICmpInst::ICMP_SGT && C->isMaxSignedValue())
3468 return FalseVal;
3469 // X > MAX ? T : F --> F
3470 if (Pred == ICmpInst::ICMP_UGT && C->isMaxValue())
3471 return FalseVal;
3472 }
3473 }
3474
3475 // If we have an equality comparison then we know the value in one of the
3476 // arms of the select. See if substituting this value into the arm and
3477 // simplifying the result yields the same value as the other arm.
3478 if (Pred == ICmpInst::ICMP_EQ) {
3479 if (SimplifyWithOpReplaced(FalseVal, CmpLHS, CmpRHS, Q, MaxRecurse) ==
3480 TrueVal ||
3481 SimplifyWithOpReplaced(FalseVal, CmpRHS, CmpLHS, Q, MaxRecurse) ==
3482 TrueVal)
3483 return FalseVal;
3484 if (SimplifyWithOpReplaced(TrueVal, CmpLHS, CmpRHS, Q, MaxRecurse) ==
3485 FalseVal ||
3486 SimplifyWithOpReplaced(TrueVal, CmpRHS, CmpLHS, Q, MaxRecurse) ==
3487 FalseVal)
3488 return FalseVal;
3489 } else if (Pred == ICmpInst::ICMP_NE) {
3490 if (SimplifyWithOpReplaced(TrueVal, CmpLHS, CmpRHS, Q, MaxRecurse) ==
3491 FalseVal ||
3492 SimplifyWithOpReplaced(TrueVal, CmpRHS, CmpLHS, Q, MaxRecurse) ==
3493 FalseVal)
3494 return TrueVal;
3495 if (SimplifyWithOpReplaced(FalseVal, CmpLHS, CmpRHS, Q, MaxRecurse) ==
3496 TrueVal ||
3497 SimplifyWithOpReplaced(FalseVal, CmpRHS, CmpLHS, Q, MaxRecurse) ==
3498 TrueVal)
3499 return TrueVal;
3500 }
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003501 }
3502
Craig Topper9f008862014-04-15 04:59:12 +00003503 return nullptr;
Chris Lattnerc707fa92010-04-20 05:32:14 +00003504}
3505
Duncan Sandsb8cee002012-03-13 11:42:19 +00003506Value *llvm::SimplifySelectInst(Value *Cond, Value *TrueVal, Value *FalseVal,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003507 const DataLayout &DL,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003508 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003509 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003510 const Instruction *CxtI) {
3511 return ::SimplifySelectInst(Cond, TrueVal, FalseVal,
Chandler Carruth66b31302015-01-04 12:03:27 +00003512 Query(DL, TLI, DT, AC, CxtI), RecursionLimit);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003513}
3514
Chris Lattner8574aba2009-11-27 00:29:05 +00003515/// SimplifyGEPInst - Given operands for an GetElementPtrInst, see if we can
3516/// fold the result. If not, this returns null.
David Blaikie4a2e73b2015-04-02 18:55:32 +00003517static Value *SimplifyGEPInst(Type *SrcTy, ArrayRef<Value *> Ops,
3518 const Query &Q, unsigned) {
Duncan Sands8a0f4862010-11-22 13:42:49 +00003519 // The type of the GEP pointer operand.
David Blaikie4a2e73b2015-04-02 18:55:32 +00003520 unsigned AS =
3521 cast<PointerType>(Ops[0]->getType()->getScalarType())->getAddressSpace();
Duncan Sands8a0f4862010-11-22 13:42:49 +00003522
Chris Lattner8574aba2009-11-27 00:29:05 +00003523 // getelementptr P -> P.
Jay Foadb992a632011-07-19 15:07:52 +00003524 if (Ops.size() == 1)
Chris Lattner8574aba2009-11-27 00:29:05 +00003525 return Ops[0];
3526
Nico Weber48c82402014-08-27 20:06:19 +00003527 // Compute the (pointer) type returned by the GEP instruction.
David Blaikie4a2e73b2015-04-02 18:55:32 +00003528 Type *LastType = GetElementPtrInst::getIndexedType(SrcTy, Ops.slice(1));
Nico Weber48c82402014-08-27 20:06:19 +00003529 Type *GEPTy = PointerType::get(LastType, AS);
3530 if (VectorType *VT = dyn_cast<VectorType>(Ops[0]->getType()))
3531 GEPTy = VectorType::get(GEPTy, VT->getNumElements());
3532
3533 if (isa<UndefValue>(Ops[0]))
Duncan Sands8a0f4862010-11-22 13:42:49 +00003534 return UndefValue::get(GEPTy);
Chris Lattner8574aba2009-11-27 00:29:05 +00003535
Jay Foadb992a632011-07-19 15:07:52 +00003536 if (Ops.size() == 2) {
Duncan Sandscf4bceb2010-11-21 13:53:09 +00003537 // getelementptr P, 0 -> P.
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00003538 if (match(Ops[1], m_Zero()))
3539 return Ops[0];
Nico Weber48c82402014-08-27 20:06:19 +00003540
David Blaikie4a2e73b2015-04-02 18:55:32 +00003541 Type *Ty = SrcTy;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003542 if (Ty->isSized()) {
Nico Weber48c82402014-08-27 20:06:19 +00003543 Value *P;
3544 uint64_t C;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003545 uint64_t TyAllocSize = Q.DL.getTypeAllocSize(Ty);
Nico Weber48c82402014-08-27 20:06:19 +00003546 // getelementptr P, N -> P if P points to a type of zero size.
3547 if (TyAllocSize == 0)
Duncan Sandscf4bceb2010-11-21 13:53:09 +00003548 return Ops[0];
Nico Weber48c82402014-08-27 20:06:19 +00003549
3550 // The following transforms are only safe if the ptrtoint cast
3551 // doesn't truncate the pointers.
3552 if (Ops[1]->getType()->getScalarSizeInBits() ==
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003553 Q.DL.getPointerSizeInBits(AS)) {
Nico Weber48c82402014-08-27 20:06:19 +00003554 auto PtrToIntOrZero = [GEPTy](Value *P) -> Value * {
3555 if (match(P, m_Zero()))
3556 return Constant::getNullValue(GEPTy);
3557 Value *Temp;
3558 if (match(P, m_PtrToInt(m_Value(Temp))))
David Majnemer11ca2972014-08-27 20:08:34 +00003559 if (Temp->getType() == GEPTy)
3560 return Temp;
Nico Weber48c82402014-08-27 20:06:19 +00003561 return nullptr;
3562 };
3563
3564 // getelementptr V, (sub P, V) -> P if P points to a type of size 1.
3565 if (TyAllocSize == 1 &&
3566 match(Ops[1], m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0])))))
3567 if (Value *R = PtrToIntOrZero(P))
3568 return R;
3569
3570 // getelementptr V, (ashr (sub P, V), C) -> Q
3571 // if P points to a type of size 1 << C.
3572 if (match(Ops[1],
3573 m_AShr(m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0]))),
3574 m_ConstantInt(C))) &&
3575 TyAllocSize == 1ULL << C)
3576 if (Value *R = PtrToIntOrZero(P))
3577 return R;
3578
3579 // getelementptr V, (sdiv (sub P, V), C) -> Q
3580 // if P points to a type of size C.
3581 if (match(Ops[1],
3582 m_SDiv(m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0]))),
3583 m_SpecificInt(TyAllocSize))))
3584 if (Value *R = PtrToIntOrZero(P))
3585 return R;
3586 }
Duncan Sandscf4bceb2010-11-21 13:53:09 +00003587 }
3588 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003589
Chris Lattner8574aba2009-11-27 00:29:05 +00003590 // Check to see if this is constant foldable.
Jay Foadb992a632011-07-19 15:07:52 +00003591 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
Chris Lattner8574aba2009-11-27 00:29:05 +00003592 if (!isa<Constant>(Ops[i]))
Craig Topper9f008862014-04-15 04:59:12 +00003593 return nullptr;
Duncan Sands7e800d62010-11-14 11:23:23 +00003594
David Blaikie4a2e73b2015-04-02 18:55:32 +00003595 return ConstantExpr::getGetElementPtr(SrcTy, cast<Constant>(Ops[0]),
3596 Ops.slice(1));
Chris Lattner8574aba2009-11-27 00:29:05 +00003597}
3598
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003599Value *llvm::SimplifyGEPInst(ArrayRef<Value *> Ops, const DataLayout &DL,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003600 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003601 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003602 const Instruction *CxtI) {
David Blaikie4a2e73b2015-04-02 18:55:32 +00003603 return ::SimplifyGEPInst(
3604 cast<PointerType>(Ops[0]->getType()->getScalarType())->getElementType(),
3605 Ops, Query(DL, TLI, DT, AC, CxtI), RecursionLimit);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003606}
3607
Duncan Sandsfd26a952011-09-05 06:52:48 +00003608/// SimplifyInsertValueInst - Given operands for an InsertValueInst, see if we
3609/// can fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00003610static Value *SimplifyInsertValueInst(Value *Agg, Value *Val,
3611 ArrayRef<unsigned> Idxs, const Query &Q,
3612 unsigned) {
Duncan Sandsfd26a952011-09-05 06:52:48 +00003613 if (Constant *CAgg = dyn_cast<Constant>(Agg))
3614 if (Constant *CVal = dyn_cast<Constant>(Val))
3615 return ConstantFoldInsertValueInstruction(CAgg, CVal, Idxs);
3616
3617 // insertvalue x, undef, n -> x
3618 if (match(Val, m_Undef()))
3619 return Agg;
3620
3621 // insertvalue x, (extractvalue y, n), n
3622 if (ExtractValueInst *EV = dyn_cast<ExtractValueInst>(Val))
Benjamin Kramer4b79c212011-09-05 18:16:19 +00003623 if (EV->getAggregateOperand()->getType() == Agg->getType() &&
3624 EV->getIndices() == Idxs) {
Duncan Sandsfd26a952011-09-05 06:52:48 +00003625 // insertvalue undef, (extractvalue y, n), n -> y
3626 if (match(Agg, m_Undef()))
3627 return EV->getAggregateOperand();
3628
3629 // insertvalue y, (extractvalue y, n), n -> y
3630 if (Agg == EV->getAggregateOperand())
3631 return Agg;
3632 }
3633
Craig Topper9f008862014-04-15 04:59:12 +00003634 return nullptr;
Duncan Sandsfd26a952011-09-05 06:52:48 +00003635}
3636
Chandler Carruth66b31302015-01-04 12:03:27 +00003637Value *llvm::SimplifyInsertValueInst(
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003638 Value *Agg, Value *Val, ArrayRef<unsigned> Idxs, const DataLayout &DL,
Chandler Carruth66b31302015-01-04 12:03:27 +00003639 const TargetLibraryInfo *TLI, const DominatorTree *DT, AssumptionCache *AC,
3640 const Instruction *CxtI) {
3641 return ::SimplifyInsertValueInst(Agg, Val, Idxs, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003642 RecursionLimit);
3643}
3644
David Majnemer25a796e2015-07-13 01:15:46 +00003645/// SimplifyExtractValueInst - Given operands for an ExtractValueInst, see if we
3646/// can fold the result. If not, this returns null.
3647static Value *SimplifyExtractValueInst(Value *Agg, ArrayRef<unsigned> Idxs,
3648 const Query &, unsigned) {
3649 if (auto *CAgg = dyn_cast<Constant>(Agg))
3650 return ConstantFoldExtractValueInstruction(CAgg, Idxs);
3651
3652 // extractvalue x, (insertvalue y, elt, n), n -> elt
3653 unsigned NumIdxs = Idxs.size();
3654 for (auto *IVI = dyn_cast<InsertValueInst>(Agg); IVI != nullptr;
3655 IVI = dyn_cast<InsertValueInst>(IVI->getAggregateOperand())) {
3656 ArrayRef<unsigned> InsertValueIdxs = IVI->getIndices();
3657 unsigned NumInsertValueIdxs = InsertValueIdxs.size();
3658 unsigned NumCommonIdxs = std::min(NumInsertValueIdxs, NumIdxs);
3659 if (InsertValueIdxs.slice(0, NumCommonIdxs) ==
3660 Idxs.slice(0, NumCommonIdxs)) {
3661 if (NumIdxs == NumInsertValueIdxs)
3662 return IVI->getInsertedValueOperand();
3663 break;
3664 }
3665 }
3666
3667 return nullptr;
3668}
3669
3670Value *llvm::SimplifyExtractValueInst(Value *Agg, ArrayRef<unsigned> Idxs,
3671 const DataLayout &DL,
3672 const TargetLibraryInfo *TLI,
3673 const DominatorTree *DT,
3674 AssumptionCache *AC,
3675 const Instruction *CxtI) {
3676 return ::SimplifyExtractValueInst(Agg, Idxs, Query(DL, TLI, DT, AC, CxtI),
3677 RecursionLimit);
3678}
3679
David Majnemer599ca442015-07-13 01:15:53 +00003680/// SimplifyExtractElementInst - Given operands for an ExtractElementInst, see if we
3681/// can fold the result. If not, this returns null.
3682static Value *SimplifyExtractElementInst(Value *Vec, Value *Idx, const Query &,
3683 unsigned) {
3684 if (auto *CVec = dyn_cast<Constant>(Vec)) {
3685 if (auto *CIdx = dyn_cast<Constant>(Idx))
3686 return ConstantFoldExtractElementInstruction(CVec, CIdx);
3687
3688 // The index is not relevant if our vector is a splat.
3689 if (auto *Splat = CVec->getSplatValue())
3690 return Splat;
3691
3692 if (isa<UndefValue>(Vec))
3693 return UndefValue::get(Vec->getType()->getVectorElementType());
3694 }
3695
3696 // If extracting a specified index from the vector, see if we can recursively
3697 // find a previously computed scalar that was inserted into the vector.
David Majnemer8e335ca2015-08-18 22:18:22 +00003698 if (auto *IdxC = dyn_cast<ConstantInt>(Idx))
3699 if (Value *Elt = findScalarElement(Vec, IdxC->getZExtValue()))
David Majnemer599ca442015-07-13 01:15:53 +00003700 return Elt;
David Majnemer599ca442015-07-13 01:15:53 +00003701
3702 return nullptr;
3703}
3704
3705Value *llvm::SimplifyExtractElementInst(
3706 Value *Vec, Value *Idx, const DataLayout &DL, const TargetLibraryInfo *TLI,
3707 const DominatorTree *DT, AssumptionCache *AC, const Instruction *CxtI) {
3708 return ::SimplifyExtractElementInst(Vec, Idx, Query(DL, TLI, DT, AC, CxtI),
3709 RecursionLimit);
3710}
3711
Duncan Sands7412f6e2010-11-17 04:30:22 +00003712/// SimplifyPHINode - See if we can fold the given phi. If not, returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00003713static Value *SimplifyPHINode(PHINode *PN, const Query &Q) {
Duncan Sands7412f6e2010-11-17 04:30:22 +00003714 // If all of the PHI's incoming values are the same then replace the PHI node
3715 // with the common value.
Craig Topper9f008862014-04-15 04:59:12 +00003716 Value *CommonValue = nullptr;
Duncan Sands7412f6e2010-11-17 04:30:22 +00003717 bool HasUndefInput = false;
Pete Cooper833f34d2015-05-12 20:05:31 +00003718 for (Value *Incoming : PN->incoming_values()) {
Duncan Sands7412f6e2010-11-17 04:30:22 +00003719 // If the incoming value is the phi node itself, it can safely be skipped.
3720 if (Incoming == PN) continue;
3721 if (isa<UndefValue>(Incoming)) {
3722 // Remember that we saw an undef value, but otherwise ignore them.
3723 HasUndefInput = true;
3724 continue;
3725 }
3726 if (CommonValue && Incoming != CommonValue)
Craig Topper9f008862014-04-15 04:59:12 +00003727 return nullptr; // Not the same, bail out.
Duncan Sands7412f6e2010-11-17 04:30:22 +00003728 CommonValue = Incoming;
3729 }
3730
3731 // If CommonValue is null then all of the incoming values were either undef or
3732 // equal to the phi node itself.
3733 if (!CommonValue)
3734 return UndefValue::get(PN->getType());
3735
3736 // If we have a PHI node like phi(X, undef, X), where X is defined by some
3737 // instruction, we cannot return X as the result of the PHI node unless it
3738 // dominates the PHI block.
3739 if (HasUndefInput)
Craig Topper9f008862014-04-15 04:59:12 +00003740 return ValueDominatesPHI(CommonValue, PN, Q.DT) ? CommonValue : nullptr;
Duncan Sands7412f6e2010-11-17 04:30:22 +00003741
3742 return CommonValue;
3743}
3744
Duncan Sands395ac42d2012-03-13 14:07:05 +00003745static Value *SimplifyTruncInst(Value *Op, Type *Ty, const Query &Q, unsigned) {
3746 if (Constant *C = dyn_cast<Constant>(Op))
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003747 return ConstantFoldInstOperands(Instruction::Trunc, Ty, C, Q.DL, Q.TLI);
Duncan Sands395ac42d2012-03-13 14:07:05 +00003748
Craig Topper9f008862014-04-15 04:59:12 +00003749 return nullptr;
Duncan Sands395ac42d2012-03-13 14:07:05 +00003750}
3751
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003752Value *llvm::SimplifyTruncInst(Value *Op, Type *Ty, const DataLayout &DL,
Duncan Sands395ac42d2012-03-13 14:07:05 +00003753 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003754 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003755 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003756 return ::SimplifyTruncInst(Op, Ty, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00003757 RecursionLimit);
Duncan Sands395ac42d2012-03-13 14:07:05 +00003758}
3759
Chris Lattnera71e9d62009-11-10 00:55:12 +00003760//=== Helper functions for higher up the class hierarchy.
Chris Lattnerc1f19072009-11-09 23:28:39 +00003761
Chris Lattnera71e9d62009-11-10 00:55:12 +00003762/// SimplifyBinOp - Given operands for a BinaryOperator, see if we can
3763/// fold the result. If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003764static Value *SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003765 const Query &Q, unsigned MaxRecurse) {
Chris Lattnera71e9d62009-11-10 00:55:12 +00003766 switch (Opcode) {
Chris Lattner9e4aa022011-02-09 17:15:04 +00003767 case Instruction::Add:
Duncan Sands8b4e2832011-02-09 17:45:03 +00003768 return SimplifyAddInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003769 Q, MaxRecurse);
Michael Ilsemand2b05e52012-12-12 00:29:16 +00003770 case Instruction::FAdd:
3771 return SimplifyFAddInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
3772
Chris Lattner9e4aa022011-02-09 17:15:04 +00003773 case Instruction::Sub:
Duncan Sands8b4e2832011-02-09 17:45:03 +00003774 return SimplifySubInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003775 Q, MaxRecurse);
Michael Ilsemand2b05e52012-12-12 00:29:16 +00003776 case Instruction::FSub:
3777 return SimplifyFSubInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
3778
Duncan Sandsb8cee002012-03-13 11:42:19 +00003779 case Instruction::Mul: return SimplifyMulInst (LHS, RHS, Q, MaxRecurse);
Michael Ilsemand2b05e52012-12-12 00:29:16 +00003780 case Instruction::FMul:
3781 return SimplifyFMulInst (LHS, RHS, FastMathFlags(), Q, MaxRecurse);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003782 case Instruction::SDiv: return SimplifySDivInst(LHS, RHS, Q, MaxRecurse);
3783 case Instruction::UDiv: return SimplifyUDivInst(LHS, RHS, Q, MaxRecurse);
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00003784 case Instruction::FDiv:
3785 return SimplifyFDivInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003786 case Instruction::SRem: return SimplifySRemInst(LHS, RHS, Q, MaxRecurse);
3787 case Instruction::URem: return SimplifyURemInst(LHS, RHS, Q, MaxRecurse);
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00003788 case Instruction::FRem:
3789 return SimplifyFRemInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00003790 case Instruction::Shl:
Duncan Sands8b4e2832011-02-09 17:45:03 +00003791 return SimplifyShlInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003792 Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00003793 case Instruction::LShr:
Duncan Sandsb8cee002012-03-13 11:42:19 +00003794 return SimplifyLShrInst(LHS, RHS, /*isExact*/false, Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00003795 case Instruction::AShr:
Duncan Sandsb8cee002012-03-13 11:42:19 +00003796 return SimplifyAShrInst(LHS, RHS, /*isExact*/false, Q, MaxRecurse);
3797 case Instruction::And: return SimplifyAndInst(LHS, RHS, Q, MaxRecurse);
3798 case Instruction::Or: return SimplifyOrInst (LHS, RHS, Q, MaxRecurse);
3799 case Instruction::Xor: return SimplifyXorInst(LHS, RHS, Q, MaxRecurse);
Chris Lattnera71e9d62009-11-10 00:55:12 +00003800 default:
3801 if (Constant *CLHS = dyn_cast<Constant>(LHS))
3802 if (Constant *CRHS = dyn_cast<Constant>(RHS)) {
3803 Constant *COps[] = {CLHS, CRHS};
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003804 return ConstantFoldInstOperands(Opcode, LHS->getType(), COps, Q.DL,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003805 Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00003806 }
Duncan Sandsb0579e92010-11-10 13:00:08 +00003807
Duncan Sands6c7a52c2010-12-21 08:49:00 +00003808 // If the operation is associative, try some generic simplifications.
3809 if (Instruction::isAssociative(Opcode))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003810 if (Value *V = SimplifyAssociativeBinOp(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00003811 return V;
3812
Duncan Sandsb8cee002012-03-13 11:42:19 +00003813 // If the operation is with the result of a select instruction check whether
Duncan Sandsb0579e92010-11-10 13:00:08 +00003814 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003815 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003816 if (Value *V = ThreadBinOpOverSelect(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003817 return V;
3818
3819 // If the operation is with the result of a phi instruction, check whether
3820 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003821 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003822 if (Value *V = ThreadBinOpOverPHI(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00003823 return V;
3824
Craig Topper9f008862014-04-15 04:59:12 +00003825 return nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00003826 }
3827}
Chris Lattnerc1f19072009-11-09 23:28:39 +00003828
Michael Zolotukhin4e8598e2015-02-06 20:02:51 +00003829/// SimplifyFPBinOp - Given operands for a BinaryOperator, see if we can
3830/// fold the result. If not, this returns null.
3831/// In contrast to SimplifyBinOp, try to use FastMathFlag when folding the
3832/// result. In case we don't need FastMathFlags, simply fall to SimplifyBinOp.
3833static Value *SimplifyFPBinOp(unsigned Opcode, Value *LHS, Value *RHS,
3834 const FastMathFlags &FMF, const Query &Q,
3835 unsigned MaxRecurse) {
3836 switch (Opcode) {
3837 case Instruction::FAdd:
3838 return SimplifyFAddInst(LHS, RHS, FMF, Q, MaxRecurse);
3839 case Instruction::FSub:
3840 return SimplifyFSubInst(LHS, RHS, FMF, Q, MaxRecurse);
3841 case Instruction::FMul:
3842 return SimplifyFMulInst(LHS, RHS, FMF, Q, MaxRecurse);
3843 default:
3844 return SimplifyBinOp(Opcode, LHS, RHS, Q, MaxRecurse);
3845 }
3846}
3847
Duncan Sands7e800d62010-11-14 11:23:23 +00003848Value *llvm::SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003849 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003850 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003851 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003852 return ::SimplifyBinOp(Opcode, LHS, RHS, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00003853 RecursionLimit);
Chris Lattnerc1f19072009-11-09 23:28:39 +00003854}
3855
Michael Zolotukhin4e8598e2015-02-06 20:02:51 +00003856Value *llvm::SimplifyFPBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003857 const FastMathFlags &FMF, const DataLayout &DL,
Michael Zolotukhin4e8598e2015-02-06 20:02:51 +00003858 const TargetLibraryInfo *TLI,
3859 const DominatorTree *DT, AssumptionCache *AC,
3860 const Instruction *CxtI) {
3861 return ::SimplifyFPBinOp(Opcode, LHS, RHS, FMF, Query(DL, TLI, DT, AC, CxtI),
3862 RecursionLimit);
3863}
3864
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003865/// SimplifyCmpInst - Given operands for a CmpInst, see if we can
3866/// fold the result.
3867static Value *SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003868 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003869 if (CmpInst::isIntPredicate((CmpInst::Predicate)Predicate))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003870 return SimplifyICmpInst(Predicate, LHS, RHS, Q, MaxRecurse);
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00003871 return SimplifyFCmpInst(Predicate, LHS, RHS, FastMathFlags(), Q, MaxRecurse);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003872}
3873
3874Value *llvm::SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003875 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003876 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003877 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003878 return ::SimplifyCmpInst(Predicate, LHS, RHS, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003879 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003880}
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003881
Michael Ilseman54857292013-02-07 19:26:05 +00003882static bool IsIdempotent(Intrinsic::ID ID) {
3883 switch (ID) {
3884 default: return false;
3885
3886 // Unary idempotent: f(f(x)) = f(x)
3887 case Intrinsic::fabs:
3888 case Intrinsic::floor:
3889 case Intrinsic::ceil:
3890 case Intrinsic::trunc:
3891 case Intrinsic::rint:
3892 case Intrinsic::nearbyint:
Hal Finkel171817e2013-08-07 22:49:12 +00003893 case Intrinsic::round:
Michael Ilseman54857292013-02-07 19:26:05 +00003894 return true;
3895 }
3896}
3897
3898template <typename IterTy>
David Majnemer15032582015-05-22 03:56:46 +00003899static Value *SimplifyIntrinsic(Function *F, IterTy ArgBegin, IterTy ArgEnd,
Michael Ilseman54857292013-02-07 19:26:05 +00003900 const Query &Q, unsigned MaxRecurse) {
David Majnemer15032582015-05-22 03:56:46 +00003901 Intrinsic::ID IID = F->getIntrinsicID();
3902 unsigned NumOperands = std::distance(ArgBegin, ArgEnd);
3903 Type *ReturnType = F->getReturnType();
3904
3905 // Binary Ops
3906 if (NumOperands == 2) {
3907 Value *LHS = *ArgBegin;
3908 Value *RHS = *(ArgBegin + 1);
3909 if (IID == Intrinsic::usub_with_overflow ||
3910 IID == Intrinsic::ssub_with_overflow) {
3911 // X - X -> { 0, false }
3912 if (LHS == RHS)
3913 return Constant::getNullValue(ReturnType);
3914
3915 // X - undef -> undef
3916 // undef - X -> undef
3917 if (isa<UndefValue>(LHS) || isa<UndefValue>(RHS))
3918 return UndefValue::get(ReturnType);
3919 }
3920
3921 if (IID == Intrinsic::uadd_with_overflow ||
3922 IID == Intrinsic::sadd_with_overflow) {
3923 // X + undef -> undef
3924 if (isa<UndefValue>(RHS))
3925 return UndefValue::get(ReturnType);
3926 }
3927
3928 if (IID == Intrinsic::umul_with_overflow ||
3929 IID == Intrinsic::smul_with_overflow) {
3930 // X * 0 -> { 0, false }
3931 if (match(RHS, m_Zero()))
3932 return Constant::getNullValue(ReturnType);
3933
3934 // X * undef -> { 0, false }
3935 if (match(RHS, m_Undef()))
3936 return Constant::getNullValue(ReturnType);
3937 }
3938 }
3939
Michael Ilseman54857292013-02-07 19:26:05 +00003940 // Perform idempotent optimizations
3941 if (!IsIdempotent(IID))
Craig Topper9f008862014-04-15 04:59:12 +00003942 return nullptr;
Michael Ilseman54857292013-02-07 19:26:05 +00003943
3944 // Unary Ops
David Majnemer15032582015-05-22 03:56:46 +00003945 if (NumOperands == 1)
Michael Ilseman54857292013-02-07 19:26:05 +00003946 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(*ArgBegin))
3947 if (II->getIntrinsicID() == IID)
3948 return II;
3949
Craig Topper9f008862014-04-15 04:59:12 +00003950 return nullptr;
Michael Ilseman54857292013-02-07 19:26:05 +00003951}
3952
Chandler Carruth9dc35582012-12-28 11:30:55 +00003953template <typename IterTy>
Chandler Carruthf6182152012-12-28 14:23:29 +00003954static Value *SimplifyCall(Value *V, IterTy ArgBegin, IterTy ArgEnd,
Chandler Carruth9dc35582012-12-28 11:30:55 +00003955 const Query &Q, unsigned MaxRecurse) {
Chandler Carruthf6182152012-12-28 14:23:29 +00003956 Type *Ty = V->getType();
Chandler Carruth9dc35582012-12-28 11:30:55 +00003957 if (PointerType *PTy = dyn_cast<PointerType>(Ty))
3958 Ty = PTy->getElementType();
3959 FunctionType *FTy = cast<FunctionType>(Ty);
3960
Dan Gohman85977e62011-11-04 18:32:42 +00003961 // call undef -> undef
Chandler Carruthf6182152012-12-28 14:23:29 +00003962 if (isa<UndefValue>(V))
Chandler Carruth9dc35582012-12-28 11:30:55 +00003963 return UndefValue::get(FTy->getReturnType());
Dan Gohman85977e62011-11-04 18:32:42 +00003964
Chandler Carruthf6182152012-12-28 14:23:29 +00003965 Function *F = dyn_cast<Function>(V);
3966 if (!F)
Craig Topper9f008862014-04-15 04:59:12 +00003967 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00003968
David Majnemer15032582015-05-22 03:56:46 +00003969 if (F->isIntrinsic())
3970 if (Value *Ret = SimplifyIntrinsic(F, ArgBegin, ArgEnd, Q, MaxRecurse))
Michael Ilseman54857292013-02-07 19:26:05 +00003971 return Ret;
3972
Chandler Carruthf6182152012-12-28 14:23:29 +00003973 if (!canConstantFoldCallTo(F))
Craig Topper9f008862014-04-15 04:59:12 +00003974 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00003975
3976 SmallVector<Constant *, 4> ConstantArgs;
3977 ConstantArgs.reserve(ArgEnd - ArgBegin);
3978 for (IterTy I = ArgBegin, E = ArgEnd; I != E; ++I) {
3979 Constant *C = dyn_cast<Constant>(*I);
3980 if (!C)
Craig Topper9f008862014-04-15 04:59:12 +00003981 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00003982 ConstantArgs.push_back(C);
3983 }
3984
3985 return ConstantFoldCall(F, ConstantArgs, Q.TLI);
Dan Gohman85977e62011-11-04 18:32:42 +00003986}
3987
Chandler Carruthf6182152012-12-28 14:23:29 +00003988Value *llvm::SimplifyCall(Value *V, User::op_iterator ArgBegin,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003989 User::op_iterator ArgEnd, const DataLayout &DL,
Chandler Carruth66b31302015-01-04 12:03:27 +00003990 const TargetLibraryInfo *TLI, const DominatorTree *DT,
3991 AssumptionCache *AC, const Instruction *CxtI) {
3992 return ::SimplifyCall(V, ArgBegin, ArgEnd, Query(DL, TLI, DT, AC, CxtI),
Chandler Carruth9dc35582012-12-28 11:30:55 +00003993 RecursionLimit);
3994}
3995
Chandler Carruthf6182152012-12-28 14:23:29 +00003996Value *llvm::SimplifyCall(Value *V, ArrayRef<Value *> Args,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003997 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003998 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003999 const Instruction *CxtI) {
4000 return ::SimplifyCall(V, Args.begin(), Args.end(),
Chandler Carruth66b31302015-01-04 12:03:27 +00004001 Query(DL, TLI, DT, AC, CxtI), RecursionLimit);
Chandler Carruth9dc35582012-12-28 11:30:55 +00004002}
4003
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00004004/// SimplifyInstruction - See if we can compute a simplified version of this
4005/// instruction. If not, this returns null.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004006Value *llvm::SimplifyInstruction(Instruction *I, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00004007 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00004008 const DominatorTree *DT, AssumptionCache *AC) {
Duncan Sands64e41cf2010-11-17 08:35:29 +00004009 Value *Result;
4010
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00004011 switch (I->getOpcode()) {
4012 default:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00004013 Result = ConstantFoldInstruction(I, DL, TLI);
Duncan Sands64e41cf2010-11-17 08:35:29 +00004014 break;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00004015 case Instruction::FAdd:
4016 Result = SimplifyFAddInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00004017 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00004018 break;
Chris Lattner3d9823b2009-11-27 17:42:22 +00004019 case Instruction::Add:
Duncan Sands64e41cf2010-11-17 08:35:29 +00004020 Result = SimplifyAddInst(I->getOperand(0), I->getOperand(1),
4021 cast<BinaryOperator>(I)->hasNoSignedWrap(),
Chandler Carruth66b31302015-01-04 12:03:27 +00004022 cast<BinaryOperator>(I)->hasNoUnsignedWrap(), DL,
4023 TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00004024 break;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00004025 case Instruction::FSub:
4026 Result = SimplifyFSubInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00004027 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00004028 break;
Duncan Sands0a2c41682010-12-15 14:07:39 +00004029 case Instruction::Sub:
4030 Result = SimplifySubInst(I->getOperand(0), I->getOperand(1),
4031 cast<BinaryOperator>(I)->hasNoSignedWrap(),
Chandler Carruth66b31302015-01-04 12:03:27 +00004032 cast<BinaryOperator>(I)->hasNoUnsignedWrap(), DL,
4033 TLI, DT, AC, I);
Duncan Sands0a2c41682010-12-15 14:07:39 +00004034 break;
Michael Ilsemanbe9137a2012-11-27 00:46:26 +00004035 case Instruction::FMul:
4036 Result = SimplifyFMulInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00004037 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +00004038 break;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00004039 case Instruction::Mul:
Chandler Carruth66b31302015-01-04 12:03:27 +00004040 Result =
4041 SimplifyMulInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00004042 break;
Duncan Sands771e82a2011-01-28 16:51:11 +00004043 case Instruction::SDiv:
Chandler Carruth66b31302015-01-04 12:03:27 +00004044 Result = SimplifySDivInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
4045 AC, I);
Duncan Sands771e82a2011-01-28 16:51:11 +00004046 break;
4047 case Instruction::UDiv:
Chandler Carruth66b31302015-01-04 12:03:27 +00004048 Result = SimplifyUDivInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
4049 AC, I);
Duncan Sands771e82a2011-01-28 16:51:11 +00004050 break;
Frits van Bommelc2549662011-01-29 15:26:31 +00004051 case Instruction::FDiv:
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00004052 Result = SimplifyFDivInst(I->getOperand(0), I->getOperand(1),
4053 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Frits van Bommelc2549662011-01-29 15:26:31 +00004054 break;
Duncan Sandsa3e36992011-05-02 16:27:02 +00004055 case Instruction::SRem:
Chandler Carruth66b31302015-01-04 12:03:27 +00004056 Result = SimplifySRemInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
4057 AC, I);
Duncan Sandsa3e36992011-05-02 16:27:02 +00004058 break;
4059 case Instruction::URem:
Chandler Carruth66b31302015-01-04 12:03:27 +00004060 Result = SimplifyURemInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
4061 AC, I);
Duncan Sandsa3e36992011-05-02 16:27:02 +00004062 break;
4063 case Instruction::FRem:
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00004064 Result = SimplifyFRemInst(I->getOperand(0), I->getOperand(1),
4065 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Duncan Sandsa3e36992011-05-02 16:27:02 +00004066 break;
Duncan Sands7f60dc12011-01-14 00:37:45 +00004067 case Instruction::Shl:
Chris Lattner9e4aa022011-02-09 17:15:04 +00004068 Result = SimplifyShlInst(I->getOperand(0), I->getOperand(1),
4069 cast<BinaryOperator>(I)->hasNoSignedWrap(),
Chandler Carruth66b31302015-01-04 12:03:27 +00004070 cast<BinaryOperator>(I)->hasNoUnsignedWrap(), DL,
4071 TLI, DT, AC, I);
Duncan Sands7f60dc12011-01-14 00:37:45 +00004072 break;
4073 case Instruction::LShr:
Chris Lattner9e4aa022011-02-09 17:15:04 +00004074 Result = SimplifyLShrInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00004075 cast<BinaryOperator>(I)->isExact(), DL, TLI, DT,
4076 AC, I);
Duncan Sands7f60dc12011-01-14 00:37:45 +00004077 break;
4078 case Instruction::AShr:
Chris Lattner9e4aa022011-02-09 17:15:04 +00004079 Result = SimplifyAShrInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00004080 cast<BinaryOperator>(I)->isExact(), DL, TLI, DT,
4081 AC, I);
Duncan Sands7f60dc12011-01-14 00:37:45 +00004082 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00004083 case Instruction::And:
Chandler Carruth66b31302015-01-04 12:03:27 +00004084 Result =
4085 SimplifyAndInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00004086 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00004087 case Instruction::Or:
Chandler Carruth66b31302015-01-04 12:03:27 +00004088 Result =
4089 SimplifyOrInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00004090 break;
Duncan Sandsc89ac072010-11-17 18:52:15 +00004091 case Instruction::Xor:
Chandler Carruth66b31302015-01-04 12:03:27 +00004092 Result =
4093 SimplifyXorInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sandsc89ac072010-11-17 18:52:15 +00004094 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00004095 case Instruction::ICmp:
Chandler Carruth66b31302015-01-04 12:03:27 +00004096 Result =
4097 SimplifyICmpInst(cast<ICmpInst>(I)->getPredicate(), I->getOperand(0),
4098 I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00004099 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00004100 case Instruction::FCmp:
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00004101 Result = SimplifyFCmpInst(cast<FCmpInst>(I)->getPredicate(),
4102 I->getOperand(0), I->getOperand(1),
4103 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00004104 break;
Chris Lattnerc707fa92010-04-20 05:32:14 +00004105 case Instruction::Select:
Duncan Sands64e41cf2010-11-17 08:35:29 +00004106 Result = SimplifySelectInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00004107 I->getOperand(2), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00004108 break;
Chris Lattner8574aba2009-11-27 00:29:05 +00004109 case Instruction::GetElementPtr: {
4110 SmallVector<Value*, 8> Ops(I->op_begin(), I->op_end());
Chandler Carruth66b31302015-01-04 12:03:27 +00004111 Result = SimplifyGEPInst(Ops, DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00004112 break;
Chris Lattner8574aba2009-11-27 00:29:05 +00004113 }
Duncan Sandsfd26a952011-09-05 06:52:48 +00004114 case Instruction::InsertValue: {
4115 InsertValueInst *IV = cast<InsertValueInst>(I);
4116 Result = SimplifyInsertValueInst(IV->getAggregateOperand(),
4117 IV->getInsertedValueOperand(),
Chandler Carruth66b31302015-01-04 12:03:27 +00004118 IV->getIndices(), DL, TLI, DT, AC, I);
Duncan Sandsfd26a952011-09-05 06:52:48 +00004119 break;
4120 }
David Majnemer25a796e2015-07-13 01:15:46 +00004121 case Instruction::ExtractValue: {
4122 auto *EVI = cast<ExtractValueInst>(I);
4123 Result = SimplifyExtractValueInst(EVI->getAggregateOperand(),
4124 EVI->getIndices(), DL, TLI, DT, AC, I);
4125 break;
4126 }
David Majnemer599ca442015-07-13 01:15:53 +00004127 case Instruction::ExtractElement: {
4128 auto *EEI = cast<ExtractElementInst>(I);
4129 Result = SimplifyExtractElementInst(
4130 EEI->getVectorOperand(), EEI->getIndexOperand(), DL, TLI, DT, AC, I);
4131 break;
4132 }
Duncan Sands4581ddc2010-11-14 13:30:18 +00004133 case Instruction::PHI:
Chandler Carruth66b31302015-01-04 12:03:27 +00004134 Result = SimplifyPHINode(cast<PHINode>(I), Query(DL, TLI, DT, AC, I));
Duncan Sands64e41cf2010-11-17 08:35:29 +00004135 break;
Chandler Carruth9dc35582012-12-28 11:30:55 +00004136 case Instruction::Call: {
4137 CallSite CS(cast<CallInst>(I));
Chandler Carruth66b31302015-01-04 12:03:27 +00004138 Result = SimplifyCall(CS.getCalledValue(), CS.arg_begin(), CS.arg_end(), DL,
4139 TLI, DT, AC, I);
Dan Gohman85977e62011-11-04 18:32:42 +00004140 break;
Chandler Carruth9dc35582012-12-28 11:30:55 +00004141 }
Duncan Sands395ac42d2012-03-13 14:07:05 +00004142 case Instruction::Trunc:
Chandler Carruth66b31302015-01-04 12:03:27 +00004143 Result =
4144 SimplifyTruncInst(I->getOperand(0), I->getType(), DL, TLI, DT, AC, I);
Duncan Sands395ac42d2012-03-13 14:07:05 +00004145 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00004146 }
Duncan Sands64e41cf2010-11-17 08:35:29 +00004147
Hal Finkelf2199b22015-10-23 20:37:08 +00004148 // In general, it is possible for computeKnownBits to determine all bits in a
4149 // value even when the operands are not all constants.
4150 if (!Result && I->getType()->isIntegerTy()) {
4151 unsigned BitWidth = I->getType()->getScalarSizeInBits();
4152 APInt KnownZero(BitWidth, 0);
4153 APInt KnownOne(BitWidth, 0);
4154 computeKnownBits(I, KnownZero, KnownOne, DL, /*Depth*/0, AC, I, DT);
4155 if ((KnownZero | KnownOne).isAllOnesValue())
4156 Result = ConstantInt::get(I->getContext(), KnownOne);
4157 }
4158
Duncan Sands64e41cf2010-11-17 08:35:29 +00004159 /// If called on unreachable code, the above logic may report that the
4160 /// instruction simplified to itself. Make life easier for users by
Duncan Sands019a4182010-12-15 11:02:22 +00004161 /// detecting that case here, returning a safe value instead.
4162 return Result == I ? UndefValue::get(I->getType()) : Result;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00004163}
4164
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004165/// \brief Implementation of recursive simplification through an instructions
4166/// uses.
Chris Lattner852d6d62009-11-10 22:26:15 +00004167///
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004168/// This is the common implementation of the recursive simplification routines.
4169/// If we have a pre-simplified value in 'SimpleV', that is forcibly used to
4170/// replace the instruction 'I'. Otherwise, we simply add 'I' to the list of
4171/// instructions to process and attempt to simplify it using
4172/// InstructionSimplify.
4173///
4174/// This routine returns 'true' only when *it* simplifies something. The passed
4175/// in simplified value does not count toward this.
4176static bool replaceAndRecursivelySimplifyImpl(Instruction *I, Value *SimpleV,
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004177 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00004178 const DominatorTree *DT,
Chandler Carruth66b31302015-01-04 12:03:27 +00004179 AssumptionCache *AC) {
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004180 bool Simplified = false;
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00004181 SmallSetVector<Instruction *, 8> Worklist;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004182 const DataLayout &DL = I->getModule()->getDataLayout();
Duncan Sands7e800d62010-11-14 11:23:23 +00004183
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004184 // If we have an explicit value to collapse to, do that round of the
4185 // simplification loop by hand initially.
4186 if (SimpleV) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00004187 for (User *U : I->users())
4188 if (U != I)
4189 Worklist.insert(cast<Instruction>(U));
Duncan Sands7e800d62010-11-14 11:23:23 +00004190
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004191 // Replace the instruction with its simplified value.
4192 I->replaceAllUsesWith(SimpleV);
Chris Lattner19eff2a2010-07-15 06:36:08 +00004193
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004194 // Gracefully handle edge cases where the instruction is not wired into any
4195 // parent block.
4196 if (I->getParent())
4197 I->eraseFromParent();
4198 } else {
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00004199 Worklist.insert(I);
Chris Lattner852d6d62009-11-10 22:26:15 +00004200 }
Duncan Sands7e800d62010-11-14 11:23:23 +00004201
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00004202 // Note that we must test the size on each iteration, the worklist can grow.
4203 for (unsigned Idx = 0; Idx != Worklist.size(); ++Idx) {
4204 I = Worklist[Idx];
Duncan Sands7e800d62010-11-14 11:23:23 +00004205
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004206 // See if this instruction simplifies.
Chandler Carruth66b31302015-01-04 12:03:27 +00004207 SimpleV = SimplifyInstruction(I, DL, TLI, DT, AC);
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004208 if (!SimpleV)
4209 continue;
4210
4211 Simplified = true;
4212
4213 // Stash away all the uses of the old instruction so we can check them for
4214 // recursive simplifications after a RAUW. This is cheaper than checking all
4215 // uses of To on the recursive step in most cases.
Chandler Carruthcdf47882014-03-09 03:16:01 +00004216 for (User *U : I->users())
4217 Worklist.insert(cast<Instruction>(U));
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004218
4219 // Replace the instruction with its simplified value.
4220 I->replaceAllUsesWith(SimpleV);
4221
4222 // Gracefully handle edge cases where the instruction is not wired into any
4223 // parent block.
4224 if (I->getParent())
4225 I->eraseFromParent();
4226 }
4227 return Simplified;
4228}
4229
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004230bool llvm::recursivelySimplifyInstruction(Instruction *I,
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004231 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00004232 const DominatorTree *DT,
Chandler Carruth66b31302015-01-04 12:03:27 +00004233 AssumptionCache *AC) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004234 return replaceAndRecursivelySimplifyImpl(I, nullptr, TLI, DT, AC);
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004235}
4236
4237bool llvm::replaceAndRecursivelySimplify(Instruction *I, Value *SimpleV,
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004238 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00004239 const DominatorTree *DT,
Chandler Carruth66b31302015-01-04 12:03:27 +00004240 AssumptionCache *AC) {
Chandler Carruthcf1b5852012-03-24 21:11:24 +00004241 assert(I != SimpleV && "replaceAndRecursivelySimplify(X,X) is not valid!");
4242 assert(SimpleV && "Must provide a simplified value.");
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004243 return replaceAndRecursivelySimplifyImpl(I, SimpleV, TLI, DT, AC);
Chris Lattner852d6d62009-11-10 22:26:15 +00004244}