blob: defa3c3ea56718403b245e275ca38b54ba776437 [file] [log] [blame]
Chris Lattner084a1b52009-11-09 22:57:59 +00001//===- InstructionSimplify.cpp - Fold instruction operands ----------------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Chris Lattner084a1b52009-11-09 22:57:59 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This file implements routines for folding instructions into simpler forms
Duncan Sandsa0219882010-11-23 10:50:08 +000010// that do not require creating new instructions. This does constant folding
11// ("add i32 1, 1" -> "2") but can also handle non-constant operands, either
12// returning a constant ("and i32 %x, 0" -> "0") or an already existing value
Duncan Sandsed6d6c32010-12-20 14:47:04 +000013// ("and i32 %x, %x" -> "%x"). All operands are assumed to have already been
14// simplified: This is usually true and assuming it simplifies the logic (if
15// they have not been simplified then results are correct but maybe suboptimal).
Chris Lattner084a1b52009-11-09 22:57:59 +000016//
17//===----------------------------------------------------------------------===//
18
19#include "llvm/Analysis/InstructionSimplify.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000020#include "llvm/ADT/SetVector.h"
21#include "llvm/ADT/Statistic.h"
Hal Finkelafcd8db2014-12-01 23:38:06 +000022#include "llvm/Analysis/AliasAnalysis.h"
Daniel Berlin4d0fe642017-04-28 19:55:38 +000023#include "llvm/Analysis/AssumptionCache.h"
Anna Thomas43d7e1c2016-05-03 14:58:21 +000024#include "llvm/Analysis/CaptureTracking.h"
Craig Topper0aa3a192017-08-14 21:39:51 +000025#include "llvm/Analysis/CmpInstAnalysis.h"
Chris Lattner084a1b52009-11-09 22:57:59 +000026#include "llvm/Analysis/ConstantFolding.h"
Daniel Berlin4d0fe642017-04-28 19:55:38 +000027#include "llvm/Analysis/LoopAnalysisManager.h"
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +000028#include "llvm/Analysis/MemoryBuiltins.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000029#include "llvm/Analysis/ValueTracking.h"
David Majnemer599ca442015-07-13 01:15:53 +000030#include "llvm/Analysis/VectorUtils.h"
Chandler Carruth8cd041e2014-03-04 12:24:34 +000031#include "llvm/IR/ConstantRange.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000032#include "llvm/IR/DataLayout.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000033#include "llvm/IR/Dominators.h"
Chandler Carruth03eb0de2014-03-04 10:40:04 +000034#include "llvm/IR/GetElementPtrTypeIterator.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000035#include "llvm/IR/GlobalAlias.h"
Chandler Carruthdac20a82019-02-11 07:54:10 +000036#include "llvm/IR/InstrTypes.h"
37#include "llvm/IR/Instructions.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000038#include "llvm/IR/Operator.h"
Chandler Carruth820a9082014-03-04 11:08:18 +000039#include "llvm/IR/PatternMatch.h"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000040#include "llvm/IR/ValueHandle.h"
Craig Topperb45eabc2017-04-26 16:39:58 +000041#include "llvm/Support/KnownBits.h"
Hal Finkelafcd8db2014-12-01 23:38:06 +000042#include <algorithm>
Chris Lattner084a1b52009-11-09 22:57:59 +000043using namespace llvm;
Chris Lattnera71e9d62009-11-10 00:55:12 +000044using namespace llvm::PatternMatch;
Chris Lattner084a1b52009-11-09 22:57:59 +000045
Chandler Carruthf1221bd2014-04-22 02:48:03 +000046#define DEBUG_TYPE "instsimplify"
47
Chris Lattner9e4aa022011-02-09 17:15:04 +000048enum { RecursionLimit = 3 };
Duncan Sandsf3b1bf12010-11-10 18:23:01 +000049
Duncan Sands3547d2e2010-12-22 09:40:51 +000050STATISTIC(NumExpand, "Number of expansions");
Duncan Sands3547d2e2010-12-22 09:40:51 +000051STATISTIC(NumReassoc, "Number of reassociations");
52
Daniel Berlin5e3fcb12017-04-26 04:09:56 +000053static Value *SimplifyAndInst(Value *, Value *, const SimplifyQuery &, unsigned);
Cameron McInallyc3167692019-05-06 16:05:10 +000054static Value *simplifyUnOp(unsigned, Value *, const SimplifyQuery &, unsigned);
55static Value *simplifyFPUnOp(unsigned, Value *, const FastMathFlags &,
56 const SimplifyQuery &, unsigned);
Daniel Berlin5e3fcb12017-04-26 04:09:56 +000057static Value *SimplifyBinOp(unsigned, Value *, Value *, const SimplifyQuery &,
Chad Rosierc24b86f2011-12-01 03:08:23 +000058 unsigned);
Jay Foad565c5432019-07-24 12:50:10 +000059static Value *SimplifyBinOp(unsigned, Value *, Value *, const FastMathFlags &,
60 const SimplifyQuery &, unsigned);
Daniel Berlin5e3fcb12017-04-26 04:09:56 +000061static Value *SimplifyCmpInst(unsigned, Value *, Value *, const SimplifyQuery &,
Chad Rosierc24b86f2011-12-01 03:08:23 +000062 unsigned);
Sanjay Patel9d5b5e32016-12-03 18:03:53 +000063static Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +000064 const SimplifyQuery &Q, unsigned MaxRecurse);
65static Value *SimplifyOrInst(Value *, Value *, const SimplifyQuery &, unsigned);
66static Value *SimplifyXorInst(Value *, Value *, const SimplifyQuery &, unsigned);
David Majnemer6774d612016-07-26 17:58:05 +000067static Value *SimplifyCastInst(unsigned, Value *, Type *,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +000068 const SimplifyQuery &, unsigned);
George Burgess IV8e807bf2018-04-24 00:25:01 +000069static Value *SimplifyGEPInst(Type *, ArrayRef<Value *>, const SimplifyQuery &,
70 unsigned);
Duncan Sands5ffc2982010-11-16 12:16:38 +000071
David Bolvanskyf9476082018-07-28 06:55:51 +000072static Value *foldSelectWithBinaryOp(Value *Cond, Value *TrueVal,
73 Value *FalseVal) {
74 BinaryOperator::BinaryOps BinOpCode;
75 if (auto *BO = dyn_cast<BinaryOperator>(Cond))
76 BinOpCode = BO->getOpcode();
77 else
78 return nullptr;
79
David Bolvansky16d8a692018-07-31 14:17:15 +000080 CmpInst::Predicate ExpectedPred, Pred1, Pred2;
David Bolvanskyf9476082018-07-28 06:55:51 +000081 if (BinOpCode == BinaryOperator::Or) {
82 ExpectedPred = ICmpInst::ICMP_NE;
83 } else if (BinOpCode == BinaryOperator::And) {
84 ExpectedPred = ICmpInst::ICMP_EQ;
85 } else
86 return nullptr;
87
David Bolvansky16d8a692018-07-31 14:17:15 +000088 // %A = icmp eq %TV, %FV
89 // %B = icmp eq %X, %Y (and one of these is a select operand)
90 // %C = and %A, %B
91 // %D = select %C, %TV, %FV
92 // -->
93 // %FV
94
95 // %A = icmp ne %TV, %FV
96 // %B = icmp ne %X, %Y (and one of these is a select operand)
97 // %C = or %A, %B
98 // %D = select %C, %TV, %FV
99 // -->
100 // %TV
101 Value *X, *Y;
102 if (!match(Cond, m_c_BinOp(m_c_ICmp(Pred1, m_Specific(TrueVal),
103 m_Specific(FalseVal)),
104 m_ICmp(Pred2, m_Value(X), m_Value(Y)))) ||
David Bolvanskyf9476082018-07-28 06:55:51 +0000105 Pred1 != Pred2 || Pred1 != ExpectedPred)
106 return nullptr;
107
David Bolvansky16d8a692018-07-31 14:17:15 +0000108 if (X == TrueVal || X == FalseVal || Y == TrueVal || Y == FalseVal)
109 return BinOpCode == BinaryOperator::Or ? TrueVal : FalseVal;
110
111 return nullptr;
David Bolvanskyf9476082018-07-28 06:55:51 +0000112}
113
Sanjay Patel35ed2412017-04-16 17:43:11 +0000114/// For a boolean type or a vector of boolean type, return false or a vector
115/// with every element false.
Duncan Sandsc1c92712011-07-26 15:03:53 +0000116static Constant *getFalse(Type *Ty) {
Sanjay Patel35ed2412017-04-16 17:43:11 +0000117 return ConstantInt::getFalse(Ty);
Duncan Sandsc1c92712011-07-26 15:03:53 +0000118}
119
Sanjay Patel35ed2412017-04-16 17:43:11 +0000120/// For a boolean type or a vector of boolean type, return true or a vector
121/// with every element true.
Duncan Sandsc1c92712011-07-26 15:03:53 +0000122static Constant *getTrue(Type *Ty) {
Sanjay Patel35ed2412017-04-16 17:43:11 +0000123 return ConstantInt::getTrue(Ty);
Duncan Sandsc1c92712011-07-26 15:03:53 +0000124}
125
Duncan Sands3d5692a2011-10-30 19:56:36 +0000126/// isSameCompare - Is V equivalent to the comparison "LHS Pred RHS"?
127static bool isSameCompare(Value *V, CmpInst::Predicate Pred, Value *LHS,
128 Value *RHS) {
129 CmpInst *Cmp = dyn_cast<CmpInst>(V);
130 if (!Cmp)
131 return false;
132 CmpInst::Predicate CPred = Cmp->getPredicate();
133 Value *CLHS = Cmp->getOperand(0), *CRHS = Cmp->getOperand(1);
134 if (CPred == Pred && CLHS == LHS && CRHS == RHS)
135 return true;
136 return CPred == CmpInst::getSwappedPredicate(Pred) && CLHS == RHS &&
137 CRHS == LHS;
138}
139
Sanjay Patel472cc782016-01-11 22:14:42 +0000140/// Does the given value dominate the specified phi node?
Sanjay Patel5da361a2018-04-10 18:38:19 +0000141static bool valueDominatesPHI(Value *V, PHINode *P, const DominatorTree *DT) {
Duncan Sands5ffc2982010-11-16 12:16:38 +0000142 Instruction *I = dyn_cast<Instruction>(V);
143 if (!I)
144 // Arguments and constants dominate all instructions.
145 return true;
146
Chandler Carruth3ffccb32012-03-21 10:58:47 +0000147 // If we are processing instructions (and/or basic blocks) that have not been
148 // fully added to a function, the parent nodes may still be null. Simply
149 // return the conservative answer in these cases.
Sanjay Patel5da361a2018-04-10 18:38:19 +0000150 if (!I->getParent() || !P->getParent() || !I->getFunction())
Chandler Carruth3ffccb32012-03-21 10:58:47 +0000151 return false;
152
Duncan Sands5ffc2982010-11-16 12:16:38 +0000153 // If we have a DominatorTree then do a precise test.
Daniel Berlin71ff6632017-05-31 01:47:24 +0000154 if (DT)
Eli Friedmanc8cbd062012-03-13 01:06:07 +0000155 return DT->dominates(I, P);
Duncan Sands5ffc2982010-11-16 12:16:38 +0000156
David Majnemer8a1c45d2015-12-12 05:38:55 +0000157 // Otherwise, if the instruction is in the entry block and is not an invoke,
158 // then it obviously dominates all phi nodes.
Sanjay Patel5da361a2018-04-10 18:38:19 +0000159 if (I->getParent() == &I->getFunction()->getEntryBlock() &&
David Majnemer8a1c45d2015-12-12 05:38:55 +0000160 !isa<InvokeInst>(I))
Duncan Sands5ffc2982010-11-16 12:16:38 +0000161 return true;
162
163 return false;
164}
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000165
Sanjay Patel472cc782016-01-11 22:14:42 +0000166/// Simplify "A op (B op' C)" by distributing op over op', turning it into
167/// "(A op B) op' (A op C)". Here "op" is given by Opcode and "op'" is
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000168/// given by OpcodeToExpand, while "A" corresponds to LHS and "B op' C" to RHS.
169/// Also performs the transform "(A op' B) op C" -> "(A op C) op' (B op C)".
170/// Returns the simplified value, or null if no simplification was performed.
Craig Topper60dd9cd2017-04-07 05:57:51 +0000171static Value *ExpandBinOp(Instruction::BinaryOps Opcode, Value *LHS, Value *RHS,
Craig Topper9c913bf2017-05-19 16:56:53 +0000172 Instruction::BinaryOps OpcodeToExpand,
173 const SimplifyQuery &Q, unsigned MaxRecurse) {
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000174 // Recursion is always used, so bail out at once if we already hit the limit.
175 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000176 return nullptr;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000177
178 // Check whether the expression has the form "(A op' B) op C".
179 if (BinaryOperator *Op0 = dyn_cast<BinaryOperator>(LHS))
180 if (Op0->getOpcode() == OpcodeToExpand) {
181 // It does! Try turning it into "(A op C) op' (B op C)".
182 Value *A = Op0->getOperand(0), *B = Op0->getOperand(1), *C = RHS;
183 // Do "A op C" and "B op C" both simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000184 if (Value *L = SimplifyBinOp(Opcode, A, C, Q, MaxRecurse))
185 if (Value *R = SimplifyBinOp(Opcode, B, C, Q, MaxRecurse)) {
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000186 // They do! Return "L op' R" if it simplifies or is already available.
187 // If "L op' R" equals "A op' B" then "L op' R" is just the LHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000188 if ((L == A && R == B) || (Instruction::isCommutative(OpcodeToExpand)
189 && L == B && R == A)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000190 ++NumExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000191 return LHS;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000192 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000193 // Otherwise return "L op' R" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000194 if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000195 ++NumExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000196 return V;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000197 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000198 }
199 }
200
201 // Check whether the expression has the form "A op (B op' C)".
202 if (BinaryOperator *Op1 = dyn_cast<BinaryOperator>(RHS))
203 if (Op1->getOpcode() == OpcodeToExpand) {
204 // It does! Try turning it into "(A op B) op' (A op C)".
205 Value *A = LHS, *B = Op1->getOperand(0), *C = Op1->getOperand(1);
206 // Do "A op B" and "A op C" both simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000207 if (Value *L = SimplifyBinOp(Opcode, A, B, Q, MaxRecurse))
208 if (Value *R = SimplifyBinOp(Opcode, A, C, Q, MaxRecurse)) {
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000209 // They do! Return "L op' R" if it simplifies or is already available.
210 // If "L op' R" equals "B op' C" then "L op' R" is just the RHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000211 if ((L == B && R == C) || (Instruction::isCommutative(OpcodeToExpand)
212 && L == C && R == B)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000213 ++NumExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000214 return RHS;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000215 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000216 // Otherwise return "L op' R" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000217 if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000218 ++NumExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000219 return V;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000220 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000221 }
222 }
223
Craig Topper9f008862014-04-15 04:59:12 +0000224 return nullptr;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000225}
226
Sanjay Patel472cc782016-01-11 22:14:42 +0000227/// Generic simplifications for associative binary operations.
228/// Returns the simpler value, or null if none was found.
Craig Topper60dd9cd2017-04-07 05:57:51 +0000229static Value *SimplifyAssociativeBinOp(Instruction::BinaryOps Opcode,
Craig Topper9c913bf2017-05-19 16:56:53 +0000230 Value *LHS, Value *RHS,
231 const SimplifyQuery &Q,
Craig Topper60dd9cd2017-04-07 05:57:51 +0000232 unsigned MaxRecurse) {
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000233 assert(Instruction::isAssociative(Opcode) && "Not an associative operation!");
234
235 // Recursion is always used, so bail out at once if we already hit the limit.
236 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000237 return nullptr;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000238
239 BinaryOperator *Op0 = dyn_cast<BinaryOperator>(LHS);
240 BinaryOperator *Op1 = dyn_cast<BinaryOperator>(RHS);
241
242 // Transform: "(A op B) op C" ==> "A op (B op C)" if it simplifies completely.
243 if (Op0 && Op0->getOpcode() == Opcode) {
244 Value *A = Op0->getOperand(0);
245 Value *B = Op0->getOperand(1);
246 Value *C = RHS;
247
248 // Does "B op C" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000249 if (Value *V = SimplifyBinOp(Opcode, B, C, Q, MaxRecurse)) {
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000250 // It does! Return "A op V" if it simplifies or is already available.
251 // If V equals B then "A op V" is just the LHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000252 if (V == B) return LHS;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000253 // Otherwise return "A op V" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000254 if (Value *W = SimplifyBinOp(Opcode, A, V, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000255 ++NumReassoc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000256 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000257 }
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000258 }
259 }
260
261 // Transform: "A op (B op C)" ==> "(A op B) op C" if it simplifies completely.
262 if (Op1 && Op1->getOpcode() == Opcode) {
263 Value *A = LHS;
264 Value *B = Op1->getOperand(0);
265 Value *C = Op1->getOperand(1);
266
267 // Does "A op B" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000268 if (Value *V = SimplifyBinOp(Opcode, A, B, Q, MaxRecurse)) {
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000269 // It does! Return "V op C" if it simplifies or is already available.
270 // If V equals B then "V op C" is just the RHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000271 if (V == B) return RHS;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000272 // Otherwise return "V op C" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000273 if (Value *W = SimplifyBinOp(Opcode, V, C, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000274 ++NumReassoc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000275 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000276 }
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000277 }
278 }
279
280 // The remaining transforms require commutativity as well as associativity.
281 if (!Instruction::isCommutative(Opcode))
Craig Topper9f008862014-04-15 04:59:12 +0000282 return nullptr;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000283
284 // Transform: "(A op B) op C" ==> "(C op A) op B" if it simplifies completely.
285 if (Op0 && Op0->getOpcode() == Opcode) {
286 Value *A = Op0->getOperand(0);
287 Value *B = Op0->getOperand(1);
288 Value *C = RHS;
289
290 // Does "C op A" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000291 if (Value *V = SimplifyBinOp(Opcode, C, A, Q, MaxRecurse)) {
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000292 // It does! Return "V op B" if it simplifies or is already available.
293 // If V equals A then "V op B" is just the LHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000294 if (V == A) return LHS;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000295 // Otherwise return "V op B" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000296 if (Value *W = SimplifyBinOp(Opcode, V, B, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000297 ++NumReassoc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000298 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000299 }
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000300 }
301 }
302
303 // Transform: "A op (B op C)" ==> "B op (C op A)" if it simplifies completely.
304 if (Op1 && Op1->getOpcode() == Opcode) {
305 Value *A = LHS;
306 Value *B = Op1->getOperand(0);
307 Value *C = Op1->getOperand(1);
308
309 // Does "C op A" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000310 if (Value *V = SimplifyBinOp(Opcode, C, A, Q, MaxRecurse)) {
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000311 // It does! Return "B op V" if it simplifies or is already available.
312 // If V equals C then "B op V" is just the RHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000313 if (V == C) return RHS;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000314 // Otherwise return "B op V" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000315 if (Value *W = SimplifyBinOp(Opcode, B, V, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000316 ++NumReassoc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000317 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000318 }
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000319 }
320 }
321
Craig Topper9f008862014-04-15 04:59:12 +0000322 return nullptr;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000323}
324
Sanjay Patel472cc782016-01-11 22:14:42 +0000325/// In the case of a binary operation with a select instruction as an operand,
326/// try to simplify the binop by seeing whether evaluating it on both branches
327/// of the select results in the same value. Returns the common value if so,
328/// otherwise returns null.
Craig Topper60dd9cd2017-04-07 05:57:51 +0000329static Value *ThreadBinOpOverSelect(Instruction::BinaryOps Opcode, Value *LHS,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +0000330 Value *RHS, const SimplifyQuery &Q,
Craig Topper60dd9cd2017-04-07 05:57:51 +0000331 unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000332 // Recursion is always used, so bail out at once if we already hit the limit.
333 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000334 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000335
Duncan Sandsb0579e92010-11-10 13:00:08 +0000336 SelectInst *SI;
337 if (isa<SelectInst>(LHS)) {
338 SI = cast<SelectInst>(LHS);
339 } else {
340 assert(isa<SelectInst>(RHS) && "No select instruction operand!");
341 SI = cast<SelectInst>(RHS);
342 }
343
344 // Evaluate the BinOp on the true and false branches of the select.
345 Value *TV;
346 Value *FV;
347 if (SI == LHS) {
Duncan Sandsb8cee002012-03-13 11:42:19 +0000348 TV = SimplifyBinOp(Opcode, SI->getTrueValue(), RHS, Q, MaxRecurse);
349 FV = SimplifyBinOp(Opcode, SI->getFalseValue(), RHS, Q, MaxRecurse);
Duncan Sandsb0579e92010-11-10 13:00:08 +0000350 } else {
Duncan Sandsb8cee002012-03-13 11:42:19 +0000351 TV = SimplifyBinOp(Opcode, LHS, SI->getTrueValue(), Q, MaxRecurse);
352 FV = SimplifyBinOp(Opcode, LHS, SI->getFalseValue(), Q, MaxRecurse);
Duncan Sandsb0579e92010-11-10 13:00:08 +0000353 }
354
Duncan Sandse3c53952011-01-01 16:12:09 +0000355 // If they simplified to the same value, then return the common value.
Duncan Sands772749a2011-01-01 20:08:02 +0000356 // If they both failed to simplify then return null.
357 if (TV == FV)
Duncan Sandsb0579e92010-11-10 13:00:08 +0000358 return TV;
359
360 // If one branch simplified to undef, return the other one.
361 if (TV && isa<UndefValue>(TV))
362 return FV;
363 if (FV && isa<UndefValue>(FV))
364 return TV;
365
366 // If applying the operation did not change the true and false select values,
367 // then the result of the binop is the select itself.
Duncan Sands772749a2011-01-01 20:08:02 +0000368 if (TV == SI->getTrueValue() && FV == SI->getFalseValue())
Duncan Sandsb0579e92010-11-10 13:00:08 +0000369 return SI;
370
371 // If one branch simplified and the other did not, and the simplified
372 // value is equal to the unsimplified one, return the simplified value.
373 // For example, select (cond, X, X & Z) & Z -> X & Z.
374 if ((FV && !TV) || (TV && !FV)) {
375 // Check that the simplified value has the form "X op Y" where "op" is the
376 // same as the original operation.
377 Instruction *Simplified = dyn_cast<Instruction>(FV ? FV : TV);
Zachary Turner260fe3e2017-12-14 22:07:03 +0000378 if (Simplified && Simplified->getOpcode() == unsigned(Opcode)) {
Duncan Sandsb0579e92010-11-10 13:00:08 +0000379 // The value that didn't simplify is "UnsimplifiedLHS op UnsimplifiedRHS".
380 // We already know that "op" is the same as for the simplified value. See
381 // if the operands match too. If so, return the simplified value.
382 Value *UnsimplifiedBranch = FV ? SI->getTrueValue() : SI->getFalseValue();
383 Value *UnsimplifiedLHS = SI == LHS ? UnsimplifiedBranch : LHS;
384 Value *UnsimplifiedRHS = SI == LHS ? RHS : UnsimplifiedBranch;
Duncan Sands772749a2011-01-01 20:08:02 +0000385 if (Simplified->getOperand(0) == UnsimplifiedLHS &&
386 Simplified->getOperand(1) == UnsimplifiedRHS)
Duncan Sandsb0579e92010-11-10 13:00:08 +0000387 return Simplified;
388 if (Simplified->isCommutative() &&
Duncan Sands772749a2011-01-01 20:08:02 +0000389 Simplified->getOperand(1) == UnsimplifiedLHS &&
390 Simplified->getOperand(0) == UnsimplifiedRHS)
Duncan Sandsb0579e92010-11-10 13:00:08 +0000391 return Simplified;
392 }
393 }
394
Craig Topper9f008862014-04-15 04:59:12 +0000395 return nullptr;
Duncan Sandsb0579e92010-11-10 13:00:08 +0000396}
397
Sanjay Patel472cc782016-01-11 22:14:42 +0000398/// In the case of a comparison with a select instruction, try to simplify the
399/// comparison by seeing whether both branches of the select result in the same
400/// value. Returns the common value if so, otherwise returns null.
Duncan Sandsb0579e92010-11-10 13:00:08 +0000401static Value *ThreadCmpOverSelect(CmpInst::Predicate Pred, Value *LHS,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +0000402 Value *RHS, const SimplifyQuery &Q,
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000403 unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000404 // Recursion is always used, so bail out at once if we already hit the limit.
405 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000406 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000407
Duncan Sandsb0579e92010-11-10 13:00:08 +0000408 // Make sure the select is on the LHS.
409 if (!isa<SelectInst>(LHS)) {
410 std::swap(LHS, RHS);
411 Pred = CmpInst::getSwappedPredicate(Pred);
412 }
413 assert(isa<SelectInst>(LHS) && "Not comparing with a select instruction!");
414 SelectInst *SI = cast<SelectInst>(LHS);
Duncan Sands3d5692a2011-10-30 19:56:36 +0000415 Value *Cond = SI->getCondition();
416 Value *TV = SI->getTrueValue();
417 Value *FV = SI->getFalseValue();
Duncan Sandsb0579e92010-11-10 13:00:08 +0000418
Duncan Sands06504022011-02-03 09:37:39 +0000419 // Now that we have "cmp select(Cond, TV, FV), RHS", analyse it.
Duncan Sandsb0579e92010-11-10 13:00:08 +0000420 // Does "cmp TV, RHS" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000421 Value *TCmp = SimplifyCmpInst(Pred, TV, RHS, Q, MaxRecurse);
Duncan Sands3d5692a2011-10-30 19:56:36 +0000422 if (TCmp == Cond) {
423 // It not only simplified, it simplified to the select condition. Replace
424 // it with 'true'.
425 TCmp = getTrue(Cond->getType());
426 } else if (!TCmp) {
427 // It didn't simplify. However if "cmp TV, RHS" is equal to the select
428 // condition then we can replace it with 'true'. Otherwise give up.
429 if (!isSameCompare(Cond, Pred, TV, RHS))
Craig Topper9f008862014-04-15 04:59:12 +0000430 return nullptr;
Duncan Sands3d5692a2011-10-30 19:56:36 +0000431 TCmp = getTrue(Cond->getType());
Duncan Sands06504022011-02-03 09:37:39 +0000432 }
433
Duncan Sands3d5692a2011-10-30 19:56:36 +0000434 // Does "cmp FV, RHS" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000435 Value *FCmp = SimplifyCmpInst(Pred, FV, RHS, Q, MaxRecurse);
Duncan Sands3d5692a2011-10-30 19:56:36 +0000436 if (FCmp == Cond) {
437 // It not only simplified, it simplified to the select condition. Replace
438 // it with 'false'.
439 FCmp = getFalse(Cond->getType());
440 } else if (!FCmp) {
441 // It didn't simplify. However if "cmp FV, RHS" is equal to the select
442 // condition then we can replace it with 'false'. Otherwise give up.
443 if (!isSameCompare(Cond, Pred, FV, RHS))
Craig Topper9f008862014-04-15 04:59:12 +0000444 return nullptr;
Duncan Sands3d5692a2011-10-30 19:56:36 +0000445 FCmp = getFalse(Cond->getType());
446 }
447
448 // If both sides simplified to the same value, then use it as the result of
449 // the original comparison.
450 if (TCmp == FCmp)
451 return TCmp;
Duncan Sands26641d72012-02-10 14:31:24 +0000452
453 // The remaining cases only make sense if the select condition has the same
454 // type as the result of the comparison, so bail out if this is not so.
455 if (Cond->getType()->isVectorTy() != RHS->getType()->isVectorTy())
Craig Topper9f008862014-04-15 04:59:12 +0000456 return nullptr;
Duncan Sands3d5692a2011-10-30 19:56:36 +0000457 // If the false value simplified to false, then the result of the compare
458 // is equal to "Cond && TCmp". This also catches the case when the false
459 // value simplified to false and the true value to true, returning "Cond".
460 if (match(FCmp, m_Zero()))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000461 if (Value *V = SimplifyAndInst(Cond, TCmp, Q, MaxRecurse))
Duncan Sands3d5692a2011-10-30 19:56:36 +0000462 return V;
463 // If the true value simplified to true, then the result of the compare
464 // is equal to "Cond || FCmp".
465 if (match(TCmp, m_One()))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000466 if (Value *V = SimplifyOrInst(Cond, FCmp, Q, MaxRecurse))
Duncan Sands3d5692a2011-10-30 19:56:36 +0000467 return V;
468 // Finally, if the false value simplified to true and the true value to
469 // false, then the result of the compare is equal to "!Cond".
470 if (match(FCmp, m_One()) && match(TCmp, m_Zero()))
471 if (Value *V =
472 SimplifyXorInst(Cond, Constant::getAllOnesValue(Cond->getType()),
Duncan Sandsb8cee002012-03-13 11:42:19 +0000473 Q, MaxRecurse))
Duncan Sands3d5692a2011-10-30 19:56:36 +0000474 return V;
475
Craig Topper9f008862014-04-15 04:59:12 +0000476 return nullptr;
Duncan Sandsb0579e92010-11-10 13:00:08 +0000477}
478
Sanjay Patel472cc782016-01-11 22:14:42 +0000479/// In the case of a binary operation with an operand that is a PHI instruction,
480/// try to simplify the binop by seeing whether evaluating it on the incoming
481/// phi values yields the same result for every value. If so returns the common
482/// value, otherwise returns null.
Craig Topper60dd9cd2017-04-07 05:57:51 +0000483static Value *ThreadBinOpOverPHI(Instruction::BinaryOps Opcode, Value *LHS,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +0000484 Value *RHS, const SimplifyQuery &Q,
Craig Topper60dd9cd2017-04-07 05:57:51 +0000485 unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000486 // Recursion is always used, so bail out at once if we already hit the limit.
487 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000488 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000489
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000490 PHINode *PI;
491 if (isa<PHINode>(LHS)) {
492 PI = cast<PHINode>(LHS);
Duncan Sands5ffc2982010-11-16 12:16:38 +0000493 // Bail out if RHS and the phi may be mutually interdependent due to a loop.
Sanjay Patel5da361a2018-04-10 18:38:19 +0000494 if (!valueDominatesPHI(RHS, PI, Q.DT))
Craig Topper9f008862014-04-15 04:59:12 +0000495 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000496 } else {
497 assert(isa<PHINode>(RHS) && "No PHI instruction operand!");
498 PI = cast<PHINode>(RHS);
Duncan Sands5ffc2982010-11-16 12:16:38 +0000499 // Bail out if LHS and the phi may be mutually interdependent due to a loop.
Sanjay Patel5da361a2018-04-10 18:38:19 +0000500 if (!valueDominatesPHI(LHS, PI, Q.DT))
Craig Topper9f008862014-04-15 04:59:12 +0000501 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000502 }
503
504 // Evaluate the BinOp on the incoming phi values.
Craig Topper9f008862014-04-15 04:59:12 +0000505 Value *CommonValue = nullptr;
Pete Cooper833f34d2015-05-12 20:05:31 +0000506 for (Value *Incoming : PI->incoming_values()) {
Duncan Sands7412f6e2010-11-17 04:30:22 +0000507 // If the incoming value is the phi node itself, it can safely be skipped.
Duncan Sandsf12ba1d2010-11-15 17:52:45 +0000508 if (Incoming == PI) continue;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000509 Value *V = PI == LHS ?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000510 SimplifyBinOp(Opcode, Incoming, RHS, Q, MaxRecurse) :
511 SimplifyBinOp(Opcode, LHS, Incoming, Q, MaxRecurse);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000512 // If the operation failed to simplify, or simplified to a different value
513 // to previously, then give up.
514 if (!V || (CommonValue && V != CommonValue))
Craig Topper9f008862014-04-15 04:59:12 +0000515 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000516 CommonValue = V;
517 }
518
519 return CommonValue;
520}
521
Sanjay Patel472cc782016-01-11 22:14:42 +0000522/// In the case of a comparison with a PHI instruction, try to simplify the
523/// comparison by seeing whether comparing with all of the incoming phi values
524/// yields the same result every time. If so returns the common result,
525/// otherwise returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000526static Value *ThreadCmpOverPHI(CmpInst::Predicate Pred, Value *LHS, Value *RHS,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +0000527 const SimplifyQuery &Q, unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000528 // Recursion is always used, so bail out at once if we already hit the limit.
529 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000530 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000531
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000532 // Make sure the phi is on the LHS.
533 if (!isa<PHINode>(LHS)) {
534 std::swap(LHS, RHS);
535 Pred = CmpInst::getSwappedPredicate(Pred);
536 }
537 assert(isa<PHINode>(LHS) && "Not comparing with a phi instruction!");
538 PHINode *PI = cast<PHINode>(LHS);
539
Duncan Sands5ffc2982010-11-16 12:16:38 +0000540 // Bail out if RHS and the phi may be mutually interdependent due to a loop.
Sanjay Patel5da361a2018-04-10 18:38:19 +0000541 if (!valueDominatesPHI(RHS, PI, Q.DT))
Craig Topper9f008862014-04-15 04:59:12 +0000542 return nullptr;
Duncan Sands5ffc2982010-11-16 12:16:38 +0000543
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000544 // Evaluate the BinOp on the incoming phi values.
Craig Topper9f008862014-04-15 04:59:12 +0000545 Value *CommonValue = nullptr;
Pete Cooper833f34d2015-05-12 20:05:31 +0000546 for (Value *Incoming : PI->incoming_values()) {
Duncan Sands7412f6e2010-11-17 04:30:22 +0000547 // If the incoming value is the phi node itself, it can safely be skipped.
Duncan Sandsf12ba1d2010-11-15 17:52:45 +0000548 if (Incoming == PI) continue;
Duncan Sandsb8cee002012-03-13 11:42:19 +0000549 Value *V = SimplifyCmpInst(Pred, Incoming, RHS, Q, MaxRecurse);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000550 // If the operation failed to simplify, or simplified to a different value
551 // to previously, then give up.
552 if (!V || (CommonValue && V != CommonValue))
Craig Topper9f008862014-04-15 04:59:12 +0000553 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000554 CommonValue = V;
555 }
556
557 return CommonValue;
558}
559
Sanjay Patel8b5ad3f2017-04-01 19:05:11 +0000560static Constant *foldOrCommuteConstant(Instruction::BinaryOps Opcode,
561 Value *&Op0, Value *&Op1,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +0000562 const SimplifyQuery &Q) {
Sanjay Patel8b5ad3f2017-04-01 19:05:11 +0000563 if (auto *CLHS = dyn_cast<Constant>(Op0)) {
564 if (auto *CRHS = dyn_cast<Constant>(Op1))
565 return ConstantFoldBinaryOpOperands(Opcode, CLHS, CRHS, Q.DL);
566
567 // Canonicalize the constant to the RHS if this is a commutative operation.
568 if (Instruction::isCommutative(Opcode))
569 std::swap(Op0, Op1);
570 }
571 return nullptr;
572}
573
Sanjay Patel472cc782016-01-11 22:14:42 +0000574/// Given operands for an Add, see if we can fold the result.
575/// If not, this returns null.
Roman Lebedevf87321a2018-06-08 15:44:53 +0000576static Value *SimplifyAddInst(Value *Op0, Value *Op1, bool IsNSW, bool IsNUW,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +0000577 const SimplifyQuery &Q, unsigned MaxRecurse) {
Sanjay Patel8b5ad3f2017-04-01 19:05:11 +0000578 if (Constant *C = foldOrCommuteConstant(Instruction::Add, Op0, Op1, Q))
579 return C;
Duncan Sands7e800d62010-11-14 11:23:23 +0000580
Duncan Sands0a2c41682010-12-15 14:07:39 +0000581 // X + undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000582 if (match(Op1, m_Undef()))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000583 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +0000584
Duncan Sands0a2c41682010-12-15 14:07:39 +0000585 // X + 0 -> X
586 if (match(Op1, m_Zero()))
587 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +0000588
Chen Zhengfdf13ef2018-07-12 03:06:04 +0000589 // If two operands are negative, return 0.
590 if (isKnownNegation(Op0, Op1))
591 return Constant::getNullValue(Op0->getType());
592
Duncan Sands0a2c41682010-12-15 14:07:39 +0000593 // X + (Y - X) -> Y
594 // (Y - X) + X -> Y
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000595 // Eg: X + -X -> 0
Craig Topper9f008862014-04-15 04:59:12 +0000596 Value *Y = nullptr;
Duncan Sands772749a2011-01-01 20:08:02 +0000597 if (match(Op1, m_Sub(m_Value(Y), m_Specific(Op0))) ||
598 match(Op0, m_Sub(m_Value(Y), m_Specific(Op1))))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000599 return Y;
600
601 // X + ~X -> -1 since ~X = -X-1
Sanjay Patelfe672552017-02-18 21:59:09 +0000602 Type *Ty = Op0->getType();
Duncan Sands772749a2011-01-01 20:08:02 +0000603 if (match(Op0, m_Not(m_Specific(Op1))) ||
604 match(Op1, m_Not(m_Specific(Op0))))
Sanjay Patelfe672552017-02-18 21:59:09 +0000605 return Constant::getAllOnesValue(Ty);
606
Craig Topperbcfd2d12017-04-20 16:56:25 +0000607 // add nsw/nuw (xor Y, signmask), signmask --> Y
Sanjay Patelfe672552017-02-18 21:59:09 +0000608 // The no-wrapping add guarantees that the top bit will be set by the add.
609 // Therefore, the xor must be clearing the already set sign bit of Y.
Roman Lebedevf87321a2018-06-08 15:44:53 +0000610 if ((IsNSW || IsNUW) && match(Op1, m_SignMask()) &&
Craig Topperbcfd2d12017-04-20 16:56:25 +0000611 match(Op0, m_Xor(m_Value(Y), m_SignMask())))
Sanjay Patelfe672552017-02-18 21:59:09 +0000612 return Y;
Duncan Sandsb238de02010-11-19 09:20:39 +0000613
Roman Lebedevb060ce42018-06-08 15:44:47 +0000614 // add nuw %x, -1 -> -1, because %x can only be 0.
Roman Lebedevf87321a2018-06-08 15:44:53 +0000615 if (IsNUW && match(Op1, m_AllOnes()))
Roman Lebedevb060ce42018-06-08 15:44:47 +0000616 return Op1; // Which is -1.
617
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000618 /// i1 add -> xor.
Craig Topperfde47232017-07-09 07:04:03 +0000619 if (MaxRecurse && Op0->getType()->isIntOrIntVectorTy(1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000620 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sandsfecc6422010-12-21 15:03:43 +0000621 return V;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000622
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000623 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000624 if (Value *V = SimplifyAssociativeBinOp(Instruction::Add, Op0, Op1, Q,
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000625 MaxRecurse))
626 return V;
627
Duncan Sandsb238de02010-11-19 09:20:39 +0000628 // Threading Add over selects and phi nodes is pointless, so don't bother.
629 // Threading over the select in "A + select(cond, B, C)" means evaluating
630 // "A+B" and "A+C" and seeing if they are equal; but they are equal if and
631 // only if B and C are equal. If B and C are equal then (since we assume
632 // that operands have already been simplified) "select(cond, B, C)" should
633 // have been simplified to the common value of B and C already. Analysing
634 // "A+B" and "A+C" thus gains nothing, but costs compile time. Similarly
635 // for threading over phi nodes.
636
Craig Topper9f008862014-04-15 04:59:12 +0000637 return nullptr;
Chris Lattner3d9823b2009-11-27 17:42:22 +0000638}
639
Roman Lebedevf87321a2018-06-08 15:44:53 +0000640Value *llvm::SimplifyAddInst(Value *Op0, Value *Op1, bool IsNSW, bool IsNUW,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +0000641 const SimplifyQuery &Query) {
Roman Lebedevf87321a2018-06-08 15:44:53 +0000642 return ::SimplifyAddInst(Op0, Op1, IsNSW, IsNUW, Query, RecursionLimit);
Daniel Berlin5e3fcb12017-04-26 04:09:56 +0000643}
644
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000645/// Compute the base pointer and cumulative constant offsets for V.
Chandler Carrutha0796552012-03-12 11:19:31 +0000646///
647/// This strips all constant offsets off of V, leaving it the base pointer, and
648/// accumulates the total constant offset applied in the returned constant. It
649/// returns 0 if V is not a pointer, and returns the constant '0' if there are
650/// no constant offsets applied.
Dan Gohman36fa8392013-01-31 02:45:26 +0000651///
652/// This is very similar to GetPointerBaseWithConstantOffset except it doesn't
653/// follow non-inbounds geps. This allows it to remain usable for icmp ult/etc.
654/// folding.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000655static Constant *stripAndComputeConstantOffsets(const DataLayout &DL, Value *&V,
Benjamin Kramer942dfe62013-09-23 14:16:38 +0000656 bool AllowNonInbounds = false) {
Craig Topper95d23472017-07-09 07:04:00 +0000657 assert(V->getType()->isPtrOrPtrVectorTy());
Chandler Carrutha0796552012-03-12 11:19:31 +0000658
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000659 Type *IntPtrTy = DL.getIntPtrType(V->getType())->getScalarType();
Matt Arsenault2f9cce22013-08-03 01:03:12 +0000660 APInt Offset = APInt::getNullValue(IntPtrTy->getIntegerBitWidth());
Chandler Carrutha0796552012-03-12 11:19:31 +0000661
Johannes Doerfert3ed286a2019-07-11 01:14:48 +0000662 V = V->stripAndAccumulateConstantOffsets(DL, Offset, AllowNonInbounds);
Michael Liao543ba4e2019-07-16 01:03:06 +0000663 // As that strip may trace through `addrspacecast`, need to sext or trunc
664 // the offset calculated.
665 IntPtrTy = DL.getIntPtrType(V->getType())->getScalarType();
666 Offset = Offset.sextOrTrunc(IntPtrTy->getIntegerBitWidth());
Chandler Carrutha0796552012-03-12 11:19:31 +0000667
Benjamin Kramerc05aa952013-02-01 15:21:10 +0000668 Constant *OffsetIntPtr = ConstantInt::get(IntPtrTy, Offset);
669 if (V->getType()->isVectorTy())
670 return ConstantVector::getSplat(V->getType()->getVectorNumElements(),
671 OffsetIntPtr);
672 return OffsetIntPtr;
Chandler Carrutha0796552012-03-12 11:19:31 +0000673}
674
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000675/// Compute the constant difference between two pointer values.
Chandler Carrutha0796552012-03-12 11:19:31 +0000676/// If the difference is not a constant, returns zero.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000677static Constant *computePointerDifference(const DataLayout &DL, Value *LHS,
678 Value *RHS) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000679 Constant *LHSOffset = stripAndComputeConstantOffsets(DL, LHS);
680 Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS);
Chandler Carrutha0796552012-03-12 11:19:31 +0000681
682 // If LHS and RHS are not related via constant offsets to the same base
683 // value, there is nothing we can do here.
684 if (LHS != RHS)
Craig Topper9f008862014-04-15 04:59:12 +0000685 return nullptr;
Chandler Carrutha0796552012-03-12 11:19:31 +0000686
687 // Otherwise, the difference of LHS - RHS can be computed as:
688 // LHS - RHS
689 // = (LHSOffset + Base) - (RHSOffset + Base)
690 // = LHSOffset - RHSOffset
691 return ConstantExpr::getSub(LHSOffset, RHSOffset);
692}
693
Sanjay Patel472cc782016-01-11 22:14:42 +0000694/// Given operands for a Sub, see if we can fold the result.
695/// If not, this returns null.
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000696static Value *SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +0000697 const SimplifyQuery &Q, unsigned MaxRecurse) {
Sanjay Patel8b5ad3f2017-04-01 19:05:11 +0000698 if (Constant *C = foldOrCommuteConstant(Instruction::Sub, Op0, Op1, Q))
699 return C;
Duncan Sands0a2c41682010-12-15 14:07:39 +0000700
701 // X - undef -> undef
702 // undef - X -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000703 if (match(Op0, m_Undef()) || match(Op1, m_Undef()))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000704 return UndefValue::get(Op0->getType());
705
706 // X - 0 -> X
707 if (match(Op1, m_Zero()))
708 return Op0;
709
710 // X - X -> 0
Duncan Sands772749a2011-01-01 20:08:02 +0000711 if (Op0 == Op1)
Duncan Sands0a2c41682010-12-15 14:07:39 +0000712 return Constant::getNullValue(Op0->getType());
713
Sanjay Patelefd88852016-10-19 21:23:45 +0000714 // Is this a negation?
715 if (match(Op0, m_Zero())) {
716 // 0 - X -> 0 if the sub is NUW.
717 if (isNUW)
Sanjay Patel30be6652018-04-22 17:07:44 +0000718 return Constant::getNullValue(Op0->getType());
Sanjay Patelefd88852016-10-19 21:23:45 +0000719
Craig Topper8205a1a2017-05-24 16:53:07 +0000720 KnownBits Known = computeKnownBits(Op1, Q.DL, 0, Q.AC, Q.CxtI, Q.DT);
Craig Topperb45eabc2017-04-26 16:39:58 +0000721 if (Known.Zero.isMaxSignedValue()) {
Sanjay Patelefd88852016-10-19 21:23:45 +0000722 // Op1 is either 0 or the minimum signed value. If the sub is NSW, then
723 // Op1 must be 0 because negating the minimum signed value is undefined.
724 if (isNSW)
Sanjay Patel30be6652018-04-22 17:07:44 +0000725 return Constant::getNullValue(Op0->getType());
Sanjay Patelefd88852016-10-19 21:23:45 +0000726
727 // 0 - X -> X if X is 0 or the minimum signed value.
728 return Op1;
729 }
730 }
David Majnemercd4fbcd2014-07-31 04:49:18 +0000731
Duncan Sands99589d02011-01-18 11:50:19 +0000732 // (X + Y) - Z -> X + (Y - Z) or Y + (X - Z) if everything simplifies.
733 // For example, (X + Y) - Y -> X; (Y + X) - Y -> X
Dinesh Dwivedi99281a02014-06-26 08:57:33 +0000734 Value *X = nullptr, *Y = nullptr, *Z = Op1;
Duncan Sands99589d02011-01-18 11:50:19 +0000735 if (MaxRecurse && match(Op0, m_Add(m_Value(X), m_Value(Y)))) { // (X + Y) - Z
736 // See if "V === Y - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000737 if (Value *V = SimplifyBinOp(Instruction::Sub, Y, Z, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000738 // It does! Now see if "X + V" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000739 if (Value *W = SimplifyBinOp(Instruction::Add, X, V, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000740 // It does, we successfully reassociated!
741 ++NumReassoc;
742 return W;
743 }
744 // See if "V === X - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000745 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Z, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000746 // It does! Now see if "Y + V" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000747 if (Value *W = SimplifyBinOp(Instruction::Add, Y, V, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000748 // It does, we successfully reassociated!
749 ++NumReassoc;
750 return W;
751 }
752 }
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000753
Duncan Sands99589d02011-01-18 11:50:19 +0000754 // X - (Y + Z) -> (X - Y) - Z or (X - Z) - Y if everything simplifies.
755 // For example, X - (X + 1) -> -1
756 X = Op0;
757 if (MaxRecurse && match(Op1, m_Add(m_Value(Y), m_Value(Z)))) { // X - (Y + Z)
758 // See if "V === X - Y" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000759 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Y, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000760 // It does! Now see if "V - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000761 if (Value *W = SimplifyBinOp(Instruction::Sub, V, Z, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000762 // It does, we successfully reassociated!
763 ++NumReassoc;
764 return W;
765 }
766 // See if "V === X - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000767 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Z, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000768 // It does! Now see if "V - Y" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000769 if (Value *W = SimplifyBinOp(Instruction::Sub, V, Y, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000770 // It does, we successfully reassociated!
771 ++NumReassoc;
772 return W;
773 }
774 }
775
776 // Z - (X - Y) -> (Z - X) + Y if everything simplifies.
777 // For example, X - (X - Y) -> Y.
778 Z = Op0;
Duncan Sandsd6f1a952011-01-14 15:26:10 +0000779 if (MaxRecurse && match(Op1, m_Sub(m_Value(X), m_Value(Y)))) // Z - (X - Y)
780 // See if "V === Z - X" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000781 if (Value *V = SimplifyBinOp(Instruction::Sub, Z, X, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000782 // It does! Now see if "V + Y" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000783 if (Value *W = SimplifyBinOp(Instruction::Add, V, Y, Q, MaxRecurse-1)) {
Duncan Sandsd6f1a952011-01-14 15:26:10 +0000784 // It does, we successfully reassociated!
785 ++NumReassoc;
786 return W;
787 }
788
Duncan Sands395ac42d2012-03-13 14:07:05 +0000789 // trunc(X) - trunc(Y) -> trunc(X - Y) if everything simplifies.
790 if (MaxRecurse && match(Op0, m_Trunc(m_Value(X))) &&
791 match(Op1, m_Trunc(m_Value(Y))))
792 if (X->getType() == Y->getType())
793 // See if "V === X - Y" simplifies.
794 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Y, Q, MaxRecurse-1))
795 // It does! Now see if "trunc V" simplifies.
David Majnemer6774d612016-07-26 17:58:05 +0000796 if (Value *W = SimplifyCastInst(Instruction::Trunc, V, Op0->getType(),
797 Q, MaxRecurse - 1))
Duncan Sands395ac42d2012-03-13 14:07:05 +0000798 // It does, return the simplified "trunc V".
799 return W;
800
801 // Variations on GEP(base, I, ...) - GEP(base, i, ...) -> GEP(null, I-i, ...).
Dan Gohman18c77a12013-01-31 02:50:36 +0000802 if (match(Op0, m_PtrToInt(m_Value(X))) &&
Duncan Sands395ac42d2012-03-13 14:07:05 +0000803 match(Op1, m_PtrToInt(m_Value(Y))))
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000804 if (Constant *Result = computePointerDifference(Q.DL, X, Y))
Duncan Sands395ac42d2012-03-13 14:07:05 +0000805 return ConstantExpr::getIntegerCast(Result, Op0->getType(), true);
806
Duncan Sands99589d02011-01-18 11:50:19 +0000807 // i1 sub -> xor.
Craig Topperfde47232017-07-09 07:04:03 +0000808 if (MaxRecurse && Op0->getType()->isIntOrIntVectorTy(1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000809 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000810 return V;
811
Duncan Sands0a2c41682010-12-15 14:07:39 +0000812 // Threading Sub over selects and phi nodes is pointless, so don't bother.
813 // Threading over the select in "A - select(cond, B, C)" means evaluating
814 // "A-B" and "A-C" and seeing if they are equal; but they are equal if and
815 // only if B and C are equal. If B and C are equal then (since we assume
816 // that operands have already been simplified) "select(cond, B, C)" should
817 // have been simplified to the common value of B and C already. Analysing
818 // "A-B" and "A-C" thus gains nothing, but costs compile time. Similarly
819 // for threading over phi nodes.
820
Craig Topper9f008862014-04-15 04:59:12 +0000821 return nullptr;
Duncan Sands0a2c41682010-12-15 14:07:39 +0000822}
823
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000824Value *llvm::SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +0000825 const SimplifyQuery &Q) {
826 return ::SimplifySubInst(Op0, Op1, isNSW, isNUW, Q, RecursionLimit);
827}
828
Sanjay Patel472cc782016-01-11 22:14:42 +0000829/// Given operands for a Mul, see if we can fold the result.
830/// If not, this returns null.
Daniel Berlin5e3fcb12017-04-26 04:09:56 +0000831static Value *SimplifyMulInst(Value *Op0, Value *Op1, const SimplifyQuery &Q,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000832 unsigned MaxRecurse) {
Sanjay Patel8b5ad3f2017-04-01 19:05:11 +0000833 if (Constant *C = foldOrCommuteConstant(Instruction::Mul, Op0, Op1, Q))
834 return C;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000835
836 // X * undef -> 0
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000837 // X * 0 -> 0
Sanjay Patel30be6652018-04-22 17:07:44 +0000838 if (match(Op1, m_CombineOr(m_Undef(), m_Zero())))
839 return Constant::getNullValue(Op0->getType());
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000840
841 // X * 1 -> X
842 if (match(Op1, m_One()))
843 return Op0;
844
Duncan Sandsb67edc62011-01-30 18:03:50 +0000845 // (X / Y) * Y -> X if the division is exact.
Craig Topper9f008862014-04-15 04:59:12 +0000846 Value *X = nullptr;
Florian Hahn19f9e322018-08-17 14:39:04 +0000847 if (Q.IIQ.UseInstrInfo &&
848 (match(Op0,
849 m_Exact(m_IDiv(m_Value(X), m_Specific(Op1)))) || // (X / Y) * Y
850 match(Op1, m_Exact(m_IDiv(m_Value(X), m_Specific(Op0)))))) // Y * (X / Y)
Benjamin Kramer9442cd02012-01-01 17:55:30 +0000851 return X;
Duncan Sandsb67edc62011-01-30 18:03:50 +0000852
Nick Lewyckyb89d9a42011-01-29 19:55:23 +0000853 // i1 mul -> and.
Craig Topperfde47232017-07-09 07:04:03 +0000854 if (MaxRecurse && Op0->getType()->isIntOrIntVectorTy(1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000855 if (Value *V = SimplifyAndInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sandsfecc6422010-12-21 15:03:43 +0000856 return V;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000857
858 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000859 if (Value *V = SimplifyAssociativeBinOp(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000860 MaxRecurse))
861 return V;
862
Dmitry Venikovd2257be2018-01-02 05:47:42 +0000863 // Mul distributes over Add. Try some generic simplifications based on this.
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000864 if (Value *V = ExpandBinOp(Instruction::Mul, Op0, Op1, Instruction::Add,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000865 Q, MaxRecurse))
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000866 return V;
867
868 // If the operation is with the result of a select instruction, check whether
869 // operating on either branch of the select always yields the same value.
870 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000871 if (Value *V = ThreadBinOpOverSelect(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000872 MaxRecurse))
873 return V;
874
875 // If the operation is with the result of a phi instruction, check whether
876 // operating on all incoming values of the phi always yields the same value.
877 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000878 if (Value *V = ThreadBinOpOverPHI(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000879 MaxRecurse))
880 return V;
881
Craig Topper9f008862014-04-15 04:59:12 +0000882 return nullptr;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000883}
884
Daniel Berlin5e3fcb12017-04-26 04:09:56 +0000885Value *llvm::SimplifyMulInst(Value *Op0, Value *Op1, const SimplifyQuery &Q) {
886 return ::SimplifyMulInst(Op0, Op1, Q, RecursionLimit);
887}
888
Sanjay Patel0cb2ee92017-03-06 19:08:35 +0000889/// Check for common or similar folds of integer division or integer remainder.
Sanjay Patelfa877fd2017-09-11 13:34:27 +0000890/// This applies to all 4 opcodes (sdiv/udiv/srem/urem).
Sanjay Patel0cb2ee92017-03-06 19:08:35 +0000891static Value *simplifyDivRem(Value *Op0, Value *Op1, bool IsDiv) {
892 Type *Ty = Op0->getType();
893
894 // X / undef -> undef
895 // X % undef -> undef
896 if (match(Op1, m_Undef()))
897 return Op1;
898
899 // X / 0 -> undef
900 // X % 0 -> undef
901 // We don't need to preserve faults!
902 if (match(Op1, m_Zero()))
903 return UndefValue::get(Ty);
904
Zvi Rackover51f0d642018-01-24 17:22:00 +0000905 // If any element of a constant divisor vector is zero or undef, the whole op
906 // is undef.
Sanjay Patel2b1f6f42017-03-09 16:20:52 +0000907 auto *Op1C = dyn_cast<Constant>(Op1);
908 if (Op1C && Ty->isVectorTy()) {
909 unsigned NumElts = Ty->getVectorNumElements();
910 for (unsigned i = 0; i != NumElts; ++i) {
911 Constant *Elt = Op1C->getAggregateElement(i);
Zvi Rackover51f0d642018-01-24 17:22:00 +0000912 if (Elt && (Elt->isNullValue() || isa<UndefValue>(Elt)))
Sanjay Patel2b1f6f42017-03-09 16:20:52 +0000913 return UndefValue::get(Ty);
914 }
915 }
916
Sanjay Patel0cb2ee92017-03-06 19:08:35 +0000917 // undef / X -> 0
918 // undef % X -> 0
919 if (match(Op0, m_Undef()))
920 return Constant::getNullValue(Ty);
921
922 // 0 / X -> 0
923 // 0 % X -> 0
924 if (match(Op0, m_Zero()))
Sanjay Patel30be6652018-04-22 17:07:44 +0000925 return Constant::getNullValue(Op0->getType());
Sanjay Patel0cb2ee92017-03-06 19:08:35 +0000926
927 // X / X -> 1
928 // X % X -> 0
929 if (Op0 == Op1)
930 return IsDiv ? ConstantInt::get(Ty, 1) : Constant::getNullValue(Ty);
931
932 // X / 1 -> X
933 // X % 1 -> 0
Sanjay Patel962a8432017-03-09 21:56:03 +0000934 // If this is a boolean op (single-bit element type), we can't have
935 // division-by-zero or remainder-by-zero, so assume the divisor is 1.
Sanjay Patel1e911fa2018-06-25 18:51:21 +0000936 // Similarly, if we're zero-extending a boolean divisor, then assume it's a 1.
937 Value *X;
938 if (match(Op1, m_One()) || Ty->isIntOrIntVectorTy(1) ||
939 (match(Op1, m_ZExt(m_Value(X))) && X->getType()->isIntOrIntVectorTy(1)))
Sanjay Patel0cb2ee92017-03-06 19:08:35 +0000940 return IsDiv ? Op0 : Constant::getNullValue(Ty);
941
942 return nullptr;
943}
944
Sanjay Patelcca8f782017-09-14 14:09:11 +0000945/// Given a predicate and two operands, return true if the comparison is true.
946/// This is a helper for div/rem simplification where we return some other value
947/// when we can prove a relationship between the operands.
948static bool isICmpTrue(ICmpInst::Predicate Pred, Value *LHS, Value *RHS,
949 const SimplifyQuery &Q, unsigned MaxRecurse) {
950 Value *V = SimplifyICmpInst(Pred, LHS, RHS, Q, MaxRecurse);
951 Constant *C = dyn_cast_or_null<Constant>(V);
952 return (C && C->isAllOnesValue());
953}
954
955/// Return true if we can simplify X / Y to 0. Remainder can adapt that answer
956/// to simplify X % Y to X.
Sanjay Patel0d4fd5b2017-09-14 14:59:07 +0000957static bool isDivZero(Value *X, Value *Y, const SimplifyQuery &Q,
Sanjay Patelcca8f782017-09-14 14:09:11 +0000958 unsigned MaxRecurse, bool IsSigned) {
959 // Recursion is always used, so bail out at once if we already hit the limit.
960 if (!MaxRecurse--)
961 return false;
962
963 if (IsSigned) {
Sanjay Patel0d4fd5b2017-09-14 14:59:07 +0000964 // |X| / |Y| --> 0
965 //
966 // We require that 1 operand is a simple constant. That could be extended to
967 // 2 variables if we computed the sign bit for each.
968 //
969 // Make sure that a constant is not the minimum signed value because taking
970 // the abs() of that is undefined.
971 Type *Ty = X->getType();
972 const APInt *C;
973 if (match(X, m_APInt(C)) && !C->isMinSignedValue()) {
974 // Is the variable divisor magnitude always greater than the constant
975 // dividend magnitude?
976 // |Y| > |C| --> Y < -abs(C) or Y > abs(C)
977 Constant *PosDividendC = ConstantInt::get(Ty, C->abs());
978 Constant *NegDividendC = ConstantInt::get(Ty, -C->abs());
979 if (isICmpTrue(CmpInst::ICMP_SLT, Y, NegDividendC, Q, MaxRecurse) ||
980 isICmpTrue(CmpInst::ICMP_SGT, Y, PosDividendC, Q, MaxRecurse))
981 return true;
982 }
983 if (match(Y, m_APInt(C))) {
984 // Special-case: we can't take the abs() of a minimum signed value. If
985 // that's the divisor, then all we have to do is prove that the dividend
986 // is also not the minimum signed value.
987 if (C->isMinSignedValue())
988 return isICmpTrue(CmpInst::ICMP_NE, X, Y, Q, MaxRecurse);
989
990 // Is the variable dividend magnitude always less than the constant
991 // divisor magnitude?
992 // |X| < |C| --> X > -abs(C) and X < abs(C)
993 Constant *PosDivisorC = ConstantInt::get(Ty, C->abs());
994 Constant *NegDivisorC = ConstantInt::get(Ty, -C->abs());
995 if (isICmpTrue(CmpInst::ICMP_SGT, X, NegDivisorC, Q, MaxRecurse) &&
996 isICmpTrue(CmpInst::ICMP_SLT, X, PosDivisorC, Q, MaxRecurse))
997 return true;
998 }
Sanjay Patelcca8f782017-09-14 14:09:11 +0000999 return false;
1000 }
1001
1002 // IsSigned == false.
Sanjay Patel0d4fd5b2017-09-14 14:59:07 +00001003 // Is the dividend unsigned less than the divisor?
1004 return isICmpTrue(ICmpInst::ICMP_ULT, X, Y, Q, MaxRecurse);
Sanjay Patelcca8f782017-09-14 14:09:11 +00001005}
1006
Sanjay Patelfa877fd2017-09-11 13:34:27 +00001007/// These are simplifications common to SDiv and UDiv.
1008static Value *simplifyDiv(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00001009 const SimplifyQuery &Q, unsigned MaxRecurse) {
Sanjay Patel8b5ad3f2017-04-01 19:05:11 +00001010 if (Constant *C = foldOrCommuteConstant(Opcode, Op0, Op1, Q))
1011 return C;
Duncan Sands771e82a2011-01-28 16:51:11 +00001012
Sanjay Patel0cb2ee92017-03-06 19:08:35 +00001013 if (Value *V = simplifyDivRem(Op0, Op1, true))
1014 return V;
1015
Sanjay Patelcca8f782017-09-14 14:09:11 +00001016 bool IsSigned = Opcode == Instruction::SDiv;
Duncan Sands65995fa2011-01-28 18:50:50 +00001017
Duncan Sands771e82a2011-01-28 16:51:11 +00001018 // (X * Y) / Y -> X if the multiplication does not overflow.
Sanjay Patel33cb8452018-01-19 16:12:55 +00001019 Value *X;
1020 if (match(Op0, m_c_Mul(m_Value(X), m_Specific(Op1)))) {
1021 auto *Mul = cast<OverflowingBinaryOperator>(Op0);
1022 // If the Mul does not overflow, then we are good to go.
Florian Hahn19f9e322018-08-17 14:39:04 +00001023 if ((IsSigned && Q.IIQ.hasNoSignedWrap(Mul)) ||
1024 (!IsSigned && Q.IIQ.hasNoUnsignedWrap(Mul)))
Duncan Sands5747aba2011-02-02 20:52:00 +00001025 return X;
Sanjay Patel33cb8452018-01-19 16:12:55 +00001026 // If X has the form X = A / Y, then X * Y cannot overflow.
1027 if ((IsSigned && match(X, m_SDiv(m_Value(), m_Specific(Op1)))) ||
1028 (!IsSigned && match(X, m_UDiv(m_Value(), m_Specific(Op1)))))
1029 return X;
Duncan Sands771e82a2011-01-28 16:51:11 +00001030 }
1031
Duncan Sands65995fa2011-01-28 18:50:50 +00001032 // (X rem Y) / Y -> 0
Sanjay Patelcca8f782017-09-14 14:09:11 +00001033 if ((IsSigned && match(Op0, m_SRem(m_Value(), m_Specific(Op1)))) ||
1034 (!IsSigned && match(Op0, m_URem(m_Value(), m_Specific(Op1)))))
Duncan Sands65995fa2011-01-28 18:50:50 +00001035 return Constant::getNullValue(Op0->getType());
1036
David Majnemercb9d5962014-10-11 10:20:01 +00001037 // (X /u C1) /u C2 -> 0 if C1 * C2 overflow
1038 ConstantInt *C1, *C2;
Sanjay Patelcca8f782017-09-14 14:09:11 +00001039 if (!IsSigned && match(Op0, m_UDiv(m_Value(X), m_ConstantInt(C1))) &&
David Majnemercb9d5962014-10-11 10:20:01 +00001040 match(Op1, m_ConstantInt(C2))) {
1041 bool Overflow;
Craig Topper9b71a402017-04-19 21:09:45 +00001042 (void)C1->getValue().umul_ov(C2->getValue(), Overflow);
David Majnemercb9d5962014-10-11 10:20:01 +00001043 if (Overflow)
1044 return Constant::getNullValue(Op0->getType());
1045 }
1046
Duncan Sands65995fa2011-01-28 18:50:50 +00001047 // If the operation is with the result of a select instruction, check whether
1048 // operating on either branch of the select always yields the same value.
1049 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001050 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands65995fa2011-01-28 18:50:50 +00001051 return V;
1052
1053 // If the operation is with the result of a phi instruction, check whether
1054 // operating on all incoming values of the phi always yields the same value.
1055 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001056 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands65995fa2011-01-28 18:50:50 +00001057 return V;
1058
Sanjay Patelcca8f782017-09-14 14:09:11 +00001059 if (isDivZero(Op0, Op1, Q, MaxRecurse, IsSigned))
1060 return Constant::getNullValue(Op0->getType());
1061
Craig Topper9f008862014-04-15 04:59:12 +00001062 return nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001063}
1064
Sanjay Patelfa877fd2017-09-11 13:34:27 +00001065/// These are simplifications common to SRem and URem.
1066static Value *simplifyRem(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00001067 const SimplifyQuery &Q, unsigned MaxRecurse) {
Sanjay Patel8b5ad3f2017-04-01 19:05:11 +00001068 if (Constant *C = foldOrCommuteConstant(Opcode, Op0, Op1, Q))
1069 return C;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001070
Sanjay Patel0cb2ee92017-03-06 19:08:35 +00001071 if (Value *V = simplifyDivRem(Op0, Op1, false))
1072 return V;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001073
David Majnemerb435a422014-09-17 04:16:35 +00001074 // (X % Y) % Y -> X % Y
1075 if ((Opcode == Instruction::SRem &&
1076 match(Op0, m_SRem(m_Value(), m_Specific(Op1)))) ||
1077 (Opcode == Instruction::URem &&
1078 match(Op0, m_URem(m_Value(), m_Specific(Op1)))))
David Majnemerac717f02014-09-17 03:34:34 +00001079 return Op0;
David Majnemerac717f02014-09-17 03:34:34 +00001080
Anton Bikineev82f61152018-01-23 09:27:47 +00001081 // (X << Y) % X -> 0
Florian Hahn19f9e322018-08-17 14:39:04 +00001082 if (Q.IIQ.UseInstrInfo &&
1083 ((Opcode == Instruction::SRem &&
1084 match(Op0, m_NSWShl(m_Specific(Op1), m_Value()))) ||
1085 (Opcode == Instruction::URem &&
1086 match(Op0, m_NUWShl(m_Specific(Op1), m_Value())))))
Anton Bikineev82f61152018-01-23 09:27:47 +00001087 return Constant::getNullValue(Op0->getType());
1088
Duncan Sandsa3e36992011-05-02 16:27:02 +00001089 // If the operation is with the result of a select instruction, check whether
1090 // operating on either branch of the select always yields the same value.
1091 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001092 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001093 return V;
1094
1095 // If the operation is with the result of a phi instruction, check whether
1096 // operating on all incoming values of the phi always yields the same value.
1097 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001098 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001099 return V;
1100
Sanjay Patelcca8f782017-09-14 14:09:11 +00001101 // If X / Y == 0, then X % Y == X.
1102 if (isDivZero(Op0, Op1, Q, MaxRecurse, Opcode == Instruction::SRem))
1103 return Op0;
Sanjay Patelfa877fd2017-09-11 13:34:27 +00001104
1105 return nullptr;
1106}
1107
1108/// Given operands for an SDiv, see if we can fold the result.
1109/// If not, this returns null.
1110static Value *SimplifySDivInst(Value *Op0, Value *Op1, const SimplifyQuery &Q,
1111 unsigned MaxRecurse) {
Chen Zheng69bb0642018-07-21 12:27:54 +00001112 // If two operands are negated and no signed overflow, return -1.
1113 if (isKnownNegation(Op0, Op1, /*NeedNSW=*/true))
1114 return Constant::getAllOnesValue(Op0->getType());
1115
Sanjay Patelcca8f782017-09-14 14:09:11 +00001116 return simplifyDiv(Instruction::SDiv, Op0, Op1, Q, MaxRecurse);
Sanjay Patelfa877fd2017-09-11 13:34:27 +00001117}
1118
1119Value *llvm::SimplifySDivInst(Value *Op0, Value *Op1, const SimplifyQuery &Q) {
1120 return ::SimplifySDivInst(Op0, Op1, Q, RecursionLimit);
1121}
1122
1123/// Given operands for a UDiv, see if we can fold the result.
1124/// If not, this returns null.
1125static Value *SimplifyUDivInst(Value *Op0, Value *Op1, const SimplifyQuery &Q,
1126 unsigned MaxRecurse) {
Sanjay Patelcca8f782017-09-14 14:09:11 +00001127 return simplifyDiv(Instruction::UDiv, Op0, Op1, Q, MaxRecurse);
Sanjay Patelfa877fd2017-09-11 13:34:27 +00001128}
1129
1130Value *llvm::SimplifyUDivInst(Value *Op0, Value *Op1, const SimplifyQuery &Q) {
1131 return ::SimplifyUDivInst(Op0, Op1, Q, RecursionLimit);
1132}
1133
Sanjay Patel472cc782016-01-11 22:14:42 +00001134/// Given operands for an SRem, see if we can fold the result.
1135/// If not, this returns null.
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00001136static Value *SimplifySRemInst(Value *Op0, Value *Op1, const SimplifyQuery &Q,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001137 unsigned MaxRecurse) {
Sanjay Patel2b7e3102018-06-26 15:32:54 +00001138 // If the divisor is 0, the result is undefined, so assume the divisor is -1.
1139 // srem Op0, (sext i1 X) --> srem Op0, -1 --> 0
1140 Value *X;
1141 if (match(Op1, m_SExt(m_Value(X))) && X->getType()->isIntOrIntVectorTy(1))
1142 return ConstantInt::getNullValue(Op0->getType());
1143
Chen Zhengf801d0f2018-07-20 13:00:47 +00001144 // If the two operands are negated, return 0.
1145 if (isKnownNegation(Op0, Op1))
Chen Zheng69bb0642018-07-21 12:27:54 +00001146 return ConstantInt::getNullValue(Op0->getType());
Chen Zhengf801d0f2018-07-20 13:00:47 +00001147
Sanjay Patelcca8f782017-09-14 14:09:11 +00001148 return simplifyRem(Instruction::SRem, Op0, Op1, Q, MaxRecurse);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001149}
1150
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00001151Value *llvm::SimplifySRemInst(Value *Op0, Value *Op1, const SimplifyQuery &Q) {
1152 return ::SimplifySRemInst(Op0, Op1, Q, RecursionLimit);
1153}
1154
Sanjay Patel472cc782016-01-11 22:14:42 +00001155/// Given operands for a URem, see if we can fold the result.
1156/// If not, this returns null.
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00001157static Value *SimplifyURemInst(Value *Op0, Value *Op1, const SimplifyQuery &Q,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001158 unsigned MaxRecurse) {
Sanjay Patelcca8f782017-09-14 14:09:11 +00001159 return simplifyRem(Instruction::URem, Op0, Op1, Q, MaxRecurse);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001160}
1161
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00001162Value *llvm::SimplifyURemInst(Value *Op0, Value *Op1, const SimplifyQuery &Q) {
1163 return ::SimplifyURemInst(Op0, Op1, Q, RecursionLimit);
1164}
1165
Sanjay Patel472cc782016-01-11 22:14:42 +00001166/// Returns true if a shift by \c Amount always yields undef.
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00001167static bool isUndefShift(Value *Amount) {
1168 Constant *C = dyn_cast<Constant>(Amount);
1169 if (!C)
1170 return false;
1171
1172 // X shift by undef -> undef because it may shift by the bitwidth.
1173 if (isa<UndefValue>(C))
1174 return true;
1175
1176 // Shifting by the bitwidth or more is undefined.
1177 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
1178 if (CI->getValue().getLimitedValue() >=
1179 CI->getType()->getScalarSizeInBits())
1180 return true;
1181
1182 // If all lanes of a vector shift are undefined the whole shift is.
1183 if (isa<ConstantVector>(C) || isa<ConstantDataVector>(C)) {
1184 for (unsigned I = 0, E = C->getType()->getVectorNumElements(); I != E; ++I)
1185 if (!isUndefShift(C->getAggregateElement(I)))
1186 return false;
1187 return true;
1188 }
1189
1190 return false;
1191}
1192
Sanjay Patel472cc782016-01-11 22:14:42 +00001193/// Given operands for an Shl, LShr or AShr, see if we can fold the result.
1194/// If not, this returns null.
Sanjay Patel8b5ad3f2017-04-01 19:05:11 +00001195static Value *SimplifyShift(Instruction::BinaryOps Opcode, Value *Op0,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00001196 Value *Op1, const SimplifyQuery &Q, unsigned MaxRecurse) {
Sanjay Patel8b5ad3f2017-04-01 19:05:11 +00001197 if (Constant *C = foldOrCommuteConstant(Opcode, Op0, Op1, Q))
1198 return C;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001199
Duncan Sands571fd9a2011-01-14 14:44:12 +00001200 // 0 shift by X -> 0
Duncan Sands7f60dc12011-01-14 00:37:45 +00001201 if (match(Op0, m_Zero()))
Sanjay Patel30be6652018-04-22 17:07:44 +00001202 return Constant::getNullValue(Op0->getType());
Duncan Sands7f60dc12011-01-14 00:37:45 +00001203
Duncan Sands571fd9a2011-01-14 14:44:12 +00001204 // X shift by 0 -> X
Sanjay Patelad0bfb82018-06-26 17:31:38 +00001205 // Shift-by-sign-extended bool must be shift-by-0 because shift-by-all-ones
1206 // would be poison.
1207 Value *X;
1208 if (match(Op1, m_Zero()) ||
1209 (match(Op1, m_SExt(m_Value(X))) && X->getType()->isIntOrIntVectorTy(1)))
Duncan Sands7f60dc12011-01-14 00:37:45 +00001210 return Op0;
1211
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00001212 // Fold undefined shifts.
1213 if (isUndefShift(Op1))
1214 return UndefValue::get(Op0->getType());
Duncan Sands7f60dc12011-01-14 00:37:45 +00001215
Duncan Sands571fd9a2011-01-14 14:44:12 +00001216 // If the operation is with the result of a select instruction, check whether
1217 // operating on either branch of the select always yields the same value.
1218 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001219 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001220 return V;
1221
1222 // If the operation is with the result of a phi instruction, check whether
1223 // operating on all incoming values of the phi always yields the same value.
1224 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001225 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001226 return V;
1227
Sanjay Patel6786bc52016-05-10 20:46:54 +00001228 // If any bits in the shift amount make that value greater than or equal to
1229 // the number of bits in the type, the shift is undefined.
Craig Topper8205a1a2017-05-24 16:53:07 +00001230 KnownBits Known = computeKnownBits(Op1, Q.DL, 0, Q.AC, Q.CxtI, Q.DT);
1231 if (Known.One.getLimitedValue() >= Known.getBitWidth())
Sanjay Patel6786bc52016-05-10 20:46:54 +00001232 return UndefValue::get(Op0->getType());
1233
1234 // If all valid bits in the shift amount are known zero, the first operand is
1235 // unchanged.
Craig Topper8205a1a2017-05-24 16:53:07 +00001236 unsigned NumValidShiftBits = Log2_32_Ceil(Known.getBitWidth());
Craig Topper8df66c62017-05-12 17:20:30 +00001237 if (Known.countMinTrailingZeros() >= NumValidShiftBits)
Sanjay Patel6786bc52016-05-10 20:46:54 +00001238 return Op0;
1239
Craig Topper9f008862014-04-15 04:59:12 +00001240 return nullptr;
Duncan Sands571fd9a2011-01-14 14:44:12 +00001241}
1242
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001243/// Given operands for an Shl, LShr or AShr, see if we can
David Majnemerbf7550e2014-11-05 00:59:59 +00001244/// fold the result. If not, this returns null.
Sanjay Patel8b5ad3f2017-04-01 19:05:11 +00001245static Value *SimplifyRightShift(Instruction::BinaryOps Opcode, Value *Op0,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00001246 Value *Op1, bool isExact, const SimplifyQuery &Q,
David Majnemerbf7550e2014-11-05 00:59:59 +00001247 unsigned MaxRecurse) {
1248 if (Value *V = SimplifyShift(Opcode, Op0, Op1, Q, MaxRecurse))
1249 return V;
1250
1251 // X >> X -> 0
1252 if (Op0 == Op1)
1253 return Constant::getNullValue(Op0->getType());
1254
David Majnemer65c52ae2014-12-17 01:54:33 +00001255 // undef >> X -> 0
1256 // undef >> X -> undef (if it's exact)
1257 if (match(Op0, m_Undef()))
1258 return isExact ? Op0 : Constant::getNullValue(Op0->getType());
1259
David Majnemerbf7550e2014-11-05 00:59:59 +00001260 // The low bit cannot be shifted out of an exact shift if it is set.
1261 if (isExact) {
Craig Topper8205a1a2017-05-24 16:53:07 +00001262 KnownBits Op0Known = computeKnownBits(Op0, Q.DL, /*Depth=*/0, Q.AC, Q.CxtI, Q.DT);
Craig Topperb45eabc2017-04-26 16:39:58 +00001263 if (Op0Known.One[0])
David Majnemerbf7550e2014-11-05 00:59:59 +00001264 return Op0;
1265 }
1266
1267 return nullptr;
1268}
1269
Sanjay Patel472cc782016-01-11 22:14:42 +00001270/// Given operands for an Shl, see if we can fold the result.
1271/// If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001272static Value *SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00001273 const SimplifyQuery &Q, unsigned MaxRecurse) {
Duncan Sandsb8cee002012-03-13 11:42:19 +00001274 if (Value *V = SimplifyShift(Instruction::Shl, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001275 return V;
1276
1277 // undef << X -> 0
David Majnemer65c52ae2014-12-17 01:54:33 +00001278 // undef << X -> undef if (if it's NSW/NUW)
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001279 if (match(Op0, m_Undef()))
David Majnemer65c52ae2014-12-17 01:54:33 +00001280 return isNSW || isNUW ? Op0 : Constant::getNullValue(Op0->getType());
Duncan Sands571fd9a2011-01-14 14:44:12 +00001281
Chris Lattner9e4aa022011-02-09 17:15:04 +00001282 // (X >> A) << A -> X
1283 Value *X;
Florian Hahn19f9e322018-08-17 14:39:04 +00001284 if (Q.IIQ.UseInstrInfo &&
1285 match(Op0, m_Exact(m_Shr(m_Value(X), m_Specific(Op1)))))
Chris Lattner9e4aa022011-02-09 17:15:04 +00001286 return X;
Roman Lebedev26838022018-06-07 20:03:45 +00001287
1288 // shl nuw i8 C, %x -> C iff C has sign bit set.
1289 if (isNUW && match(Op0, m_Negative()))
1290 return Op0;
1291 // NOTE: could use computeKnownBits() / LazyValueInfo,
1292 // but the cost-benefit analysis suggests it isn't worth it.
1293
Craig Topper9f008862014-04-15 04:59:12 +00001294 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001295}
1296
Chris Lattner9e4aa022011-02-09 17:15:04 +00001297Value *llvm::SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00001298 const SimplifyQuery &Q) {
1299 return ::SimplifyShlInst(Op0, Op1, isNSW, isNUW, Q, RecursionLimit);
1300}
1301
Sanjay Patel472cc782016-01-11 22:14:42 +00001302/// Given operands for an LShr, see if we can fold the result.
1303/// If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001304static Value *SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00001305 const SimplifyQuery &Q, unsigned MaxRecurse) {
David Majnemerbf7550e2014-11-05 00:59:59 +00001306 if (Value *V = SimplifyRightShift(Instruction::LShr, Op0, Op1, isExact, Q,
1307 MaxRecurse))
1308 return V;
David Majnemera80fed72013-07-09 22:01:22 +00001309
Chris Lattner9e4aa022011-02-09 17:15:04 +00001310 // (X << A) >> A -> X
1311 Value *X;
David Majnemer4f438372014-11-04 17:38:50 +00001312 if (match(Op0, m_NUWShl(m_Value(X), m_Specific(Op1))))
Chris Lattner9e4aa022011-02-09 17:15:04 +00001313 return X;
Duncan Sandsd114ab32011-02-13 17:15:40 +00001314
Hiroshi Inoue02f79ea2018-08-01 04:40:32 +00001315 // ((X << A) | Y) >> A -> X if effective width of Y is not larger than A.
1316 // We can return X as we do in the above case since OR alters no bits in X.
1317 // SimplifyDemandedBits in InstCombine can do more general optimization for
1318 // bit manipulation. This pattern aims to provide opportunities for other
1319 // optimizers by supporting a simple but common case in InstSimplify.
1320 Value *Y;
1321 const APInt *ShRAmt, *ShLAmt;
1322 if (match(Op1, m_APInt(ShRAmt)) &&
1323 match(Op0, m_c_Or(m_NUWShl(m_Value(X), m_APInt(ShLAmt)), m_Value(Y))) &&
1324 *ShRAmt == *ShLAmt) {
1325 const KnownBits YKnown = computeKnownBits(Y, Q.DL, 0, Q.AC, Q.CxtI, Q.DT);
1326 const unsigned Width = Op0->getType()->getScalarSizeInBits();
1327 const unsigned EffWidthY = Width - YKnown.countMinLeadingZeros();
Benjamin Kramerbae6aab2018-08-12 11:43:03 +00001328 if (ShRAmt->uge(EffWidthY))
Hiroshi Inoue02f79ea2018-08-01 04:40:32 +00001329 return X;
1330 }
1331
Craig Topper9f008862014-04-15 04:59:12 +00001332 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001333}
1334
Chris Lattner9e4aa022011-02-09 17:15:04 +00001335Value *llvm::SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00001336 const SimplifyQuery &Q) {
1337 return ::SimplifyLShrInst(Op0, Op1, isExact, Q, RecursionLimit);
1338}
1339
Sanjay Patel472cc782016-01-11 22:14:42 +00001340/// Given operands for an AShr, see if we can fold the result.
1341/// If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001342static Value *SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00001343 const SimplifyQuery &Q, unsigned MaxRecurse) {
David Majnemerbf7550e2014-11-05 00:59:59 +00001344 if (Value *V = SimplifyRightShift(Instruction::AShr, Op0, Op1, isExact, Q,
1345 MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001346 return V;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001347
Sanjay Pateladf6e882018-02-18 18:05:08 +00001348 // all ones >>a X -> -1
1349 // Do not return Op0 because it may contain undef elements if it's a vector.
Duncan Sands7f60dc12011-01-14 00:37:45 +00001350 if (match(Op0, m_AllOnes()))
Sanjay Pateladf6e882018-02-18 18:05:08 +00001351 return Constant::getAllOnesValue(Op0->getType());
Duncan Sands7f60dc12011-01-14 00:37:45 +00001352
Chris Lattner9e4aa022011-02-09 17:15:04 +00001353 // (X << A) >> A -> X
1354 Value *X;
Florian Hahn19f9e322018-08-17 14:39:04 +00001355 if (Q.IIQ.UseInstrInfo && match(Op0, m_NSWShl(m_Value(X), m_Specific(Op1))))
Chris Lattner9e4aa022011-02-09 17:15:04 +00001356 return X;
Duncan Sandsd114ab32011-02-13 17:15:40 +00001357
Suyog Sarda68862412014-07-17 06:28:15 +00001358 // Arithmetic shifting an all-sign-bit value is a no-op.
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001359 unsigned NumSignBits = ComputeNumSignBits(Op0, Q.DL, 0, Q.AC, Q.CxtI, Q.DT);
Suyog Sarda68862412014-07-17 06:28:15 +00001360 if (NumSignBits == Op0->getType()->getScalarSizeInBits())
1361 return Op0;
1362
Craig Topper9f008862014-04-15 04:59:12 +00001363 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001364}
1365
Chris Lattner9e4aa022011-02-09 17:15:04 +00001366Value *llvm::SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00001367 const SimplifyQuery &Q) {
1368 return ::SimplifyAShrInst(Op0, Op1, isExact, Q, RecursionLimit);
1369}
1370
Craig Topper348314d2017-05-26 22:42:34 +00001371/// Commuted variants are assumed to be handled by calling this function again
1372/// with the parameters swapped.
David Majnemer1af36e52014-12-06 10:51:40 +00001373static Value *simplifyUnsignedRangeCheck(ICmpInst *ZeroICmp,
Roman Lebedev6e2c5c82019-09-08 20:14:15 +00001374 ICmpInst *UnsignedICmp, bool IsAnd,
Roman Lebedev00c1ee42019-09-11 15:32:46 +00001375 const SimplifyQuery &Q) {
David Majnemer1af36e52014-12-06 10:51:40 +00001376 Value *X, *Y;
1377
1378 ICmpInst::Predicate EqPred;
David Majnemerd5b3aa42014-12-08 18:30:43 +00001379 if (!match(ZeroICmp, m_ICmp(EqPred, m_Value(Y), m_Zero())) ||
1380 !ICmpInst::isEquality(EqPred))
David Majnemer1af36e52014-12-06 10:51:40 +00001381 return nullptr;
1382
1383 ICmpInst::Predicate UnsignedPred;
Roman Lebedevf1286622019-09-12 09:26:17 +00001384
1385 // Y = (A - B); Y >= A && Y != 0 --> Y >= A iff B != 0
1386 // Y = (A - B); Y < A || Y == 0 --> Y < A iff B != 0
1387 Value *A, *B;
1388 if (match(Y, m_Sub(m_Value(A), m_Value(B))) &&
1389 match(UnsignedICmp,
1390 m_c_ICmp(UnsignedPred, m_Specific(Y), m_Specific(A)))) {
1391 if (UnsignedICmp->getOperand(0) != Y)
1392 UnsignedPred = ICmpInst::getSwappedPredicate(UnsignedPred);
1393
1394 if (UnsignedPred == ICmpInst::ICMP_UGE && IsAnd &&
1395 EqPred == ICmpInst::ICMP_NE &&
1396 isKnownNonZero(B, Q.DL, /*Depth=*/0, Q.AC, Q.CxtI, Q.DT))
1397 return UnsignedICmp;
1398 if (UnsignedPred == ICmpInst::ICMP_ULT && !IsAnd &&
1399 EqPred == ICmpInst::ICMP_EQ &&
1400 isKnownNonZero(B, Q.DL, /*Depth=*/0, Q.AC, Q.CxtI, Q.DT))
1401 return UnsignedICmp;
1402 }
1403
David Majnemer1af36e52014-12-06 10:51:40 +00001404 if (match(UnsignedICmp, m_ICmp(UnsignedPred, m_Value(X), m_Specific(Y))) &&
1405 ICmpInst::isUnsigned(UnsignedPred))
1406 ;
1407 else if (match(UnsignedICmp,
Sanjay Patel0c57de42018-06-20 14:22:49 +00001408 m_ICmp(UnsignedPred, m_Specific(Y), m_Value(X))) &&
David Majnemer1af36e52014-12-06 10:51:40 +00001409 ICmpInst::isUnsigned(UnsignedPred))
1410 UnsignedPred = ICmpInst::getSwappedPredicate(UnsignedPred);
1411 else
1412 return nullptr;
1413
1414 // X < Y && Y != 0 --> X < Y
1415 // X < Y || Y != 0 --> Y != 0
1416 if (UnsignedPred == ICmpInst::ICMP_ULT && EqPred == ICmpInst::ICMP_NE)
1417 return IsAnd ? UnsignedICmp : ZeroICmp;
1418
Roman Lebedev6e2c5c82019-09-08 20:14:15 +00001419 // X <= Y && Y != 0 --> X <= Y iff X != 0
1420 // X <= Y || Y != 0 --> Y != 0 iff X != 0
1421 if (UnsignedPred == ICmpInst::ICMP_ULE && EqPred == ICmpInst::ICMP_NE &&
Roman Lebedev00c1ee42019-09-11 15:32:46 +00001422 isKnownNonZero(X, Q.DL, /*Depth=*/0, Q.AC, Q.CxtI, Q.DT))
Roman Lebedev6e2c5c82019-09-08 20:14:15 +00001423 return IsAnd ? UnsignedICmp : ZeroICmp;
1424
1425 // X > Y && Y == 0 --> Y == 0 iff X != 0
1426 // X > Y || Y == 0 --> X > Y iff X != 0
1427 if (UnsignedPred == ICmpInst::ICMP_UGT && EqPred == ICmpInst::ICMP_EQ &&
Roman Lebedev00c1ee42019-09-11 15:32:46 +00001428 isKnownNonZero(X, Q.DL, /*Depth=*/0, Q.AC, Q.CxtI, Q.DT))
Roman Lebedev6e2c5c82019-09-08 20:14:15 +00001429 return IsAnd ? ZeroICmp : UnsignedICmp;
1430
David Majnemer1af36e52014-12-06 10:51:40 +00001431 // X >= Y || Y != 0 --> true
1432 // X >= Y || Y == 0 --> X >= Y
1433 if (UnsignedPred == ICmpInst::ICMP_UGE && !IsAnd) {
1434 if (EqPred == ICmpInst::ICMP_NE)
1435 return getTrue(UnsignedICmp->getType());
1436 return UnsignedICmp;
1437 }
1438
David Majnemerd5b3aa42014-12-08 18:30:43 +00001439 // X < Y && Y == 0 --> false
1440 if (UnsignedPred == ICmpInst::ICMP_ULT && EqPred == ICmpInst::ICMP_EQ &&
1441 IsAnd)
1442 return getFalse(UnsignedICmp->getType());
1443
David Majnemer1af36e52014-12-06 10:51:40 +00001444 return nullptr;
1445}
1446
Sanjay Patel9b1b2de2016-12-06 19:05:46 +00001447/// Commuted variants are assumed to be handled by calling this function again
1448/// with the parameters swapped.
1449static Value *simplifyAndOfICmpsWithSameOperands(ICmpInst *Op0, ICmpInst *Op1) {
1450 ICmpInst::Predicate Pred0, Pred1;
1451 Value *A ,*B;
Sanjay Patel53697752016-12-06 22:09:52 +00001452 if (!match(Op0, m_ICmp(Pred0, m_Value(A), m_Value(B))) ||
1453 !match(Op1, m_ICmp(Pred1, m_Specific(A), m_Specific(B))))
Sanjay Patel9b1b2de2016-12-06 19:05:46 +00001454 return nullptr;
1455
1456 // We have (icmp Pred0, A, B) & (icmp Pred1, A, B).
1457 // If Op1 is always implied true by Op0, then Op0 is a subset of Op1, and we
1458 // can eliminate Op1 from this 'and'.
1459 if (ICmpInst::isImpliedTrueByMatchingCmp(Pred0, Pred1))
1460 return Op0;
1461
1462 // Check for any combination of predicates that are guaranteed to be disjoint.
1463 if ((Pred0 == ICmpInst::getInversePredicate(Pred1)) ||
1464 (Pred0 == ICmpInst::ICMP_EQ && ICmpInst::isFalseWhenEqual(Pred1)) ||
1465 (Pred0 == ICmpInst::ICMP_SLT && Pred1 == ICmpInst::ICMP_SGT) ||
1466 (Pred0 == ICmpInst::ICMP_ULT && Pred1 == ICmpInst::ICMP_UGT))
1467 return getFalse(Op0->getType());
1468
1469 return nullptr;
1470}
1471
1472/// Commuted variants are assumed to be handled by calling this function again
1473/// with the parameters swapped.
Sanjay Patel142cb832017-05-04 18:19:17 +00001474static Value *simplifyOrOfICmpsWithSameOperands(ICmpInst *Op0, ICmpInst *Op1) {
1475 ICmpInst::Predicate Pred0, Pred1;
1476 Value *A ,*B;
1477 if (!match(Op0, m_ICmp(Pred0, m_Value(A), m_Value(B))) ||
1478 !match(Op1, m_ICmp(Pred1, m_Specific(A), m_Specific(B))))
1479 return nullptr;
1480
1481 // We have (icmp Pred0, A, B) | (icmp Pred1, A, B).
1482 // If Op1 is always implied true by Op0, then Op0 is a subset of Op1, and we
1483 // can eliminate Op0 from this 'or'.
1484 if (ICmpInst::isImpliedTrueByMatchingCmp(Pred0, Pred1))
1485 return Op1;
1486
1487 // Check for any combination of predicates that cover the entire range of
1488 // possibilities.
1489 if ((Pred0 == ICmpInst::getInversePredicate(Pred1)) ||
1490 (Pred0 == ICmpInst::ICMP_NE && ICmpInst::isTrueWhenEqual(Pred1)) ||
1491 (Pred0 == ICmpInst::ICMP_SLE && Pred1 == ICmpInst::ICMP_SGE) ||
1492 (Pred0 == ICmpInst::ICMP_ULE && Pred1 == ICmpInst::ICMP_UGE))
1493 return getTrue(Op0->getType());
1494
1495 return nullptr;
1496}
1497
Sanjay Patel599e65b2017-05-07 15:11:40 +00001498/// Test if a pair of compares with a shared operand and 2 constants has an
1499/// empty set intersection, full set union, or if one compare is a superset of
1500/// the other.
1501static Value *simplifyAndOrOfICmpsWithConstants(ICmpInst *Cmp0, ICmpInst *Cmp1,
1502 bool IsAnd) {
1503 // Look for this pattern: {and/or} (icmp X, C0), (icmp X, C1)).
1504 if (Cmp0->getOperand(0) != Cmp1->getOperand(0))
1505 return nullptr;
1506
1507 const APInt *C0, *C1;
1508 if (!match(Cmp0->getOperand(1), m_APInt(C0)) ||
1509 !match(Cmp1->getOperand(1), m_APInt(C1)))
1510 return nullptr;
1511
1512 auto Range0 = ConstantRange::makeExactICmpRegion(Cmp0->getPredicate(), *C0);
1513 auto Range1 = ConstantRange::makeExactICmpRegion(Cmp1->getPredicate(), *C1);
1514
Sanjay Patel67454472017-05-08 16:35:02 +00001515 // For and-of-compares, check if the intersection is empty:
Sanjay Patel599e65b2017-05-07 15:11:40 +00001516 // (icmp X, C0) && (icmp X, C1) --> empty set --> false
1517 if (IsAnd && Range0.intersectWith(Range1).isEmptySet())
1518 return getFalse(Cmp0->getType());
1519
1520 // For or-of-compares, check if the union is full:
1521 // (icmp X, C0) || (icmp X, C1) --> full set --> true
1522 if (!IsAnd && Range0.unionWith(Range1).isFullSet())
1523 return getTrue(Cmp0->getType());
1524
1525 // Is one range a superset of the other?
1526 // If this is and-of-compares, take the smaller set:
1527 // (icmp sgt X, 4) && (icmp sgt X, 42) --> icmp sgt X, 42
1528 // If this is or-of-compares, take the larger set:
1529 // (icmp sgt X, 4) || (icmp sgt X, 42) --> icmp sgt X, 4
1530 if (Range0.contains(Range1))
1531 return IsAnd ? Cmp1 : Cmp0;
1532 if (Range1.contains(Range0))
1533 return IsAnd ? Cmp0 : Cmp1;
1534
1535 return nullptr;
1536}
1537
Sanjay Patel6ef6aa92018-01-11 23:27:37 +00001538static Value *simplifyAndOrOfICmpsWithZero(ICmpInst *Cmp0, ICmpInst *Cmp1,
1539 bool IsAnd) {
1540 ICmpInst::Predicate P0 = Cmp0->getPredicate(), P1 = Cmp1->getPredicate();
1541 if (!match(Cmp0->getOperand(1), m_Zero()) ||
1542 !match(Cmp1->getOperand(1), m_Zero()) || P0 != P1)
1543 return nullptr;
1544
1545 if ((IsAnd && P0 != ICmpInst::ICMP_NE) || (!IsAnd && P1 != ICmpInst::ICMP_EQ))
1546 return nullptr;
1547
Sanjay Patel4158eff2018-01-13 15:44:44 +00001548 // We have either "(X == 0 || Y == 0)" or "(X != 0 && Y != 0)".
Sanjay Patel6ef6aa92018-01-11 23:27:37 +00001549 Value *X = Cmp0->getOperand(0);
1550 Value *Y = Cmp1->getOperand(0);
1551
1552 // If one of the compares is a masked version of a (not) null check, then
Sanjay Patel4158eff2018-01-13 15:44:44 +00001553 // that compare implies the other, so we eliminate the other. Optionally, look
1554 // through a pointer-to-int cast to match a null check of a pointer type.
Sanjay Patel6ef6aa92018-01-11 23:27:37 +00001555
Sanjay Patel9568f422018-01-14 15:58:18 +00001556 // (X == 0) || (([ptrtoint] X & ?) == 0) --> ([ptrtoint] X & ?) == 0
1557 // (X == 0) || ((? & [ptrtoint] X) == 0) --> (? & [ptrtoint] X) == 0
1558 // (X != 0) && (([ptrtoint] X & ?) != 0) --> ([ptrtoint] X & ?) != 0
1559 // (X != 0) && ((? & [ptrtoint] X) != 0) --> (? & [ptrtoint] X) != 0
Sanjay Patel4158eff2018-01-13 15:44:44 +00001560 if (match(Y, m_c_And(m_Specific(X), m_Value())) ||
1561 match(Y, m_c_And(m_PtrToInt(m_Specific(X)), m_Value())))
Sanjay Patel6ef6aa92018-01-11 23:27:37 +00001562 return Cmp1;
1563
Sanjay Patel9568f422018-01-14 15:58:18 +00001564 // (([ptrtoint] Y & ?) == 0) || (Y == 0) --> ([ptrtoint] Y & ?) == 0
1565 // ((? & [ptrtoint] Y) == 0) || (Y == 0) --> (? & [ptrtoint] Y) == 0
1566 // (([ptrtoint] Y & ?) != 0) && (Y != 0) --> ([ptrtoint] Y & ?) != 0
1567 // ((? & [ptrtoint] Y) != 0) && (Y != 0) --> (? & [ptrtoint] Y) != 0
Sanjay Patel4158eff2018-01-13 15:44:44 +00001568 if (match(X, m_c_And(m_Specific(Y), m_Value())) ||
1569 match(X, m_c_And(m_PtrToInt(m_Specific(Y)), m_Value())))
Sanjay Patel6ef6aa92018-01-11 23:27:37 +00001570 return Cmp0;
1571
1572 return nullptr;
1573}
1574
Florian Hahn19f9e322018-08-17 14:39:04 +00001575static Value *simplifyAndOfICmpsWithAdd(ICmpInst *Op0, ICmpInst *Op1,
1576 const InstrInfoQuery &IIQ) {
Sanjay Patel599e65b2017-05-07 15:11:40 +00001577 // (icmp (add V, C0), C1) & (icmp V, C0)
Sanjay Patelb2332e12016-09-20 14:36:14 +00001578 ICmpInst::Predicate Pred0, Pred1;
Sanjay Patel9ad8fb62016-06-20 20:59:59 +00001579 const APInt *C0, *C1;
Sanjay Patelb2332e12016-09-20 14:36:14 +00001580 Value *V;
Sanjay Patel1b312ad2016-09-28 13:53:13 +00001581 if (!match(Op0, m_ICmp(Pred0, m_Add(m_Value(V), m_APInt(C0)), m_APInt(C1))))
Sanjay Patelf8ee0e02016-06-19 17:20:27 +00001582 return nullptr;
David Majnemera315bd82014-09-15 08:15:28 +00001583
Sanjay Patel1b312ad2016-09-28 13:53:13 +00001584 if (!match(Op1, m_ICmp(Pred1, m_Specific(V), m_Value())))
David Majnemera315bd82014-09-15 08:15:28 +00001585 return nullptr;
1586
Florian Hahn19f9e322018-08-17 14:39:04 +00001587 auto *AddInst = cast<OverflowingBinaryOperator>(Op0->getOperand(0));
Sanjay Patel1b312ad2016-09-28 13:53:13 +00001588 if (AddInst->getOperand(1) != Op1->getOperand(1))
1589 return nullptr;
1590
Craig Topper9bce1ad2017-05-26 19:04:02 +00001591 Type *ITy = Op0->getType();
Florian Hahn19f9e322018-08-17 14:39:04 +00001592 bool isNSW = IIQ.hasNoSignedWrap(AddInst);
1593 bool isNUW = IIQ.hasNoUnsignedWrap(AddInst);
David Majnemera315bd82014-09-15 08:15:28 +00001594
Sanjay Patel1b312ad2016-09-28 13:53:13 +00001595 const APInt Delta = *C1 - *C0;
1596 if (C0->isStrictlyPositive()) {
David Majnemera315bd82014-09-15 08:15:28 +00001597 if (Delta == 2) {
1598 if (Pred0 == ICmpInst::ICMP_ULT && Pred1 == ICmpInst::ICMP_SGT)
1599 return getFalse(ITy);
1600 if (Pred0 == ICmpInst::ICMP_SLT && Pred1 == ICmpInst::ICMP_SGT && isNSW)
1601 return getFalse(ITy);
1602 }
1603 if (Delta == 1) {
1604 if (Pred0 == ICmpInst::ICMP_ULE && Pred1 == ICmpInst::ICMP_SGT)
1605 return getFalse(ITy);
1606 if (Pred0 == ICmpInst::ICMP_SLE && Pred1 == ICmpInst::ICMP_SGT && isNSW)
1607 return getFalse(ITy);
1608 }
1609 }
Sanjay Patel1b312ad2016-09-28 13:53:13 +00001610 if (C0->getBoolValue() && isNUW) {
David Majnemera315bd82014-09-15 08:15:28 +00001611 if (Delta == 2)
1612 if (Pred0 == ICmpInst::ICMP_ULT && Pred1 == ICmpInst::ICMP_UGT)
1613 return getFalse(ITy);
1614 if (Delta == 1)
1615 if (Pred0 == ICmpInst::ICMP_ULE && Pred1 == ICmpInst::ICMP_UGT)
1616 return getFalse(ITy);
1617 }
1618
1619 return nullptr;
1620}
1621
Florian Hahn19f9e322018-08-17 14:39:04 +00001622static Value *simplifyAndOfICmps(ICmpInst *Op0, ICmpInst *Op1,
Roman Lebedev00c1ee42019-09-11 15:32:46 +00001623 const SimplifyQuery &Q) {
1624 if (Value *X = simplifyUnsignedRangeCheck(Op0, Op1, /*IsAnd=*/true, Q))
Craig Topper348314d2017-05-26 22:42:34 +00001625 return X;
Roman Lebedev00c1ee42019-09-11 15:32:46 +00001626 if (Value *X = simplifyUnsignedRangeCheck(Op1, Op0, /*IsAnd=*/true, Q))
Sanjay Patel142cb832017-05-04 18:19:17 +00001627 return X;
1628
Craig Topper348314d2017-05-26 22:42:34 +00001629 if (Value *X = simplifyAndOfICmpsWithSameOperands(Op0, Op1))
1630 return X;
1631 if (Value *X = simplifyAndOfICmpsWithSameOperands(Op1, Op0))
Sanjay Patel142cb832017-05-04 18:19:17 +00001632 return X;
1633
Craig Topper348314d2017-05-26 22:42:34 +00001634 if (Value *X = simplifyAndOrOfICmpsWithConstants(Op0, Op1, true))
Sanjay Patel599e65b2017-05-07 15:11:40 +00001635 return X;
1636
Sanjay Patel6ef6aa92018-01-11 23:27:37 +00001637 if (Value *X = simplifyAndOrOfICmpsWithZero(Op0, Op1, true))
1638 return X;
1639
Roman Lebedev00c1ee42019-09-11 15:32:46 +00001640 if (Value *X = simplifyAndOfICmpsWithAdd(Op0, Op1, Q.IIQ))
Craig Topper348314d2017-05-26 22:42:34 +00001641 return X;
Roman Lebedev00c1ee42019-09-11 15:32:46 +00001642 if (Value *X = simplifyAndOfICmpsWithAdd(Op1, Op0, Q.IIQ))
Craig Topper348314d2017-05-26 22:42:34 +00001643 return X;
1644
1645 return nullptr;
1646}
1647
Florian Hahn19f9e322018-08-17 14:39:04 +00001648static Value *simplifyOrOfICmpsWithAdd(ICmpInst *Op0, ICmpInst *Op1,
1649 const InstrInfoQuery &IIQ) {
Sanjay Patel142cb832017-05-04 18:19:17 +00001650 // (icmp (add V, C0), C1) | (icmp V, C0)
1651 ICmpInst::Predicate Pred0, Pred1;
1652 const APInt *C0, *C1;
1653 Value *V;
1654 if (!match(Op0, m_ICmp(Pred0, m_Add(m_Value(V), m_APInt(C0)), m_APInt(C1))))
1655 return nullptr;
1656
1657 if (!match(Op1, m_ICmp(Pred1, m_Specific(V), m_Value())))
1658 return nullptr;
1659
1660 auto *AddInst = cast<BinaryOperator>(Op0->getOperand(0));
1661 if (AddInst->getOperand(1) != Op1->getOperand(1))
1662 return nullptr;
1663
1664 Type *ITy = Op0->getType();
Florian Hahn19f9e322018-08-17 14:39:04 +00001665 bool isNSW = IIQ.hasNoSignedWrap(AddInst);
1666 bool isNUW = IIQ.hasNoUnsignedWrap(AddInst);
Sanjay Patel142cb832017-05-04 18:19:17 +00001667
1668 const APInt Delta = *C1 - *C0;
1669 if (C0->isStrictlyPositive()) {
1670 if (Delta == 2) {
1671 if (Pred0 == ICmpInst::ICMP_UGE && Pred1 == ICmpInst::ICMP_SLE)
1672 return getTrue(ITy);
1673 if (Pred0 == ICmpInst::ICMP_SGE && Pred1 == ICmpInst::ICMP_SLE && isNSW)
1674 return getTrue(ITy);
1675 }
1676 if (Delta == 1) {
1677 if (Pred0 == ICmpInst::ICMP_UGT && Pred1 == ICmpInst::ICMP_SLE)
1678 return getTrue(ITy);
1679 if (Pred0 == ICmpInst::ICMP_SGT && Pred1 == ICmpInst::ICMP_SLE && isNSW)
1680 return getTrue(ITy);
1681 }
1682 }
1683 if (C0->getBoolValue() && isNUW) {
1684 if (Delta == 2)
1685 if (Pred0 == ICmpInst::ICMP_UGE && Pred1 == ICmpInst::ICMP_ULE)
1686 return getTrue(ITy);
1687 if (Delta == 1)
1688 if (Pred0 == ICmpInst::ICMP_UGT && Pred1 == ICmpInst::ICMP_ULE)
1689 return getTrue(ITy);
1690 }
1691
1692 return nullptr;
1693}
1694
Florian Hahn19f9e322018-08-17 14:39:04 +00001695static Value *simplifyOrOfICmps(ICmpInst *Op0, ICmpInst *Op1,
Roman Lebedev00c1ee42019-09-11 15:32:46 +00001696 const SimplifyQuery &Q) {
1697 if (Value *X = simplifyUnsignedRangeCheck(Op0, Op1, /*IsAnd=*/false, Q))
Craig Topper348314d2017-05-26 22:42:34 +00001698 return X;
Roman Lebedev00c1ee42019-09-11 15:32:46 +00001699 if (Value *X = simplifyUnsignedRangeCheck(Op1, Op0, /*IsAnd=*/false, Q))
Craig Topper348314d2017-05-26 22:42:34 +00001700 return X;
Sanjay Patele42b4d52017-05-04 19:51:34 +00001701
Craig Topper348314d2017-05-26 22:42:34 +00001702 if (Value *X = simplifyOrOfICmpsWithSameOperands(Op0, Op1))
1703 return X;
1704 if (Value *X = simplifyOrOfICmpsWithSameOperands(Op1, Op0))
1705 return X;
1706
1707 if (Value *X = simplifyAndOrOfICmpsWithConstants(Op0, Op1, false))
1708 return X;
1709
Sanjay Patel6ef6aa92018-01-11 23:27:37 +00001710 if (Value *X = simplifyAndOrOfICmpsWithZero(Op0, Op1, false))
1711 return X;
1712
Roman Lebedev00c1ee42019-09-11 15:32:46 +00001713 if (Value *X = simplifyOrOfICmpsWithAdd(Op0, Op1, Q.IIQ))
Craig Topper348314d2017-05-26 22:42:34 +00001714 return X;
Roman Lebedev00c1ee42019-09-11 15:32:46 +00001715 if (Value *X = simplifyOrOfICmpsWithAdd(Op1, Op0, Q.IIQ))
Craig Topper348314d2017-05-26 22:42:34 +00001716 return X;
Sanjay Patele42b4d52017-05-04 19:51:34 +00001717
1718 return nullptr;
1719}
1720
Matt Arsenaultd54b7f02018-08-09 22:40:08 +00001721static Value *simplifyAndOrOfFCmps(const TargetLibraryInfo *TLI,
1722 FCmpInst *LHS, FCmpInst *RHS, bool IsAnd) {
Sanjay Pateleb731b02017-11-19 15:34:27 +00001723 Value *LHS0 = LHS->getOperand(0), *LHS1 = LHS->getOperand(1);
1724 Value *RHS0 = RHS->getOperand(0), *RHS1 = RHS->getOperand(1);
1725 if (LHS0->getType() != RHS0->getType())
1726 return nullptr;
1727
1728 FCmpInst::Predicate PredL = LHS->getPredicate(), PredR = RHS->getPredicate();
1729 if ((PredL == FCmpInst::FCMP_ORD && PredR == FCmpInst::FCMP_ORD && IsAnd) ||
1730 (PredL == FCmpInst::FCMP_UNO && PredR == FCmpInst::FCMP_UNO && !IsAnd)) {
1731 // (fcmp ord NNAN, X) & (fcmp ord X, Y) --> fcmp ord X, Y
1732 // (fcmp ord NNAN, X) & (fcmp ord Y, X) --> fcmp ord Y, X
1733 // (fcmp ord X, NNAN) & (fcmp ord X, Y) --> fcmp ord X, Y
1734 // (fcmp ord X, NNAN) & (fcmp ord Y, X) --> fcmp ord Y, X
1735 // (fcmp uno NNAN, X) | (fcmp uno X, Y) --> fcmp uno X, Y
1736 // (fcmp uno NNAN, X) | (fcmp uno Y, X) --> fcmp uno Y, X
1737 // (fcmp uno X, NNAN) | (fcmp uno X, Y) --> fcmp uno X, Y
1738 // (fcmp uno X, NNAN) | (fcmp uno Y, X) --> fcmp uno Y, X
Matt Arsenaultd54b7f02018-08-09 22:40:08 +00001739 if ((isKnownNeverNaN(LHS0, TLI) && (LHS1 == RHS0 || LHS1 == RHS1)) ||
1740 (isKnownNeverNaN(LHS1, TLI) && (LHS0 == RHS0 || LHS0 == RHS1)))
Sanjay Pateleb731b02017-11-19 15:34:27 +00001741 return RHS;
1742
1743 // (fcmp ord X, Y) & (fcmp ord NNAN, X) --> fcmp ord X, Y
1744 // (fcmp ord Y, X) & (fcmp ord NNAN, X) --> fcmp ord Y, X
1745 // (fcmp ord X, Y) & (fcmp ord X, NNAN) --> fcmp ord X, Y
1746 // (fcmp ord Y, X) & (fcmp ord X, NNAN) --> fcmp ord Y, X
1747 // (fcmp uno X, Y) | (fcmp uno NNAN, X) --> fcmp uno X, Y
1748 // (fcmp uno Y, X) | (fcmp uno NNAN, X) --> fcmp uno Y, X
1749 // (fcmp uno X, Y) | (fcmp uno X, NNAN) --> fcmp uno X, Y
1750 // (fcmp uno Y, X) | (fcmp uno X, NNAN) --> fcmp uno Y, X
Matt Arsenaultd54b7f02018-08-09 22:40:08 +00001751 if ((isKnownNeverNaN(RHS0, TLI) && (RHS1 == LHS0 || RHS1 == LHS1)) ||
1752 (isKnownNeverNaN(RHS1, TLI) && (RHS0 == LHS0 || RHS0 == LHS1)))
Sanjay Pateleb731b02017-11-19 15:34:27 +00001753 return LHS;
1754 }
1755
1756 return nullptr;
1757}
1758
Florian Hahn19f9e322018-08-17 14:39:04 +00001759static Value *simplifyAndOrOfCmps(const SimplifyQuery &Q,
Matt Arsenaultd54b7f02018-08-09 22:40:08 +00001760 Value *Op0, Value *Op1, bool IsAnd) {
Sanjay Patele42b4d52017-05-04 19:51:34 +00001761 // Look through casts of the 'and' operands to find compares.
1762 auto *Cast0 = dyn_cast<CastInst>(Op0);
1763 auto *Cast1 = dyn_cast<CastInst>(Op1);
1764 if (Cast0 && Cast1 && Cast0->getOpcode() == Cast1->getOpcode() &&
1765 Cast0->getSrcTy() == Cast1->getSrcTy()) {
1766 Op0 = Cast0->getOperand(0);
1767 Op1 = Cast1->getOperand(0);
1768 }
1769
Sanjay Pateleb731b02017-11-19 15:34:27 +00001770 Value *V = nullptr;
1771 auto *ICmp0 = dyn_cast<ICmpInst>(Op0);
1772 auto *ICmp1 = dyn_cast<ICmpInst>(Op1);
1773 if (ICmp0 && ICmp1)
Roman Lebedev00c1ee42019-09-11 15:32:46 +00001774 V = IsAnd ? simplifyAndOfICmps(ICmp0, ICmp1, Q)
1775 : simplifyOrOfICmps(ICmp0, ICmp1, Q);
Sanjay Patele42b4d52017-05-04 19:51:34 +00001776
Sanjay Pateleb731b02017-11-19 15:34:27 +00001777 auto *FCmp0 = dyn_cast<FCmpInst>(Op0);
1778 auto *FCmp1 = dyn_cast<FCmpInst>(Op1);
1779 if (FCmp0 && FCmp1)
Florian Hahn19f9e322018-08-17 14:39:04 +00001780 V = simplifyAndOrOfFCmps(Q.TLI, FCmp0, FCmp1, IsAnd);
Sanjay Pateleb731b02017-11-19 15:34:27 +00001781
Craig Topper348314d2017-05-26 22:42:34 +00001782 if (!V)
1783 return nullptr;
1784 if (!Cast0)
Sanjay Patele42b4d52017-05-04 19:51:34 +00001785 return V;
Craig Topper348314d2017-05-26 22:42:34 +00001786
1787 // If we looked through casts, we can only handle a constant simplification
1788 // because we are not allowed to create a cast instruction here.
1789 if (auto *C = dyn_cast<Constant>(V))
1790 return ConstantExpr::getCast(Cast0->getOpcode(), C, Cast0->getType());
Sanjay Patele42b4d52017-05-04 19:51:34 +00001791
1792 return nullptr;
1793}
1794
Roman Lebedevc5847862019-08-29 12:48:04 +00001795/// Check that the Op1 is in expected form, i.e.:
1796/// %Agg = tail call { i4, i1 } @llvm.[us]mul.with.overflow.i4(i4 %X, i4 %???)
1797/// %Op1 = extractvalue { i4, i1 } %Agg, 1
1798static bool omitCheckForZeroBeforeMulWithOverflowInternal(Value *Op1,
1799 Value *X) {
1800 auto *Extract = dyn_cast<ExtractValueInst>(Op1);
1801 // We should only be extracting the overflow bit.
1802 if (!Extract || !Extract->getIndices().equals(1))
1803 return false;
1804 Value *Agg = Extract->getAggregateOperand();
1805 // This should be a multiplication-with-overflow intrinsic.
1806 if (!match(Agg, m_CombineOr(m_Intrinsic<Intrinsic::umul_with_overflow>(),
1807 m_Intrinsic<Intrinsic::smul_with_overflow>())))
1808 return false;
1809 // One of its multipliers should be the value we checked for zero before.
1810 if (!match(Agg, m_CombineOr(m_Argument<0>(m_Specific(X)),
1811 m_Argument<1>(m_Specific(X)))))
1812 return false;
1813 return true;
1814}
1815
Roman Lebedevaaf6ab42019-08-29 12:47:50 +00001816/// The @llvm.[us]mul.with.overflow intrinsic could have been folded from some
1817/// other form of check, e.g. one that was using division; it may have been
1818/// guarded against division-by-zero. We can drop that check now.
1819/// Look for:
1820/// %Op0 = icmp ne i4 %X, 0
1821/// %Agg = tail call { i4, i1 } @llvm.[us]mul.with.overflow.i4(i4 %X, i4 %???)
1822/// %Op1 = extractvalue { i4, i1 } %Agg, 1
1823/// %??? = and i1 %Op0, %Op1
1824/// We can just return %Op1
1825static Value *omitCheckForZeroBeforeMulWithOverflow(Value *Op0, Value *Op1) {
1826 ICmpInst::Predicate Pred;
1827 Value *X;
1828 if (!match(Op0, m_ICmp(Pred, m_Value(X), m_Zero())) ||
1829 Pred != ICmpInst::Predicate::ICMP_NE)
1830 return nullptr;
Roman Lebedevc5847862019-08-29 12:48:04 +00001831 // Is Op1 in expected form?
1832 if (!omitCheckForZeroBeforeMulWithOverflowInternal(Op1, X))
Roman Lebedevaaf6ab42019-08-29 12:47:50 +00001833 return nullptr;
1834 // Can omit 'and', and just return the overflow bit.
1835 return Op1;
1836}
1837
Roman Lebedevc5847862019-08-29 12:48:04 +00001838/// The @llvm.[us]mul.with.overflow intrinsic could have been folded from some
1839/// other form of check, e.g. one that was using division; it may have been
1840/// guarded against division-by-zero. We can drop that check now.
1841/// Look for:
1842/// %Op0 = icmp eq i4 %X, 0
1843/// %Agg = tail call { i4, i1 } @llvm.[us]mul.with.overflow.i4(i4 %X, i4 %???)
1844/// %Op1 = extractvalue { i4, i1 } %Agg, 1
1845/// %NotOp1 = xor i1 %Op1, true
1846/// %or = or i1 %Op0, %NotOp1
1847/// We can just return %NotOp1
1848static Value *omitCheckForZeroBeforeInvertedMulWithOverflow(Value *Op0,
1849 Value *NotOp1) {
1850 ICmpInst::Predicate Pred;
1851 Value *X;
1852 if (!match(Op0, m_ICmp(Pred, m_Value(X), m_Zero())) ||
1853 Pred != ICmpInst::Predicate::ICMP_EQ)
1854 return nullptr;
1855 // We expect the other hand of an 'or' to be a 'not'.
1856 Value *Op1;
1857 if (!match(NotOp1, m_Not(m_Value(Op1))))
1858 return nullptr;
1859 // Is Op1 in expected form?
1860 if (!omitCheckForZeroBeforeMulWithOverflowInternal(Op1, X))
1861 return nullptr;
1862 // Can omit 'and', and just return the inverted overflow bit.
1863 return NotOp1;
1864}
1865
Sanjay Patel472cc782016-01-11 22:14:42 +00001866/// Given operands for an And, see if we can fold the result.
1867/// If not, this returns null.
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00001868static Value *SimplifyAndInst(Value *Op0, Value *Op1, const SimplifyQuery &Q,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001869 unsigned MaxRecurse) {
Sanjay Patel8b5ad3f2017-04-01 19:05:11 +00001870 if (Constant *C = foldOrCommuteConstant(Instruction::And, Op0, Op1, Q))
1871 return C;
Duncan Sands7e800d62010-11-14 11:23:23 +00001872
Chris Lattnera71e9d62009-11-10 00:55:12 +00001873 // X & undef -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001874 if (match(Op1, m_Undef()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001875 return Constant::getNullValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001876
Chris Lattnera71e9d62009-11-10 00:55:12 +00001877 // X & X = X
Duncan Sands772749a2011-01-01 20:08:02 +00001878 if (Op0 == Op1)
Chris Lattnera71e9d62009-11-10 00:55:12 +00001879 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001880
Duncan Sandsc89ac072010-11-17 18:52:15 +00001881 // X & 0 = 0
1882 if (match(Op1, m_Zero()))
Sanjay Patel30be6652018-04-22 17:07:44 +00001883 return Constant::getNullValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001884
Duncan Sandsc89ac072010-11-17 18:52:15 +00001885 // X & -1 = X
1886 if (match(Op1, m_AllOnes()))
1887 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001888
Chris Lattnera71e9d62009-11-10 00:55:12 +00001889 // A & ~A = ~A & A = 0
Chris Lattner9e4aa022011-02-09 17:15:04 +00001890 if (match(Op0, m_Not(m_Specific(Op1))) ||
1891 match(Op1, m_Not(m_Specific(Op0))))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001892 return Constant::getNullValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001893
Chris Lattnera71e9d62009-11-10 00:55:12 +00001894 // (A | ?) & A = A
Craig Topperdad7d8d2017-07-16 06:57:41 +00001895 if (match(Op0, m_c_Or(m_Specific(Op1), m_Value())))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001896 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001897
Chris Lattnera71e9d62009-11-10 00:55:12 +00001898 // A & (A | ?) = A
Craig Topperdad7d8d2017-07-16 06:57:41 +00001899 if (match(Op1, m_c_Or(m_Specific(Op0), m_Value())))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001900 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001901
Sanjay Patel877364f2017-05-16 21:51:04 +00001902 // A mask that only clears known zeros of a shifted value is a no-op.
1903 Value *X;
1904 const APInt *Mask;
1905 const APInt *ShAmt;
1906 if (match(Op1, m_APInt(Mask))) {
1907 // If all bits in the inverted and shifted mask are clear:
1908 // and (shl X, ShAmt), Mask --> shl X, ShAmt
1909 if (match(Op0, m_Shl(m_Value(X), m_APInt(ShAmt))) &&
1910 (~(*Mask)).lshr(*ShAmt).isNullValue())
1911 return Op0;
1912
1913 // If all bits in the inverted and shifted mask are clear:
1914 // and (lshr X, ShAmt), Mask --> lshr X, ShAmt
1915 if (match(Op0, m_LShr(m_Value(X), m_APInt(ShAmt))) &&
1916 (~(*Mask)).shl(*ShAmt).isNullValue())
1917 return Op0;
1918 }
1919
Roman Lebedevaaf6ab42019-08-29 12:47:50 +00001920 // If we have a multiplication overflow check that is being 'and'ed with a
1921 // check that one of the multipliers is not zero, we can omit the 'and', and
1922 // only keep the overflow check.
1923 if (Value *V = omitCheckForZeroBeforeMulWithOverflow(Op0, Op1))
1924 return V;
1925 if (Value *V = omitCheckForZeroBeforeMulWithOverflow(Op1, Op0))
1926 return V;
1927
Duncan Sandsba286d72011-10-26 20:55:21 +00001928 // A & (-A) = A if A is a power of two or zero.
1929 if (match(Op0, m_Neg(m_Specific(Op1))) ||
1930 match(Op1, m_Neg(m_Specific(Op0)))) {
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001931 if (isKnownToBeAPowerOfTwo(Op0, Q.DL, /*OrZero*/ true, 0, Q.AC, Q.CxtI,
1932 Q.DT))
Duncan Sandsba286d72011-10-26 20:55:21 +00001933 return Op0;
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001934 if (isKnownToBeAPowerOfTwo(Op1, Q.DL, /*OrZero*/ true, 0, Q.AC, Q.CxtI,
1935 Q.DT))
Duncan Sandsba286d72011-10-26 20:55:21 +00001936 return Op1;
1937 }
1938
Sanjay Patelb342f022019-06-20 22:55:28 +00001939 // This is a similar pattern used for checking if a value is a power-of-2:
1940 // (A - 1) & A --> 0 (if A is a power-of-2 or 0)
1941 // A & (A - 1) --> 0 (if A is a power-of-2 or 0)
1942 if (match(Op0, m_Add(m_Specific(Op1), m_AllOnes())) &&
1943 isKnownToBeAPowerOfTwo(Op1, Q.DL, /*OrZero*/ true, 0, Q.AC, Q.CxtI, Q.DT))
1944 return Constant::getNullValue(Op1->getType());
1945 if (match(Op1, m_Add(m_Specific(Op0), m_AllOnes())) &&
1946 isKnownToBeAPowerOfTwo(Op0, Q.DL, /*OrZero*/ true, 0, Q.AC, Q.CxtI, Q.DT))
1947 return Constant::getNullValue(Op0->getType());
1948
Florian Hahn19f9e322018-08-17 14:39:04 +00001949 if (Value *V = simplifyAndOrOfCmps(Q, Op0, Op1, true))
Sanjay Patele42b4d52017-05-04 19:51:34 +00001950 return V;
Sanjay Patel9ad8fb62016-06-20 20:59:59 +00001951
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001952 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001953 if (Value *V = SimplifyAssociativeBinOp(Instruction::And, Op0, Op1, Q,
1954 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001955 return V;
Benjamin Kramer8c35fb02010-09-10 22:39:55 +00001956
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001957 // And distributes over Or. Try some generic simplifications based on this.
1958 if (Value *V = ExpandBinOp(Instruction::And, Op0, Op1, Instruction::Or,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001959 Q, MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001960 return V;
1961
1962 // And distributes over Xor. Try some generic simplifications based on this.
1963 if (Value *V = ExpandBinOp(Instruction::And, Op0, Op1, Instruction::Xor,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001964 Q, MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001965 return V;
1966
Duncan Sandsb0579e92010-11-10 13:00:08 +00001967 // If the operation is with the result of a select instruction, check whether
1968 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001969 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001970 if (Value *V = ThreadBinOpOverSelect(Instruction::And, Op0, Op1, Q,
1971 MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001972 return V;
1973
1974 // If the operation is with the result of a phi instruction, check whether
1975 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001976 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001977 if (Value *V = ThreadBinOpOverPHI(Instruction::And, Op0, Op1, Q,
Duncan Sandsf64e6902010-12-21 09:09:15 +00001978 MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00001979 return V;
1980
Hiroshi Inoue73f8b252018-08-03 05:39:48 +00001981 // Assuming the effective width of Y is not larger than A, i.e. all bits
1982 // from X and Y are disjoint in (X << A) | Y,
1983 // if the mask of this AND op covers all bits of X or Y, while it covers
1984 // no bits from the other, we can bypass this AND op. E.g.,
1985 // ((X << A) | Y) & Mask -> Y,
1986 // if Mask = ((1 << effective_width_of(Y)) - 1)
1987 // ((X << A) | Y) & Mask -> X << A,
1988 // if Mask = ((1 << effective_width_of(X)) - 1) << A
1989 // SimplifyDemandedBits in InstCombine can optimize the general case.
1990 // This pattern aims to help other passes for a common case.
1991 Value *Y, *XShifted;
1992 if (match(Op1, m_APInt(Mask)) &&
1993 match(Op0, m_c_Or(m_CombineAnd(m_NUWShl(m_Value(X), m_APInt(ShAmt)),
1994 m_Value(XShifted)),
1995 m_Value(Y)))) {
Hiroshi Inoue73f8b252018-08-03 05:39:48 +00001996 const unsigned Width = Op0->getType()->getScalarSizeInBits();
Benjamin Kramerbae6aab2018-08-12 11:43:03 +00001997 const unsigned ShftCnt = ShAmt->getLimitedValue(Width);
1998 const KnownBits YKnown = computeKnownBits(Y, Q.DL, 0, Q.AC, Q.CxtI, Q.DT);
Hiroshi Inoue73f8b252018-08-03 05:39:48 +00001999 const unsigned EffWidthY = Width - YKnown.countMinLeadingZeros();
2000 if (EffWidthY <= ShftCnt) {
2001 const KnownBits XKnown = computeKnownBits(X, Q.DL, 0, Q.AC, Q.CxtI,
2002 Q.DT);
2003 const unsigned EffWidthX = Width - XKnown.countMinLeadingZeros();
2004 const APInt EffBitsY = APInt::getLowBitsSet(Width, EffWidthY);
2005 const APInt EffBitsX = APInt::getLowBitsSet(Width, EffWidthX) << ShftCnt;
2006 // If the mask is extracting all bits from X or Y as is, we can skip
2007 // this AND op.
2008 if (EffBitsY.isSubsetOf(*Mask) && !EffBitsX.intersects(*Mask))
2009 return Y;
2010 if (EffBitsX.isSubsetOf(*Mask) && !EffBitsY.intersects(*Mask))
2011 return XShifted;
2012 }
2013 }
2014
Craig Topper9f008862014-04-15 04:59:12 +00002015 return nullptr;
Chris Lattner084a1b52009-11-09 22:57:59 +00002016}
2017
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00002018Value *llvm::SimplifyAndInst(Value *Op0, Value *Op1, const SimplifyQuery &Q) {
2019 return ::SimplifyAndInst(Op0, Op1, Q, RecursionLimit);
2020}
2021
Sanjay Patel472cc782016-01-11 22:14:42 +00002022/// Given operands for an Or, see if we can fold the result.
2023/// If not, this returns null.
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00002024static Value *SimplifyOrInst(Value *Op0, Value *Op1, const SimplifyQuery &Q,
Duncan Sandsb8cee002012-03-13 11:42:19 +00002025 unsigned MaxRecurse) {
Sanjay Patel8b5ad3f2017-04-01 19:05:11 +00002026 if (Constant *C = foldOrCommuteConstant(Instruction::Or, Op0, Op1, Q))
2027 return C;
Duncan Sands7e800d62010-11-14 11:23:23 +00002028
Chris Lattnera71e9d62009-11-10 00:55:12 +00002029 // X | undef -> -1
Sanjay Pateladf6e882018-02-18 18:05:08 +00002030 // X | -1 = -1
2031 // Do not return Op1 because it may contain undef elements if it's a vector.
2032 if (match(Op1, m_Undef()) || match(Op1, m_AllOnes()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00002033 return Constant::getAllOnesValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00002034
Chris Lattnera71e9d62009-11-10 00:55:12 +00002035 // X | X = X
Duncan Sandsc89ac072010-11-17 18:52:15 +00002036 // X | 0 = X
Sanjay Pateladf6e882018-02-18 18:05:08 +00002037 if (Op0 == Op1 || match(Op1, m_Zero()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00002038 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00002039
Chris Lattnera71e9d62009-11-10 00:55:12 +00002040 // A | ~A = ~A | A = -1
Chris Lattner9e4aa022011-02-09 17:15:04 +00002041 if (match(Op0, m_Not(m_Specific(Op1))) ||
2042 match(Op1, m_Not(m_Specific(Op0))))
Chris Lattnera71e9d62009-11-10 00:55:12 +00002043 return Constant::getAllOnesValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00002044
Chris Lattnera71e9d62009-11-10 00:55:12 +00002045 // (A & ?) | A = A
Craig Topperdad7d8d2017-07-16 06:57:41 +00002046 if (match(Op0, m_c_And(m_Specific(Op1), m_Value())))
Chris Lattnera71e9d62009-11-10 00:55:12 +00002047 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00002048
Chris Lattnera71e9d62009-11-10 00:55:12 +00002049 // A | (A & ?) = A
Craig Topperdad7d8d2017-07-16 06:57:41 +00002050 if (match(Op1, m_c_And(m_Specific(Op0), m_Value())))
Chris Lattnera71e9d62009-11-10 00:55:12 +00002051 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00002052
Benjamin Kramer5b7a4e02011-02-20 15:20:01 +00002053 // ~(A & ?) | A = -1
Craig Topperdad7d8d2017-07-16 06:57:41 +00002054 if (match(Op0, m_Not(m_c_And(m_Specific(Op1), m_Value()))))
Benjamin Kramer5b7a4e02011-02-20 15:20:01 +00002055 return Constant::getAllOnesValue(Op1->getType());
2056
2057 // A | ~(A & ?) = -1
Craig Topperdad7d8d2017-07-16 06:57:41 +00002058 if (match(Op1, m_Not(m_c_And(m_Specific(Op1), m_Value()))))
Benjamin Kramer5b7a4e02011-02-20 15:20:01 +00002059 return Constant::getAllOnesValue(Op0->getType());
2060
Craig Topperdad7d8d2017-07-16 06:57:41 +00002061 Value *A, *B;
Sanjay Patel08892252017-04-24 18:24:36 +00002062 // (A & ~B) | (A ^ B) -> (A ^ B)
2063 // (~B & A) | (A ^ B) -> (A ^ B)
Craig Topper0b650d32017-04-25 17:01:32 +00002064 // (A & ~B) | (B ^ A) -> (B ^ A)
2065 // (~B & A) | (B ^ A) -> (B ^ A)
2066 if (match(Op1, m_Xor(m_Value(A), m_Value(B))) &&
2067 (match(Op0, m_c_And(m_Specific(A), m_Not(m_Specific(B)))) ||
2068 match(Op0, m_c_And(m_Not(m_Specific(A)), m_Specific(B)))))
Sanjay Patel08892252017-04-24 18:24:36 +00002069 return Op1;
2070
2071 // Commute the 'or' operands.
2072 // (A ^ B) | (A & ~B) -> (A ^ B)
2073 // (A ^ B) | (~B & A) -> (A ^ B)
Craig Topper0b650d32017-04-25 17:01:32 +00002074 // (B ^ A) | (A & ~B) -> (B ^ A)
2075 // (B ^ A) | (~B & A) -> (B ^ A)
2076 if (match(Op0, m_Xor(m_Value(A), m_Value(B))) &&
2077 (match(Op1, m_c_And(m_Specific(A), m_Not(m_Specific(B)))) ||
2078 match(Op1, m_c_And(m_Not(m_Specific(A)), m_Specific(B)))))
Sanjay Patel08892252017-04-24 18:24:36 +00002079 return Op0;
2080
Craig Topper479daaf2017-05-14 07:54:43 +00002081 // (A & B) | (~A ^ B) -> (~A ^ B)
2082 // (B & A) | (~A ^ B) -> (~A ^ B)
2083 // (A & B) | (B ^ ~A) -> (B ^ ~A)
2084 // (B & A) | (B ^ ~A) -> (B ^ ~A)
2085 if (match(Op0, m_And(m_Value(A), m_Value(B))) &&
2086 (match(Op1, m_c_Xor(m_Specific(A), m_Not(m_Specific(B)))) ||
2087 match(Op1, m_c_Xor(m_Not(m_Specific(A)), m_Specific(B)))))
2088 return Op1;
2089
2090 // (~A ^ B) | (A & B) -> (~A ^ B)
2091 // (~A ^ B) | (B & A) -> (~A ^ B)
2092 // (B ^ ~A) | (A & B) -> (B ^ ~A)
2093 // (B ^ ~A) | (B & A) -> (B ^ ~A)
2094 if (match(Op1, m_And(m_Value(A), m_Value(B))) &&
2095 (match(Op0, m_c_Xor(m_Specific(A), m_Not(m_Specific(B)))) ||
2096 match(Op0, m_c_Xor(m_Not(m_Specific(A)), m_Specific(B)))))
2097 return Op0;
2098
Florian Hahn19f9e322018-08-17 14:39:04 +00002099 if (Value *V = simplifyAndOrOfCmps(Q, Op0, Op1, false))
Sanjay Patele42b4d52017-05-04 19:51:34 +00002100 return V;
David Majnemera315bd82014-09-15 08:15:28 +00002101
Roman Lebedevc5847862019-08-29 12:48:04 +00002102 // If we have a multiplication overflow check that is being 'and'ed with a
2103 // check that one of the multipliers is not zero, we can omit the 'and', and
2104 // only keep the overflow check.
2105 if (Value *V = omitCheckForZeroBeforeInvertedMulWithOverflow(Op0, Op1))
2106 return V;
2107 if (Value *V = omitCheckForZeroBeforeInvertedMulWithOverflow(Op1, Op0))
2108 return V;
2109
Duncan Sands6c7a52c2010-12-21 08:49:00 +00002110 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00002111 if (Value *V = SimplifyAssociativeBinOp(Instruction::Or, Op0, Op1, Q,
2112 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00002113 return V;
Benjamin Kramer8c35fb02010-09-10 22:39:55 +00002114
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00002115 // Or distributes over And. Try some generic simplifications based on this.
Duncan Sandsb8cee002012-03-13 11:42:19 +00002116 if (Value *V = ExpandBinOp(Instruction::Or, Op0, Op1, Instruction::And, Q,
2117 MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00002118 return V;
2119
Duncan Sandsb0579e92010-11-10 13:00:08 +00002120 // If the operation is with the result of a select instruction, check whether
2121 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00002122 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00002123 if (Value *V = ThreadBinOpOverSelect(Instruction::Or, Op0, Op1, Q,
Duncan Sandsf64e6902010-12-21 09:09:15 +00002124 MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00002125 return V;
2126
Craig Topper50500d52017-05-26 05:16:20 +00002127 // (A & C1)|(B & C2)
Craig Topper1da22c32017-05-26 19:03:53 +00002128 const APInt *C1, *C2;
2129 if (match(Op0, m_And(m_Value(A), m_APInt(C1))) &&
2130 match(Op1, m_And(m_Value(B), m_APInt(C2)))) {
2131 if (*C1 == ~*C2) {
Nick Lewycky8561a492014-06-19 03:51:46 +00002132 // (A & C1)|(B & C2)
2133 // If we have: ((V + N) & C1) | (V & C2)
2134 // .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0
2135 // replace with V+N.
Craig Topperc8bebb12017-05-26 19:03:59 +00002136 Value *N;
Craig Topper1da22c32017-05-26 19:03:53 +00002137 if (C2->isMask() && // C2 == 0+1+
Craig Topperc8bebb12017-05-26 19:03:59 +00002138 match(A, m_c_Add(m_Specific(B), m_Value(N)))) {
Nick Lewycky8561a492014-06-19 03:51:46 +00002139 // Add commutes, try both ways.
Craig Topperc8bebb12017-05-26 19:03:59 +00002140 if (MaskedValueIsZero(N, *C2, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00002141 return A;
2142 }
2143 // Or commutes, try both ways.
Craig Topper1da22c32017-05-26 19:03:53 +00002144 if (C1->isMask() &&
Craig Topperc8bebb12017-05-26 19:03:59 +00002145 match(B, m_c_Add(m_Specific(A), m_Value(N)))) {
Nick Lewycky8561a492014-06-19 03:51:46 +00002146 // Add commutes, try both ways.
Craig Topperc8bebb12017-05-26 19:03:59 +00002147 if (MaskedValueIsZero(N, *C1, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00002148 return B;
2149 }
2150 }
2151 }
2152
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00002153 // If the operation is with the result of a phi instruction, check whether
2154 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00002155 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00002156 if (Value *V = ThreadBinOpOverPHI(Instruction::Or, Op0, Op1, Q, MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00002157 return V;
2158
Craig Topper9f008862014-04-15 04:59:12 +00002159 return nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00002160}
2161
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00002162Value *llvm::SimplifyOrInst(Value *Op0, Value *Op1, const SimplifyQuery &Q) {
2163 return ::SimplifyOrInst(Op0, Op1, Q, RecursionLimit);
2164}
2165
Sanjay Patel472cc782016-01-11 22:14:42 +00002166/// Given operands for a Xor, see if we can fold the result.
2167/// If not, this returns null.
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00002168static Value *SimplifyXorInst(Value *Op0, Value *Op1, const SimplifyQuery &Q,
Duncan Sandsb8cee002012-03-13 11:42:19 +00002169 unsigned MaxRecurse) {
Sanjay Patel8b5ad3f2017-04-01 19:05:11 +00002170 if (Constant *C = foldOrCommuteConstant(Instruction::Xor, Op0, Op1, Q))
2171 return C;
Duncan Sandsc89ac072010-11-17 18:52:15 +00002172
2173 // A ^ undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00002174 if (match(Op1, m_Undef()))
Duncan Sands019a4182010-12-15 11:02:22 +00002175 return Op1;
Duncan Sandsc89ac072010-11-17 18:52:15 +00002176
2177 // A ^ 0 = A
2178 if (match(Op1, m_Zero()))
2179 return Op0;
2180
Eli Friedmanad3cfe72011-08-17 19:31:49 +00002181 // A ^ A = 0
2182 if (Op0 == Op1)
2183 return Constant::getNullValue(Op0->getType());
2184
Duncan Sandsc89ac072010-11-17 18:52:15 +00002185 // A ^ ~A = ~A ^ A = -1
Chris Lattner9e4aa022011-02-09 17:15:04 +00002186 if (match(Op0, m_Not(m_Specific(Op1))) ||
2187 match(Op1, m_Not(m_Specific(Op0))))
Duncan Sandsc89ac072010-11-17 18:52:15 +00002188 return Constant::getAllOnesValue(Op0->getType());
2189
Duncan Sands6c7a52c2010-12-21 08:49:00 +00002190 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00002191 if (Value *V = SimplifyAssociativeBinOp(Instruction::Xor, Op0, Op1, Q,
2192 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00002193 return V;
Duncan Sandsc89ac072010-11-17 18:52:15 +00002194
Duncan Sandsb238de02010-11-19 09:20:39 +00002195 // Threading Xor over selects and phi nodes is pointless, so don't bother.
2196 // Threading over the select in "A ^ select(cond, B, C)" means evaluating
2197 // "A^B" and "A^C" and seeing if they are equal; but they are equal if and
2198 // only if B and C are equal. If B and C are equal then (since we assume
2199 // that operands have already been simplified) "select(cond, B, C)" should
2200 // have been simplified to the common value of B and C already. Analysing
2201 // "A^B" and "A^C" thus gains nothing, but costs compile time. Similarly
2202 // for threading over phi nodes.
Duncan Sandsc89ac072010-11-17 18:52:15 +00002203
Craig Topper9f008862014-04-15 04:59:12 +00002204 return nullptr;
Duncan Sandsc89ac072010-11-17 18:52:15 +00002205}
2206
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00002207Value *llvm::SimplifyXorInst(Value *Op0, Value *Op1, const SimplifyQuery &Q) {
2208 return ::SimplifyXorInst(Op0, Op1, Q, RecursionLimit);
2209}
2210
2211
Chris Lattner229907c2011-07-18 04:54:35 +00002212static Type *GetCompareTy(Value *Op) {
Chris Lattnerccfdceb2009-11-09 23:55:12 +00002213 return CmpInst::makeCmpResultType(Op->getType());
2214}
2215
Sanjay Patel472cc782016-01-11 22:14:42 +00002216/// Rummage around inside V looking for something equivalent to the comparison
2217/// "LHS Pred RHS". Return such a value if found, otherwise return null.
2218/// Helper function for analyzing max/min idioms.
Duncan Sandsaf327282011-05-07 16:56:49 +00002219static Value *ExtractEquivalentCondition(Value *V, CmpInst::Predicate Pred,
2220 Value *LHS, Value *RHS) {
2221 SelectInst *SI = dyn_cast<SelectInst>(V);
2222 if (!SI)
Craig Topper9f008862014-04-15 04:59:12 +00002223 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00002224 CmpInst *Cmp = dyn_cast<CmpInst>(SI->getCondition());
2225 if (!Cmp)
Craig Topper9f008862014-04-15 04:59:12 +00002226 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00002227 Value *CmpLHS = Cmp->getOperand(0), *CmpRHS = Cmp->getOperand(1);
2228 if (Pred == Cmp->getPredicate() && LHS == CmpLHS && RHS == CmpRHS)
2229 return Cmp;
2230 if (Pred == CmpInst::getSwappedPredicate(Cmp->getPredicate()) &&
2231 LHS == CmpRHS && RHS == CmpLHS)
2232 return Cmp;
Craig Topper9f008862014-04-15 04:59:12 +00002233 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00002234}
2235
Dan Gohman9631d902013-02-01 00:49:06 +00002236// A significant optimization not implemented here is assuming that alloca
2237// addresses are not equal to incoming argument values. They don't *alias*,
2238// as we say, but that doesn't mean they aren't equal, so we take a
2239// conservative approach.
2240//
2241// This is inspired in part by C++11 5.10p1:
2242// "Two pointers of the same type compare equal if and only if they are both
2243// null, both point to the same function, or both represent the same
2244// address."
2245//
2246// This is pretty permissive.
2247//
2248// It's also partly due to C11 6.5.9p6:
2249// "Two pointers compare equal if and only if both are null pointers, both are
2250// pointers to the same object (including a pointer to an object and a
2251// subobject at its beginning) or function, both are pointers to one past the
2252// last element of the same array object, or one is a pointer to one past the
2253// end of one array object and the other is a pointer to the start of a
NAKAMURA Takumi065fd352013-04-08 23:05:21 +00002254// different array object that happens to immediately follow the first array
Dan Gohman9631d902013-02-01 00:49:06 +00002255// object in the address space.)
2256//
2257// C11's version is more restrictive, however there's no reason why an argument
2258// couldn't be a one-past-the-end value for a stack object in the caller and be
2259// equal to the beginning of a stack object in the callee.
2260//
2261// If the C and C++ standards are ever made sufficiently restrictive in this
2262// area, it may be possible to update LLVM's semantics accordingly and reinstate
2263// this optimization.
Anna Thomas43d7e1c2016-05-03 14:58:21 +00002264static Constant *
2265computePointerICmp(const DataLayout &DL, const TargetLibraryInfo *TLI,
2266 const DominatorTree *DT, CmpInst::Predicate Pred,
Nuno Lopes404f1062017-09-09 18:23:11 +00002267 AssumptionCache *AC, const Instruction *CxtI,
Florian Hahn19f9e322018-08-17 14:39:04 +00002268 const InstrInfoQuery &IIQ, Value *LHS, Value *RHS) {
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002269 // First, skip past any trivial no-ops.
2270 LHS = LHS->stripPointerCasts();
2271 RHS = RHS->stripPointerCasts();
2272
2273 // A non-null pointer is not equal to a null pointer.
Florian Hahn19f9e322018-08-17 14:39:04 +00002274 if (llvm::isKnownNonZero(LHS, DL, 0, nullptr, nullptr, nullptr,
2275 IIQ.UseInstrInfo) &&
2276 isa<ConstantPointerNull>(RHS) &&
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002277 (Pred == CmpInst::ICMP_EQ || Pred == CmpInst::ICMP_NE))
2278 return ConstantInt::get(GetCompareTy(LHS),
2279 !CmpInst::isTrueWhenEqual(Pred));
2280
Chandler Carruth8059c842012-03-25 21:28:14 +00002281 // We can only fold certain predicates on pointer comparisons.
2282 switch (Pred) {
2283 default:
Craig Topper9f008862014-04-15 04:59:12 +00002284 return nullptr;
Chandler Carruth8059c842012-03-25 21:28:14 +00002285
2286 // Equality comaprisons are easy to fold.
2287 case CmpInst::ICMP_EQ:
2288 case CmpInst::ICMP_NE:
2289 break;
2290
2291 // We can only handle unsigned relational comparisons because 'inbounds' on
2292 // a GEP only protects against unsigned wrapping.
2293 case CmpInst::ICMP_UGT:
2294 case CmpInst::ICMP_UGE:
2295 case CmpInst::ICMP_ULT:
2296 case CmpInst::ICMP_ULE:
2297 // However, we have to switch them to their signed variants to handle
2298 // negative indices from the base pointer.
2299 Pred = ICmpInst::getSignedPredicate(Pred);
2300 break;
2301 }
2302
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002303 // Strip off any constant offsets so that we can reason about them.
2304 // It's tempting to use getUnderlyingObject or even just stripInBoundsOffsets
2305 // here and compare base addresses like AliasAnalysis does, however there are
2306 // numerous hazards. AliasAnalysis and its utilities rely on special rules
2307 // governing loads and stores which don't apply to icmps. Also, AliasAnalysis
2308 // doesn't need to guarantee pointer inequality when it says NoAlias.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002309 Constant *LHSOffset = stripAndComputeConstantOffsets(DL, LHS);
2310 Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS);
Chandler Carruth8059c842012-03-25 21:28:14 +00002311
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002312 // If LHS and RHS are related via constant offsets to the same base
2313 // value, we can replace it with an icmp which just compares the offsets.
2314 if (LHS == RHS)
2315 return ConstantExpr::getICmp(Pred, LHSOffset, RHSOffset);
Chandler Carruth8059c842012-03-25 21:28:14 +00002316
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002317 // Various optimizations for (in)equality comparisons.
2318 if (Pred == CmpInst::ICMP_EQ || Pred == CmpInst::ICMP_NE) {
2319 // Different non-empty allocations that exist at the same time have
2320 // different addresses (if the program can tell). Global variables always
2321 // exist, so they always exist during the lifetime of each other and all
2322 // allocas. Two different allocas usually have different addresses...
2323 //
2324 // However, if there's an @llvm.stackrestore dynamically in between two
2325 // allocas, they may have the same address. It's tempting to reduce the
2326 // scope of the problem by only looking at *static* allocas here. That would
2327 // cover the majority of allocas while significantly reducing the likelihood
2328 // of having an @llvm.stackrestore pop up in the middle. However, it's not
2329 // actually impossible for an @llvm.stackrestore to pop up in the middle of
2330 // an entry block. Also, if we have a block that's not attached to a
2331 // function, we can't tell if it's "static" under the current definition.
2332 // Theoretically, this problem could be fixed by creating a new kind of
2333 // instruction kind specifically for static allocas. Such a new instruction
2334 // could be required to be at the top of the entry block, thus preventing it
2335 // from being subject to a @llvm.stackrestore. Instcombine could even
2336 // convert regular allocas into these special allocas. It'd be nifty.
2337 // However, until then, this problem remains open.
2338 //
2339 // So, we'll assume that two non-empty allocas have different addresses
2340 // for now.
2341 //
2342 // With all that, if the offsets are within the bounds of their allocations
2343 // (and not one-past-the-end! so we can't use inbounds!), and their
2344 // allocations aren't the same, the pointers are not equal.
2345 //
2346 // Note that it's not necessary to check for LHS being a global variable
2347 // address, due to canonicalization and constant folding.
2348 if (isa<AllocaInst>(LHS) &&
2349 (isa<AllocaInst>(RHS) || isa<GlobalVariable>(RHS))) {
Benjamin Kramerc05aa952013-02-01 15:21:10 +00002350 ConstantInt *LHSOffsetCI = dyn_cast<ConstantInt>(LHSOffset);
2351 ConstantInt *RHSOffsetCI = dyn_cast<ConstantInt>(RHSOffset);
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002352 uint64_t LHSSize, RHSSize;
Manoj Gupta77eeac32018-07-09 22:27:23 +00002353 ObjectSizeOpts Opts;
2354 Opts.NullIsUnknownSize =
2355 NullPointerIsDefined(cast<AllocaInst>(LHS)->getFunction());
Benjamin Kramerc05aa952013-02-01 15:21:10 +00002356 if (LHSOffsetCI && RHSOffsetCI &&
Manoj Gupta77eeac32018-07-09 22:27:23 +00002357 getObjectSize(LHS, LHSSize, DL, TLI, Opts) &&
2358 getObjectSize(RHS, RHSSize, DL, TLI, Opts)) {
Benjamin Kramerc05aa952013-02-01 15:21:10 +00002359 const APInt &LHSOffsetValue = LHSOffsetCI->getValue();
2360 const APInt &RHSOffsetValue = RHSOffsetCI->getValue();
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002361 if (!LHSOffsetValue.isNegative() &&
2362 !RHSOffsetValue.isNegative() &&
2363 LHSOffsetValue.ult(LHSSize) &&
2364 RHSOffsetValue.ult(RHSSize)) {
2365 return ConstantInt::get(GetCompareTy(LHS),
2366 !CmpInst::isTrueWhenEqual(Pred));
2367 }
2368 }
2369
2370 // Repeat the above check but this time without depending on DataLayout
2371 // or being able to compute a precise size.
2372 if (!cast<PointerType>(LHS->getType())->isEmptyTy() &&
2373 !cast<PointerType>(RHS->getType())->isEmptyTy() &&
2374 LHSOffset->isNullValue() &&
2375 RHSOffset->isNullValue())
2376 return ConstantInt::get(GetCompareTy(LHS),
2377 !CmpInst::isTrueWhenEqual(Pred));
2378 }
Benjamin Kramer942dfe62013-09-23 14:16:38 +00002379
2380 // Even if an non-inbounds GEP occurs along the path we can still optimize
2381 // equality comparisons concerning the result. We avoid walking the whole
2382 // chain again by starting where the last calls to
2383 // stripAndComputeConstantOffsets left off and accumulate the offsets.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002384 Constant *LHSNoBound = stripAndComputeConstantOffsets(DL, LHS, true);
2385 Constant *RHSNoBound = stripAndComputeConstantOffsets(DL, RHS, true);
Benjamin Kramer942dfe62013-09-23 14:16:38 +00002386 if (LHS == RHS)
2387 return ConstantExpr::getICmp(Pred,
2388 ConstantExpr::getAdd(LHSOffset, LHSNoBound),
2389 ConstantExpr::getAdd(RHSOffset, RHSNoBound));
Hal Finkelafcd8db2014-12-01 23:38:06 +00002390
2391 // If one side of the equality comparison must come from a noalias call
2392 // (meaning a system memory allocation function), and the other side must
2393 // come from a pointer that cannot overlap with dynamically-allocated
2394 // memory within the lifetime of the current function (allocas, byval
2395 // arguments, globals), then determine the comparison result here.
Bjorn Pettersson71e8c6f2019-04-24 06:55:50 +00002396 SmallVector<const Value *, 8> LHSUObjs, RHSUObjs;
Hal Finkelafcd8db2014-12-01 23:38:06 +00002397 GetUnderlyingObjects(LHS, LHSUObjs, DL);
2398 GetUnderlyingObjects(RHS, RHSUObjs, DL);
2399
2400 // Is the set of underlying objects all noalias calls?
Bjorn Pettersson71e8c6f2019-04-24 06:55:50 +00002401 auto IsNAC = [](ArrayRef<const Value *> Objects) {
David Majnemer0a16c222016-08-11 21:15:00 +00002402 return all_of(Objects, isNoAliasCall);
Hal Finkelafcd8db2014-12-01 23:38:06 +00002403 };
2404
2405 // Is the set of underlying objects all things which must be disjoint from
Hal Finkelaa19baf2014-12-04 17:45:19 +00002406 // noalias calls. For allocas, we consider only static ones (dynamic
2407 // allocas might be transformed into calls to malloc not simultaneously
2408 // live with the compared-to allocation). For globals, we exclude symbols
2409 // that might be resolve lazily to symbols in another dynamically-loaded
2410 // library (and, thus, could be malloc'ed by the implementation).
Bjorn Pettersson71e8c6f2019-04-24 06:55:50 +00002411 auto IsAllocDisjoint = [](ArrayRef<const Value *> Objects) {
2412 return all_of(Objects, [](const Value *V) {
Sanjay Patel34ea70a2016-01-11 22:24:35 +00002413 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V))
2414 return AI->getParent() && AI->getFunction() && AI->isStaticAlloca();
2415 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
2416 return (GV->hasLocalLinkage() || GV->hasHiddenVisibility() ||
Peter Collingbourne96efdd62016-06-14 21:01:22 +00002417 GV->hasProtectedVisibility() || GV->hasGlobalUnnamedAddr()) &&
Sanjay Patel34ea70a2016-01-11 22:24:35 +00002418 !GV->isThreadLocal();
2419 if (const Argument *A = dyn_cast<Argument>(V))
2420 return A->hasByValAttr();
2421 return false;
2422 });
Hal Finkelafcd8db2014-12-01 23:38:06 +00002423 };
2424
2425 if ((IsNAC(LHSUObjs) && IsAllocDisjoint(RHSUObjs)) ||
2426 (IsNAC(RHSUObjs) && IsAllocDisjoint(LHSUObjs)))
2427 return ConstantInt::get(GetCompareTy(LHS),
2428 !CmpInst::isTrueWhenEqual(Pred));
Anna Thomas43d7e1c2016-05-03 14:58:21 +00002429
2430 // Fold comparisons for non-escaping pointer even if the allocation call
2431 // cannot be elided. We cannot fold malloc comparison to null. Also, the
2432 // dynamic allocation call could be either of the operands.
2433 Value *MI = nullptr;
Nuno Lopes404f1062017-09-09 18:23:11 +00002434 if (isAllocLikeFn(LHS, TLI) &&
2435 llvm::isKnownNonZero(RHS, DL, 0, nullptr, CxtI, DT))
Anna Thomas43d7e1c2016-05-03 14:58:21 +00002436 MI = LHS;
Nuno Lopes404f1062017-09-09 18:23:11 +00002437 else if (isAllocLikeFn(RHS, TLI) &&
2438 llvm::isKnownNonZero(LHS, DL, 0, nullptr, CxtI, DT))
Anna Thomas43d7e1c2016-05-03 14:58:21 +00002439 MI = RHS;
2440 // FIXME: We should also fold the compare when the pointer escapes, but the
2441 // compare dominates the pointer escape
2442 if (MI && !PointerMayBeCaptured(MI, true, true))
2443 return ConstantInt::get(GetCompareTy(LHS),
2444 CmpInst::isFalseWhenEqual(Pred));
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002445 }
2446
2447 // Otherwise, fail.
Craig Topper9f008862014-04-15 04:59:12 +00002448 return nullptr;
Chandler Carruth8059c842012-03-25 21:28:14 +00002449}
Chris Lattner01990f02012-02-24 19:01:58 +00002450
Sanjay Pateldc65a272016-12-03 17:30:22 +00002451/// Fold an icmp when its operands have i1 scalar type.
2452static Value *simplifyICmpOfBools(CmpInst::Predicate Pred, Value *LHS,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00002453 Value *RHS, const SimplifyQuery &Q) {
Sanjay Pateldc65a272016-12-03 17:30:22 +00002454 Type *ITy = GetCompareTy(LHS); // The return type.
2455 Type *OpTy = LHS->getType(); // The operand type.
Craig Topperfde47232017-07-09 07:04:03 +00002456 if (!OpTy->isIntOrIntVectorTy(1))
Sanjay Pateldc65a272016-12-03 17:30:22 +00002457 return nullptr;
2458
Sanjay Patele2787b92017-05-17 20:27:55 +00002459 // A boolean compared to true/false can be simplified in 14 out of the 20
2460 // (10 predicates * 2 constants) possible combinations. Cases not handled here
2461 // require a 'not' of the LHS, so those must be transformed in InstCombine.
2462 if (match(RHS, m_Zero())) {
2463 switch (Pred) {
2464 case CmpInst::ICMP_NE: // X != 0 -> X
2465 case CmpInst::ICMP_UGT: // X >u 0 -> X
2466 case CmpInst::ICMP_SLT: // X <s 0 -> X
2467 return LHS;
2468
2469 case CmpInst::ICMP_ULT: // X <u 0 -> false
2470 case CmpInst::ICMP_SGT: // X >s 0 -> false
2471 return getFalse(ITy);
2472
2473 case CmpInst::ICMP_UGE: // X >=u 0 -> true
2474 case CmpInst::ICMP_SLE: // X <=s 0 -> true
2475 return getTrue(ITy);
2476
2477 default: break;
2478 }
2479 } else if (match(RHS, m_One())) {
2480 switch (Pred) {
2481 case CmpInst::ICMP_EQ: // X == 1 -> X
2482 case CmpInst::ICMP_UGE: // X >=u 1 -> X
2483 case CmpInst::ICMP_SLE: // X <=s -1 -> X
2484 return LHS;
2485
2486 case CmpInst::ICMP_UGT: // X >u 1 -> false
2487 case CmpInst::ICMP_SLT: // X <s -1 -> false
2488 return getFalse(ITy);
2489
2490 case CmpInst::ICMP_ULE: // X <=u 1 -> true
2491 case CmpInst::ICMP_SGE: // X >=s -1 -> true
2492 return getTrue(ITy);
2493
2494 default: break;
2495 }
2496 }
2497
Sanjay Pateldc65a272016-12-03 17:30:22 +00002498 switch (Pred) {
2499 default:
2500 break;
Sanjay Pateldc65a272016-12-03 17:30:22 +00002501 case ICmpInst::ICMP_UGE:
Sanjay Pateldc65a272016-12-03 17:30:22 +00002502 if (isImpliedCondition(RHS, LHS, Q.DL).getValueOr(false))
2503 return getTrue(ITy);
2504 break;
2505 case ICmpInst::ICMP_SGE:
2506 /// For signed comparison, the values for an i1 are 0 and -1
2507 /// respectively. This maps into a truth table of:
2508 /// LHS | RHS | LHS >=s RHS | LHS implies RHS
2509 /// 0 | 0 | 1 (0 >= 0) | 1
2510 /// 0 | 1 | 1 (0 >= -1) | 1
2511 /// 1 | 0 | 0 (-1 >= 0) | 0
2512 /// 1 | 1 | 1 (-1 >= -1) | 1
2513 if (isImpliedCondition(LHS, RHS, Q.DL).getValueOr(false))
2514 return getTrue(ITy);
2515 break;
Sanjay Pateldc65a272016-12-03 17:30:22 +00002516 case ICmpInst::ICMP_ULE:
2517 if (isImpliedCondition(LHS, RHS, Q.DL).getValueOr(false))
2518 return getTrue(ITy);
2519 break;
2520 }
2521
2522 return nullptr;
2523}
2524
2525/// Try hard to fold icmp with zero RHS because this is a common case.
2526static Value *simplifyICmpWithZero(CmpInst::Predicate Pred, Value *LHS,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00002527 Value *RHS, const SimplifyQuery &Q) {
Sanjay Pateldc65a272016-12-03 17:30:22 +00002528 if (!match(RHS, m_Zero()))
2529 return nullptr;
2530
2531 Type *ITy = GetCompareTy(LHS); // The return type.
Sanjay Pateldc65a272016-12-03 17:30:22 +00002532 switch (Pred) {
2533 default:
2534 llvm_unreachable("Unknown ICmp predicate!");
2535 case ICmpInst::ICMP_ULT:
2536 return getFalse(ITy);
2537 case ICmpInst::ICMP_UGE:
2538 return getTrue(ITy);
2539 case ICmpInst::ICMP_EQ:
2540 case ICmpInst::ICMP_ULE:
Florian Hahn19f9e322018-08-17 14:39:04 +00002541 if (isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT, Q.IIQ.UseInstrInfo))
Sanjay Pateldc65a272016-12-03 17:30:22 +00002542 return getFalse(ITy);
2543 break;
2544 case ICmpInst::ICMP_NE:
2545 case ICmpInst::ICMP_UGT:
Florian Hahn19f9e322018-08-17 14:39:04 +00002546 if (isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT, Q.IIQ.UseInstrInfo))
Sanjay Pateldc65a272016-12-03 17:30:22 +00002547 return getTrue(ITy);
2548 break;
Craig Topper1a36b7d2017-05-15 06:39:41 +00002549 case ICmpInst::ICMP_SLT: {
2550 KnownBits LHSKnown = computeKnownBits(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT);
2551 if (LHSKnown.isNegative())
Sanjay Pateldc65a272016-12-03 17:30:22 +00002552 return getTrue(ITy);
Craig Topper1a36b7d2017-05-15 06:39:41 +00002553 if (LHSKnown.isNonNegative())
Sanjay Pateldc65a272016-12-03 17:30:22 +00002554 return getFalse(ITy);
2555 break;
Craig Topper1a36b7d2017-05-15 06:39:41 +00002556 }
2557 case ICmpInst::ICMP_SLE: {
2558 KnownBits LHSKnown = computeKnownBits(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT);
2559 if (LHSKnown.isNegative())
Sanjay Pateldc65a272016-12-03 17:30:22 +00002560 return getTrue(ITy);
Craig Topper1a36b7d2017-05-15 06:39:41 +00002561 if (LHSKnown.isNonNegative() &&
2562 isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Sanjay Pateldc65a272016-12-03 17:30:22 +00002563 return getFalse(ITy);
2564 break;
Craig Topper1a36b7d2017-05-15 06:39:41 +00002565 }
2566 case ICmpInst::ICMP_SGE: {
2567 KnownBits LHSKnown = computeKnownBits(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT);
2568 if (LHSKnown.isNegative())
Sanjay Pateldc65a272016-12-03 17:30:22 +00002569 return getFalse(ITy);
Craig Topper1a36b7d2017-05-15 06:39:41 +00002570 if (LHSKnown.isNonNegative())
Sanjay Pateldc65a272016-12-03 17:30:22 +00002571 return getTrue(ITy);
2572 break;
Craig Topper1a36b7d2017-05-15 06:39:41 +00002573 }
2574 case ICmpInst::ICMP_SGT: {
2575 KnownBits LHSKnown = computeKnownBits(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT);
2576 if (LHSKnown.isNegative())
Sanjay Pateldc65a272016-12-03 17:30:22 +00002577 return getFalse(ITy);
Craig Topper1a36b7d2017-05-15 06:39:41 +00002578 if (LHSKnown.isNonNegative() &&
2579 isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Sanjay Pateldc65a272016-12-03 17:30:22 +00002580 return getTrue(ITy);
2581 break;
2582 }
Craig Topper1a36b7d2017-05-15 06:39:41 +00002583 }
Sanjay Pateldc65a272016-12-03 17:30:22 +00002584
2585 return nullptr;
2586}
2587
Sanjay Patel67bde282016-08-22 23:12:02 +00002588static Value *simplifyICmpWithConstant(CmpInst::Predicate Pred, Value *LHS,
Florian Hahn19f9e322018-08-17 14:39:04 +00002589 Value *RHS, const InstrInfoQuery &IIQ) {
Roman Lebedev0c43d722018-03-15 16:17:40 +00002590 Type *ITy = GetCompareTy(RHS); // The return type.
2591
Roman Lebedev6aca3352018-03-15 16:17:46 +00002592 Value *X;
2593 // Sign-bit checks can be optimized to true/false after unsigned
2594 // floating-point casts:
2595 // icmp slt (bitcast (uitofp X)), 0 --> false
2596 // icmp sgt (bitcast (uitofp X)), -1 --> true
2597 if (match(LHS, m_BitCast(m_UIToFP(m_Value(X))))) {
2598 if (Pred == ICmpInst::ICMP_SLT && match(RHS, m_Zero()))
2599 return ConstantInt::getFalse(ITy);
2600 if (Pred == ICmpInst::ICMP_SGT && match(RHS, m_AllOnes()))
2601 return ConstantInt::getTrue(ITy);
2602 }
2603
Sanjay Patel200e3cb2016-08-23 17:30:56 +00002604 const APInt *C;
2605 if (!match(RHS, m_APInt(C)))
Sanjay Patel67bde282016-08-22 23:12:02 +00002606 return nullptr;
2607
2608 // Rule out tautological comparisons (eg., ult 0 or uge 0).
Sanjoy Das1f7b8132016-10-02 00:09:57 +00002609 ConstantRange RHS_CR = ConstantRange::makeExactICmpRegion(Pred, *C);
Sanjay Patel67bde282016-08-22 23:12:02 +00002610 if (RHS_CR.isEmptySet())
Roman Lebedev0c43d722018-03-15 16:17:40 +00002611 return ConstantInt::getFalse(ITy);
Sanjay Patel67bde282016-08-22 23:12:02 +00002612 if (RHS_CR.isFullSet())
Roman Lebedev0c43d722018-03-15 16:17:40 +00002613 return ConstantInt::getTrue(ITy);
Sanjay Patel200e3cb2016-08-23 17:30:56 +00002614
Nikita Popov49097592019-03-09 21:17:42 +00002615 ConstantRange LHS_CR = computeConstantRange(LHS, IIQ.UseInstrInfo);
Sanjay Patel67bde282016-08-22 23:12:02 +00002616 if (!LHS_CR.isFullSet()) {
2617 if (RHS_CR.contains(LHS_CR))
Roman Lebedev0c43d722018-03-15 16:17:40 +00002618 return ConstantInt::getTrue(ITy);
Sanjay Patel67bde282016-08-22 23:12:02 +00002619 if (RHS_CR.inverse().contains(LHS_CR))
Roman Lebedev0c43d722018-03-15 16:17:40 +00002620 return ConstantInt::getFalse(ITy);
Sanjay Patel67bde282016-08-22 23:12:02 +00002621 }
2622
2623 return nullptr;
2624}
2625
Sanjay Patel2df38a82017-05-08 16:21:55 +00002626/// TODO: A large part of this logic is duplicated in InstCombine's
2627/// foldICmpBinOp(). We should be able to share that and avoid the code
2628/// duplication.
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002629static Value *simplifyICmpWithBinOp(CmpInst::Predicate Pred, Value *LHS,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00002630 Value *RHS, const SimplifyQuery &Q,
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002631 unsigned MaxRecurse) {
2632 Type *ITy = GetCompareTy(LHS); // The return type.
2633
2634 BinaryOperator *LBO = dyn_cast<BinaryOperator>(LHS);
2635 BinaryOperator *RBO = dyn_cast<BinaryOperator>(RHS);
2636 if (MaxRecurse && (LBO || RBO)) {
2637 // Analyze the case when either LHS or RHS is an add instruction.
2638 Value *A = nullptr, *B = nullptr, *C = nullptr, *D = nullptr;
2639 // LHS = A + B (or A and B are null); RHS = C + D (or C and D are null).
2640 bool NoLHSWrapProblem = false, NoRHSWrapProblem = false;
2641 if (LBO && LBO->getOpcode() == Instruction::Add) {
2642 A = LBO->getOperand(0);
2643 B = LBO->getOperand(1);
2644 NoLHSWrapProblem =
2645 ICmpInst::isEquality(Pred) ||
Florian Hahn19f9e322018-08-17 14:39:04 +00002646 (CmpInst::isUnsigned(Pred) &&
2647 Q.IIQ.hasNoUnsignedWrap(cast<OverflowingBinaryOperator>(LBO))) ||
2648 (CmpInst::isSigned(Pred) &&
2649 Q.IIQ.hasNoSignedWrap(cast<OverflowingBinaryOperator>(LBO)));
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002650 }
2651 if (RBO && RBO->getOpcode() == Instruction::Add) {
2652 C = RBO->getOperand(0);
2653 D = RBO->getOperand(1);
2654 NoRHSWrapProblem =
2655 ICmpInst::isEquality(Pred) ||
Florian Hahn19f9e322018-08-17 14:39:04 +00002656 (CmpInst::isUnsigned(Pred) &&
2657 Q.IIQ.hasNoUnsignedWrap(cast<OverflowingBinaryOperator>(RBO))) ||
2658 (CmpInst::isSigned(Pred) &&
2659 Q.IIQ.hasNoSignedWrap(cast<OverflowingBinaryOperator>(RBO)));
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002660 }
2661
2662 // icmp (X+Y), X -> icmp Y, 0 for equalities or if there is no overflow.
2663 if ((A == RHS || B == RHS) && NoLHSWrapProblem)
2664 if (Value *V = SimplifyICmpInst(Pred, A == RHS ? B : A,
2665 Constant::getNullValue(RHS->getType()), Q,
2666 MaxRecurse - 1))
2667 return V;
2668
2669 // icmp X, (X+Y) -> icmp 0, Y for equalities or if there is no overflow.
2670 if ((C == LHS || D == LHS) && NoRHSWrapProblem)
2671 if (Value *V =
2672 SimplifyICmpInst(Pred, Constant::getNullValue(LHS->getType()),
2673 C == LHS ? D : C, Q, MaxRecurse - 1))
2674 return V;
2675
2676 // icmp (X+Y), (X+Z) -> icmp Y,Z for equalities or if there is no overflow.
2677 if (A && C && (A == C || A == D || B == C || B == D) && NoLHSWrapProblem &&
2678 NoRHSWrapProblem) {
2679 // Determine Y and Z in the form icmp (X+Y), (X+Z).
2680 Value *Y, *Z;
2681 if (A == C) {
2682 // C + B == C + D -> B == D
2683 Y = B;
2684 Z = D;
2685 } else if (A == D) {
2686 // D + B == C + D -> B == C
2687 Y = B;
2688 Z = C;
2689 } else if (B == C) {
2690 // A + C == C + D -> A == D
2691 Y = A;
2692 Z = D;
2693 } else {
2694 assert(B == D);
2695 // A + D == C + D -> A == C
2696 Y = A;
2697 Z = C;
2698 }
2699 if (Value *V = SimplifyICmpInst(Pred, Y, Z, Q, MaxRecurse - 1))
2700 return V;
2701 }
2702 }
2703
2704 {
2705 Value *Y = nullptr;
2706 // icmp pred (or X, Y), X
2707 if (LBO && match(LBO, m_c_Or(m_Value(Y), m_Specific(RHS)))) {
2708 if (Pred == ICmpInst::ICMP_ULT)
2709 return getFalse(ITy);
2710 if (Pred == ICmpInst::ICMP_UGE)
2711 return getTrue(ITy);
2712
2713 if (Pred == ICmpInst::ICMP_SLT || Pred == ICmpInst::ICMP_SGE) {
Craig Topper1a36b7d2017-05-15 06:39:41 +00002714 KnownBits RHSKnown = computeKnownBits(RHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT);
2715 KnownBits YKnown = computeKnownBits(Y, Q.DL, 0, Q.AC, Q.CxtI, Q.DT);
2716 if (RHSKnown.isNonNegative() && YKnown.isNegative())
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002717 return Pred == ICmpInst::ICMP_SLT ? getTrue(ITy) : getFalse(ITy);
Craig Topper1a36b7d2017-05-15 06:39:41 +00002718 if (RHSKnown.isNegative() || YKnown.isNonNegative())
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002719 return Pred == ICmpInst::ICMP_SLT ? getFalse(ITy) : getTrue(ITy);
2720 }
2721 }
2722 // icmp pred X, (or X, Y)
2723 if (RBO && match(RBO, m_c_Or(m_Value(Y), m_Specific(LHS)))) {
2724 if (Pred == ICmpInst::ICMP_ULE)
2725 return getTrue(ITy);
2726 if (Pred == ICmpInst::ICMP_UGT)
2727 return getFalse(ITy);
2728
2729 if (Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_SLE) {
Craig Topper1a36b7d2017-05-15 06:39:41 +00002730 KnownBits LHSKnown = computeKnownBits(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT);
2731 KnownBits YKnown = computeKnownBits(Y, Q.DL, 0, Q.AC, Q.CxtI, Q.DT);
2732 if (LHSKnown.isNonNegative() && YKnown.isNegative())
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002733 return Pred == ICmpInst::ICMP_SGT ? getTrue(ITy) : getFalse(ITy);
Craig Topper1a36b7d2017-05-15 06:39:41 +00002734 if (LHSKnown.isNegative() || YKnown.isNonNegative())
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002735 return Pred == ICmpInst::ICMP_SGT ? getFalse(ITy) : getTrue(ITy);
2736 }
2737 }
2738 }
2739
2740 // icmp pred (and X, Y), X
Craig Topper72ee6942017-06-24 06:24:01 +00002741 if (LBO && match(LBO, m_c_And(m_Value(), m_Specific(RHS)))) {
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002742 if (Pred == ICmpInst::ICMP_UGT)
2743 return getFalse(ITy);
2744 if (Pred == ICmpInst::ICMP_ULE)
2745 return getTrue(ITy);
2746 }
2747 // icmp pred X, (and X, Y)
Craig Topper72ee6942017-06-24 06:24:01 +00002748 if (RBO && match(RBO, m_c_And(m_Value(), m_Specific(LHS)))) {
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002749 if (Pred == ICmpInst::ICMP_UGE)
2750 return getTrue(ITy);
2751 if (Pred == ICmpInst::ICMP_ULT)
2752 return getFalse(ITy);
2753 }
2754
2755 // 0 - (zext X) pred C
2756 if (!CmpInst::isUnsigned(Pred) && match(LHS, m_Neg(m_ZExt(m_Value())))) {
2757 if (ConstantInt *RHSC = dyn_cast<ConstantInt>(RHS)) {
2758 if (RHSC->getValue().isStrictlyPositive()) {
2759 if (Pred == ICmpInst::ICMP_SLT)
2760 return ConstantInt::getTrue(RHSC->getContext());
2761 if (Pred == ICmpInst::ICMP_SGE)
2762 return ConstantInt::getFalse(RHSC->getContext());
2763 if (Pred == ICmpInst::ICMP_EQ)
2764 return ConstantInt::getFalse(RHSC->getContext());
2765 if (Pred == ICmpInst::ICMP_NE)
2766 return ConstantInt::getTrue(RHSC->getContext());
2767 }
2768 if (RHSC->getValue().isNonNegative()) {
2769 if (Pred == ICmpInst::ICMP_SLE)
2770 return ConstantInt::getTrue(RHSC->getContext());
2771 if (Pred == ICmpInst::ICMP_SGT)
2772 return ConstantInt::getFalse(RHSC->getContext());
2773 }
2774 }
2775 }
2776
2777 // icmp pred (urem X, Y), Y
2778 if (LBO && match(LBO, m_URem(m_Value(), m_Specific(RHS)))) {
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002779 switch (Pred) {
2780 default:
2781 break;
2782 case ICmpInst::ICMP_SGT:
Craig Topper1a36b7d2017-05-15 06:39:41 +00002783 case ICmpInst::ICMP_SGE: {
2784 KnownBits Known = computeKnownBits(RHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT);
2785 if (!Known.isNonNegative())
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002786 break;
2787 LLVM_FALLTHROUGH;
Craig Topper1a36b7d2017-05-15 06:39:41 +00002788 }
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002789 case ICmpInst::ICMP_EQ:
2790 case ICmpInst::ICMP_UGT:
2791 case ICmpInst::ICMP_UGE:
2792 return getFalse(ITy);
2793 case ICmpInst::ICMP_SLT:
Craig Topper1a36b7d2017-05-15 06:39:41 +00002794 case ICmpInst::ICMP_SLE: {
2795 KnownBits Known = computeKnownBits(RHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT);
2796 if (!Known.isNonNegative())
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002797 break;
2798 LLVM_FALLTHROUGH;
Craig Topper1a36b7d2017-05-15 06:39:41 +00002799 }
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002800 case ICmpInst::ICMP_NE:
2801 case ICmpInst::ICMP_ULT:
2802 case ICmpInst::ICMP_ULE:
2803 return getTrue(ITy);
2804 }
2805 }
2806
2807 // icmp pred X, (urem Y, X)
2808 if (RBO && match(RBO, m_URem(m_Value(), m_Specific(LHS)))) {
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002809 switch (Pred) {
2810 default:
2811 break;
2812 case ICmpInst::ICMP_SGT:
Craig Topper1a36b7d2017-05-15 06:39:41 +00002813 case ICmpInst::ICMP_SGE: {
2814 KnownBits Known = computeKnownBits(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT);
2815 if (!Known.isNonNegative())
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002816 break;
2817 LLVM_FALLTHROUGH;
Craig Topper1a36b7d2017-05-15 06:39:41 +00002818 }
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002819 case ICmpInst::ICMP_NE:
2820 case ICmpInst::ICMP_UGT:
2821 case ICmpInst::ICMP_UGE:
2822 return getTrue(ITy);
2823 case ICmpInst::ICMP_SLT:
Craig Topper1a36b7d2017-05-15 06:39:41 +00002824 case ICmpInst::ICMP_SLE: {
2825 KnownBits Known = computeKnownBits(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT);
2826 if (!Known.isNonNegative())
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002827 break;
2828 LLVM_FALLTHROUGH;
Craig Topper1a36b7d2017-05-15 06:39:41 +00002829 }
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002830 case ICmpInst::ICMP_EQ:
2831 case ICmpInst::ICMP_ULT:
2832 case ICmpInst::ICMP_ULE:
2833 return getFalse(ITy);
2834 }
2835 }
2836
2837 // x >> y <=u x
2838 // x udiv y <=u x.
2839 if (LBO && (match(LBO, m_LShr(m_Specific(RHS), m_Value())) ||
2840 match(LBO, m_UDiv(m_Specific(RHS), m_Value())))) {
2841 // icmp pred (X op Y), X
2842 if (Pred == ICmpInst::ICMP_UGT)
2843 return getFalse(ITy);
2844 if (Pred == ICmpInst::ICMP_ULE)
2845 return getTrue(ITy);
2846 }
2847
2848 // x >=u x >> y
2849 // x >=u x udiv y.
2850 if (RBO && (match(RBO, m_LShr(m_Specific(LHS), m_Value())) ||
2851 match(RBO, m_UDiv(m_Specific(LHS), m_Value())))) {
2852 // icmp pred X, (X op Y)
2853 if (Pred == ICmpInst::ICMP_ULT)
2854 return getFalse(ITy);
2855 if (Pred == ICmpInst::ICMP_UGE)
2856 return getTrue(ITy);
2857 }
2858
2859 // handle:
2860 // CI2 << X == CI
2861 // CI2 << X != CI
2862 //
2863 // where CI2 is a power of 2 and CI isn't
2864 if (auto *CI = dyn_cast<ConstantInt>(RHS)) {
2865 const APInt *CI2Val, *CIVal = &CI->getValue();
2866 if (LBO && match(LBO, m_Shl(m_APInt(CI2Val), m_Value())) &&
2867 CI2Val->isPowerOf2()) {
2868 if (!CIVal->isPowerOf2()) {
2869 // CI2 << X can equal zero in some circumstances,
2870 // this simplification is unsafe if CI is zero.
2871 //
2872 // We know it is safe if:
2873 // - The shift is nsw, we can't shift out the one bit.
2874 // - The shift is nuw, we can't shift out the one bit.
2875 // - CI2 is one
2876 // - CI isn't zero
Florian Hahn19f9e322018-08-17 14:39:04 +00002877 if (Q.IIQ.hasNoSignedWrap(cast<OverflowingBinaryOperator>(LBO)) ||
2878 Q.IIQ.hasNoUnsignedWrap(cast<OverflowingBinaryOperator>(LBO)) ||
Craig Topper73ba1c82017-06-07 07:40:37 +00002879 CI2Val->isOneValue() || !CI->isZero()) {
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002880 if (Pred == ICmpInst::ICMP_EQ)
2881 return ConstantInt::getFalse(RHS->getContext());
2882 if (Pred == ICmpInst::ICMP_NE)
2883 return ConstantInt::getTrue(RHS->getContext());
2884 }
2885 }
Craig Topper73ba1c82017-06-07 07:40:37 +00002886 if (CIVal->isSignMask() && CI2Val->isOneValue()) {
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002887 if (Pred == ICmpInst::ICMP_UGT)
2888 return ConstantInt::getFalse(RHS->getContext());
2889 if (Pred == ICmpInst::ICMP_ULE)
2890 return ConstantInt::getTrue(RHS->getContext());
2891 }
2892 }
2893 }
2894
2895 if (MaxRecurse && LBO && RBO && LBO->getOpcode() == RBO->getOpcode() &&
2896 LBO->getOperand(1) == RBO->getOperand(1)) {
2897 switch (LBO->getOpcode()) {
2898 default:
2899 break;
2900 case Instruction::UDiv:
2901 case Instruction::LShr:
Florian Hahn19f9e322018-08-17 14:39:04 +00002902 if (ICmpInst::isSigned(Pred) || !Q.IIQ.isExact(LBO) ||
2903 !Q.IIQ.isExact(RBO))
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002904 break;
Sanjay Patela23b1412017-05-15 19:16:49 +00002905 if (Value *V = SimplifyICmpInst(Pred, LBO->getOperand(0),
2906 RBO->getOperand(0), Q, MaxRecurse - 1))
2907 return V;
2908 break;
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002909 case Instruction::SDiv:
Florian Hahn19f9e322018-08-17 14:39:04 +00002910 if (!ICmpInst::isEquality(Pred) || !Q.IIQ.isExact(LBO) ||
2911 !Q.IIQ.isExact(RBO))
Sanjay Patela23b1412017-05-15 19:16:49 +00002912 break;
2913 if (Value *V = SimplifyICmpInst(Pred, LBO->getOperand(0),
2914 RBO->getOperand(0), Q, MaxRecurse - 1))
2915 return V;
2916 break;
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002917 case Instruction::AShr:
Florian Hahn19f9e322018-08-17 14:39:04 +00002918 if (!Q.IIQ.isExact(LBO) || !Q.IIQ.isExact(RBO))
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002919 break;
2920 if (Value *V = SimplifyICmpInst(Pred, LBO->getOperand(0),
2921 RBO->getOperand(0), Q, MaxRecurse - 1))
2922 return V;
2923 break;
2924 case Instruction::Shl: {
Florian Hahn19f9e322018-08-17 14:39:04 +00002925 bool NUW = Q.IIQ.hasNoUnsignedWrap(LBO) && Q.IIQ.hasNoUnsignedWrap(RBO);
2926 bool NSW = Q.IIQ.hasNoSignedWrap(LBO) && Q.IIQ.hasNoSignedWrap(RBO);
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002927 if (!NUW && !NSW)
2928 break;
2929 if (!NSW && ICmpInst::isSigned(Pred))
2930 break;
2931 if (Value *V = SimplifyICmpInst(Pred, LBO->getOperand(0),
2932 RBO->getOperand(0), Q, MaxRecurse - 1))
2933 return V;
2934 break;
2935 }
2936 }
2937 }
2938 return nullptr;
2939}
2940
Sanjay Patel35289c62016-12-10 17:40:47 +00002941/// Simplify integer comparisons where at least one operand of the compare
2942/// matches an integer min/max idiom.
2943static Value *simplifyICmpWithMinMax(CmpInst::Predicate Pred, Value *LHS,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00002944 Value *RHS, const SimplifyQuery &Q,
Sanjay Patel35289c62016-12-10 17:40:47 +00002945 unsigned MaxRecurse) {
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00002946 Type *ITy = GetCompareTy(LHS); // The return type.
2947 Value *A, *B;
2948 CmpInst::Predicate P = CmpInst::BAD_ICMP_PREDICATE;
2949 CmpInst::Predicate EqP; // Chosen so that "A == max/min(A,B)" iff "A EqP B".
2950
2951 // Signed variants on "max(a,b)>=a -> true".
2952 if (match(LHS, m_SMax(m_Value(A), m_Value(B))) && (A == RHS || B == RHS)) {
2953 if (A != RHS)
2954 std::swap(A, B); // smax(A, B) pred A.
2955 EqP = CmpInst::ICMP_SGE; // "A == smax(A, B)" iff "A sge B".
2956 // We analyze this as smax(A, B) pred A.
2957 P = Pred;
2958 } else if (match(RHS, m_SMax(m_Value(A), m_Value(B))) &&
2959 (A == LHS || B == LHS)) {
2960 if (A != LHS)
2961 std::swap(A, B); // A pred smax(A, B).
2962 EqP = CmpInst::ICMP_SGE; // "A == smax(A, B)" iff "A sge B".
2963 // We analyze this as smax(A, B) swapped-pred A.
2964 P = CmpInst::getSwappedPredicate(Pred);
2965 } else if (match(LHS, m_SMin(m_Value(A), m_Value(B))) &&
2966 (A == RHS || B == RHS)) {
2967 if (A != RHS)
2968 std::swap(A, B); // smin(A, B) pred A.
2969 EqP = CmpInst::ICMP_SLE; // "A == smin(A, B)" iff "A sle B".
2970 // We analyze this as smax(-A, -B) swapped-pred -A.
2971 // Note that we do not need to actually form -A or -B thanks to EqP.
2972 P = CmpInst::getSwappedPredicate(Pred);
2973 } else if (match(RHS, m_SMin(m_Value(A), m_Value(B))) &&
2974 (A == LHS || B == LHS)) {
2975 if (A != LHS)
2976 std::swap(A, B); // A pred smin(A, B).
2977 EqP = CmpInst::ICMP_SLE; // "A == smin(A, B)" iff "A sle B".
2978 // We analyze this as smax(-A, -B) pred -A.
2979 // Note that we do not need to actually form -A or -B thanks to EqP.
2980 P = Pred;
2981 }
2982 if (P != CmpInst::BAD_ICMP_PREDICATE) {
2983 // Cases correspond to "max(A, B) p A".
2984 switch (P) {
2985 default:
2986 break;
2987 case CmpInst::ICMP_EQ:
2988 case CmpInst::ICMP_SLE:
2989 // Equivalent to "A EqP B". This may be the same as the condition tested
2990 // in the max/min; if so, we can just return that.
2991 if (Value *V = ExtractEquivalentCondition(LHS, EqP, A, B))
2992 return V;
2993 if (Value *V = ExtractEquivalentCondition(RHS, EqP, A, B))
2994 return V;
2995 // Otherwise, see if "A EqP B" simplifies.
2996 if (MaxRecurse)
2997 if (Value *V = SimplifyICmpInst(EqP, A, B, Q, MaxRecurse - 1))
2998 return V;
2999 break;
3000 case CmpInst::ICMP_NE:
3001 case CmpInst::ICMP_SGT: {
3002 CmpInst::Predicate InvEqP = CmpInst::getInversePredicate(EqP);
3003 // Equivalent to "A InvEqP B". This may be the same as the condition
3004 // tested in the max/min; if so, we can just return that.
3005 if (Value *V = ExtractEquivalentCondition(LHS, InvEqP, A, B))
3006 return V;
3007 if (Value *V = ExtractEquivalentCondition(RHS, InvEqP, A, B))
3008 return V;
3009 // Otherwise, see if "A InvEqP B" simplifies.
3010 if (MaxRecurse)
3011 if (Value *V = SimplifyICmpInst(InvEqP, A, B, Q, MaxRecurse - 1))
3012 return V;
3013 break;
3014 }
3015 case CmpInst::ICMP_SGE:
3016 // Always true.
3017 return getTrue(ITy);
3018 case CmpInst::ICMP_SLT:
3019 // Always false.
3020 return getFalse(ITy);
3021 }
3022 }
3023
3024 // Unsigned variants on "max(a,b)>=a -> true".
3025 P = CmpInst::BAD_ICMP_PREDICATE;
3026 if (match(LHS, m_UMax(m_Value(A), m_Value(B))) && (A == RHS || B == RHS)) {
3027 if (A != RHS)
3028 std::swap(A, B); // umax(A, B) pred A.
3029 EqP = CmpInst::ICMP_UGE; // "A == umax(A, B)" iff "A uge B".
3030 // We analyze this as umax(A, B) pred A.
3031 P = Pred;
3032 } else if (match(RHS, m_UMax(m_Value(A), m_Value(B))) &&
3033 (A == LHS || B == LHS)) {
3034 if (A != LHS)
3035 std::swap(A, B); // A pred umax(A, B).
3036 EqP = CmpInst::ICMP_UGE; // "A == umax(A, B)" iff "A uge B".
3037 // We analyze this as umax(A, B) swapped-pred A.
3038 P = CmpInst::getSwappedPredicate(Pred);
3039 } else if (match(LHS, m_UMin(m_Value(A), m_Value(B))) &&
3040 (A == RHS || B == RHS)) {
3041 if (A != RHS)
3042 std::swap(A, B); // umin(A, B) pred A.
3043 EqP = CmpInst::ICMP_ULE; // "A == umin(A, B)" iff "A ule B".
3044 // We analyze this as umax(-A, -B) swapped-pred -A.
3045 // Note that we do not need to actually form -A or -B thanks to EqP.
3046 P = CmpInst::getSwappedPredicate(Pred);
3047 } else if (match(RHS, m_UMin(m_Value(A), m_Value(B))) &&
3048 (A == LHS || B == LHS)) {
3049 if (A != LHS)
3050 std::swap(A, B); // A pred umin(A, B).
3051 EqP = CmpInst::ICMP_ULE; // "A == umin(A, B)" iff "A ule B".
3052 // We analyze this as umax(-A, -B) pred -A.
3053 // Note that we do not need to actually form -A or -B thanks to EqP.
3054 P = Pred;
3055 }
3056 if (P != CmpInst::BAD_ICMP_PREDICATE) {
3057 // Cases correspond to "max(A, B) p A".
3058 switch (P) {
3059 default:
3060 break;
3061 case CmpInst::ICMP_EQ:
3062 case CmpInst::ICMP_ULE:
3063 // Equivalent to "A EqP B". This may be the same as the condition tested
3064 // in the max/min; if so, we can just return that.
3065 if (Value *V = ExtractEquivalentCondition(LHS, EqP, A, B))
3066 return V;
3067 if (Value *V = ExtractEquivalentCondition(RHS, EqP, A, B))
3068 return V;
3069 // Otherwise, see if "A EqP B" simplifies.
3070 if (MaxRecurse)
3071 if (Value *V = SimplifyICmpInst(EqP, A, B, Q, MaxRecurse - 1))
3072 return V;
3073 break;
3074 case CmpInst::ICMP_NE:
3075 case CmpInst::ICMP_UGT: {
3076 CmpInst::Predicate InvEqP = CmpInst::getInversePredicate(EqP);
3077 // Equivalent to "A InvEqP B". This may be the same as the condition
3078 // tested in the max/min; if so, we can just return that.
3079 if (Value *V = ExtractEquivalentCondition(LHS, InvEqP, A, B))
3080 return V;
3081 if (Value *V = ExtractEquivalentCondition(RHS, InvEqP, A, B))
3082 return V;
3083 // Otherwise, see if "A InvEqP B" simplifies.
3084 if (MaxRecurse)
3085 if (Value *V = SimplifyICmpInst(InvEqP, A, B, Q, MaxRecurse - 1))
3086 return V;
3087 break;
3088 }
3089 case CmpInst::ICMP_UGE:
3090 // Always true.
3091 return getTrue(ITy);
3092 case CmpInst::ICMP_ULT:
3093 // Always false.
3094 return getFalse(ITy);
3095 }
3096 }
3097
3098 // Variants on "max(x,y) >= min(x,z)".
3099 Value *C, *D;
3100 if (match(LHS, m_SMax(m_Value(A), m_Value(B))) &&
3101 match(RHS, m_SMin(m_Value(C), m_Value(D))) &&
3102 (A == C || A == D || B == C || B == D)) {
3103 // max(x, ?) pred min(x, ?).
3104 if (Pred == CmpInst::ICMP_SGE)
3105 // Always true.
3106 return getTrue(ITy);
3107 if (Pred == CmpInst::ICMP_SLT)
3108 // Always false.
3109 return getFalse(ITy);
3110 } else if (match(LHS, m_SMin(m_Value(A), m_Value(B))) &&
3111 match(RHS, m_SMax(m_Value(C), m_Value(D))) &&
3112 (A == C || A == D || B == C || B == D)) {
3113 // min(x, ?) pred max(x, ?).
3114 if (Pred == CmpInst::ICMP_SLE)
3115 // Always true.
3116 return getTrue(ITy);
3117 if (Pred == CmpInst::ICMP_SGT)
3118 // Always false.
3119 return getFalse(ITy);
3120 } else if (match(LHS, m_UMax(m_Value(A), m_Value(B))) &&
3121 match(RHS, m_UMin(m_Value(C), m_Value(D))) &&
3122 (A == C || A == D || B == C || B == D)) {
3123 // max(x, ?) pred min(x, ?).
3124 if (Pred == CmpInst::ICMP_UGE)
3125 // Always true.
3126 return getTrue(ITy);
3127 if (Pred == CmpInst::ICMP_ULT)
3128 // Always false.
3129 return getFalse(ITy);
3130 } else if (match(LHS, m_UMin(m_Value(A), m_Value(B))) &&
3131 match(RHS, m_UMax(m_Value(C), m_Value(D))) &&
3132 (A == C || A == D || B == C || B == D)) {
3133 // min(x, ?) pred max(x, ?).
3134 if (Pred == CmpInst::ICMP_ULE)
3135 // Always true.
3136 return getTrue(ITy);
3137 if (Pred == CmpInst::ICMP_UGT)
3138 // Always false.
3139 return getFalse(ITy);
3140 }
3141
3142 return nullptr;
3143}
3144
Sanjay Patel472cc782016-01-11 22:14:42 +00003145/// Given operands for an ICmpInst, see if we can fold the result.
3146/// If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003147static Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00003148 const SimplifyQuery &Q, unsigned MaxRecurse) {
Chris Lattner084a1b52009-11-09 22:57:59 +00003149 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate;
Chris Lattnerc1f19072009-11-09 23:28:39 +00003150 assert(CmpInst::isIntPredicate(Pred) && "Not an integer compare!");
Duncan Sands7e800d62010-11-14 11:23:23 +00003151
Chris Lattnera71e9d62009-11-10 00:55:12 +00003152 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
Chris Lattnercdfb80d2009-11-09 23:06:58 +00003153 if (Constant *CRHS = dyn_cast<Constant>(RHS))
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003154 return ConstantFoldCompareInstOperands(Pred, CLHS, CRHS, Q.DL, Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00003155
3156 // If we have a constant, make sure it is on the RHS.
3157 std::swap(LHS, RHS);
3158 Pred = CmpInst::getSwappedPredicate(Pred);
3159 }
Simon Pilgrim8ee477a2019-03-19 14:08:23 +00003160 assert(!isa<UndefValue>(LHS) && "Unexpected icmp undef,%X");
Duncan Sands7e800d62010-11-14 11:23:23 +00003161
Chris Lattner229907c2011-07-18 04:54:35 +00003162 Type *ITy = GetCompareTy(LHS); // The return type.
Duncan Sands7e800d62010-11-14 11:23:23 +00003163
Simon Pilgrim8ee477a2019-03-19 14:08:23 +00003164 // For EQ and NE, we can always pick a value for the undef to make the
3165 // predicate pass or fail, so we can return undef.
3166 // Matches behavior in llvm::ConstantFoldCompareInstruction.
3167 if (isa<UndefValue>(RHS) && ICmpInst::isEquality(Pred))
3168 return UndefValue::get(ITy);
3169
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003170 // icmp X, X -> true/false
Sanjay Patel30be6652018-04-22 17:07:44 +00003171 // icmp X, undef -> true/false because undef could be X.
Duncan Sands772749a2011-01-01 20:08:02 +00003172 if (LHS == RHS || isa<UndefValue>(RHS))
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003173 return ConstantInt::get(ITy, CmpInst::isTrueWhenEqual(Pred));
Duncan Sands7e800d62010-11-14 11:23:23 +00003174
Sanjay Pateldc65a272016-12-03 17:30:22 +00003175 if (Value *V = simplifyICmpOfBools(Pred, LHS, RHS, Q))
3176 return V;
Duncan Sands8d25a7c2011-01-13 08:56:29 +00003177
Sanjay Pateldc65a272016-12-03 17:30:22 +00003178 if (Value *V = simplifyICmpWithZero(Pred, LHS, RHS, Q))
3179 return V;
Duncan Sandsd3951082011-01-25 09:38:29 +00003180
Florian Hahn19f9e322018-08-17 14:39:04 +00003181 if (Value *V = simplifyICmpWithConstant(Pred, LHS, RHS, Q.IIQ))
Sanjay Patel67bde282016-08-22 23:12:02 +00003182 return V;
Duncan Sands8d25a7c2011-01-13 08:56:29 +00003183
Chen Li7452d952015-09-26 03:26:47 +00003184 // If both operands have range metadata, use the metadata
3185 // to simplify the comparison.
3186 if (isa<Instruction>(RHS) && isa<Instruction>(LHS)) {
Craig Topper0c198612017-04-10 19:37:10 +00003187 auto RHS_Instr = cast<Instruction>(RHS);
3188 auto LHS_Instr = cast<Instruction>(LHS);
Chen Li7452d952015-09-26 03:26:47 +00003189
Florian Hahn19f9e322018-08-17 14:39:04 +00003190 if (Q.IIQ.getMetadata(RHS_Instr, LLVMContext::MD_range) &&
3191 Q.IIQ.getMetadata(LHS_Instr, LLVMContext::MD_range)) {
Sanjoy Dasa7e13782015-10-24 05:37:35 +00003192 auto RHS_CR = getConstantRangeFromMetadata(
3193 *RHS_Instr->getMetadata(LLVMContext::MD_range));
3194 auto LHS_CR = getConstantRangeFromMetadata(
3195 *LHS_Instr->getMetadata(LLVMContext::MD_range));
Chen Li7452d952015-09-26 03:26:47 +00003196
3197 auto Satisfied_CR = ConstantRange::makeSatisfyingICmpRegion(Pred, RHS_CR);
3198 if (Satisfied_CR.contains(LHS_CR))
3199 return ConstantInt::getTrue(RHS->getContext());
3200
3201 auto InversedSatisfied_CR = ConstantRange::makeSatisfyingICmpRegion(
3202 CmpInst::getInversePredicate(Pred), RHS_CR);
3203 if (InversedSatisfied_CR.contains(LHS_CR))
3204 return ConstantInt::getFalse(RHS->getContext());
3205 }
3206 }
3207
Duncan Sands8fb2c382011-01-20 13:21:55 +00003208 // Compare of cast, for example (zext X) != 0 -> X != 0
3209 if (isa<CastInst>(LHS) && (isa<Constant>(RHS) || isa<CastInst>(RHS))) {
3210 Instruction *LI = cast<CastInst>(LHS);
3211 Value *SrcOp = LI->getOperand(0);
Chris Lattner229907c2011-07-18 04:54:35 +00003212 Type *SrcTy = SrcOp->getType();
3213 Type *DstTy = LI->getType();
Duncan Sands8fb2c382011-01-20 13:21:55 +00003214
3215 // Turn icmp (ptrtoint x), (ptrtoint/constant) into a compare of the input
3216 // if the integer type is the same size as the pointer type.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003217 if (MaxRecurse && isa<PtrToIntInst>(LI) &&
3218 Q.DL.getTypeSizeInBits(SrcTy) == DstTy->getPrimitiveSizeInBits()) {
Duncan Sands8fb2c382011-01-20 13:21:55 +00003219 if (Constant *RHSC = dyn_cast<Constant>(RHS)) {
3220 // Transfer the cast to the constant.
3221 if (Value *V = SimplifyICmpInst(Pred, SrcOp,
3222 ConstantExpr::getIntToPtr(RHSC, SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003223 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00003224 return V;
3225 } else if (PtrToIntInst *RI = dyn_cast<PtrToIntInst>(RHS)) {
3226 if (RI->getOperand(0)->getType() == SrcTy)
3227 // Compare without the cast.
3228 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003229 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00003230 return V;
3231 }
3232 }
3233
3234 if (isa<ZExtInst>(LHS)) {
3235 // Turn icmp (zext X), (zext Y) into a compare of X and Y if they have the
3236 // same type.
3237 if (ZExtInst *RI = dyn_cast<ZExtInst>(RHS)) {
3238 if (MaxRecurse && SrcTy == RI->getOperand(0)->getType())
3239 // Compare X and Y. Note that signed predicates become unsigned.
3240 if (Value *V = SimplifyICmpInst(ICmpInst::getUnsignedPredicate(Pred),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003241 SrcOp, RI->getOperand(0), Q,
Duncan Sands8fb2c382011-01-20 13:21:55 +00003242 MaxRecurse-1))
3243 return V;
3244 }
3245 // Turn icmp (zext X), Cst into a compare of X and Cst if Cst is extended
3246 // too. If not, then try to deduce the result of the comparison.
3247 else if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
3248 // Compute the constant that would happen if we truncated to SrcTy then
3249 // reextended to DstTy.
3250 Constant *Trunc = ConstantExpr::getTrunc(CI, SrcTy);
3251 Constant *RExt = ConstantExpr::getCast(CastInst::ZExt, Trunc, DstTy);
3252
3253 // If the re-extended constant didn't change then this is effectively
3254 // also a case of comparing two zero-extended values.
3255 if (RExt == CI && MaxRecurse)
3256 if (Value *V = SimplifyICmpInst(ICmpInst::getUnsignedPredicate(Pred),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003257 SrcOp, Trunc, Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00003258 return V;
3259
3260 // Otherwise the upper bits of LHS are zero while RHS has a non-zero bit
3261 // there. Use this to work out the result of the comparison.
3262 if (RExt != CI) {
3263 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00003264 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sands8fb2c382011-01-20 13:21:55 +00003265 // LHS <u RHS.
3266 case ICmpInst::ICMP_EQ:
3267 case ICmpInst::ICMP_UGT:
3268 case ICmpInst::ICMP_UGE:
3269 return ConstantInt::getFalse(CI->getContext());
3270
3271 case ICmpInst::ICMP_NE:
3272 case ICmpInst::ICMP_ULT:
3273 case ICmpInst::ICMP_ULE:
3274 return ConstantInt::getTrue(CI->getContext());
3275
3276 // LHS is non-negative. If RHS is negative then LHS >s LHS. If RHS
3277 // is non-negative then LHS <s RHS.
3278 case ICmpInst::ICMP_SGT:
3279 case ICmpInst::ICMP_SGE:
3280 return CI->getValue().isNegative() ?
3281 ConstantInt::getTrue(CI->getContext()) :
3282 ConstantInt::getFalse(CI->getContext());
3283
3284 case ICmpInst::ICMP_SLT:
3285 case ICmpInst::ICMP_SLE:
3286 return CI->getValue().isNegative() ?
3287 ConstantInt::getFalse(CI->getContext()) :
3288 ConstantInt::getTrue(CI->getContext());
3289 }
3290 }
3291 }
3292 }
3293
3294 if (isa<SExtInst>(LHS)) {
3295 // Turn icmp (sext X), (sext Y) into a compare of X and Y if they have the
3296 // same type.
3297 if (SExtInst *RI = dyn_cast<SExtInst>(RHS)) {
3298 if (MaxRecurse && SrcTy == RI->getOperand(0)->getType())
3299 // Compare X and Y. Note that the predicate does not change.
3300 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003301 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00003302 return V;
3303 }
3304 // Turn icmp (sext X), Cst into a compare of X and Cst if Cst is extended
3305 // too. If not, then try to deduce the result of the comparison.
3306 else if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
3307 // Compute the constant that would happen if we truncated to SrcTy then
3308 // reextended to DstTy.
3309 Constant *Trunc = ConstantExpr::getTrunc(CI, SrcTy);
3310 Constant *RExt = ConstantExpr::getCast(CastInst::SExt, Trunc, DstTy);
3311
3312 // If the re-extended constant didn't change then this is effectively
3313 // also a case of comparing two sign-extended values.
3314 if (RExt == CI && MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00003315 if (Value *V = SimplifyICmpInst(Pred, SrcOp, Trunc, Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00003316 return V;
3317
3318 // Otherwise the upper bits of LHS are all equal, while RHS has varying
3319 // bits there. Use this to work out the result of the comparison.
3320 if (RExt != CI) {
3321 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00003322 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sands8fb2c382011-01-20 13:21:55 +00003323 case ICmpInst::ICMP_EQ:
3324 return ConstantInt::getFalse(CI->getContext());
3325 case ICmpInst::ICMP_NE:
3326 return ConstantInt::getTrue(CI->getContext());
3327
3328 // If RHS is non-negative then LHS <s RHS. If RHS is negative then
3329 // LHS >s RHS.
3330 case ICmpInst::ICMP_SGT:
3331 case ICmpInst::ICMP_SGE:
3332 return CI->getValue().isNegative() ?
3333 ConstantInt::getTrue(CI->getContext()) :
3334 ConstantInt::getFalse(CI->getContext());
3335 case ICmpInst::ICMP_SLT:
3336 case ICmpInst::ICMP_SLE:
3337 return CI->getValue().isNegative() ?
3338 ConstantInt::getFalse(CI->getContext()) :
3339 ConstantInt::getTrue(CI->getContext());
3340
3341 // If LHS is non-negative then LHS <u RHS. If LHS is negative then
3342 // LHS >u RHS.
3343 case ICmpInst::ICMP_UGT:
3344 case ICmpInst::ICMP_UGE:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00003345 // Comparison is true iff the LHS <s 0.
Duncan Sands8fb2c382011-01-20 13:21:55 +00003346 if (MaxRecurse)
3347 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SLT, SrcOp,
3348 Constant::getNullValue(SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003349 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00003350 return V;
3351 break;
3352 case ICmpInst::ICMP_ULT:
3353 case ICmpInst::ICMP_ULE:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00003354 // Comparison is true iff the LHS >=s 0.
Duncan Sands8fb2c382011-01-20 13:21:55 +00003355 if (MaxRecurse)
3356 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SGE, SrcOp,
3357 Constant::getNullValue(SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003358 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00003359 return V;
3360 break;
3361 }
3362 }
3363 }
3364 }
3365 }
3366
James Molloy1d88d6f2015-10-22 13:18:42 +00003367 // icmp eq|ne X, Y -> false|true if X != Y
Craig Topperc2790ec2017-06-06 07:13:04 +00003368 if (ICmpInst::isEquality(Pred) &&
Florian Hahn19f9e322018-08-17 14:39:04 +00003369 isKnownNonEqual(LHS, RHS, Q.DL, Q.AC, Q.CxtI, Q.DT, Q.IIQ.UseInstrInfo)) {
Craig Topper2dfb4802017-06-06 07:13:13 +00003370 return Pred == ICmpInst::ICMP_NE ? getTrue(ITy) : getFalse(ITy);
James Molloy1d88d6f2015-10-22 13:18:42 +00003371 }
Junmo Park53470fc2016-04-05 21:14:31 +00003372
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00003373 if (Value *V = simplifyICmpWithBinOp(Pred, LHS, RHS, Q, MaxRecurse))
3374 return V;
Duncan Sandsd114ab32011-02-13 17:15:40 +00003375
Sanjay Patel35289c62016-12-10 17:40:47 +00003376 if (Value *V = simplifyICmpWithMinMax(Pred, LHS, RHS, Q, MaxRecurse))
Sanjay Patel9d5b5e32016-12-03 18:03:53 +00003377 return V;
Duncan Sandsa2287852011-05-04 16:05:05 +00003378
Chandler Carruth8059c842012-03-25 21:28:14 +00003379 // Simplify comparisons of related pointers using a powerful, recursive
3380 // GEP-walk when we have target data available..
Dan Gohman18c77a12013-01-31 02:50:36 +00003381 if (LHS->getType()->isPointerTy())
Florian Hahn19f9e322018-08-17 14:39:04 +00003382 if (auto *C = computePointerICmp(Q.DL, Q.TLI, Q.DT, Pred, Q.AC, Q.CxtI,
3383 Q.IIQ, LHS, RHS))
Chandler Carruth8059c842012-03-25 21:28:14 +00003384 return C;
David Majnemerdc8767a2016-08-07 07:58:10 +00003385 if (auto *CLHS = dyn_cast<PtrToIntOperator>(LHS))
3386 if (auto *CRHS = dyn_cast<PtrToIntOperator>(RHS))
3387 if (Q.DL.getTypeSizeInBits(CLHS->getPointerOperandType()) ==
3388 Q.DL.getTypeSizeInBits(CLHS->getType()) &&
3389 Q.DL.getTypeSizeInBits(CRHS->getPointerOperandType()) ==
3390 Q.DL.getTypeSizeInBits(CRHS->getType()))
Nuno Lopes404f1062017-09-09 18:23:11 +00003391 if (auto *C = computePointerICmp(Q.DL, Q.TLI, Q.DT, Pred, Q.AC, Q.CxtI,
Florian Hahn19f9e322018-08-17 14:39:04 +00003392 Q.IIQ, CLHS->getPointerOperand(),
David Majnemerdc8767a2016-08-07 07:58:10 +00003393 CRHS->getPointerOperand()))
3394 return C;
Chandler Carruth8059c842012-03-25 21:28:14 +00003395
Nick Lewycky3db143e2012-02-26 02:09:49 +00003396 if (GetElementPtrInst *GLHS = dyn_cast<GetElementPtrInst>(LHS)) {
3397 if (GEPOperator *GRHS = dyn_cast<GEPOperator>(RHS)) {
3398 if (GLHS->getPointerOperand() == GRHS->getPointerOperand() &&
3399 GLHS->hasAllConstantIndices() && GRHS->hasAllConstantIndices() &&
3400 (ICmpInst::isEquality(Pred) ||
3401 (GLHS->isInBounds() && GRHS->isInBounds() &&
3402 Pred == ICmpInst::getSignedPredicate(Pred)))) {
3403 // The bases are equal and the indices are constant. Build a constant
3404 // expression GEP with the same indices and a null base pointer to see
3405 // what constant folding can make out of it.
3406 Constant *Null = Constant::getNullValue(GLHS->getPointerOperandType());
3407 SmallVector<Value *, 4> IndicesLHS(GLHS->idx_begin(), GLHS->idx_end());
David Blaikie4a2e73b2015-04-02 18:55:32 +00003408 Constant *NewLHS = ConstantExpr::getGetElementPtr(
3409 GLHS->getSourceElementType(), Null, IndicesLHS);
Nick Lewycky3db143e2012-02-26 02:09:49 +00003410
3411 SmallVector<Value *, 4> IndicesRHS(GRHS->idx_begin(), GRHS->idx_end());
David Blaikie4a2e73b2015-04-02 18:55:32 +00003412 Constant *NewRHS = ConstantExpr::getGetElementPtr(
3413 GLHS->getSourceElementType(), Null, IndicesRHS);
Nick Lewycky3db143e2012-02-26 02:09:49 +00003414 return ConstantExpr::getICmp(Pred, NewLHS, NewRHS);
3415 }
3416 }
3417 }
3418
Duncan Sandsf532d312010-11-07 16:12:23 +00003419 // If the comparison is with the result of a select instruction, check whether
3420 // comparing with either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003421 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003422 if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003423 return V;
3424
3425 // If the comparison is with the result of a phi instruction, check whether
3426 // doing the compare with each incoming phi value yields a common result.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003427 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003428 if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsfc5ad3f02010-11-09 17:25:51 +00003429 return V;
Duncan Sandsf532d312010-11-07 16:12:23 +00003430
Craig Topper9f008862014-04-15 04:59:12 +00003431 return nullptr;
Chris Lattner084a1b52009-11-09 22:57:59 +00003432}
3433
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003434Value *llvm::SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00003435 const SimplifyQuery &Q) {
3436 return ::SimplifyICmpInst(Predicate, LHS, RHS, Q, RecursionLimit);
3437}
3438
Sanjay Patel472cc782016-01-11 22:14:42 +00003439/// Given operands for an FCmpInst, see if we can fold the result.
3440/// If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003441static Value *SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00003442 FastMathFlags FMF, const SimplifyQuery &Q,
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00003443 unsigned MaxRecurse) {
Chris Lattnerc1f19072009-11-09 23:28:39 +00003444 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate;
3445 assert(CmpInst::isFPPredicate(Pred) && "Not an FP compare!");
3446
Chris Lattnera71e9d62009-11-10 00:55:12 +00003447 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
Chris Lattnerc1f19072009-11-09 23:28:39 +00003448 if (Constant *CRHS = dyn_cast<Constant>(RHS))
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003449 return ConstantFoldCompareInstOperands(Pred, CLHS, CRHS, Q.DL, Q.TLI);
Duncan Sands7e800d62010-11-14 11:23:23 +00003450
Chris Lattnera71e9d62009-11-10 00:55:12 +00003451 // If we have a constant, make sure it is on the RHS.
3452 std::swap(LHS, RHS);
3453 Pred = CmpInst::getSwappedPredicate(Pred);
3454 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003455
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003456 // Fold trivial predicates.
Andrea Di Biagiobff3fd62016-09-02 15:55:25 +00003457 Type *RetTy = GetCompareTy(LHS);
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003458 if (Pred == FCmpInst::FCMP_FALSE)
Andrea Di Biagiobff3fd62016-09-02 15:55:25 +00003459 return getFalse(RetTy);
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003460 if (Pred == FCmpInst::FCMP_TRUE)
Andrea Di Biagiobff3fd62016-09-02 15:55:25 +00003461 return getTrue(RetTy);
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003462
Sanjay Patelf3ae9cc2018-08-21 14:45:13 +00003463 // Fold (un)ordered comparison if we can determine there are no NaNs.
3464 if (Pred == FCmpInst::FCMP_UNO || Pred == FCmpInst::FCMP_ORD)
3465 if (FMF.noNaNs() ||
3466 (isKnownNeverNaN(LHS, Q.TLI) && isKnownNeverNaN(RHS, Q.TLI)))
3467 return ConstantInt::get(RetTy, Pred == FCmpInst::FCMP_ORD);
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00003468
Sanjay Patel46b083e2018-03-02 18:36:08 +00003469 // NaN is unordered; NaN is not ordered.
3470 assert((FCmpInst::isOrdered(Pred) || FCmpInst::isUnordered(Pred)) &&
3471 "Comparison must be either ordered or unordered");
3472 if (match(RHS, m_NaN()))
3473 return ConstantInt::get(RetTy, CmpInst::isUnordered(Pred));
3474
Mehdi Aminieb242a52015-03-09 03:20:25 +00003475 // fcmp pred x, undef and fcmp pred undef, x
3476 // fold to true if unordered, false if ordered
3477 if (isa<UndefValue>(LHS) || isa<UndefValue>(RHS)) {
3478 // Choosing NaN for the undef will always make unordered comparison succeed
3479 // and ordered comparison fail.
Andrea Di Biagiobff3fd62016-09-02 15:55:25 +00003480 return ConstantInt::get(RetTy, CmpInst::isUnordered(Pred));
Mehdi Aminieb242a52015-03-09 03:20:25 +00003481 }
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003482
3483 // fcmp x,x -> true/false. Not all compares are foldable.
Duncan Sands772749a2011-01-01 20:08:02 +00003484 if (LHS == RHS) {
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003485 if (CmpInst::isTrueWhenEqual(Pred))
Andrea Di Biagiobff3fd62016-09-02 15:55:25 +00003486 return getTrue(RetTy);
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003487 if (CmpInst::isFalseWhenEqual(Pred))
Andrea Di Biagiobff3fd62016-09-02 15:55:25 +00003488 return getFalse(RetTy);
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003489 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003490
Sanjay Patel4ca99682017-11-27 16:37:09 +00003491 // Handle fcmp with constant RHS.
Sanjay Patel68171e32019-02-20 14:34:00 +00003492 // TODO: Use match with a specific FP value, so these work with vectors with
3493 // undef lanes.
Sanjay Patel4ca99682017-11-27 16:37:09 +00003494 const APFloat *C;
3495 if (match(RHS, m_APFloat(C))) {
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003496 // Check whether the constant is an infinity.
Sanjay Patel4ca99682017-11-27 16:37:09 +00003497 if (C->isInfinity()) {
3498 if (C->isNegative()) {
Elena Demikhovsky45f04482015-01-28 08:03:58 +00003499 switch (Pred) {
Elena Demikhovsky45f04482015-01-28 08:03:58 +00003500 case FCmpInst::FCMP_OLT:
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003501 // No value is ordered and less than negative infinity.
Andrea Di Biagiobff3fd62016-09-02 15:55:25 +00003502 return getFalse(RetTy);
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003503 case FCmpInst::FCMP_UGE:
3504 // All values are unordered with or at least negative infinity.
Andrea Di Biagiobff3fd62016-09-02 15:55:25 +00003505 return getTrue(RetTy);
Elena Demikhovsky45f04482015-01-28 08:03:58 +00003506 default:
3507 break;
3508 }
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003509 } else {
3510 switch (Pred) {
3511 case FCmpInst::FCMP_OGT:
3512 // No value is ordered and greater than infinity.
Andrea Di Biagiobff3fd62016-09-02 15:55:25 +00003513 return getFalse(RetTy);
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003514 case FCmpInst::FCMP_ULE:
3515 // All values are unordered with and at most infinity.
Andrea Di Biagiobff3fd62016-09-02 15:55:25 +00003516 return getTrue(RetTy);
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003517 default:
3518 break;
3519 }
3520 }
Sanjay Patel49f97392019-02-20 00:20:38 +00003521 }
Sanjay Patel68171e32019-02-20 14:34:00 +00003522 if (C->isNegative() && !C->isNegZero()) {
Florian Hahn30932a32017-12-01 12:34:16 +00003523 assert(!C->isNaN() && "Unexpected NaN constant!");
3524 // TODO: We can catch more cases by using a range check rather than
3525 // relying on CannotBeOrderedLessThanZero.
3526 switch (Pred) {
3527 case FCmpInst::FCMP_UGE:
3528 case FCmpInst::FCMP_UGT:
3529 case FCmpInst::FCMP_UNE:
3530 // (X >= 0) implies (X > C) when (C < 0)
3531 if (CannotBeOrderedLessThanZero(LHS, Q.TLI))
3532 return getTrue(RetTy);
3533 break;
3534 case FCmpInst::FCMP_OEQ:
3535 case FCmpInst::FCMP_OLE:
3536 case FCmpInst::FCMP_OLT:
3537 // (X >= 0) implies !(X < C) when (C < 0)
3538 if (CannotBeOrderedLessThanZero(LHS, Q.TLI))
3539 return getFalse(RetTy);
3540 break;
3541 default:
3542 break;
3543 }
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003544 }
Sanjay Patel152f81f2019-05-16 14:03:10 +00003545
Sanjay Patel63fa6902019-05-20 17:52:18 +00003546 // Check comparison of [minnum/maxnum with constant] with other constant.
Sanjay Patel9ef99b42019-05-19 14:26:39 +00003547 const APFloat *C2;
3548 if ((match(LHS, m_Intrinsic<Intrinsic::minnum>(m_Value(), m_APFloat(C2))) &&
3549 C2->compare(*C) == APFloat::cmpLessThan) ||
3550 (match(LHS, m_Intrinsic<Intrinsic::maxnum>(m_Value(), m_APFloat(C2))) &&
3551 C2->compare(*C) == APFloat::cmpGreaterThan)) {
3552 bool IsMaxNum =
3553 cast<IntrinsicInst>(LHS)->getIntrinsicID() == Intrinsic::maxnum;
3554 // The ordered relationship and minnum/maxnum guarantee that we do not
3555 // have NaN constants, so ordered/unordered preds are handled the same.
Sanjay Patel152f81f2019-05-16 14:03:10 +00003556 switch (Pred) {
3557 case FCmpInst::FCMP_OEQ: case FCmpInst::FCMP_UEQ:
Sanjay Patel9ef99b42019-05-19 14:26:39 +00003558 // minnum(X, LesserC) == C --> false
3559 // maxnum(X, GreaterC) == C --> false
Sanjay Patel152f81f2019-05-16 14:03:10 +00003560 return getFalse(RetTy);
3561 case FCmpInst::FCMP_ONE: case FCmpInst::FCMP_UNE:
Sanjay Patel9ef99b42019-05-19 14:26:39 +00003562 // minnum(X, LesserC) != C --> true
3563 // maxnum(X, GreaterC) != C --> true
3564 return getTrue(RetTy);
3565 case FCmpInst::FCMP_OGE: case FCmpInst::FCMP_UGE:
3566 case FCmpInst::FCMP_OGT: case FCmpInst::FCMP_UGT:
3567 // minnum(X, LesserC) >= C --> false
3568 // minnum(X, LesserC) > C --> false
3569 // maxnum(X, GreaterC) >= C --> true
3570 // maxnum(X, GreaterC) > C --> true
3571 return ConstantInt::get(RetTy, IsMaxNum);
Sanjay Patel152f81f2019-05-16 14:03:10 +00003572 case FCmpInst::FCMP_OLE: case FCmpInst::FCMP_ULE:
3573 case FCmpInst::FCMP_OLT: case FCmpInst::FCMP_ULT:
Sanjay Patel9ef99b42019-05-19 14:26:39 +00003574 // minnum(X, LesserC) <= C --> true
3575 // minnum(X, LesserC) < C --> true
3576 // maxnum(X, GreaterC) <= C --> false
3577 // maxnum(X, GreaterC) < C --> false
3578 return ConstantInt::get(RetTy, !IsMaxNum);
Sanjay Patel152f81f2019-05-16 14:03:10 +00003579 default:
3580 // TRUE/FALSE/ORD/UNO should be handled before this.
3581 llvm_unreachable("Unexpected fcmp predicate");
3582 }
3583 }
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003584 }
Sanjay Patel152f81f2019-05-16 14:03:10 +00003585
Sanjay Patel68171e32019-02-20 14:34:00 +00003586 if (match(RHS, m_AnyZeroFP())) {
3587 switch (Pred) {
3588 case FCmpInst::FCMP_OGE:
Sanjay Patel866db102019-06-09 13:58:46 +00003589 case FCmpInst::FCMP_ULT:
3590 // Positive or zero X >= 0.0 --> true
3591 // Positive or zero X < 0.0 --> false
Sanjay Patel4329c152019-06-08 15:12:33 +00003592 if ((FMF.noNaNs() || isKnownNeverNaN(LHS, Q.TLI)) &&
3593 CannotBeOrderedLessThanZero(LHS, Q.TLI))
Sanjay Patel866db102019-06-09 13:58:46 +00003594 return Pred == FCmpInst::FCMP_OGE ? getTrue(RetTy) : getFalse(RetTy);
Sanjay Patel68171e32019-02-20 14:34:00 +00003595 break;
3596 case FCmpInst::FCMP_UGE:
Sanjay Patel68171e32019-02-20 14:34:00 +00003597 case FCmpInst::FCMP_OLT:
Sanjay Patel866db102019-06-09 13:58:46 +00003598 // Positive or zero or nan X >= 0.0 --> true
3599 // Positive or zero or nan X < 0.0 --> false
Sanjay Patel68171e32019-02-20 14:34:00 +00003600 if (CannotBeOrderedLessThanZero(LHS, Q.TLI))
Sanjay Patel866db102019-06-09 13:58:46 +00003601 return Pred == FCmpInst::FCMP_UGE ? getTrue(RetTy) : getFalse(RetTy);
Sanjay Patel68171e32019-02-20 14:34:00 +00003602 break;
3603 default:
3604 break;
3605 }
3606 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003607
Duncan Sandsa620bd12010-11-07 16:46:25 +00003608 // If the comparison is with the result of a select instruction, check whether
3609 // comparing with either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003610 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003611 if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003612 return V;
3613
3614 // If the comparison is with the result of a phi instruction, check whether
3615 // doing the compare with each incoming phi value yields a common result.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003616 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003617 if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsfc5ad3f02010-11-09 17:25:51 +00003618 return V;
Duncan Sandsa620bd12010-11-07 16:46:25 +00003619
Craig Topper9f008862014-04-15 04:59:12 +00003620 return nullptr;
Chris Lattnerc1f19072009-11-09 23:28:39 +00003621}
3622
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003623Value *llvm::SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00003624 FastMathFlags FMF, const SimplifyQuery &Q) {
3625 return ::SimplifyFCmpInst(Predicate, LHS, RHS, FMF, Q, RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003626}
3627
Sanjay Patel472cc782016-01-11 22:14:42 +00003628/// See if V simplifies when its operand Op is replaced with RepOp.
David Majnemer3f0fb982015-06-06 22:40:21 +00003629static const Value *SimplifyWithOpReplaced(Value *V, Value *Op, Value *RepOp,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00003630 const SimplifyQuery &Q,
David Majnemer3f0fb982015-06-06 22:40:21 +00003631 unsigned MaxRecurse) {
3632 // Trivial replacement.
3633 if (V == Op)
3634 return RepOp;
3635
Tim Northover997f5f12017-05-22 21:28:08 +00003636 // We cannot replace a constant, and shouldn't even try.
3637 if (isa<Constant>(Op))
3638 return nullptr;
3639
David Majnemer3f0fb982015-06-06 22:40:21 +00003640 auto *I = dyn_cast<Instruction>(V);
3641 if (!I)
3642 return nullptr;
3643
3644 // If this is a binary operator, try to simplify it with the replaced op.
3645 if (auto *B = dyn_cast<BinaryOperator>(I)) {
3646 // Consider:
3647 // %cmp = icmp eq i32 %x, 2147483647
3648 // %add = add nsw i32 %x, 1
3649 // %sel = select i1 %cmp, i32 -2147483648, i32 %add
3650 //
3651 // We can't replace %sel with %add unless we strip away the flags.
Sanjay Patel9ce5f412019-08-02 17:39:32 +00003652 // TODO: This is an unusual limitation because better analysis results in
3653 // worse simplification. InstCombine can do this fold more generally
3654 // by dropping the flags. Remove this fold to save compile-time?
David Majnemer3f0fb982015-06-06 22:40:21 +00003655 if (isa<OverflowingBinaryOperator>(B))
Florian Hahn19f9e322018-08-17 14:39:04 +00003656 if (Q.IIQ.hasNoSignedWrap(B) || Q.IIQ.hasNoUnsignedWrap(B))
David Majnemer3f0fb982015-06-06 22:40:21 +00003657 return nullptr;
Florian Hahn19f9e322018-08-17 14:39:04 +00003658 if (isa<PossiblyExactOperator>(B) && Q.IIQ.isExact(B))
3659 return nullptr;
David Majnemer3f0fb982015-06-06 22:40:21 +00003660
3661 if (MaxRecurse) {
3662 if (B->getOperand(0) == Op)
3663 return SimplifyBinOp(B->getOpcode(), RepOp, B->getOperand(1), Q,
3664 MaxRecurse - 1);
3665 if (B->getOperand(1) == Op)
3666 return SimplifyBinOp(B->getOpcode(), B->getOperand(0), RepOp, Q,
3667 MaxRecurse - 1);
3668 }
3669 }
3670
3671 // Same for CmpInsts.
3672 if (CmpInst *C = dyn_cast<CmpInst>(I)) {
3673 if (MaxRecurse) {
3674 if (C->getOperand(0) == Op)
3675 return SimplifyCmpInst(C->getPredicate(), RepOp, C->getOperand(1), Q,
3676 MaxRecurse - 1);
3677 if (C->getOperand(1) == Op)
3678 return SimplifyCmpInst(C->getPredicate(), C->getOperand(0), RepOp, Q,
3679 MaxRecurse - 1);
3680 }
3681 }
3682
George Burgess IV8e807bf2018-04-24 00:25:01 +00003683 // Same for GEPs.
3684 if (auto *GEP = dyn_cast<GetElementPtrInst>(I)) {
3685 if (MaxRecurse) {
3686 SmallVector<Value *, 8> NewOps(GEP->getNumOperands());
3687 transform(GEP->operands(), NewOps.begin(),
3688 [&](Value *V) { return V == Op ? RepOp : V; });
3689 return SimplifyGEPInst(GEP->getSourceElementType(), NewOps, Q,
3690 MaxRecurse - 1);
3691 }
3692 }
3693
David Majnemer3f0fb982015-06-06 22:40:21 +00003694 // TODO: We could hand off more cases to instsimplify here.
3695
3696 // If all operands are constant after substituting Op for RepOp then we can
3697 // constant fold the instruction.
3698 if (Constant *CRepOp = dyn_cast<Constant>(RepOp)) {
3699 // Build a list of all constant operands.
3700 SmallVector<Constant *, 8> ConstOps;
3701 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
3702 if (I->getOperand(i) == Op)
3703 ConstOps.push_back(CRepOp);
3704 else if (Constant *COp = dyn_cast<Constant>(I->getOperand(i)))
3705 ConstOps.push_back(COp);
3706 else
3707 break;
3708 }
3709
3710 // All operands were constants, fold it.
3711 if (ConstOps.size() == I->getNumOperands()) {
3712 if (CmpInst *C = dyn_cast<CmpInst>(I))
3713 return ConstantFoldCompareInstOperands(C->getPredicate(), ConstOps[0],
3714 ConstOps[1], Q.DL, Q.TLI);
3715
3716 if (LoadInst *LI = dyn_cast<LoadInst>(I))
3717 if (!LI->isVolatile())
Eduard Burtescu14239212016-01-22 01:17:26 +00003718 return ConstantFoldLoadFromConstPtr(ConstOps[0], LI->getType(), Q.DL);
David Majnemer3f0fb982015-06-06 22:40:21 +00003719
Manuel Jacobe9024592016-01-21 06:33:22 +00003720 return ConstantFoldInstOperands(I, ConstOps, Q.DL, Q.TLI);
David Majnemer3f0fb982015-06-06 22:40:21 +00003721 }
3722 }
3723
3724 return nullptr;
3725}
3726
Sanjay Patel5f5eb582016-07-18 20:56:53 +00003727/// Try to simplify a select instruction when its condition operand is an
3728/// integer comparison where one operand of the compare is a constant.
3729static Value *simplifySelectBitTest(Value *TrueVal, Value *FalseVal, Value *X,
3730 const APInt *Y, bool TrueWhenUnset) {
3731 const APInt *C;
3732
3733 // (X & Y) == 0 ? X & ~Y : X --> X
3734 // (X & Y) != 0 ? X & ~Y : X --> X & ~Y
3735 if (FalseVal == X && match(TrueVal, m_And(m_Specific(X), m_APInt(C))) &&
3736 *Y == ~*C)
3737 return TrueWhenUnset ? FalseVal : TrueVal;
3738
3739 // (X & Y) == 0 ? X : X & ~Y --> X & ~Y
3740 // (X & Y) != 0 ? X : X & ~Y --> X
3741 if (TrueVal == X && match(FalseVal, m_And(m_Specific(X), m_APInt(C))) &&
3742 *Y == ~*C)
3743 return TrueWhenUnset ? FalseVal : TrueVal;
3744
3745 if (Y->isPowerOf2()) {
3746 // (X & Y) == 0 ? X | Y : X --> X | Y
3747 // (X & Y) != 0 ? X | Y : X --> X
3748 if (FalseVal == X && match(TrueVal, m_Or(m_Specific(X), m_APInt(C))) &&
3749 *Y == *C)
3750 return TrueWhenUnset ? TrueVal : FalseVal;
3751
3752 // (X & Y) == 0 ? X : X | Y --> X
3753 // (X & Y) != 0 ? X : X | Y --> X | Y
3754 if (TrueVal == X && match(FalseVal, m_Or(m_Specific(X), m_APInt(C))) &&
3755 *Y == *C)
3756 return TrueWhenUnset ? TrueVal : FalseVal;
3757 }
Matt Arsenault82606662017-01-11 00:57:54 +00003758
Sanjay Patel5f5eb582016-07-18 20:56:53 +00003759 return nullptr;
3760}
3761
Sanjay Patela3bfb4e2016-07-21 21:26:45 +00003762/// An alternative way to test if a bit is set or not uses sgt/slt instead of
3763/// eq/ne.
Craig Topper0aa3a192017-08-14 21:39:51 +00003764static Value *simplifySelectWithFakeICmpEq(Value *CmpLHS, Value *CmpRHS,
3765 ICmpInst::Predicate Pred,
3766 Value *TrueVal, Value *FalseVal) {
3767 Value *X;
3768 APInt Mask;
3769 if (!decomposeBitTestICmp(CmpLHS, CmpRHS, Pred, X, Mask))
3770 return nullptr;
3771
Craig Topper0aa3a192017-08-14 21:39:51 +00003772 return simplifySelectBitTest(TrueVal, FalseVal, X, &Mask,
3773 Pred == ICmpInst::ICMP_EQ);
Sanjay Patela3bfb4e2016-07-21 21:26:45 +00003774}
3775
Sanjay Patel5f5eb582016-07-18 20:56:53 +00003776/// Try to simplify a select instruction when its condition operand is an
3777/// integer comparison.
3778static Value *simplifySelectWithICmpCond(Value *CondVal, Value *TrueVal,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00003779 Value *FalseVal, const SimplifyQuery &Q,
Sanjay Patel5f5eb582016-07-18 20:56:53 +00003780 unsigned MaxRecurse) {
3781 ICmpInst::Predicate Pred;
3782 Value *CmpLHS, *CmpRHS;
3783 if (!match(CondVal, m_ICmp(Pred, m_Value(CmpLHS), m_Value(CmpRHS))))
3784 return nullptr;
3785
Sanjay Patel5f5eb582016-07-18 20:56:53 +00003786 if (ICmpInst::isEquality(Pred) && match(CmpRHS, m_Zero())) {
3787 Value *X;
3788 const APInt *Y;
3789 if (match(CmpLHS, m_And(m_Value(X), m_APInt(Y))))
3790 if (Value *V = simplifySelectBitTest(TrueVal, FalseVal, X, Y,
3791 Pred == ICmpInst::ICMP_EQ))
3792 return V;
Sanjay Patele98ec772018-11-15 14:53:37 +00003793
Sanjay Patel9dada832019-02-26 18:26:56 +00003794 // Test for a bogus zero-shift-guard-op around funnel-shift or rotate.
Sanjay Patele98ec772018-11-15 14:53:37 +00003795 Value *ShAmt;
3796 auto isFsh = m_CombineOr(m_Intrinsic<Intrinsic::fshl>(m_Value(X), m_Value(),
3797 m_Value(ShAmt)),
3798 m_Intrinsic<Intrinsic::fshr>(m_Value(), m_Value(X),
3799 m_Value(ShAmt)));
Sanjay Patele98ec772018-11-15 14:53:37 +00003800 // (ShAmt == 0) ? fshl(X, *, ShAmt) : X --> X
3801 // (ShAmt == 0) ? fshr(*, X, ShAmt) : X --> X
Sanjay Patel9dada832019-02-26 18:26:56 +00003802 if (match(TrueVal, isFsh) && FalseVal == X && CmpLHS == ShAmt &&
3803 Pred == ICmpInst::ICMP_EQ)
3804 return X;
Sanjay Patele98ec772018-11-15 14:53:37 +00003805 // (ShAmt != 0) ? X : fshl(X, *, ShAmt) --> X
3806 // (ShAmt != 0) ? X : fshr(*, X, ShAmt) --> X
Sanjay Patel9dada832019-02-26 18:26:56 +00003807 if (match(FalseVal, isFsh) && TrueVal == X && CmpLHS == ShAmt &&
3808 Pred == ICmpInst::ICMP_NE)
3809 return X;
3810
3811 // Test for a zero-shift-guard-op around rotates. These are used to
3812 // avoid UB from oversized shifts in raw IR rotate patterns, but the
3813 // intrinsics do not have that problem.
3814 // We do not allow this transform for the general funnel shift case because
3815 // that would not preserve the poison safety of the original code.
3816 auto isRotate = m_CombineOr(m_Intrinsic<Intrinsic::fshl>(m_Value(X),
3817 m_Deferred(X),
3818 m_Value(ShAmt)),
3819 m_Intrinsic<Intrinsic::fshr>(m_Value(X),
3820 m_Deferred(X),
3821 m_Value(ShAmt)));
3822 // (ShAmt != 0) ? fshl(X, X, ShAmt) : X --> fshl(X, X, ShAmt)
3823 // (ShAmt != 0) ? fshr(X, X, ShAmt) : X --> fshr(X, X, ShAmt)
3824 if (match(TrueVal, isRotate) && FalseVal == X && CmpLHS == ShAmt &&
3825 Pred == ICmpInst::ICMP_NE)
3826 return TrueVal;
3827 // (ShAmt == 0) ? X : fshl(X, X, ShAmt) --> fshl(X, X, ShAmt)
3828 // (ShAmt == 0) ? X : fshr(X, X, ShAmt) --> fshr(X, X, ShAmt)
3829 if (match(FalseVal, isRotate) && TrueVal == X && CmpLHS == ShAmt &&
3830 Pred == ICmpInst::ICMP_EQ)
3831 return FalseVal;
Sanjay Patel5f5eb582016-07-18 20:56:53 +00003832 }
3833
Craig Topper0aa3a192017-08-14 21:39:51 +00003834 // Check for other compares that behave like bit test.
3835 if (Value *V = simplifySelectWithFakeICmpEq(CmpLHS, CmpRHS, Pred,
3836 TrueVal, FalseVal))
3837 return V;
3838
Sanjay Patel5f5eb582016-07-18 20:56:53 +00003839 // If we have an equality comparison, then we know the value in one of the
3840 // arms of the select. See if substituting this value into the arm and
3841 // simplifying the result yields the same value as the other arm.
3842 if (Pred == ICmpInst::ICMP_EQ) {
3843 if (SimplifyWithOpReplaced(FalseVal, CmpLHS, CmpRHS, Q, MaxRecurse) ==
3844 TrueVal ||
3845 SimplifyWithOpReplaced(FalseVal, CmpRHS, CmpLHS, Q, MaxRecurse) ==
3846 TrueVal)
3847 return FalseVal;
3848 if (SimplifyWithOpReplaced(TrueVal, CmpLHS, CmpRHS, Q, MaxRecurse) ==
3849 FalseVal ||
3850 SimplifyWithOpReplaced(TrueVal, CmpRHS, CmpLHS, Q, MaxRecurse) ==
3851 FalseVal)
3852 return FalseVal;
3853 } else if (Pred == ICmpInst::ICMP_NE) {
3854 if (SimplifyWithOpReplaced(TrueVal, CmpLHS, CmpRHS, Q, MaxRecurse) ==
3855 FalseVal ||
3856 SimplifyWithOpReplaced(TrueVal, CmpRHS, CmpLHS, Q, MaxRecurse) ==
3857 FalseVal)
3858 return TrueVal;
3859 if (SimplifyWithOpReplaced(FalseVal, CmpLHS, CmpRHS, Q, MaxRecurse) ==
3860 TrueVal ||
3861 SimplifyWithOpReplaced(FalseVal, CmpRHS, CmpLHS, Q, MaxRecurse) ==
3862 TrueVal)
3863 return TrueVal;
3864 }
3865
3866 return nullptr;
3867}
3868
Sanjay Patel14401072018-11-05 21:51:39 +00003869/// Try to simplify a select instruction when its condition operand is a
3870/// floating-point comparison.
3871static Value *simplifySelectWithFCmp(Value *Cond, Value *T, Value *F) {
3872 FCmpInst::Predicate Pred;
3873 if (!match(Cond, m_FCmp(Pred, m_Specific(T), m_Specific(F))) &&
3874 !match(Cond, m_FCmp(Pred, m_Specific(F), m_Specific(T))))
3875 return nullptr;
3876
3877 // TODO: The transform may not be valid with -0.0. An incomplete way of
3878 // testing for that possibility is to check if at least one operand is a
3879 // non-zero constant.
3880 const APFloat *C;
3881 if ((match(T, m_APFloat(C)) && C->isNonZero()) ||
3882 (match(F, m_APFloat(C)) && C->isNonZero())) {
3883 // (T == F) ? T : F --> F
3884 // (F == T) ? T : F --> F
3885 if (Pred == FCmpInst::FCMP_OEQ)
3886 return F;
3887
3888 // (T != F) ? T : F --> T
3889 // (F != T) ? T : F --> T
3890 if (Pred == FCmpInst::FCMP_UNE)
3891 return T;
3892 }
3893
3894 return nullptr;
3895}
3896
Sanjay Patel472cc782016-01-11 22:14:42 +00003897/// Given operands for a SelectInst, see if we can fold the result.
3898/// If not, this returns null.
Sanjay Patelac395202018-02-17 14:50:13 +00003899static Value *SimplifySelectInst(Value *Cond, Value *TrueVal, Value *FalseVal,
3900 const SimplifyQuery &Q, unsigned MaxRecurse) {
3901 if (auto *CondC = dyn_cast<Constant>(Cond)) {
3902 if (auto *TrueC = dyn_cast<Constant>(TrueVal))
3903 if (auto *FalseC = dyn_cast<Constant>(FalseVal))
3904 return ConstantFoldSelectInstruction(CondC, TrueC, FalseC);
3905
3906 // select undef, X, Y -> X or Y
3907 if (isa<UndefValue>(CondC))
3908 return isa<Constant>(FalseVal) ? FalseVal : TrueVal;
3909
3910 // TODO: Vector constants with undef elements don't simplify.
3911
3912 // select true, X, Y -> X
3913 if (CondC->isAllOnesValue())
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00003914 return TrueVal;
Sanjay Patelac395202018-02-17 14:50:13 +00003915 // select false, X, Y -> Y
3916 if (CondC->isNullValue())
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00003917 return FalseVal;
3918 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003919
Sanjay Patelac395202018-02-17 14:50:13 +00003920 // select ?, X, X -> X
Duncan Sands772749a2011-01-01 20:08:02 +00003921 if (TrueVal == FalseVal)
Chris Lattnerc707fa92010-04-20 05:32:14 +00003922 return TrueVal;
Duncan Sands7e800d62010-11-14 11:23:23 +00003923
Sanjay Patelac395202018-02-17 14:50:13 +00003924 if (isa<UndefValue>(TrueVal)) // select ?, undef, X -> X
Dan Gohman54664ed2011-07-01 01:03:43 +00003925 return FalseVal;
Sanjay Patelac395202018-02-17 14:50:13 +00003926 if (isa<UndefValue>(FalseVal)) // select ?, X, undef -> X
Dan Gohman54664ed2011-07-01 01:03:43 +00003927 return TrueVal;
Duncan Sands7e800d62010-11-14 11:23:23 +00003928
Sanjay Patel5f5eb582016-07-18 20:56:53 +00003929 if (Value *V =
Sanjay Patelac395202018-02-17 14:50:13 +00003930 simplifySelectWithICmpCond(Cond, TrueVal, FalseVal, Q, MaxRecurse))
Sanjay Patel5f5eb582016-07-18 20:56:53 +00003931 return V;
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003932
Sanjay Patel14401072018-11-05 21:51:39 +00003933 if (Value *V = simplifySelectWithFCmp(Cond, TrueVal, FalseVal))
3934 return V;
3935
David Bolvanskyf9476082018-07-28 06:55:51 +00003936 if (Value *V = foldSelectWithBinaryOp(Cond, TrueVal, FalseVal))
3937 return V;
3938
Sanjay Patel7d82d372018-12-02 13:26:03 +00003939 Optional<bool> Imp = isImpliedByDomCondition(Cond, Q.CxtI, Q.DL);
3940 if (Imp)
3941 return *Imp ? TrueVal : FalseVal;
Sanjay Pateld8022702018-11-29 18:44:39 +00003942
Craig Topper9f008862014-04-15 04:59:12 +00003943 return nullptr;
Chris Lattnerc707fa92010-04-20 05:32:14 +00003944}
3945
Duncan Sandsb8cee002012-03-13 11:42:19 +00003946Value *llvm::SimplifySelectInst(Value *Cond, Value *TrueVal, Value *FalseVal,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00003947 const SimplifyQuery &Q) {
3948 return ::SimplifySelectInst(Cond, TrueVal, FalseVal, Q, RecursionLimit);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003949}
3950
Sanjay Patel472cc782016-01-11 22:14:42 +00003951/// Given operands for an GetElementPtrInst, see if we can fold the result.
3952/// If not, this returns null.
David Blaikie4a2e73b2015-04-02 18:55:32 +00003953static Value *SimplifyGEPInst(Type *SrcTy, ArrayRef<Value *> Ops,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00003954 const SimplifyQuery &Q, unsigned) {
Duncan Sands8a0f4862010-11-22 13:42:49 +00003955 // The type of the GEP pointer operand.
David Blaikie4a2e73b2015-04-02 18:55:32 +00003956 unsigned AS =
3957 cast<PointerType>(Ops[0]->getType()->getScalarType())->getAddressSpace();
Duncan Sands8a0f4862010-11-22 13:42:49 +00003958
Chris Lattner8574aba2009-11-27 00:29:05 +00003959 // getelementptr P -> P.
Jay Foadb992a632011-07-19 15:07:52 +00003960 if (Ops.size() == 1)
Chris Lattner8574aba2009-11-27 00:29:05 +00003961 return Ops[0];
3962
Nico Weber48c82402014-08-27 20:06:19 +00003963 // Compute the (pointer) type returned by the GEP instruction.
David Blaikie4a2e73b2015-04-02 18:55:32 +00003964 Type *LastType = GetElementPtrInst::getIndexedType(SrcTy, Ops.slice(1));
Nico Weber48c82402014-08-27 20:06:19 +00003965 Type *GEPTy = PointerType::get(LastType, AS);
3966 if (VectorType *VT = dyn_cast<VectorType>(Ops[0]->getType()))
3967 GEPTy = VectorType::get(GEPTy, VT->getNumElements());
Davide Italianoa9f047a2017-04-19 14:23:42 +00003968 else if (VectorType *VT = dyn_cast<VectorType>(Ops[1]->getType()))
3969 GEPTy = VectorType::get(GEPTy, VT->getNumElements());
Nico Weber48c82402014-08-27 20:06:19 +00003970
3971 if (isa<UndefValue>(Ops[0]))
Duncan Sands8a0f4862010-11-22 13:42:49 +00003972 return UndefValue::get(GEPTy);
Chris Lattner8574aba2009-11-27 00:29:05 +00003973
Jay Foadb992a632011-07-19 15:07:52 +00003974 if (Ops.size() == 2) {
Duncan Sandscf4bceb2010-11-21 13:53:09 +00003975 // getelementptr P, 0 -> P.
Matthew Simpsonc1c4ad62018-03-15 16:00:29 +00003976 if (match(Ops[1], m_Zero()) && Ops[0]->getType() == GEPTy)
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00003977 return Ops[0];
Nico Weber48c82402014-08-27 20:06:19 +00003978
David Blaikie4a2e73b2015-04-02 18:55:32 +00003979 Type *Ty = SrcTy;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003980 if (Ty->isSized()) {
Nico Weber48c82402014-08-27 20:06:19 +00003981 Value *P;
3982 uint64_t C;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003983 uint64_t TyAllocSize = Q.DL.getTypeAllocSize(Ty);
Nico Weber48c82402014-08-27 20:06:19 +00003984 // getelementptr P, N -> P if P points to a type of zero size.
Matthew Simpsonc1c4ad62018-03-15 16:00:29 +00003985 if (TyAllocSize == 0 && Ops[0]->getType() == GEPTy)
Duncan Sandscf4bceb2010-11-21 13:53:09 +00003986 return Ops[0];
Nico Weber48c82402014-08-27 20:06:19 +00003987
3988 // The following transforms are only safe if the ptrtoint cast
3989 // doesn't truncate the pointers.
3990 if (Ops[1]->getType()->getScalarSizeInBits() ==
Elena Demikhovsky945b7e52018-02-14 06:58:08 +00003991 Q.DL.getIndexSizeInBits(AS)) {
Nico Weber48c82402014-08-27 20:06:19 +00003992 auto PtrToIntOrZero = [GEPTy](Value *P) -> Value * {
3993 if (match(P, m_Zero()))
3994 return Constant::getNullValue(GEPTy);
3995 Value *Temp;
3996 if (match(P, m_PtrToInt(m_Value(Temp))))
David Majnemer11ca2972014-08-27 20:08:34 +00003997 if (Temp->getType() == GEPTy)
3998 return Temp;
Nico Weber48c82402014-08-27 20:06:19 +00003999 return nullptr;
4000 };
4001
4002 // getelementptr V, (sub P, V) -> P if P points to a type of size 1.
4003 if (TyAllocSize == 1 &&
4004 match(Ops[1], m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0])))))
4005 if (Value *R = PtrToIntOrZero(P))
4006 return R;
4007
4008 // getelementptr V, (ashr (sub P, V), C) -> Q
4009 // if P points to a type of size 1 << C.
4010 if (match(Ops[1],
4011 m_AShr(m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0]))),
4012 m_ConstantInt(C))) &&
4013 TyAllocSize == 1ULL << C)
4014 if (Value *R = PtrToIntOrZero(P))
4015 return R;
4016
4017 // getelementptr V, (sdiv (sub P, V), C) -> Q
4018 // if P points to a type of size C.
4019 if (match(Ops[1],
4020 m_SDiv(m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0]))),
4021 m_SpecificInt(TyAllocSize))))
4022 if (Value *R = PtrToIntOrZero(P))
4023 return R;
4024 }
Duncan Sandscf4bceb2010-11-21 13:53:09 +00004025 }
4026 }
Duncan Sands7e800d62010-11-14 11:23:23 +00004027
David Majnemerd1501372016-08-07 07:58:12 +00004028 if (Q.DL.getTypeAllocSize(LastType) == 1 &&
4029 all_of(Ops.slice(1).drop_back(1),
4030 [](Value *Idx) { return match(Idx, m_Zero()); })) {
Elena Demikhovsky945b7e52018-02-14 06:58:08 +00004031 unsigned IdxWidth =
4032 Q.DL.getIndexSizeInBits(Ops[0]->getType()->getPointerAddressSpace());
4033 if (Q.DL.getTypeSizeInBits(Ops.back()->getType()) == IdxWidth) {
4034 APInt BasePtrOffset(IdxWidth, 0);
David Majnemerd1501372016-08-07 07:58:12 +00004035 Value *StrippedBasePtr =
4036 Ops[0]->stripAndAccumulateInBoundsConstantOffsets(Q.DL,
4037 BasePtrOffset);
4038
David Majnemer5c5df622016-08-16 06:13:46 +00004039 // gep (gep V, C), (sub 0, V) -> C
David Majnemerd1501372016-08-07 07:58:12 +00004040 if (match(Ops.back(),
4041 m_Sub(m_Zero(), m_PtrToInt(m_Specific(StrippedBasePtr))))) {
4042 auto *CI = ConstantInt::get(GEPTy->getContext(), BasePtrOffset);
4043 return ConstantExpr::getIntToPtr(CI, GEPTy);
4044 }
David Majnemer5c5df622016-08-16 06:13:46 +00004045 // gep (gep V, C), (xor V, -1) -> C-1
4046 if (match(Ops.back(),
4047 m_Xor(m_PtrToInt(m_Specific(StrippedBasePtr)), m_AllOnes()))) {
4048 auto *CI = ConstantInt::get(GEPTy->getContext(), BasePtrOffset - 1);
4049 return ConstantExpr::getIntToPtr(CI, GEPTy);
4050 }
David Majnemerd1501372016-08-07 07:58:12 +00004051 }
4052 }
4053
Chris Lattner8574aba2009-11-27 00:29:05 +00004054 // Check to see if this is constant foldable.
Craig Topperda8037f2017-06-04 22:41:56 +00004055 if (!all_of(Ops, [](Value *V) { return isa<Constant>(V); }))
4056 return nullptr;
Duncan Sands7e800d62010-11-14 11:23:23 +00004057
Joey Gouly61eaa632017-06-06 10:17:14 +00004058 auto *CE = ConstantExpr::getGetElementPtr(SrcTy, cast<Constant>(Ops[0]),
4059 Ops.slice(1));
4060 if (auto *CEFolded = ConstantFoldConstant(CE, Q.DL))
4061 return CEFolded;
4062 return CE;
Chris Lattner8574aba2009-11-27 00:29:05 +00004063}
4064
Manuel Jacob20c6d5b2016-01-17 22:46:43 +00004065Value *llvm::SimplifyGEPInst(Type *SrcTy, ArrayRef<Value *> Ops,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00004066 const SimplifyQuery &Q) {
4067 return ::SimplifyGEPInst(SrcTy, Ops, Q, RecursionLimit);
Duncan Sandsb8cee002012-03-13 11:42:19 +00004068}
4069
Sanjay Patel472cc782016-01-11 22:14:42 +00004070/// Given operands for an InsertValueInst, see if we can fold the result.
4071/// If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00004072static Value *SimplifyInsertValueInst(Value *Agg, Value *Val,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00004073 ArrayRef<unsigned> Idxs, const SimplifyQuery &Q,
Duncan Sandsb8cee002012-03-13 11:42:19 +00004074 unsigned) {
Duncan Sandsfd26a952011-09-05 06:52:48 +00004075 if (Constant *CAgg = dyn_cast<Constant>(Agg))
4076 if (Constant *CVal = dyn_cast<Constant>(Val))
4077 return ConstantFoldInsertValueInstruction(CAgg, CVal, Idxs);
4078
4079 // insertvalue x, undef, n -> x
4080 if (match(Val, m_Undef()))
4081 return Agg;
4082
4083 // insertvalue x, (extractvalue y, n), n
4084 if (ExtractValueInst *EV = dyn_cast<ExtractValueInst>(Val))
Benjamin Kramer4b79c212011-09-05 18:16:19 +00004085 if (EV->getAggregateOperand()->getType() == Agg->getType() &&
4086 EV->getIndices() == Idxs) {
Duncan Sandsfd26a952011-09-05 06:52:48 +00004087 // insertvalue undef, (extractvalue y, n), n -> y
4088 if (match(Agg, m_Undef()))
4089 return EV->getAggregateOperand();
4090
4091 // insertvalue y, (extractvalue y, n), n -> y
4092 if (Agg == EV->getAggregateOperand())
4093 return Agg;
4094 }
4095
Craig Topper9f008862014-04-15 04:59:12 +00004096 return nullptr;
Duncan Sandsfd26a952011-09-05 06:52:48 +00004097}
4098
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00004099Value *llvm::SimplifyInsertValueInst(Value *Agg, Value *Val,
4100 ArrayRef<unsigned> Idxs,
4101 const SimplifyQuery &Q) {
4102 return ::SimplifyInsertValueInst(Agg, Val, Idxs, Q, RecursionLimit);
4103}
4104
Igor Laevskye0edb662017-12-13 11:21:18 +00004105Value *llvm::SimplifyInsertElementInst(Value *Vec, Value *Val, Value *Idx,
4106 const SimplifyQuery &Q) {
4107 // Try to constant fold.
4108 auto *VecC = dyn_cast<Constant>(Vec);
4109 auto *ValC = dyn_cast<Constant>(Val);
4110 auto *IdxC = dyn_cast<Constant>(Idx);
4111 if (VecC && ValC && IdxC)
4112 return ConstantFoldInsertElementInstruction(VecC, ValC, IdxC);
4113
4114 // Fold into undef if index is out of bounds.
4115 if (auto *CI = dyn_cast<ConstantInt>(Idx)) {
4116 uint64_t NumElements = cast<VectorType>(Vec->getType())->getNumElements();
Igor Laevskye0edb662017-12-13 11:21:18 +00004117 if (CI->uge(NumElements))
4118 return UndefValue::get(Vec->getType());
4119 }
4120
Philip Reamese499bc32017-12-30 05:54:22 +00004121 // If index is undef, it might be out of bounds (see above case)
4122 if (isa<UndefValue>(Idx))
4123 return UndefValue::get(Vec->getType());
Igor Laevskye0edb662017-12-13 11:21:18 +00004124
Sanjay Patele60cb7d2019-05-23 21:49:47 +00004125 // Inserting an undef scalar? Assume it is the same value as the existing
4126 // vector element.
4127 if (isa<UndefValue>(Val))
4128 return Vec;
4129
Sanjay Patel8869a982019-05-24 00:13:58 +00004130 // If we are extracting a value from a vector, then inserting it into the same
4131 // place, that's the input vector:
4132 // insertelt Vec, (extractelt Vec, Idx), Idx --> Vec
4133 if (match(Val, m_ExtractElement(m_Specific(Vec), m_Specific(Idx))))
4134 return Vec;
4135
Igor Laevskye0edb662017-12-13 11:21:18 +00004136 return nullptr;
4137}
4138
Sanjay Patel472cc782016-01-11 22:14:42 +00004139/// Given operands for an ExtractValueInst, see if we can fold the result.
4140/// If not, this returns null.
David Majnemer25a796e2015-07-13 01:15:46 +00004141static Value *SimplifyExtractValueInst(Value *Agg, ArrayRef<unsigned> Idxs,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00004142 const SimplifyQuery &, unsigned) {
David Majnemer25a796e2015-07-13 01:15:46 +00004143 if (auto *CAgg = dyn_cast<Constant>(Agg))
4144 return ConstantFoldExtractValueInstruction(CAgg, Idxs);
4145
4146 // extractvalue x, (insertvalue y, elt, n), n -> elt
4147 unsigned NumIdxs = Idxs.size();
4148 for (auto *IVI = dyn_cast<InsertValueInst>(Agg); IVI != nullptr;
4149 IVI = dyn_cast<InsertValueInst>(IVI->getAggregateOperand())) {
4150 ArrayRef<unsigned> InsertValueIdxs = IVI->getIndices();
4151 unsigned NumInsertValueIdxs = InsertValueIdxs.size();
4152 unsigned NumCommonIdxs = std::min(NumInsertValueIdxs, NumIdxs);
4153 if (InsertValueIdxs.slice(0, NumCommonIdxs) ==
4154 Idxs.slice(0, NumCommonIdxs)) {
4155 if (NumIdxs == NumInsertValueIdxs)
4156 return IVI->getInsertedValueOperand();
4157 break;
4158 }
4159 }
4160
4161 return nullptr;
4162}
4163
4164Value *llvm::SimplifyExtractValueInst(Value *Agg, ArrayRef<unsigned> Idxs,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00004165 const SimplifyQuery &Q) {
4166 return ::SimplifyExtractValueInst(Agg, Idxs, Q, RecursionLimit);
4167}
4168
Sanjay Patel472cc782016-01-11 22:14:42 +00004169/// Given operands for an ExtractElementInst, see if we can fold the result.
4170/// If not, this returns null.
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00004171static Value *SimplifyExtractElementInst(Value *Vec, Value *Idx, const SimplifyQuery &,
David Majnemer599ca442015-07-13 01:15:53 +00004172 unsigned) {
4173 if (auto *CVec = dyn_cast<Constant>(Vec)) {
4174 if (auto *CIdx = dyn_cast<Constant>(Idx))
4175 return ConstantFoldExtractElementInstruction(CVec, CIdx);
4176
4177 // The index is not relevant if our vector is a splat.
4178 if (auto *Splat = CVec->getSplatValue())
4179 return Splat;
4180
4181 if (isa<UndefValue>(Vec))
4182 return UndefValue::get(Vec->getType()->getVectorElementType());
4183 }
4184
4185 // If extracting a specified index from the vector, see if we can recursively
4186 // find a previously computed scalar that was inserted into the vector.
Philip Reamese499bc32017-12-30 05:54:22 +00004187 if (auto *IdxC = dyn_cast<ConstantInt>(Idx)) {
4188 if (IdxC->getValue().uge(Vec->getType()->getVectorNumElements()))
4189 // definitely out of bounds, thus undefined result
4190 return UndefValue::get(Vec->getType()->getVectorElementType());
4191 if (Value *Elt = findScalarElement(Vec, IdxC->getZExtValue()))
4192 return Elt;
4193 }
David Majnemer599ca442015-07-13 01:15:53 +00004194
Zvi Rackover2e6e88f2017-12-06 17:51:46 +00004195 // An undef extract index can be arbitrarily chosen to be an out-of-range
4196 // index value, which would result in the instruction being undef.
4197 if (isa<UndefValue>(Idx))
4198 return UndefValue::get(Vec->getType()->getVectorElementType());
4199
David Majnemer599ca442015-07-13 01:15:53 +00004200 return nullptr;
4201}
4202
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00004203Value *llvm::SimplifyExtractElementInst(Value *Vec, Value *Idx,
4204 const SimplifyQuery &Q) {
4205 return ::SimplifyExtractElementInst(Vec, Idx, Q, RecursionLimit);
4206}
4207
Sanjay Patel472cc782016-01-11 22:14:42 +00004208/// See if we can fold the given phi. If not, returns null.
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00004209static Value *SimplifyPHINode(PHINode *PN, const SimplifyQuery &Q) {
Duncan Sands7412f6e2010-11-17 04:30:22 +00004210 // If all of the PHI's incoming values are the same then replace the PHI node
4211 // with the common value.
Craig Topper9f008862014-04-15 04:59:12 +00004212 Value *CommonValue = nullptr;
Duncan Sands7412f6e2010-11-17 04:30:22 +00004213 bool HasUndefInput = false;
Pete Cooper833f34d2015-05-12 20:05:31 +00004214 for (Value *Incoming : PN->incoming_values()) {
Duncan Sands7412f6e2010-11-17 04:30:22 +00004215 // If the incoming value is the phi node itself, it can safely be skipped.
4216 if (Incoming == PN) continue;
4217 if (isa<UndefValue>(Incoming)) {
4218 // Remember that we saw an undef value, but otherwise ignore them.
4219 HasUndefInput = true;
4220 continue;
4221 }
4222 if (CommonValue && Incoming != CommonValue)
Craig Topper9f008862014-04-15 04:59:12 +00004223 return nullptr; // Not the same, bail out.
Duncan Sands7412f6e2010-11-17 04:30:22 +00004224 CommonValue = Incoming;
4225 }
4226
4227 // If CommonValue is null then all of the incoming values were either undef or
4228 // equal to the phi node itself.
4229 if (!CommonValue)
4230 return UndefValue::get(PN->getType());
4231
4232 // If we have a PHI node like phi(X, undef, X), where X is defined by some
4233 // instruction, we cannot return X as the result of the PHI node unless it
4234 // dominates the PHI block.
4235 if (HasUndefInput)
Sanjay Patel5da361a2018-04-10 18:38:19 +00004236 return valueDominatesPHI(CommonValue, PN, Q.DT) ? CommonValue : nullptr;
Duncan Sands7412f6e2010-11-17 04:30:22 +00004237
4238 return CommonValue;
4239}
4240
David Majnemer6774d612016-07-26 17:58:05 +00004241static Value *SimplifyCastInst(unsigned CastOpc, Value *Op,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00004242 Type *Ty, const SimplifyQuery &Q, unsigned MaxRecurse) {
David Majnemer126de5d2016-07-25 03:39:21 +00004243 if (auto *C = dyn_cast<Constant>(Op))
David Majnemer6774d612016-07-26 17:58:05 +00004244 return ConstantFoldCastOperand(CastOpc, C, Ty, Q.DL);
Duncan Sands395ac42d2012-03-13 14:07:05 +00004245
David Majnemer6774d612016-07-26 17:58:05 +00004246 if (auto *CI = dyn_cast<CastInst>(Op)) {
4247 auto *Src = CI->getOperand(0);
4248 Type *SrcTy = Src->getType();
4249 Type *MidTy = CI->getType();
4250 Type *DstTy = Ty;
4251 if (Src->getType() == Ty) {
4252 auto FirstOp = static_cast<Instruction::CastOps>(CI->getOpcode());
4253 auto SecondOp = static_cast<Instruction::CastOps>(CastOpc);
4254 Type *SrcIntPtrTy =
4255 SrcTy->isPtrOrPtrVectorTy() ? Q.DL.getIntPtrType(SrcTy) : nullptr;
4256 Type *MidIntPtrTy =
4257 MidTy->isPtrOrPtrVectorTy() ? Q.DL.getIntPtrType(MidTy) : nullptr;
4258 Type *DstIntPtrTy =
4259 DstTy->isPtrOrPtrVectorTy() ? Q.DL.getIntPtrType(DstTy) : nullptr;
4260 if (CastInst::isEliminableCastPair(FirstOp, SecondOp, SrcTy, MidTy, DstTy,
4261 SrcIntPtrTy, MidIntPtrTy,
4262 DstIntPtrTy) == Instruction::BitCast)
4263 return Src;
4264 }
4265 }
David Majnemera90a6212016-07-26 05:52:29 +00004266
4267 // bitcast x -> x
David Majnemer6774d612016-07-26 17:58:05 +00004268 if (CastOpc == Instruction::BitCast)
4269 if (Op->getType() == Ty)
4270 return Op;
David Majnemera90a6212016-07-26 05:52:29 +00004271
4272 return nullptr;
4273}
4274
David Majnemer6774d612016-07-26 17:58:05 +00004275Value *llvm::SimplifyCastInst(unsigned CastOpc, Value *Op, Type *Ty,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00004276 const SimplifyQuery &Q) {
4277 return ::SimplifyCastInst(CastOpc, Op, Ty, Q, RecursionLimit);
4278}
4279
Sanjay Patela3c297d2017-04-19 16:48:22 +00004280/// For the given destination element of a shuffle, peek through shuffles to
4281/// match a root vector source operand that contains that element in the same
4282/// vector lane (ie, the same mask index), so we can eliminate the shuffle(s).
4283static Value *foldIdentityShuffles(int DestElt, Value *Op0, Value *Op1,
Zvi Rackover558f86b2017-05-08 15:46:58 +00004284 int MaskVal, Value *RootVec,
Sanjay Patela3c297d2017-04-19 16:48:22 +00004285 unsigned MaxRecurse) {
4286 if (!MaxRecurse--)
4287 return nullptr;
4288
4289 // Bail out if any mask value is undefined. That kind of shuffle may be
4290 // simplified further based on demanded bits or other folds.
Sanjay Patela3c297d2017-04-19 16:48:22 +00004291 if (MaskVal == -1)
4292 return nullptr;
4293
4294 // The mask value chooses which source operand we need to look at next.
Sanjay Patela3c297d2017-04-19 16:48:22 +00004295 int InVecNumElts = Op0->getType()->getVectorNumElements();
Zvi Rackover558f86b2017-05-08 15:46:58 +00004296 int RootElt = MaskVal;
4297 Value *SourceOp = Op0;
4298 if (MaskVal >= InVecNumElts) {
Sanjay Patela3c297d2017-04-19 16:48:22 +00004299 RootElt = MaskVal - InVecNumElts;
4300 SourceOp = Op1;
4301 }
4302
4303 // If the source operand is a shuffle itself, look through it to find the
4304 // matching root vector.
4305 if (auto *SourceShuf = dyn_cast<ShuffleVectorInst>(SourceOp)) {
4306 return foldIdentityShuffles(
4307 DestElt, SourceShuf->getOperand(0), SourceShuf->getOperand(1),
Zvi Rackover558f86b2017-05-08 15:46:58 +00004308 SourceShuf->getMaskValue(RootElt), RootVec, MaxRecurse);
Sanjay Patela3c297d2017-04-19 16:48:22 +00004309 }
4310
4311 // TODO: Look through bitcasts? What if the bitcast changes the vector element
4312 // size?
4313
4314 // The source operand is not a shuffle. Initialize the root vector value for
4315 // this shuffle if that has not been done yet.
4316 if (!RootVec)
4317 RootVec = SourceOp;
4318
4319 // Give up as soon as a source operand does not match the existing root value.
4320 if (RootVec != SourceOp)
4321 return nullptr;
4322
4323 // The element must be coming from the same lane in the source vector
4324 // (although it may have crossed lanes in intermediate shuffles).
4325 if (RootElt != DestElt)
4326 return nullptr;
4327
4328 return RootVec;
4329}
4330
Zvi Rackover8f460652017-04-03 22:05:30 +00004331static Value *SimplifyShuffleVectorInst(Value *Op0, Value *Op1, Constant *Mask,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00004332 Type *RetTy, const SimplifyQuery &Q,
Zvi Rackover8f460652017-04-03 22:05:30 +00004333 unsigned MaxRecurse) {
Zvi Rackover4086e132017-04-30 06:06:26 +00004334 if (isa<UndefValue>(Mask))
4335 return UndefValue::get(RetTy);
4336
Zvi Rackover30efd24d2017-04-11 21:37:02 +00004337 Type *InVecTy = Op0->getType();
Zvi Rackover8f460652017-04-03 22:05:30 +00004338 unsigned MaskNumElts = Mask->getType()->getVectorNumElements();
Zvi Rackover30efd24d2017-04-11 21:37:02 +00004339 unsigned InVecNumElts = InVecTy->getVectorNumElements();
Zvi Rackover8f460652017-04-03 22:05:30 +00004340
Zvi Rackover0411e462017-04-30 06:10:54 +00004341 SmallVector<int, 32> Indices;
4342 ShuffleVectorInst::getShuffleMask(Mask, Indices);
4343 assert(MaskNumElts == Indices.size() &&
4344 "Size of Indices not same as number of mask elements?");
4345
Zvi Rackover973ff7c2017-05-07 18:16:37 +00004346 // Canonicalization: If mask does not select elements from an input vector,
4347 // replace that input vector with undef.
Zvi Rackover8f460652017-04-03 22:05:30 +00004348 bool MaskSelects0 = false, MaskSelects1 = false;
4349 for (unsigned i = 0; i != MaskNumElts; ++i) {
Zvi Rackover0411e462017-04-30 06:10:54 +00004350 if (Indices[i] == -1)
Zvi Rackover8f460652017-04-03 22:05:30 +00004351 continue;
Zvi Rackover0411e462017-04-30 06:10:54 +00004352 if ((unsigned)Indices[i] < InVecNumElts)
Zvi Rackover8f460652017-04-03 22:05:30 +00004353 MaskSelects0 = true;
4354 else
4355 MaskSelects1 = true;
4356 }
Zvi Rackover973ff7c2017-05-07 18:16:37 +00004357 if (!MaskSelects0)
4358 Op0 = UndefValue::get(InVecTy);
4359 if (!MaskSelects1)
4360 Op1 = UndefValue::get(InVecTy);
4361
4362 auto *Op0Const = dyn_cast<Constant>(Op0);
4363 auto *Op1Const = dyn_cast<Constant>(Op1);
4364
4365 // If all operands are constant, constant fold the shuffle.
4366 if (Op0Const && Op1Const)
4367 return ConstantFoldShuffleVectorInstruction(Op0Const, Op1Const, Mask);
4368
4369 // Canonicalization: if only one input vector is constant, it shall be the
4370 // second one.
4371 if (Op0Const && !Op1Const) {
4372 std::swap(Op0, Op1);
Zvi Rackoverdfbd3d72017-05-08 12:40:18 +00004373 ShuffleVectorInst::commuteShuffleMask(Indices, InVecNumElts);
Zvi Rackover973ff7c2017-05-07 18:16:37 +00004374 }
Zvi Rackover30efd24d2017-04-11 21:37:02 +00004375
4376 // A shuffle of a splat is always the splat itself. Legal if the shuffle's
4377 // value type is same as the input vectors' type.
4378 if (auto *OpShuf = dyn_cast<ShuffleVectorInst>(Op0))
Zvi Rackover973ff7c2017-05-07 18:16:37 +00004379 if (isa<UndefValue>(Op1) && RetTy == InVecTy &&
Zvi Rackover30efd24d2017-04-11 21:37:02 +00004380 OpShuf->getMask()->getSplatValue())
4381 return Op0;
Zvi Rackover8f460652017-04-03 22:05:30 +00004382
Sanjay Patela3c297d2017-04-19 16:48:22 +00004383 // Don't fold a shuffle with undef mask elements. This may get folded in a
4384 // better way using demanded bits or other analysis.
4385 // TODO: Should we allow this?
Zvi Rackover0411e462017-04-30 06:10:54 +00004386 if (find(Indices, -1) != Indices.end())
4387 return nullptr;
Sanjay Patela3c297d2017-04-19 16:48:22 +00004388
4389 // Check if every element of this shuffle can be mapped back to the
4390 // corresponding element of a single root vector. If so, we don't need this
4391 // shuffle. This handles simple identity shuffles as well as chains of
4392 // shuffles that may widen/narrow and/or move elements across lanes and back.
4393 Value *RootVec = nullptr;
4394 for (unsigned i = 0; i != MaskNumElts; ++i) {
4395 // Note that recursion is limited for each vector element, so if any element
4396 // exceeds the limit, this will fail to simplify.
Zvi Rackover558f86b2017-05-08 15:46:58 +00004397 RootVec =
4398 foldIdentityShuffles(i, Op0, Op1, Indices[i], RootVec, MaxRecurse);
Sanjay Patela3c297d2017-04-19 16:48:22 +00004399
4400 // We can't replace a widening/narrowing shuffle with one of its operands.
4401 if (!RootVec || RootVec->getType() != RetTy)
4402 return nullptr;
4403 }
4404 return RootVec;
Zvi Rackover8f460652017-04-03 22:05:30 +00004405}
4406
4407/// Given operands for a ShuffleVectorInst, fold the result or return null.
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00004408Value *llvm::SimplifyShuffleVectorInst(Value *Op0, Value *Op1, Constant *Mask,
4409 Type *RetTy, const SimplifyQuery &Q) {
4410 return ::SimplifyShuffleVectorInst(Op0, Op1, Mask, RetTy, Q, RecursionLimit);
Zvi Rackover8f460652017-04-03 22:05:30 +00004411}
4412
Cameron McInallyc3167692019-05-06 16:05:10 +00004413static Constant *foldConstant(Instruction::UnaryOps Opcode,
4414 Value *&Op, const SimplifyQuery &Q) {
4415 if (auto *C = dyn_cast<Constant>(Op))
4416 return ConstantFoldUnaryOpOperand(Opcode, C, Q.DL);
4417 return nullptr;
4418}
4419
4420/// Given the operand for an FNeg, see if we can fold the result. If not, this
4421/// returns null.
4422static Value *simplifyFNegInst(Value *Op, FastMathFlags FMF,
4423 const SimplifyQuery &Q, unsigned MaxRecurse) {
4424 if (Constant *C = foldConstant(Instruction::FNeg, Op, Q))
4425 return C;
4426
4427 Value *X;
4428 // fneg (fneg X) ==> X
4429 if (match(Op, m_FNeg(m_Value(X))))
4430 return X;
4431
4432 return nullptr;
4433}
4434
4435Value *llvm::SimplifyFNegInst(Value *Op, FastMathFlags FMF,
4436 const SimplifyQuery &Q) {
4437 return ::simplifyFNegInst(Op, FMF, Q, RecursionLimit);
4438}
4439
Sanjay Patele2359422018-03-21 19:31:53 +00004440static Constant *propagateNaN(Constant *In) {
4441 // If the input is a vector with undef elements, just return a default NaN.
4442 if (!In->isNaN())
4443 return ConstantFP::getNaN(In->getType());
4444
4445 // Propagate the existing NaN constant when possible.
4446 // TODO: Should we quiet a signaling NaN?
4447 return In;
4448}
4449
4450static Constant *simplifyFPBinop(Value *Op0, Value *Op1) {
4451 if (isa<UndefValue>(Op0) || isa<UndefValue>(Op1))
4452 return ConstantFP::getNaN(Op0->getType());
4453
4454 if (match(Op0, m_NaN()))
4455 return propagateNaN(cast<Constant>(Op0));
4456 if (match(Op1, m_NaN()))
4457 return propagateNaN(cast<Constant>(Op1));
4458
4459 return nullptr;
4460}
4461
Sanjay Patelfa877fd2017-09-11 13:34:27 +00004462/// Given operands for an FAdd, see if we can fold the result. If not, this
4463/// returns null.
4464static Value *SimplifyFAddInst(Value *Op0, Value *Op1, FastMathFlags FMF,
4465 const SimplifyQuery &Q, unsigned MaxRecurse) {
4466 if (Constant *C = foldOrCommuteConstant(Instruction::FAdd, Op0, Op1, Q))
4467 return C;
4468
Sanjay Patele2359422018-03-21 19:31:53 +00004469 if (Constant *C = simplifyFPBinop(Op0, Op1))
4470 return C;
Sanjay Patel42227162018-03-10 16:51:28 +00004471
Sanjay Patelfa877fd2017-09-11 13:34:27 +00004472 // fadd X, -0 ==> X
Sanjay Patel93e64dd2018-03-25 21:16:33 +00004473 if (match(Op1, m_NegZeroFP()))
Sanjay Patelfa877fd2017-09-11 13:34:27 +00004474 return Op0;
4475
4476 // fadd X, 0 ==> X, when we know X is not -0
Sanjay Patel93e64dd2018-03-25 21:16:33 +00004477 if (match(Op1, m_PosZeroFP()) &&
Sanjay Patelfa877fd2017-09-11 13:34:27 +00004478 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0, Q.TLI)))
4479 return Op0;
4480
Cameron McInally0c82d9b2019-05-15 14:31:33 +00004481 // With nnan: -X + X --> 0.0 (and commuted variant)
Sanjay Patel11f7f992018-03-14 21:23:27 +00004482 // We don't have to explicitly exclude infinities (ninf): INF + -INF == NaN.
4483 // Negative zeros are allowed because we always end up with positive zero:
4484 // X = -0.0: (-0.0 - (-0.0)) + (-0.0) == ( 0.0) + (-0.0) == 0.0
4485 // X = -0.0: ( 0.0 - (-0.0)) + (-0.0) == ( 0.0) + (-0.0) == 0.0
4486 // X = 0.0: (-0.0 - ( 0.0)) + ( 0.0) == (-0.0) + ( 0.0) == 0.0
4487 // X = 0.0: ( 0.0 - ( 0.0)) + ( 0.0) == ( 0.0) + ( 0.0) == 0.0
Cameron McInally0c82d9b2019-05-15 14:31:33 +00004488 if (FMF.noNaNs()) {
4489 if (match(Op0, m_FSub(m_AnyZeroFP(), m_Specific(Op1))) ||
4490 match(Op1, m_FSub(m_AnyZeroFP(), m_Specific(Op0))))
4491 return ConstantFP::getNullValue(Op0->getType());
4492
4493 if (match(Op0, m_FNeg(m_Specific(Op1))) ||
4494 match(Op1, m_FNeg(m_Specific(Op0))))
4495 return ConstantFP::getNullValue(Op0->getType());
4496 }
Sanjay Patelfa877fd2017-09-11 13:34:27 +00004497
Sanjay Patel9b073472018-08-07 20:32:55 +00004498 // (X - Y) + Y --> X
4499 // Y + (X - Y) --> X
4500 Value *X;
4501 if (FMF.noSignedZeros() && FMF.allowReassoc() &&
4502 (match(Op0, m_FSub(m_Value(X), m_Specific(Op1))) ||
4503 match(Op1, m_FSub(m_Value(X), m_Specific(Op0)))))
4504 return X;
4505
Sanjay Patelfa877fd2017-09-11 13:34:27 +00004506 return nullptr;
4507}
4508
4509/// Given operands for an FSub, see if we can fold the result. If not, this
4510/// returns null.
4511static Value *SimplifyFSubInst(Value *Op0, Value *Op1, FastMathFlags FMF,
4512 const SimplifyQuery &Q, unsigned MaxRecurse) {
4513 if (Constant *C = foldOrCommuteConstant(Instruction::FSub, Op0, Op1, Q))
4514 return C;
4515
Sanjay Patele2359422018-03-21 19:31:53 +00004516 if (Constant *C = simplifyFPBinop(Op0, Op1))
4517 return C;
Sanjay Patel42227162018-03-10 16:51:28 +00004518
Sanjay Patel93e64dd2018-03-25 21:16:33 +00004519 // fsub X, +0 ==> X
4520 if (match(Op1, m_PosZeroFP()))
Sanjay Patelfa877fd2017-09-11 13:34:27 +00004521 return Op0;
4522
4523 // fsub X, -0 ==> X, when we know X is not -0
Sanjay Patel93e64dd2018-03-25 21:16:33 +00004524 if (match(Op1, m_NegZeroFP()) &&
Sanjay Patelfa877fd2017-09-11 13:34:27 +00004525 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0, Q.TLI)))
4526 return Op0;
4527
4528 // fsub -0.0, (fsub -0.0, X) ==> X
Cameron McInally2d2a46d2019-05-20 13:13:35 +00004529 // fsub -0.0, (fneg X) ==> X
Sanjay Patelfa877fd2017-09-11 13:34:27 +00004530 Value *X;
Sanjay Patel93e64dd2018-03-25 21:16:33 +00004531 if (match(Op0, m_NegZeroFP()) &&
Cameron McInally2d2a46d2019-05-20 13:13:35 +00004532 match(Op1, m_FNeg(m_Value(X))))
Sanjay Patelfa877fd2017-09-11 13:34:27 +00004533 return X;
4534
4535 // fsub 0.0, (fsub 0.0, X) ==> X if signed zeros are ignored.
Cameron McInally067e9462019-05-17 16:47:00 +00004536 // fsub 0.0, (fneg X) ==> X if signed zeros are ignored.
Sanjay Patela4f42f22018-03-15 14:29:27 +00004537 if (FMF.noSignedZeros() && match(Op0, m_AnyZeroFP()) &&
Cameron McInally067e9462019-05-17 16:47:00 +00004538 (match(Op1, m_FSub(m_AnyZeroFP(), m_Value(X))) ||
4539 match(Op1, m_FNeg(m_Value(X)))))
Sanjay Patelfa877fd2017-09-11 13:34:27 +00004540 return X;
4541
4542 // fsub nnan x, x ==> 0.0
4543 if (FMF.noNaNs() && Op0 == Op1)
4544 return Constant::getNullValue(Op0->getType());
4545
Sanjay Patelf7a8fb22018-08-07 20:14:27 +00004546 // Y - (Y - X) --> X
Sanjay Patel4364d602018-08-07 20:23:49 +00004547 // (X + Y) - Y --> X
Sanjay Patelf7a8fb22018-08-07 20:14:27 +00004548 if (FMF.noSignedZeros() && FMF.allowReassoc() &&
Sanjay Patel4364d602018-08-07 20:23:49 +00004549 (match(Op1, m_FSub(m_Specific(Op0), m_Value(X))) ||
4550 match(Op0, m_c_FAdd(m_Specific(Op1), m_Value(X)))))
Sanjay Patelf7a8fb22018-08-07 20:14:27 +00004551 return X;
4552
Sanjay Patelfa877fd2017-09-11 13:34:27 +00004553 return nullptr;
4554}
4555
4556/// Given the operands for an FMul, see if we can fold the result
4557static Value *SimplifyFMulInst(Value *Op0, Value *Op1, FastMathFlags FMF,
4558 const SimplifyQuery &Q, unsigned MaxRecurse) {
4559 if (Constant *C = foldOrCommuteConstant(Instruction::FMul, Op0, Op1, Q))
4560 return C;
4561
Sanjay Patele2359422018-03-21 19:31:53 +00004562 if (Constant *C = simplifyFPBinop(Op0, Op1))
4563 return C;
Sanjay Patel42227162018-03-10 16:51:28 +00004564
Sanjay Patelfa877fd2017-09-11 13:34:27 +00004565 // fmul X, 1.0 ==> X
4566 if (match(Op1, m_FPOne()))
4567 return Op0;
4568
4569 // fmul nnan nsz X, 0 ==> 0
Sanjay Patela4f42f22018-03-15 14:29:27 +00004570 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op1, m_AnyZeroFP()))
4571 return ConstantFP::getNullValue(Op0->getType());
Sanjay Patelfa877fd2017-09-11 13:34:27 +00004572
Sanjay Patel95ec4a42018-03-18 14:12:25 +00004573 // sqrt(X) * sqrt(X) --> X, if we can:
4574 // 1. Remove the intermediate rounding (reassociate).
4575 // 2. Ignore non-zero negative numbers because sqrt would produce NAN.
4576 // 3. Ignore -0.0 because sqrt(-0.0) == -0.0, but -0.0 * -0.0 == 0.0.
Sanjay Pateldb53d182018-02-23 22:20:13 +00004577 Value *X;
Sanjay Patel95ec4a42018-03-18 14:12:25 +00004578 if (Op0 == Op1 && match(Op0, m_Intrinsic<Intrinsic::sqrt>(m_Value(X))) &&
4579 FMF.allowReassoc() && FMF.noNaNs() && FMF.noSignedZeros())
Sanjay Pateldb53d182018-02-23 22:20:13 +00004580 return X;
4581
Sanjay Patelfa877fd2017-09-11 13:34:27 +00004582 return nullptr;
4583}
4584
4585Value *llvm::SimplifyFAddInst(Value *Op0, Value *Op1, FastMathFlags FMF,
4586 const SimplifyQuery &Q) {
4587 return ::SimplifyFAddInst(Op0, Op1, FMF, Q, RecursionLimit);
4588}
4589
4590
4591Value *llvm::SimplifyFSubInst(Value *Op0, Value *Op1, FastMathFlags FMF,
4592 const SimplifyQuery &Q) {
4593 return ::SimplifyFSubInst(Op0, Op1, FMF, Q, RecursionLimit);
4594}
4595
4596Value *llvm::SimplifyFMulInst(Value *Op0, Value *Op1, FastMathFlags FMF,
4597 const SimplifyQuery &Q) {
4598 return ::SimplifyFMulInst(Op0, Op1, FMF, Q, RecursionLimit);
4599}
4600
4601static Value *SimplifyFDivInst(Value *Op0, Value *Op1, FastMathFlags FMF,
4602 const SimplifyQuery &Q, unsigned) {
4603 if (Constant *C = foldOrCommuteConstant(Instruction::FDiv, Op0, Op1, Q))
4604 return C;
4605
Sanjay Patele2359422018-03-21 19:31:53 +00004606 if (Constant *C = simplifyFPBinop(Op0, Op1))
4607 return C;
Sanjay Patelfa877fd2017-09-11 13:34:27 +00004608
4609 // X / 1.0 -> X
4610 if (match(Op1, m_FPOne()))
4611 return Op0;
4612
4613 // 0 / X -> 0
4614 // Requires that NaNs are off (X could be zero) and signed zeroes are
4615 // ignored (X could be positive or negative, so the output sign is unknown).
Sanjay Patela4f42f22018-03-15 14:29:27 +00004616 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op0, m_AnyZeroFP()))
4617 return ConstantFP::getNullValue(Op0->getType());
Sanjay Patelfa877fd2017-09-11 13:34:27 +00004618
4619 if (FMF.noNaNs()) {
4620 // X / X -> 1.0 is legal when NaNs are ignored.
Sanjay Patel83f05662018-01-30 00:18:37 +00004621 // We can ignore infinities because INF/INF is NaN.
Sanjay Patelfa877fd2017-09-11 13:34:27 +00004622 if (Op0 == Op1)
4623 return ConstantFP::get(Op0->getType(), 1.0);
4624
Sanjay Patel83f05662018-01-30 00:18:37 +00004625 // (X * Y) / Y --> X if we can reassociate to the above form.
4626 Value *X;
4627 if (FMF.allowReassoc() && match(Op0, m_c_FMul(m_Value(X), m_Specific(Op1))))
4628 return X;
4629
Sanjay Patelfa877fd2017-09-11 13:34:27 +00004630 // -X / X -> -1.0 and
4631 // X / -X -> -1.0 are legal when NaNs are ignored.
4632 // We can ignore signed zeros because +-0.0/+-0.0 is NaN and ignored.
Cameron McInallybea59672018-10-09 21:48:00 +00004633 if (match(Op0, m_FNegNSZ(m_Specific(Op1))) ||
4634 match(Op1, m_FNegNSZ(m_Specific(Op0))))
Sanjay Patelfa877fd2017-09-11 13:34:27 +00004635 return ConstantFP::get(Op0->getType(), -1.0);
4636 }
4637
4638 return nullptr;
4639}
4640
4641Value *llvm::SimplifyFDivInst(Value *Op0, Value *Op1, FastMathFlags FMF,
4642 const SimplifyQuery &Q) {
4643 return ::SimplifyFDivInst(Op0, Op1, FMF, Q, RecursionLimit);
4644}
4645
4646static Value *SimplifyFRemInst(Value *Op0, Value *Op1, FastMathFlags FMF,
4647 const SimplifyQuery &Q, unsigned) {
4648 if (Constant *C = foldOrCommuteConstant(Instruction::FRem, Op0, Op1, Q))
4649 return C;
4650
Sanjay Patele2359422018-03-21 19:31:53 +00004651 if (Constant *C = simplifyFPBinop(Op0, Op1))
4652 return C;
Sanjay Patelfa877fd2017-09-11 13:34:27 +00004653
Sanjay Patel8f063d02018-03-15 14:04:31 +00004654 // Unlike fdiv, the result of frem always matches the sign of the dividend.
4655 // The constant match may include undef elements in a vector, so return a full
4656 // zero constant as the result.
4657 if (FMF.noNaNs()) {
Sanjay Patel93e64dd2018-03-25 21:16:33 +00004658 // +0 % X -> 0
4659 if (match(Op0, m_PosZeroFP()))
Sanjay Patel8f063d02018-03-15 14:04:31 +00004660 return ConstantFP::getNullValue(Op0->getType());
4661 // -0 % X -> -0
Sanjay Patel93e64dd2018-03-25 21:16:33 +00004662 if (match(Op0, m_NegZeroFP()))
Sanjay Patel8f063d02018-03-15 14:04:31 +00004663 return ConstantFP::getNegativeZero(Op0->getType());
4664 }
Sanjay Patelfa877fd2017-09-11 13:34:27 +00004665
4666 return nullptr;
4667}
4668
4669Value *llvm::SimplifyFRemInst(Value *Op0, Value *Op1, FastMathFlags FMF,
4670 const SimplifyQuery &Q) {
4671 return ::SimplifyFRemInst(Op0, Op1, FMF, Q, RecursionLimit);
4672}
4673
Chris Lattnera71e9d62009-11-10 00:55:12 +00004674//=== Helper functions for higher up the class hierarchy.
Chris Lattnerc1f19072009-11-09 23:28:39 +00004675
Cameron McInallyc3167692019-05-06 16:05:10 +00004676/// Given the operand for a UnaryOperator, see if we can fold the result.
4677/// If not, this returns null.
4678static Value *simplifyUnOp(unsigned Opcode, Value *Op, const SimplifyQuery &Q,
4679 unsigned MaxRecurse) {
4680 switch (Opcode) {
4681 case Instruction::FNeg:
4682 return simplifyFNegInst(Op, FastMathFlags(), Q, MaxRecurse);
4683 default:
4684 llvm_unreachable("Unexpected opcode");
4685 }
4686}
4687
4688/// Given the operand for a UnaryOperator, see if we can fold the result.
4689/// If not, this returns null.
Jay Foad565c5432019-07-24 12:50:10 +00004690/// Try to use FastMathFlags when folding the result.
Cameron McInallyc3167692019-05-06 16:05:10 +00004691static Value *simplifyFPUnOp(unsigned Opcode, Value *Op,
4692 const FastMathFlags &FMF,
4693 const SimplifyQuery &Q, unsigned MaxRecurse) {
4694 switch (Opcode) {
4695 case Instruction::FNeg:
4696 return simplifyFNegInst(Op, FMF, Q, MaxRecurse);
4697 default:
4698 return simplifyUnOp(Opcode, Op, Q, MaxRecurse);
4699 }
4700}
4701
Craig Topperb457e432019-05-31 08:10:23 +00004702Value *llvm::SimplifyUnOp(unsigned Opcode, Value *Op, const SimplifyQuery &Q) {
4703 return ::simplifyUnOp(Opcode, Op, Q, RecursionLimit);
4704}
4705
Jay Foad565c5432019-07-24 12:50:10 +00004706Value *llvm::SimplifyUnOp(unsigned Opcode, Value *Op, FastMathFlags FMF,
4707 const SimplifyQuery &Q) {
Cameron McInallyc3167692019-05-06 16:05:10 +00004708 return ::simplifyFPUnOp(Opcode, Op, FMF, Q, RecursionLimit);
4709}
4710
Sanjay Patel472cc782016-01-11 22:14:42 +00004711/// Given operands for a BinaryOperator, see if we can fold the result.
4712/// If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00004713static Value *SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00004714 const SimplifyQuery &Q, unsigned MaxRecurse) {
Chris Lattnera71e9d62009-11-10 00:55:12 +00004715 switch (Opcode) {
Chris Lattner9e4aa022011-02-09 17:15:04 +00004716 case Instruction::Add:
Sanjay Patel1fd16f02017-04-01 18:40:30 +00004717 return SimplifyAddInst(LHS, RHS, false, false, Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00004718 case Instruction::Sub:
Sanjay Patel1fd16f02017-04-01 18:40:30 +00004719 return SimplifySubInst(LHS, RHS, false, false, Q, MaxRecurse);
Sanjay Patel1fd16f02017-04-01 18:40:30 +00004720 case Instruction::Mul:
4721 return SimplifyMulInst(LHS, RHS, Q, MaxRecurse);
Sanjay Patel1fd16f02017-04-01 18:40:30 +00004722 case Instruction::SDiv:
4723 return SimplifySDivInst(LHS, RHS, Q, MaxRecurse);
4724 case Instruction::UDiv:
4725 return SimplifyUDivInst(LHS, RHS, Q, MaxRecurse);
Sanjay Patel1fd16f02017-04-01 18:40:30 +00004726 case Instruction::SRem:
4727 return SimplifySRemInst(LHS, RHS, Q, MaxRecurse);
4728 case Instruction::URem:
4729 return SimplifyURemInst(LHS, RHS, Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00004730 case Instruction::Shl:
Sanjay Patel1fd16f02017-04-01 18:40:30 +00004731 return SimplifyShlInst(LHS, RHS, false, false, Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00004732 case Instruction::LShr:
Sanjay Patel1fd16f02017-04-01 18:40:30 +00004733 return SimplifyLShrInst(LHS, RHS, false, Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00004734 case Instruction::AShr:
Sanjay Patel1fd16f02017-04-01 18:40:30 +00004735 return SimplifyAShrInst(LHS, RHS, false, Q, MaxRecurse);
4736 case Instruction::And:
4737 return SimplifyAndInst(LHS, RHS, Q, MaxRecurse);
4738 case Instruction::Or:
4739 return SimplifyOrInst(LHS, RHS, Q, MaxRecurse);
4740 case Instruction::Xor:
4741 return SimplifyXorInst(LHS, RHS, Q, MaxRecurse);
Sanjay Patelfa877fd2017-09-11 13:34:27 +00004742 case Instruction::FAdd:
4743 return SimplifyFAddInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
4744 case Instruction::FSub:
4745 return SimplifyFSubInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
4746 case Instruction::FMul:
4747 return SimplifyFMulInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
4748 case Instruction::FDiv:
4749 return SimplifyFDivInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
4750 case Instruction::FRem:
4751 return SimplifyFRemInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
Chris Lattnera71e9d62009-11-10 00:55:12 +00004752 default:
Craig Topper8ef20ea2017-04-06 18:59:08 +00004753 llvm_unreachable("Unexpected opcode");
Chris Lattnera71e9d62009-11-10 00:55:12 +00004754 }
4755}
Chris Lattnerc1f19072009-11-09 23:28:39 +00004756
Sanjay Patel472cc782016-01-11 22:14:42 +00004757/// Given operands for a BinaryOperator, see if we can fold the result.
4758/// If not, this returns null.
Jay Foad565c5432019-07-24 12:50:10 +00004759/// Try to use FastMathFlags when folding the result.
4760static Value *SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
4761 const FastMathFlags &FMF, const SimplifyQuery &Q,
4762 unsigned MaxRecurse) {
Michael Zolotukhin4e8598e2015-02-06 20:02:51 +00004763 switch (Opcode) {
4764 case Instruction::FAdd:
4765 return SimplifyFAddInst(LHS, RHS, FMF, Q, MaxRecurse);
4766 case Instruction::FSub:
4767 return SimplifyFSubInst(LHS, RHS, FMF, Q, MaxRecurse);
4768 case Instruction::FMul:
4769 return SimplifyFMulInst(LHS, RHS, FMF, Q, MaxRecurse);
Zia Ansari394cef82016-12-08 23:27:40 +00004770 case Instruction::FDiv:
4771 return SimplifyFDivInst(LHS, RHS, FMF, Q, MaxRecurse);
Michael Zolotukhin4e8598e2015-02-06 20:02:51 +00004772 default:
4773 return SimplifyBinOp(Opcode, LHS, RHS, Q, MaxRecurse);
4774 }
4775}
4776
Duncan Sands7e800d62010-11-14 11:23:23 +00004777Value *llvm::SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00004778 const SimplifyQuery &Q) {
4779 return ::SimplifyBinOp(Opcode, LHS, RHS, Q, RecursionLimit);
4780}
4781
Jay Foad565c5432019-07-24 12:50:10 +00004782Value *llvm::SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
4783 FastMathFlags FMF, const SimplifyQuery &Q) {
4784 return ::SimplifyBinOp(Opcode, LHS, RHS, FMF, Q, RecursionLimit);
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00004785}
4786
Sanjay Patel472cc782016-01-11 22:14:42 +00004787/// Given operands for a CmpInst, see if we can fold the result.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00004788static Value *SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00004789 const SimplifyQuery &Q, unsigned MaxRecurse) {
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00004790 if (CmpInst::isIntPredicate((CmpInst::Predicate)Predicate))
Duncan Sandsb8cee002012-03-13 11:42:19 +00004791 return SimplifyICmpInst(Predicate, LHS, RHS, Q, MaxRecurse);
Benjamin Kramerf4ebfa32015-07-10 14:02:02 +00004792 return SimplifyFCmpInst(Predicate, LHS, RHS, FastMathFlags(), Q, MaxRecurse);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00004793}
4794
4795Value *llvm::SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00004796 const SimplifyQuery &Q) {
4797 return ::SimplifyCmpInst(Predicate, LHS, RHS, Q, RecursionLimit);
4798}
4799
Michael Ilseman54857292013-02-07 19:26:05 +00004800static bool IsIdempotent(Intrinsic::ID ID) {
4801 switch (ID) {
4802 default: return false;
4803
4804 // Unary idempotent: f(f(x)) = f(x)
4805 case Intrinsic::fabs:
4806 case Intrinsic::floor:
4807 case Intrinsic::ceil:
4808 case Intrinsic::trunc:
4809 case Intrinsic::rint:
4810 case Intrinsic::nearbyint:
Hal Finkel171817e2013-08-07 22:49:12 +00004811 case Intrinsic::round:
Matt Arsenault3ced3d92017-09-07 01:21:43 +00004812 case Intrinsic::canonicalize:
Michael Ilseman54857292013-02-07 19:26:05 +00004813 return true;
4814 }
4815}
4816
Peter Collingbourne7dd8dbf2016-04-22 21:18:02 +00004817static Value *SimplifyRelativeLoad(Constant *Ptr, Constant *Offset,
4818 const DataLayout &DL) {
4819 GlobalValue *PtrSym;
4820 APInt PtrOffset;
4821 if (!IsConstantOffsetFromGlobal(Ptr, PtrSym, PtrOffset, DL))
4822 return nullptr;
4823
4824 Type *Int8PtrTy = Type::getInt8PtrTy(Ptr->getContext());
4825 Type *Int32Ty = Type::getInt32Ty(Ptr->getContext());
4826 Type *Int32PtrTy = Int32Ty->getPointerTo();
4827 Type *Int64Ty = Type::getInt64Ty(Ptr->getContext());
4828
4829 auto *OffsetConstInt = dyn_cast<ConstantInt>(Offset);
4830 if (!OffsetConstInt || OffsetConstInt->getType()->getBitWidth() > 64)
4831 return nullptr;
4832
4833 uint64_t OffsetInt = OffsetConstInt->getSExtValue();
4834 if (OffsetInt % 4 != 0)
4835 return nullptr;
4836
4837 Constant *C = ConstantExpr::getGetElementPtr(
4838 Int32Ty, ConstantExpr::getBitCast(Ptr, Int32PtrTy),
4839 ConstantInt::get(Int64Ty, OffsetInt / 4));
4840 Constant *Loaded = ConstantFoldLoadFromConstPtr(C, Int32Ty, DL);
4841 if (!Loaded)
4842 return nullptr;
4843
4844 auto *LoadedCE = dyn_cast<ConstantExpr>(Loaded);
4845 if (!LoadedCE)
4846 return nullptr;
4847
4848 if (LoadedCE->getOpcode() == Instruction::Trunc) {
4849 LoadedCE = dyn_cast<ConstantExpr>(LoadedCE->getOperand(0));
4850 if (!LoadedCE)
4851 return nullptr;
4852 }
4853
4854 if (LoadedCE->getOpcode() != Instruction::Sub)
4855 return nullptr;
4856
4857 auto *LoadedLHS = dyn_cast<ConstantExpr>(LoadedCE->getOperand(0));
4858 if (!LoadedLHS || LoadedLHS->getOpcode() != Instruction::PtrToInt)
4859 return nullptr;
4860 auto *LoadedLHSPtr = LoadedLHS->getOperand(0);
4861
4862 Constant *LoadedRHS = LoadedCE->getOperand(1);
4863 GlobalValue *LoadedRHSSym;
4864 APInt LoadedRHSOffset;
4865 if (!IsConstantOffsetFromGlobal(LoadedRHS, LoadedRHSSym, LoadedRHSOffset,
4866 DL) ||
4867 PtrSym != LoadedRHSSym || PtrOffset != LoadedRHSOffset)
4868 return nullptr;
4869
4870 return ConstantExpr::getBitCast(LoadedLHSPtr, Int8PtrTy);
4871}
4872
Sanjay Patelf52eeb12018-07-29 14:42:08 +00004873static Value *simplifyUnaryIntrinsic(Function *F, Value *Op0,
4874 const SimplifyQuery &Q) {
4875 // Idempotent functions return the same result when called repeatedly.
David Majnemer15032582015-05-22 03:56:46 +00004876 Intrinsic::ID IID = F->getIntrinsicID();
Sanjay Patelf52eeb12018-07-29 14:42:08 +00004877 if (IsIdempotent(IID))
4878 if (auto *II = dyn_cast<IntrinsicInst>(Op0))
4879 if (II->getIntrinsicID() == IID)
4880 return II;
Michael Ilseman54857292013-02-07 19:26:05 +00004881
Sanjay Patelf52eeb12018-07-29 14:42:08 +00004882 Value *X;
4883 switch (IID) {
4884 case Intrinsic::fabs:
4885 if (SignBitMustBeZero(Op0, Q.TLI)) return Op0;
4886 break;
4887 case Intrinsic::bswap:
4888 // bswap(bswap(x)) -> x
4889 if (match(Op0, m_BSwap(m_Value(X)))) return X;
4890 break;
4891 case Intrinsic::bitreverse:
4892 // bitreverse(bitreverse(x)) -> x
4893 if (match(Op0, m_BitReverse(m_Value(X)))) return X;
4894 break;
4895 case Intrinsic::exp:
4896 // exp(log(x)) -> x
4897 if (Q.CxtI->hasAllowReassoc() &&
4898 match(Op0, m_Intrinsic<Intrinsic::log>(m_Value(X)))) return X;
4899 break;
4900 case Intrinsic::exp2:
4901 // exp2(log2(x)) -> x
4902 if (Q.CxtI->hasAllowReassoc() &&
4903 match(Op0, m_Intrinsic<Intrinsic::log2>(m_Value(X)))) return X;
4904 break;
4905 case Intrinsic::log:
4906 // log(exp(x)) -> x
4907 if (Q.CxtI->hasAllowReassoc() &&
4908 match(Op0, m_Intrinsic<Intrinsic::exp>(m_Value(X)))) return X;
4909 break;
4910 case Intrinsic::log2:
4911 // log2(exp2(x)) -> x
4912 if (Q.CxtI->hasAllowReassoc() &&
Dmitry Venikovaaa709f2019-02-03 03:48:30 +00004913 (match(Op0, m_Intrinsic<Intrinsic::exp2>(m_Value(X))) ||
4914 match(Op0, m_Intrinsic<Intrinsic::pow>(m_SpecificFP(2.0),
4915 m_Value(X))))) return X;
4916 break;
4917 case Intrinsic::log10:
4918 // log10(pow(10.0, x)) -> x
4919 if (Q.CxtI->hasAllowReassoc() &&
4920 match(Op0, m_Intrinsic<Intrinsic::pow>(m_SpecificFP(10.0),
4921 m_Value(X)))) return X;
Sanjay Patelf52eeb12018-07-29 14:42:08 +00004922 break;
Matt Arsenault03e749282019-04-03 00:25:06 +00004923 case Intrinsic::floor:
4924 case Intrinsic::trunc:
4925 case Intrinsic::ceil:
4926 case Intrinsic::round:
4927 case Intrinsic::nearbyint:
4928 case Intrinsic::rint: {
4929 // floor (sitofp x) -> sitofp x
4930 // floor (uitofp x) -> uitofp x
4931 //
4932 // Converting from int always results in a finite integral number or
4933 // infinity. For either of those inputs, these rounding functions always
4934 // return the same value, so the rounding can be eliminated.
4935 if (match(Op0, m_SIToFP(m_Value())) || match(Op0, m_UIToFP(m_Value())))
4936 return Op0;
4937 break;
4938 }
Sanjay Patelf52eeb12018-07-29 14:42:08 +00004939 default:
4940 break;
Matt Arsenault1e0edbf2017-01-11 00:33:24 +00004941 }
Michael Ilseman54857292013-02-07 19:26:05 +00004942
Sanjay Patelf52eeb12018-07-29 14:42:08 +00004943 return nullptr;
4944}
Matt Arsenault82606662017-01-11 00:57:54 +00004945
Sanjay Patelf52eeb12018-07-29 14:42:08 +00004946static Value *simplifyBinaryIntrinsic(Function *F, Value *Op0, Value *Op1,
4947 const SimplifyQuery &Q) {
4948 Intrinsic::ID IID = F->getIntrinsicID();
4949 Type *ReturnType = F->getReturnType();
4950 switch (IID) {
4951 case Intrinsic::usub_with_overflow:
4952 case Intrinsic::ssub_with_overflow:
4953 // X - X -> { 0, false }
4954 if (Op0 == Op1)
4955 return Constant::getNullValue(ReturnType);
Roman Lebedev5a663bd2019-06-16 20:39:45 +00004956 LLVM_FALLTHROUGH;
Sanjay Patelf52eeb12018-07-29 14:42:08 +00004957 case Intrinsic::uadd_with_overflow:
4958 case Intrinsic::sadd_with_overflow:
Roman Lebedev5a663bd2019-06-16 20:39:45 +00004959 // X - undef -> { undef, false }
4960 // undef - X -> { undef, false }
4961 // X + undef -> { undef, false }
4962 // undef + x -> { undef, false }
4963 if (isa<UndefValue>(Op0) || isa<UndefValue>(Op1)) {
4964 return ConstantStruct::get(
4965 cast<StructType>(ReturnType),
4966 {UndefValue::get(ReturnType->getStructElementType(0)),
4967 Constant::getNullValue(ReturnType->getStructElementType(1))});
4968 }
Sanjay Patelf52eeb12018-07-29 14:42:08 +00004969 break;
4970 case Intrinsic::umul_with_overflow:
4971 case Intrinsic::smul_with_overflow:
4972 // 0 * X -> { 0, false }
4973 // X * 0 -> { 0, false }
4974 if (match(Op0, m_Zero()) || match(Op1, m_Zero()))
4975 return Constant::getNullValue(ReturnType);
4976 // undef * X -> { 0, false }
4977 // X * undef -> { 0, false }
4978 if (match(Op0, m_Undef()) || match(Op1, m_Undef()))
4979 return Constant::getNullValue(ReturnType);
4980 break;
Sanjay Pateleea21da2018-11-20 17:20:26 +00004981 case Intrinsic::uadd_sat:
4982 // sat(MAX + X) -> MAX
4983 // sat(X + MAX) -> MAX
4984 if (match(Op0, m_AllOnes()) || match(Op1, m_AllOnes()))
4985 return Constant::getAllOnesValue(ReturnType);
4986 LLVM_FALLTHROUGH;
4987 case Intrinsic::sadd_sat:
4988 // sat(X + undef) -> -1
4989 // sat(undef + X) -> -1
4990 // For unsigned: Assume undef is MAX, thus we saturate to MAX (-1).
4991 // For signed: Assume undef is ~X, in which case X + ~X = -1.
4992 if (match(Op0, m_Undef()) || match(Op1, m_Undef()))
4993 return Constant::getAllOnesValue(ReturnType);
4994
4995 // X + 0 -> X
4996 if (match(Op1, m_Zero()))
4997 return Op0;
4998 // 0 + X -> X
4999 if (match(Op0, m_Zero()))
5000 return Op1;
5001 break;
5002 case Intrinsic::usub_sat:
5003 // sat(0 - X) -> 0, sat(X - MAX) -> 0
5004 if (match(Op0, m_Zero()) || match(Op1, m_AllOnes()))
5005 return Constant::getNullValue(ReturnType);
5006 LLVM_FALLTHROUGH;
5007 case Intrinsic::ssub_sat:
5008 // X - X -> 0, X - undef -> 0, undef - X -> 0
5009 if (Op0 == Op1 || match(Op0, m_Undef()) || match(Op1, m_Undef()))
5010 return Constant::getNullValue(ReturnType);
5011 // X - 0 -> X
5012 if (match(Op1, m_Zero()))
5013 return Op0;
5014 break;
Sanjay Patelf52eeb12018-07-29 14:42:08 +00005015 case Intrinsic::load_relative:
5016 if (auto *C0 = dyn_cast<Constant>(Op0))
5017 if (auto *C1 = dyn_cast<Constant>(Op1))
Matt Arsenault82606662017-01-11 00:57:54 +00005018 return SimplifyRelativeLoad(C0, C1, Q.DL);
Sanjay Patelf52eeb12018-07-29 14:42:08 +00005019 break;
5020 case Intrinsic::powi:
5021 if (auto *Power = dyn_cast<ConstantInt>(Op1)) {
5022 // powi(x, 0) -> 1.0
5023 if (Power->isZero())
5024 return ConstantFP::get(Op0->getType(), 1.0);
5025 // powi(x, 1) -> x
5026 if (Power->isOne())
5027 return Op0;
Matt Arsenault82606662017-01-11 00:57:54 +00005028 }
Sanjay Patelf52eeb12018-07-29 14:42:08 +00005029 break;
5030 case Intrinsic::maxnum:
Thomas Livelyc3392502018-10-19 19:01:26 +00005031 case Intrinsic::minnum:
5032 case Intrinsic::maximum:
5033 case Intrinsic::minimum: {
Sanjay Patel28c7e412018-08-01 23:05:55 +00005034 // If the arguments are the same, this is a no-op.
5035 if (Op0 == Op1) return Op0;
5036
Thomas Livelyc3392502018-10-19 19:01:26 +00005037 // If one argument is undef, return the other argument.
5038 if (match(Op0, m_Undef()))
5039 return Op1;
5040 if (match(Op1, m_Undef()))
5041 return Op0;
5042
5043 // If one argument is NaN, return other or NaN appropriately.
5044 bool PropagateNaN = IID == Intrinsic::minimum || IID == Intrinsic::maximum;
5045 if (match(Op0, m_NaN()))
5046 return PropagateNaN ? Op0 : Op1;
5047 if (match(Op1, m_NaN()))
5048 return PropagateNaN ? Op1 : Op0;
Sanjay Patel3f6e9a72018-08-02 14:33:40 +00005049
Sanjay Patel948ff872018-08-07 14:36:27 +00005050 // Min/max of the same operation with common operand:
5051 // m(m(X, Y)), X --> m(X, Y) (4 commuted variants)
5052 if (auto *M0 = dyn_cast<IntrinsicInst>(Op0))
5053 if (M0->getIntrinsicID() == IID &&
5054 (M0->getOperand(0) == Op1 || M0->getOperand(1) == Op1))
5055 return Op0;
5056 if (auto *M1 = dyn_cast<IntrinsicInst>(Op1))
5057 if (M1->getIntrinsicID() == IID &&
5058 (M1->getOperand(0) == Op0 || M1->getOperand(1) == Op0))
5059 return Op1;
5060
Thomas Livelyc3392502018-10-19 19:01:26 +00005061 // min(X, -Inf) --> -Inf (and commuted variant)
5062 // max(X, +Inf) --> +Inf (and commuted variant)
5063 bool UseNegInf = IID == Intrinsic::minnum || IID == Intrinsic::minimum;
Sanjay Patelc6944f72018-08-09 22:20:44 +00005064 const APFloat *C;
5065 if ((match(Op0, m_APFloat(C)) && C->isInfinity() &&
5066 C->isNegative() == UseNegInf) ||
5067 (match(Op1, m_APFloat(C)) && C->isInfinity() &&
5068 C->isNegative() == UseNegInf))
5069 return ConstantFP::getInfinity(ReturnType, UseNegInf);
5070
5071 // TODO: minnum(nnan x, inf) -> x
5072 // TODO: minnum(nnan ninf x, flt_max) -> x
5073 // TODO: maxnum(nnan x, -inf) -> x
5074 // TODO: maxnum(nnan ninf x, -flt_max) -> x
Sanjay Patelf52eeb12018-07-29 14:42:08 +00005075 break;
Sanjay Patelc6944f72018-08-09 22:20:44 +00005076 }
Sanjay Patelf52eeb12018-07-29 14:42:08 +00005077 default:
5078 break;
Matt Arsenault82606662017-01-11 00:57:54 +00005079 }
5080
Sanjay Patelf52eeb12018-07-29 14:42:08 +00005081 return nullptr;
5082}
5083
Tim Northover030bb3d2019-07-11 13:11:44 +00005084static Value *simplifyIntrinsic(CallBase *Call, const SimplifyQuery &Q) {
5085
Sanjay Patelf52eeb12018-07-29 14:42:08 +00005086 // Intrinsics with no operands have some kind of side effect. Don't simplify.
Tim Northover030bb3d2019-07-11 13:11:44 +00005087 unsigned NumOperands = Call->getNumArgOperands();
5088 if (!NumOperands)
Sanjay Patelf52eeb12018-07-29 14:42:08 +00005089 return nullptr;
5090
Tim Northover030bb3d2019-07-11 13:11:44 +00005091 Function *F = cast<Function>(Call->getCalledFunction());
Sanjay Patelf52eeb12018-07-29 14:42:08 +00005092 Intrinsic::ID IID = F->getIntrinsicID();
5093 if (NumOperands == 1)
Tim Northover030bb3d2019-07-11 13:11:44 +00005094 return simplifyUnaryIntrinsic(F, Call->getArgOperand(0), Q);
Sanjay Patelf52eeb12018-07-29 14:42:08 +00005095
5096 if (NumOperands == 2)
Tim Northover030bb3d2019-07-11 13:11:44 +00005097 return simplifyBinaryIntrinsic(F, Call->getArgOperand(0),
5098 Call->getArgOperand(1), Q);
Sanjay Patelf52eeb12018-07-29 14:42:08 +00005099
5100 // Handle intrinsics with 3 or more arguments.
Matt Arsenault82606662017-01-11 00:57:54 +00005101 switch (IID) {
Philip Reamesd8d9b7b2019-04-22 19:30:01 +00005102 case Intrinsic::masked_load:
5103 case Intrinsic::masked_gather: {
Tim Northover030bb3d2019-07-11 13:11:44 +00005104 Value *MaskArg = Call->getArgOperand(2);
5105 Value *PassthruArg = Call->getArgOperand(3);
Matt Arsenault82606662017-01-11 00:57:54 +00005106 // If the mask is all zeros or undef, the "passthru" argument is the result.
5107 if (maskIsAllZeroOrUndef(MaskArg))
5108 return PassthruArg;
5109 return nullptr;
5110 }
Sanjay Patel54421ce2018-07-29 16:36:38 +00005111 case Intrinsic::fshl:
5112 case Intrinsic::fshr: {
Tim Northover030bb3d2019-07-11 13:11:44 +00005113 Value *Op0 = Call->getArgOperand(0), *Op1 = Call->getArgOperand(1),
5114 *ShAmtArg = Call->getArgOperand(2);
Sanjay Patel14ab9172018-11-20 17:34:59 +00005115
5116 // If both operands are undef, the result is undef.
5117 if (match(Op0, m_Undef()) && match(Op1, m_Undef()))
5118 return UndefValue::get(F->getReturnType());
5119
5120 // If shift amount is undef, assume it is zero.
5121 if (match(ShAmtArg, m_Undef()))
Tim Northover030bb3d2019-07-11 13:11:44 +00005122 return Call->getArgOperand(IID == Intrinsic::fshl ? 0 : 1);
Sanjay Patel14ab9172018-11-20 17:34:59 +00005123
Sanjay Patel54421ce2018-07-29 16:36:38 +00005124 const APInt *ShAmtC;
5125 if (match(ShAmtArg, m_APInt(ShAmtC))) {
5126 // If there's effectively no shift, return the 1st arg or 2nd arg.
Sanjay Patel54421ce2018-07-29 16:36:38 +00005127 APInt BitWidth = APInt(ShAmtC->getBitWidth(), ShAmtC->getBitWidth());
5128 if (ShAmtC->urem(BitWidth).isNullValue())
Tim Northover030bb3d2019-07-11 13:11:44 +00005129 return Call->getArgOperand(IID == Intrinsic::fshl ? 0 : 1);
Sanjay Patel54421ce2018-07-29 16:36:38 +00005130 }
5131 return nullptr;
5132 }
Matt Arsenault82606662017-01-11 00:57:54 +00005133 default:
5134 return nullptr;
5135 }
Michael Ilseman54857292013-02-07 19:26:05 +00005136}
5137
Tim Northover030bb3d2019-07-11 13:11:44 +00005138Value *llvm::SimplifyCall(CallBase *Call, const SimplifyQuery &Q) {
5139 Value *Callee = Call->getCalledValue();
Chandler Carruth9dc35582012-12-28 11:30:55 +00005140
Dan Gohman85977e62011-11-04 18:32:42 +00005141 // call undef -> undef
David Majnemerbb53d232016-06-25 07:37:30 +00005142 // call null -> undef
Tim Northover030bb3d2019-07-11 13:11:44 +00005143 if (isa<UndefValue>(Callee) || isa<ConstantPointerNull>(Callee))
5144 return UndefValue::get(Call->getType());
Dan Gohman85977e62011-11-04 18:32:42 +00005145
Tim Northover030bb3d2019-07-11 13:11:44 +00005146 Function *F = dyn_cast<Function>(Callee);
Chandler Carruthf6182152012-12-28 14:23:29 +00005147 if (!F)
Craig Topper9f008862014-04-15 04:59:12 +00005148 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00005149
David Majnemer15032582015-05-22 03:56:46 +00005150 if (F->isIntrinsic())
Tim Northover030bb3d2019-07-11 13:11:44 +00005151 if (Value *Ret = simplifyIntrinsic(Call, Q))
Michael Ilseman54857292013-02-07 19:26:05 +00005152 return Ret;
5153
Chandler Carruthdac20a82019-02-11 07:54:10 +00005154 if (!canConstantFoldCallTo(Call, F))
Craig Topper9f008862014-04-15 04:59:12 +00005155 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00005156
5157 SmallVector<Constant *, 4> ConstantArgs;
Tim Northover030bb3d2019-07-11 13:11:44 +00005158 unsigned NumArgs = Call->getNumArgOperands();
5159 ConstantArgs.reserve(NumArgs);
5160 for (auto &Arg : Call->args()) {
5161 Constant *C = dyn_cast<Constant>(&Arg);
Chandler Carruthf6182152012-12-28 14:23:29 +00005162 if (!C)
Craig Topper9f008862014-04-15 04:59:12 +00005163 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00005164 ConstantArgs.push_back(C);
5165 }
5166
Chandler Carruthdac20a82019-02-11 07:54:10 +00005167 return ConstantFoldCall(Call, F, ConstantArgs, Q.TLI);
Dan Gohman85977e62011-11-04 18:32:42 +00005168}
5169
Sanjay Patel472cc782016-01-11 22:14:42 +00005170/// See if we can compute a simplified version of this instruction.
5171/// If not, this returns null.
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005172
Daniel Berlin4d0fe642017-04-28 19:55:38 +00005173Value *llvm::SimplifyInstruction(Instruction *I, const SimplifyQuery &SQ,
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005174 OptimizationRemarkEmitter *ORE) {
Daniel Berlin4d0fe642017-04-28 19:55:38 +00005175 const SimplifyQuery Q = SQ.CxtI ? SQ : SQ.getWithInstruction(I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00005176 Value *Result;
5177
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00005178 switch (I->getOpcode()) {
5179 default:
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005180 Result = ConstantFoldInstruction(I, Q.DL, Q.TLI);
Duncan Sands64e41cf2010-11-17 08:35:29 +00005181 break;
Cameron McInallyc3167692019-05-06 16:05:10 +00005182 case Instruction::FNeg:
5183 Result = SimplifyFNegInst(I->getOperand(0), I->getFastMathFlags(), Q);
5184 break;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00005185 case Instruction::FAdd:
5186 Result = SimplifyFAddInst(I->getOperand(0), I->getOperand(1),
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005187 I->getFastMathFlags(), Q);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00005188 break;
Chris Lattner3d9823b2009-11-27 17:42:22 +00005189 case Instruction::Add:
Florian Hahn19f9e322018-08-17 14:39:04 +00005190 Result =
5191 SimplifyAddInst(I->getOperand(0), I->getOperand(1),
5192 Q.IIQ.hasNoSignedWrap(cast<BinaryOperator>(I)),
5193 Q.IIQ.hasNoUnsignedWrap(cast<BinaryOperator>(I)), Q);
Duncan Sands64e41cf2010-11-17 08:35:29 +00005194 break;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00005195 case Instruction::FSub:
5196 Result = SimplifyFSubInst(I->getOperand(0), I->getOperand(1),
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005197 I->getFastMathFlags(), Q);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00005198 break;
Duncan Sands0a2c41682010-12-15 14:07:39 +00005199 case Instruction::Sub:
Florian Hahn19f9e322018-08-17 14:39:04 +00005200 Result =
5201 SimplifySubInst(I->getOperand(0), I->getOperand(1),
5202 Q.IIQ.hasNoSignedWrap(cast<BinaryOperator>(I)),
5203 Q.IIQ.hasNoUnsignedWrap(cast<BinaryOperator>(I)), Q);
Duncan Sands0a2c41682010-12-15 14:07:39 +00005204 break;
Michael Ilsemanbe9137a2012-11-27 00:46:26 +00005205 case Instruction::FMul:
5206 Result = SimplifyFMulInst(I->getOperand(0), I->getOperand(1),
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005207 I->getFastMathFlags(), Q);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +00005208 break;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00005209 case Instruction::Mul:
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005210 Result = SimplifyMulInst(I->getOperand(0), I->getOperand(1), Q);
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00005211 break;
Duncan Sands771e82a2011-01-28 16:51:11 +00005212 case Instruction::SDiv:
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005213 Result = SimplifySDivInst(I->getOperand(0), I->getOperand(1), Q);
Duncan Sands771e82a2011-01-28 16:51:11 +00005214 break;
5215 case Instruction::UDiv:
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005216 Result = SimplifyUDivInst(I->getOperand(0), I->getOperand(1), Q);
Duncan Sands771e82a2011-01-28 16:51:11 +00005217 break;
Frits van Bommelc2549662011-01-29 15:26:31 +00005218 case Instruction::FDiv:
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00005219 Result = SimplifyFDivInst(I->getOperand(0), I->getOperand(1),
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005220 I->getFastMathFlags(), Q);
Frits van Bommelc2549662011-01-29 15:26:31 +00005221 break;
Duncan Sandsa3e36992011-05-02 16:27:02 +00005222 case Instruction::SRem:
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005223 Result = SimplifySRemInst(I->getOperand(0), I->getOperand(1), Q);
Duncan Sandsa3e36992011-05-02 16:27:02 +00005224 break;
5225 case Instruction::URem:
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005226 Result = SimplifyURemInst(I->getOperand(0), I->getOperand(1), Q);
Duncan Sandsa3e36992011-05-02 16:27:02 +00005227 break;
5228 case Instruction::FRem:
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00005229 Result = SimplifyFRemInst(I->getOperand(0), I->getOperand(1),
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005230 I->getFastMathFlags(), Q);
Duncan Sandsa3e36992011-05-02 16:27:02 +00005231 break;
Duncan Sands7f60dc12011-01-14 00:37:45 +00005232 case Instruction::Shl:
Florian Hahn19f9e322018-08-17 14:39:04 +00005233 Result =
5234 SimplifyShlInst(I->getOperand(0), I->getOperand(1),
5235 Q.IIQ.hasNoSignedWrap(cast<BinaryOperator>(I)),
5236 Q.IIQ.hasNoUnsignedWrap(cast<BinaryOperator>(I)), Q);
Duncan Sands7f60dc12011-01-14 00:37:45 +00005237 break;
5238 case Instruction::LShr:
Chris Lattner9e4aa022011-02-09 17:15:04 +00005239 Result = SimplifyLShrInst(I->getOperand(0), I->getOperand(1),
Florian Hahn19f9e322018-08-17 14:39:04 +00005240 Q.IIQ.isExact(cast<BinaryOperator>(I)), Q);
Duncan Sands7f60dc12011-01-14 00:37:45 +00005241 break;
5242 case Instruction::AShr:
Chris Lattner9e4aa022011-02-09 17:15:04 +00005243 Result = SimplifyAShrInst(I->getOperand(0), I->getOperand(1),
Florian Hahn19f9e322018-08-17 14:39:04 +00005244 Q.IIQ.isExact(cast<BinaryOperator>(I)), Q);
Duncan Sands7f60dc12011-01-14 00:37:45 +00005245 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00005246 case Instruction::And:
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005247 Result = SimplifyAndInst(I->getOperand(0), I->getOperand(1), Q);
Duncan Sands64e41cf2010-11-17 08:35:29 +00005248 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00005249 case Instruction::Or:
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005250 Result = SimplifyOrInst(I->getOperand(0), I->getOperand(1), Q);
Duncan Sands64e41cf2010-11-17 08:35:29 +00005251 break;
Duncan Sandsc89ac072010-11-17 18:52:15 +00005252 case Instruction::Xor:
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005253 Result = SimplifyXorInst(I->getOperand(0), I->getOperand(1), Q);
Duncan Sandsc89ac072010-11-17 18:52:15 +00005254 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00005255 case Instruction::ICmp:
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005256 Result = SimplifyICmpInst(cast<ICmpInst>(I)->getPredicate(),
5257 I->getOperand(0), I->getOperand(1), Q);
Duncan Sands64e41cf2010-11-17 08:35:29 +00005258 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00005259 case Instruction::FCmp:
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005260 Result =
5261 SimplifyFCmpInst(cast<FCmpInst>(I)->getPredicate(), I->getOperand(0),
5262 I->getOperand(1), I->getFastMathFlags(), Q);
Duncan Sands64e41cf2010-11-17 08:35:29 +00005263 break;
Chris Lattnerc707fa92010-04-20 05:32:14 +00005264 case Instruction::Select:
Duncan Sands64e41cf2010-11-17 08:35:29 +00005265 Result = SimplifySelectInst(I->getOperand(0), I->getOperand(1),
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005266 I->getOperand(2), Q);
Duncan Sands64e41cf2010-11-17 08:35:29 +00005267 break;
Chris Lattner8574aba2009-11-27 00:29:05 +00005268 case Instruction::GetElementPtr: {
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005269 SmallVector<Value *, 8> Ops(I->op_begin(), I->op_end());
Manuel Jacob20c6d5b2016-01-17 22:46:43 +00005270 Result = SimplifyGEPInst(cast<GetElementPtrInst>(I)->getSourceElementType(),
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005271 Ops, Q);
Duncan Sands64e41cf2010-11-17 08:35:29 +00005272 break;
Chris Lattner8574aba2009-11-27 00:29:05 +00005273 }
Duncan Sandsfd26a952011-09-05 06:52:48 +00005274 case Instruction::InsertValue: {
5275 InsertValueInst *IV = cast<InsertValueInst>(I);
5276 Result = SimplifyInsertValueInst(IV->getAggregateOperand(),
5277 IV->getInsertedValueOperand(),
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005278 IV->getIndices(), Q);
Duncan Sandsfd26a952011-09-05 06:52:48 +00005279 break;
5280 }
Igor Laevskye0edb662017-12-13 11:21:18 +00005281 case Instruction::InsertElement: {
5282 auto *IE = cast<InsertElementInst>(I);
5283 Result = SimplifyInsertElementInst(IE->getOperand(0), IE->getOperand(1),
5284 IE->getOperand(2), Q);
5285 break;
5286 }
David Majnemer25a796e2015-07-13 01:15:46 +00005287 case Instruction::ExtractValue: {
5288 auto *EVI = cast<ExtractValueInst>(I);
5289 Result = SimplifyExtractValueInst(EVI->getAggregateOperand(),
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005290 EVI->getIndices(), Q);
David Majnemer25a796e2015-07-13 01:15:46 +00005291 break;
5292 }
David Majnemer599ca442015-07-13 01:15:53 +00005293 case Instruction::ExtractElement: {
5294 auto *EEI = cast<ExtractElementInst>(I);
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005295 Result = SimplifyExtractElementInst(EEI->getVectorOperand(),
5296 EEI->getIndexOperand(), Q);
David Majnemer599ca442015-07-13 01:15:53 +00005297 break;
5298 }
Zvi Rackover8f460652017-04-03 22:05:30 +00005299 case Instruction::ShuffleVector: {
5300 auto *SVI = cast<ShuffleVectorInst>(I);
5301 Result = SimplifyShuffleVectorInst(SVI->getOperand(0), SVI->getOperand(1),
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005302 SVI->getMask(), SVI->getType(), Q);
Zvi Rackover8f460652017-04-03 22:05:30 +00005303 break;
5304 }
Duncan Sands4581ddc2010-11-14 13:30:18 +00005305 case Instruction::PHI:
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005306 Result = SimplifyPHINode(cast<PHINode>(I), Q);
Duncan Sands64e41cf2010-11-17 08:35:29 +00005307 break;
Chandler Carruth9dc35582012-12-28 11:30:55 +00005308 case Instruction::Call: {
Chandler Carruthdac20a82019-02-11 07:54:10 +00005309 Result = SimplifyCall(cast<CallInst>(I), Q);
Dan Gohman85977e62011-11-04 18:32:42 +00005310 break;
Chandler Carruth9dc35582012-12-28 11:30:55 +00005311 }
David Majnemer6774d612016-07-26 17:58:05 +00005312#define HANDLE_CAST_INST(num, opc, clas) case Instruction::opc:
5313#include "llvm/IR/Instruction.def"
5314#undef HANDLE_CAST_INST
Daniel Berlin5e3fcb12017-04-26 04:09:56 +00005315 Result =
5316 SimplifyCastInst(I->getOpcode(), I->getOperand(0), I->getType(), Q);
David Majnemera90a6212016-07-26 05:52:29 +00005317 break;
Craig Topper81c03a72017-04-12 22:54:24 +00005318 case Instruction::Alloca:
5319 // No simplifications for Alloca and it can't be constant folded.
5320 Result = nullptr;
5321 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00005322 }
Duncan Sands64e41cf2010-11-17 08:35:29 +00005323
Hal Finkelf2199b22015-10-23 20:37:08 +00005324 // In general, it is possible for computeKnownBits to determine all bits in a
5325 // value even when the operands are not all constants.
Sanjay Patel8ca30ab2016-11-27 21:07:28 +00005326 if (!Result && I->getType()->isIntOrIntVectorTy()) {
Craig Topper8205a1a2017-05-24 16:53:07 +00005327 KnownBits Known = computeKnownBits(I, Q.DL, /*Depth*/ 0, Q.AC, I, Q.DT, ORE);
Craig Topper8189a872017-05-03 23:12:29 +00005328 if (Known.isConstant())
5329 Result = ConstantInt::get(I->getType(), Known.getConstant());
Hal Finkelf2199b22015-10-23 20:37:08 +00005330 }
5331
Duncan Sands64e41cf2010-11-17 08:35:29 +00005332 /// If called on unreachable code, the above logic may report that the
5333 /// instruction simplified to itself. Make life easier for users by
Duncan Sands019a4182010-12-15 11:02:22 +00005334 /// detecting that case here, returning a safe value instead.
5335 return Result == I ? UndefValue::get(I->getType()) : Result;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00005336}
5337
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00005338/// Implementation of recursive simplification through an instruction's
Chandler Carruthcf1b5852012-03-24 21:11:24 +00005339/// uses.
Chris Lattner852d6d62009-11-10 22:26:15 +00005340///
Chandler Carruthcf1b5852012-03-24 21:11:24 +00005341/// This is the common implementation of the recursive simplification routines.
5342/// If we have a pre-simplified value in 'SimpleV', that is forcibly used to
5343/// replace the instruction 'I'. Otherwise, we simply add 'I' to the list of
5344/// instructions to process and attempt to simplify it using
Joerg Sonnenberger799c9662019-08-29 13:22:30 +00005345/// InstructionSimplify. Recursively visited users which could not be
5346/// simplified themselves are to the optional UnsimplifiedUsers set for
5347/// further processing by the caller.
Chandler Carruthcf1b5852012-03-24 21:11:24 +00005348///
5349/// This routine returns 'true' only when *it* simplifies something. The passed
5350/// in simplified value does not count toward this.
Joerg Sonnenberger799c9662019-08-29 13:22:30 +00005351static bool replaceAndRecursivelySimplifyImpl(
5352 Instruction *I, Value *SimpleV, const TargetLibraryInfo *TLI,
5353 const DominatorTree *DT, AssumptionCache *AC,
5354 SmallSetVector<Instruction *, 8> *UnsimplifiedUsers = nullptr) {
Chandler Carruthcf1b5852012-03-24 21:11:24 +00005355 bool Simplified = false;
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00005356 SmallSetVector<Instruction *, 8> Worklist;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00005357 const DataLayout &DL = I->getModule()->getDataLayout();
Duncan Sands7e800d62010-11-14 11:23:23 +00005358
Chandler Carruthcf1b5852012-03-24 21:11:24 +00005359 // If we have an explicit value to collapse to, do that round of the
5360 // simplification loop by hand initially.
5361 if (SimpleV) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00005362 for (User *U : I->users())
5363 if (U != I)
5364 Worklist.insert(cast<Instruction>(U));
Duncan Sands7e800d62010-11-14 11:23:23 +00005365
Chandler Carruthcf1b5852012-03-24 21:11:24 +00005366 // Replace the instruction with its simplified value.
5367 I->replaceAllUsesWith(SimpleV);
Chris Lattner19eff2a2010-07-15 06:36:08 +00005368
Chandler Carruthcf1b5852012-03-24 21:11:24 +00005369 // Gracefully handle edge cases where the instruction is not wired into any
5370 // parent block.
Chandler Carruth9ae926b2018-08-26 09:51:22 +00005371 if (I->getParent() && !I->isEHPad() && !I->isTerminator() &&
David Majnemer909793f2016-08-04 04:24:02 +00005372 !I->mayHaveSideEffects())
Chandler Carruthcf1b5852012-03-24 21:11:24 +00005373 I->eraseFromParent();
5374 } else {
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00005375 Worklist.insert(I);
Chris Lattner852d6d62009-11-10 22:26:15 +00005376 }
Duncan Sands7e800d62010-11-14 11:23:23 +00005377
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00005378 // Note that we must test the size on each iteration, the worklist can grow.
5379 for (unsigned Idx = 0; Idx != Worklist.size(); ++Idx) {
5380 I = Worklist[Idx];
Duncan Sands7e800d62010-11-14 11:23:23 +00005381
Chandler Carruthcf1b5852012-03-24 21:11:24 +00005382 // See if this instruction simplifies.
Daniel Berlin4d0fe642017-04-28 19:55:38 +00005383 SimpleV = SimplifyInstruction(I, {DL, TLI, DT, AC});
Joerg Sonnenberger799c9662019-08-29 13:22:30 +00005384 if (!SimpleV) {
5385 if (UnsimplifiedUsers)
5386 UnsimplifiedUsers->insert(I);
Chandler Carruthcf1b5852012-03-24 21:11:24 +00005387 continue;
Joerg Sonnenberger799c9662019-08-29 13:22:30 +00005388 }
Chandler Carruthcf1b5852012-03-24 21:11:24 +00005389
5390 Simplified = true;
5391
5392 // Stash away all the uses of the old instruction so we can check them for
5393 // recursive simplifications after a RAUW. This is cheaper than checking all
5394 // uses of To on the recursive step in most cases.
Chandler Carruthcdf47882014-03-09 03:16:01 +00005395 for (User *U : I->users())
5396 Worklist.insert(cast<Instruction>(U));
Chandler Carruthcf1b5852012-03-24 21:11:24 +00005397
5398 // Replace the instruction with its simplified value.
5399 I->replaceAllUsesWith(SimpleV);
5400
5401 // Gracefully handle edge cases where the instruction is not wired into any
5402 // parent block.
Chandler Carruth9ae926b2018-08-26 09:51:22 +00005403 if (I->getParent() && !I->isEHPad() && !I->isTerminator() &&
David Majnemer909793f2016-08-04 04:24:02 +00005404 !I->mayHaveSideEffects())
Chandler Carruthcf1b5852012-03-24 21:11:24 +00005405 I->eraseFromParent();
5406 }
5407 return Simplified;
5408}
5409
Mehdi Aminia28d91d2015-03-10 02:37:25 +00005410bool llvm::recursivelySimplifyInstruction(Instruction *I,
Chandler Carruthcf1b5852012-03-24 21:11:24 +00005411 const TargetLibraryInfo *TLI,
Daniel Jasperaec2fa32016-12-19 08:22:17 +00005412 const DominatorTree *DT,
5413 AssumptionCache *AC) {
Joerg Sonnenberger799c9662019-08-29 13:22:30 +00005414 return replaceAndRecursivelySimplifyImpl(I, nullptr, TLI, DT, AC, nullptr);
Chandler Carruthcf1b5852012-03-24 21:11:24 +00005415}
5416
Joerg Sonnenberger799c9662019-08-29 13:22:30 +00005417bool llvm::replaceAndRecursivelySimplify(
5418 Instruction *I, Value *SimpleV, const TargetLibraryInfo *TLI,
5419 const DominatorTree *DT, AssumptionCache *AC,
5420 SmallSetVector<Instruction *, 8> *UnsimplifiedUsers) {
Chandler Carruthcf1b5852012-03-24 21:11:24 +00005421 assert(I != SimpleV && "replaceAndRecursivelySimplify(X,X) is not valid!");
5422 assert(SimpleV && "Must provide a simplified value.");
Joerg Sonnenberger799c9662019-08-29 13:22:30 +00005423 return replaceAndRecursivelySimplifyImpl(I, SimpleV, TLI, DT, AC,
5424 UnsimplifiedUsers);
Chris Lattner852d6d62009-11-10 22:26:15 +00005425}
Daniel Berlin4d0fe642017-04-28 19:55:38 +00005426
5427namespace llvm {
5428const SimplifyQuery getBestSimplifyQuery(Pass &P, Function &F) {
5429 auto *DTWP = P.getAnalysisIfAvailable<DominatorTreeWrapperPass>();
5430 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr;
5431 auto *TLIWP = P.getAnalysisIfAvailable<TargetLibraryInfoWrapperPass>();
Teresa Johnson9c27b592019-09-07 03:09:36 +00005432 auto *TLI = TLIWP ? &TLIWP->getTLI(F) : nullptr;
Daniel Berlin4d0fe642017-04-28 19:55:38 +00005433 auto *ACWP = P.getAnalysisIfAvailable<AssumptionCacheTracker>();
5434 auto *AC = ACWP ? &ACWP->getAssumptionCache(F) : nullptr;
5435 return {F.getParent()->getDataLayout(), TLI, DT, AC};
5436}
5437
5438const SimplifyQuery getBestSimplifyQuery(LoopStandardAnalysisResults &AR,
5439 const DataLayout &DL) {
5440 return {DL, &AR.TLI, &AR.DT, &AR.AC};
5441}
5442
5443template <class T, class... TArgs>
5444const SimplifyQuery getBestSimplifyQuery(AnalysisManager<T, TArgs...> &AM,
5445 Function &F) {
5446 auto *DT = AM.template getCachedResult<DominatorTreeAnalysis>(F);
5447 auto *TLI = AM.template getCachedResult<TargetLibraryAnalysis>(F);
5448 auto *AC = AM.template getCachedResult<AssumptionAnalysis>(F);
5449 return {F.getParent()->getDataLayout(), TLI, DT, AC};
5450}
5451template const SimplifyQuery getBestSimplifyQuery(AnalysisManager<Function> &,
5452 Function &);
5453}