blob: 831ff2f09b1892e7ddbb6096df0300c6efece315 [file] [log] [blame]
Chris Lattner084a1b52009-11-09 22:57:59 +00001//===- InstructionSimplify.cpp - Fold instruction operands ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements routines for folding instructions into simpler forms
Duncan Sandsa0219882010-11-23 10:50:08 +000011// that do not require creating new instructions. This does constant folding
12// ("add i32 1, 1" -> "2") but can also handle non-constant operands, either
13// returning a constant ("and i32 %x, 0" -> "0") or an already existing value
Duncan Sandsed6d6c32010-12-20 14:47:04 +000014// ("and i32 %x, %x" -> "%x"). All operands are assumed to have already been
15// simplified: This is usually true and assuming it simplifies the logic (if
16// they have not been simplified then results are correct but maybe suboptimal).
Chris Lattner084a1b52009-11-09 22:57:59 +000017//
18//===----------------------------------------------------------------------===//
19
20#include "llvm/Analysis/InstructionSimplify.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000021#include "llvm/ADT/SetVector.h"
22#include "llvm/ADT/Statistic.h"
Chris Lattner084a1b52009-11-09 22:57:59 +000023#include "llvm/Analysis/ConstantFolding.h"
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +000024#include "llvm/Analysis/MemoryBuiltins.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000025#include "llvm/Analysis/ValueTracking.h"
Chandler Carruth8cd041e2014-03-04 12:24:34 +000026#include "llvm/IR/ConstantRange.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000027#include "llvm/IR/DataLayout.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000028#include "llvm/IR/Dominators.h"
Chandler Carruth03eb0de2014-03-04 10:40:04 +000029#include "llvm/IR/GetElementPtrTypeIterator.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000030#include "llvm/IR/GlobalAlias.h"
31#include "llvm/IR/Operator.h"
Chandler Carruth820a9082014-03-04 11:08:18 +000032#include "llvm/IR/PatternMatch.h"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000033#include "llvm/IR/ValueHandle.h"
Chris Lattner084a1b52009-11-09 22:57:59 +000034using namespace llvm;
Chris Lattnera71e9d62009-11-10 00:55:12 +000035using namespace llvm::PatternMatch;
Chris Lattner084a1b52009-11-09 22:57:59 +000036
Chandler Carruthf1221bd2014-04-22 02:48:03 +000037#define DEBUG_TYPE "instsimplify"
38
Chris Lattner9e4aa022011-02-09 17:15:04 +000039enum { RecursionLimit = 3 };
Duncan Sandsf3b1bf12010-11-10 18:23:01 +000040
Duncan Sands3547d2e2010-12-22 09:40:51 +000041STATISTIC(NumExpand, "Number of expansions");
Duncan Sands3547d2e2010-12-22 09:40:51 +000042STATISTIC(NumReassoc, "Number of reassociations");
43
Benjamin Kramercfd8d902014-09-12 08:56:53 +000044namespace {
Duncan Sandsb8cee002012-03-13 11:42:19 +000045struct Query {
Rafael Espindola37dc9e12014-02-21 00:06:31 +000046 const DataLayout *DL;
Duncan Sandsb8cee002012-03-13 11:42:19 +000047 const TargetLibraryInfo *TLI;
48 const DominatorTree *DT;
Hal Finkel60db0582014-09-07 18:57:58 +000049 AssumptionTracker *AT;
50 const Instruction *CxtI;
Duncan Sandsb8cee002012-03-13 11:42:19 +000051
Rafael Espindola37dc9e12014-02-21 00:06:31 +000052 Query(const DataLayout *DL, const TargetLibraryInfo *tli,
Hal Finkel60db0582014-09-07 18:57:58 +000053 const DominatorTree *dt, AssumptionTracker *at = nullptr,
54 const Instruction *cxti = nullptr)
55 : DL(DL), TLI(tli), DT(dt), AT(at), CxtI(cxti) {}
Duncan Sandsb8cee002012-03-13 11:42:19 +000056};
Benjamin Kramercfd8d902014-09-12 08:56:53 +000057} // end anonymous namespace
Duncan Sandsb8cee002012-03-13 11:42:19 +000058
59static Value *SimplifyAndInst(Value *, Value *, const Query &, unsigned);
60static Value *SimplifyBinOp(unsigned, Value *, Value *, const Query &,
Chad Rosierc24b86f2011-12-01 03:08:23 +000061 unsigned);
Duncan Sandsb8cee002012-03-13 11:42:19 +000062static Value *SimplifyCmpInst(unsigned, Value *, Value *, const Query &,
Chad Rosierc24b86f2011-12-01 03:08:23 +000063 unsigned);
Duncan Sandsb8cee002012-03-13 11:42:19 +000064static Value *SimplifyOrInst(Value *, Value *, const Query &, unsigned);
65static Value *SimplifyXorInst(Value *, Value *, const Query &, unsigned);
Duncan Sands395ac42d2012-03-13 14:07:05 +000066static Value *SimplifyTruncInst(Value *, Type *, const Query &, unsigned);
Duncan Sands5ffc2982010-11-16 12:16:38 +000067
Duncan Sandsc1c92712011-07-26 15:03:53 +000068/// getFalse - For a boolean type, or a vector of boolean type, return false, or
69/// a vector with every element false, as appropriate for the type.
70static Constant *getFalse(Type *Ty) {
Nick Lewyckye659b842011-12-01 02:39:36 +000071 assert(Ty->getScalarType()->isIntegerTy(1) &&
Duncan Sandsc1c92712011-07-26 15:03:53 +000072 "Expected i1 type or a vector of i1!");
73 return Constant::getNullValue(Ty);
74}
75
76/// getTrue - For a boolean type, or a vector of boolean type, return true, or
77/// a vector with every element true, as appropriate for the type.
78static Constant *getTrue(Type *Ty) {
Nick Lewyckye659b842011-12-01 02:39:36 +000079 assert(Ty->getScalarType()->isIntegerTy(1) &&
Duncan Sandsc1c92712011-07-26 15:03:53 +000080 "Expected i1 type or a vector of i1!");
81 return Constant::getAllOnesValue(Ty);
82}
83
Duncan Sands3d5692a2011-10-30 19:56:36 +000084/// isSameCompare - Is V equivalent to the comparison "LHS Pred RHS"?
85static bool isSameCompare(Value *V, CmpInst::Predicate Pred, Value *LHS,
86 Value *RHS) {
87 CmpInst *Cmp = dyn_cast<CmpInst>(V);
88 if (!Cmp)
89 return false;
90 CmpInst::Predicate CPred = Cmp->getPredicate();
91 Value *CLHS = Cmp->getOperand(0), *CRHS = Cmp->getOperand(1);
92 if (CPred == Pred && CLHS == LHS && CRHS == RHS)
93 return true;
94 return CPred == CmpInst::getSwappedPredicate(Pred) && CLHS == RHS &&
95 CRHS == LHS;
96}
97
Duncan Sands5ffc2982010-11-16 12:16:38 +000098/// ValueDominatesPHI - Does the given value dominate the specified phi node?
99static bool ValueDominatesPHI(Value *V, PHINode *P, const DominatorTree *DT) {
100 Instruction *I = dyn_cast<Instruction>(V);
101 if (!I)
102 // Arguments and constants dominate all instructions.
103 return true;
104
Chandler Carruth3ffccb32012-03-21 10:58:47 +0000105 // If we are processing instructions (and/or basic blocks) that have not been
106 // fully added to a function, the parent nodes may still be null. Simply
107 // return the conservative answer in these cases.
108 if (!I->getParent() || !P->getParent() || !I->getParent()->getParent())
109 return false;
110
Duncan Sands5ffc2982010-11-16 12:16:38 +0000111 // If we have a DominatorTree then do a precise test.
Eli Friedmanc8cbd062012-03-13 01:06:07 +0000112 if (DT) {
113 if (!DT->isReachableFromEntry(P->getParent()))
114 return true;
115 if (!DT->isReachableFromEntry(I->getParent()))
116 return false;
117 return DT->dominates(I, P);
118 }
Duncan Sands5ffc2982010-11-16 12:16:38 +0000119
120 // Otherwise, if the instruction is in the entry block, and is not an invoke,
121 // then it obviously dominates all phi nodes.
122 if (I->getParent() == &I->getParent()->getParent()->getEntryBlock() &&
123 !isa<InvokeInst>(I))
124 return true;
125
126 return false;
127}
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000128
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000129/// ExpandBinOp - Simplify "A op (B op' C)" by distributing op over op', turning
130/// it into "(A op B) op' (A op C)". Here "op" is given by Opcode and "op'" is
131/// given by OpcodeToExpand, while "A" corresponds to LHS and "B op' C" to RHS.
132/// Also performs the transform "(A op' B) op C" -> "(A op C) op' (B op C)".
133/// Returns the simplified value, or null if no simplification was performed.
134static Value *ExpandBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000135 unsigned OpcToExpand, const Query &Q,
Chad Rosierc24b86f2011-12-01 03:08:23 +0000136 unsigned MaxRecurse) {
Benjamin Kramerb6d52b82010-12-28 13:52:52 +0000137 Instruction::BinaryOps OpcodeToExpand = (Instruction::BinaryOps)OpcToExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000138 // Recursion is always used, so bail out at once if we already hit the limit.
139 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000140 return nullptr;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000141
142 // Check whether the expression has the form "(A op' B) op C".
143 if (BinaryOperator *Op0 = dyn_cast<BinaryOperator>(LHS))
144 if (Op0->getOpcode() == OpcodeToExpand) {
145 // It does! Try turning it into "(A op C) op' (B op C)".
146 Value *A = Op0->getOperand(0), *B = Op0->getOperand(1), *C = RHS;
147 // Do "A op C" and "B op C" both simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000148 if (Value *L = SimplifyBinOp(Opcode, A, C, Q, MaxRecurse))
149 if (Value *R = SimplifyBinOp(Opcode, B, C, Q, MaxRecurse)) {
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000150 // They do! Return "L op' R" if it simplifies or is already available.
151 // If "L op' R" equals "A op' B" then "L op' R" is just the LHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000152 if ((L == A && R == B) || (Instruction::isCommutative(OpcodeToExpand)
153 && L == B && R == A)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000154 ++NumExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000155 return LHS;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000156 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000157 // Otherwise return "L op' R" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000158 if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000159 ++NumExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000160 return V;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000161 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000162 }
163 }
164
165 // Check whether the expression has the form "A op (B op' C)".
166 if (BinaryOperator *Op1 = dyn_cast<BinaryOperator>(RHS))
167 if (Op1->getOpcode() == OpcodeToExpand) {
168 // It does! Try turning it into "(A op B) op' (A op C)".
169 Value *A = LHS, *B = Op1->getOperand(0), *C = Op1->getOperand(1);
170 // Do "A op B" and "A op C" both simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000171 if (Value *L = SimplifyBinOp(Opcode, A, B, Q, MaxRecurse))
172 if (Value *R = SimplifyBinOp(Opcode, A, C, Q, MaxRecurse)) {
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000173 // They do! Return "L op' R" if it simplifies or is already available.
174 // If "L op' R" equals "B op' C" then "L op' R" is just the RHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000175 if ((L == B && R == C) || (Instruction::isCommutative(OpcodeToExpand)
176 && L == C && R == B)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000177 ++NumExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000178 return RHS;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000179 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000180 // Otherwise return "L op' R" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000181 if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000182 ++NumExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000183 return V;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000184 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000185 }
186 }
187
Craig Topper9f008862014-04-15 04:59:12 +0000188 return nullptr;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000189}
190
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000191/// SimplifyAssociativeBinOp - Generic simplifications for associative binary
192/// operations. Returns the simpler value, or null if none was found.
Benjamin Kramerb6d52b82010-12-28 13:52:52 +0000193static Value *SimplifyAssociativeBinOp(unsigned Opc, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000194 const Query &Q, unsigned MaxRecurse) {
Benjamin Kramerb6d52b82010-12-28 13:52:52 +0000195 Instruction::BinaryOps Opcode = (Instruction::BinaryOps)Opc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000196 assert(Instruction::isAssociative(Opcode) && "Not an associative operation!");
197
198 // Recursion is always used, so bail out at once if we already hit the limit.
199 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000200 return nullptr;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000201
202 BinaryOperator *Op0 = dyn_cast<BinaryOperator>(LHS);
203 BinaryOperator *Op1 = dyn_cast<BinaryOperator>(RHS);
204
205 // Transform: "(A op B) op C" ==> "A op (B op C)" if it simplifies completely.
206 if (Op0 && Op0->getOpcode() == Opcode) {
207 Value *A = Op0->getOperand(0);
208 Value *B = Op0->getOperand(1);
209 Value *C = RHS;
210
211 // Does "B op C" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000212 if (Value *V = SimplifyBinOp(Opcode, B, C, Q, MaxRecurse)) {
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000213 // It does! Return "A op V" if it simplifies or is already available.
214 // If V equals B then "A op V" is just the LHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000215 if (V == B) return LHS;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000216 // Otherwise return "A op V" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000217 if (Value *W = SimplifyBinOp(Opcode, A, V, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000218 ++NumReassoc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000219 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000220 }
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000221 }
222 }
223
224 // Transform: "A op (B op C)" ==> "(A op B) op C" if it simplifies completely.
225 if (Op1 && Op1->getOpcode() == Opcode) {
226 Value *A = LHS;
227 Value *B = Op1->getOperand(0);
228 Value *C = Op1->getOperand(1);
229
230 // Does "A op B" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000231 if (Value *V = SimplifyBinOp(Opcode, A, B, Q, MaxRecurse)) {
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000232 // It does! Return "V op C" if it simplifies or is already available.
233 // If V equals B then "V op C" is just the RHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000234 if (V == B) return RHS;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000235 // Otherwise return "V op C" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000236 if (Value *W = SimplifyBinOp(Opcode, V, C, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000237 ++NumReassoc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000238 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000239 }
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000240 }
241 }
242
243 // The remaining transforms require commutativity as well as associativity.
244 if (!Instruction::isCommutative(Opcode))
Craig Topper9f008862014-04-15 04:59:12 +0000245 return nullptr;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000246
247 // Transform: "(A op B) op C" ==> "(C op A) op B" if it simplifies completely.
248 if (Op0 && Op0->getOpcode() == Opcode) {
249 Value *A = Op0->getOperand(0);
250 Value *B = Op0->getOperand(1);
251 Value *C = RHS;
252
253 // Does "C op A" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000254 if (Value *V = SimplifyBinOp(Opcode, C, A, Q, MaxRecurse)) {
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000255 // It does! Return "V op B" if it simplifies or is already available.
256 // If V equals A then "V op B" is just the LHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000257 if (V == A) return LHS;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000258 // Otherwise return "V op B" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000259 if (Value *W = SimplifyBinOp(Opcode, V, B, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000260 ++NumReassoc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000261 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000262 }
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000263 }
264 }
265
266 // Transform: "A op (B op C)" ==> "B op (C op A)" if it simplifies completely.
267 if (Op1 && Op1->getOpcode() == Opcode) {
268 Value *A = LHS;
269 Value *B = Op1->getOperand(0);
270 Value *C = Op1->getOperand(1);
271
272 // Does "C op A" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000273 if (Value *V = SimplifyBinOp(Opcode, C, A, Q, MaxRecurse)) {
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000274 // It does! Return "B op V" if it simplifies or is already available.
275 // If V equals C then "B op V" is just the RHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000276 if (V == C) return RHS;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000277 // Otherwise return "B op V" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000278 if (Value *W = SimplifyBinOp(Opcode, B, V, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000279 ++NumReassoc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000280 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000281 }
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000282 }
283 }
284
Craig Topper9f008862014-04-15 04:59:12 +0000285 return nullptr;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000286}
287
Duncan Sandsb0579e92010-11-10 13:00:08 +0000288/// ThreadBinOpOverSelect - In the case of a binary operation with a select
289/// instruction as an operand, try to simplify the binop by seeing whether
290/// evaluating it on both branches of the select results in the same value.
291/// Returns the common value if so, otherwise returns null.
292static Value *ThreadBinOpOverSelect(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000293 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000294 // Recursion is always used, so bail out at once if we already hit the limit.
295 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000296 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000297
Duncan Sandsb0579e92010-11-10 13:00:08 +0000298 SelectInst *SI;
299 if (isa<SelectInst>(LHS)) {
300 SI = cast<SelectInst>(LHS);
301 } else {
302 assert(isa<SelectInst>(RHS) && "No select instruction operand!");
303 SI = cast<SelectInst>(RHS);
304 }
305
306 // Evaluate the BinOp on the true and false branches of the select.
307 Value *TV;
308 Value *FV;
309 if (SI == LHS) {
Duncan Sandsb8cee002012-03-13 11:42:19 +0000310 TV = SimplifyBinOp(Opcode, SI->getTrueValue(), RHS, Q, MaxRecurse);
311 FV = SimplifyBinOp(Opcode, SI->getFalseValue(), RHS, Q, MaxRecurse);
Duncan Sandsb0579e92010-11-10 13:00:08 +0000312 } else {
Duncan Sandsb8cee002012-03-13 11:42:19 +0000313 TV = SimplifyBinOp(Opcode, LHS, SI->getTrueValue(), Q, MaxRecurse);
314 FV = SimplifyBinOp(Opcode, LHS, SI->getFalseValue(), Q, MaxRecurse);
Duncan Sandsb0579e92010-11-10 13:00:08 +0000315 }
316
Duncan Sandse3c53952011-01-01 16:12:09 +0000317 // If they simplified to the same value, then return the common value.
Duncan Sands772749a2011-01-01 20:08:02 +0000318 // If they both failed to simplify then return null.
319 if (TV == FV)
Duncan Sandsb0579e92010-11-10 13:00:08 +0000320 return TV;
321
322 // If one branch simplified to undef, return the other one.
323 if (TV && isa<UndefValue>(TV))
324 return FV;
325 if (FV && isa<UndefValue>(FV))
326 return TV;
327
328 // If applying the operation did not change the true and false select values,
329 // then the result of the binop is the select itself.
Duncan Sands772749a2011-01-01 20:08:02 +0000330 if (TV == SI->getTrueValue() && FV == SI->getFalseValue())
Duncan Sandsb0579e92010-11-10 13:00:08 +0000331 return SI;
332
333 // If one branch simplified and the other did not, and the simplified
334 // value is equal to the unsimplified one, return the simplified value.
335 // For example, select (cond, X, X & Z) & Z -> X & Z.
336 if ((FV && !TV) || (TV && !FV)) {
337 // Check that the simplified value has the form "X op Y" where "op" is the
338 // same as the original operation.
339 Instruction *Simplified = dyn_cast<Instruction>(FV ? FV : TV);
340 if (Simplified && Simplified->getOpcode() == Opcode) {
341 // The value that didn't simplify is "UnsimplifiedLHS op UnsimplifiedRHS".
342 // We already know that "op" is the same as for the simplified value. See
343 // if the operands match too. If so, return the simplified value.
344 Value *UnsimplifiedBranch = FV ? SI->getTrueValue() : SI->getFalseValue();
345 Value *UnsimplifiedLHS = SI == LHS ? UnsimplifiedBranch : LHS;
346 Value *UnsimplifiedRHS = SI == LHS ? RHS : UnsimplifiedBranch;
Duncan Sands772749a2011-01-01 20:08:02 +0000347 if (Simplified->getOperand(0) == UnsimplifiedLHS &&
348 Simplified->getOperand(1) == UnsimplifiedRHS)
Duncan Sandsb0579e92010-11-10 13:00:08 +0000349 return Simplified;
350 if (Simplified->isCommutative() &&
Duncan Sands772749a2011-01-01 20:08:02 +0000351 Simplified->getOperand(1) == UnsimplifiedLHS &&
352 Simplified->getOperand(0) == UnsimplifiedRHS)
Duncan Sandsb0579e92010-11-10 13:00:08 +0000353 return Simplified;
354 }
355 }
356
Craig Topper9f008862014-04-15 04:59:12 +0000357 return nullptr;
Duncan Sandsb0579e92010-11-10 13:00:08 +0000358}
359
360/// ThreadCmpOverSelect - In the case of a comparison with a select instruction,
361/// try to simplify the comparison by seeing whether both branches of the select
362/// result in the same value. Returns the common value if so, otherwise returns
363/// null.
364static Value *ThreadCmpOverSelect(CmpInst::Predicate Pred, Value *LHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000365 Value *RHS, const Query &Q,
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000366 unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000367 // Recursion is always used, so bail out at once if we already hit the limit.
368 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000369 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000370
Duncan Sandsb0579e92010-11-10 13:00:08 +0000371 // Make sure the select is on the LHS.
372 if (!isa<SelectInst>(LHS)) {
373 std::swap(LHS, RHS);
374 Pred = CmpInst::getSwappedPredicate(Pred);
375 }
376 assert(isa<SelectInst>(LHS) && "Not comparing with a select instruction!");
377 SelectInst *SI = cast<SelectInst>(LHS);
Duncan Sands3d5692a2011-10-30 19:56:36 +0000378 Value *Cond = SI->getCondition();
379 Value *TV = SI->getTrueValue();
380 Value *FV = SI->getFalseValue();
Duncan Sandsb0579e92010-11-10 13:00:08 +0000381
Duncan Sands06504022011-02-03 09:37:39 +0000382 // Now that we have "cmp select(Cond, TV, FV), RHS", analyse it.
Duncan Sandsb0579e92010-11-10 13:00:08 +0000383 // Does "cmp TV, RHS" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000384 Value *TCmp = SimplifyCmpInst(Pred, TV, RHS, Q, MaxRecurse);
Duncan Sands3d5692a2011-10-30 19:56:36 +0000385 if (TCmp == Cond) {
386 // It not only simplified, it simplified to the select condition. Replace
387 // it with 'true'.
388 TCmp = getTrue(Cond->getType());
389 } else if (!TCmp) {
390 // It didn't simplify. However if "cmp TV, RHS" is equal to the select
391 // condition then we can replace it with 'true'. Otherwise give up.
392 if (!isSameCompare(Cond, Pred, TV, RHS))
Craig Topper9f008862014-04-15 04:59:12 +0000393 return nullptr;
Duncan Sands3d5692a2011-10-30 19:56:36 +0000394 TCmp = getTrue(Cond->getType());
Duncan Sands06504022011-02-03 09:37:39 +0000395 }
396
Duncan Sands3d5692a2011-10-30 19:56:36 +0000397 // Does "cmp FV, RHS" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000398 Value *FCmp = SimplifyCmpInst(Pred, FV, RHS, Q, MaxRecurse);
Duncan Sands3d5692a2011-10-30 19:56:36 +0000399 if (FCmp == Cond) {
400 // It not only simplified, it simplified to the select condition. Replace
401 // it with 'false'.
402 FCmp = getFalse(Cond->getType());
403 } else if (!FCmp) {
404 // It didn't simplify. However if "cmp FV, RHS" is equal to the select
405 // condition then we can replace it with 'false'. Otherwise give up.
406 if (!isSameCompare(Cond, Pred, FV, RHS))
Craig Topper9f008862014-04-15 04:59:12 +0000407 return nullptr;
Duncan Sands3d5692a2011-10-30 19:56:36 +0000408 FCmp = getFalse(Cond->getType());
409 }
410
411 // If both sides simplified to the same value, then use it as the result of
412 // the original comparison.
413 if (TCmp == FCmp)
414 return TCmp;
Duncan Sands26641d72012-02-10 14:31:24 +0000415
416 // The remaining cases only make sense if the select condition has the same
417 // type as the result of the comparison, so bail out if this is not so.
418 if (Cond->getType()->isVectorTy() != RHS->getType()->isVectorTy())
Craig Topper9f008862014-04-15 04:59:12 +0000419 return nullptr;
Duncan Sands3d5692a2011-10-30 19:56:36 +0000420 // If the false value simplified to false, then the result of the compare
421 // is equal to "Cond && TCmp". This also catches the case when the false
422 // value simplified to false and the true value to true, returning "Cond".
423 if (match(FCmp, m_Zero()))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000424 if (Value *V = SimplifyAndInst(Cond, TCmp, Q, MaxRecurse))
Duncan Sands3d5692a2011-10-30 19:56:36 +0000425 return V;
426 // If the true value simplified to true, then the result of the compare
427 // is equal to "Cond || FCmp".
428 if (match(TCmp, m_One()))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000429 if (Value *V = SimplifyOrInst(Cond, FCmp, Q, MaxRecurse))
Duncan Sands3d5692a2011-10-30 19:56:36 +0000430 return V;
431 // Finally, if the false value simplified to true and the true value to
432 // false, then the result of the compare is equal to "!Cond".
433 if (match(FCmp, m_One()) && match(TCmp, m_Zero()))
434 if (Value *V =
435 SimplifyXorInst(Cond, Constant::getAllOnesValue(Cond->getType()),
Duncan Sandsb8cee002012-03-13 11:42:19 +0000436 Q, MaxRecurse))
Duncan Sands3d5692a2011-10-30 19:56:36 +0000437 return V;
438
Craig Topper9f008862014-04-15 04:59:12 +0000439 return nullptr;
Duncan Sandsb0579e92010-11-10 13:00:08 +0000440}
441
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000442/// ThreadBinOpOverPHI - In the case of a binary operation with an operand that
443/// is a PHI instruction, try to simplify the binop by seeing whether evaluating
444/// it on the incoming phi values yields the same result for every value. If so
445/// returns the common value, otherwise returns null.
446static Value *ThreadBinOpOverPHI(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000447 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000448 // Recursion is always used, so bail out at once if we already hit the limit.
449 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000450 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000451
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000452 PHINode *PI;
453 if (isa<PHINode>(LHS)) {
454 PI = cast<PHINode>(LHS);
Duncan Sands5ffc2982010-11-16 12:16:38 +0000455 // Bail out if RHS and the phi may be mutually interdependent due to a loop.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000456 if (!ValueDominatesPHI(RHS, PI, Q.DT))
Craig Topper9f008862014-04-15 04:59:12 +0000457 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000458 } else {
459 assert(isa<PHINode>(RHS) && "No PHI instruction operand!");
460 PI = cast<PHINode>(RHS);
Duncan Sands5ffc2982010-11-16 12:16:38 +0000461 // Bail out if LHS and the phi may be mutually interdependent due to a loop.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000462 if (!ValueDominatesPHI(LHS, PI, Q.DT))
Craig Topper9f008862014-04-15 04:59:12 +0000463 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000464 }
465
466 // Evaluate the BinOp on the incoming phi values.
Craig Topper9f008862014-04-15 04:59:12 +0000467 Value *CommonValue = nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000468 for (unsigned i = 0, e = PI->getNumIncomingValues(); i != e; ++i) {
Duncan Sandsf12ba1d2010-11-15 17:52:45 +0000469 Value *Incoming = PI->getIncomingValue(i);
Duncan Sands7412f6e2010-11-17 04:30:22 +0000470 // If the incoming value is the phi node itself, it can safely be skipped.
Duncan Sandsf12ba1d2010-11-15 17:52:45 +0000471 if (Incoming == PI) continue;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000472 Value *V = PI == LHS ?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000473 SimplifyBinOp(Opcode, Incoming, RHS, Q, MaxRecurse) :
474 SimplifyBinOp(Opcode, LHS, Incoming, Q, MaxRecurse);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000475 // If the operation failed to simplify, or simplified to a different value
476 // to previously, then give up.
477 if (!V || (CommonValue && V != CommonValue))
Craig Topper9f008862014-04-15 04:59:12 +0000478 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000479 CommonValue = V;
480 }
481
482 return CommonValue;
483}
484
485/// ThreadCmpOverPHI - In the case of a comparison with a PHI instruction, try
486/// try to simplify the comparison by seeing whether comparing with all of the
487/// incoming phi values yields the same result every time. If so returns the
488/// common result, otherwise returns null.
489static Value *ThreadCmpOverPHI(CmpInst::Predicate Pred, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000490 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000491 // Recursion is always used, so bail out at once if we already hit the limit.
492 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000493 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000494
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000495 // Make sure the phi is on the LHS.
496 if (!isa<PHINode>(LHS)) {
497 std::swap(LHS, RHS);
498 Pred = CmpInst::getSwappedPredicate(Pred);
499 }
500 assert(isa<PHINode>(LHS) && "Not comparing with a phi instruction!");
501 PHINode *PI = cast<PHINode>(LHS);
502
Duncan Sands5ffc2982010-11-16 12:16:38 +0000503 // Bail out if RHS and the phi may be mutually interdependent due to a loop.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000504 if (!ValueDominatesPHI(RHS, PI, Q.DT))
Craig Topper9f008862014-04-15 04:59:12 +0000505 return nullptr;
Duncan Sands5ffc2982010-11-16 12:16:38 +0000506
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000507 // Evaluate the BinOp on the incoming phi values.
Craig Topper9f008862014-04-15 04:59:12 +0000508 Value *CommonValue = nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000509 for (unsigned i = 0, e = PI->getNumIncomingValues(); i != e; ++i) {
Duncan Sandsf12ba1d2010-11-15 17:52:45 +0000510 Value *Incoming = PI->getIncomingValue(i);
Duncan Sands7412f6e2010-11-17 04:30:22 +0000511 // If the incoming value is the phi node itself, it can safely be skipped.
Duncan Sandsf12ba1d2010-11-15 17:52:45 +0000512 if (Incoming == PI) continue;
Duncan Sandsb8cee002012-03-13 11:42:19 +0000513 Value *V = SimplifyCmpInst(Pred, Incoming, RHS, Q, MaxRecurse);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000514 // If the operation failed to simplify, or simplified to a different value
515 // to previously, then give up.
516 if (!V || (CommonValue && V != CommonValue))
Craig Topper9f008862014-04-15 04:59:12 +0000517 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000518 CommonValue = V;
519 }
520
521 return CommonValue;
522}
523
Chris Lattner3d9823b2009-11-27 17:42:22 +0000524/// SimplifyAddInst - Given operands for an Add, see if we can
525/// fold the result. If not, this returns null.
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000526static Value *SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000527 const Query &Q, unsigned MaxRecurse) {
Chris Lattner3d9823b2009-11-27 17:42:22 +0000528 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
529 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
530 Constant *Ops[] = { CLHS, CRHS };
Duncan Sandsb8cee002012-03-13 11:42:19 +0000531 return ConstantFoldInstOperands(Instruction::Add, CLHS->getType(), Ops,
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000532 Q.DL, Q.TLI);
Chris Lattner3d9823b2009-11-27 17:42:22 +0000533 }
Duncan Sands7e800d62010-11-14 11:23:23 +0000534
Chris Lattner3d9823b2009-11-27 17:42:22 +0000535 // Canonicalize the constant to the RHS.
536 std::swap(Op0, Op1);
537 }
Duncan Sands7e800d62010-11-14 11:23:23 +0000538
Duncan Sands0a2c41682010-12-15 14:07:39 +0000539 // X + undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000540 if (match(Op1, m_Undef()))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000541 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +0000542
Duncan Sands0a2c41682010-12-15 14:07:39 +0000543 // X + 0 -> X
544 if (match(Op1, m_Zero()))
545 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +0000546
Duncan Sands0a2c41682010-12-15 14:07:39 +0000547 // X + (Y - X) -> Y
548 // (Y - X) + X -> Y
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000549 // Eg: X + -X -> 0
Craig Topper9f008862014-04-15 04:59:12 +0000550 Value *Y = nullptr;
Duncan Sands772749a2011-01-01 20:08:02 +0000551 if (match(Op1, m_Sub(m_Value(Y), m_Specific(Op0))) ||
552 match(Op0, m_Sub(m_Value(Y), m_Specific(Op1))))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000553 return Y;
554
555 // X + ~X -> -1 since ~X = -X-1
Duncan Sands772749a2011-01-01 20:08:02 +0000556 if (match(Op0, m_Not(m_Specific(Op1))) ||
557 match(Op1, m_Not(m_Specific(Op0))))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000558 return Constant::getAllOnesValue(Op0->getType());
Duncan Sandsb238de02010-11-19 09:20:39 +0000559
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000560 /// i1 add -> xor.
Duncan Sands5def0d62010-12-21 14:48:48 +0000561 if (MaxRecurse && Op0->getType()->isIntegerTy(1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000562 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sandsfecc6422010-12-21 15:03:43 +0000563 return V;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000564
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000565 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000566 if (Value *V = SimplifyAssociativeBinOp(Instruction::Add, Op0, Op1, Q,
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000567 MaxRecurse))
568 return V;
569
Duncan Sandsb238de02010-11-19 09:20:39 +0000570 // Threading Add over selects and phi nodes is pointless, so don't bother.
571 // Threading over the select in "A + select(cond, B, C)" means evaluating
572 // "A+B" and "A+C" and seeing if they are equal; but they are equal if and
573 // only if B and C are equal. If B and C are equal then (since we assume
574 // that operands have already been simplified) "select(cond, B, C)" should
575 // have been simplified to the common value of B and C already. Analysing
576 // "A+B" and "A+C" thus gains nothing, but costs compile time. Similarly
577 // for threading over phi nodes.
578
Craig Topper9f008862014-04-15 04:59:12 +0000579 return nullptr;
Chris Lattner3d9823b2009-11-27 17:42:22 +0000580}
581
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000582Value *llvm::SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000583 const DataLayout *DL, const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +0000584 const DominatorTree *DT, AssumptionTracker *AT,
585 const Instruction *CxtI) {
586 return ::SimplifyAddInst(Op0, Op1, isNSW, isNUW,
587 Query (DL, TLI, DT, AT, CxtI), RecursionLimit);
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000588}
589
Chandler Carrutha0796552012-03-12 11:19:31 +0000590/// \brief Compute the base pointer and cumulative constant offsets for V.
591///
592/// This strips all constant offsets off of V, leaving it the base pointer, and
593/// accumulates the total constant offset applied in the returned constant. It
594/// returns 0 if V is not a pointer, and returns the constant '0' if there are
595/// no constant offsets applied.
Dan Gohman36fa8392013-01-31 02:45:26 +0000596///
597/// This is very similar to GetPointerBaseWithConstantOffset except it doesn't
598/// follow non-inbounds geps. This allows it to remain usable for icmp ult/etc.
599/// folding.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000600static Constant *stripAndComputeConstantOffsets(const DataLayout *DL,
Benjamin Kramer942dfe62013-09-23 14:16:38 +0000601 Value *&V,
602 bool AllowNonInbounds = false) {
Benjamin Kramerc05aa952013-02-01 15:21:10 +0000603 assert(V->getType()->getScalarType()->isPointerTy());
Chandler Carrutha0796552012-03-12 11:19:31 +0000604
Dan Gohman18c77a12013-01-31 02:50:36 +0000605 // Without DataLayout, just be conservative for now. Theoretically, more could
606 // be done in this case.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000607 if (!DL)
Dan Gohman18c77a12013-01-31 02:50:36 +0000608 return ConstantInt::get(IntegerType::get(V->getContext(), 64), 0);
609
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000610 Type *IntPtrTy = DL->getIntPtrType(V->getType())->getScalarType();
Matt Arsenault2f9cce22013-08-03 01:03:12 +0000611 APInt Offset = APInt::getNullValue(IntPtrTy->getIntegerBitWidth());
Chandler Carrutha0796552012-03-12 11:19:31 +0000612
613 // Even though we don't look through PHI nodes, we could be called on an
614 // instruction in an unreachable block, which may be on a cycle.
615 SmallPtrSet<Value *, 4> Visited;
616 Visited.insert(V);
617 do {
618 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
Benjamin Kramer942dfe62013-09-23 14:16:38 +0000619 if ((!AllowNonInbounds && !GEP->isInBounds()) ||
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000620 !GEP->accumulateConstantOffset(*DL, Offset))
Chandler Carrutha0796552012-03-12 11:19:31 +0000621 break;
Chandler Carrutha0796552012-03-12 11:19:31 +0000622 V = GEP->getPointerOperand();
623 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
Matt Arsenault2f9cce22013-08-03 01:03:12 +0000624 V = cast<Operator>(V)->getOperand(0);
Chandler Carrutha0796552012-03-12 11:19:31 +0000625 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) {
626 if (GA->mayBeOverridden())
627 break;
628 V = GA->getAliasee();
629 } else {
630 break;
631 }
Benjamin Kramerc05aa952013-02-01 15:21:10 +0000632 assert(V->getType()->getScalarType()->isPointerTy() &&
633 "Unexpected operand type!");
Chandler Carrutha0796552012-03-12 11:19:31 +0000634 } while (Visited.insert(V));
635
Benjamin Kramerc05aa952013-02-01 15:21:10 +0000636 Constant *OffsetIntPtr = ConstantInt::get(IntPtrTy, Offset);
637 if (V->getType()->isVectorTy())
638 return ConstantVector::getSplat(V->getType()->getVectorNumElements(),
639 OffsetIntPtr);
640 return OffsetIntPtr;
Chandler Carrutha0796552012-03-12 11:19:31 +0000641}
642
643/// \brief Compute the constant difference between two pointer values.
644/// If the difference is not a constant, returns zero.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000645static Constant *computePointerDifference(const DataLayout *DL,
Chandler Carrutha0796552012-03-12 11:19:31 +0000646 Value *LHS, Value *RHS) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000647 Constant *LHSOffset = stripAndComputeConstantOffsets(DL, LHS);
648 Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS);
Chandler Carrutha0796552012-03-12 11:19:31 +0000649
650 // If LHS and RHS are not related via constant offsets to the same base
651 // value, there is nothing we can do here.
652 if (LHS != RHS)
Craig Topper9f008862014-04-15 04:59:12 +0000653 return nullptr;
Chandler Carrutha0796552012-03-12 11:19:31 +0000654
655 // Otherwise, the difference of LHS - RHS can be computed as:
656 // LHS - RHS
657 // = (LHSOffset + Base) - (RHSOffset + Base)
658 // = LHSOffset - RHSOffset
659 return ConstantExpr::getSub(LHSOffset, RHSOffset);
660}
661
Duncan Sands0a2c41682010-12-15 14:07:39 +0000662/// SimplifySubInst - Given operands for a Sub, see if we can
663/// fold the result. If not, this returns null.
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000664static Value *SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000665 const Query &Q, unsigned MaxRecurse) {
Duncan Sands0a2c41682010-12-15 14:07:39 +0000666 if (Constant *CLHS = dyn_cast<Constant>(Op0))
667 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
668 Constant *Ops[] = { CLHS, CRHS };
669 return ConstantFoldInstOperands(Instruction::Sub, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000670 Ops, Q.DL, Q.TLI);
Duncan Sands0a2c41682010-12-15 14:07:39 +0000671 }
672
673 // X - undef -> undef
674 // undef - X -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000675 if (match(Op0, m_Undef()) || match(Op1, m_Undef()))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000676 return UndefValue::get(Op0->getType());
677
678 // X - 0 -> X
679 if (match(Op1, m_Zero()))
680 return Op0;
681
682 // X - X -> 0
Duncan Sands772749a2011-01-01 20:08:02 +0000683 if (Op0 == Op1)
Duncan Sands0a2c41682010-12-15 14:07:39 +0000684 return Constant::getNullValue(Op0->getType());
685
David Majnemercd4fbcd2014-07-31 04:49:18 +0000686 // X - (0 - Y) -> X if the second sub is NUW.
687 // If Y != 0, 0 - Y is a poison value.
688 // If Y == 0, 0 - Y simplifies to 0.
689 if (BinaryOperator::isNeg(Op1)) {
690 if (const auto *BO = dyn_cast<BinaryOperator>(Op1)) {
691 assert(BO->getOpcode() == Instruction::Sub &&
692 "Expected a subtraction operator!");
693 if (BO->hasNoUnsignedWrap())
694 return Op0;
695 }
696 }
697
Duncan Sands99589d02011-01-18 11:50:19 +0000698 // (X + Y) - Z -> X + (Y - Z) or Y + (X - Z) if everything simplifies.
699 // For example, (X + Y) - Y -> X; (Y + X) - Y -> X
Dinesh Dwivedi99281a02014-06-26 08:57:33 +0000700 Value *X = nullptr, *Y = nullptr, *Z = Op1;
Duncan Sands99589d02011-01-18 11:50:19 +0000701 if (MaxRecurse && match(Op0, m_Add(m_Value(X), m_Value(Y)))) { // (X + Y) - Z
702 // See if "V === Y - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000703 if (Value *V = SimplifyBinOp(Instruction::Sub, Y, Z, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000704 // It does! Now see if "X + V" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000705 if (Value *W = SimplifyBinOp(Instruction::Add, X, V, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000706 // It does, we successfully reassociated!
707 ++NumReassoc;
708 return W;
709 }
710 // See if "V === X - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000711 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Z, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000712 // It does! Now see if "Y + V" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000713 if (Value *W = SimplifyBinOp(Instruction::Add, Y, V, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000714 // It does, we successfully reassociated!
715 ++NumReassoc;
716 return W;
717 }
718 }
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000719
Duncan Sands99589d02011-01-18 11:50:19 +0000720 // X - (Y + Z) -> (X - Y) - Z or (X - Z) - Y if everything simplifies.
721 // For example, X - (X + 1) -> -1
722 X = Op0;
723 if (MaxRecurse && match(Op1, m_Add(m_Value(Y), m_Value(Z)))) { // X - (Y + Z)
724 // See if "V === X - Y" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000725 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Y, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000726 // It does! Now see if "V - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000727 if (Value *W = SimplifyBinOp(Instruction::Sub, V, Z, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000728 // It does, we successfully reassociated!
729 ++NumReassoc;
730 return W;
731 }
732 // See if "V === X - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000733 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Z, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000734 // It does! Now see if "V - Y" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000735 if (Value *W = SimplifyBinOp(Instruction::Sub, V, Y, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000736 // It does, we successfully reassociated!
737 ++NumReassoc;
738 return W;
739 }
740 }
741
742 // Z - (X - Y) -> (Z - X) + Y if everything simplifies.
743 // For example, X - (X - Y) -> Y.
744 Z = Op0;
Duncan Sandsd6f1a952011-01-14 15:26:10 +0000745 if (MaxRecurse && match(Op1, m_Sub(m_Value(X), m_Value(Y)))) // Z - (X - Y)
746 // See if "V === Z - X" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000747 if (Value *V = SimplifyBinOp(Instruction::Sub, Z, X, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000748 // It does! Now see if "V + Y" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000749 if (Value *W = SimplifyBinOp(Instruction::Add, V, Y, Q, MaxRecurse-1)) {
Duncan Sandsd6f1a952011-01-14 15:26:10 +0000750 // It does, we successfully reassociated!
751 ++NumReassoc;
752 return W;
753 }
754
Duncan Sands395ac42d2012-03-13 14:07:05 +0000755 // trunc(X) - trunc(Y) -> trunc(X - Y) if everything simplifies.
756 if (MaxRecurse && match(Op0, m_Trunc(m_Value(X))) &&
757 match(Op1, m_Trunc(m_Value(Y))))
758 if (X->getType() == Y->getType())
759 // See if "V === X - Y" simplifies.
760 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Y, Q, MaxRecurse-1))
761 // It does! Now see if "trunc V" simplifies.
762 if (Value *W = SimplifyTruncInst(V, Op0->getType(), Q, MaxRecurse-1))
763 // It does, return the simplified "trunc V".
764 return W;
765
766 // Variations on GEP(base, I, ...) - GEP(base, i, ...) -> GEP(null, I-i, ...).
Dan Gohman18c77a12013-01-31 02:50:36 +0000767 if (match(Op0, m_PtrToInt(m_Value(X))) &&
Duncan Sands395ac42d2012-03-13 14:07:05 +0000768 match(Op1, m_PtrToInt(m_Value(Y))))
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000769 if (Constant *Result = computePointerDifference(Q.DL, X, Y))
Duncan Sands395ac42d2012-03-13 14:07:05 +0000770 return ConstantExpr::getIntegerCast(Result, Op0->getType(), true);
771
Duncan Sands99589d02011-01-18 11:50:19 +0000772 // i1 sub -> xor.
773 if (MaxRecurse && Op0->getType()->isIntegerTy(1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000774 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000775 return V;
776
Duncan Sands0a2c41682010-12-15 14:07:39 +0000777 // Threading Sub over selects and phi nodes is pointless, so don't bother.
778 // Threading over the select in "A - select(cond, B, C)" means evaluating
779 // "A-B" and "A-C" and seeing if they are equal; but they are equal if and
780 // only if B and C are equal. If B and C are equal then (since we assume
781 // that operands have already been simplified) "select(cond, B, C)" should
782 // have been simplified to the common value of B and C already. Analysing
783 // "A-B" and "A-C" thus gains nothing, but costs compile time. Similarly
784 // for threading over phi nodes.
785
Craig Topper9f008862014-04-15 04:59:12 +0000786 return nullptr;
Duncan Sands0a2c41682010-12-15 14:07:39 +0000787}
788
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000789Value *llvm::SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000790 const DataLayout *DL, const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +0000791 const DominatorTree *DT, AssumptionTracker *AT,
792 const Instruction *CxtI) {
793 return ::SimplifySubInst(Op0, Op1, isNSW, isNUW,
794 Query (DL, TLI, DT, AT, CxtI), RecursionLimit);
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000795}
796
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000797/// Given operands for an FAdd, see if we can fold the result. If not, this
798/// returns null.
799static Value *SimplifyFAddInst(Value *Op0, Value *Op1, FastMathFlags FMF,
800 const Query &Q, unsigned MaxRecurse) {
801 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
802 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
803 Constant *Ops[] = { CLHS, CRHS };
804 return ConstantFoldInstOperands(Instruction::FAdd, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000805 Ops, Q.DL, Q.TLI);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000806 }
807
808 // Canonicalize the constant to the RHS.
809 std::swap(Op0, Op1);
810 }
811
812 // fadd X, -0 ==> X
813 if (match(Op1, m_NegZero()))
814 return Op0;
815
816 // fadd X, 0 ==> X, when we know X is not -0
817 if (match(Op1, m_Zero()) &&
818 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0)))
819 return Op0;
820
821 // fadd [nnan ninf] X, (fsub [nnan ninf] 0, X) ==> 0
822 // where nnan and ninf have to occur at least once somewhere in this
823 // expression
Craig Topper9f008862014-04-15 04:59:12 +0000824 Value *SubOp = nullptr;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000825 if (match(Op1, m_FSub(m_AnyZero(), m_Specific(Op0))))
826 SubOp = Op1;
827 else if (match(Op0, m_FSub(m_AnyZero(), m_Specific(Op1))))
828 SubOp = Op0;
829 if (SubOp) {
830 Instruction *FSub = cast<Instruction>(SubOp);
831 if ((FMF.noNaNs() || FSub->hasNoNaNs()) &&
832 (FMF.noInfs() || FSub->hasNoInfs()))
833 return Constant::getNullValue(Op0->getType());
834 }
835
Craig Topper9f008862014-04-15 04:59:12 +0000836 return nullptr;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000837}
838
839/// Given operands for an FSub, see if we can fold the result. If not, this
840/// returns null.
841static Value *SimplifyFSubInst(Value *Op0, Value *Op1, FastMathFlags FMF,
842 const Query &Q, unsigned MaxRecurse) {
843 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
844 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
845 Constant *Ops[] = { CLHS, CRHS };
846 return ConstantFoldInstOperands(Instruction::FSub, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000847 Ops, Q.DL, Q.TLI);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000848 }
849 }
850
851 // fsub X, 0 ==> X
852 if (match(Op1, m_Zero()))
853 return Op0;
854
855 // fsub X, -0 ==> X, when we know X is not -0
856 if (match(Op1, m_NegZero()) &&
857 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0)))
858 return Op0;
859
860 // fsub 0, (fsub -0.0, X) ==> X
861 Value *X;
862 if (match(Op0, m_AnyZero())) {
863 if (match(Op1, m_FSub(m_NegZero(), m_Value(X))))
864 return X;
865 if (FMF.noSignedZeros() && match(Op1, m_FSub(m_AnyZero(), m_Value(X))))
866 return X;
867 }
868
869 // fsub nnan ninf x, x ==> 0.0
870 if (FMF.noNaNs() && FMF.noInfs() && Op0 == Op1)
871 return Constant::getNullValue(Op0->getType());
872
Craig Topper9f008862014-04-15 04:59:12 +0000873 return nullptr;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000874}
875
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000876/// Given the operands for an FMul, see if we can fold the result
877static Value *SimplifyFMulInst(Value *Op0, Value *Op1,
878 FastMathFlags FMF,
879 const Query &Q,
880 unsigned MaxRecurse) {
881 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
882 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
883 Constant *Ops[] = { CLHS, CRHS };
884 return ConstantFoldInstOperands(Instruction::FMul, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000885 Ops, Q.DL, Q.TLI);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000886 }
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000887
888 // Canonicalize the constant to the RHS.
889 std::swap(Op0, Op1);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000890 }
891
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000892 // fmul X, 1.0 ==> X
893 if (match(Op1, m_FPOne()))
894 return Op0;
895
896 // fmul nnan nsz X, 0 ==> 0
897 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op1, m_AnyZero()))
898 return Op1;
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000899
Craig Topper9f008862014-04-15 04:59:12 +0000900 return nullptr;
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000901}
902
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000903/// SimplifyMulInst - Given operands for a Mul, see if we can
904/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000905static Value *SimplifyMulInst(Value *Op0, Value *Op1, const Query &Q,
906 unsigned MaxRecurse) {
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000907 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
908 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
909 Constant *Ops[] = { CLHS, CRHS };
910 return ConstantFoldInstOperands(Instruction::Mul, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000911 Ops, Q.DL, Q.TLI);
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000912 }
913
914 // Canonicalize the constant to the RHS.
915 std::swap(Op0, Op1);
916 }
917
918 // X * undef -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000919 if (match(Op1, m_Undef()))
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000920 return Constant::getNullValue(Op0->getType());
921
922 // X * 0 -> 0
923 if (match(Op1, m_Zero()))
924 return Op1;
925
926 // X * 1 -> X
927 if (match(Op1, m_One()))
928 return Op0;
929
Duncan Sandsb67edc62011-01-30 18:03:50 +0000930 // (X / Y) * Y -> X if the division is exact.
Craig Topper9f008862014-04-15 04:59:12 +0000931 Value *X = nullptr;
Benjamin Kramer9442cd02012-01-01 17:55:30 +0000932 if (match(Op0, m_Exact(m_IDiv(m_Value(X), m_Specific(Op1)))) || // (X / Y) * Y
933 match(Op1, m_Exact(m_IDiv(m_Value(X), m_Specific(Op0))))) // Y * (X / Y)
934 return X;
Duncan Sandsb67edc62011-01-30 18:03:50 +0000935
Nick Lewyckyb89d9a42011-01-29 19:55:23 +0000936 // i1 mul -> and.
Duncan Sands5def0d62010-12-21 14:48:48 +0000937 if (MaxRecurse && Op0->getType()->isIntegerTy(1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000938 if (Value *V = SimplifyAndInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sandsfecc6422010-12-21 15:03:43 +0000939 return V;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000940
941 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000942 if (Value *V = SimplifyAssociativeBinOp(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000943 MaxRecurse))
944 return V;
945
946 // Mul distributes over Add. Try some generic simplifications based on this.
947 if (Value *V = ExpandBinOp(Instruction::Mul, Op0, Op1, Instruction::Add,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000948 Q, MaxRecurse))
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000949 return V;
950
951 // If the operation is with the result of a select instruction, check whether
952 // operating on either branch of the select always yields the same value.
953 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000954 if (Value *V = ThreadBinOpOverSelect(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000955 MaxRecurse))
956 return V;
957
958 // If the operation is with the result of a phi instruction, check whether
959 // operating on all incoming values of the phi always yields the same value.
960 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000961 if (Value *V = ThreadBinOpOverPHI(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000962 MaxRecurse))
963 return V;
964
Craig Topper9f008862014-04-15 04:59:12 +0000965 return nullptr;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000966}
967
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000968Value *llvm::SimplifyFAddInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000969 const DataLayout *DL, const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +0000970 const DominatorTree *DT, AssumptionTracker *AT,
971 const Instruction *CxtI) {
972 return ::SimplifyFAddInst(Op0, Op1, FMF, Query (DL, TLI, DT, AT, CxtI),
973 RecursionLimit);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000974}
975
976Value *llvm::SimplifyFSubInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000977 const DataLayout *DL, const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +0000978 const DominatorTree *DT, AssumptionTracker *AT,
979 const Instruction *CxtI) {
980 return ::SimplifyFSubInst(Op0, Op1, FMF, Query (DL, TLI, DT, AT, CxtI),
981 RecursionLimit);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000982}
983
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000984Value *llvm::SimplifyFMulInst(Value *Op0, Value *Op1,
985 FastMathFlags FMF,
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000986 const DataLayout *DL,
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000987 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +0000988 const DominatorTree *DT,
989 AssumptionTracker *AT,
990 const Instruction *CxtI) {
991 return ::SimplifyFMulInst(Op0, Op1, FMF, Query (DL, TLI, DT, AT, CxtI),
992 RecursionLimit);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000993}
994
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000995Value *llvm::SimplifyMulInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +0000996 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +0000997 const DominatorTree *DT, AssumptionTracker *AT,
998 const Instruction *CxtI) {
999 return ::SimplifyMulInst(Op0, Op1, Query (DL, TLI, DT, AT, CxtI),
1000 RecursionLimit);
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00001001}
1002
Duncan Sands771e82a2011-01-28 16:51:11 +00001003/// SimplifyDiv - Given operands for an SDiv or UDiv, see if we can
1004/// fold the result. If not, this returns null.
Anders Carlsson36c6d232011-02-05 18:33:43 +00001005static Value *SimplifyDiv(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001006 const Query &Q, unsigned MaxRecurse) {
Duncan Sands771e82a2011-01-28 16:51:11 +00001007 if (Constant *C0 = dyn_cast<Constant>(Op0)) {
1008 if (Constant *C1 = dyn_cast<Constant>(Op1)) {
1009 Constant *Ops[] = { C0, C1 };
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001010 return ConstantFoldInstOperands(Opcode, C0->getType(), Ops, Q.DL, Q.TLI);
Duncan Sands771e82a2011-01-28 16:51:11 +00001011 }
1012 }
1013
Duncan Sands65995fa2011-01-28 18:50:50 +00001014 bool isSigned = Opcode == Instruction::SDiv;
1015
Duncan Sands771e82a2011-01-28 16:51:11 +00001016 // X / undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001017 if (match(Op1, m_Undef()))
Duncan Sands771e82a2011-01-28 16:51:11 +00001018 return Op1;
1019
1020 // undef / X -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001021 if (match(Op0, m_Undef()))
Duncan Sands771e82a2011-01-28 16:51:11 +00001022 return Constant::getNullValue(Op0->getType());
1023
1024 // 0 / X -> 0, we don't need to preserve faults!
1025 if (match(Op0, m_Zero()))
1026 return Op0;
1027
1028 // X / 1 -> X
1029 if (match(Op1, m_One()))
1030 return Op0;
Duncan Sands771e82a2011-01-28 16:51:11 +00001031
1032 if (Op0->getType()->isIntegerTy(1))
1033 // It can't be division by zero, hence it must be division by one.
1034 return Op0;
1035
1036 // X / X -> 1
1037 if (Op0 == Op1)
1038 return ConstantInt::get(Op0->getType(), 1);
1039
1040 // (X * Y) / Y -> X if the multiplication does not overflow.
Craig Topper9f008862014-04-15 04:59:12 +00001041 Value *X = nullptr, *Y = nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001042 if (match(Op0, m_Mul(m_Value(X), m_Value(Y))) && (X == Op1 || Y == Op1)) {
1043 if (Y != Op1) std::swap(X, Y); // Ensure expression is (X * Y) / Y, Y = Op1
Duncan Sands7cb61e52011-10-27 19:16:21 +00001044 OverflowingBinaryOperator *Mul = cast<OverflowingBinaryOperator>(Op0);
Duncan Sands5747aba2011-02-02 20:52:00 +00001045 // If the Mul knows it does not overflow, then we are good to go.
1046 if ((isSigned && Mul->hasNoSignedWrap()) ||
1047 (!isSigned && Mul->hasNoUnsignedWrap()))
1048 return X;
Duncan Sands771e82a2011-01-28 16:51:11 +00001049 // If X has the form X = A / Y then X * Y cannot overflow.
1050 if (BinaryOperator *Div = dyn_cast<BinaryOperator>(X))
1051 if (Div->getOpcode() == Opcode && Div->getOperand(1) == Y)
1052 return X;
1053 }
1054
Duncan Sands65995fa2011-01-28 18:50:50 +00001055 // (X rem Y) / Y -> 0
1056 if ((isSigned && match(Op0, m_SRem(m_Value(), m_Specific(Op1)))) ||
1057 (!isSigned && match(Op0, m_URem(m_Value(), m_Specific(Op1)))))
1058 return Constant::getNullValue(Op0->getType());
1059
David Majnemercb9d5962014-10-11 10:20:01 +00001060 // (X /u C1) /u C2 -> 0 if C1 * C2 overflow
1061 ConstantInt *C1, *C2;
1062 if (!isSigned && match(Op0, m_UDiv(m_Value(X), m_ConstantInt(C1))) &&
1063 match(Op1, m_ConstantInt(C2))) {
1064 bool Overflow;
1065 C1->getValue().umul_ov(C2->getValue(), Overflow);
1066 if (Overflow)
1067 return Constant::getNullValue(Op0->getType());
1068 }
1069
Duncan Sands65995fa2011-01-28 18:50:50 +00001070 // If the operation is with the result of a select instruction, check whether
1071 // operating on either branch of the select always yields the same value.
1072 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001073 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands65995fa2011-01-28 18:50:50 +00001074 return V;
1075
1076 // If the operation is with the result of a phi instruction, check whether
1077 // operating on all incoming values of the phi always yields the same value.
1078 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001079 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands65995fa2011-01-28 18:50:50 +00001080 return V;
1081
Craig Topper9f008862014-04-15 04:59:12 +00001082 return nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001083}
1084
1085/// SimplifySDivInst - Given operands for an SDiv, see if we can
1086/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001087static Value *SimplifySDivInst(Value *Op0, Value *Op1, const Query &Q,
1088 unsigned MaxRecurse) {
1089 if (Value *V = SimplifyDiv(Instruction::SDiv, Op0, Op1, Q, MaxRecurse))
Duncan Sands771e82a2011-01-28 16:51:11 +00001090 return V;
1091
Craig Topper9f008862014-04-15 04:59:12 +00001092 return nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001093}
1094
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001095Value *llvm::SimplifySDivInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001096 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00001097 const DominatorTree *DT,
1098 AssumptionTracker *AT,
1099 const Instruction *CxtI) {
1100 return ::SimplifySDivInst(Op0, Op1, Query (DL, TLI, DT, AT, CxtI),
1101 RecursionLimit);
Duncan Sands771e82a2011-01-28 16:51:11 +00001102}
1103
1104/// SimplifyUDivInst - Given operands for a UDiv, see if we can
1105/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001106static Value *SimplifyUDivInst(Value *Op0, Value *Op1, const Query &Q,
1107 unsigned MaxRecurse) {
1108 if (Value *V = SimplifyDiv(Instruction::UDiv, Op0, Op1, Q, MaxRecurse))
Duncan Sands771e82a2011-01-28 16:51:11 +00001109 return V;
1110
Craig Topper9f008862014-04-15 04:59:12 +00001111 return nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001112}
1113
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001114Value *llvm::SimplifyUDivInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001115 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00001116 const DominatorTree *DT,
1117 AssumptionTracker *AT,
1118 const Instruction *CxtI) {
1119 return ::SimplifyUDivInst(Op0, Op1, Query (DL, TLI, DT, AT, CxtI),
1120 RecursionLimit);
Duncan Sands771e82a2011-01-28 16:51:11 +00001121}
1122
Duncan Sandsb8cee002012-03-13 11:42:19 +00001123static Value *SimplifyFDivInst(Value *Op0, Value *Op1, const Query &Q,
1124 unsigned) {
Frits van Bommelc2549662011-01-29 15:26:31 +00001125 // undef / X -> undef (the undef could be a snan).
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001126 if (match(Op0, m_Undef()))
Frits van Bommelc2549662011-01-29 15:26:31 +00001127 return Op0;
1128
1129 // X / undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001130 if (match(Op1, m_Undef()))
Frits van Bommelc2549662011-01-29 15:26:31 +00001131 return Op1;
1132
Craig Topper9f008862014-04-15 04:59:12 +00001133 return nullptr;
Frits van Bommelc2549662011-01-29 15:26:31 +00001134}
1135
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001136Value *llvm::SimplifyFDivInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001137 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00001138 const DominatorTree *DT,
1139 AssumptionTracker *AT,
1140 const Instruction *CxtI) {
1141 return ::SimplifyFDivInst(Op0, Op1, Query (DL, TLI, DT, AT, CxtI),
1142 RecursionLimit);
Frits van Bommelc2549662011-01-29 15:26:31 +00001143}
1144
Duncan Sandsa3e36992011-05-02 16:27:02 +00001145/// SimplifyRem - Given operands for an SRem or URem, see if we can
1146/// fold the result. If not, this returns null.
1147static Value *SimplifyRem(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001148 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsa3e36992011-05-02 16:27:02 +00001149 if (Constant *C0 = dyn_cast<Constant>(Op0)) {
1150 if (Constant *C1 = dyn_cast<Constant>(Op1)) {
1151 Constant *Ops[] = { C0, C1 };
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001152 return ConstantFoldInstOperands(Opcode, C0->getType(), Ops, Q.DL, Q.TLI);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001153 }
1154 }
1155
Duncan Sandsa3e36992011-05-02 16:27:02 +00001156 // X % undef -> undef
1157 if (match(Op1, m_Undef()))
1158 return Op1;
1159
1160 // undef % X -> 0
1161 if (match(Op0, m_Undef()))
1162 return Constant::getNullValue(Op0->getType());
1163
1164 // 0 % X -> 0, we don't need to preserve faults!
1165 if (match(Op0, m_Zero()))
1166 return Op0;
1167
1168 // X % 0 -> undef, we don't need to preserve faults!
1169 if (match(Op1, m_Zero()))
1170 return UndefValue::get(Op0->getType());
1171
1172 // X % 1 -> 0
1173 if (match(Op1, m_One()))
1174 return Constant::getNullValue(Op0->getType());
1175
1176 if (Op0->getType()->isIntegerTy(1))
1177 // It can't be remainder by zero, hence it must be remainder by one.
1178 return Constant::getNullValue(Op0->getType());
1179
1180 // X % X -> 0
1181 if (Op0 == Op1)
1182 return Constant::getNullValue(Op0->getType());
1183
David Majnemerb435a422014-09-17 04:16:35 +00001184 // (X % Y) % Y -> X % Y
1185 if ((Opcode == Instruction::SRem &&
1186 match(Op0, m_SRem(m_Value(), m_Specific(Op1)))) ||
1187 (Opcode == Instruction::URem &&
1188 match(Op0, m_URem(m_Value(), m_Specific(Op1)))))
David Majnemerac717f02014-09-17 03:34:34 +00001189 return Op0;
David Majnemerac717f02014-09-17 03:34:34 +00001190
Duncan Sandsa3e36992011-05-02 16:27:02 +00001191 // If the operation is with the result of a select instruction, check whether
1192 // operating on either branch of the select always yields the same value.
1193 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001194 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001195 return V;
1196
1197 // If the operation is with the result of a phi instruction, check whether
1198 // operating on all incoming values of the phi always yields the same value.
1199 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001200 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001201 return V;
1202
Craig Topper9f008862014-04-15 04:59:12 +00001203 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001204}
1205
1206/// SimplifySRemInst - Given operands for an SRem, see if we can
1207/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001208static Value *SimplifySRemInst(Value *Op0, Value *Op1, const Query &Q,
1209 unsigned MaxRecurse) {
1210 if (Value *V = SimplifyRem(Instruction::SRem, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001211 return V;
1212
Craig Topper9f008862014-04-15 04:59:12 +00001213 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001214}
1215
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001216Value *llvm::SimplifySRemInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001217 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00001218 const DominatorTree *DT,
1219 AssumptionTracker *AT,
1220 const Instruction *CxtI) {
1221 return ::SimplifySRemInst(Op0, Op1, Query (DL, TLI, DT, AT, CxtI),
1222 RecursionLimit);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001223}
1224
1225/// SimplifyURemInst - Given operands for a URem, see if we can
1226/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001227static Value *SimplifyURemInst(Value *Op0, Value *Op1, const Query &Q,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001228 unsigned MaxRecurse) {
Duncan Sandsb8cee002012-03-13 11:42:19 +00001229 if (Value *V = SimplifyRem(Instruction::URem, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001230 return V;
1231
Craig Topper9f008862014-04-15 04:59:12 +00001232 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001233}
1234
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001235Value *llvm::SimplifyURemInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001236 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00001237 const DominatorTree *DT,
1238 AssumptionTracker *AT,
1239 const Instruction *CxtI) {
1240 return ::SimplifyURemInst(Op0, Op1, Query (DL, TLI, DT, AT, CxtI),
1241 RecursionLimit);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001242}
1243
Duncan Sandsb8cee002012-03-13 11:42:19 +00001244static Value *SimplifyFRemInst(Value *Op0, Value *Op1, const Query &,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001245 unsigned) {
Duncan Sandsa3e36992011-05-02 16:27:02 +00001246 // undef % X -> undef (the undef could be a snan).
1247 if (match(Op0, m_Undef()))
1248 return Op0;
1249
1250 // X % undef -> undef
1251 if (match(Op1, m_Undef()))
1252 return Op1;
1253
Craig Topper9f008862014-04-15 04:59:12 +00001254 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001255}
1256
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001257Value *llvm::SimplifyFRemInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001258 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00001259 const DominatorTree *DT,
1260 AssumptionTracker *AT,
1261 const Instruction *CxtI) {
1262 return ::SimplifyFRemInst(Op0, Op1, Query (DL, TLI, DT, AT, CxtI),
1263 RecursionLimit);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001264}
1265
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00001266/// isUndefShift - Returns true if a shift by \c Amount always yields undef.
1267static bool isUndefShift(Value *Amount) {
1268 Constant *C = dyn_cast<Constant>(Amount);
1269 if (!C)
1270 return false;
1271
1272 // X shift by undef -> undef because it may shift by the bitwidth.
1273 if (isa<UndefValue>(C))
1274 return true;
1275
1276 // Shifting by the bitwidth or more is undefined.
1277 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
1278 if (CI->getValue().getLimitedValue() >=
1279 CI->getType()->getScalarSizeInBits())
1280 return true;
1281
1282 // If all lanes of a vector shift are undefined the whole shift is.
1283 if (isa<ConstantVector>(C) || isa<ConstantDataVector>(C)) {
1284 for (unsigned I = 0, E = C->getType()->getVectorNumElements(); I != E; ++I)
1285 if (!isUndefShift(C->getAggregateElement(I)))
1286 return false;
1287 return true;
1288 }
1289
1290 return false;
1291}
1292
Duncan Sands571fd9a2011-01-14 14:44:12 +00001293/// SimplifyShift - Given operands for an Shl, LShr or AShr, see if we can
Duncan Sands7f60dc12011-01-14 00:37:45 +00001294/// fold the result. If not, this returns null.
Duncan Sands571fd9a2011-01-14 14:44:12 +00001295static Value *SimplifyShift(unsigned Opcode, Value *Op0, Value *Op1,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001296 const Query &Q, unsigned MaxRecurse) {
Duncan Sands7f60dc12011-01-14 00:37:45 +00001297 if (Constant *C0 = dyn_cast<Constant>(Op0)) {
1298 if (Constant *C1 = dyn_cast<Constant>(Op1)) {
1299 Constant *Ops[] = { C0, C1 };
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001300 return ConstantFoldInstOperands(Opcode, C0->getType(), Ops, Q.DL, Q.TLI);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001301 }
1302 }
1303
Duncan Sands571fd9a2011-01-14 14:44:12 +00001304 // 0 shift by X -> 0
Duncan Sands7f60dc12011-01-14 00:37:45 +00001305 if (match(Op0, m_Zero()))
1306 return Op0;
1307
Duncan Sands571fd9a2011-01-14 14:44:12 +00001308 // X shift by 0 -> X
Duncan Sands7f60dc12011-01-14 00:37:45 +00001309 if (match(Op1, m_Zero()))
1310 return Op0;
1311
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00001312 // Fold undefined shifts.
1313 if (isUndefShift(Op1))
1314 return UndefValue::get(Op0->getType());
Duncan Sands7f60dc12011-01-14 00:37:45 +00001315
Duncan Sands571fd9a2011-01-14 14:44:12 +00001316 // If the operation is with the result of a select instruction, check whether
1317 // operating on either branch of the select always yields the same value.
1318 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001319 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001320 return V;
1321
1322 // If the operation is with the result of a phi instruction, check whether
1323 // operating on all incoming values of the phi always yields the same value.
1324 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001325 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001326 return V;
1327
Craig Topper9f008862014-04-15 04:59:12 +00001328 return nullptr;
Duncan Sands571fd9a2011-01-14 14:44:12 +00001329}
1330
1331/// SimplifyShlInst - Given operands for an Shl, see if we can
1332/// fold the result. If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001333static Value *SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001334 const Query &Q, unsigned MaxRecurse) {
1335 if (Value *V = SimplifyShift(Instruction::Shl, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001336 return V;
1337
1338 // undef << X -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001339 if (match(Op0, m_Undef()))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001340 return Constant::getNullValue(Op0->getType());
1341
Chris Lattner9e4aa022011-02-09 17:15:04 +00001342 // (X >> A) << A -> X
1343 Value *X;
Benjamin Kramer9442cd02012-01-01 17:55:30 +00001344 if (match(Op0, m_Exact(m_Shr(m_Value(X), m_Specific(Op1)))))
Chris Lattner9e4aa022011-02-09 17:15:04 +00001345 return X;
Craig Topper9f008862014-04-15 04:59:12 +00001346 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001347}
1348
Chris Lattner9e4aa022011-02-09 17:15:04 +00001349Value *llvm::SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001350 const DataLayout *DL, const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00001351 const DominatorTree *DT, AssumptionTracker *AT,
1352 const Instruction *CxtI) {
1353 return ::SimplifyShlInst(Op0, Op1, isNSW, isNUW, Query (DL, TLI, DT, AT, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00001354 RecursionLimit);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001355}
1356
1357/// SimplifyLShrInst - Given operands for an LShr, see if we can
1358/// fold the result. If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001359static Value *SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001360 const Query &Q, unsigned MaxRecurse) {
1361 if (Value *V = SimplifyShift(Instruction::LShr, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001362 return V;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001363
David Majnemera80fed72013-07-09 22:01:22 +00001364 // X >> X -> 0
1365 if (Op0 == Op1)
1366 return Constant::getNullValue(Op0->getType());
1367
Duncan Sands7f60dc12011-01-14 00:37:45 +00001368 // undef >>l X -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001369 if (match(Op0, m_Undef()))
Duncan Sands7f60dc12011-01-14 00:37:45 +00001370 return Constant::getNullValue(Op0->getType());
1371
Chris Lattner9e4aa022011-02-09 17:15:04 +00001372 // (X << A) >> A -> X
1373 Value *X;
David Majnemer4f438372014-11-04 17:38:50 +00001374 if (match(Op0, m_NUWShl(m_Value(X), m_Specific(Op1))))
Chris Lattner9e4aa022011-02-09 17:15:04 +00001375 return X;
Duncan Sandsd114ab32011-02-13 17:15:40 +00001376
Craig Topper9f008862014-04-15 04:59:12 +00001377 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001378}
1379
Chris Lattner9e4aa022011-02-09 17:15:04 +00001380Value *llvm::SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001381 const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001382 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00001383 const DominatorTree *DT,
1384 AssumptionTracker *AT,
1385 const Instruction *CxtI) {
1386 return ::SimplifyLShrInst(Op0, Op1, isExact, Query (DL, TLI, DT, AT, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00001387 RecursionLimit);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001388}
1389
1390/// SimplifyAShrInst - Given operands for an AShr, see if we can
1391/// fold the result. If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001392static Value *SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001393 const Query &Q, unsigned MaxRecurse) {
1394 if (Value *V = SimplifyShift(Instruction::AShr, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001395 return V;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001396
David Majnemera80fed72013-07-09 22:01:22 +00001397 // X >> X -> 0
1398 if (Op0 == Op1)
1399 return Constant::getNullValue(Op0->getType());
1400
Duncan Sands7f60dc12011-01-14 00:37:45 +00001401 // all ones >>a X -> all ones
1402 if (match(Op0, m_AllOnes()))
1403 return Op0;
1404
1405 // undef >>a X -> all ones
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001406 if (match(Op0, m_Undef()))
Duncan Sands7f60dc12011-01-14 00:37:45 +00001407 return Constant::getAllOnesValue(Op0->getType());
1408
Chris Lattner9e4aa022011-02-09 17:15:04 +00001409 // (X << A) >> A -> X
1410 Value *X;
David Majnemer2de97fc2014-11-04 17:47:13 +00001411 if (match(Op0, m_NSWShl(m_Value(X), m_Specific(Op1))))
Chris Lattner9e4aa022011-02-09 17:15:04 +00001412 return X;
Duncan Sandsd114ab32011-02-13 17:15:40 +00001413
Suyog Sarda68862412014-07-17 06:28:15 +00001414 // Arithmetic shifting an all-sign-bit value is a no-op.
Hal Finkel60db0582014-09-07 18:57:58 +00001415 unsigned NumSignBits = ComputeNumSignBits(Op0, Q.DL, 0, Q.AT, Q.CxtI, Q.DT);
Suyog Sarda68862412014-07-17 06:28:15 +00001416 if (NumSignBits == Op0->getType()->getScalarSizeInBits())
1417 return Op0;
1418
Craig Topper9f008862014-04-15 04:59:12 +00001419 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001420}
1421
Chris Lattner9e4aa022011-02-09 17:15:04 +00001422Value *llvm::SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001423 const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001424 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00001425 const DominatorTree *DT,
1426 AssumptionTracker *AT,
1427 const Instruction *CxtI) {
1428 return ::SimplifyAShrInst(Op0, Op1, isExact, Query (DL, TLI, DT, AT, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00001429 RecursionLimit);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001430}
1431
David Majnemera315bd82014-09-15 08:15:28 +00001432// Simplify (and (icmp ...) (icmp ...)) to true when we can tell that the range
1433// of possible values cannot be satisfied.
1434static Value *SimplifyAndOfICmps(ICmpInst *Op0, ICmpInst *Op1) {
1435 ICmpInst::Predicate Pred0, Pred1;
1436 ConstantInt *CI1, *CI2;
1437 Value *V;
1438 if (!match(Op0, m_ICmp(Pred0, m_Add(m_Value(V), m_ConstantInt(CI1)),
1439 m_ConstantInt(CI2))))
1440 return nullptr;
1441
1442 if (!match(Op1, m_ICmp(Pred1, m_Specific(V), m_Specific(CI1))))
1443 return nullptr;
1444
1445 Type *ITy = Op0->getType();
1446
1447 auto *AddInst = cast<BinaryOperator>(Op0->getOperand(0));
1448 bool isNSW = AddInst->hasNoSignedWrap();
1449 bool isNUW = AddInst->hasNoUnsignedWrap();
1450
1451 const APInt &CI1V = CI1->getValue();
1452 const APInt &CI2V = CI2->getValue();
1453 const APInt Delta = CI2V - CI1V;
1454 if (CI1V.isStrictlyPositive()) {
1455 if (Delta == 2) {
1456 if (Pred0 == ICmpInst::ICMP_ULT && Pred1 == ICmpInst::ICMP_SGT)
1457 return getFalse(ITy);
1458 if (Pred0 == ICmpInst::ICMP_SLT && Pred1 == ICmpInst::ICMP_SGT && isNSW)
1459 return getFalse(ITy);
1460 }
1461 if (Delta == 1) {
1462 if (Pred0 == ICmpInst::ICMP_ULE && Pred1 == ICmpInst::ICMP_SGT)
1463 return getFalse(ITy);
1464 if (Pred0 == ICmpInst::ICMP_SLE && Pred1 == ICmpInst::ICMP_SGT && isNSW)
1465 return getFalse(ITy);
1466 }
1467 }
1468 if (CI1V.getBoolValue() && isNUW) {
1469 if (Delta == 2)
1470 if (Pred0 == ICmpInst::ICMP_ULT && Pred1 == ICmpInst::ICMP_UGT)
1471 return getFalse(ITy);
1472 if (Delta == 1)
1473 if (Pred0 == ICmpInst::ICMP_ULE && Pred1 == ICmpInst::ICMP_UGT)
1474 return getFalse(ITy);
1475 }
1476
1477 return nullptr;
1478}
1479
Chris Lattnera71e9d62009-11-10 00:55:12 +00001480/// SimplifyAndInst - Given operands for an And, see if we can
Chris Lattner084a1b52009-11-09 22:57:59 +00001481/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001482static Value *SimplifyAndInst(Value *Op0, Value *Op1, const Query &Q,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001483 unsigned MaxRecurse) {
Chris Lattnera71e9d62009-11-10 00:55:12 +00001484 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
1485 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
1486 Constant *Ops[] = { CLHS, CRHS };
1487 return ConstantFoldInstOperands(Instruction::And, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001488 Ops, Q.DL, Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00001489 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001490
Chris Lattnera71e9d62009-11-10 00:55:12 +00001491 // Canonicalize the constant to the RHS.
1492 std::swap(Op0, Op1);
1493 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001494
Chris Lattnera71e9d62009-11-10 00:55:12 +00001495 // X & undef -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001496 if (match(Op1, m_Undef()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001497 return Constant::getNullValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001498
Chris Lattnera71e9d62009-11-10 00:55:12 +00001499 // X & X = X
Duncan Sands772749a2011-01-01 20:08:02 +00001500 if (Op0 == Op1)
Chris Lattnera71e9d62009-11-10 00:55:12 +00001501 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001502
Duncan Sandsc89ac072010-11-17 18:52:15 +00001503 // X & 0 = 0
1504 if (match(Op1, m_Zero()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001505 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001506
Duncan Sandsc89ac072010-11-17 18:52:15 +00001507 // X & -1 = X
1508 if (match(Op1, m_AllOnes()))
1509 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001510
Chris Lattnera71e9d62009-11-10 00:55:12 +00001511 // A & ~A = ~A & A = 0
Chris Lattner9e4aa022011-02-09 17:15:04 +00001512 if (match(Op0, m_Not(m_Specific(Op1))) ||
1513 match(Op1, m_Not(m_Specific(Op0))))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001514 return Constant::getNullValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001515
Chris Lattnera71e9d62009-11-10 00:55:12 +00001516 // (A | ?) & A = A
Craig Topper9f008862014-04-15 04:59:12 +00001517 Value *A = nullptr, *B = nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00001518 if (match(Op0, m_Or(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001519 (A == Op1 || B == Op1))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001520 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001521
Chris Lattnera71e9d62009-11-10 00:55:12 +00001522 // A & (A | ?) = A
1523 if (match(Op1, m_Or(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001524 (A == Op0 || B == Op0))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001525 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001526
Duncan Sandsba286d72011-10-26 20:55:21 +00001527 // A & (-A) = A if A is a power of two or zero.
1528 if (match(Op0, m_Neg(m_Specific(Op1))) ||
1529 match(Op1, m_Neg(m_Specific(Op0)))) {
Hal Finkel60db0582014-09-07 18:57:58 +00001530 if (isKnownToBeAPowerOfTwo(Op0, /*OrZero*/true, 0, Q.AT, Q.CxtI, Q.DT))
Duncan Sandsba286d72011-10-26 20:55:21 +00001531 return Op0;
Hal Finkel60db0582014-09-07 18:57:58 +00001532 if (isKnownToBeAPowerOfTwo(Op1, /*OrZero*/true, 0, Q.AT, Q.CxtI, Q.DT))
Duncan Sandsba286d72011-10-26 20:55:21 +00001533 return Op1;
1534 }
1535
David Majnemera315bd82014-09-15 08:15:28 +00001536 if (auto *ICILHS = dyn_cast<ICmpInst>(Op0)) {
1537 if (auto *ICIRHS = dyn_cast<ICmpInst>(Op1)) {
1538 if (Value *V = SimplifyAndOfICmps(ICILHS, ICIRHS))
1539 return V;
1540 if (Value *V = SimplifyAndOfICmps(ICIRHS, ICILHS))
1541 return V;
1542 }
1543 }
1544
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001545 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001546 if (Value *V = SimplifyAssociativeBinOp(Instruction::And, Op0, Op1, Q,
1547 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001548 return V;
Benjamin Kramer8c35fb02010-09-10 22:39:55 +00001549
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001550 // And distributes over Or. Try some generic simplifications based on this.
1551 if (Value *V = ExpandBinOp(Instruction::And, Op0, Op1, Instruction::Or,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001552 Q, MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001553 return V;
1554
1555 // And distributes over Xor. Try some generic simplifications based on this.
1556 if (Value *V = ExpandBinOp(Instruction::And, Op0, Op1, Instruction::Xor,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001557 Q, MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001558 return V;
1559
Duncan Sandsb0579e92010-11-10 13:00:08 +00001560 // If the operation is with the result of a select instruction, check whether
1561 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001562 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001563 if (Value *V = ThreadBinOpOverSelect(Instruction::And, Op0, Op1, Q,
1564 MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001565 return V;
1566
1567 // If the operation is with the result of a phi instruction, check whether
1568 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001569 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001570 if (Value *V = ThreadBinOpOverPHI(Instruction::And, Op0, Op1, Q,
Duncan Sandsf64e6902010-12-21 09:09:15 +00001571 MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00001572 return V;
1573
Craig Topper9f008862014-04-15 04:59:12 +00001574 return nullptr;
Chris Lattner084a1b52009-11-09 22:57:59 +00001575}
1576
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001577Value *llvm::SimplifyAndInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001578 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00001579 const DominatorTree *DT, AssumptionTracker *AT,
1580 const Instruction *CxtI) {
1581 return ::SimplifyAndInst(Op0, Op1, Query (DL, TLI, DT, AT, CxtI),
1582 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001583}
1584
David Majnemera315bd82014-09-15 08:15:28 +00001585// Simplify (or (icmp ...) (icmp ...)) to true when we can tell that the union
1586// contains all possible values.
1587static Value *SimplifyOrOfICmps(ICmpInst *Op0, ICmpInst *Op1) {
1588 ICmpInst::Predicate Pred0, Pred1;
1589 ConstantInt *CI1, *CI2;
1590 Value *V;
1591 if (!match(Op0, m_ICmp(Pred0, m_Add(m_Value(V), m_ConstantInt(CI1)),
1592 m_ConstantInt(CI2))))
1593 return nullptr;
1594
1595 if (!match(Op1, m_ICmp(Pred1, m_Specific(V), m_Specific(CI1))))
1596 return nullptr;
1597
1598 Type *ITy = Op0->getType();
1599
1600 auto *AddInst = cast<BinaryOperator>(Op0->getOperand(0));
1601 bool isNSW = AddInst->hasNoSignedWrap();
1602 bool isNUW = AddInst->hasNoUnsignedWrap();
1603
1604 const APInt &CI1V = CI1->getValue();
1605 const APInt &CI2V = CI2->getValue();
1606 const APInt Delta = CI2V - CI1V;
1607 if (CI1V.isStrictlyPositive()) {
1608 if (Delta == 2) {
1609 if (Pred0 == ICmpInst::ICMP_UGE && Pred1 == ICmpInst::ICMP_SLE)
1610 return getTrue(ITy);
1611 if (Pred0 == ICmpInst::ICMP_SGE && Pred1 == ICmpInst::ICMP_SLE && isNSW)
1612 return getTrue(ITy);
1613 }
1614 if (Delta == 1) {
1615 if (Pred0 == ICmpInst::ICMP_UGT && Pred1 == ICmpInst::ICMP_SLE)
1616 return getTrue(ITy);
1617 if (Pred0 == ICmpInst::ICMP_SGT && Pred1 == ICmpInst::ICMP_SLE && isNSW)
1618 return getTrue(ITy);
1619 }
1620 }
1621 if (CI1V.getBoolValue() && isNUW) {
1622 if (Delta == 2)
1623 if (Pred0 == ICmpInst::ICMP_UGE && Pred1 == ICmpInst::ICMP_ULE)
1624 return getTrue(ITy);
1625 if (Delta == 1)
1626 if (Pred0 == ICmpInst::ICMP_UGT && Pred1 == ICmpInst::ICMP_ULE)
1627 return getTrue(ITy);
1628 }
1629
1630 return nullptr;
1631}
1632
Chris Lattnera71e9d62009-11-10 00:55:12 +00001633/// SimplifyOrInst - Given operands for an Or, see if we can
1634/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001635static Value *SimplifyOrInst(Value *Op0, Value *Op1, const Query &Q,
1636 unsigned MaxRecurse) {
Chris Lattnera71e9d62009-11-10 00:55:12 +00001637 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
1638 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
1639 Constant *Ops[] = { CLHS, CRHS };
1640 return ConstantFoldInstOperands(Instruction::Or, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001641 Ops, Q.DL, Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00001642 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001643
Chris Lattnera71e9d62009-11-10 00:55:12 +00001644 // Canonicalize the constant to the RHS.
1645 std::swap(Op0, Op1);
1646 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001647
Chris Lattnera71e9d62009-11-10 00:55:12 +00001648 // X | undef -> -1
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001649 if (match(Op1, m_Undef()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001650 return Constant::getAllOnesValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001651
Chris Lattnera71e9d62009-11-10 00:55:12 +00001652 // X | X = X
Duncan Sands772749a2011-01-01 20:08:02 +00001653 if (Op0 == Op1)
Chris Lattnera71e9d62009-11-10 00:55:12 +00001654 return Op0;
1655
Duncan Sandsc89ac072010-11-17 18:52:15 +00001656 // X | 0 = X
1657 if (match(Op1, m_Zero()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001658 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001659
Duncan Sandsc89ac072010-11-17 18:52:15 +00001660 // X | -1 = -1
1661 if (match(Op1, m_AllOnes()))
1662 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001663
Chris Lattnera71e9d62009-11-10 00:55:12 +00001664 // A | ~A = ~A | A = -1
Chris Lattner9e4aa022011-02-09 17:15:04 +00001665 if (match(Op0, m_Not(m_Specific(Op1))) ||
1666 match(Op1, m_Not(m_Specific(Op0))))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001667 return Constant::getAllOnesValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001668
Chris Lattnera71e9d62009-11-10 00:55:12 +00001669 // (A & ?) | A = A
Craig Topper9f008862014-04-15 04:59:12 +00001670 Value *A = nullptr, *B = nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00001671 if (match(Op0, m_And(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001672 (A == Op1 || B == Op1))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001673 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001674
Chris Lattnera71e9d62009-11-10 00:55:12 +00001675 // A | (A & ?) = A
1676 if (match(Op1, m_And(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001677 (A == Op0 || B == Op0))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001678 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001679
Benjamin Kramer5b7a4e02011-02-20 15:20:01 +00001680 // ~(A & ?) | A = -1
1681 if (match(Op0, m_Not(m_And(m_Value(A), m_Value(B)))) &&
1682 (A == Op1 || B == Op1))
1683 return Constant::getAllOnesValue(Op1->getType());
1684
1685 // A | ~(A & ?) = -1
1686 if (match(Op1, m_Not(m_And(m_Value(A), m_Value(B)))) &&
1687 (A == Op0 || B == Op0))
1688 return Constant::getAllOnesValue(Op0->getType());
1689
David Majnemera315bd82014-09-15 08:15:28 +00001690 if (auto *ICILHS = dyn_cast<ICmpInst>(Op0)) {
1691 if (auto *ICIRHS = dyn_cast<ICmpInst>(Op1)) {
1692 if (Value *V = SimplifyOrOfICmps(ICILHS, ICIRHS))
1693 return V;
1694 if (Value *V = SimplifyOrOfICmps(ICIRHS, ICILHS))
1695 return V;
1696 }
1697 }
1698
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001699 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001700 if (Value *V = SimplifyAssociativeBinOp(Instruction::Or, Op0, Op1, Q,
1701 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001702 return V;
Benjamin Kramer8c35fb02010-09-10 22:39:55 +00001703
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001704 // Or distributes over And. Try some generic simplifications based on this.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001705 if (Value *V = ExpandBinOp(Instruction::Or, Op0, Op1, Instruction::And, Q,
1706 MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001707 return V;
1708
Duncan Sandsb0579e92010-11-10 13:00:08 +00001709 // If the operation is with the result of a select instruction, check whether
1710 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001711 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001712 if (Value *V = ThreadBinOpOverSelect(Instruction::Or, Op0, Op1, Q,
Duncan Sandsf64e6902010-12-21 09:09:15 +00001713 MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001714 return V;
1715
Nick Lewycky8561a492014-06-19 03:51:46 +00001716 // (A & C)|(B & D)
1717 Value *C = nullptr, *D = nullptr;
1718 if (match(Op0, m_And(m_Value(A), m_Value(C))) &&
1719 match(Op1, m_And(m_Value(B), m_Value(D)))) {
1720 ConstantInt *C1 = dyn_cast<ConstantInt>(C);
1721 ConstantInt *C2 = dyn_cast<ConstantInt>(D);
1722 if (C1 && C2 && (C1->getValue() == ~C2->getValue())) {
1723 // (A & C1)|(B & C2)
1724 // If we have: ((V + N) & C1) | (V & C2)
1725 // .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0
1726 // replace with V+N.
1727 Value *V1, *V2;
1728 if ((C2->getValue() & (C2->getValue() + 1)) == 0 && // C2 == 0+1+
1729 match(A, m_Add(m_Value(V1), m_Value(V2)))) {
1730 // Add commutes, try both ways.
Hal Finkel60db0582014-09-07 18:57:58 +00001731 if (V1 == B && MaskedValueIsZero(V2, C2->getValue(), Q.DL,
1732 0, Q.AT, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001733 return A;
Hal Finkel60db0582014-09-07 18:57:58 +00001734 if (V2 == B && MaskedValueIsZero(V1, C2->getValue(), Q.DL,
1735 0, Q.AT, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001736 return A;
1737 }
1738 // Or commutes, try both ways.
1739 if ((C1->getValue() & (C1->getValue() + 1)) == 0 &&
1740 match(B, m_Add(m_Value(V1), m_Value(V2)))) {
1741 // Add commutes, try both ways.
Hal Finkel60db0582014-09-07 18:57:58 +00001742 if (V1 == A && MaskedValueIsZero(V2, C1->getValue(), Q.DL,
1743 0, Q.AT, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001744 return B;
Hal Finkel60db0582014-09-07 18:57:58 +00001745 if (V2 == A && MaskedValueIsZero(V1, C1->getValue(), Q.DL,
1746 0, Q.AT, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001747 return B;
1748 }
1749 }
1750 }
1751
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001752 // If the operation is with the result of a phi instruction, check whether
1753 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001754 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001755 if (Value *V = ThreadBinOpOverPHI(Instruction::Or, Op0, Op1, Q, MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00001756 return V;
1757
Craig Topper9f008862014-04-15 04:59:12 +00001758 return nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00001759}
1760
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001761Value *llvm::SimplifyOrInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001762 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00001763 const DominatorTree *DT, AssumptionTracker *AT,
1764 const Instruction *CxtI) {
1765 return ::SimplifyOrInst(Op0, Op1, Query (DL, TLI, DT, AT, CxtI),
1766 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001767}
Chris Lattnera71e9d62009-11-10 00:55:12 +00001768
Duncan Sandsc89ac072010-11-17 18:52:15 +00001769/// SimplifyXorInst - Given operands for a Xor, see if we can
1770/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001771static Value *SimplifyXorInst(Value *Op0, Value *Op1, const Query &Q,
1772 unsigned MaxRecurse) {
Duncan Sandsc89ac072010-11-17 18:52:15 +00001773 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
1774 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
1775 Constant *Ops[] = { CLHS, CRHS };
1776 return ConstantFoldInstOperands(Instruction::Xor, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001777 Ops, Q.DL, Q.TLI);
Duncan Sandsc89ac072010-11-17 18:52:15 +00001778 }
1779
1780 // Canonicalize the constant to the RHS.
1781 std::swap(Op0, Op1);
1782 }
1783
1784 // A ^ undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001785 if (match(Op1, m_Undef()))
Duncan Sands019a4182010-12-15 11:02:22 +00001786 return Op1;
Duncan Sandsc89ac072010-11-17 18:52:15 +00001787
1788 // A ^ 0 = A
1789 if (match(Op1, m_Zero()))
1790 return Op0;
1791
Eli Friedmanad3cfe72011-08-17 19:31:49 +00001792 // A ^ A = 0
1793 if (Op0 == Op1)
1794 return Constant::getNullValue(Op0->getType());
1795
Duncan Sandsc89ac072010-11-17 18:52:15 +00001796 // A ^ ~A = ~A ^ A = -1
Chris Lattner9e4aa022011-02-09 17:15:04 +00001797 if (match(Op0, m_Not(m_Specific(Op1))) ||
1798 match(Op1, m_Not(m_Specific(Op0))))
Duncan Sandsc89ac072010-11-17 18:52:15 +00001799 return Constant::getAllOnesValue(Op0->getType());
1800
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001801 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001802 if (Value *V = SimplifyAssociativeBinOp(Instruction::Xor, Op0, Op1, Q,
1803 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001804 return V;
Duncan Sandsc89ac072010-11-17 18:52:15 +00001805
Duncan Sandsb238de02010-11-19 09:20:39 +00001806 // Threading Xor over selects and phi nodes is pointless, so don't bother.
1807 // Threading over the select in "A ^ select(cond, B, C)" means evaluating
1808 // "A^B" and "A^C" and seeing if they are equal; but they are equal if and
1809 // only if B and C are equal. If B and C are equal then (since we assume
1810 // that operands have already been simplified) "select(cond, B, C)" should
1811 // have been simplified to the common value of B and C already. Analysing
1812 // "A^B" and "A^C" thus gains nothing, but costs compile time. Similarly
1813 // for threading over phi nodes.
Duncan Sandsc89ac072010-11-17 18:52:15 +00001814
Craig Topper9f008862014-04-15 04:59:12 +00001815 return nullptr;
Duncan Sandsc89ac072010-11-17 18:52:15 +00001816}
1817
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001818Value *llvm::SimplifyXorInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001819 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00001820 const DominatorTree *DT, AssumptionTracker *AT,
1821 const Instruction *CxtI) {
1822 return ::SimplifyXorInst(Op0, Op1, Query (DL, TLI, DT, AT, CxtI),
1823 RecursionLimit);
Duncan Sandsc89ac072010-11-17 18:52:15 +00001824}
1825
Chris Lattner229907c2011-07-18 04:54:35 +00001826static Type *GetCompareTy(Value *Op) {
Chris Lattnerccfdceb2009-11-09 23:55:12 +00001827 return CmpInst::makeCmpResultType(Op->getType());
1828}
1829
Duncan Sandsaf327282011-05-07 16:56:49 +00001830/// ExtractEquivalentCondition - Rummage around inside V looking for something
1831/// equivalent to the comparison "LHS Pred RHS". Return such a value if found,
1832/// otherwise return null. Helper function for analyzing max/min idioms.
1833static Value *ExtractEquivalentCondition(Value *V, CmpInst::Predicate Pred,
1834 Value *LHS, Value *RHS) {
1835 SelectInst *SI = dyn_cast<SelectInst>(V);
1836 if (!SI)
Craig Topper9f008862014-04-15 04:59:12 +00001837 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00001838 CmpInst *Cmp = dyn_cast<CmpInst>(SI->getCondition());
1839 if (!Cmp)
Craig Topper9f008862014-04-15 04:59:12 +00001840 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00001841 Value *CmpLHS = Cmp->getOperand(0), *CmpRHS = Cmp->getOperand(1);
1842 if (Pred == Cmp->getPredicate() && LHS == CmpLHS && RHS == CmpRHS)
1843 return Cmp;
1844 if (Pred == CmpInst::getSwappedPredicate(Cmp->getPredicate()) &&
1845 LHS == CmpRHS && RHS == CmpLHS)
1846 return Cmp;
Craig Topper9f008862014-04-15 04:59:12 +00001847 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00001848}
1849
Dan Gohman9631d902013-02-01 00:49:06 +00001850// A significant optimization not implemented here is assuming that alloca
1851// addresses are not equal to incoming argument values. They don't *alias*,
1852// as we say, but that doesn't mean they aren't equal, so we take a
1853// conservative approach.
1854//
1855// This is inspired in part by C++11 5.10p1:
1856// "Two pointers of the same type compare equal if and only if they are both
1857// null, both point to the same function, or both represent the same
1858// address."
1859//
1860// This is pretty permissive.
1861//
1862// It's also partly due to C11 6.5.9p6:
1863// "Two pointers compare equal if and only if both are null pointers, both are
1864// pointers to the same object (including a pointer to an object and a
1865// subobject at its beginning) or function, both are pointers to one past the
1866// last element of the same array object, or one is a pointer to one past the
1867// end of one array object and the other is a pointer to the start of a
NAKAMURA Takumi065fd352013-04-08 23:05:21 +00001868// different array object that happens to immediately follow the first array
Dan Gohman9631d902013-02-01 00:49:06 +00001869// object in the address space.)
1870//
1871// C11's version is more restrictive, however there's no reason why an argument
1872// couldn't be a one-past-the-end value for a stack object in the caller and be
1873// equal to the beginning of a stack object in the callee.
1874//
1875// If the C and C++ standards are ever made sufficiently restrictive in this
1876// area, it may be possible to update LLVM's semantics accordingly and reinstate
1877// this optimization.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001878static Constant *computePointerICmp(const DataLayout *DL,
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001879 const TargetLibraryInfo *TLI,
Chandler Carruth8059c842012-03-25 21:28:14 +00001880 CmpInst::Predicate Pred,
1881 Value *LHS, Value *RHS) {
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001882 // First, skip past any trivial no-ops.
1883 LHS = LHS->stripPointerCasts();
1884 RHS = RHS->stripPointerCasts();
1885
1886 // A non-null pointer is not equal to a null pointer.
Benjamin Kramerfd4777c2013-09-24 16:37:51 +00001887 if (llvm::isKnownNonNull(LHS, TLI) && isa<ConstantPointerNull>(RHS) &&
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001888 (Pred == CmpInst::ICMP_EQ || Pred == CmpInst::ICMP_NE))
1889 return ConstantInt::get(GetCompareTy(LHS),
1890 !CmpInst::isTrueWhenEqual(Pred));
1891
Chandler Carruth8059c842012-03-25 21:28:14 +00001892 // We can only fold certain predicates on pointer comparisons.
1893 switch (Pred) {
1894 default:
Craig Topper9f008862014-04-15 04:59:12 +00001895 return nullptr;
Chandler Carruth8059c842012-03-25 21:28:14 +00001896
1897 // Equality comaprisons are easy to fold.
1898 case CmpInst::ICMP_EQ:
1899 case CmpInst::ICMP_NE:
1900 break;
1901
1902 // We can only handle unsigned relational comparisons because 'inbounds' on
1903 // a GEP only protects against unsigned wrapping.
1904 case CmpInst::ICMP_UGT:
1905 case CmpInst::ICMP_UGE:
1906 case CmpInst::ICMP_ULT:
1907 case CmpInst::ICMP_ULE:
1908 // However, we have to switch them to their signed variants to handle
1909 // negative indices from the base pointer.
1910 Pred = ICmpInst::getSignedPredicate(Pred);
1911 break;
1912 }
1913
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001914 // Strip off any constant offsets so that we can reason about them.
1915 // It's tempting to use getUnderlyingObject or even just stripInBoundsOffsets
1916 // here and compare base addresses like AliasAnalysis does, however there are
1917 // numerous hazards. AliasAnalysis and its utilities rely on special rules
1918 // governing loads and stores which don't apply to icmps. Also, AliasAnalysis
1919 // doesn't need to guarantee pointer inequality when it says NoAlias.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001920 Constant *LHSOffset = stripAndComputeConstantOffsets(DL, LHS);
1921 Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS);
Chandler Carruth8059c842012-03-25 21:28:14 +00001922
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001923 // If LHS and RHS are related via constant offsets to the same base
1924 // value, we can replace it with an icmp which just compares the offsets.
1925 if (LHS == RHS)
1926 return ConstantExpr::getICmp(Pred, LHSOffset, RHSOffset);
Chandler Carruth8059c842012-03-25 21:28:14 +00001927
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001928 // Various optimizations for (in)equality comparisons.
1929 if (Pred == CmpInst::ICMP_EQ || Pred == CmpInst::ICMP_NE) {
1930 // Different non-empty allocations that exist at the same time have
1931 // different addresses (if the program can tell). Global variables always
1932 // exist, so they always exist during the lifetime of each other and all
1933 // allocas. Two different allocas usually have different addresses...
1934 //
1935 // However, if there's an @llvm.stackrestore dynamically in between two
1936 // allocas, they may have the same address. It's tempting to reduce the
1937 // scope of the problem by only looking at *static* allocas here. That would
1938 // cover the majority of allocas while significantly reducing the likelihood
1939 // of having an @llvm.stackrestore pop up in the middle. However, it's not
1940 // actually impossible for an @llvm.stackrestore to pop up in the middle of
1941 // an entry block. Also, if we have a block that's not attached to a
1942 // function, we can't tell if it's "static" under the current definition.
1943 // Theoretically, this problem could be fixed by creating a new kind of
1944 // instruction kind specifically for static allocas. Such a new instruction
1945 // could be required to be at the top of the entry block, thus preventing it
1946 // from being subject to a @llvm.stackrestore. Instcombine could even
1947 // convert regular allocas into these special allocas. It'd be nifty.
1948 // However, until then, this problem remains open.
1949 //
1950 // So, we'll assume that two non-empty allocas have different addresses
1951 // for now.
1952 //
1953 // With all that, if the offsets are within the bounds of their allocations
1954 // (and not one-past-the-end! so we can't use inbounds!), and their
1955 // allocations aren't the same, the pointers are not equal.
1956 //
1957 // Note that it's not necessary to check for LHS being a global variable
1958 // address, due to canonicalization and constant folding.
1959 if (isa<AllocaInst>(LHS) &&
1960 (isa<AllocaInst>(RHS) || isa<GlobalVariable>(RHS))) {
Benjamin Kramerc05aa952013-02-01 15:21:10 +00001961 ConstantInt *LHSOffsetCI = dyn_cast<ConstantInt>(LHSOffset);
1962 ConstantInt *RHSOffsetCI = dyn_cast<ConstantInt>(RHSOffset);
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001963 uint64_t LHSSize, RHSSize;
Benjamin Kramerc05aa952013-02-01 15:21:10 +00001964 if (LHSOffsetCI && RHSOffsetCI &&
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001965 getObjectSize(LHS, LHSSize, DL, TLI) &&
1966 getObjectSize(RHS, RHSSize, DL, TLI)) {
Benjamin Kramerc05aa952013-02-01 15:21:10 +00001967 const APInt &LHSOffsetValue = LHSOffsetCI->getValue();
1968 const APInt &RHSOffsetValue = RHSOffsetCI->getValue();
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001969 if (!LHSOffsetValue.isNegative() &&
1970 !RHSOffsetValue.isNegative() &&
1971 LHSOffsetValue.ult(LHSSize) &&
1972 RHSOffsetValue.ult(RHSSize)) {
1973 return ConstantInt::get(GetCompareTy(LHS),
1974 !CmpInst::isTrueWhenEqual(Pred));
1975 }
1976 }
1977
1978 // Repeat the above check but this time without depending on DataLayout
1979 // or being able to compute a precise size.
1980 if (!cast<PointerType>(LHS->getType())->isEmptyTy() &&
1981 !cast<PointerType>(RHS->getType())->isEmptyTy() &&
1982 LHSOffset->isNullValue() &&
1983 RHSOffset->isNullValue())
1984 return ConstantInt::get(GetCompareTy(LHS),
1985 !CmpInst::isTrueWhenEqual(Pred));
1986 }
Benjamin Kramer942dfe62013-09-23 14:16:38 +00001987
1988 // Even if an non-inbounds GEP occurs along the path we can still optimize
1989 // equality comparisons concerning the result. We avoid walking the whole
1990 // chain again by starting where the last calls to
1991 // stripAndComputeConstantOffsets left off and accumulate the offsets.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001992 Constant *LHSNoBound = stripAndComputeConstantOffsets(DL, LHS, true);
1993 Constant *RHSNoBound = stripAndComputeConstantOffsets(DL, RHS, true);
Benjamin Kramer942dfe62013-09-23 14:16:38 +00001994 if (LHS == RHS)
1995 return ConstantExpr::getICmp(Pred,
1996 ConstantExpr::getAdd(LHSOffset, LHSNoBound),
1997 ConstantExpr::getAdd(RHSOffset, RHSNoBound));
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001998 }
1999
2000 // Otherwise, fail.
Craig Topper9f008862014-04-15 04:59:12 +00002001 return nullptr;
Chandler Carruth8059c842012-03-25 21:28:14 +00002002}
Chris Lattner01990f02012-02-24 19:01:58 +00002003
Chris Lattnerc1f19072009-11-09 23:28:39 +00002004/// SimplifyICmpInst - Given operands for an ICmpInst, see if we can
2005/// fold the result. If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00002006static Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00002007 const Query &Q, unsigned MaxRecurse) {
Chris Lattner084a1b52009-11-09 22:57:59 +00002008 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate;
Chris Lattnerc1f19072009-11-09 23:28:39 +00002009 assert(CmpInst::isIntPredicate(Pred) && "Not an integer compare!");
Duncan Sands7e800d62010-11-14 11:23:23 +00002010
Chris Lattnera71e9d62009-11-10 00:55:12 +00002011 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
Chris Lattnercdfb80d2009-11-09 23:06:58 +00002012 if (Constant *CRHS = dyn_cast<Constant>(RHS))
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002013 return ConstantFoldCompareInstOperands(Pred, CLHS, CRHS, Q.DL, Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00002014
2015 // If we have a constant, make sure it is on the RHS.
2016 std::swap(LHS, RHS);
2017 Pred = CmpInst::getSwappedPredicate(Pred);
2018 }
Duncan Sands7e800d62010-11-14 11:23:23 +00002019
Chris Lattner229907c2011-07-18 04:54:35 +00002020 Type *ITy = GetCompareTy(LHS); // The return type.
2021 Type *OpTy = LHS->getType(); // The operand type.
Duncan Sands7e800d62010-11-14 11:23:23 +00002022
Chris Lattnerccfdceb2009-11-09 23:55:12 +00002023 // icmp X, X -> true/false
Chris Lattner3afc0722010-03-03 19:46:03 +00002024 // X icmp undef -> true/false. For example, icmp ugt %X, undef -> false
2025 // because X could be 0.
Duncan Sands772749a2011-01-01 20:08:02 +00002026 if (LHS == RHS || isa<UndefValue>(RHS))
Chris Lattnerccfdceb2009-11-09 23:55:12 +00002027 return ConstantInt::get(ITy, CmpInst::isTrueWhenEqual(Pred));
Duncan Sands7e800d62010-11-14 11:23:23 +00002028
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002029 // Special case logic when the operands have i1 type.
Nick Lewyckye659b842011-12-01 02:39:36 +00002030 if (OpTy->getScalarType()->isIntegerTy(1)) {
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002031 switch (Pred) {
2032 default: break;
2033 case ICmpInst::ICMP_EQ:
2034 // X == 1 -> X
2035 if (match(RHS, m_One()))
2036 return LHS;
2037 break;
2038 case ICmpInst::ICMP_NE:
2039 // X != 0 -> X
2040 if (match(RHS, m_Zero()))
2041 return LHS;
2042 break;
2043 case ICmpInst::ICMP_UGT:
2044 // X >u 0 -> X
2045 if (match(RHS, m_Zero()))
2046 return LHS;
2047 break;
2048 case ICmpInst::ICMP_UGE:
2049 // X >=u 1 -> X
2050 if (match(RHS, m_One()))
2051 return LHS;
2052 break;
2053 case ICmpInst::ICMP_SLT:
2054 // X <s 0 -> X
2055 if (match(RHS, m_Zero()))
2056 return LHS;
2057 break;
2058 case ICmpInst::ICMP_SLE:
2059 // X <=s -1 -> X
2060 if (match(RHS, m_One()))
2061 return LHS;
2062 break;
2063 }
2064 }
2065
Duncan Sandsd3951082011-01-25 09:38:29 +00002066 // If we are comparing with zero then try hard since this is a common case.
2067 if (match(RHS, m_Zero())) {
2068 bool LHSKnownNonNegative, LHSKnownNegative;
2069 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00002070 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sandsd3951082011-01-25 09:38:29 +00002071 case ICmpInst::ICMP_ULT:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002072 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002073 case ICmpInst::ICMP_UGE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002074 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002075 case ICmpInst::ICMP_EQ:
2076 case ICmpInst::ICMP_ULE:
Hal Finkel60db0582014-09-07 18:57:58 +00002077 if (isKnownNonZero(LHS, Q.DL, 0, Q.AT, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002078 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002079 break;
2080 case ICmpInst::ICMP_NE:
2081 case ICmpInst::ICMP_UGT:
Hal Finkel60db0582014-09-07 18:57:58 +00002082 if (isKnownNonZero(LHS, Q.DL, 0, Q.AT, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002083 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002084 break;
2085 case ICmpInst::ICMP_SLT:
Hal Finkel60db0582014-09-07 18:57:58 +00002086 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL,
2087 0, Q.AT, Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002088 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002089 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002090 if (LHSKnownNonNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002091 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002092 break;
2093 case ICmpInst::ICMP_SLE:
Hal Finkel60db0582014-09-07 18:57:58 +00002094 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL,
2095 0, Q.AT, Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002096 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002097 return getTrue(ITy);
Hal Finkel60db0582014-09-07 18:57:58 +00002098 if (LHSKnownNonNegative && isKnownNonZero(LHS, Q.DL,
2099 0, Q.AT, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002100 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002101 break;
2102 case ICmpInst::ICMP_SGE:
Hal Finkel60db0582014-09-07 18:57:58 +00002103 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL,
2104 0, Q.AT, Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002105 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002106 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002107 if (LHSKnownNonNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002108 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002109 break;
2110 case ICmpInst::ICMP_SGT:
Hal Finkel60db0582014-09-07 18:57:58 +00002111 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL,
2112 0, Q.AT, Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002113 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002114 return getFalse(ITy);
Hal Finkel60db0582014-09-07 18:57:58 +00002115 if (LHSKnownNonNegative && isKnownNonZero(LHS, Q.DL,
2116 0, Q.AT, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002117 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002118 break;
2119 }
2120 }
2121
2122 // See if we are doing a comparison with a constant integer.
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002123 if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002124 // Rule out tautological comparisons (eg., ult 0 or uge 0).
2125 ConstantRange RHS_CR = ICmpInst::makeConstantRange(Pred, CI->getValue());
2126 if (RHS_CR.isEmptySet())
2127 return ConstantInt::getFalse(CI->getContext());
2128 if (RHS_CR.isFullSet())
2129 return ConstantInt::getTrue(CI->getContext());
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002130
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002131 // Many binary operators with constant RHS have easy to compute constant
2132 // range. Use them to check whether the comparison is a tautology.
David Majnemer78910fc2014-05-16 17:14:03 +00002133 unsigned Width = CI->getBitWidth();
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002134 APInt Lower = APInt(Width, 0);
2135 APInt Upper = APInt(Width, 0);
2136 ConstantInt *CI2;
2137 if (match(LHS, m_URem(m_Value(), m_ConstantInt(CI2)))) {
2138 // 'urem x, CI2' produces [0, CI2).
2139 Upper = CI2->getValue();
2140 } else if (match(LHS, m_SRem(m_Value(), m_ConstantInt(CI2)))) {
2141 // 'srem x, CI2' produces (-|CI2|, |CI2|).
2142 Upper = CI2->getValue().abs();
2143 Lower = (-Upper) + 1;
Duncan Sands92af0a82011-10-28 18:17:44 +00002144 } else if (match(LHS, m_UDiv(m_ConstantInt(CI2), m_Value()))) {
2145 // 'udiv CI2, x' produces [0, CI2].
Eli Friedman0bae8b22011-11-08 21:08:02 +00002146 Upper = CI2->getValue() + 1;
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002147 } else if (match(LHS, m_UDiv(m_Value(), m_ConstantInt(CI2)))) {
2148 // 'udiv x, CI2' produces [0, UINT_MAX / CI2].
2149 APInt NegOne = APInt::getAllOnesValue(Width);
2150 if (!CI2->isZero())
2151 Upper = NegOne.udiv(CI2->getValue()) + 1;
David Majnemerea8d5db2014-05-16 16:57:04 +00002152 } else if (match(LHS, m_SDiv(m_ConstantInt(CI2), m_Value()))) {
David Majnemer651ed5e2014-07-04 00:23:39 +00002153 if (CI2->isMinSignedValue()) {
2154 // 'sdiv INT_MIN, x' produces [INT_MIN, INT_MIN / -2].
2155 Lower = CI2->getValue();
2156 Upper = Lower.lshr(1) + 1;
2157 } else {
2158 // 'sdiv CI2, x' produces [-|CI2|, |CI2|].
2159 Upper = CI2->getValue().abs() + 1;
2160 Lower = (-Upper) + 1;
2161 }
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002162 } else if (match(LHS, m_SDiv(m_Value(), m_ConstantInt(CI2)))) {
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002163 APInt IntMin = APInt::getSignedMinValue(Width);
2164 APInt IntMax = APInt::getSignedMaxValue(Width);
David Majnemeraf9180f2014-07-14 20:38:45 +00002165 APInt Val = CI2->getValue();
2166 if (Val.isAllOnesValue()) {
2167 // 'sdiv x, -1' produces [INT_MIN + 1, INT_MAX]
2168 // where CI2 != -1 and CI2 != 0 and CI2 != 1
2169 Lower = IntMin + 1;
2170 Upper = IntMax + 1;
2171 } else if (Val.countLeadingZeros() < Width - 1) {
2172 // 'sdiv x, CI2' produces [INT_MIN / CI2, INT_MAX / CI2]
2173 // where CI2 != -1 and CI2 != 0 and CI2 != 1
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002174 Lower = IntMin.sdiv(Val);
David Majnemeraf9180f2014-07-14 20:38:45 +00002175 Upper = IntMax.sdiv(Val);
2176 if (Lower.sgt(Upper))
2177 std::swap(Lower, Upper);
2178 Upper = Upper + 1;
David Majnemer5ea4fc02014-07-14 19:49:57 +00002179 assert(Upper != Lower && "Upper part of range has wrapped!");
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002180 }
David Majnemerd6d16712014-08-27 18:03:46 +00002181 } else if (match(LHS, m_NUWShl(m_ConstantInt(CI2), m_Value()))) {
2182 // 'shl nuw CI2, x' produces [CI2, CI2 << CLZ(CI2)]
2183 Lower = CI2->getValue();
2184 Upper = Lower.shl(Lower.countLeadingZeros()) + 1;
2185 } else if (match(LHS, m_NSWShl(m_ConstantInt(CI2), m_Value()))) {
2186 if (CI2->isNegative()) {
2187 // 'shl nsw CI2, x' produces [CI2 << CLO(CI2)-1, CI2]
2188 unsigned ShiftAmount = CI2->getValue().countLeadingOnes() - 1;
2189 Lower = CI2->getValue().shl(ShiftAmount);
2190 Upper = CI2->getValue() + 1;
2191 } else {
2192 // 'shl nsw CI2, x' produces [CI2, CI2 << CLZ(CI2)-1]
2193 unsigned ShiftAmount = CI2->getValue().countLeadingZeros() - 1;
2194 Lower = CI2->getValue();
2195 Upper = CI2->getValue().shl(ShiftAmount) + 1;
2196 }
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002197 } else if (match(LHS, m_LShr(m_Value(), m_ConstantInt(CI2)))) {
2198 // 'lshr x, CI2' produces [0, UINT_MAX >> CI2].
2199 APInt NegOne = APInt::getAllOnesValue(Width);
2200 if (CI2->getValue().ult(Width))
2201 Upper = NegOne.lshr(CI2->getValue()) + 1;
David Majnemer78910fc2014-05-16 17:14:03 +00002202 } else if (match(LHS, m_LShr(m_ConstantInt(CI2), m_Value()))) {
2203 // 'lshr CI2, x' produces [CI2 >> (Width-1), CI2].
2204 unsigned ShiftAmount = Width - 1;
2205 if (!CI2->isZero() && cast<BinaryOperator>(LHS)->isExact())
2206 ShiftAmount = CI2->getValue().countTrailingZeros();
2207 Lower = CI2->getValue().lshr(ShiftAmount);
2208 Upper = CI2->getValue() + 1;
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002209 } else if (match(LHS, m_AShr(m_Value(), m_ConstantInt(CI2)))) {
2210 // 'ashr x, CI2' produces [INT_MIN >> CI2, INT_MAX >> CI2].
2211 APInt IntMin = APInt::getSignedMinValue(Width);
2212 APInt IntMax = APInt::getSignedMaxValue(Width);
2213 if (CI2->getValue().ult(Width)) {
2214 Lower = IntMin.ashr(CI2->getValue());
2215 Upper = IntMax.ashr(CI2->getValue()) + 1;
2216 }
David Majnemer78910fc2014-05-16 17:14:03 +00002217 } else if (match(LHS, m_AShr(m_ConstantInt(CI2), m_Value()))) {
2218 unsigned ShiftAmount = Width - 1;
2219 if (!CI2->isZero() && cast<BinaryOperator>(LHS)->isExact())
2220 ShiftAmount = CI2->getValue().countTrailingZeros();
2221 if (CI2->isNegative()) {
2222 // 'ashr CI2, x' produces [CI2, CI2 >> (Width-1)]
2223 Lower = CI2->getValue();
2224 Upper = CI2->getValue().ashr(ShiftAmount) + 1;
2225 } else {
2226 // 'ashr CI2, x' produces [CI2 >> (Width-1), CI2]
2227 Lower = CI2->getValue().ashr(ShiftAmount);
2228 Upper = CI2->getValue() + 1;
2229 }
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002230 } else if (match(LHS, m_Or(m_Value(), m_ConstantInt(CI2)))) {
2231 // 'or x, CI2' produces [CI2, UINT_MAX].
2232 Lower = CI2->getValue();
2233 } else if (match(LHS, m_And(m_Value(), m_ConstantInt(CI2)))) {
2234 // 'and x, CI2' produces [0, CI2].
2235 Upper = CI2->getValue() + 1;
2236 }
2237 if (Lower != Upper) {
2238 ConstantRange LHS_CR = ConstantRange(Lower, Upper);
2239 if (RHS_CR.contains(LHS_CR))
2240 return ConstantInt::getTrue(RHS->getContext());
2241 if (RHS_CR.inverse().contains(LHS_CR))
2242 return ConstantInt::getFalse(RHS->getContext());
2243 }
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002244 }
2245
Duncan Sands8fb2c382011-01-20 13:21:55 +00002246 // Compare of cast, for example (zext X) != 0 -> X != 0
2247 if (isa<CastInst>(LHS) && (isa<Constant>(RHS) || isa<CastInst>(RHS))) {
2248 Instruction *LI = cast<CastInst>(LHS);
2249 Value *SrcOp = LI->getOperand(0);
Chris Lattner229907c2011-07-18 04:54:35 +00002250 Type *SrcTy = SrcOp->getType();
2251 Type *DstTy = LI->getType();
Duncan Sands8fb2c382011-01-20 13:21:55 +00002252
2253 // Turn icmp (ptrtoint x), (ptrtoint/constant) into a compare of the input
2254 // if the integer type is the same size as the pointer type.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002255 if (MaxRecurse && Q.DL && isa<PtrToIntInst>(LI) &&
2256 Q.DL->getTypeSizeInBits(SrcTy) == DstTy->getPrimitiveSizeInBits()) {
Duncan Sands8fb2c382011-01-20 13:21:55 +00002257 if (Constant *RHSC = dyn_cast<Constant>(RHS)) {
2258 // Transfer the cast to the constant.
2259 if (Value *V = SimplifyICmpInst(Pred, SrcOp,
2260 ConstantExpr::getIntToPtr(RHSC, SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002261 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002262 return V;
2263 } else if (PtrToIntInst *RI = dyn_cast<PtrToIntInst>(RHS)) {
2264 if (RI->getOperand(0)->getType() == SrcTy)
2265 // Compare without the cast.
2266 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002267 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002268 return V;
2269 }
2270 }
2271
2272 if (isa<ZExtInst>(LHS)) {
2273 // Turn icmp (zext X), (zext Y) into a compare of X and Y if they have the
2274 // same type.
2275 if (ZExtInst *RI = dyn_cast<ZExtInst>(RHS)) {
2276 if (MaxRecurse && SrcTy == RI->getOperand(0)->getType())
2277 // Compare X and Y. Note that signed predicates become unsigned.
2278 if (Value *V = SimplifyICmpInst(ICmpInst::getUnsignedPredicate(Pred),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002279 SrcOp, RI->getOperand(0), Q,
Duncan Sands8fb2c382011-01-20 13:21:55 +00002280 MaxRecurse-1))
2281 return V;
2282 }
2283 // Turn icmp (zext X), Cst into a compare of X and Cst if Cst is extended
2284 // too. If not, then try to deduce the result of the comparison.
2285 else if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
2286 // Compute the constant that would happen if we truncated to SrcTy then
2287 // reextended to DstTy.
2288 Constant *Trunc = ConstantExpr::getTrunc(CI, SrcTy);
2289 Constant *RExt = ConstantExpr::getCast(CastInst::ZExt, Trunc, DstTy);
2290
2291 // If the re-extended constant didn't change then this is effectively
2292 // also a case of comparing two zero-extended values.
2293 if (RExt == CI && MaxRecurse)
2294 if (Value *V = SimplifyICmpInst(ICmpInst::getUnsignedPredicate(Pred),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002295 SrcOp, Trunc, Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002296 return V;
2297
2298 // Otherwise the upper bits of LHS are zero while RHS has a non-zero bit
2299 // there. Use this to work out the result of the comparison.
2300 if (RExt != CI) {
2301 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00002302 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sands8fb2c382011-01-20 13:21:55 +00002303 // LHS <u RHS.
2304 case ICmpInst::ICMP_EQ:
2305 case ICmpInst::ICMP_UGT:
2306 case ICmpInst::ICMP_UGE:
2307 return ConstantInt::getFalse(CI->getContext());
2308
2309 case ICmpInst::ICMP_NE:
2310 case ICmpInst::ICMP_ULT:
2311 case ICmpInst::ICMP_ULE:
2312 return ConstantInt::getTrue(CI->getContext());
2313
2314 // LHS is non-negative. If RHS is negative then LHS >s LHS. If RHS
2315 // is non-negative then LHS <s RHS.
2316 case ICmpInst::ICMP_SGT:
2317 case ICmpInst::ICMP_SGE:
2318 return CI->getValue().isNegative() ?
2319 ConstantInt::getTrue(CI->getContext()) :
2320 ConstantInt::getFalse(CI->getContext());
2321
2322 case ICmpInst::ICMP_SLT:
2323 case ICmpInst::ICMP_SLE:
2324 return CI->getValue().isNegative() ?
2325 ConstantInt::getFalse(CI->getContext()) :
2326 ConstantInt::getTrue(CI->getContext());
2327 }
2328 }
2329 }
2330 }
2331
2332 if (isa<SExtInst>(LHS)) {
2333 // Turn icmp (sext X), (sext Y) into a compare of X and Y if they have the
2334 // same type.
2335 if (SExtInst *RI = dyn_cast<SExtInst>(RHS)) {
2336 if (MaxRecurse && SrcTy == RI->getOperand(0)->getType())
2337 // Compare X and Y. Note that the predicate does not change.
2338 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002339 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002340 return V;
2341 }
2342 // Turn icmp (sext X), Cst into a compare of X and Cst if Cst is extended
2343 // too. If not, then try to deduce the result of the comparison.
2344 else if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
2345 // Compute the constant that would happen if we truncated to SrcTy then
2346 // reextended to DstTy.
2347 Constant *Trunc = ConstantExpr::getTrunc(CI, SrcTy);
2348 Constant *RExt = ConstantExpr::getCast(CastInst::SExt, Trunc, DstTy);
2349
2350 // If the re-extended constant didn't change then this is effectively
2351 // also a case of comparing two sign-extended values.
2352 if (RExt == CI && MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002353 if (Value *V = SimplifyICmpInst(Pred, SrcOp, Trunc, Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002354 return V;
2355
2356 // Otherwise the upper bits of LHS are all equal, while RHS has varying
2357 // bits there. Use this to work out the result of the comparison.
2358 if (RExt != CI) {
2359 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00002360 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sands8fb2c382011-01-20 13:21:55 +00002361 case ICmpInst::ICMP_EQ:
2362 return ConstantInt::getFalse(CI->getContext());
2363 case ICmpInst::ICMP_NE:
2364 return ConstantInt::getTrue(CI->getContext());
2365
2366 // If RHS is non-negative then LHS <s RHS. If RHS is negative then
2367 // LHS >s RHS.
2368 case ICmpInst::ICMP_SGT:
2369 case ICmpInst::ICMP_SGE:
2370 return CI->getValue().isNegative() ?
2371 ConstantInt::getTrue(CI->getContext()) :
2372 ConstantInt::getFalse(CI->getContext());
2373 case ICmpInst::ICMP_SLT:
2374 case ICmpInst::ICMP_SLE:
2375 return CI->getValue().isNegative() ?
2376 ConstantInt::getFalse(CI->getContext()) :
2377 ConstantInt::getTrue(CI->getContext());
2378
2379 // If LHS is non-negative then LHS <u RHS. If LHS is negative then
2380 // LHS >u RHS.
2381 case ICmpInst::ICMP_UGT:
2382 case ICmpInst::ICMP_UGE:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002383 // Comparison is true iff the LHS <s 0.
Duncan Sands8fb2c382011-01-20 13:21:55 +00002384 if (MaxRecurse)
2385 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SLT, SrcOp,
2386 Constant::getNullValue(SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002387 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002388 return V;
2389 break;
2390 case ICmpInst::ICMP_ULT:
2391 case ICmpInst::ICMP_ULE:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002392 // Comparison is true iff the LHS >=s 0.
Duncan Sands8fb2c382011-01-20 13:21:55 +00002393 if (MaxRecurse)
2394 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SGE, SrcOp,
2395 Constant::getNullValue(SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002396 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002397 return V;
2398 break;
2399 }
2400 }
2401 }
2402 }
2403 }
2404
Nick Lewyckyc9610302014-06-19 03:35:49 +00002405 // If a bit is known to be zero for A and known to be one for B,
2406 // then A and B cannot be equal.
2407 if (ICmpInst::isEquality(Pred)) {
2408 if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
2409 uint32_t BitWidth = CI->getBitWidth();
2410 APInt LHSKnownZero(BitWidth, 0);
2411 APInt LHSKnownOne(BitWidth, 0);
Hal Finkel60db0582014-09-07 18:57:58 +00002412 computeKnownBits(LHS, LHSKnownZero, LHSKnownOne, Q.DL,
2413 0, Q.AT, Q.CxtI, Q.DT);
Nick Lewyckyc9610302014-06-19 03:35:49 +00002414 APInt RHSKnownZero(BitWidth, 0);
2415 APInt RHSKnownOne(BitWidth, 0);
Hal Finkel60db0582014-09-07 18:57:58 +00002416 computeKnownBits(RHS, RHSKnownZero, RHSKnownOne, Q.DL,
2417 0, Q.AT, Q.CxtI, Q.DT);
Nick Lewyckyc9610302014-06-19 03:35:49 +00002418 if (((LHSKnownOne & RHSKnownZero) != 0) ||
2419 ((LHSKnownZero & RHSKnownOne) != 0))
2420 return (Pred == ICmpInst::ICMP_EQ)
2421 ? ConstantInt::getFalse(CI->getContext())
2422 : ConstantInt::getTrue(CI->getContext());
2423 }
2424 }
2425
Duncan Sandsd114ab32011-02-13 17:15:40 +00002426 // Special logic for binary operators.
2427 BinaryOperator *LBO = dyn_cast<BinaryOperator>(LHS);
2428 BinaryOperator *RBO = dyn_cast<BinaryOperator>(RHS);
2429 if (MaxRecurse && (LBO || RBO)) {
Duncan Sandsd114ab32011-02-13 17:15:40 +00002430 // Analyze the case when either LHS or RHS is an add instruction.
Craig Topper9f008862014-04-15 04:59:12 +00002431 Value *A = nullptr, *B = nullptr, *C = nullptr, *D = nullptr;
Duncan Sandsd114ab32011-02-13 17:15:40 +00002432 // LHS = A + B (or A and B are null); RHS = C + D (or C and D are null).
2433 bool NoLHSWrapProblem = false, NoRHSWrapProblem = false;
2434 if (LBO && LBO->getOpcode() == Instruction::Add) {
2435 A = LBO->getOperand(0); B = LBO->getOperand(1);
2436 NoLHSWrapProblem = ICmpInst::isEquality(Pred) ||
2437 (CmpInst::isUnsigned(Pred) && LBO->hasNoUnsignedWrap()) ||
2438 (CmpInst::isSigned(Pred) && LBO->hasNoSignedWrap());
2439 }
2440 if (RBO && RBO->getOpcode() == Instruction::Add) {
2441 C = RBO->getOperand(0); D = RBO->getOperand(1);
2442 NoRHSWrapProblem = ICmpInst::isEquality(Pred) ||
2443 (CmpInst::isUnsigned(Pred) && RBO->hasNoUnsignedWrap()) ||
2444 (CmpInst::isSigned(Pred) && RBO->hasNoSignedWrap());
2445 }
2446
2447 // icmp (X+Y), X -> icmp Y, 0 for equalities or if there is no overflow.
2448 if ((A == RHS || B == RHS) && NoLHSWrapProblem)
2449 if (Value *V = SimplifyICmpInst(Pred, A == RHS ? B : A,
2450 Constant::getNullValue(RHS->getType()),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002451 Q, MaxRecurse-1))
Duncan Sandsd114ab32011-02-13 17:15:40 +00002452 return V;
2453
2454 // icmp X, (X+Y) -> icmp 0, Y for equalities or if there is no overflow.
2455 if ((C == LHS || D == LHS) && NoRHSWrapProblem)
2456 if (Value *V = SimplifyICmpInst(Pred,
2457 Constant::getNullValue(LHS->getType()),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002458 C == LHS ? D : C, Q, MaxRecurse-1))
Duncan Sandsd114ab32011-02-13 17:15:40 +00002459 return V;
2460
2461 // icmp (X+Y), (X+Z) -> icmp Y,Z for equalities or if there is no overflow.
2462 if (A && C && (A == C || A == D || B == C || B == D) &&
2463 NoLHSWrapProblem && NoRHSWrapProblem) {
2464 // Determine Y and Z in the form icmp (X+Y), (X+Z).
Duncan Sandsc41076c2012-11-16 19:41:26 +00002465 Value *Y, *Z;
2466 if (A == C) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002467 // C + B == C + D -> B == D
Duncan Sandsc41076c2012-11-16 19:41:26 +00002468 Y = B;
2469 Z = D;
2470 } else if (A == D) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002471 // D + B == C + D -> B == C
Duncan Sandsc41076c2012-11-16 19:41:26 +00002472 Y = B;
2473 Z = C;
2474 } else if (B == C) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002475 // A + C == C + D -> A == D
Duncan Sandsc41076c2012-11-16 19:41:26 +00002476 Y = A;
2477 Z = D;
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002478 } else {
2479 assert(B == D);
2480 // A + D == C + D -> A == C
Duncan Sandsc41076c2012-11-16 19:41:26 +00002481 Y = A;
2482 Z = C;
2483 }
Duncan Sandsb8cee002012-03-13 11:42:19 +00002484 if (Value *V = SimplifyICmpInst(Pred, Y, Z, Q, MaxRecurse-1))
Duncan Sandsd114ab32011-02-13 17:15:40 +00002485 return V;
2486 }
2487 }
2488
David Majnemer2d6c0232014-05-14 20:16:28 +00002489 // 0 - (zext X) pred C
2490 if (!CmpInst::isUnsigned(Pred) && match(LHS, m_Neg(m_ZExt(m_Value())))) {
2491 if (ConstantInt *RHSC = dyn_cast<ConstantInt>(RHS)) {
2492 if (RHSC->getValue().isStrictlyPositive()) {
2493 if (Pred == ICmpInst::ICMP_SLT)
2494 return ConstantInt::getTrue(RHSC->getContext());
2495 if (Pred == ICmpInst::ICMP_SGE)
2496 return ConstantInt::getFalse(RHSC->getContext());
2497 if (Pred == ICmpInst::ICMP_EQ)
2498 return ConstantInt::getFalse(RHSC->getContext());
2499 if (Pred == ICmpInst::ICMP_NE)
2500 return ConstantInt::getTrue(RHSC->getContext());
2501 }
2502 if (RHSC->getValue().isNonNegative()) {
2503 if (Pred == ICmpInst::ICMP_SLE)
2504 return ConstantInt::getTrue(RHSC->getContext());
2505 if (Pred == ICmpInst::ICMP_SGT)
2506 return ConstantInt::getFalse(RHSC->getContext());
2507 }
2508 }
2509 }
2510
Nick Lewycky35aeea92013-07-12 23:42:57 +00002511 // icmp pred (urem X, Y), Y
Nick Lewycky980104d2011-03-09 06:26:03 +00002512 if (LBO && match(LBO, m_URem(m_Value(), m_Specific(RHS)))) {
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002513 bool KnownNonNegative, KnownNegative;
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002514 switch (Pred) {
2515 default:
2516 break;
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002517 case ICmpInst::ICMP_SGT:
2518 case ICmpInst::ICMP_SGE:
Hal Finkel60db0582014-09-07 18:57:58 +00002519 ComputeSignBit(RHS, KnownNonNegative, KnownNegative, Q.DL,
2520 0, Q.AT, Q.CxtI, Q.DT);
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002521 if (!KnownNonNegative)
2522 break;
2523 // fall-through
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002524 case ICmpInst::ICMP_EQ:
2525 case ICmpInst::ICMP_UGT:
2526 case ICmpInst::ICMP_UGE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002527 return getFalse(ITy);
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002528 case ICmpInst::ICMP_SLT:
2529 case ICmpInst::ICMP_SLE:
Hal Finkel60db0582014-09-07 18:57:58 +00002530 ComputeSignBit(RHS, KnownNonNegative, KnownNegative, Q.DL,
2531 0, Q.AT, Q.CxtI, Q.DT);
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002532 if (!KnownNonNegative)
2533 break;
2534 // fall-through
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002535 case ICmpInst::ICMP_NE:
2536 case ICmpInst::ICMP_ULT:
2537 case ICmpInst::ICMP_ULE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002538 return getTrue(ITy);
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002539 }
2540 }
Nick Lewycky35aeea92013-07-12 23:42:57 +00002541
2542 // icmp pred X, (urem Y, X)
Nick Lewycky980104d2011-03-09 06:26:03 +00002543 if (RBO && match(RBO, m_URem(m_Value(), m_Specific(LHS)))) {
2544 bool KnownNonNegative, KnownNegative;
2545 switch (Pred) {
2546 default:
2547 break;
2548 case ICmpInst::ICMP_SGT:
2549 case ICmpInst::ICMP_SGE:
Hal Finkel60db0582014-09-07 18:57:58 +00002550 ComputeSignBit(LHS, KnownNonNegative, KnownNegative, Q.DL,
2551 0, Q.AT, Q.CxtI, Q.DT);
Nick Lewycky980104d2011-03-09 06:26:03 +00002552 if (!KnownNonNegative)
2553 break;
2554 // fall-through
Nick Lewycky774647d2011-03-09 08:20:06 +00002555 case ICmpInst::ICMP_NE:
Nick Lewycky980104d2011-03-09 06:26:03 +00002556 case ICmpInst::ICMP_UGT:
2557 case ICmpInst::ICMP_UGE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002558 return getTrue(ITy);
Nick Lewycky980104d2011-03-09 06:26:03 +00002559 case ICmpInst::ICMP_SLT:
2560 case ICmpInst::ICMP_SLE:
Hal Finkel60db0582014-09-07 18:57:58 +00002561 ComputeSignBit(LHS, KnownNonNegative, KnownNegative, Q.DL,
2562 0, Q.AT, Q.CxtI, Q.DT);
Nick Lewycky980104d2011-03-09 06:26:03 +00002563 if (!KnownNonNegative)
2564 break;
2565 // fall-through
Nick Lewycky774647d2011-03-09 08:20:06 +00002566 case ICmpInst::ICMP_EQ:
Nick Lewycky980104d2011-03-09 06:26:03 +00002567 case ICmpInst::ICMP_ULT:
2568 case ICmpInst::ICMP_ULE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002569 return getFalse(ITy);
Nick Lewycky980104d2011-03-09 06:26:03 +00002570 }
2571 }
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002572
Duncan Sands92af0a82011-10-28 18:17:44 +00002573 // x udiv y <=u x.
2574 if (LBO && match(LBO, m_UDiv(m_Specific(RHS), m_Value()))) {
2575 // icmp pred (X /u Y), X
2576 if (Pred == ICmpInst::ICMP_UGT)
2577 return getFalse(ITy);
2578 if (Pred == ICmpInst::ICMP_ULE)
2579 return getTrue(ITy);
2580 }
2581
David Majnemer76d06bc2014-08-28 03:34:28 +00002582 // handle:
2583 // CI2 << X == CI
2584 // CI2 << X != CI
2585 //
2586 // where CI2 is a power of 2 and CI isn't
2587 if (auto *CI = dyn_cast<ConstantInt>(RHS)) {
2588 const APInt *CI2Val, *CIVal = &CI->getValue();
2589 if (LBO && match(LBO, m_Shl(m_APInt(CI2Val), m_Value())) &&
2590 CI2Val->isPowerOf2()) {
2591 if (!CIVal->isPowerOf2()) {
2592 // CI2 << X can equal zero in some circumstances,
2593 // this simplification is unsafe if CI is zero.
2594 //
2595 // We know it is safe if:
2596 // - The shift is nsw, we can't shift out the one bit.
2597 // - The shift is nuw, we can't shift out the one bit.
2598 // - CI2 is one
2599 // - CI isn't zero
2600 if (LBO->hasNoSignedWrap() || LBO->hasNoUnsignedWrap() ||
2601 *CI2Val == 1 || !CI->isZero()) {
2602 if (Pred == ICmpInst::ICMP_EQ)
2603 return ConstantInt::getFalse(RHS->getContext());
2604 if (Pred == ICmpInst::ICMP_NE)
2605 return ConstantInt::getTrue(RHS->getContext());
2606 }
2607 }
2608 if (CIVal->isSignBit() && *CI2Val == 1) {
2609 if (Pred == ICmpInst::ICMP_UGT)
2610 return ConstantInt::getFalse(RHS->getContext());
2611 if (Pred == ICmpInst::ICMP_ULE)
2612 return ConstantInt::getTrue(RHS->getContext());
2613 }
2614 }
2615 }
2616
Nick Lewycky9719a712011-03-05 05:19:11 +00002617 if (MaxRecurse && LBO && RBO && LBO->getOpcode() == RBO->getOpcode() &&
2618 LBO->getOperand(1) == RBO->getOperand(1)) {
2619 switch (LBO->getOpcode()) {
2620 default: break;
2621 case Instruction::UDiv:
2622 case Instruction::LShr:
2623 if (ICmpInst::isSigned(Pred))
2624 break;
2625 // fall-through
2626 case Instruction::SDiv:
2627 case Instruction::AShr:
Eli Friedman8a20e662011-05-05 21:59:18 +00002628 if (!LBO->isExact() || !RBO->isExact())
Nick Lewycky9719a712011-03-05 05:19:11 +00002629 break;
2630 if (Value *V = SimplifyICmpInst(Pred, LBO->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002631 RBO->getOperand(0), Q, MaxRecurse-1))
Nick Lewycky9719a712011-03-05 05:19:11 +00002632 return V;
2633 break;
2634 case Instruction::Shl: {
Duncan Sands020c1942011-08-04 10:02:21 +00002635 bool NUW = LBO->hasNoUnsignedWrap() && RBO->hasNoUnsignedWrap();
Nick Lewycky9719a712011-03-05 05:19:11 +00002636 bool NSW = LBO->hasNoSignedWrap() && RBO->hasNoSignedWrap();
2637 if (!NUW && !NSW)
2638 break;
2639 if (!NSW && ICmpInst::isSigned(Pred))
2640 break;
2641 if (Value *V = SimplifyICmpInst(Pred, LBO->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002642 RBO->getOperand(0), Q, MaxRecurse-1))
Nick Lewycky9719a712011-03-05 05:19:11 +00002643 return V;
2644 break;
2645 }
2646 }
2647 }
2648
Duncan Sands0a9c1242011-05-03 19:53:10 +00002649 // Simplify comparisons involving max/min.
2650 Value *A, *B;
2651 CmpInst::Predicate P = CmpInst::BAD_ICMP_PREDICATE;
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002652 CmpInst::Predicate EqP; // Chosen so that "A == max/min(A,B)" iff "A EqP B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002653
Duncan Sandsa2287852011-05-04 16:05:05 +00002654 // Signed variants on "max(a,b)>=a -> true".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002655 if (match(LHS, m_SMax(m_Value(A), m_Value(B))) && (A == RHS || B == RHS)) {
2656 if (A != RHS) std::swap(A, B); // smax(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002657 EqP = CmpInst::ICMP_SGE; // "A == smax(A, B)" iff "A sge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002658 // We analyze this as smax(A, B) pred A.
2659 P = Pred;
2660 } else if (match(RHS, m_SMax(m_Value(A), m_Value(B))) &&
2661 (A == LHS || B == LHS)) {
2662 if (A != LHS) std::swap(A, B); // A pred smax(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002663 EqP = CmpInst::ICMP_SGE; // "A == smax(A, B)" iff "A sge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002664 // We analyze this as smax(A, B) swapped-pred A.
2665 P = CmpInst::getSwappedPredicate(Pred);
2666 } else if (match(LHS, m_SMin(m_Value(A), m_Value(B))) &&
2667 (A == RHS || B == RHS)) {
2668 if (A != RHS) std::swap(A, B); // smin(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002669 EqP = CmpInst::ICMP_SLE; // "A == smin(A, B)" iff "A sle B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002670 // We analyze this as smax(-A, -B) swapped-pred -A.
2671 // Note that we do not need to actually form -A or -B thanks to EqP.
2672 P = CmpInst::getSwappedPredicate(Pred);
2673 } else if (match(RHS, m_SMin(m_Value(A), m_Value(B))) &&
2674 (A == LHS || B == LHS)) {
2675 if (A != LHS) std::swap(A, B); // A pred smin(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002676 EqP = CmpInst::ICMP_SLE; // "A == smin(A, B)" iff "A sle B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002677 // We analyze this as smax(-A, -B) pred -A.
2678 // Note that we do not need to actually form -A or -B thanks to EqP.
2679 P = Pred;
2680 }
2681 if (P != CmpInst::BAD_ICMP_PREDICATE) {
2682 // Cases correspond to "max(A, B) p A".
2683 switch (P) {
2684 default:
2685 break;
2686 case CmpInst::ICMP_EQ:
2687 case CmpInst::ICMP_SLE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002688 // Equivalent to "A EqP B". This may be the same as the condition tested
2689 // in the max/min; if so, we can just return that.
2690 if (Value *V = ExtractEquivalentCondition(LHS, EqP, A, B))
2691 return V;
2692 if (Value *V = ExtractEquivalentCondition(RHS, EqP, A, B))
2693 return V;
2694 // Otherwise, see if "A EqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002695 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002696 if (Value *V = SimplifyICmpInst(EqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002697 return V;
2698 break;
2699 case CmpInst::ICMP_NE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002700 case CmpInst::ICMP_SGT: {
2701 CmpInst::Predicate InvEqP = CmpInst::getInversePredicate(EqP);
2702 // Equivalent to "A InvEqP B". This may be the same as the condition
2703 // tested in the max/min; if so, we can just return that.
2704 if (Value *V = ExtractEquivalentCondition(LHS, InvEqP, A, B))
2705 return V;
2706 if (Value *V = ExtractEquivalentCondition(RHS, InvEqP, A, B))
2707 return V;
2708 // Otherwise, see if "A InvEqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002709 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002710 if (Value *V = SimplifyICmpInst(InvEqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002711 return V;
2712 break;
Duncan Sandsaf327282011-05-07 16:56:49 +00002713 }
Duncan Sands0a9c1242011-05-03 19:53:10 +00002714 case CmpInst::ICMP_SGE:
2715 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002716 return getTrue(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002717 case CmpInst::ICMP_SLT:
2718 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002719 return getFalse(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002720 }
2721 }
2722
Duncan Sandsa2287852011-05-04 16:05:05 +00002723 // Unsigned variants on "max(a,b)>=a -> true".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002724 P = CmpInst::BAD_ICMP_PREDICATE;
2725 if (match(LHS, m_UMax(m_Value(A), m_Value(B))) && (A == RHS || B == RHS)) {
2726 if (A != RHS) std::swap(A, B); // umax(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002727 EqP = CmpInst::ICMP_UGE; // "A == umax(A, B)" iff "A uge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002728 // We analyze this as umax(A, B) pred A.
2729 P = Pred;
2730 } else if (match(RHS, m_UMax(m_Value(A), m_Value(B))) &&
2731 (A == LHS || B == LHS)) {
2732 if (A != LHS) std::swap(A, B); // A pred umax(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002733 EqP = CmpInst::ICMP_UGE; // "A == umax(A, B)" iff "A uge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002734 // We analyze this as umax(A, B) swapped-pred A.
2735 P = CmpInst::getSwappedPredicate(Pred);
2736 } else if (match(LHS, m_UMin(m_Value(A), m_Value(B))) &&
2737 (A == RHS || B == RHS)) {
2738 if (A != RHS) std::swap(A, B); // umin(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002739 EqP = CmpInst::ICMP_ULE; // "A == umin(A, B)" iff "A ule B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002740 // We analyze this as umax(-A, -B) swapped-pred -A.
2741 // Note that we do not need to actually form -A or -B thanks to EqP.
2742 P = CmpInst::getSwappedPredicate(Pred);
2743 } else if (match(RHS, m_UMin(m_Value(A), m_Value(B))) &&
2744 (A == LHS || B == LHS)) {
2745 if (A != LHS) std::swap(A, B); // A pred umin(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002746 EqP = CmpInst::ICMP_ULE; // "A == umin(A, B)" iff "A ule B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002747 // We analyze this as umax(-A, -B) pred -A.
2748 // Note that we do not need to actually form -A or -B thanks to EqP.
2749 P = Pred;
2750 }
2751 if (P != CmpInst::BAD_ICMP_PREDICATE) {
2752 // Cases correspond to "max(A, B) p A".
2753 switch (P) {
2754 default:
2755 break;
2756 case CmpInst::ICMP_EQ:
2757 case CmpInst::ICMP_ULE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002758 // Equivalent to "A EqP B". This may be the same as the condition tested
2759 // in the max/min; if so, we can just return that.
2760 if (Value *V = ExtractEquivalentCondition(LHS, EqP, A, B))
2761 return V;
2762 if (Value *V = ExtractEquivalentCondition(RHS, EqP, A, B))
2763 return V;
2764 // Otherwise, see if "A EqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002765 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002766 if (Value *V = SimplifyICmpInst(EqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002767 return V;
2768 break;
2769 case CmpInst::ICMP_NE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002770 case CmpInst::ICMP_UGT: {
2771 CmpInst::Predicate InvEqP = CmpInst::getInversePredicate(EqP);
2772 // Equivalent to "A InvEqP B". This may be the same as the condition
2773 // tested in the max/min; if so, we can just return that.
2774 if (Value *V = ExtractEquivalentCondition(LHS, InvEqP, A, B))
2775 return V;
2776 if (Value *V = ExtractEquivalentCondition(RHS, InvEqP, A, B))
2777 return V;
2778 // Otherwise, see if "A InvEqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002779 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002780 if (Value *V = SimplifyICmpInst(InvEqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002781 return V;
2782 break;
Duncan Sandsaf327282011-05-07 16:56:49 +00002783 }
Duncan Sands0a9c1242011-05-03 19:53:10 +00002784 case CmpInst::ICMP_UGE:
2785 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002786 return getTrue(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002787 case CmpInst::ICMP_ULT:
2788 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002789 return getFalse(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002790 }
2791 }
2792
Duncan Sandsa2287852011-05-04 16:05:05 +00002793 // Variants on "max(x,y) >= min(x,z)".
2794 Value *C, *D;
2795 if (match(LHS, m_SMax(m_Value(A), m_Value(B))) &&
2796 match(RHS, m_SMin(m_Value(C), m_Value(D))) &&
2797 (A == C || A == D || B == C || B == D)) {
2798 // max(x, ?) pred min(x, ?).
2799 if (Pred == CmpInst::ICMP_SGE)
2800 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002801 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002802 if (Pred == CmpInst::ICMP_SLT)
2803 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002804 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002805 } else if (match(LHS, m_SMin(m_Value(A), m_Value(B))) &&
2806 match(RHS, m_SMax(m_Value(C), m_Value(D))) &&
2807 (A == C || A == D || B == C || B == D)) {
2808 // min(x, ?) pred max(x, ?).
2809 if (Pred == CmpInst::ICMP_SLE)
2810 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002811 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002812 if (Pred == CmpInst::ICMP_SGT)
2813 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002814 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002815 } else if (match(LHS, m_UMax(m_Value(A), m_Value(B))) &&
2816 match(RHS, m_UMin(m_Value(C), m_Value(D))) &&
2817 (A == C || A == D || B == C || B == D)) {
2818 // max(x, ?) pred min(x, ?).
2819 if (Pred == CmpInst::ICMP_UGE)
2820 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002821 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002822 if (Pred == CmpInst::ICMP_ULT)
2823 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002824 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002825 } else if (match(LHS, m_UMin(m_Value(A), m_Value(B))) &&
2826 match(RHS, m_UMax(m_Value(C), m_Value(D))) &&
2827 (A == C || A == D || B == C || B == D)) {
2828 // min(x, ?) pred max(x, ?).
2829 if (Pred == CmpInst::ICMP_ULE)
2830 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002831 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002832 if (Pred == CmpInst::ICMP_UGT)
2833 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002834 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002835 }
2836
Chandler Carruth8059c842012-03-25 21:28:14 +00002837 // Simplify comparisons of related pointers using a powerful, recursive
2838 // GEP-walk when we have target data available..
Dan Gohman18c77a12013-01-31 02:50:36 +00002839 if (LHS->getType()->isPointerTy())
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002840 if (Constant *C = computePointerICmp(Q.DL, Q.TLI, Pred, LHS, RHS))
Chandler Carruth8059c842012-03-25 21:28:14 +00002841 return C;
2842
Nick Lewycky3db143e2012-02-26 02:09:49 +00002843 if (GetElementPtrInst *GLHS = dyn_cast<GetElementPtrInst>(LHS)) {
2844 if (GEPOperator *GRHS = dyn_cast<GEPOperator>(RHS)) {
2845 if (GLHS->getPointerOperand() == GRHS->getPointerOperand() &&
2846 GLHS->hasAllConstantIndices() && GRHS->hasAllConstantIndices() &&
2847 (ICmpInst::isEquality(Pred) ||
2848 (GLHS->isInBounds() && GRHS->isInBounds() &&
2849 Pred == ICmpInst::getSignedPredicate(Pred)))) {
2850 // The bases are equal and the indices are constant. Build a constant
2851 // expression GEP with the same indices and a null base pointer to see
2852 // what constant folding can make out of it.
2853 Constant *Null = Constant::getNullValue(GLHS->getPointerOperandType());
2854 SmallVector<Value *, 4> IndicesLHS(GLHS->idx_begin(), GLHS->idx_end());
2855 Constant *NewLHS = ConstantExpr::getGetElementPtr(Null, IndicesLHS);
2856
2857 SmallVector<Value *, 4> IndicesRHS(GRHS->idx_begin(), GRHS->idx_end());
2858 Constant *NewRHS = ConstantExpr::getGetElementPtr(Null, IndicesRHS);
2859 return ConstantExpr::getICmp(Pred, NewLHS, NewRHS);
2860 }
2861 }
2862 }
2863
Duncan Sandsf532d312010-11-07 16:12:23 +00002864 // If the comparison is with the result of a select instruction, check whether
2865 // comparing with either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00002866 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00002867 if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00002868 return V;
2869
2870 // If the comparison is with the result of a phi instruction, check whether
2871 // doing the compare with each incoming phi value yields a common result.
Duncan Sandsf64e6902010-12-21 09:09:15 +00002872 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00002873 if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsfc5ad3f02010-11-09 17:25:51 +00002874 return V;
Duncan Sandsf532d312010-11-07 16:12:23 +00002875
Craig Topper9f008862014-04-15 04:59:12 +00002876 return nullptr;
Chris Lattner084a1b52009-11-09 22:57:59 +00002877}
2878
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00002879Value *llvm::SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002880 const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00002881 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00002882 const DominatorTree *DT,
2883 AssumptionTracker *AT,
2884 Instruction *CxtI) {
2885 return ::SimplifyICmpInst(Predicate, LHS, RHS, Query (DL, TLI, DT, AT, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002886 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00002887}
2888
Chris Lattnerc1f19072009-11-09 23:28:39 +00002889/// SimplifyFCmpInst - Given operands for an FCmpInst, see if we can
2890/// fold the result. If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00002891static Value *SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00002892 const Query &Q, unsigned MaxRecurse) {
Chris Lattnerc1f19072009-11-09 23:28:39 +00002893 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate;
2894 assert(CmpInst::isFPPredicate(Pred) && "Not an FP compare!");
2895
Chris Lattnera71e9d62009-11-10 00:55:12 +00002896 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
Chris Lattnerc1f19072009-11-09 23:28:39 +00002897 if (Constant *CRHS = dyn_cast<Constant>(RHS))
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002898 return ConstantFoldCompareInstOperands(Pred, CLHS, CRHS, Q.DL, Q.TLI);
Duncan Sands7e800d62010-11-14 11:23:23 +00002899
Chris Lattnera71e9d62009-11-10 00:55:12 +00002900 // If we have a constant, make sure it is on the RHS.
2901 std::swap(LHS, RHS);
2902 Pred = CmpInst::getSwappedPredicate(Pred);
2903 }
Duncan Sands7e800d62010-11-14 11:23:23 +00002904
Chris Lattnerccfdceb2009-11-09 23:55:12 +00002905 // Fold trivial predicates.
2906 if (Pred == FCmpInst::FCMP_FALSE)
2907 return ConstantInt::get(GetCompareTy(LHS), 0);
2908 if (Pred == FCmpInst::FCMP_TRUE)
2909 return ConstantInt::get(GetCompareTy(LHS), 1);
2910
Chris Lattnerccfdceb2009-11-09 23:55:12 +00002911 if (isa<UndefValue>(RHS)) // fcmp pred X, undef -> undef
2912 return UndefValue::get(GetCompareTy(LHS));
2913
2914 // fcmp x,x -> true/false. Not all compares are foldable.
Duncan Sands772749a2011-01-01 20:08:02 +00002915 if (LHS == RHS) {
Chris Lattnerccfdceb2009-11-09 23:55:12 +00002916 if (CmpInst::isTrueWhenEqual(Pred))
2917 return ConstantInt::get(GetCompareTy(LHS), 1);
2918 if (CmpInst::isFalseWhenEqual(Pred))
2919 return ConstantInt::get(GetCompareTy(LHS), 0);
2920 }
Duncan Sands7e800d62010-11-14 11:23:23 +00002921
Chris Lattnerccfdceb2009-11-09 23:55:12 +00002922 // Handle fcmp with constant RHS
2923 if (Constant *RHSC = dyn_cast<Constant>(RHS)) {
2924 // If the constant is a nan, see if we can fold the comparison based on it.
2925 if (ConstantFP *CFP = dyn_cast<ConstantFP>(RHSC)) {
2926 if (CFP->getValueAPF().isNaN()) {
2927 if (FCmpInst::isOrdered(Pred)) // True "if ordered and foo"
2928 return ConstantInt::getFalse(CFP->getContext());
2929 assert(FCmpInst::isUnordered(Pred) &&
2930 "Comparison must be either ordered or unordered!");
2931 // True if unordered.
2932 return ConstantInt::getTrue(CFP->getContext());
2933 }
Dan Gohman754e4a92010-02-22 04:06:03 +00002934 // Check whether the constant is an infinity.
2935 if (CFP->getValueAPF().isInfinity()) {
2936 if (CFP->getValueAPF().isNegative()) {
2937 switch (Pred) {
2938 case FCmpInst::FCMP_OLT:
2939 // No value is ordered and less than negative infinity.
2940 return ConstantInt::getFalse(CFP->getContext());
2941 case FCmpInst::FCMP_UGE:
2942 // All values are unordered with or at least negative infinity.
2943 return ConstantInt::getTrue(CFP->getContext());
2944 default:
2945 break;
2946 }
2947 } else {
2948 switch (Pred) {
2949 case FCmpInst::FCMP_OGT:
2950 // No value is ordered and greater than infinity.
2951 return ConstantInt::getFalse(CFP->getContext());
2952 case FCmpInst::FCMP_ULE:
2953 // All values are unordered with and at most infinity.
2954 return ConstantInt::getTrue(CFP->getContext());
2955 default:
2956 break;
2957 }
2958 }
2959 }
Chris Lattnerccfdceb2009-11-09 23:55:12 +00002960 }
2961 }
Duncan Sands7e800d62010-11-14 11:23:23 +00002962
Duncan Sandsa620bd12010-11-07 16:46:25 +00002963 // If the comparison is with the result of a select instruction, check whether
2964 // comparing with either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00002965 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00002966 if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00002967 return V;
2968
2969 // If the comparison is with the result of a phi instruction, check whether
2970 // doing the compare with each incoming phi value yields a common result.
Duncan Sandsf64e6902010-12-21 09:09:15 +00002971 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00002972 if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsfc5ad3f02010-11-09 17:25:51 +00002973 return V;
Duncan Sandsa620bd12010-11-07 16:46:25 +00002974
Craig Topper9f008862014-04-15 04:59:12 +00002975 return nullptr;
Chris Lattnerc1f19072009-11-09 23:28:39 +00002976}
2977
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00002978Value *llvm::SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002979 const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00002980 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00002981 const DominatorTree *DT,
2982 AssumptionTracker *AT,
2983 const Instruction *CxtI) {
2984 return ::SimplifyFCmpInst(Predicate, LHS, RHS, Query (DL, TLI, DT, AT, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002985 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00002986}
2987
Chris Lattnerc707fa92010-04-20 05:32:14 +00002988/// SimplifySelectInst - Given operands for a SelectInst, see if we can fold
2989/// the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00002990static Value *SimplifySelectInst(Value *CondVal, Value *TrueVal,
2991 Value *FalseVal, const Query &Q,
2992 unsigned MaxRecurse) {
Chris Lattnerc707fa92010-04-20 05:32:14 +00002993 // select true, X, Y -> X
2994 // select false, X, Y -> Y
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00002995 if (Constant *CB = dyn_cast<Constant>(CondVal)) {
2996 if (CB->isAllOnesValue())
2997 return TrueVal;
2998 if (CB->isNullValue())
2999 return FalseVal;
3000 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003001
Chris Lattnerc707fa92010-04-20 05:32:14 +00003002 // select C, X, X -> X
Duncan Sands772749a2011-01-01 20:08:02 +00003003 if (TrueVal == FalseVal)
Chris Lattnerc707fa92010-04-20 05:32:14 +00003004 return TrueVal;
Duncan Sands7e800d62010-11-14 11:23:23 +00003005
Chris Lattnerc707fa92010-04-20 05:32:14 +00003006 if (isa<UndefValue>(CondVal)) { // select undef, X, Y -> X or Y
3007 if (isa<Constant>(TrueVal))
3008 return TrueVal;
3009 return FalseVal;
3010 }
Dan Gohman54664ed2011-07-01 01:03:43 +00003011 if (isa<UndefValue>(TrueVal)) // select C, undef, X -> X
3012 return FalseVal;
3013 if (isa<UndefValue>(FalseVal)) // select C, X, undef -> X
3014 return TrueVal;
Duncan Sands7e800d62010-11-14 11:23:23 +00003015
Craig Topper9f008862014-04-15 04:59:12 +00003016 return nullptr;
Chris Lattnerc707fa92010-04-20 05:32:14 +00003017}
3018
Duncan Sandsb8cee002012-03-13 11:42:19 +00003019Value *llvm::SimplifySelectInst(Value *Cond, Value *TrueVal, Value *FalseVal,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003020 const DataLayout *DL,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003021 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00003022 const DominatorTree *DT,
3023 AssumptionTracker *AT,
3024 const Instruction *CxtI) {
3025 return ::SimplifySelectInst(Cond, TrueVal, FalseVal,
3026 Query (DL, TLI, DT, AT, CxtI), RecursionLimit);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003027}
3028
Chris Lattner8574aba2009-11-27 00:29:05 +00003029/// SimplifyGEPInst - Given operands for an GetElementPtrInst, see if we can
3030/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00003031static Value *SimplifyGEPInst(ArrayRef<Value *> Ops, const Query &Q, unsigned) {
Duncan Sands8a0f4862010-11-22 13:42:49 +00003032 // The type of the GEP pointer operand.
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00003033 PointerType *PtrTy = cast<PointerType>(Ops[0]->getType()->getScalarType());
Nico Weber48c82402014-08-27 20:06:19 +00003034 unsigned AS = PtrTy->getAddressSpace();
Duncan Sands8a0f4862010-11-22 13:42:49 +00003035
Chris Lattner8574aba2009-11-27 00:29:05 +00003036 // getelementptr P -> P.
Jay Foadb992a632011-07-19 15:07:52 +00003037 if (Ops.size() == 1)
Chris Lattner8574aba2009-11-27 00:29:05 +00003038 return Ops[0];
3039
Nico Weber48c82402014-08-27 20:06:19 +00003040 // Compute the (pointer) type returned by the GEP instruction.
3041 Type *LastType = GetElementPtrInst::getIndexedType(PtrTy, Ops.slice(1));
3042 Type *GEPTy = PointerType::get(LastType, AS);
3043 if (VectorType *VT = dyn_cast<VectorType>(Ops[0]->getType()))
3044 GEPTy = VectorType::get(GEPTy, VT->getNumElements());
3045
3046 if (isa<UndefValue>(Ops[0]))
Duncan Sands8a0f4862010-11-22 13:42:49 +00003047 return UndefValue::get(GEPTy);
Chris Lattner8574aba2009-11-27 00:29:05 +00003048
Jay Foadb992a632011-07-19 15:07:52 +00003049 if (Ops.size() == 2) {
Duncan Sandscf4bceb2010-11-21 13:53:09 +00003050 // getelementptr P, 0 -> P.
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00003051 if (match(Ops[1], m_Zero()))
3052 return Ops[0];
Nico Weber48c82402014-08-27 20:06:19 +00003053
3054 Type *Ty = PtrTy->getElementType();
3055 if (Q.DL && Ty->isSized()) {
3056 Value *P;
3057 uint64_t C;
3058 uint64_t TyAllocSize = Q.DL->getTypeAllocSize(Ty);
3059 // getelementptr P, N -> P if P points to a type of zero size.
3060 if (TyAllocSize == 0)
Duncan Sandscf4bceb2010-11-21 13:53:09 +00003061 return Ops[0];
Nico Weber48c82402014-08-27 20:06:19 +00003062
3063 // The following transforms are only safe if the ptrtoint cast
3064 // doesn't truncate the pointers.
3065 if (Ops[1]->getType()->getScalarSizeInBits() ==
3066 Q.DL->getPointerSizeInBits(AS)) {
3067 auto PtrToIntOrZero = [GEPTy](Value *P) -> Value * {
3068 if (match(P, m_Zero()))
3069 return Constant::getNullValue(GEPTy);
3070 Value *Temp;
3071 if (match(P, m_PtrToInt(m_Value(Temp))))
David Majnemer11ca2972014-08-27 20:08:34 +00003072 if (Temp->getType() == GEPTy)
3073 return Temp;
Nico Weber48c82402014-08-27 20:06:19 +00003074 return nullptr;
3075 };
3076
3077 // getelementptr V, (sub P, V) -> P if P points to a type of size 1.
3078 if (TyAllocSize == 1 &&
3079 match(Ops[1], m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0])))))
3080 if (Value *R = PtrToIntOrZero(P))
3081 return R;
3082
3083 // getelementptr V, (ashr (sub P, V), C) -> Q
3084 // if P points to a type of size 1 << C.
3085 if (match(Ops[1],
3086 m_AShr(m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0]))),
3087 m_ConstantInt(C))) &&
3088 TyAllocSize == 1ULL << C)
3089 if (Value *R = PtrToIntOrZero(P))
3090 return R;
3091
3092 // getelementptr V, (sdiv (sub P, V), C) -> Q
3093 // if P points to a type of size C.
3094 if (match(Ops[1],
3095 m_SDiv(m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0]))),
3096 m_SpecificInt(TyAllocSize))))
3097 if (Value *R = PtrToIntOrZero(P))
3098 return R;
3099 }
Duncan Sandscf4bceb2010-11-21 13:53:09 +00003100 }
3101 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003102
Chris Lattner8574aba2009-11-27 00:29:05 +00003103 // Check to see if this is constant foldable.
Jay Foadb992a632011-07-19 15:07:52 +00003104 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
Chris Lattner8574aba2009-11-27 00:29:05 +00003105 if (!isa<Constant>(Ops[i]))
Craig Topper9f008862014-04-15 04:59:12 +00003106 return nullptr;
Duncan Sands7e800d62010-11-14 11:23:23 +00003107
Jay Foaded8db7d2011-07-21 14:31:17 +00003108 return ConstantExpr::getGetElementPtr(cast<Constant>(Ops[0]), Ops.slice(1));
Chris Lattner8574aba2009-11-27 00:29:05 +00003109}
3110
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003111Value *llvm::SimplifyGEPInst(ArrayRef<Value *> Ops, const DataLayout *DL,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003112 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00003113 const DominatorTree *DT, AssumptionTracker *AT,
3114 const Instruction *CxtI) {
3115 return ::SimplifyGEPInst(Ops, Query (DL, TLI, DT, AT, CxtI), RecursionLimit);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003116}
3117
Duncan Sandsfd26a952011-09-05 06:52:48 +00003118/// SimplifyInsertValueInst - Given operands for an InsertValueInst, see if we
3119/// can fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00003120static Value *SimplifyInsertValueInst(Value *Agg, Value *Val,
3121 ArrayRef<unsigned> Idxs, const Query &Q,
3122 unsigned) {
Duncan Sandsfd26a952011-09-05 06:52:48 +00003123 if (Constant *CAgg = dyn_cast<Constant>(Agg))
3124 if (Constant *CVal = dyn_cast<Constant>(Val))
3125 return ConstantFoldInsertValueInstruction(CAgg, CVal, Idxs);
3126
3127 // insertvalue x, undef, n -> x
3128 if (match(Val, m_Undef()))
3129 return Agg;
3130
3131 // insertvalue x, (extractvalue y, n), n
3132 if (ExtractValueInst *EV = dyn_cast<ExtractValueInst>(Val))
Benjamin Kramer4b79c212011-09-05 18:16:19 +00003133 if (EV->getAggregateOperand()->getType() == Agg->getType() &&
3134 EV->getIndices() == Idxs) {
Duncan Sandsfd26a952011-09-05 06:52:48 +00003135 // insertvalue undef, (extractvalue y, n), n -> y
3136 if (match(Agg, m_Undef()))
3137 return EV->getAggregateOperand();
3138
3139 // insertvalue y, (extractvalue y, n), n -> y
3140 if (Agg == EV->getAggregateOperand())
3141 return Agg;
3142 }
3143
Craig Topper9f008862014-04-15 04:59:12 +00003144 return nullptr;
Duncan Sandsfd26a952011-09-05 06:52:48 +00003145}
3146
Duncan Sandsb8cee002012-03-13 11:42:19 +00003147Value *llvm::SimplifyInsertValueInst(Value *Agg, Value *Val,
3148 ArrayRef<unsigned> Idxs,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003149 const DataLayout *DL,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003150 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00003151 const DominatorTree *DT,
3152 AssumptionTracker *AT,
3153 const Instruction *CxtI) {
3154 return ::SimplifyInsertValueInst(Agg, Val, Idxs,
3155 Query (DL, TLI, DT, AT, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003156 RecursionLimit);
3157}
3158
Duncan Sands7412f6e2010-11-17 04:30:22 +00003159/// SimplifyPHINode - See if we can fold the given phi. If not, returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00003160static Value *SimplifyPHINode(PHINode *PN, const Query &Q) {
Duncan Sands7412f6e2010-11-17 04:30:22 +00003161 // If all of the PHI's incoming values are the same then replace the PHI node
3162 // with the common value.
Craig Topper9f008862014-04-15 04:59:12 +00003163 Value *CommonValue = nullptr;
Duncan Sands7412f6e2010-11-17 04:30:22 +00003164 bool HasUndefInput = false;
3165 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
3166 Value *Incoming = PN->getIncomingValue(i);
3167 // If the incoming value is the phi node itself, it can safely be skipped.
3168 if (Incoming == PN) continue;
3169 if (isa<UndefValue>(Incoming)) {
3170 // Remember that we saw an undef value, but otherwise ignore them.
3171 HasUndefInput = true;
3172 continue;
3173 }
3174 if (CommonValue && Incoming != CommonValue)
Craig Topper9f008862014-04-15 04:59:12 +00003175 return nullptr; // Not the same, bail out.
Duncan Sands7412f6e2010-11-17 04:30:22 +00003176 CommonValue = Incoming;
3177 }
3178
3179 // If CommonValue is null then all of the incoming values were either undef or
3180 // equal to the phi node itself.
3181 if (!CommonValue)
3182 return UndefValue::get(PN->getType());
3183
3184 // If we have a PHI node like phi(X, undef, X), where X is defined by some
3185 // instruction, we cannot return X as the result of the PHI node unless it
3186 // dominates the PHI block.
3187 if (HasUndefInput)
Craig Topper9f008862014-04-15 04:59:12 +00003188 return ValueDominatesPHI(CommonValue, PN, Q.DT) ? CommonValue : nullptr;
Duncan Sands7412f6e2010-11-17 04:30:22 +00003189
3190 return CommonValue;
3191}
3192
Duncan Sands395ac42d2012-03-13 14:07:05 +00003193static Value *SimplifyTruncInst(Value *Op, Type *Ty, const Query &Q, unsigned) {
3194 if (Constant *C = dyn_cast<Constant>(Op))
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003195 return ConstantFoldInstOperands(Instruction::Trunc, Ty, C, Q.DL, Q.TLI);
Duncan Sands395ac42d2012-03-13 14:07:05 +00003196
Craig Topper9f008862014-04-15 04:59:12 +00003197 return nullptr;
Duncan Sands395ac42d2012-03-13 14:07:05 +00003198}
3199
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003200Value *llvm::SimplifyTruncInst(Value *Op, Type *Ty, const DataLayout *DL,
Duncan Sands395ac42d2012-03-13 14:07:05 +00003201 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00003202 const DominatorTree *DT,
3203 AssumptionTracker *AT,
3204 const Instruction *CxtI) {
3205 return ::SimplifyTruncInst(Op, Ty, Query (DL, TLI, DT, AT, CxtI),
3206 RecursionLimit);
Duncan Sands395ac42d2012-03-13 14:07:05 +00003207}
3208
Chris Lattnera71e9d62009-11-10 00:55:12 +00003209//=== Helper functions for higher up the class hierarchy.
Chris Lattnerc1f19072009-11-09 23:28:39 +00003210
Chris Lattnera71e9d62009-11-10 00:55:12 +00003211/// SimplifyBinOp - Given operands for a BinaryOperator, see if we can
3212/// fold the result. If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003213static Value *SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003214 const Query &Q, unsigned MaxRecurse) {
Chris Lattnera71e9d62009-11-10 00:55:12 +00003215 switch (Opcode) {
Chris Lattner9e4aa022011-02-09 17:15:04 +00003216 case Instruction::Add:
Duncan Sands8b4e2832011-02-09 17:45:03 +00003217 return SimplifyAddInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003218 Q, MaxRecurse);
Michael Ilsemand2b05e52012-12-12 00:29:16 +00003219 case Instruction::FAdd:
3220 return SimplifyFAddInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
3221
Chris Lattner9e4aa022011-02-09 17:15:04 +00003222 case Instruction::Sub:
Duncan Sands8b4e2832011-02-09 17:45:03 +00003223 return SimplifySubInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003224 Q, MaxRecurse);
Michael Ilsemand2b05e52012-12-12 00:29:16 +00003225 case Instruction::FSub:
3226 return SimplifyFSubInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
3227
Duncan Sandsb8cee002012-03-13 11:42:19 +00003228 case Instruction::Mul: return SimplifyMulInst (LHS, RHS, Q, MaxRecurse);
Michael Ilsemand2b05e52012-12-12 00:29:16 +00003229 case Instruction::FMul:
3230 return SimplifyFMulInst (LHS, RHS, FastMathFlags(), Q, MaxRecurse);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003231 case Instruction::SDiv: return SimplifySDivInst(LHS, RHS, Q, MaxRecurse);
3232 case Instruction::UDiv: return SimplifyUDivInst(LHS, RHS, Q, MaxRecurse);
3233 case Instruction::FDiv: return SimplifyFDivInst(LHS, RHS, Q, MaxRecurse);
3234 case Instruction::SRem: return SimplifySRemInst(LHS, RHS, Q, MaxRecurse);
3235 case Instruction::URem: return SimplifyURemInst(LHS, RHS, Q, MaxRecurse);
3236 case Instruction::FRem: return SimplifyFRemInst(LHS, RHS, Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00003237 case Instruction::Shl:
Duncan Sands8b4e2832011-02-09 17:45:03 +00003238 return SimplifyShlInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003239 Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00003240 case Instruction::LShr:
Duncan Sandsb8cee002012-03-13 11:42:19 +00003241 return SimplifyLShrInst(LHS, RHS, /*isExact*/false, Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00003242 case Instruction::AShr:
Duncan Sandsb8cee002012-03-13 11:42:19 +00003243 return SimplifyAShrInst(LHS, RHS, /*isExact*/false, Q, MaxRecurse);
3244 case Instruction::And: return SimplifyAndInst(LHS, RHS, Q, MaxRecurse);
3245 case Instruction::Or: return SimplifyOrInst (LHS, RHS, Q, MaxRecurse);
3246 case Instruction::Xor: return SimplifyXorInst(LHS, RHS, Q, MaxRecurse);
Chris Lattnera71e9d62009-11-10 00:55:12 +00003247 default:
3248 if (Constant *CLHS = dyn_cast<Constant>(LHS))
3249 if (Constant *CRHS = dyn_cast<Constant>(RHS)) {
3250 Constant *COps[] = {CLHS, CRHS};
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003251 return ConstantFoldInstOperands(Opcode, LHS->getType(), COps, Q.DL,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003252 Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00003253 }
Duncan Sandsb0579e92010-11-10 13:00:08 +00003254
Duncan Sands6c7a52c2010-12-21 08:49:00 +00003255 // If the operation is associative, try some generic simplifications.
3256 if (Instruction::isAssociative(Opcode))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003257 if (Value *V = SimplifyAssociativeBinOp(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00003258 return V;
3259
Duncan Sandsb8cee002012-03-13 11:42:19 +00003260 // If the operation is with the result of a select instruction check whether
Duncan Sandsb0579e92010-11-10 13:00:08 +00003261 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003262 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003263 if (Value *V = ThreadBinOpOverSelect(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003264 return V;
3265
3266 // If the operation is with the result of a phi instruction, check whether
3267 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003268 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003269 if (Value *V = ThreadBinOpOverPHI(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00003270 return V;
3271
Craig Topper9f008862014-04-15 04:59:12 +00003272 return nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00003273 }
3274}
Chris Lattnerc1f19072009-11-09 23:28:39 +00003275
Duncan Sands7e800d62010-11-14 11:23:23 +00003276Value *llvm::SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003277 const DataLayout *DL, const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00003278 const DominatorTree *DT, AssumptionTracker *AT,
3279 const Instruction *CxtI) {
3280 return ::SimplifyBinOp(Opcode, LHS, RHS, Query (DL, TLI, DT, AT, CxtI),
3281 RecursionLimit);
Chris Lattnerc1f19072009-11-09 23:28:39 +00003282}
3283
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003284/// SimplifyCmpInst - Given operands for a CmpInst, see if we can
3285/// fold the result.
3286static Value *SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003287 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003288 if (CmpInst::isIntPredicate((CmpInst::Predicate)Predicate))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003289 return SimplifyICmpInst(Predicate, LHS, RHS, Q, MaxRecurse);
3290 return SimplifyFCmpInst(Predicate, LHS, RHS, Q, MaxRecurse);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003291}
3292
3293Value *llvm::SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003294 const DataLayout *DL, const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00003295 const DominatorTree *DT, AssumptionTracker *AT,
3296 const Instruction *CxtI) {
3297 return ::SimplifyCmpInst(Predicate, LHS, RHS, Query (DL, TLI, DT, AT, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003298 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003299}
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003300
Michael Ilseman54857292013-02-07 19:26:05 +00003301static bool IsIdempotent(Intrinsic::ID ID) {
3302 switch (ID) {
3303 default: return false;
3304
3305 // Unary idempotent: f(f(x)) = f(x)
3306 case Intrinsic::fabs:
3307 case Intrinsic::floor:
3308 case Intrinsic::ceil:
3309 case Intrinsic::trunc:
3310 case Intrinsic::rint:
3311 case Intrinsic::nearbyint:
Hal Finkel171817e2013-08-07 22:49:12 +00003312 case Intrinsic::round:
Michael Ilseman54857292013-02-07 19:26:05 +00003313 return true;
3314 }
3315}
3316
3317template <typename IterTy>
3318static Value *SimplifyIntrinsic(Intrinsic::ID IID, IterTy ArgBegin, IterTy ArgEnd,
3319 const Query &Q, unsigned MaxRecurse) {
3320 // Perform idempotent optimizations
3321 if (!IsIdempotent(IID))
Craig Topper9f008862014-04-15 04:59:12 +00003322 return nullptr;
Michael Ilseman54857292013-02-07 19:26:05 +00003323
3324 // Unary Ops
3325 if (std::distance(ArgBegin, ArgEnd) == 1)
3326 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(*ArgBegin))
3327 if (II->getIntrinsicID() == IID)
3328 return II;
3329
Craig Topper9f008862014-04-15 04:59:12 +00003330 return nullptr;
Michael Ilseman54857292013-02-07 19:26:05 +00003331}
3332
Chandler Carruth9dc35582012-12-28 11:30:55 +00003333template <typename IterTy>
Chandler Carruthf6182152012-12-28 14:23:29 +00003334static Value *SimplifyCall(Value *V, IterTy ArgBegin, IterTy ArgEnd,
Chandler Carruth9dc35582012-12-28 11:30:55 +00003335 const Query &Q, unsigned MaxRecurse) {
Chandler Carruthf6182152012-12-28 14:23:29 +00003336 Type *Ty = V->getType();
Chandler Carruth9dc35582012-12-28 11:30:55 +00003337 if (PointerType *PTy = dyn_cast<PointerType>(Ty))
3338 Ty = PTy->getElementType();
3339 FunctionType *FTy = cast<FunctionType>(Ty);
3340
Dan Gohman85977e62011-11-04 18:32:42 +00003341 // call undef -> undef
Chandler Carruthf6182152012-12-28 14:23:29 +00003342 if (isa<UndefValue>(V))
Chandler Carruth9dc35582012-12-28 11:30:55 +00003343 return UndefValue::get(FTy->getReturnType());
Dan Gohman85977e62011-11-04 18:32:42 +00003344
Chandler Carruthf6182152012-12-28 14:23:29 +00003345 Function *F = dyn_cast<Function>(V);
3346 if (!F)
Craig Topper9f008862014-04-15 04:59:12 +00003347 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00003348
Michael Ilseman54857292013-02-07 19:26:05 +00003349 if (unsigned IID = F->getIntrinsicID())
3350 if (Value *Ret =
3351 SimplifyIntrinsic((Intrinsic::ID) IID, ArgBegin, ArgEnd, Q, MaxRecurse))
3352 return Ret;
3353
Chandler Carruthf6182152012-12-28 14:23:29 +00003354 if (!canConstantFoldCallTo(F))
Craig Topper9f008862014-04-15 04:59:12 +00003355 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00003356
3357 SmallVector<Constant *, 4> ConstantArgs;
3358 ConstantArgs.reserve(ArgEnd - ArgBegin);
3359 for (IterTy I = ArgBegin, E = ArgEnd; I != E; ++I) {
3360 Constant *C = dyn_cast<Constant>(*I);
3361 if (!C)
Craig Topper9f008862014-04-15 04:59:12 +00003362 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00003363 ConstantArgs.push_back(C);
3364 }
3365
3366 return ConstantFoldCall(F, ConstantArgs, Q.TLI);
Dan Gohman85977e62011-11-04 18:32:42 +00003367}
3368
Chandler Carruthf6182152012-12-28 14:23:29 +00003369Value *llvm::SimplifyCall(Value *V, User::op_iterator ArgBegin,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003370 User::op_iterator ArgEnd, const DataLayout *DL,
Chandler Carruth9dc35582012-12-28 11:30:55 +00003371 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00003372 const DominatorTree *DT, AssumptionTracker *AT,
3373 const Instruction *CxtI) {
3374 return ::SimplifyCall(V, ArgBegin, ArgEnd, Query(DL, TLI, DT, AT, CxtI),
Chandler Carruth9dc35582012-12-28 11:30:55 +00003375 RecursionLimit);
3376}
3377
Chandler Carruthf6182152012-12-28 14:23:29 +00003378Value *llvm::SimplifyCall(Value *V, ArrayRef<Value *> Args,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003379 const DataLayout *DL, const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00003380 const DominatorTree *DT, AssumptionTracker *AT,
3381 const Instruction *CxtI) {
3382 return ::SimplifyCall(V, Args.begin(), Args.end(),
3383 Query(DL, TLI, DT, AT, CxtI), RecursionLimit);
Chandler Carruth9dc35582012-12-28 11:30:55 +00003384}
3385
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003386/// SimplifyInstruction - See if we can compute a simplified version of this
3387/// instruction. If not, this returns null.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003388Value *llvm::SimplifyInstruction(Instruction *I, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00003389 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00003390 const DominatorTree *DT,
3391 AssumptionTracker *AT) {
Duncan Sands64e41cf2010-11-17 08:35:29 +00003392 Value *Result;
3393
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003394 switch (I->getOpcode()) {
3395 default:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003396 Result = ConstantFoldInstruction(I, DL, TLI);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003397 break;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00003398 case Instruction::FAdd:
3399 Result = SimplifyFAddInst(I->getOperand(0), I->getOperand(1),
Hal Finkel60db0582014-09-07 18:57:58 +00003400 I->getFastMathFlags(), DL, TLI, DT, AT, I);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00003401 break;
Chris Lattner3d9823b2009-11-27 17:42:22 +00003402 case Instruction::Add:
Duncan Sands64e41cf2010-11-17 08:35:29 +00003403 Result = SimplifyAddInst(I->getOperand(0), I->getOperand(1),
3404 cast<BinaryOperator>(I)->hasNoSignedWrap(),
3405 cast<BinaryOperator>(I)->hasNoUnsignedWrap(),
Hal Finkel60db0582014-09-07 18:57:58 +00003406 DL, TLI, DT, AT, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003407 break;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00003408 case Instruction::FSub:
3409 Result = SimplifyFSubInst(I->getOperand(0), I->getOperand(1),
Hal Finkel60db0582014-09-07 18:57:58 +00003410 I->getFastMathFlags(), DL, TLI, DT, AT, I);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00003411 break;
Duncan Sands0a2c41682010-12-15 14:07:39 +00003412 case Instruction::Sub:
3413 Result = SimplifySubInst(I->getOperand(0), I->getOperand(1),
3414 cast<BinaryOperator>(I)->hasNoSignedWrap(),
3415 cast<BinaryOperator>(I)->hasNoUnsignedWrap(),
Hal Finkel60db0582014-09-07 18:57:58 +00003416 DL, TLI, DT, AT, I);
Duncan Sands0a2c41682010-12-15 14:07:39 +00003417 break;
Michael Ilsemanbe9137a2012-11-27 00:46:26 +00003418 case Instruction::FMul:
3419 Result = SimplifyFMulInst(I->getOperand(0), I->getOperand(1),
Hal Finkel60db0582014-09-07 18:57:58 +00003420 I->getFastMathFlags(), DL, TLI, DT, AT, I);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +00003421 break;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00003422 case Instruction::Mul:
Hal Finkel60db0582014-09-07 18:57:58 +00003423 Result = SimplifyMulInst(I->getOperand(0), I->getOperand(1),
3424 DL, TLI, DT, AT, I);
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00003425 break;
Duncan Sands771e82a2011-01-28 16:51:11 +00003426 case Instruction::SDiv:
Hal Finkel60db0582014-09-07 18:57:58 +00003427 Result = SimplifySDivInst(I->getOperand(0), I->getOperand(1),
3428 DL, TLI, DT, AT, I);
Duncan Sands771e82a2011-01-28 16:51:11 +00003429 break;
3430 case Instruction::UDiv:
Hal Finkel60db0582014-09-07 18:57:58 +00003431 Result = SimplifyUDivInst(I->getOperand(0), I->getOperand(1),
3432 DL, TLI, DT, AT, I);
Duncan Sands771e82a2011-01-28 16:51:11 +00003433 break;
Frits van Bommelc2549662011-01-29 15:26:31 +00003434 case Instruction::FDiv:
Hal Finkel60db0582014-09-07 18:57:58 +00003435 Result = SimplifyFDivInst(I->getOperand(0), I->getOperand(1),
3436 DL, TLI, DT, AT, I);
Frits van Bommelc2549662011-01-29 15:26:31 +00003437 break;
Duncan Sandsa3e36992011-05-02 16:27:02 +00003438 case Instruction::SRem:
Hal Finkel60db0582014-09-07 18:57:58 +00003439 Result = SimplifySRemInst(I->getOperand(0), I->getOperand(1),
3440 DL, TLI, DT, AT, I);
Duncan Sandsa3e36992011-05-02 16:27:02 +00003441 break;
3442 case Instruction::URem:
Hal Finkel60db0582014-09-07 18:57:58 +00003443 Result = SimplifyURemInst(I->getOperand(0), I->getOperand(1),
3444 DL, TLI, DT, AT, I);
Duncan Sandsa3e36992011-05-02 16:27:02 +00003445 break;
3446 case Instruction::FRem:
Hal Finkel60db0582014-09-07 18:57:58 +00003447 Result = SimplifyFRemInst(I->getOperand(0), I->getOperand(1),
3448 DL, TLI, DT, AT, I);
Duncan Sandsa3e36992011-05-02 16:27:02 +00003449 break;
Duncan Sands7f60dc12011-01-14 00:37:45 +00003450 case Instruction::Shl:
Chris Lattner9e4aa022011-02-09 17:15:04 +00003451 Result = SimplifyShlInst(I->getOperand(0), I->getOperand(1),
3452 cast<BinaryOperator>(I)->hasNoSignedWrap(),
3453 cast<BinaryOperator>(I)->hasNoUnsignedWrap(),
Hal Finkel60db0582014-09-07 18:57:58 +00003454 DL, TLI, DT, AT, I);
Duncan Sands7f60dc12011-01-14 00:37:45 +00003455 break;
3456 case Instruction::LShr:
Chris Lattner9e4aa022011-02-09 17:15:04 +00003457 Result = SimplifyLShrInst(I->getOperand(0), I->getOperand(1),
3458 cast<BinaryOperator>(I)->isExact(),
Hal Finkel60db0582014-09-07 18:57:58 +00003459 DL, TLI, DT, AT, I);
Duncan Sands7f60dc12011-01-14 00:37:45 +00003460 break;
3461 case Instruction::AShr:
Chris Lattner9e4aa022011-02-09 17:15:04 +00003462 Result = SimplifyAShrInst(I->getOperand(0), I->getOperand(1),
3463 cast<BinaryOperator>(I)->isExact(),
Hal Finkel60db0582014-09-07 18:57:58 +00003464 DL, TLI, DT, AT, I);
Duncan Sands7f60dc12011-01-14 00:37:45 +00003465 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003466 case Instruction::And:
Hal Finkel60db0582014-09-07 18:57:58 +00003467 Result = SimplifyAndInst(I->getOperand(0), I->getOperand(1),
3468 DL, TLI, DT, AT, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003469 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003470 case Instruction::Or:
Hal Finkel60db0582014-09-07 18:57:58 +00003471 Result = SimplifyOrInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
3472 AT, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003473 break;
Duncan Sandsc89ac072010-11-17 18:52:15 +00003474 case Instruction::Xor:
Hal Finkel60db0582014-09-07 18:57:58 +00003475 Result = SimplifyXorInst(I->getOperand(0), I->getOperand(1),
3476 DL, TLI, DT, AT, I);
Duncan Sandsc89ac072010-11-17 18:52:15 +00003477 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003478 case Instruction::ICmp:
Duncan Sands64e41cf2010-11-17 08:35:29 +00003479 Result = SimplifyICmpInst(cast<ICmpInst>(I)->getPredicate(),
Hal Finkel60db0582014-09-07 18:57:58 +00003480 I->getOperand(0), I->getOperand(1),
3481 DL, TLI, DT, AT, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003482 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003483 case Instruction::FCmp:
Duncan Sands64e41cf2010-11-17 08:35:29 +00003484 Result = SimplifyFCmpInst(cast<FCmpInst>(I)->getPredicate(),
Hal Finkel60db0582014-09-07 18:57:58 +00003485 I->getOperand(0), I->getOperand(1),
3486 DL, TLI, DT, AT, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003487 break;
Chris Lattnerc707fa92010-04-20 05:32:14 +00003488 case Instruction::Select:
Duncan Sands64e41cf2010-11-17 08:35:29 +00003489 Result = SimplifySelectInst(I->getOperand(0), I->getOperand(1),
Hal Finkel60db0582014-09-07 18:57:58 +00003490 I->getOperand(2), DL, TLI, DT, AT, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003491 break;
Chris Lattner8574aba2009-11-27 00:29:05 +00003492 case Instruction::GetElementPtr: {
3493 SmallVector<Value*, 8> Ops(I->op_begin(), I->op_end());
Hal Finkel60db0582014-09-07 18:57:58 +00003494 Result = SimplifyGEPInst(Ops, DL, TLI, DT, AT, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003495 break;
Chris Lattner8574aba2009-11-27 00:29:05 +00003496 }
Duncan Sandsfd26a952011-09-05 06:52:48 +00003497 case Instruction::InsertValue: {
3498 InsertValueInst *IV = cast<InsertValueInst>(I);
3499 Result = SimplifyInsertValueInst(IV->getAggregateOperand(),
3500 IV->getInsertedValueOperand(),
Hal Finkel60db0582014-09-07 18:57:58 +00003501 IV->getIndices(), DL, TLI, DT, AT, I);
Duncan Sandsfd26a952011-09-05 06:52:48 +00003502 break;
3503 }
Duncan Sands4581ddc2010-11-14 13:30:18 +00003504 case Instruction::PHI:
Hal Finkel60db0582014-09-07 18:57:58 +00003505 Result = SimplifyPHINode(cast<PHINode>(I), Query (DL, TLI, DT, AT, I));
Duncan Sands64e41cf2010-11-17 08:35:29 +00003506 break;
Chandler Carruth9dc35582012-12-28 11:30:55 +00003507 case Instruction::Call: {
3508 CallSite CS(cast<CallInst>(I));
3509 Result = SimplifyCall(CS.getCalledValue(), CS.arg_begin(), CS.arg_end(),
Hal Finkel60db0582014-09-07 18:57:58 +00003510 DL, TLI, DT, AT, I);
Dan Gohman85977e62011-11-04 18:32:42 +00003511 break;
Chandler Carruth9dc35582012-12-28 11:30:55 +00003512 }
Duncan Sands395ac42d2012-03-13 14:07:05 +00003513 case Instruction::Trunc:
Hal Finkel60db0582014-09-07 18:57:58 +00003514 Result = SimplifyTruncInst(I->getOperand(0), I->getType(), DL, TLI, DT,
3515 AT, I);
Duncan Sands395ac42d2012-03-13 14:07:05 +00003516 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003517 }
Duncan Sands64e41cf2010-11-17 08:35:29 +00003518
3519 /// If called on unreachable code, the above logic may report that the
3520 /// instruction simplified to itself. Make life easier for users by
Duncan Sands019a4182010-12-15 11:02:22 +00003521 /// detecting that case here, returning a safe value instead.
3522 return Result == I ? UndefValue::get(I->getType()) : Result;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003523}
3524
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003525/// \brief Implementation of recursive simplification through an instructions
3526/// uses.
Chris Lattner852d6d62009-11-10 22:26:15 +00003527///
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003528/// This is the common implementation of the recursive simplification routines.
3529/// If we have a pre-simplified value in 'SimpleV', that is forcibly used to
3530/// replace the instruction 'I'. Otherwise, we simply add 'I' to the list of
3531/// instructions to process and attempt to simplify it using
3532/// InstructionSimplify.
3533///
3534/// This routine returns 'true' only when *it* simplifies something. The passed
3535/// in simplified value does not count toward this.
3536static bool replaceAndRecursivelySimplifyImpl(Instruction *I, Value *SimpleV,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003537 const DataLayout *DL,
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003538 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00003539 const DominatorTree *DT,
3540 AssumptionTracker *AT) {
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003541 bool Simplified = false;
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00003542 SmallSetVector<Instruction *, 8> Worklist;
Duncan Sands7e800d62010-11-14 11:23:23 +00003543
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003544 // If we have an explicit value to collapse to, do that round of the
3545 // simplification loop by hand initially.
3546 if (SimpleV) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00003547 for (User *U : I->users())
3548 if (U != I)
3549 Worklist.insert(cast<Instruction>(U));
Duncan Sands7e800d62010-11-14 11:23:23 +00003550
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003551 // Replace the instruction with its simplified value.
3552 I->replaceAllUsesWith(SimpleV);
Chris Lattner19eff2a2010-07-15 06:36:08 +00003553
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003554 // Gracefully handle edge cases where the instruction is not wired into any
3555 // parent block.
3556 if (I->getParent())
3557 I->eraseFromParent();
3558 } else {
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00003559 Worklist.insert(I);
Chris Lattner852d6d62009-11-10 22:26:15 +00003560 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003561
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00003562 // Note that we must test the size on each iteration, the worklist can grow.
3563 for (unsigned Idx = 0; Idx != Worklist.size(); ++Idx) {
3564 I = Worklist[Idx];
Duncan Sands7e800d62010-11-14 11:23:23 +00003565
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003566 // See if this instruction simplifies.
Hal Finkel60db0582014-09-07 18:57:58 +00003567 SimpleV = SimplifyInstruction(I, DL, TLI, DT, AT);
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003568 if (!SimpleV)
3569 continue;
3570
3571 Simplified = true;
3572
3573 // Stash away all the uses of the old instruction so we can check them for
3574 // recursive simplifications after a RAUW. This is cheaper than checking all
3575 // uses of To on the recursive step in most cases.
Chandler Carruthcdf47882014-03-09 03:16:01 +00003576 for (User *U : I->users())
3577 Worklist.insert(cast<Instruction>(U));
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003578
3579 // Replace the instruction with its simplified value.
3580 I->replaceAllUsesWith(SimpleV);
3581
3582 // Gracefully handle edge cases where the instruction is not wired into any
3583 // parent block.
3584 if (I->getParent())
3585 I->eraseFromParent();
3586 }
3587 return Simplified;
3588}
3589
3590bool llvm::recursivelySimplifyInstruction(Instruction *I,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003591 const DataLayout *DL,
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003592 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00003593 const DominatorTree *DT,
3594 AssumptionTracker *AT) {
3595 return replaceAndRecursivelySimplifyImpl(I, nullptr, DL, TLI, DT, AT);
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003596}
3597
3598bool llvm::replaceAndRecursivelySimplify(Instruction *I, Value *SimpleV,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003599 const DataLayout *DL,
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003600 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00003601 const DominatorTree *DT,
3602 AssumptionTracker *AT) {
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003603 assert(I != SimpleV && "replaceAndRecursivelySimplify(X,X) is not valid!");
3604 assert(SimpleV && "Must provide a simplified value.");
Hal Finkel60db0582014-09-07 18:57:58 +00003605 return replaceAndRecursivelySimplifyImpl(I, SimpleV, DL, TLI, DT, AT);
Chris Lattner852d6d62009-11-10 22:26:15 +00003606}