blob: 99c477d46236fc5792e8026f2c6ba99482e6bf9e [file] [log] [blame]
Chris Lattner084a1b52009-11-09 22:57:59 +00001//===- InstructionSimplify.cpp - Fold instruction operands ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements routines for folding instructions into simpler forms
Duncan Sandsa0219882010-11-23 10:50:08 +000011// that do not require creating new instructions. This does constant folding
12// ("add i32 1, 1" -> "2") but can also handle non-constant operands, either
13// returning a constant ("and i32 %x, 0" -> "0") or an already existing value
Duncan Sandsed6d6c32010-12-20 14:47:04 +000014// ("and i32 %x, %x" -> "%x"). All operands are assumed to have already been
15// simplified: This is usually true and assuming it simplifies the logic (if
16// they have not been simplified then results are correct but maybe suboptimal).
Chris Lattner084a1b52009-11-09 22:57:59 +000017//
18//===----------------------------------------------------------------------===//
19
20#include "llvm/Analysis/InstructionSimplify.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000021#include "llvm/ADT/SetVector.h"
22#include "llvm/ADT/Statistic.h"
Hal Finkelafcd8db2014-12-01 23:38:06 +000023#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattner084a1b52009-11-09 22:57:59 +000024#include "llvm/Analysis/ConstantFolding.h"
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +000025#include "llvm/Analysis/MemoryBuiltins.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000026#include "llvm/Analysis/ValueTracking.h"
Chandler Carruth8cd041e2014-03-04 12:24:34 +000027#include "llvm/IR/ConstantRange.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000028#include "llvm/IR/DataLayout.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000029#include "llvm/IR/Dominators.h"
Chandler Carruth03eb0de2014-03-04 10:40:04 +000030#include "llvm/IR/GetElementPtrTypeIterator.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000031#include "llvm/IR/GlobalAlias.h"
32#include "llvm/IR/Operator.h"
Chandler Carruth820a9082014-03-04 11:08:18 +000033#include "llvm/IR/PatternMatch.h"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000034#include "llvm/IR/ValueHandle.h"
Hal Finkelafcd8db2014-12-01 23:38:06 +000035#include <algorithm>
Chris Lattner084a1b52009-11-09 22:57:59 +000036using namespace llvm;
Chris Lattnera71e9d62009-11-10 00:55:12 +000037using namespace llvm::PatternMatch;
Chris Lattner084a1b52009-11-09 22:57:59 +000038
Chandler Carruthf1221bd2014-04-22 02:48:03 +000039#define DEBUG_TYPE "instsimplify"
40
Chris Lattner9e4aa022011-02-09 17:15:04 +000041enum { RecursionLimit = 3 };
Duncan Sandsf3b1bf12010-11-10 18:23:01 +000042
Duncan Sands3547d2e2010-12-22 09:40:51 +000043STATISTIC(NumExpand, "Number of expansions");
Duncan Sands3547d2e2010-12-22 09:40:51 +000044STATISTIC(NumReassoc, "Number of reassociations");
45
Benjamin Kramercfd8d902014-09-12 08:56:53 +000046namespace {
Duncan Sandsb8cee002012-03-13 11:42:19 +000047struct Query {
Mehdi Aminia28d91d2015-03-10 02:37:25 +000048 const DataLayout &DL;
Duncan Sandsb8cee002012-03-13 11:42:19 +000049 const TargetLibraryInfo *TLI;
50 const DominatorTree *DT;
Chandler Carruth66b31302015-01-04 12:03:27 +000051 AssumptionCache *AC;
Hal Finkel60db0582014-09-07 18:57:58 +000052 const Instruction *CxtI;
Duncan Sandsb8cee002012-03-13 11:42:19 +000053
Mehdi Aminia28d91d2015-03-10 02:37:25 +000054 Query(const DataLayout &DL, const TargetLibraryInfo *tli,
Chandler Carruth66b31302015-01-04 12:03:27 +000055 const DominatorTree *dt, AssumptionCache *ac = nullptr,
Hal Finkel60db0582014-09-07 18:57:58 +000056 const Instruction *cxti = nullptr)
Chandler Carruth66b31302015-01-04 12:03:27 +000057 : DL(DL), TLI(tli), DT(dt), AC(ac), CxtI(cxti) {}
Duncan Sandsb8cee002012-03-13 11:42:19 +000058};
Benjamin Kramercfd8d902014-09-12 08:56:53 +000059} // end anonymous namespace
Duncan Sandsb8cee002012-03-13 11:42:19 +000060
61static Value *SimplifyAndInst(Value *, Value *, const Query &, unsigned);
62static Value *SimplifyBinOp(unsigned, Value *, Value *, const Query &,
Chad Rosierc24b86f2011-12-01 03:08:23 +000063 unsigned);
Michael Zolotukhin4e8598e2015-02-06 20:02:51 +000064static Value *SimplifyFPBinOp(unsigned, Value *, Value *, const FastMathFlags &,
65 const Query &, unsigned);
Duncan Sandsb8cee002012-03-13 11:42:19 +000066static Value *SimplifyCmpInst(unsigned, Value *, Value *, const Query &,
Chad Rosierc24b86f2011-12-01 03:08:23 +000067 unsigned);
Duncan Sandsb8cee002012-03-13 11:42:19 +000068static Value *SimplifyOrInst(Value *, Value *, const Query &, unsigned);
69static Value *SimplifyXorInst(Value *, Value *, const Query &, unsigned);
Duncan Sands395ac42d2012-03-13 14:07:05 +000070static Value *SimplifyTruncInst(Value *, Type *, const Query &, unsigned);
Duncan Sands5ffc2982010-11-16 12:16:38 +000071
Duncan Sandsc1c92712011-07-26 15:03:53 +000072/// getFalse - For a boolean type, or a vector of boolean type, return false, or
73/// a vector with every element false, as appropriate for the type.
74static Constant *getFalse(Type *Ty) {
Nick Lewyckye659b842011-12-01 02:39:36 +000075 assert(Ty->getScalarType()->isIntegerTy(1) &&
Duncan Sandsc1c92712011-07-26 15:03:53 +000076 "Expected i1 type or a vector of i1!");
77 return Constant::getNullValue(Ty);
78}
79
80/// getTrue - For a boolean type, or a vector of boolean type, return true, or
81/// a vector with every element true, as appropriate for the type.
82static Constant *getTrue(Type *Ty) {
Nick Lewyckye659b842011-12-01 02:39:36 +000083 assert(Ty->getScalarType()->isIntegerTy(1) &&
Duncan Sandsc1c92712011-07-26 15:03:53 +000084 "Expected i1 type or a vector of i1!");
85 return Constant::getAllOnesValue(Ty);
86}
87
Duncan Sands3d5692a2011-10-30 19:56:36 +000088/// isSameCompare - Is V equivalent to the comparison "LHS Pred RHS"?
89static bool isSameCompare(Value *V, CmpInst::Predicate Pred, Value *LHS,
90 Value *RHS) {
91 CmpInst *Cmp = dyn_cast<CmpInst>(V);
92 if (!Cmp)
93 return false;
94 CmpInst::Predicate CPred = Cmp->getPredicate();
95 Value *CLHS = Cmp->getOperand(0), *CRHS = Cmp->getOperand(1);
96 if (CPred == Pred && CLHS == LHS && CRHS == RHS)
97 return true;
98 return CPred == CmpInst::getSwappedPredicate(Pred) && CLHS == RHS &&
99 CRHS == LHS;
100}
101
Duncan Sands5ffc2982010-11-16 12:16:38 +0000102/// ValueDominatesPHI - Does the given value dominate the specified phi node?
103static bool ValueDominatesPHI(Value *V, PHINode *P, const DominatorTree *DT) {
104 Instruction *I = dyn_cast<Instruction>(V);
105 if (!I)
106 // Arguments and constants dominate all instructions.
107 return true;
108
Chandler Carruth3ffccb32012-03-21 10:58:47 +0000109 // If we are processing instructions (and/or basic blocks) that have not been
110 // fully added to a function, the parent nodes may still be null. Simply
111 // return the conservative answer in these cases.
112 if (!I->getParent() || !P->getParent() || !I->getParent()->getParent())
113 return false;
114
Duncan Sands5ffc2982010-11-16 12:16:38 +0000115 // If we have a DominatorTree then do a precise test.
Eli Friedmanc8cbd062012-03-13 01:06:07 +0000116 if (DT) {
117 if (!DT->isReachableFromEntry(P->getParent()))
118 return true;
119 if (!DT->isReachableFromEntry(I->getParent()))
120 return false;
121 return DT->dominates(I, P);
122 }
Duncan Sands5ffc2982010-11-16 12:16:38 +0000123
124 // Otherwise, if the instruction is in the entry block, and is not an invoke,
125 // then it obviously dominates all phi nodes.
126 if (I->getParent() == &I->getParent()->getParent()->getEntryBlock() &&
127 !isa<InvokeInst>(I))
128 return true;
129
130 return false;
131}
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000132
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000133/// ExpandBinOp - Simplify "A op (B op' C)" by distributing op over op', turning
134/// it into "(A op B) op' (A op C)". Here "op" is given by Opcode and "op'" is
135/// given by OpcodeToExpand, while "A" corresponds to LHS and "B op' C" to RHS.
136/// Also performs the transform "(A op' B) op C" -> "(A op C) op' (B op C)".
137/// Returns the simplified value, or null if no simplification was performed.
138static Value *ExpandBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000139 unsigned OpcToExpand, const Query &Q,
Chad Rosierc24b86f2011-12-01 03:08:23 +0000140 unsigned MaxRecurse) {
Benjamin Kramerb6d52b82010-12-28 13:52:52 +0000141 Instruction::BinaryOps OpcodeToExpand = (Instruction::BinaryOps)OpcToExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000142 // Recursion is always used, so bail out at once if we already hit the limit.
143 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000144 return nullptr;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000145
146 // Check whether the expression has the form "(A op' B) op C".
147 if (BinaryOperator *Op0 = dyn_cast<BinaryOperator>(LHS))
148 if (Op0->getOpcode() == OpcodeToExpand) {
149 // It does! Try turning it into "(A op C) op' (B op C)".
150 Value *A = Op0->getOperand(0), *B = Op0->getOperand(1), *C = RHS;
151 // Do "A op C" and "B op C" both simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000152 if (Value *L = SimplifyBinOp(Opcode, A, C, Q, MaxRecurse))
153 if (Value *R = SimplifyBinOp(Opcode, B, C, Q, MaxRecurse)) {
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000154 // They do! Return "L op' R" if it simplifies or is already available.
155 // If "L op' R" equals "A op' B" then "L op' R" is just the LHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000156 if ((L == A && R == B) || (Instruction::isCommutative(OpcodeToExpand)
157 && L == B && R == A)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000158 ++NumExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000159 return LHS;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000160 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000161 // Otherwise return "L op' R" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000162 if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000163 ++NumExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000164 return V;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000165 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000166 }
167 }
168
169 // Check whether the expression has the form "A op (B op' C)".
170 if (BinaryOperator *Op1 = dyn_cast<BinaryOperator>(RHS))
171 if (Op1->getOpcode() == OpcodeToExpand) {
172 // It does! Try turning it into "(A op B) op' (A op C)".
173 Value *A = LHS, *B = Op1->getOperand(0), *C = Op1->getOperand(1);
174 // Do "A op B" and "A op C" both simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000175 if (Value *L = SimplifyBinOp(Opcode, A, B, Q, MaxRecurse))
176 if (Value *R = SimplifyBinOp(Opcode, A, C, Q, MaxRecurse)) {
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000177 // They do! Return "L op' R" if it simplifies or is already available.
178 // If "L op' R" equals "B op' C" then "L op' R" is just the RHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000179 if ((L == B && R == C) || (Instruction::isCommutative(OpcodeToExpand)
180 && L == C && R == B)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000181 ++NumExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000182 return RHS;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000183 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000184 // Otherwise return "L op' R" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000185 if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000186 ++NumExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000187 return V;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000188 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000189 }
190 }
191
Craig Topper9f008862014-04-15 04:59:12 +0000192 return nullptr;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000193}
194
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000195/// SimplifyAssociativeBinOp - Generic simplifications for associative binary
196/// operations. Returns the simpler value, or null if none was found.
Benjamin Kramerb6d52b82010-12-28 13:52:52 +0000197static Value *SimplifyAssociativeBinOp(unsigned Opc, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000198 const Query &Q, unsigned MaxRecurse) {
Benjamin Kramerb6d52b82010-12-28 13:52:52 +0000199 Instruction::BinaryOps Opcode = (Instruction::BinaryOps)Opc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000200 assert(Instruction::isAssociative(Opcode) && "Not an associative operation!");
201
202 // Recursion is always used, so bail out at once if we already hit the limit.
203 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000204 return nullptr;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000205
206 BinaryOperator *Op0 = dyn_cast<BinaryOperator>(LHS);
207 BinaryOperator *Op1 = dyn_cast<BinaryOperator>(RHS);
208
209 // Transform: "(A op B) op C" ==> "A op (B op C)" if it simplifies completely.
210 if (Op0 && Op0->getOpcode() == Opcode) {
211 Value *A = Op0->getOperand(0);
212 Value *B = Op0->getOperand(1);
213 Value *C = RHS;
214
215 // Does "B op C" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000216 if (Value *V = SimplifyBinOp(Opcode, B, C, Q, MaxRecurse)) {
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000217 // It does! Return "A op V" if it simplifies or is already available.
218 // If V equals B then "A op V" is just the LHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000219 if (V == B) return LHS;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000220 // Otherwise return "A op V" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000221 if (Value *W = SimplifyBinOp(Opcode, A, V, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000222 ++NumReassoc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000223 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000224 }
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000225 }
226 }
227
228 // Transform: "A op (B op C)" ==> "(A op B) op C" if it simplifies completely.
229 if (Op1 && Op1->getOpcode() == Opcode) {
230 Value *A = LHS;
231 Value *B = Op1->getOperand(0);
232 Value *C = Op1->getOperand(1);
233
234 // Does "A op B" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000235 if (Value *V = SimplifyBinOp(Opcode, A, B, Q, MaxRecurse)) {
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000236 // It does! Return "V op C" if it simplifies or is already available.
237 // If V equals B then "V op C" is just the RHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000238 if (V == B) return RHS;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000239 // Otherwise return "V op C" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000240 if (Value *W = SimplifyBinOp(Opcode, V, C, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000241 ++NumReassoc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000242 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000243 }
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000244 }
245 }
246
247 // The remaining transforms require commutativity as well as associativity.
248 if (!Instruction::isCommutative(Opcode))
Craig Topper9f008862014-04-15 04:59:12 +0000249 return nullptr;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000250
251 // Transform: "(A op B) op C" ==> "(C op A) op B" if it simplifies completely.
252 if (Op0 && Op0->getOpcode() == Opcode) {
253 Value *A = Op0->getOperand(0);
254 Value *B = Op0->getOperand(1);
255 Value *C = RHS;
256
257 // Does "C op A" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000258 if (Value *V = SimplifyBinOp(Opcode, C, A, Q, MaxRecurse)) {
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000259 // It does! Return "V op B" if it simplifies or is already available.
260 // If V equals A then "V op B" is just the LHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000261 if (V == A) return LHS;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000262 // Otherwise return "V op B" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000263 if (Value *W = SimplifyBinOp(Opcode, V, B, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000264 ++NumReassoc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000265 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000266 }
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000267 }
268 }
269
270 // Transform: "A op (B op C)" ==> "B op (C op A)" if it simplifies completely.
271 if (Op1 && Op1->getOpcode() == Opcode) {
272 Value *A = LHS;
273 Value *B = Op1->getOperand(0);
274 Value *C = Op1->getOperand(1);
275
276 // Does "C op A" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000277 if (Value *V = SimplifyBinOp(Opcode, C, A, Q, MaxRecurse)) {
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000278 // It does! Return "B op V" if it simplifies or is already available.
279 // If V equals C then "B op V" is just the RHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000280 if (V == C) return RHS;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000281 // Otherwise return "B op V" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000282 if (Value *W = SimplifyBinOp(Opcode, B, V, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000283 ++NumReassoc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000284 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000285 }
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000286 }
287 }
288
Craig Topper9f008862014-04-15 04:59:12 +0000289 return nullptr;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000290}
291
Duncan Sandsb0579e92010-11-10 13:00:08 +0000292/// ThreadBinOpOverSelect - In the case of a binary operation with a select
293/// instruction as an operand, try to simplify the binop by seeing whether
294/// evaluating it on both branches of the select results in the same value.
295/// Returns the common value if so, otherwise returns null.
296static Value *ThreadBinOpOverSelect(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000297 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000298 // Recursion is always used, so bail out at once if we already hit the limit.
299 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000300 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000301
Duncan Sandsb0579e92010-11-10 13:00:08 +0000302 SelectInst *SI;
303 if (isa<SelectInst>(LHS)) {
304 SI = cast<SelectInst>(LHS);
305 } else {
306 assert(isa<SelectInst>(RHS) && "No select instruction operand!");
307 SI = cast<SelectInst>(RHS);
308 }
309
310 // Evaluate the BinOp on the true and false branches of the select.
311 Value *TV;
312 Value *FV;
313 if (SI == LHS) {
Duncan Sandsb8cee002012-03-13 11:42:19 +0000314 TV = SimplifyBinOp(Opcode, SI->getTrueValue(), RHS, Q, MaxRecurse);
315 FV = SimplifyBinOp(Opcode, SI->getFalseValue(), RHS, Q, MaxRecurse);
Duncan Sandsb0579e92010-11-10 13:00:08 +0000316 } else {
Duncan Sandsb8cee002012-03-13 11:42:19 +0000317 TV = SimplifyBinOp(Opcode, LHS, SI->getTrueValue(), Q, MaxRecurse);
318 FV = SimplifyBinOp(Opcode, LHS, SI->getFalseValue(), Q, MaxRecurse);
Duncan Sandsb0579e92010-11-10 13:00:08 +0000319 }
320
Duncan Sandse3c53952011-01-01 16:12:09 +0000321 // If they simplified to the same value, then return the common value.
Duncan Sands772749a2011-01-01 20:08:02 +0000322 // If they both failed to simplify then return null.
323 if (TV == FV)
Duncan Sandsb0579e92010-11-10 13:00:08 +0000324 return TV;
325
326 // If one branch simplified to undef, return the other one.
327 if (TV && isa<UndefValue>(TV))
328 return FV;
329 if (FV && isa<UndefValue>(FV))
330 return TV;
331
332 // If applying the operation did not change the true and false select values,
333 // then the result of the binop is the select itself.
Duncan Sands772749a2011-01-01 20:08:02 +0000334 if (TV == SI->getTrueValue() && FV == SI->getFalseValue())
Duncan Sandsb0579e92010-11-10 13:00:08 +0000335 return SI;
336
337 // If one branch simplified and the other did not, and the simplified
338 // value is equal to the unsimplified one, return the simplified value.
339 // For example, select (cond, X, X & Z) & Z -> X & Z.
340 if ((FV && !TV) || (TV && !FV)) {
341 // Check that the simplified value has the form "X op Y" where "op" is the
342 // same as the original operation.
343 Instruction *Simplified = dyn_cast<Instruction>(FV ? FV : TV);
344 if (Simplified && Simplified->getOpcode() == Opcode) {
345 // The value that didn't simplify is "UnsimplifiedLHS op UnsimplifiedRHS".
346 // We already know that "op" is the same as for the simplified value. See
347 // if the operands match too. If so, return the simplified value.
348 Value *UnsimplifiedBranch = FV ? SI->getTrueValue() : SI->getFalseValue();
349 Value *UnsimplifiedLHS = SI == LHS ? UnsimplifiedBranch : LHS;
350 Value *UnsimplifiedRHS = SI == LHS ? RHS : UnsimplifiedBranch;
Duncan Sands772749a2011-01-01 20:08:02 +0000351 if (Simplified->getOperand(0) == UnsimplifiedLHS &&
352 Simplified->getOperand(1) == UnsimplifiedRHS)
Duncan Sandsb0579e92010-11-10 13:00:08 +0000353 return Simplified;
354 if (Simplified->isCommutative() &&
Duncan Sands772749a2011-01-01 20:08:02 +0000355 Simplified->getOperand(1) == UnsimplifiedLHS &&
356 Simplified->getOperand(0) == UnsimplifiedRHS)
Duncan Sandsb0579e92010-11-10 13:00:08 +0000357 return Simplified;
358 }
359 }
360
Craig Topper9f008862014-04-15 04:59:12 +0000361 return nullptr;
Duncan Sandsb0579e92010-11-10 13:00:08 +0000362}
363
364/// ThreadCmpOverSelect - In the case of a comparison with a select instruction,
365/// try to simplify the comparison by seeing whether both branches of the select
366/// result in the same value. Returns the common value if so, otherwise returns
367/// null.
368static Value *ThreadCmpOverSelect(CmpInst::Predicate Pred, Value *LHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000369 Value *RHS, const Query &Q,
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000370 unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000371 // Recursion is always used, so bail out at once if we already hit the limit.
372 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000373 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000374
Duncan Sandsb0579e92010-11-10 13:00:08 +0000375 // Make sure the select is on the LHS.
376 if (!isa<SelectInst>(LHS)) {
377 std::swap(LHS, RHS);
378 Pred = CmpInst::getSwappedPredicate(Pred);
379 }
380 assert(isa<SelectInst>(LHS) && "Not comparing with a select instruction!");
381 SelectInst *SI = cast<SelectInst>(LHS);
Duncan Sands3d5692a2011-10-30 19:56:36 +0000382 Value *Cond = SI->getCondition();
383 Value *TV = SI->getTrueValue();
384 Value *FV = SI->getFalseValue();
Duncan Sandsb0579e92010-11-10 13:00:08 +0000385
Duncan Sands06504022011-02-03 09:37:39 +0000386 // Now that we have "cmp select(Cond, TV, FV), RHS", analyse it.
Duncan Sandsb0579e92010-11-10 13:00:08 +0000387 // Does "cmp TV, RHS" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000388 Value *TCmp = SimplifyCmpInst(Pred, TV, RHS, Q, MaxRecurse);
Duncan Sands3d5692a2011-10-30 19:56:36 +0000389 if (TCmp == Cond) {
390 // It not only simplified, it simplified to the select condition. Replace
391 // it with 'true'.
392 TCmp = getTrue(Cond->getType());
393 } else if (!TCmp) {
394 // It didn't simplify. However if "cmp TV, RHS" is equal to the select
395 // condition then we can replace it with 'true'. Otherwise give up.
396 if (!isSameCompare(Cond, Pred, TV, RHS))
Craig Topper9f008862014-04-15 04:59:12 +0000397 return nullptr;
Duncan Sands3d5692a2011-10-30 19:56:36 +0000398 TCmp = getTrue(Cond->getType());
Duncan Sands06504022011-02-03 09:37:39 +0000399 }
400
Duncan Sands3d5692a2011-10-30 19:56:36 +0000401 // Does "cmp FV, RHS" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000402 Value *FCmp = SimplifyCmpInst(Pred, FV, RHS, Q, MaxRecurse);
Duncan Sands3d5692a2011-10-30 19:56:36 +0000403 if (FCmp == Cond) {
404 // It not only simplified, it simplified to the select condition. Replace
405 // it with 'false'.
406 FCmp = getFalse(Cond->getType());
407 } else if (!FCmp) {
408 // It didn't simplify. However if "cmp FV, RHS" is equal to the select
409 // condition then we can replace it with 'false'. Otherwise give up.
410 if (!isSameCompare(Cond, Pred, FV, RHS))
Craig Topper9f008862014-04-15 04:59:12 +0000411 return nullptr;
Duncan Sands3d5692a2011-10-30 19:56:36 +0000412 FCmp = getFalse(Cond->getType());
413 }
414
415 // If both sides simplified to the same value, then use it as the result of
416 // the original comparison.
417 if (TCmp == FCmp)
418 return TCmp;
Duncan Sands26641d72012-02-10 14:31:24 +0000419
420 // The remaining cases only make sense if the select condition has the same
421 // type as the result of the comparison, so bail out if this is not so.
422 if (Cond->getType()->isVectorTy() != RHS->getType()->isVectorTy())
Craig Topper9f008862014-04-15 04:59:12 +0000423 return nullptr;
Duncan Sands3d5692a2011-10-30 19:56:36 +0000424 // If the false value simplified to false, then the result of the compare
425 // is equal to "Cond && TCmp". This also catches the case when the false
426 // value simplified to false and the true value to true, returning "Cond".
427 if (match(FCmp, m_Zero()))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000428 if (Value *V = SimplifyAndInst(Cond, TCmp, Q, MaxRecurse))
Duncan Sands3d5692a2011-10-30 19:56:36 +0000429 return V;
430 // If the true value simplified to true, then the result of the compare
431 // is equal to "Cond || FCmp".
432 if (match(TCmp, m_One()))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000433 if (Value *V = SimplifyOrInst(Cond, FCmp, Q, MaxRecurse))
Duncan Sands3d5692a2011-10-30 19:56:36 +0000434 return V;
435 // Finally, if the false value simplified to true and the true value to
436 // false, then the result of the compare is equal to "!Cond".
437 if (match(FCmp, m_One()) && match(TCmp, m_Zero()))
438 if (Value *V =
439 SimplifyXorInst(Cond, Constant::getAllOnesValue(Cond->getType()),
Duncan Sandsb8cee002012-03-13 11:42:19 +0000440 Q, MaxRecurse))
Duncan Sands3d5692a2011-10-30 19:56:36 +0000441 return V;
442
Craig Topper9f008862014-04-15 04:59:12 +0000443 return nullptr;
Duncan Sandsb0579e92010-11-10 13:00:08 +0000444}
445
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000446/// ThreadBinOpOverPHI - In the case of a binary operation with an operand that
447/// is a PHI instruction, try to simplify the binop by seeing whether evaluating
448/// it on the incoming phi values yields the same result for every value. If so
449/// returns the common value, otherwise returns null.
450static Value *ThreadBinOpOverPHI(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000451 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000452 // Recursion is always used, so bail out at once if we already hit the limit.
453 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000454 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000455
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000456 PHINode *PI;
457 if (isa<PHINode>(LHS)) {
458 PI = cast<PHINode>(LHS);
Duncan Sands5ffc2982010-11-16 12:16:38 +0000459 // Bail out if RHS and the phi may be mutually interdependent due to a loop.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000460 if (!ValueDominatesPHI(RHS, PI, Q.DT))
Craig Topper9f008862014-04-15 04:59:12 +0000461 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000462 } else {
463 assert(isa<PHINode>(RHS) && "No PHI instruction operand!");
464 PI = cast<PHINode>(RHS);
Duncan Sands5ffc2982010-11-16 12:16:38 +0000465 // Bail out if LHS and the phi may be mutually interdependent due to a loop.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000466 if (!ValueDominatesPHI(LHS, PI, Q.DT))
Craig Topper9f008862014-04-15 04:59:12 +0000467 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000468 }
469
470 // Evaluate the BinOp on the incoming phi values.
Craig Topper9f008862014-04-15 04:59:12 +0000471 Value *CommonValue = nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000472 for (unsigned i = 0, e = PI->getNumIncomingValues(); i != e; ++i) {
Duncan Sandsf12ba1d2010-11-15 17:52:45 +0000473 Value *Incoming = PI->getIncomingValue(i);
Duncan Sands7412f6e2010-11-17 04:30:22 +0000474 // If the incoming value is the phi node itself, it can safely be skipped.
Duncan Sandsf12ba1d2010-11-15 17:52:45 +0000475 if (Incoming == PI) continue;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000476 Value *V = PI == LHS ?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000477 SimplifyBinOp(Opcode, Incoming, RHS, Q, MaxRecurse) :
478 SimplifyBinOp(Opcode, LHS, Incoming, Q, MaxRecurse);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000479 // If the operation failed to simplify, or simplified to a different value
480 // to previously, then give up.
481 if (!V || (CommonValue && V != CommonValue))
Craig Topper9f008862014-04-15 04:59:12 +0000482 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000483 CommonValue = V;
484 }
485
486 return CommonValue;
487}
488
489/// ThreadCmpOverPHI - In the case of a comparison with a PHI instruction, try
490/// try to simplify the comparison by seeing whether comparing with all of the
491/// incoming phi values yields the same result every time. If so returns the
492/// common result, otherwise returns null.
493static Value *ThreadCmpOverPHI(CmpInst::Predicate Pred, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000494 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000495 // Recursion is always used, so bail out at once if we already hit the limit.
496 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000497 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000498
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000499 // Make sure the phi is on the LHS.
500 if (!isa<PHINode>(LHS)) {
501 std::swap(LHS, RHS);
502 Pred = CmpInst::getSwappedPredicate(Pred);
503 }
504 assert(isa<PHINode>(LHS) && "Not comparing with a phi instruction!");
505 PHINode *PI = cast<PHINode>(LHS);
506
Duncan Sands5ffc2982010-11-16 12:16:38 +0000507 // Bail out if RHS and the phi may be mutually interdependent due to a loop.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000508 if (!ValueDominatesPHI(RHS, PI, Q.DT))
Craig Topper9f008862014-04-15 04:59:12 +0000509 return nullptr;
Duncan Sands5ffc2982010-11-16 12:16:38 +0000510
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000511 // Evaluate the BinOp on the incoming phi values.
Craig Topper9f008862014-04-15 04:59:12 +0000512 Value *CommonValue = nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000513 for (unsigned i = 0, e = PI->getNumIncomingValues(); i != e; ++i) {
Duncan Sandsf12ba1d2010-11-15 17:52:45 +0000514 Value *Incoming = PI->getIncomingValue(i);
Duncan Sands7412f6e2010-11-17 04:30:22 +0000515 // If the incoming value is the phi node itself, it can safely be skipped.
Duncan Sandsf12ba1d2010-11-15 17:52:45 +0000516 if (Incoming == PI) continue;
Duncan Sandsb8cee002012-03-13 11:42:19 +0000517 Value *V = SimplifyCmpInst(Pred, Incoming, RHS, Q, MaxRecurse);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000518 // If the operation failed to simplify, or simplified to a different value
519 // to previously, then give up.
520 if (!V || (CommonValue && V != CommonValue))
Craig Topper9f008862014-04-15 04:59:12 +0000521 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000522 CommonValue = V;
523 }
524
525 return CommonValue;
526}
527
Chris Lattner3d9823b2009-11-27 17:42:22 +0000528/// SimplifyAddInst - Given operands for an Add, see if we can
529/// fold the result. If not, this returns null.
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000530static Value *SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000531 const Query &Q, unsigned MaxRecurse) {
Chris Lattner3d9823b2009-11-27 17:42:22 +0000532 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
533 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
534 Constant *Ops[] = { CLHS, CRHS };
Duncan Sandsb8cee002012-03-13 11:42:19 +0000535 return ConstantFoldInstOperands(Instruction::Add, CLHS->getType(), Ops,
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000536 Q.DL, Q.TLI);
Chris Lattner3d9823b2009-11-27 17:42:22 +0000537 }
Duncan Sands7e800d62010-11-14 11:23:23 +0000538
Chris Lattner3d9823b2009-11-27 17:42:22 +0000539 // Canonicalize the constant to the RHS.
540 std::swap(Op0, Op1);
541 }
Duncan Sands7e800d62010-11-14 11:23:23 +0000542
Duncan Sands0a2c41682010-12-15 14:07:39 +0000543 // X + undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000544 if (match(Op1, m_Undef()))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000545 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +0000546
Duncan Sands0a2c41682010-12-15 14:07:39 +0000547 // X + 0 -> X
548 if (match(Op1, m_Zero()))
549 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +0000550
Duncan Sands0a2c41682010-12-15 14:07:39 +0000551 // X + (Y - X) -> Y
552 // (Y - X) + X -> Y
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000553 // Eg: X + -X -> 0
Craig Topper9f008862014-04-15 04:59:12 +0000554 Value *Y = nullptr;
Duncan Sands772749a2011-01-01 20:08:02 +0000555 if (match(Op1, m_Sub(m_Value(Y), m_Specific(Op0))) ||
556 match(Op0, m_Sub(m_Value(Y), m_Specific(Op1))))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000557 return Y;
558
559 // X + ~X -> -1 since ~X = -X-1
Duncan Sands772749a2011-01-01 20:08:02 +0000560 if (match(Op0, m_Not(m_Specific(Op1))) ||
561 match(Op1, m_Not(m_Specific(Op0))))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000562 return Constant::getAllOnesValue(Op0->getType());
Duncan Sandsb238de02010-11-19 09:20:39 +0000563
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000564 /// i1 add -> xor.
Duncan Sands5def0d62010-12-21 14:48:48 +0000565 if (MaxRecurse && Op0->getType()->isIntegerTy(1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000566 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sandsfecc6422010-12-21 15:03:43 +0000567 return V;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000568
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000569 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000570 if (Value *V = SimplifyAssociativeBinOp(Instruction::Add, Op0, Op1, Q,
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000571 MaxRecurse))
572 return V;
573
Duncan Sandsb238de02010-11-19 09:20:39 +0000574 // Threading Add over selects and phi nodes is pointless, so don't bother.
575 // Threading over the select in "A + select(cond, B, C)" means evaluating
576 // "A+B" and "A+C" and seeing if they are equal; but they are equal if and
577 // only if B and C are equal. If B and C are equal then (since we assume
578 // that operands have already been simplified) "select(cond, B, C)" should
579 // have been simplified to the common value of B and C already. Analysing
580 // "A+B" and "A+C" thus gains nothing, but costs compile time. Similarly
581 // for threading over phi nodes.
582
Craig Topper9f008862014-04-15 04:59:12 +0000583 return nullptr;
Chris Lattner3d9823b2009-11-27 17:42:22 +0000584}
585
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000586Value *llvm::SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000587 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +0000588 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +0000589 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +0000590 return ::SimplifyAddInst(Op0, Op1, isNSW, isNUW, Query(DL, TLI, DT, AC, CxtI),
591 RecursionLimit);
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000592}
593
Chandler Carrutha0796552012-03-12 11:19:31 +0000594/// \brief Compute the base pointer and cumulative constant offsets for V.
595///
596/// This strips all constant offsets off of V, leaving it the base pointer, and
597/// accumulates the total constant offset applied in the returned constant. It
598/// returns 0 if V is not a pointer, and returns the constant '0' if there are
599/// no constant offsets applied.
Dan Gohman36fa8392013-01-31 02:45:26 +0000600///
601/// This is very similar to GetPointerBaseWithConstantOffset except it doesn't
602/// follow non-inbounds geps. This allows it to remain usable for icmp ult/etc.
603/// folding.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000604static Constant *stripAndComputeConstantOffsets(const DataLayout &DL, Value *&V,
Benjamin Kramer942dfe62013-09-23 14:16:38 +0000605 bool AllowNonInbounds = false) {
Benjamin Kramerc05aa952013-02-01 15:21:10 +0000606 assert(V->getType()->getScalarType()->isPointerTy());
Chandler Carrutha0796552012-03-12 11:19:31 +0000607
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000608 Type *IntPtrTy = DL.getIntPtrType(V->getType())->getScalarType();
Matt Arsenault2f9cce22013-08-03 01:03:12 +0000609 APInt Offset = APInt::getNullValue(IntPtrTy->getIntegerBitWidth());
Chandler Carrutha0796552012-03-12 11:19:31 +0000610
611 // Even though we don't look through PHI nodes, we could be called on an
612 // instruction in an unreachable block, which may be on a cycle.
613 SmallPtrSet<Value *, 4> Visited;
614 Visited.insert(V);
615 do {
616 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
Benjamin Kramer942dfe62013-09-23 14:16:38 +0000617 if ((!AllowNonInbounds && !GEP->isInBounds()) ||
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000618 !GEP->accumulateConstantOffset(DL, Offset))
Chandler Carrutha0796552012-03-12 11:19:31 +0000619 break;
Chandler Carrutha0796552012-03-12 11:19:31 +0000620 V = GEP->getPointerOperand();
621 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
Matt Arsenault2f9cce22013-08-03 01:03:12 +0000622 V = cast<Operator>(V)->getOperand(0);
Chandler Carrutha0796552012-03-12 11:19:31 +0000623 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) {
624 if (GA->mayBeOverridden())
625 break;
626 V = GA->getAliasee();
627 } else {
628 break;
629 }
Benjamin Kramerc05aa952013-02-01 15:21:10 +0000630 assert(V->getType()->getScalarType()->isPointerTy() &&
631 "Unexpected operand type!");
David Blaikie70573dc2014-11-19 07:49:26 +0000632 } while (Visited.insert(V).second);
Chandler Carrutha0796552012-03-12 11:19:31 +0000633
Benjamin Kramerc05aa952013-02-01 15:21:10 +0000634 Constant *OffsetIntPtr = ConstantInt::get(IntPtrTy, Offset);
635 if (V->getType()->isVectorTy())
636 return ConstantVector::getSplat(V->getType()->getVectorNumElements(),
637 OffsetIntPtr);
638 return OffsetIntPtr;
Chandler Carrutha0796552012-03-12 11:19:31 +0000639}
640
641/// \brief Compute the constant difference between two pointer values.
642/// If the difference is not a constant, returns zero.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000643static Constant *computePointerDifference(const DataLayout &DL, Value *LHS,
644 Value *RHS) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000645 Constant *LHSOffset = stripAndComputeConstantOffsets(DL, LHS);
646 Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS);
Chandler Carrutha0796552012-03-12 11:19:31 +0000647
648 // If LHS and RHS are not related via constant offsets to the same base
649 // value, there is nothing we can do here.
650 if (LHS != RHS)
Craig Topper9f008862014-04-15 04:59:12 +0000651 return nullptr;
Chandler Carrutha0796552012-03-12 11:19:31 +0000652
653 // Otherwise, the difference of LHS - RHS can be computed as:
654 // LHS - RHS
655 // = (LHSOffset + Base) - (RHSOffset + Base)
656 // = LHSOffset - RHSOffset
657 return ConstantExpr::getSub(LHSOffset, RHSOffset);
658}
659
Duncan Sands0a2c41682010-12-15 14:07:39 +0000660/// SimplifySubInst - Given operands for a Sub, see if we can
661/// fold the result. If not, this returns null.
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000662static Value *SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000663 const Query &Q, unsigned MaxRecurse) {
Duncan Sands0a2c41682010-12-15 14:07:39 +0000664 if (Constant *CLHS = dyn_cast<Constant>(Op0))
665 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
666 Constant *Ops[] = { CLHS, CRHS };
667 return ConstantFoldInstOperands(Instruction::Sub, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000668 Ops, Q.DL, Q.TLI);
Duncan Sands0a2c41682010-12-15 14:07:39 +0000669 }
670
671 // X - undef -> undef
672 // undef - X -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000673 if (match(Op0, m_Undef()) || match(Op1, m_Undef()))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000674 return UndefValue::get(Op0->getType());
675
676 // X - 0 -> X
677 if (match(Op1, m_Zero()))
678 return Op0;
679
680 // X - X -> 0
Duncan Sands772749a2011-01-01 20:08:02 +0000681 if (Op0 == Op1)
Duncan Sands0a2c41682010-12-15 14:07:39 +0000682 return Constant::getNullValue(Op0->getType());
683
David Majnemer4efa9ff2014-11-22 07:15:16 +0000684 // 0 - X -> 0 if the sub is NUW.
685 if (isNUW && match(Op0, m_Zero()))
686 return Op0;
David Majnemercd4fbcd2014-07-31 04:49:18 +0000687
Duncan Sands99589d02011-01-18 11:50:19 +0000688 // (X + Y) - Z -> X + (Y - Z) or Y + (X - Z) if everything simplifies.
689 // For example, (X + Y) - Y -> X; (Y + X) - Y -> X
Dinesh Dwivedi99281a02014-06-26 08:57:33 +0000690 Value *X = nullptr, *Y = nullptr, *Z = Op1;
Duncan Sands99589d02011-01-18 11:50:19 +0000691 if (MaxRecurse && match(Op0, m_Add(m_Value(X), m_Value(Y)))) { // (X + Y) - Z
692 // See if "V === Y - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000693 if (Value *V = SimplifyBinOp(Instruction::Sub, Y, Z, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000694 // It does! Now see if "X + V" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000695 if (Value *W = SimplifyBinOp(Instruction::Add, X, V, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000696 // It does, we successfully reassociated!
697 ++NumReassoc;
698 return W;
699 }
700 // See if "V === X - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000701 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Z, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000702 // It does! Now see if "Y + V" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000703 if (Value *W = SimplifyBinOp(Instruction::Add, Y, V, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000704 // It does, we successfully reassociated!
705 ++NumReassoc;
706 return W;
707 }
708 }
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000709
Duncan Sands99589d02011-01-18 11:50:19 +0000710 // X - (Y + Z) -> (X - Y) - Z or (X - Z) - Y if everything simplifies.
711 // For example, X - (X + 1) -> -1
712 X = Op0;
713 if (MaxRecurse && match(Op1, m_Add(m_Value(Y), m_Value(Z)))) { // X - (Y + Z)
714 // See if "V === X - Y" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000715 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Y, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000716 // It does! Now see if "V - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000717 if (Value *W = SimplifyBinOp(Instruction::Sub, V, Z, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000718 // It does, we successfully reassociated!
719 ++NumReassoc;
720 return W;
721 }
722 // See if "V === X - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000723 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Z, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000724 // It does! Now see if "V - Y" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000725 if (Value *W = SimplifyBinOp(Instruction::Sub, V, Y, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000726 // It does, we successfully reassociated!
727 ++NumReassoc;
728 return W;
729 }
730 }
731
732 // Z - (X - Y) -> (Z - X) + Y if everything simplifies.
733 // For example, X - (X - Y) -> Y.
734 Z = Op0;
Duncan Sandsd6f1a952011-01-14 15:26:10 +0000735 if (MaxRecurse && match(Op1, m_Sub(m_Value(X), m_Value(Y)))) // Z - (X - Y)
736 // See if "V === Z - X" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000737 if (Value *V = SimplifyBinOp(Instruction::Sub, Z, X, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000738 // It does! Now see if "V + Y" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000739 if (Value *W = SimplifyBinOp(Instruction::Add, V, Y, Q, MaxRecurse-1)) {
Duncan Sandsd6f1a952011-01-14 15:26:10 +0000740 // It does, we successfully reassociated!
741 ++NumReassoc;
742 return W;
743 }
744
Duncan Sands395ac42d2012-03-13 14:07:05 +0000745 // trunc(X) - trunc(Y) -> trunc(X - Y) if everything simplifies.
746 if (MaxRecurse && match(Op0, m_Trunc(m_Value(X))) &&
747 match(Op1, m_Trunc(m_Value(Y))))
748 if (X->getType() == Y->getType())
749 // See if "V === X - Y" simplifies.
750 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Y, Q, MaxRecurse-1))
751 // It does! Now see if "trunc V" simplifies.
752 if (Value *W = SimplifyTruncInst(V, Op0->getType(), Q, MaxRecurse-1))
753 // It does, return the simplified "trunc V".
754 return W;
755
756 // Variations on GEP(base, I, ...) - GEP(base, i, ...) -> GEP(null, I-i, ...).
Dan Gohman18c77a12013-01-31 02:50:36 +0000757 if (match(Op0, m_PtrToInt(m_Value(X))) &&
Duncan Sands395ac42d2012-03-13 14:07:05 +0000758 match(Op1, m_PtrToInt(m_Value(Y))))
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000759 if (Constant *Result = computePointerDifference(Q.DL, X, Y))
Duncan Sands395ac42d2012-03-13 14:07:05 +0000760 return ConstantExpr::getIntegerCast(Result, Op0->getType(), true);
761
Duncan Sands99589d02011-01-18 11:50:19 +0000762 // i1 sub -> xor.
763 if (MaxRecurse && Op0->getType()->isIntegerTy(1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000764 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000765 return V;
766
Duncan Sands0a2c41682010-12-15 14:07:39 +0000767 // Threading Sub over selects and phi nodes is pointless, so don't bother.
768 // Threading over the select in "A - select(cond, B, C)" means evaluating
769 // "A-B" and "A-C" and seeing if they are equal; but they are equal if and
770 // only if B and C are equal. If B and C are equal then (since we assume
771 // that operands have already been simplified) "select(cond, B, C)" should
772 // have been simplified to the common value of B and C already. Analysing
773 // "A-B" and "A-C" thus gains nothing, but costs compile time. Similarly
774 // for threading over phi nodes.
775
Craig Topper9f008862014-04-15 04:59:12 +0000776 return nullptr;
Duncan Sands0a2c41682010-12-15 14:07:39 +0000777}
778
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000779Value *llvm::SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000780 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +0000781 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +0000782 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +0000783 return ::SimplifySubInst(Op0, Op1, isNSW, isNUW, Query(DL, TLI, DT, AC, CxtI),
784 RecursionLimit);
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000785}
786
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000787/// Given operands for an FAdd, see if we can fold the result. If not, this
788/// returns null.
789static Value *SimplifyFAddInst(Value *Op0, Value *Op1, FastMathFlags FMF,
790 const Query &Q, unsigned MaxRecurse) {
791 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
792 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
793 Constant *Ops[] = { CLHS, CRHS };
794 return ConstantFoldInstOperands(Instruction::FAdd, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000795 Ops, Q.DL, Q.TLI);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000796 }
797
798 // Canonicalize the constant to the RHS.
799 std::swap(Op0, Op1);
800 }
801
802 // fadd X, -0 ==> X
803 if (match(Op1, m_NegZero()))
804 return Op0;
805
806 // fadd X, 0 ==> X, when we know X is not -0
807 if (match(Op1, m_Zero()) &&
808 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0)))
809 return Op0;
810
811 // fadd [nnan ninf] X, (fsub [nnan ninf] 0, X) ==> 0
812 // where nnan and ninf have to occur at least once somewhere in this
813 // expression
Craig Topper9f008862014-04-15 04:59:12 +0000814 Value *SubOp = nullptr;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000815 if (match(Op1, m_FSub(m_AnyZero(), m_Specific(Op0))))
816 SubOp = Op1;
817 else if (match(Op0, m_FSub(m_AnyZero(), m_Specific(Op1))))
818 SubOp = Op0;
819 if (SubOp) {
820 Instruction *FSub = cast<Instruction>(SubOp);
821 if ((FMF.noNaNs() || FSub->hasNoNaNs()) &&
822 (FMF.noInfs() || FSub->hasNoInfs()))
823 return Constant::getNullValue(Op0->getType());
824 }
825
Craig Topper9f008862014-04-15 04:59:12 +0000826 return nullptr;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000827}
828
829/// Given operands for an FSub, see if we can fold the result. If not, this
830/// returns null.
831static Value *SimplifyFSubInst(Value *Op0, Value *Op1, FastMathFlags FMF,
832 const Query &Q, unsigned MaxRecurse) {
833 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
834 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
835 Constant *Ops[] = { CLHS, CRHS };
836 return ConstantFoldInstOperands(Instruction::FSub, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000837 Ops, Q.DL, Q.TLI);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000838 }
839 }
840
841 // fsub X, 0 ==> X
842 if (match(Op1, m_Zero()))
843 return Op0;
844
845 // fsub X, -0 ==> X, when we know X is not -0
846 if (match(Op1, m_NegZero()) &&
847 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0)))
848 return Op0;
849
850 // fsub 0, (fsub -0.0, X) ==> X
851 Value *X;
852 if (match(Op0, m_AnyZero())) {
853 if (match(Op1, m_FSub(m_NegZero(), m_Value(X))))
854 return X;
855 if (FMF.noSignedZeros() && match(Op1, m_FSub(m_AnyZero(), m_Value(X))))
856 return X;
857 }
858
859 // fsub nnan ninf x, x ==> 0.0
860 if (FMF.noNaNs() && FMF.noInfs() && Op0 == Op1)
861 return Constant::getNullValue(Op0->getType());
862
Craig Topper9f008862014-04-15 04:59:12 +0000863 return nullptr;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000864}
865
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000866/// Given the operands for an FMul, see if we can fold the result
867static Value *SimplifyFMulInst(Value *Op0, Value *Op1,
868 FastMathFlags FMF,
869 const Query &Q,
870 unsigned MaxRecurse) {
871 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
872 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
873 Constant *Ops[] = { CLHS, CRHS };
874 return ConstantFoldInstOperands(Instruction::FMul, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000875 Ops, Q.DL, Q.TLI);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000876 }
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000877
878 // Canonicalize the constant to the RHS.
879 std::swap(Op0, Op1);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000880 }
881
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000882 // fmul X, 1.0 ==> X
883 if (match(Op1, m_FPOne()))
884 return Op0;
885
886 // fmul nnan nsz X, 0 ==> 0
887 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op1, m_AnyZero()))
888 return Op1;
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000889
Craig Topper9f008862014-04-15 04:59:12 +0000890 return nullptr;
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000891}
892
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000893/// SimplifyMulInst - Given operands for a Mul, see if we can
894/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000895static Value *SimplifyMulInst(Value *Op0, Value *Op1, const Query &Q,
896 unsigned MaxRecurse) {
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000897 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
898 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
899 Constant *Ops[] = { CLHS, CRHS };
900 return ConstantFoldInstOperands(Instruction::Mul, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000901 Ops, Q.DL, Q.TLI);
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000902 }
903
904 // Canonicalize the constant to the RHS.
905 std::swap(Op0, Op1);
906 }
907
908 // X * undef -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000909 if (match(Op1, m_Undef()))
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000910 return Constant::getNullValue(Op0->getType());
911
912 // X * 0 -> 0
913 if (match(Op1, m_Zero()))
914 return Op1;
915
916 // X * 1 -> X
917 if (match(Op1, m_One()))
918 return Op0;
919
Duncan Sandsb67edc62011-01-30 18:03:50 +0000920 // (X / Y) * Y -> X if the division is exact.
Craig Topper9f008862014-04-15 04:59:12 +0000921 Value *X = nullptr;
Benjamin Kramer9442cd02012-01-01 17:55:30 +0000922 if (match(Op0, m_Exact(m_IDiv(m_Value(X), m_Specific(Op1)))) || // (X / Y) * Y
923 match(Op1, m_Exact(m_IDiv(m_Value(X), m_Specific(Op0))))) // Y * (X / Y)
924 return X;
Duncan Sandsb67edc62011-01-30 18:03:50 +0000925
Nick Lewyckyb89d9a42011-01-29 19:55:23 +0000926 // i1 mul -> and.
Duncan Sands5def0d62010-12-21 14:48:48 +0000927 if (MaxRecurse && Op0->getType()->isIntegerTy(1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000928 if (Value *V = SimplifyAndInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sandsfecc6422010-12-21 15:03:43 +0000929 return V;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000930
931 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000932 if (Value *V = SimplifyAssociativeBinOp(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000933 MaxRecurse))
934 return V;
935
936 // Mul distributes over Add. Try some generic simplifications based on this.
937 if (Value *V = ExpandBinOp(Instruction::Mul, Op0, Op1, Instruction::Add,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000938 Q, MaxRecurse))
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000939 return V;
940
941 // If the operation is with the result of a select instruction, check whether
942 // operating on either branch of the select always yields the same value.
943 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000944 if (Value *V = ThreadBinOpOverSelect(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000945 MaxRecurse))
946 return V;
947
948 // If the operation is with the result of a phi instruction, check whether
949 // operating on all incoming values of the phi always yields the same value.
950 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000951 if (Value *V = ThreadBinOpOverPHI(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000952 MaxRecurse))
953 return V;
954
Craig Topper9f008862014-04-15 04:59:12 +0000955 return nullptr;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000956}
957
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000958Value *llvm::SimplifyFAddInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000959 const DataLayout &DL,
Chandler Carruth66b31302015-01-04 12:03:27 +0000960 const TargetLibraryInfo *TLI,
961 const DominatorTree *DT, AssumptionCache *AC,
962 const Instruction *CxtI) {
963 return ::SimplifyFAddInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +0000964 RecursionLimit);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000965}
966
967Value *llvm::SimplifyFSubInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000968 const DataLayout &DL,
Chandler Carruth66b31302015-01-04 12:03:27 +0000969 const TargetLibraryInfo *TLI,
970 const DominatorTree *DT, AssumptionCache *AC,
971 const Instruction *CxtI) {
972 return ::SimplifyFSubInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +0000973 RecursionLimit);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000974}
975
Chandler Carruth66b31302015-01-04 12:03:27 +0000976Value *llvm::SimplifyFMulInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000977 const DataLayout &DL,
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000978 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +0000979 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +0000980 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +0000981 return ::SimplifyFMulInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +0000982 RecursionLimit);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000983}
984
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000985Value *llvm::SimplifyMulInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +0000986 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +0000987 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +0000988 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +0000989 return ::SimplifyMulInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +0000990 RecursionLimit);
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000991}
992
Duncan Sands771e82a2011-01-28 16:51:11 +0000993/// SimplifyDiv - Given operands for an SDiv or UDiv, see if we can
994/// fold the result. If not, this returns null.
Anders Carlsson36c6d232011-02-05 18:33:43 +0000995static Value *SimplifyDiv(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000996 const Query &Q, unsigned MaxRecurse) {
Duncan Sands771e82a2011-01-28 16:51:11 +0000997 if (Constant *C0 = dyn_cast<Constant>(Op0)) {
998 if (Constant *C1 = dyn_cast<Constant>(Op1)) {
999 Constant *Ops[] = { C0, C1 };
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001000 return ConstantFoldInstOperands(Opcode, C0->getType(), Ops, Q.DL, Q.TLI);
Duncan Sands771e82a2011-01-28 16:51:11 +00001001 }
1002 }
1003
Duncan Sands65995fa2011-01-28 18:50:50 +00001004 bool isSigned = Opcode == Instruction::SDiv;
1005
Duncan Sands771e82a2011-01-28 16:51:11 +00001006 // X / undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001007 if (match(Op1, m_Undef()))
Duncan Sands771e82a2011-01-28 16:51:11 +00001008 return Op1;
1009
David Majnemer71dc8fb2014-12-10 07:52:18 +00001010 // X / 0 -> undef, we don't need to preserve faults!
1011 if (match(Op1, m_Zero()))
1012 return UndefValue::get(Op1->getType());
1013
Duncan Sands771e82a2011-01-28 16:51:11 +00001014 // undef / X -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001015 if (match(Op0, m_Undef()))
Duncan Sands771e82a2011-01-28 16:51:11 +00001016 return Constant::getNullValue(Op0->getType());
1017
1018 // 0 / X -> 0, we don't need to preserve faults!
1019 if (match(Op0, m_Zero()))
1020 return Op0;
1021
1022 // X / 1 -> X
1023 if (match(Op1, m_One()))
1024 return Op0;
Duncan Sands771e82a2011-01-28 16:51:11 +00001025
1026 if (Op0->getType()->isIntegerTy(1))
1027 // It can't be division by zero, hence it must be division by one.
1028 return Op0;
1029
1030 // X / X -> 1
1031 if (Op0 == Op1)
1032 return ConstantInt::get(Op0->getType(), 1);
1033
1034 // (X * Y) / Y -> X if the multiplication does not overflow.
Craig Topper9f008862014-04-15 04:59:12 +00001035 Value *X = nullptr, *Y = nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001036 if (match(Op0, m_Mul(m_Value(X), m_Value(Y))) && (X == Op1 || Y == Op1)) {
1037 if (Y != Op1) std::swap(X, Y); // Ensure expression is (X * Y) / Y, Y = Op1
Duncan Sands7cb61e52011-10-27 19:16:21 +00001038 OverflowingBinaryOperator *Mul = cast<OverflowingBinaryOperator>(Op0);
Duncan Sands5747aba2011-02-02 20:52:00 +00001039 // If the Mul knows it does not overflow, then we are good to go.
1040 if ((isSigned && Mul->hasNoSignedWrap()) ||
1041 (!isSigned && Mul->hasNoUnsignedWrap()))
1042 return X;
Duncan Sands771e82a2011-01-28 16:51:11 +00001043 // If X has the form X = A / Y then X * Y cannot overflow.
1044 if (BinaryOperator *Div = dyn_cast<BinaryOperator>(X))
1045 if (Div->getOpcode() == Opcode && Div->getOperand(1) == Y)
1046 return X;
1047 }
1048
Duncan Sands65995fa2011-01-28 18:50:50 +00001049 // (X rem Y) / Y -> 0
1050 if ((isSigned && match(Op0, m_SRem(m_Value(), m_Specific(Op1)))) ||
1051 (!isSigned && match(Op0, m_URem(m_Value(), m_Specific(Op1)))))
1052 return Constant::getNullValue(Op0->getType());
1053
David Majnemercb9d5962014-10-11 10:20:01 +00001054 // (X /u C1) /u C2 -> 0 if C1 * C2 overflow
1055 ConstantInt *C1, *C2;
1056 if (!isSigned && match(Op0, m_UDiv(m_Value(X), m_ConstantInt(C1))) &&
1057 match(Op1, m_ConstantInt(C2))) {
1058 bool Overflow;
1059 C1->getValue().umul_ov(C2->getValue(), Overflow);
1060 if (Overflow)
1061 return Constant::getNullValue(Op0->getType());
1062 }
1063
Duncan Sands65995fa2011-01-28 18:50:50 +00001064 // If the operation is with the result of a select instruction, check whether
1065 // operating on either branch of the select always yields the same value.
1066 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001067 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands65995fa2011-01-28 18:50:50 +00001068 return V;
1069
1070 // If the operation is with the result of a phi instruction, check whether
1071 // operating on all incoming values of the phi always yields the same value.
1072 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001073 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands65995fa2011-01-28 18:50:50 +00001074 return V;
1075
Craig Topper9f008862014-04-15 04:59:12 +00001076 return nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001077}
1078
1079/// SimplifySDivInst - Given operands for an SDiv, see if we can
1080/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001081static Value *SimplifySDivInst(Value *Op0, Value *Op1, const Query &Q,
1082 unsigned MaxRecurse) {
1083 if (Value *V = SimplifyDiv(Instruction::SDiv, Op0, Op1, Q, MaxRecurse))
Duncan Sands771e82a2011-01-28 16:51:11 +00001084 return V;
1085
Craig Topper9f008862014-04-15 04:59:12 +00001086 return nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001087}
1088
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001089Value *llvm::SimplifySDivInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001090 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001091 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001092 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001093 return ::SimplifySDivInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001094 RecursionLimit);
Duncan Sands771e82a2011-01-28 16:51:11 +00001095}
1096
1097/// SimplifyUDivInst - Given operands for a UDiv, see if we can
1098/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001099static Value *SimplifyUDivInst(Value *Op0, Value *Op1, const Query &Q,
1100 unsigned MaxRecurse) {
1101 if (Value *V = SimplifyDiv(Instruction::UDiv, Op0, Op1, Q, MaxRecurse))
Duncan Sands771e82a2011-01-28 16:51:11 +00001102 return V;
1103
Craig Topper9f008862014-04-15 04:59:12 +00001104 return nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001105}
1106
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001107Value *llvm::SimplifyUDivInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001108 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001109 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001110 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001111 return ::SimplifyUDivInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001112 RecursionLimit);
Duncan Sands771e82a2011-01-28 16:51:11 +00001113}
1114
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001115static Value *SimplifyFDivInst(Value *Op0, Value *Op1, FastMathFlags FMF,
1116 const Query &Q, unsigned) {
Frits van Bommelc2549662011-01-29 15:26:31 +00001117 // undef / X -> undef (the undef could be a snan).
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001118 if (match(Op0, m_Undef()))
Frits van Bommelc2549662011-01-29 15:26:31 +00001119 return Op0;
1120
1121 // X / undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001122 if (match(Op1, m_Undef()))
Frits van Bommelc2549662011-01-29 15:26:31 +00001123 return Op1;
1124
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001125 // 0 / X -> 0
1126 // Requires that NaNs are off (X could be zero) and signed zeroes are
1127 // ignored (X could be positive or negative, so the output sign is unknown).
1128 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op0, m_AnyZero()))
1129 return Op0;
1130
Craig Topper9f008862014-04-15 04:59:12 +00001131 return nullptr;
Frits van Bommelc2549662011-01-29 15:26:31 +00001132}
1133
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001134Value *llvm::SimplifyFDivInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001135 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001136 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001137 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001138 const Instruction *CxtI) {
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001139 return ::SimplifyFDivInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001140 RecursionLimit);
Frits van Bommelc2549662011-01-29 15:26:31 +00001141}
1142
Duncan Sandsa3e36992011-05-02 16:27:02 +00001143/// SimplifyRem - Given operands for an SRem or URem, see if we can
1144/// fold the result. If not, this returns null.
1145static Value *SimplifyRem(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001146 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsa3e36992011-05-02 16:27:02 +00001147 if (Constant *C0 = dyn_cast<Constant>(Op0)) {
1148 if (Constant *C1 = dyn_cast<Constant>(Op1)) {
1149 Constant *Ops[] = { C0, C1 };
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001150 return ConstantFoldInstOperands(Opcode, C0->getType(), Ops, Q.DL, Q.TLI);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001151 }
1152 }
1153
Duncan Sandsa3e36992011-05-02 16:27:02 +00001154 // X % undef -> undef
1155 if (match(Op1, m_Undef()))
1156 return Op1;
1157
1158 // undef % X -> 0
1159 if (match(Op0, m_Undef()))
1160 return Constant::getNullValue(Op0->getType());
1161
1162 // 0 % X -> 0, we don't need to preserve faults!
1163 if (match(Op0, m_Zero()))
1164 return Op0;
1165
1166 // X % 0 -> undef, we don't need to preserve faults!
1167 if (match(Op1, m_Zero()))
1168 return UndefValue::get(Op0->getType());
1169
1170 // X % 1 -> 0
1171 if (match(Op1, m_One()))
1172 return Constant::getNullValue(Op0->getType());
1173
1174 if (Op0->getType()->isIntegerTy(1))
1175 // It can't be remainder by zero, hence it must be remainder by one.
1176 return Constant::getNullValue(Op0->getType());
1177
1178 // X % X -> 0
1179 if (Op0 == Op1)
1180 return Constant::getNullValue(Op0->getType());
1181
David Majnemerb435a422014-09-17 04:16:35 +00001182 // (X % Y) % Y -> X % Y
1183 if ((Opcode == Instruction::SRem &&
1184 match(Op0, m_SRem(m_Value(), m_Specific(Op1)))) ||
1185 (Opcode == Instruction::URem &&
1186 match(Op0, m_URem(m_Value(), m_Specific(Op1)))))
David Majnemerac717f02014-09-17 03:34:34 +00001187 return Op0;
David Majnemerac717f02014-09-17 03:34:34 +00001188
Duncan Sandsa3e36992011-05-02 16:27:02 +00001189 // If the operation is with the result of a select instruction, check whether
1190 // operating on either branch of the select always yields the same value.
1191 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001192 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001193 return V;
1194
1195 // If the operation is with the result of a phi instruction, check whether
1196 // operating on all incoming values of the phi always yields the same value.
1197 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001198 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001199 return V;
1200
Craig Topper9f008862014-04-15 04:59:12 +00001201 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001202}
1203
1204/// SimplifySRemInst - Given operands for an SRem, see if we can
1205/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001206static Value *SimplifySRemInst(Value *Op0, Value *Op1, const Query &Q,
1207 unsigned MaxRecurse) {
1208 if (Value *V = SimplifyRem(Instruction::SRem, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001209 return V;
1210
Craig Topper9f008862014-04-15 04:59:12 +00001211 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001212}
1213
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001214Value *llvm::SimplifySRemInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001215 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001216 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001217 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001218 return ::SimplifySRemInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001219 RecursionLimit);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001220}
1221
1222/// SimplifyURemInst - Given operands for a URem, see if we can
1223/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001224static Value *SimplifyURemInst(Value *Op0, Value *Op1, const Query &Q,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001225 unsigned MaxRecurse) {
Duncan Sandsb8cee002012-03-13 11:42:19 +00001226 if (Value *V = SimplifyRem(Instruction::URem, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001227 return V;
1228
Craig Topper9f008862014-04-15 04:59:12 +00001229 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001230}
1231
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001232Value *llvm::SimplifyURemInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001233 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001234 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001235 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001236 return ::SimplifyURemInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001237 RecursionLimit);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001238}
1239
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001240static Value *SimplifyFRemInst(Value *Op0, Value *Op1, FastMathFlags FMF,
1241 const Query &, unsigned) {
Duncan Sandsa3e36992011-05-02 16:27:02 +00001242 // undef % X -> undef (the undef could be a snan).
1243 if (match(Op0, m_Undef()))
1244 return Op0;
1245
1246 // X % undef -> undef
1247 if (match(Op1, m_Undef()))
1248 return Op1;
1249
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001250 // 0 % X -> 0
1251 // Requires that NaNs are off (X could be zero) and signed zeroes are
1252 // ignored (X could be positive or negative, so the output sign is unknown).
1253 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op0, m_AnyZero()))
1254 return Op0;
1255
Craig Topper9f008862014-04-15 04:59:12 +00001256 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001257}
1258
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001259Value *llvm::SimplifyFRemInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001260 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001261 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001262 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001263 const Instruction *CxtI) {
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00001264 return ::SimplifyFRemInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001265 RecursionLimit);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001266}
1267
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00001268/// isUndefShift - Returns true if a shift by \c Amount always yields undef.
1269static bool isUndefShift(Value *Amount) {
1270 Constant *C = dyn_cast<Constant>(Amount);
1271 if (!C)
1272 return false;
1273
1274 // X shift by undef -> undef because it may shift by the bitwidth.
1275 if (isa<UndefValue>(C))
1276 return true;
1277
1278 // Shifting by the bitwidth or more is undefined.
1279 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
1280 if (CI->getValue().getLimitedValue() >=
1281 CI->getType()->getScalarSizeInBits())
1282 return true;
1283
1284 // If all lanes of a vector shift are undefined the whole shift is.
1285 if (isa<ConstantVector>(C) || isa<ConstantDataVector>(C)) {
1286 for (unsigned I = 0, E = C->getType()->getVectorNumElements(); I != E; ++I)
1287 if (!isUndefShift(C->getAggregateElement(I)))
1288 return false;
1289 return true;
1290 }
1291
1292 return false;
1293}
1294
Duncan Sands571fd9a2011-01-14 14:44:12 +00001295/// SimplifyShift - Given operands for an Shl, LShr or AShr, see if we can
Duncan Sands7f60dc12011-01-14 00:37:45 +00001296/// fold the result. If not, this returns null.
Duncan Sands571fd9a2011-01-14 14:44:12 +00001297static Value *SimplifyShift(unsigned Opcode, Value *Op0, Value *Op1,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001298 const Query &Q, unsigned MaxRecurse) {
Duncan Sands7f60dc12011-01-14 00:37:45 +00001299 if (Constant *C0 = dyn_cast<Constant>(Op0)) {
1300 if (Constant *C1 = dyn_cast<Constant>(Op1)) {
1301 Constant *Ops[] = { C0, C1 };
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001302 return ConstantFoldInstOperands(Opcode, C0->getType(), Ops, Q.DL, Q.TLI);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001303 }
1304 }
1305
Duncan Sands571fd9a2011-01-14 14:44:12 +00001306 // 0 shift by X -> 0
Duncan Sands7f60dc12011-01-14 00:37:45 +00001307 if (match(Op0, m_Zero()))
1308 return Op0;
1309
Duncan Sands571fd9a2011-01-14 14:44:12 +00001310 // X shift by 0 -> X
Duncan Sands7f60dc12011-01-14 00:37:45 +00001311 if (match(Op1, m_Zero()))
1312 return Op0;
1313
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00001314 // Fold undefined shifts.
1315 if (isUndefShift(Op1))
1316 return UndefValue::get(Op0->getType());
Duncan Sands7f60dc12011-01-14 00:37:45 +00001317
Duncan Sands571fd9a2011-01-14 14:44:12 +00001318 // If the operation is with the result of a select instruction, check whether
1319 // operating on either branch of the select always yields the same value.
1320 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001321 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001322 return V;
1323
1324 // If the operation is with the result of a phi instruction, check whether
1325 // operating on all incoming values of the phi always yields the same value.
1326 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001327 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001328 return V;
1329
Craig Topper9f008862014-04-15 04:59:12 +00001330 return nullptr;
Duncan Sands571fd9a2011-01-14 14:44:12 +00001331}
1332
David Majnemerbf7550e2014-11-05 00:59:59 +00001333/// \brief Given operands for an Shl, LShr or AShr, see if we can
1334/// fold the result. If not, this returns null.
1335static Value *SimplifyRightShift(unsigned Opcode, Value *Op0, Value *Op1,
1336 bool isExact, const Query &Q,
1337 unsigned MaxRecurse) {
1338 if (Value *V = SimplifyShift(Opcode, Op0, Op1, Q, MaxRecurse))
1339 return V;
1340
1341 // X >> X -> 0
1342 if (Op0 == Op1)
1343 return Constant::getNullValue(Op0->getType());
1344
David Majnemer65c52ae2014-12-17 01:54:33 +00001345 // undef >> X -> 0
1346 // undef >> X -> undef (if it's exact)
1347 if (match(Op0, m_Undef()))
1348 return isExact ? Op0 : Constant::getNullValue(Op0->getType());
1349
David Majnemerbf7550e2014-11-05 00:59:59 +00001350 // The low bit cannot be shifted out of an exact shift if it is set.
1351 if (isExact) {
1352 unsigned BitWidth = Op0->getType()->getScalarSizeInBits();
1353 APInt Op0KnownZero(BitWidth, 0);
1354 APInt Op0KnownOne(BitWidth, 0);
Chandler Carruth66b31302015-01-04 12:03:27 +00001355 computeKnownBits(Op0, Op0KnownZero, Op0KnownOne, Q.DL, /*Depth=*/0, Q.AC,
1356 Q.CxtI, Q.DT);
David Majnemerbf7550e2014-11-05 00:59:59 +00001357 if (Op0KnownOne[0])
1358 return Op0;
1359 }
1360
1361 return nullptr;
1362}
1363
Duncan Sands571fd9a2011-01-14 14:44:12 +00001364/// SimplifyShlInst - Given operands for an Shl, see if we can
1365/// fold the result. If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001366static Value *SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001367 const Query &Q, unsigned MaxRecurse) {
1368 if (Value *V = SimplifyShift(Instruction::Shl, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001369 return V;
1370
1371 // undef << X -> 0
David Majnemer65c52ae2014-12-17 01:54:33 +00001372 // undef << X -> undef if (if it's NSW/NUW)
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001373 if (match(Op0, m_Undef()))
David Majnemer65c52ae2014-12-17 01:54:33 +00001374 return isNSW || isNUW ? Op0 : Constant::getNullValue(Op0->getType());
Duncan Sands571fd9a2011-01-14 14:44:12 +00001375
Chris Lattner9e4aa022011-02-09 17:15:04 +00001376 // (X >> A) << A -> X
1377 Value *X;
Benjamin Kramer9442cd02012-01-01 17:55:30 +00001378 if (match(Op0, m_Exact(m_Shr(m_Value(X), m_Specific(Op1)))))
Chris Lattner9e4aa022011-02-09 17:15:04 +00001379 return X;
Craig Topper9f008862014-04-15 04:59:12 +00001380 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001381}
1382
Chris Lattner9e4aa022011-02-09 17:15:04 +00001383Value *llvm::SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001384 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001385 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001386 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001387 return ::SimplifyShlInst(Op0, Op1, isNSW, isNUW, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00001388 RecursionLimit);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001389}
1390
1391/// SimplifyLShrInst - Given operands for an LShr, see if we can
1392/// fold the result. If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001393static Value *SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001394 const Query &Q, unsigned MaxRecurse) {
David Majnemerbf7550e2014-11-05 00:59:59 +00001395 if (Value *V = SimplifyRightShift(Instruction::LShr, Op0, Op1, isExact, Q,
1396 MaxRecurse))
1397 return V;
David Majnemera80fed72013-07-09 22:01:22 +00001398
Chris Lattner9e4aa022011-02-09 17:15:04 +00001399 // (X << A) >> A -> X
1400 Value *X;
David Majnemer4f438372014-11-04 17:38:50 +00001401 if (match(Op0, m_NUWShl(m_Value(X), m_Specific(Op1))))
Chris Lattner9e4aa022011-02-09 17:15:04 +00001402 return X;
Duncan Sandsd114ab32011-02-13 17:15:40 +00001403
Craig Topper9f008862014-04-15 04:59:12 +00001404 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001405}
1406
Chris Lattner9e4aa022011-02-09 17:15:04 +00001407Value *llvm::SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001408 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001409 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001410 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001411 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001412 return ::SimplifyLShrInst(Op0, Op1, isExact, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00001413 RecursionLimit);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001414}
1415
1416/// SimplifyAShrInst - Given operands for an AShr, see if we can
1417/// fold the result. If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001418static Value *SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001419 const Query &Q, unsigned MaxRecurse) {
David Majnemerbf7550e2014-11-05 00:59:59 +00001420 if (Value *V = SimplifyRightShift(Instruction::AShr, Op0, Op1, isExact, Q,
1421 MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001422 return V;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001423
1424 // all ones >>a X -> all ones
1425 if (match(Op0, m_AllOnes()))
1426 return Op0;
1427
Chris Lattner9e4aa022011-02-09 17:15:04 +00001428 // (X << A) >> A -> X
1429 Value *X;
David Majnemer2de97fc2014-11-04 17:47:13 +00001430 if (match(Op0, m_NSWShl(m_Value(X), m_Specific(Op1))))
Chris Lattner9e4aa022011-02-09 17:15:04 +00001431 return X;
Duncan Sandsd114ab32011-02-13 17:15:40 +00001432
Suyog Sarda68862412014-07-17 06:28:15 +00001433 // Arithmetic shifting an all-sign-bit value is a no-op.
Chandler Carruth66b31302015-01-04 12:03:27 +00001434 unsigned NumSignBits = ComputeNumSignBits(Op0, Q.DL, 0, Q.AC, Q.CxtI, Q.DT);
Suyog Sarda68862412014-07-17 06:28:15 +00001435 if (NumSignBits == Op0->getType()->getScalarSizeInBits())
1436 return Op0;
1437
Craig Topper9f008862014-04-15 04:59:12 +00001438 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001439}
1440
Chris Lattner9e4aa022011-02-09 17:15:04 +00001441Value *llvm::SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001442 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001443 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001444 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001445 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001446 return ::SimplifyAShrInst(Op0, Op1, isExact, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00001447 RecursionLimit);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001448}
1449
David Majnemer1af36e52014-12-06 10:51:40 +00001450static Value *simplifyUnsignedRangeCheck(ICmpInst *ZeroICmp,
1451 ICmpInst *UnsignedICmp, bool IsAnd) {
1452 Value *X, *Y;
1453
1454 ICmpInst::Predicate EqPred;
David Majnemerd5b3aa42014-12-08 18:30:43 +00001455 if (!match(ZeroICmp, m_ICmp(EqPred, m_Value(Y), m_Zero())) ||
1456 !ICmpInst::isEquality(EqPred))
David Majnemer1af36e52014-12-06 10:51:40 +00001457 return nullptr;
1458
1459 ICmpInst::Predicate UnsignedPred;
1460 if (match(UnsignedICmp, m_ICmp(UnsignedPred, m_Value(X), m_Specific(Y))) &&
1461 ICmpInst::isUnsigned(UnsignedPred))
1462 ;
1463 else if (match(UnsignedICmp,
1464 m_ICmp(UnsignedPred, m_Value(Y), m_Specific(X))) &&
1465 ICmpInst::isUnsigned(UnsignedPred))
1466 UnsignedPred = ICmpInst::getSwappedPredicate(UnsignedPred);
1467 else
1468 return nullptr;
1469
1470 // X < Y && Y != 0 --> X < Y
1471 // X < Y || Y != 0 --> Y != 0
1472 if (UnsignedPred == ICmpInst::ICMP_ULT && EqPred == ICmpInst::ICMP_NE)
1473 return IsAnd ? UnsignedICmp : ZeroICmp;
1474
1475 // X >= Y || Y != 0 --> true
1476 // X >= Y || Y == 0 --> X >= Y
1477 if (UnsignedPred == ICmpInst::ICMP_UGE && !IsAnd) {
1478 if (EqPred == ICmpInst::ICMP_NE)
1479 return getTrue(UnsignedICmp->getType());
1480 return UnsignedICmp;
1481 }
1482
David Majnemerd5b3aa42014-12-08 18:30:43 +00001483 // X < Y && Y == 0 --> false
1484 if (UnsignedPred == ICmpInst::ICMP_ULT && EqPred == ICmpInst::ICMP_EQ &&
1485 IsAnd)
1486 return getFalse(UnsignedICmp->getType());
1487
David Majnemer1af36e52014-12-06 10:51:40 +00001488 return nullptr;
1489}
1490
David Majnemera315bd82014-09-15 08:15:28 +00001491// Simplify (and (icmp ...) (icmp ...)) to true when we can tell that the range
1492// of possible values cannot be satisfied.
1493static Value *SimplifyAndOfICmps(ICmpInst *Op0, ICmpInst *Op1) {
1494 ICmpInst::Predicate Pred0, Pred1;
1495 ConstantInt *CI1, *CI2;
1496 Value *V;
David Majnemer1af36e52014-12-06 10:51:40 +00001497
1498 if (Value *X = simplifyUnsignedRangeCheck(Op0, Op1, /*IsAnd=*/true))
1499 return X;
1500
David Majnemera315bd82014-09-15 08:15:28 +00001501 if (!match(Op0, m_ICmp(Pred0, m_Add(m_Value(V), m_ConstantInt(CI1)),
1502 m_ConstantInt(CI2))))
1503 return nullptr;
1504
1505 if (!match(Op1, m_ICmp(Pred1, m_Specific(V), m_Specific(CI1))))
1506 return nullptr;
1507
1508 Type *ITy = Op0->getType();
1509
1510 auto *AddInst = cast<BinaryOperator>(Op0->getOperand(0));
1511 bool isNSW = AddInst->hasNoSignedWrap();
1512 bool isNUW = AddInst->hasNoUnsignedWrap();
1513
1514 const APInt &CI1V = CI1->getValue();
1515 const APInt &CI2V = CI2->getValue();
1516 const APInt Delta = CI2V - CI1V;
1517 if (CI1V.isStrictlyPositive()) {
1518 if (Delta == 2) {
1519 if (Pred0 == ICmpInst::ICMP_ULT && Pred1 == ICmpInst::ICMP_SGT)
1520 return getFalse(ITy);
1521 if (Pred0 == ICmpInst::ICMP_SLT && Pred1 == ICmpInst::ICMP_SGT && isNSW)
1522 return getFalse(ITy);
1523 }
1524 if (Delta == 1) {
1525 if (Pred0 == ICmpInst::ICMP_ULE && Pred1 == ICmpInst::ICMP_SGT)
1526 return getFalse(ITy);
1527 if (Pred0 == ICmpInst::ICMP_SLE && Pred1 == ICmpInst::ICMP_SGT && isNSW)
1528 return getFalse(ITy);
1529 }
1530 }
1531 if (CI1V.getBoolValue() && isNUW) {
1532 if (Delta == 2)
1533 if (Pred0 == ICmpInst::ICMP_ULT && Pred1 == ICmpInst::ICMP_UGT)
1534 return getFalse(ITy);
1535 if (Delta == 1)
1536 if (Pred0 == ICmpInst::ICMP_ULE && Pred1 == ICmpInst::ICMP_UGT)
1537 return getFalse(ITy);
1538 }
1539
1540 return nullptr;
1541}
1542
Chris Lattnera71e9d62009-11-10 00:55:12 +00001543/// SimplifyAndInst - Given operands for an And, see if we can
Chris Lattner084a1b52009-11-09 22:57:59 +00001544/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001545static Value *SimplifyAndInst(Value *Op0, Value *Op1, const Query &Q,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001546 unsigned MaxRecurse) {
Chris Lattnera71e9d62009-11-10 00:55:12 +00001547 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
1548 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
1549 Constant *Ops[] = { CLHS, CRHS };
1550 return ConstantFoldInstOperands(Instruction::And, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001551 Ops, Q.DL, Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00001552 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001553
Chris Lattnera71e9d62009-11-10 00:55:12 +00001554 // Canonicalize the constant to the RHS.
1555 std::swap(Op0, Op1);
1556 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001557
Chris Lattnera71e9d62009-11-10 00:55:12 +00001558 // X & undef -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001559 if (match(Op1, m_Undef()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001560 return Constant::getNullValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001561
Chris Lattnera71e9d62009-11-10 00:55:12 +00001562 // X & X = X
Duncan Sands772749a2011-01-01 20:08:02 +00001563 if (Op0 == Op1)
Chris Lattnera71e9d62009-11-10 00:55:12 +00001564 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001565
Duncan Sandsc89ac072010-11-17 18:52:15 +00001566 // X & 0 = 0
1567 if (match(Op1, m_Zero()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001568 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001569
Duncan Sandsc89ac072010-11-17 18:52:15 +00001570 // X & -1 = X
1571 if (match(Op1, m_AllOnes()))
1572 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001573
Chris Lattnera71e9d62009-11-10 00:55:12 +00001574 // A & ~A = ~A & A = 0
Chris Lattner9e4aa022011-02-09 17:15:04 +00001575 if (match(Op0, m_Not(m_Specific(Op1))) ||
1576 match(Op1, m_Not(m_Specific(Op0))))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001577 return Constant::getNullValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001578
Chris Lattnera71e9d62009-11-10 00:55:12 +00001579 // (A | ?) & A = A
Craig Topper9f008862014-04-15 04:59:12 +00001580 Value *A = nullptr, *B = nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00001581 if (match(Op0, m_Or(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001582 (A == Op1 || B == Op1))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001583 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001584
Chris Lattnera71e9d62009-11-10 00:55:12 +00001585 // A & (A | ?) = A
1586 if (match(Op1, m_Or(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001587 (A == Op0 || B == Op0))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001588 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001589
Duncan Sandsba286d72011-10-26 20:55:21 +00001590 // A & (-A) = A if A is a power of two or zero.
1591 if (match(Op0, m_Neg(m_Specific(Op1))) ||
1592 match(Op1, m_Neg(m_Specific(Op0)))) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001593 if (isKnownToBeAPowerOfTwo(Op0, Q.DL, /*OrZero*/ true, 0, Q.AC, Q.CxtI,
1594 Q.DT))
Duncan Sandsba286d72011-10-26 20:55:21 +00001595 return Op0;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001596 if (isKnownToBeAPowerOfTwo(Op1, Q.DL, /*OrZero*/ true, 0, Q.AC, Q.CxtI,
1597 Q.DT))
Duncan Sandsba286d72011-10-26 20:55:21 +00001598 return Op1;
1599 }
1600
David Majnemera315bd82014-09-15 08:15:28 +00001601 if (auto *ICILHS = dyn_cast<ICmpInst>(Op0)) {
1602 if (auto *ICIRHS = dyn_cast<ICmpInst>(Op1)) {
1603 if (Value *V = SimplifyAndOfICmps(ICILHS, ICIRHS))
1604 return V;
1605 if (Value *V = SimplifyAndOfICmps(ICIRHS, ICILHS))
1606 return V;
1607 }
1608 }
1609
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001610 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001611 if (Value *V = SimplifyAssociativeBinOp(Instruction::And, Op0, Op1, Q,
1612 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001613 return V;
Benjamin Kramer8c35fb02010-09-10 22:39:55 +00001614
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001615 // And distributes over Or. Try some generic simplifications based on this.
1616 if (Value *V = ExpandBinOp(Instruction::And, Op0, Op1, Instruction::Or,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001617 Q, MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001618 return V;
1619
1620 // And distributes over Xor. Try some generic simplifications based on this.
1621 if (Value *V = ExpandBinOp(Instruction::And, Op0, Op1, Instruction::Xor,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001622 Q, MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001623 return V;
1624
Duncan Sandsb0579e92010-11-10 13:00:08 +00001625 // If the operation is with the result of a select instruction, check whether
1626 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001627 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001628 if (Value *V = ThreadBinOpOverSelect(Instruction::And, Op0, Op1, Q,
1629 MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001630 return V;
1631
1632 // If the operation is with the result of a phi instruction, check whether
1633 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001634 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001635 if (Value *V = ThreadBinOpOverPHI(Instruction::And, Op0, Op1, Q,
Duncan Sandsf64e6902010-12-21 09:09:15 +00001636 MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00001637 return V;
1638
Craig Topper9f008862014-04-15 04:59:12 +00001639 return nullptr;
Chris Lattner084a1b52009-11-09 22:57:59 +00001640}
1641
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001642Value *llvm::SimplifyAndInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001643 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001644 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001645 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001646 return ::SimplifyAndInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001647 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001648}
1649
David Majnemera315bd82014-09-15 08:15:28 +00001650// Simplify (or (icmp ...) (icmp ...)) to true when we can tell that the union
1651// contains all possible values.
1652static Value *SimplifyOrOfICmps(ICmpInst *Op0, ICmpInst *Op1) {
1653 ICmpInst::Predicate Pred0, Pred1;
1654 ConstantInt *CI1, *CI2;
1655 Value *V;
David Majnemer1af36e52014-12-06 10:51:40 +00001656
1657 if (Value *X = simplifyUnsignedRangeCheck(Op0, Op1, /*IsAnd=*/false))
1658 return X;
1659
David Majnemera315bd82014-09-15 08:15:28 +00001660 if (!match(Op0, m_ICmp(Pred0, m_Add(m_Value(V), m_ConstantInt(CI1)),
1661 m_ConstantInt(CI2))))
1662 return nullptr;
1663
1664 if (!match(Op1, m_ICmp(Pred1, m_Specific(V), m_Specific(CI1))))
1665 return nullptr;
1666
1667 Type *ITy = Op0->getType();
1668
1669 auto *AddInst = cast<BinaryOperator>(Op0->getOperand(0));
1670 bool isNSW = AddInst->hasNoSignedWrap();
1671 bool isNUW = AddInst->hasNoUnsignedWrap();
1672
1673 const APInt &CI1V = CI1->getValue();
1674 const APInt &CI2V = CI2->getValue();
1675 const APInt Delta = CI2V - CI1V;
1676 if (CI1V.isStrictlyPositive()) {
1677 if (Delta == 2) {
1678 if (Pred0 == ICmpInst::ICMP_UGE && Pred1 == ICmpInst::ICMP_SLE)
1679 return getTrue(ITy);
1680 if (Pred0 == ICmpInst::ICMP_SGE && Pred1 == ICmpInst::ICMP_SLE && isNSW)
1681 return getTrue(ITy);
1682 }
1683 if (Delta == 1) {
1684 if (Pred0 == ICmpInst::ICMP_UGT && Pred1 == ICmpInst::ICMP_SLE)
1685 return getTrue(ITy);
1686 if (Pred0 == ICmpInst::ICMP_SGT && Pred1 == ICmpInst::ICMP_SLE && isNSW)
1687 return getTrue(ITy);
1688 }
1689 }
1690 if (CI1V.getBoolValue() && isNUW) {
1691 if (Delta == 2)
1692 if (Pred0 == ICmpInst::ICMP_UGE && Pred1 == ICmpInst::ICMP_ULE)
1693 return getTrue(ITy);
1694 if (Delta == 1)
1695 if (Pred0 == ICmpInst::ICMP_UGT && Pred1 == ICmpInst::ICMP_ULE)
1696 return getTrue(ITy);
1697 }
1698
1699 return nullptr;
1700}
1701
Chris Lattnera71e9d62009-11-10 00:55:12 +00001702/// SimplifyOrInst - Given operands for an Or, see if we can
1703/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001704static Value *SimplifyOrInst(Value *Op0, Value *Op1, const Query &Q,
1705 unsigned MaxRecurse) {
Chris Lattnera71e9d62009-11-10 00:55:12 +00001706 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
1707 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
1708 Constant *Ops[] = { CLHS, CRHS };
1709 return ConstantFoldInstOperands(Instruction::Or, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001710 Ops, Q.DL, Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00001711 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001712
Chris Lattnera71e9d62009-11-10 00:55:12 +00001713 // Canonicalize the constant to the RHS.
1714 std::swap(Op0, Op1);
1715 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001716
Chris Lattnera71e9d62009-11-10 00:55:12 +00001717 // X | undef -> -1
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001718 if (match(Op1, m_Undef()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001719 return Constant::getAllOnesValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001720
Chris Lattnera71e9d62009-11-10 00:55:12 +00001721 // X | X = X
Duncan Sands772749a2011-01-01 20:08:02 +00001722 if (Op0 == Op1)
Chris Lattnera71e9d62009-11-10 00:55:12 +00001723 return Op0;
1724
Duncan Sandsc89ac072010-11-17 18:52:15 +00001725 // X | 0 = X
1726 if (match(Op1, m_Zero()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001727 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001728
Duncan Sandsc89ac072010-11-17 18:52:15 +00001729 // X | -1 = -1
1730 if (match(Op1, m_AllOnes()))
1731 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001732
Chris Lattnera71e9d62009-11-10 00:55:12 +00001733 // A | ~A = ~A | A = -1
Chris Lattner9e4aa022011-02-09 17:15:04 +00001734 if (match(Op0, m_Not(m_Specific(Op1))) ||
1735 match(Op1, m_Not(m_Specific(Op0))))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001736 return Constant::getAllOnesValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001737
Chris Lattnera71e9d62009-11-10 00:55:12 +00001738 // (A & ?) | A = A
Craig Topper9f008862014-04-15 04:59:12 +00001739 Value *A = nullptr, *B = nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00001740 if (match(Op0, m_And(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001741 (A == Op1 || B == Op1))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001742 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001743
Chris Lattnera71e9d62009-11-10 00:55:12 +00001744 // A | (A & ?) = A
1745 if (match(Op1, m_And(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001746 (A == Op0 || B == Op0))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001747 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001748
Benjamin Kramer5b7a4e02011-02-20 15:20:01 +00001749 // ~(A & ?) | A = -1
1750 if (match(Op0, m_Not(m_And(m_Value(A), m_Value(B)))) &&
1751 (A == Op1 || B == Op1))
1752 return Constant::getAllOnesValue(Op1->getType());
1753
1754 // A | ~(A & ?) = -1
1755 if (match(Op1, m_Not(m_And(m_Value(A), m_Value(B)))) &&
1756 (A == Op0 || B == Op0))
1757 return Constant::getAllOnesValue(Op0->getType());
1758
David Majnemera315bd82014-09-15 08:15:28 +00001759 if (auto *ICILHS = dyn_cast<ICmpInst>(Op0)) {
1760 if (auto *ICIRHS = dyn_cast<ICmpInst>(Op1)) {
1761 if (Value *V = SimplifyOrOfICmps(ICILHS, ICIRHS))
1762 return V;
1763 if (Value *V = SimplifyOrOfICmps(ICIRHS, ICILHS))
1764 return V;
1765 }
1766 }
1767
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001768 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001769 if (Value *V = SimplifyAssociativeBinOp(Instruction::Or, Op0, Op1, Q,
1770 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001771 return V;
Benjamin Kramer8c35fb02010-09-10 22:39:55 +00001772
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001773 // Or distributes over And. Try some generic simplifications based on this.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001774 if (Value *V = ExpandBinOp(Instruction::Or, Op0, Op1, Instruction::And, Q,
1775 MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001776 return V;
1777
Duncan Sandsb0579e92010-11-10 13:00:08 +00001778 // If the operation is with the result of a select instruction, check whether
1779 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001780 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001781 if (Value *V = ThreadBinOpOverSelect(Instruction::Or, Op0, Op1, Q,
Duncan Sandsf64e6902010-12-21 09:09:15 +00001782 MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001783 return V;
1784
Nick Lewycky8561a492014-06-19 03:51:46 +00001785 // (A & C)|(B & D)
1786 Value *C = nullptr, *D = nullptr;
1787 if (match(Op0, m_And(m_Value(A), m_Value(C))) &&
1788 match(Op1, m_And(m_Value(B), m_Value(D)))) {
1789 ConstantInt *C1 = dyn_cast<ConstantInt>(C);
1790 ConstantInt *C2 = dyn_cast<ConstantInt>(D);
1791 if (C1 && C2 && (C1->getValue() == ~C2->getValue())) {
1792 // (A & C1)|(B & C2)
1793 // If we have: ((V + N) & C1) | (V & C2)
1794 // .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0
1795 // replace with V+N.
1796 Value *V1, *V2;
1797 if ((C2->getValue() & (C2->getValue() + 1)) == 0 && // C2 == 0+1+
1798 match(A, m_Add(m_Value(V1), m_Value(V2)))) {
1799 // Add commutes, try both ways.
Chandler Carruth66b31302015-01-04 12:03:27 +00001800 if (V1 == B &&
1801 MaskedValueIsZero(V2, C2->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001802 return A;
Chandler Carruth66b31302015-01-04 12:03:27 +00001803 if (V2 == B &&
1804 MaskedValueIsZero(V1, C2->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001805 return A;
1806 }
1807 // Or commutes, try both ways.
1808 if ((C1->getValue() & (C1->getValue() + 1)) == 0 &&
1809 match(B, m_Add(m_Value(V1), m_Value(V2)))) {
1810 // Add commutes, try both ways.
Chandler Carruth66b31302015-01-04 12:03:27 +00001811 if (V1 == A &&
1812 MaskedValueIsZero(V2, C1->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001813 return B;
Chandler Carruth66b31302015-01-04 12:03:27 +00001814 if (V2 == A &&
1815 MaskedValueIsZero(V1, C1->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001816 return B;
1817 }
1818 }
1819 }
1820
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001821 // If the operation is with the result of a phi instruction, check whether
1822 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001823 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001824 if (Value *V = ThreadBinOpOverPHI(Instruction::Or, Op0, Op1, Q, MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00001825 return V;
1826
Craig Topper9f008862014-04-15 04:59:12 +00001827 return nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00001828}
1829
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001830Value *llvm::SimplifyOrInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001831 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001832 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001833 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001834 return ::SimplifyOrInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001835 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001836}
Chris Lattnera71e9d62009-11-10 00:55:12 +00001837
Duncan Sandsc89ac072010-11-17 18:52:15 +00001838/// SimplifyXorInst - Given operands for a Xor, see if we can
1839/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001840static Value *SimplifyXorInst(Value *Op0, Value *Op1, const Query &Q,
1841 unsigned MaxRecurse) {
Duncan Sandsc89ac072010-11-17 18:52:15 +00001842 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
1843 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
1844 Constant *Ops[] = { CLHS, CRHS };
1845 return ConstantFoldInstOperands(Instruction::Xor, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001846 Ops, Q.DL, Q.TLI);
Duncan Sandsc89ac072010-11-17 18:52:15 +00001847 }
1848
1849 // Canonicalize the constant to the RHS.
1850 std::swap(Op0, Op1);
1851 }
1852
1853 // A ^ undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001854 if (match(Op1, m_Undef()))
Duncan Sands019a4182010-12-15 11:02:22 +00001855 return Op1;
Duncan Sandsc89ac072010-11-17 18:52:15 +00001856
1857 // A ^ 0 = A
1858 if (match(Op1, m_Zero()))
1859 return Op0;
1860
Eli Friedmanad3cfe72011-08-17 19:31:49 +00001861 // A ^ A = 0
1862 if (Op0 == Op1)
1863 return Constant::getNullValue(Op0->getType());
1864
Duncan Sandsc89ac072010-11-17 18:52:15 +00001865 // A ^ ~A = ~A ^ A = -1
Chris Lattner9e4aa022011-02-09 17:15:04 +00001866 if (match(Op0, m_Not(m_Specific(Op1))) ||
1867 match(Op1, m_Not(m_Specific(Op0))))
Duncan Sandsc89ac072010-11-17 18:52:15 +00001868 return Constant::getAllOnesValue(Op0->getType());
1869
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001870 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001871 if (Value *V = SimplifyAssociativeBinOp(Instruction::Xor, Op0, Op1, Q,
1872 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001873 return V;
Duncan Sandsc89ac072010-11-17 18:52:15 +00001874
Duncan Sandsb238de02010-11-19 09:20:39 +00001875 // Threading Xor over selects and phi nodes is pointless, so don't bother.
1876 // Threading over the select in "A ^ select(cond, B, C)" means evaluating
1877 // "A^B" and "A^C" and seeing if they are equal; but they are equal if and
1878 // only if B and C are equal. If B and C are equal then (since we assume
1879 // that operands have already been simplified) "select(cond, B, C)" should
1880 // have been simplified to the common value of B and C already. Analysing
1881 // "A^B" and "A^C" thus gains nothing, but costs compile time. Similarly
1882 // for threading over phi nodes.
Duncan Sandsc89ac072010-11-17 18:52:15 +00001883
Craig Topper9f008862014-04-15 04:59:12 +00001884 return nullptr;
Duncan Sandsc89ac072010-11-17 18:52:15 +00001885}
1886
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001887Value *llvm::SimplifyXorInst(Value *Op0, Value *Op1, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001888 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001889 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001890 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001891 return ::SimplifyXorInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001892 RecursionLimit);
Duncan Sandsc89ac072010-11-17 18:52:15 +00001893}
1894
Chris Lattner229907c2011-07-18 04:54:35 +00001895static Type *GetCompareTy(Value *Op) {
Chris Lattnerccfdceb2009-11-09 23:55:12 +00001896 return CmpInst::makeCmpResultType(Op->getType());
1897}
1898
Duncan Sandsaf327282011-05-07 16:56:49 +00001899/// ExtractEquivalentCondition - Rummage around inside V looking for something
1900/// equivalent to the comparison "LHS Pred RHS". Return such a value if found,
1901/// otherwise return null. Helper function for analyzing max/min idioms.
1902static Value *ExtractEquivalentCondition(Value *V, CmpInst::Predicate Pred,
1903 Value *LHS, Value *RHS) {
1904 SelectInst *SI = dyn_cast<SelectInst>(V);
1905 if (!SI)
Craig Topper9f008862014-04-15 04:59:12 +00001906 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00001907 CmpInst *Cmp = dyn_cast<CmpInst>(SI->getCondition());
1908 if (!Cmp)
Craig Topper9f008862014-04-15 04:59:12 +00001909 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00001910 Value *CmpLHS = Cmp->getOperand(0), *CmpRHS = Cmp->getOperand(1);
1911 if (Pred == Cmp->getPredicate() && LHS == CmpLHS && RHS == CmpRHS)
1912 return Cmp;
1913 if (Pred == CmpInst::getSwappedPredicate(Cmp->getPredicate()) &&
1914 LHS == CmpRHS && RHS == CmpLHS)
1915 return Cmp;
Craig Topper9f008862014-04-15 04:59:12 +00001916 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00001917}
1918
Dan Gohman9631d902013-02-01 00:49:06 +00001919// A significant optimization not implemented here is assuming that alloca
1920// addresses are not equal to incoming argument values. They don't *alias*,
1921// as we say, but that doesn't mean they aren't equal, so we take a
1922// conservative approach.
1923//
1924// This is inspired in part by C++11 5.10p1:
1925// "Two pointers of the same type compare equal if and only if they are both
1926// null, both point to the same function, or both represent the same
1927// address."
1928//
1929// This is pretty permissive.
1930//
1931// It's also partly due to C11 6.5.9p6:
1932// "Two pointers compare equal if and only if both are null pointers, both are
1933// pointers to the same object (including a pointer to an object and a
1934// subobject at its beginning) or function, both are pointers to one past the
1935// last element of the same array object, or one is a pointer to one past the
1936// end of one array object and the other is a pointer to the start of a
NAKAMURA Takumi065fd352013-04-08 23:05:21 +00001937// different array object that happens to immediately follow the first array
Dan Gohman9631d902013-02-01 00:49:06 +00001938// object in the address space.)
1939//
1940// C11's version is more restrictive, however there's no reason why an argument
1941// couldn't be a one-past-the-end value for a stack object in the caller and be
1942// equal to the beginning of a stack object in the callee.
1943//
1944// If the C and C++ standards are ever made sufficiently restrictive in this
1945// area, it may be possible to update LLVM's semantics accordingly and reinstate
1946// this optimization.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001947static Constant *computePointerICmp(const DataLayout &DL,
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001948 const TargetLibraryInfo *TLI,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001949 CmpInst::Predicate Pred, Value *LHS,
1950 Value *RHS) {
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001951 // First, skip past any trivial no-ops.
1952 LHS = LHS->stripPointerCasts();
1953 RHS = RHS->stripPointerCasts();
1954
1955 // A non-null pointer is not equal to a null pointer.
Benjamin Kramerfd4777c2013-09-24 16:37:51 +00001956 if (llvm::isKnownNonNull(LHS, TLI) && isa<ConstantPointerNull>(RHS) &&
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001957 (Pred == CmpInst::ICMP_EQ || Pred == CmpInst::ICMP_NE))
1958 return ConstantInt::get(GetCompareTy(LHS),
1959 !CmpInst::isTrueWhenEqual(Pred));
1960
Chandler Carruth8059c842012-03-25 21:28:14 +00001961 // We can only fold certain predicates on pointer comparisons.
1962 switch (Pred) {
1963 default:
Craig Topper9f008862014-04-15 04:59:12 +00001964 return nullptr;
Chandler Carruth8059c842012-03-25 21:28:14 +00001965
1966 // Equality comaprisons are easy to fold.
1967 case CmpInst::ICMP_EQ:
1968 case CmpInst::ICMP_NE:
1969 break;
1970
1971 // We can only handle unsigned relational comparisons because 'inbounds' on
1972 // a GEP only protects against unsigned wrapping.
1973 case CmpInst::ICMP_UGT:
1974 case CmpInst::ICMP_UGE:
1975 case CmpInst::ICMP_ULT:
1976 case CmpInst::ICMP_ULE:
1977 // However, we have to switch them to their signed variants to handle
1978 // negative indices from the base pointer.
1979 Pred = ICmpInst::getSignedPredicate(Pred);
1980 break;
1981 }
1982
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001983 // Strip off any constant offsets so that we can reason about them.
1984 // It's tempting to use getUnderlyingObject or even just stripInBoundsOffsets
1985 // here and compare base addresses like AliasAnalysis does, however there are
1986 // numerous hazards. AliasAnalysis and its utilities rely on special rules
1987 // governing loads and stores which don't apply to icmps. Also, AliasAnalysis
1988 // doesn't need to guarantee pointer inequality when it says NoAlias.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001989 Constant *LHSOffset = stripAndComputeConstantOffsets(DL, LHS);
1990 Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS);
Chandler Carruth8059c842012-03-25 21:28:14 +00001991
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001992 // If LHS and RHS are related via constant offsets to the same base
1993 // value, we can replace it with an icmp which just compares the offsets.
1994 if (LHS == RHS)
1995 return ConstantExpr::getICmp(Pred, LHSOffset, RHSOffset);
Chandler Carruth8059c842012-03-25 21:28:14 +00001996
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001997 // Various optimizations for (in)equality comparisons.
1998 if (Pred == CmpInst::ICMP_EQ || Pred == CmpInst::ICMP_NE) {
1999 // Different non-empty allocations that exist at the same time have
2000 // different addresses (if the program can tell). Global variables always
2001 // exist, so they always exist during the lifetime of each other and all
2002 // allocas. Two different allocas usually have different addresses...
2003 //
2004 // However, if there's an @llvm.stackrestore dynamically in between two
2005 // allocas, they may have the same address. It's tempting to reduce the
2006 // scope of the problem by only looking at *static* allocas here. That would
2007 // cover the majority of allocas while significantly reducing the likelihood
2008 // of having an @llvm.stackrestore pop up in the middle. However, it's not
2009 // actually impossible for an @llvm.stackrestore to pop up in the middle of
2010 // an entry block. Also, if we have a block that's not attached to a
2011 // function, we can't tell if it's "static" under the current definition.
2012 // Theoretically, this problem could be fixed by creating a new kind of
2013 // instruction kind specifically for static allocas. Such a new instruction
2014 // could be required to be at the top of the entry block, thus preventing it
2015 // from being subject to a @llvm.stackrestore. Instcombine could even
2016 // convert regular allocas into these special allocas. It'd be nifty.
2017 // However, until then, this problem remains open.
2018 //
2019 // So, we'll assume that two non-empty allocas have different addresses
2020 // for now.
2021 //
2022 // With all that, if the offsets are within the bounds of their allocations
2023 // (and not one-past-the-end! so we can't use inbounds!), and their
2024 // allocations aren't the same, the pointers are not equal.
2025 //
2026 // Note that it's not necessary to check for LHS being a global variable
2027 // address, due to canonicalization and constant folding.
2028 if (isa<AllocaInst>(LHS) &&
2029 (isa<AllocaInst>(RHS) || isa<GlobalVariable>(RHS))) {
Benjamin Kramerc05aa952013-02-01 15:21:10 +00002030 ConstantInt *LHSOffsetCI = dyn_cast<ConstantInt>(LHSOffset);
2031 ConstantInt *RHSOffsetCI = dyn_cast<ConstantInt>(RHSOffset);
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002032 uint64_t LHSSize, RHSSize;
Benjamin Kramerc05aa952013-02-01 15:21:10 +00002033 if (LHSOffsetCI && RHSOffsetCI &&
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002034 getObjectSize(LHS, LHSSize, DL, TLI) &&
2035 getObjectSize(RHS, RHSSize, DL, TLI)) {
Benjamin Kramerc05aa952013-02-01 15:21:10 +00002036 const APInt &LHSOffsetValue = LHSOffsetCI->getValue();
2037 const APInt &RHSOffsetValue = RHSOffsetCI->getValue();
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002038 if (!LHSOffsetValue.isNegative() &&
2039 !RHSOffsetValue.isNegative() &&
2040 LHSOffsetValue.ult(LHSSize) &&
2041 RHSOffsetValue.ult(RHSSize)) {
2042 return ConstantInt::get(GetCompareTy(LHS),
2043 !CmpInst::isTrueWhenEqual(Pred));
2044 }
2045 }
2046
2047 // Repeat the above check but this time without depending on DataLayout
2048 // or being able to compute a precise size.
2049 if (!cast<PointerType>(LHS->getType())->isEmptyTy() &&
2050 !cast<PointerType>(RHS->getType())->isEmptyTy() &&
2051 LHSOffset->isNullValue() &&
2052 RHSOffset->isNullValue())
2053 return ConstantInt::get(GetCompareTy(LHS),
2054 !CmpInst::isTrueWhenEqual(Pred));
2055 }
Benjamin Kramer942dfe62013-09-23 14:16:38 +00002056
2057 // Even if an non-inbounds GEP occurs along the path we can still optimize
2058 // equality comparisons concerning the result. We avoid walking the whole
2059 // chain again by starting where the last calls to
2060 // stripAndComputeConstantOffsets left off and accumulate the offsets.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002061 Constant *LHSNoBound = stripAndComputeConstantOffsets(DL, LHS, true);
2062 Constant *RHSNoBound = stripAndComputeConstantOffsets(DL, RHS, true);
Benjamin Kramer942dfe62013-09-23 14:16:38 +00002063 if (LHS == RHS)
2064 return ConstantExpr::getICmp(Pred,
2065 ConstantExpr::getAdd(LHSOffset, LHSNoBound),
2066 ConstantExpr::getAdd(RHSOffset, RHSNoBound));
Hal Finkelafcd8db2014-12-01 23:38:06 +00002067
2068 // If one side of the equality comparison must come from a noalias call
2069 // (meaning a system memory allocation function), and the other side must
2070 // come from a pointer that cannot overlap with dynamically-allocated
2071 // memory within the lifetime of the current function (allocas, byval
2072 // arguments, globals), then determine the comparison result here.
2073 SmallVector<Value *, 8> LHSUObjs, RHSUObjs;
2074 GetUnderlyingObjects(LHS, LHSUObjs, DL);
2075 GetUnderlyingObjects(RHS, RHSUObjs, DL);
2076
2077 // Is the set of underlying objects all noalias calls?
2078 auto IsNAC = [](SmallVectorImpl<Value *> &Objects) {
2079 return std::all_of(Objects.begin(), Objects.end(),
2080 [](Value *V){ return isNoAliasCall(V); });
2081 };
2082
2083 // Is the set of underlying objects all things which must be disjoint from
Hal Finkelaa19baf2014-12-04 17:45:19 +00002084 // noalias calls. For allocas, we consider only static ones (dynamic
2085 // allocas might be transformed into calls to malloc not simultaneously
2086 // live with the compared-to allocation). For globals, we exclude symbols
2087 // that might be resolve lazily to symbols in another dynamically-loaded
2088 // library (and, thus, could be malloc'ed by the implementation).
Hal Finkelafcd8db2014-12-01 23:38:06 +00002089 auto IsAllocDisjoint = [](SmallVectorImpl<Value *> &Objects) {
2090 return std::all_of(Objects.begin(), Objects.end(),
2091 [](Value *V){
Hal Finkelaa19baf2014-12-04 17:45:19 +00002092 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V))
2093 return AI->getParent() && AI->getParent()->getParent() &&
2094 AI->isStaticAlloca();
2095 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
2096 return (GV->hasLocalLinkage() ||
2097 GV->hasHiddenVisibility() ||
2098 GV->hasProtectedVisibility() ||
2099 GV->hasUnnamedAddr()) &&
2100 !GV->isThreadLocal();
Hal Finkelafcd8db2014-12-01 23:38:06 +00002101 if (const Argument *A = dyn_cast<Argument>(V))
2102 return A->hasByValAttr();
2103 return false;
2104 });
2105 };
2106
2107 if ((IsNAC(LHSUObjs) && IsAllocDisjoint(RHSUObjs)) ||
2108 (IsNAC(RHSUObjs) && IsAllocDisjoint(LHSUObjs)))
2109 return ConstantInt::get(GetCompareTy(LHS),
2110 !CmpInst::isTrueWhenEqual(Pred));
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002111 }
2112
2113 // Otherwise, fail.
Craig Topper9f008862014-04-15 04:59:12 +00002114 return nullptr;
Chandler Carruth8059c842012-03-25 21:28:14 +00002115}
Chris Lattner01990f02012-02-24 19:01:58 +00002116
Chris Lattnerc1f19072009-11-09 23:28:39 +00002117/// SimplifyICmpInst - Given operands for an ICmpInst, see if we can
2118/// fold the result. If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00002119static Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00002120 const Query &Q, unsigned MaxRecurse) {
Chris Lattner084a1b52009-11-09 22:57:59 +00002121 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate;
Chris Lattnerc1f19072009-11-09 23:28:39 +00002122 assert(CmpInst::isIntPredicate(Pred) && "Not an integer compare!");
Duncan Sands7e800d62010-11-14 11:23:23 +00002123
Chris Lattnera71e9d62009-11-10 00:55:12 +00002124 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
Chris Lattnercdfb80d2009-11-09 23:06:58 +00002125 if (Constant *CRHS = dyn_cast<Constant>(RHS))
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002126 return ConstantFoldCompareInstOperands(Pred, CLHS, CRHS, Q.DL, Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00002127
2128 // If we have a constant, make sure it is on the RHS.
2129 std::swap(LHS, RHS);
2130 Pred = CmpInst::getSwappedPredicate(Pred);
2131 }
Duncan Sands7e800d62010-11-14 11:23:23 +00002132
Chris Lattner229907c2011-07-18 04:54:35 +00002133 Type *ITy = GetCompareTy(LHS); // The return type.
2134 Type *OpTy = LHS->getType(); // The operand type.
Duncan Sands7e800d62010-11-14 11:23:23 +00002135
Chris Lattnerccfdceb2009-11-09 23:55:12 +00002136 // icmp X, X -> true/false
Chris Lattner3afc0722010-03-03 19:46:03 +00002137 // X icmp undef -> true/false. For example, icmp ugt %X, undef -> false
2138 // because X could be 0.
Duncan Sands772749a2011-01-01 20:08:02 +00002139 if (LHS == RHS || isa<UndefValue>(RHS))
Chris Lattnerccfdceb2009-11-09 23:55:12 +00002140 return ConstantInt::get(ITy, CmpInst::isTrueWhenEqual(Pred));
Duncan Sands7e800d62010-11-14 11:23:23 +00002141
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002142 // Special case logic when the operands have i1 type.
Nick Lewyckye659b842011-12-01 02:39:36 +00002143 if (OpTy->getScalarType()->isIntegerTy(1)) {
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002144 switch (Pred) {
2145 default: break;
2146 case ICmpInst::ICMP_EQ:
2147 // X == 1 -> X
2148 if (match(RHS, m_One()))
2149 return LHS;
2150 break;
2151 case ICmpInst::ICMP_NE:
2152 // X != 0 -> X
2153 if (match(RHS, m_Zero()))
2154 return LHS;
2155 break;
2156 case ICmpInst::ICMP_UGT:
2157 // X >u 0 -> X
2158 if (match(RHS, m_Zero()))
2159 return LHS;
2160 break;
2161 case ICmpInst::ICMP_UGE:
2162 // X >=u 1 -> X
2163 if (match(RHS, m_One()))
2164 return LHS;
2165 break;
2166 case ICmpInst::ICMP_SLT:
2167 // X <s 0 -> X
2168 if (match(RHS, m_Zero()))
2169 return LHS;
2170 break;
2171 case ICmpInst::ICMP_SLE:
2172 // X <=s -1 -> X
2173 if (match(RHS, m_One()))
2174 return LHS;
2175 break;
2176 }
2177 }
2178
Duncan Sandsd3951082011-01-25 09:38:29 +00002179 // If we are comparing with zero then try hard since this is a common case.
2180 if (match(RHS, m_Zero())) {
2181 bool LHSKnownNonNegative, LHSKnownNegative;
2182 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00002183 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sandsd3951082011-01-25 09:38:29 +00002184 case ICmpInst::ICMP_ULT:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002185 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002186 case ICmpInst::ICMP_UGE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002187 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002188 case ICmpInst::ICMP_EQ:
2189 case ICmpInst::ICMP_ULE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002190 if (isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002191 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002192 break;
2193 case ICmpInst::ICMP_NE:
2194 case ICmpInst::ICMP_UGT:
Chandler Carruth66b31302015-01-04 12:03:27 +00002195 if (isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002196 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002197 break;
2198 case ICmpInst::ICMP_SLT:
Chandler Carruth66b31302015-01-04 12:03:27 +00002199 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC,
2200 Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002201 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002202 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002203 if (LHSKnownNonNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002204 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002205 break;
2206 case ICmpInst::ICMP_SLE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002207 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC,
2208 Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002209 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002210 return getTrue(ITy);
Chandler Carruth66b31302015-01-04 12:03:27 +00002211 if (LHSKnownNonNegative &&
2212 isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002213 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002214 break;
2215 case ICmpInst::ICMP_SGE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002216 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC,
2217 Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002218 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002219 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002220 if (LHSKnownNonNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002221 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002222 break;
2223 case ICmpInst::ICMP_SGT:
Chandler Carruth66b31302015-01-04 12:03:27 +00002224 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC,
2225 Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002226 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002227 return getFalse(ITy);
Chandler Carruth66b31302015-01-04 12:03:27 +00002228 if (LHSKnownNonNegative &&
2229 isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002230 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002231 break;
2232 }
2233 }
2234
2235 // See if we are doing a comparison with a constant integer.
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002236 if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002237 // Rule out tautological comparisons (eg., ult 0 or uge 0).
2238 ConstantRange RHS_CR = ICmpInst::makeConstantRange(Pred, CI->getValue());
2239 if (RHS_CR.isEmptySet())
2240 return ConstantInt::getFalse(CI->getContext());
2241 if (RHS_CR.isFullSet())
2242 return ConstantInt::getTrue(CI->getContext());
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002243
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002244 // Many binary operators with constant RHS have easy to compute constant
2245 // range. Use them to check whether the comparison is a tautology.
David Majnemer78910fc2014-05-16 17:14:03 +00002246 unsigned Width = CI->getBitWidth();
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002247 APInt Lower = APInt(Width, 0);
2248 APInt Upper = APInt(Width, 0);
2249 ConstantInt *CI2;
2250 if (match(LHS, m_URem(m_Value(), m_ConstantInt(CI2)))) {
2251 // 'urem x, CI2' produces [0, CI2).
2252 Upper = CI2->getValue();
2253 } else if (match(LHS, m_SRem(m_Value(), m_ConstantInt(CI2)))) {
2254 // 'srem x, CI2' produces (-|CI2|, |CI2|).
2255 Upper = CI2->getValue().abs();
2256 Lower = (-Upper) + 1;
Duncan Sands92af0a82011-10-28 18:17:44 +00002257 } else if (match(LHS, m_UDiv(m_ConstantInt(CI2), m_Value()))) {
2258 // 'udiv CI2, x' produces [0, CI2].
Eli Friedman0bae8b22011-11-08 21:08:02 +00002259 Upper = CI2->getValue() + 1;
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002260 } else if (match(LHS, m_UDiv(m_Value(), m_ConstantInt(CI2)))) {
2261 // 'udiv x, CI2' produces [0, UINT_MAX / CI2].
2262 APInt NegOne = APInt::getAllOnesValue(Width);
2263 if (!CI2->isZero())
2264 Upper = NegOne.udiv(CI2->getValue()) + 1;
David Majnemerea8d5db2014-05-16 16:57:04 +00002265 } else if (match(LHS, m_SDiv(m_ConstantInt(CI2), m_Value()))) {
David Majnemer651ed5e2014-07-04 00:23:39 +00002266 if (CI2->isMinSignedValue()) {
2267 // 'sdiv INT_MIN, x' produces [INT_MIN, INT_MIN / -2].
2268 Lower = CI2->getValue();
2269 Upper = Lower.lshr(1) + 1;
2270 } else {
2271 // 'sdiv CI2, x' produces [-|CI2|, |CI2|].
2272 Upper = CI2->getValue().abs() + 1;
2273 Lower = (-Upper) + 1;
2274 }
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002275 } else if (match(LHS, m_SDiv(m_Value(), m_ConstantInt(CI2)))) {
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002276 APInt IntMin = APInt::getSignedMinValue(Width);
2277 APInt IntMax = APInt::getSignedMaxValue(Width);
David Majnemeraf9180f2014-07-14 20:38:45 +00002278 APInt Val = CI2->getValue();
2279 if (Val.isAllOnesValue()) {
2280 // 'sdiv x, -1' produces [INT_MIN + 1, INT_MAX]
2281 // where CI2 != -1 and CI2 != 0 and CI2 != 1
2282 Lower = IntMin + 1;
2283 Upper = IntMax + 1;
2284 } else if (Val.countLeadingZeros() < Width - 1) {
2285 // 'sdiv x, CI2' produces [INT_MIN / CI2, INT_MAX / CI2]
2286 // where CI2 != -1 and CI2 != 0 and CI2 != 1
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002287 Lower = IntMin.sdiv(Val);
David Majnemeraf9180f2014-07-14 20:38:45 +00002288 Upper = IntMax.sdiv(Val);
2289 if (Lower.sgt(Upper))
2290 std::swap(Lower, Upper);
2291 Upper = Upper + 1;
David Majnemer5ea4fc02014-07-14 19:49:57 +00002292 assert(Upper != Lower && "Upper part of range has wrapped!");
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002293 }
David Majnemerd6d16712014-08-27 18:03:46 +00002294 } else if (match(LHS, m_NUWShl(m_ConstantInt(CI2), m_Value()))) {
2295 // 'shl nuw CI2, x' produces [CI2, CI2 << CLZ(CI2)]
2296 Lower = CI2->getValue();
2297 Upper = Lower.shl(Lower.countLeadingZeros()) + 1;
2298 } else if (match(LHS, m_NSWShl(m_ConstantInt(CI2), m_Value()))) {
2299 if (CI2->isNegative()) {
2300 // 'shl nsw CI2, x' produces [CI2 << CLO(CI2)-1, CI2]
2301 unsigned ShiftAmount = CI2->getValue().countLeadingOnes() - 1;
2302 Lower = CI2->getValue().shl(ShiftAmount);
2303 Upper = CI2->getValue() + 1;
2304 } else {
2305 // 'shl nsw CI2, x' produces [CI2, CI2 << CLZ(CI2)-1]
2306 unsigned ShiftAmount = CI2->getValue().countLeadingZeros() - 1;
2307 Lower = CI2->getValue();
2308 Upper = CI2->getValue().shl(ShiftAmount) + 1;
2309 }
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002310 } else if (match(LHS, m_LShr(m_Value(), m_ConstantInt(CI2)))) {
2311 // 'lshr x, CI2' produces [0, UINT_MAX >> CI2].
2312 APInt NegOne = APInt::getAllOnesValue(Width);
2313 if (CI2->getValue().ult(Width))
2314 Upper = NegOne.lshr(CI2->getValue()) + 1;
David Majnemer78910fc2014-05-16 17:14:03 +00002315 } else if (match(LHS, m_LShr(m_ConstantInt(CI2), m_Value()))) {
2316 // 'lshr CI2, x' produces [CI2 >> (Width-1), CI2].
2317 unsigned ShiftAmount = Width - 1;
2318 if (!CI2->isZero() && cast<BinaryOperator>(LHS)->isExact())
2319 ShiftAmount = CI2->getValue().countTrailingZeros();
2320 Lower = CI2->getValue().lshr(ShiftAmount);
2321 Upper = CI2->getValue() + 1;
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002322 } else if (match(LHS, m_AShr(m_Value(), m_ConstantInt(CI2)))) {
2323 // 'ashr x, CI2' produces [INT_MIN >> CI2, INT_MAX >> CI2].
2324 APInt IntMin = APInt::getSignedMinValue(Width);
2325 APInt IntMax = APInt::getSignedMaxValue(Width);
2326 if (CI2->getValue().ult(Width)) {
2327 Lower = IntMin.ashr(CI2->getValue());
2328 Upper = IntMax.ashr(CI2->getValue()) + 1;
2329 }
David Majnemer78910fc2014-05-16 17:14:03 +00002330 } else if (match(LHS, m_AShr(m_ConstantInt(CI2), m_Value()))) {
2331 unsigned ShiftAmount = Width - 1;
2332 if (!CI2->isZero() && cast<BinaryOperator>(LHS)->isExact())
2333 ShiftAmount = CI2->getValue().countTrailingZeros();
2334 if (CI2->isNegative()) {
2335 // 'ashr CI2, x' produces [CI2, CI2 >> (Width-1)]
2336 Lower = CI2->getValue();
2337 Upper = CI2->getValue().ashr(ShiftAmount) + 1;
2338 } else {
2339 // 'ashr CI2, x' produces [CI2 >> (Width-1), CI2]
2340 Lower = CI2->getValue().ashr(ShiftAmount);
2341 Upper = CI2->getValue() + 1;
2342 }
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002343 } else if (match(LHS, m_Or(m_Value(), m_ConstantInt(CI2)))) {
2344 // 'or x, CI2' produces [CI2, UINT_MAX].
2345 Lower = CI2->getValue();
2346 } else if (match(LHS, m_And(m_Value(), m_ConstantInt(CI2)))) {
2347 // 'and x, CI2' produces [0, CI2].
2348 Upper = CI2->getValue() + 1;
2349 }
2350 if (Lower != Upper) {
2351 ConstantRange LHS_CR = ConstantRange(Lower, Upper);
2352 if (RHS_CR.contains(LHS_CR))
2353 return ConstantInt::getTrue(RHS->getContext());
2354 if (RHS_CR.inverse().contains(LHS_CR))
2355 return ConstantInt::getFalse(RHS->getContext());
2356 }
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002357 }
2358
Duncan Sands8fb2c382011-01-20 13:21:55 +00002359 // Compare of cast, for example (zext X) != 0 -> X != 0
2360 if (isa<CastInst>(LHS) && (isa<Constant>(RHS) || isa<CastInst>(RHS))) {
2361 Instruction *LI = cast<CastInst>(LHS);
2362 Value *SrcOp = LI->getOperand(0);
Chris Lattner229907c2011-07-18 04:54:35 +00002363 Type *SrcTy = SrcOp->getType();
2364 Type *DstTy = LI->getType();
Duncan Sands8fb2c382011-01-20 13:21:55 +00002365
2366 // Turn icmp (ptrtoint x), (ptrtoint/constant) into a compare of the input
2367 // if the integer type is the same size as the pointer type.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002368 if (MaxRecurse && isa<PtrToIntInst>(LI) &&
2369 Q.DL.getTypeSizeInBits(SrcTy) == DstTy->getPrimitiveSizeInBits()) {
Duncan Sands8fb2c382011-01-20 13:21:55 +00002370 if (Constant *RHSC = dyn_cast<Constant>(RHS)) {
2371 // Transfer the cast to the constant.
2372 if (Value *V = SimplifyICmpInst(Pred, SrcOp,
2373 ConstantExpr::getIntToPtr(RHSC, SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002374 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002375 return V;
2376 } else if (PtrToIntInst *RI = dyn_cast<PtrToIntInst>(RHS)) {
2377 if (RI->getOperand(0)->getType() == SrcTy)
2378 // Compare without the cast.
2379 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002380 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002381 return V;
2382 }
2383 }
2384
2385 if (isa<ZExtInst>(LHS)) {
2386 // Turn icmp (zext X), (zext Y) into a compare of X and Y if they have the
2387 // same type.
2388 if (ZExtInst *RI = dyn_cast<ZExtInst>(RHS)) {
2389 if (MaxRecurse && SrcTy == RI->getOperand(0)->getType())
2390 // Compare X and Y. Note that signed predicates become unsigned.
2391 if (Value *V = SimplifyICmpInst(ICmpInst::getUnsignedPredicate(Pred),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002392 SrcOp, RI->getOperand(0), Q,
Duncan Sands8fb2c382011-01-20 13:21:55 +00002393 MaxRecurse-1))
2394 return V;
2395 }
2396 // Turn icmp (zext X), Cst into a compare of X and Cst if Cst is extended
2397 // too. If not, then try to deduce the result of the comparison.
2398 else if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
2399 // Compute the constant that would happen if we truncated to SrcTy then
2400 // reextended to DstTy.
2401 Constant *Trunc = ConstantExpr::getTrunc(CI, SrcTy);
2402 Constant *RExt = ConstantExpr::getCast(CastInst::ZExt, Trunc, DstTy);
2403
2404 // If the re-extended constant didn't change then this is effectively
2405 // also a case of comparing two zero-extended values.
2406 if (RExt == CI && MaxRecurse)
2407 if (Value *V = SimplifyICmpInst(ICmpInst::getUnsignedPredicate(Pred),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002408 SrcOp, Trunc, Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002409 return V;
2410
2411 // Otherwise the upper bits of LHS are zero while RHS has a non-zero bit
2412 // there. Use this to work out the result of the comparison.
2413 if (RExt != CI) {
2414 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00002415 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sands8fb2c382011-01-20 13:21:55 +00002416 // LHS <u RHS.
2417 case ICmpInst::ICMP_EQ:
2418 case ICmpInst::ICMP_UGT:
2419 case ICmpInst::ICMP_UGE:
2420 return ConstantInt::getFalse(CI->getContext());
2421
2422 case ICmpInst::ICMP_NE:
2423 case ICmpInst::ICMP_ULT:
2424 case ICmpInst::ICMP_ULE:
2425 return ConstantInt::getTrue(CI->getContext());
2426
2427 // LHS is non-negative. If RHS is negative then LHS >s LHS. If RHS
2428 // is non-negative then LHS <s RHS.
2429 case ICmpInst::ICMP_SGT:
2430 case ICmpInst::ICMP_SGE:
2431 return CI->getValue().isNegative() ?
2432 ConstantInt::getTrue(CI->getContext()) :
2433 ConstantInt::getFalse(CI->getContext());
2434
2435 case ICmpInst::ICMP_SLT:
2436 case ICmpInst::ICMP_SLE:
2437 return CI->getValue().isNegative() ?
2438 ConstantInt::getFalse(CI->getContext()) :
2439 ConstantInt::getTrue(CI->getContext());
2440 }
2441 }
2442 }
2443 }
2444
2445 if (isa<SExtInst>(LHS)) {
2446 // Turn icmp (sext X), (sext Y) into a compare of X and Y if they have the
2447 // same type.
2448 if (SExtInst *RI = dyn_cast<SExtInst>(RHS)) {
2449 if (MaxRecurse && SrcTy == RI->getOperand(0)->getType())
2450 // Compare X and Y. Note that the predicate does not change.
2451 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002452 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002453 return V;
2454 }
2455 // Turn icmp (sext X), Cst into a compare of X and Cst if Cst is extended
2456 // too. If not, then try to deduce the result of the comparison.
2457 else if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
2458 // Compute the constant that would happen if we truncated to SrcTy then
2459 // reextended to DstTy.
2460 Constant *Trunc = ConstantExpr::getTrunc(CI, SrcTy);
2461 Constant *RExt = ConstantExpr::getCast(CastInst::SExt, Trunc, DstTy);
2462
2463 // If the re-extended constant didn't change then this is effectively
2464 // also a case of comparing two sign-extended values.
2465 if (RExt == CI && MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002466 if (Value *V = SimplifyICmpInst(Pred, SrcOp, Trunc, Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002467 return V;
2468
2469 // Otherwise the upper bits of LHS are all equal, while RHS has varying
2470 // bits there. Use this to work out the result of the comparison.
2471 if (RExt != CI) {
2472 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00002473 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sands8fb2c382011-01-20 13:21:55 +00002474 case ICmpInst::ICMP_EQ:
2475 return ConstantInt::getFalse(CI->getContext());
2476 case ICmpInst::ICMP_NE:
2477 return ConstantInt::getTrue(CI->getContext());
2478
2479 // If RHS is non-negative then LHS <s RHS. If RHS is negative then
2480 // LHS >s RHS.
2481 case ICmpInst::ICMP_SGT:
2482 case ICmpInst::ICMP_SGE:
2483 return CI->getValue().isNegative() ?
2484 ConstantInt::getTrue(CI->getContext()) :
2485 ConstantInt::getFalse(CI->getContext());
2486 case ICmpInst::ICMP_SLT:
2487 case ICmpInst::ICMP_SLE:
2488 return CI->getValue().isNegative() ?
2489 ConstantInt::getFalse(CI->getContext()) :
2490 ConstantInt::getTrue(CI->getContext());
2491
2492 // If LHS is non-negative then LHS <u RHS. If LHS is negative then
2493 // LHS >u RHS.
2494 case ICmpInst::ICMP_UGT:
2495 case ICmpInst::ICMP_UGE:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002496 // Comparison is true iff the LHS <s 0.
Duncan Sands8fb2c382011-01-20 13:21:55 +00002497 if (MaxRecurse)
2498 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SLT, SrcOp,
2499 Constant::getNullValue(SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002500 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002501 return V;
2502 break;
2503 case ICmpInst::ICMP_ULT:
2504 case ICmpInst::ICMP_ULE:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002505 // Comparison is true iff the LHS >=s 0.
Duncan Sands8fb2c382011-01-20 13:21:55 +00002506 if (MaxRecurse)
2507 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SGE, SrcOp,
2508 Constant::getNullValue(SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002509 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002510 return V;
2511 break;
2512 }
2513 }
2514 }
2515 }
2516 }
2517
Duncan Sandsd114ab32011-02-13 17:15:40 +00002518 // Special logic for binary operators.
2519 BinaryOperator *LBO = dyn_cast<BinaryOperator>(LHS);
2520 BinaryOperator *RBO = dyn_cast<BinaryOperator>(RHS);
2521 if (MaxRecurse && (LBO || RBO)) {
Duncan Sandsd114ab32011-02-13 17:15:40 +00002522 // Analyze the case when either LHS or RHS is an add instruction.
Craig Topper9f008862014-04-15 04:59:12 +00002523 Value *A = nullptr, *B = nullptr, *C = nullptr, *D = nullptr;
Duncan Sandsd114ab32011-02-13 17:15:40 +00002524 // LHS = A + B (or A and B are null); RHS = C + D (or C and D are null).
2525 bool NoLHSWrapProblem = false, NoRHSWrapProblem = false;
2526 if (LBO && LBO->getOpcode() == Instruction::Add) {
2527 A = LBO->getOperand(0); B = LBO->getOperand(1);
2528 NoLHSWrapProblem = ICmpInst::isEquality(Pred) ||
2529 (CmpInst::isUnsigned(Pred) && LBO->hasNoUnsignedWrap()) ||
2530 (CmpInst::isSigned(Pred) && LBO->hasNoSignedWrap());
2531 }
2532 if (RBO && RBO->getOpcode() == Instruction::Add) {
2533 C = RBO->getOperand(0); D = RBO->getOperand(1);
2534 NoRHSWrapProblem = ICmpInst::isEquality(Pred) ||
2535 (CmpInst::isUnsigned(Pred) && RBO->hasNoUnsignedWrap()) ||
2536 (CmpInst::isSigned(Pred) && RBO->hasNoSignedWrap());
2537 }
2538
2539 // icmp (X+Y), X -> icmp Y, 0 for equalities or if there is no overflow.
2540 if ((A == RHS || B == RHS) && NoLHSWrapProblem)
2541 if (Value *V = SimplifyICmpInst(Pred, A == RHS ? B : A,
2542 Constant::getNullValue(RHS->getType()),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002543 Q, MaxRecurse-1))
Duncan Sandsd114ab32011-02-13 17:15:40 +00002544 return V;
2545
2546 // icmp X, (X+Y) -> icmp 0, Y for equalities or if there is no overflow.
2547 if ((C == LHS || D == LHS) && NoRHSWrapProblem)
2548 if (Value *V = SimplifyICmpInst(Pred,
2549 Constant::getNullValue(LHS->getType()),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002550 C == LHS ? D : C, Q, MaxRecurse-1))
Duncan Sandsd114ab32011-02-13 17:15:40 +00002551 return V;
2552
2553 // icmp (X+Y), (X+Z) -> icmp Y,Z for equalities or if there is no overflow.
2554 if (A && C && (A == C || A == D || B == C || B == D) &&
2555 NoLHSWrapProblem && NoRHSWrapProblem) {
2556 // Determine Y and Z in the form icmp (X+Y), (X+Z).
Duncan Sandsc41076c2012-11-16 19:41:26 +00002557 Value *Y, *Z;
2558 if (A == C) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002559 // C + B == C + D -> B == D
Duncan Sandsc41076c2012-11-16 19:41:26 +00002560 Y = B;
2561 Z = D;
2562 } else if (A == D) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002563 // D + B == C + D -> B == C
Duncan Sandsc41076c2012-11-16 19:41:26 +00002564 Y = B;
2565 Z = C;
2566 } else if (B == C) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002567 // A + C == C + D -> A == D
Duncan Sandsc41076c2012-11-16 19:41:26 +00002568 Y = A;
2569 Z = D;
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002570 } else {
2571 assert(B == D);
2572 // A + D == C + D -> A == C
Duncan Sandsc41076c2012-11-16 19:41:26 +00002573 Y = A;
2574 Z = C;
2575 }
Duncan Sandsb8cee002012-03-13 11:42:19 +00002576 if (Value *V = SimplifyICmpInst(Pred, Y, Z, Q, MaxRecurse-1))
Duncan Sandsd114ab32011-02-13 17:15:40 +00002577 return V;
2578 }
2579 }
2580
David Majnemerbd9ce4e2014-11-25 02:55:48 +00002581 // icmp pred (or X, Y), X
2582 if (LBO && match(LBO, m_CombineOr(m_Or(m_Value(), m_Specific(RHS)),
2583 m_Or(m_Specific(RHS), m_Value())))) {
2584 if (Pred == ICmpInst::ICMP_ULT)
2585 return getFalse(ITy);
2586 if (Pred == ICmpInst::ICMP_UGE)
2587 return getTrue(ITy);
2588 }
2589 // icmp pred X, (or X, Y)
2590 if (RBO && match(RBO, m_CombineOr(m_Or(m_Value(), m_Specific(LHS)),
2591 m_Or(m_Specific(LHS), m_Value())))) {
2592 if (Pred == ICmpInst::ICMP_ULE)
2593 return getTrue(ITy);
2594 if (Pred == ICmpInst::ICMP_UGT)
2595 return getFalse(ITy);
2596 }
2597
2598 // icmp pred (and X, Y), X
2599 if (LBO && match(LBO, m_CombineOr(m_And(m_Value(), m_Specific(RHS)),
2600 m_And(m_Specific(RHS), m_Value())))) {
2601 if (Pred == ICmpInst::ICMP_UGT)
2602 return getFalse(ITy);
2603 if (Pred == ICmpInst::ICMP_ULE)
2604 return getTrue(ITy);
2605 }
2606 // icmp pred X, (and X, Y)
2607 if (RBO && match(RBO, m_CombineOr(m_And(m_Value(), m_Specific(LHS)),
2608 m_And(m_Specific(LHS), m_Value())))) {
2609 if (Pred == ICmpInst::ICMP_UGE)
2610 return getTrue(ITy);
2611 if (Pred == ICmpInst::ICMP_ULT)
2612 return getFalse(ITy);
2613 }
2614
David Majnemer2d6c0232014-05-14 20:16:28 +00002615 // 0 - (zext X) pred C
2616 if (!CmpInst::isUnsigned(Pred) && match(LHS, m_Neg(m_ZExt(m_Value())))) {
2617 if (ConstantInt *RHSC = dyn_cast<ConstantInt>(RHS)) {
2618 if (RHSC->getValue().isStrictlyPositive()) {
2619 if (Pred == ICmpInst::ICMP_SLT)
2620 return ConstantInt::getTrue(RHSC->getContext());
2621 if (Pred == ICmpInst::ICMP_SGE)
2622 return ConstantInt::getFalse(RHSC->getContext());
2623 if (Pred == ICmpInst::ICMP_EQ)
2624 return ConstantInt::getFalse(RHSC->getContext());
2625 if (Pred == ICmpInst::ICMP_NE)
2626 return ConstantInt::getTrue(RHSC->getContext());
2627 }
2628 if (RHSC->getValue().isNonNegative()) {
2629 if (Pred == ICmpInst::ICMP_SLE)
2630 return ConstantInt::getTrue(RHSC->getContext());
2631 if (Pred == ICmpInst::ICMP_SGT)
2632 return ConstantInt::getFalse(RHSC->getContext());
2633 }
2634 }
2635 }
2636
Nick Lewycky35aeea92013-07-12 23:42:57 +00002637 // icmp pred (urem X, Y), Y
Nick Lewycky980104d2011-03-09 06:26:03 +00002638 if (LBO && match(LBO, m_URem(m_Value(), m_Specific(RHS)))) {
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002639 bool KnownNonNegative, KnownNegative;
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002640 switch (Pred) {
2641 default:
2642 break;
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002643 case ICmpInst::ICMP_SGT:
2644 case ICmpInst::ICMP_SGE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002645 ComputeSignBit(RHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC,
2646 Q.CxtI, Q.DT);
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002647 if (!KnownNonNegative)
2648 break;
2649 // fall-through
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002650 case ICmpInst::ICMP_EQ:
2651 case ICmpInst::ICMP_UGT:
2652 case ICmpInst::ICMP_UGE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002653 return getFalse(ITy);
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002654 case ICmpInst::ICMP_SLT:
2655 case ICmpInst::ICMP_SLE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002656 ComputeSignBit(RHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC,
2657 Q.CxtI, Q.DT);
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002658 if (!KnownNonNegative)
2659 break;
2660 // fall-through
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002661 case ICmpInst::ICMP_NE:
2662 case ICmpInst::ICMP_ULT:
2663 case ICmpInst::ICMP_ULE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002664 return getTrue(ITy);
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002665 }
2666 }
Nick Lewycky35aeea92013-07-12 23:42:57 +00002667
2668 // icmp pred X, (urem Y, X)
Nick Lewycky980104d2011-03-09 06:26:03 +00002669 if (RBO && match(RBO, m_URem(m_Value(), m_Specific(LHS)))) {
2670 bool KnownNonNegative, KnownNegative;
2671 switch (Pred) {
2672 default:
2673 break;
2674 case ICmpInst::ICMP_SGT:
2675 case ICmpInst::ICMP_SGE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002676 ComputeSignBit(LHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC,
2677 Q.CxtI, Q.DT);
Nick Lewycky980104d2011-03-09 06:26:03 +00002678 if (!KnownNonNegative)
2679 break;
2680 // fall-through
Nick Lewycky774647d2011-03-09 08:20:06 +00002681 case ICmpInst::ICMP_NE:
Nick Lewycky980104d2011-03-09 06:26:03 +00002682 case ICmpInst::ICMP_UGT:
2683 case ICmpInst::ICMP_UGE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002684 return getTrue(ITy);
Nick Lewycky980104d2011-03-09 06:26:03 +00002685 case ICmpInst::ICMP_SLT:
2686 case ICmpInst::ICMP_SLE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002687 ComputeSignBit(LHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC,
2688 Q.CxtI, Q.DT);
Nick Lewycky980104d2011-03-09 06:26:03 +00002689 if (!KnownNonNegative)
2690 break;
2691 // fall-through
Nick Lewycky774647d2011-03-09 08:20:06 +00002692 case ICmpInst::ICMP_EQ:
Nick Lewycky980104d2011-03-09 06:26:03 +00002693 case ICmpInst::ICMP_ULT:
2694 case ICmpInst::ICMP_ULE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002695 return getFalse(ITy);
Nick Lewycky980104d2011-03-09 06:26:03 +00002696 }
2697 }
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002698
Duncan Sands92af0a82011-10-28 18:17:44 +00002699 // x udiv y <=u x.
2700 if (LBO && match(LBO, m_UDiv(m_Specific(RHS), m_Value()))) {
2701 // icmp pred (X /u Y), X
2702 if (Pred == ICmpInst::ICMP_UGT)
2703 return getFalse(ITy);
2704 if (Pred == ICmpInst::ICMP_ULE)
2705 return getTrue(ITy);
2706 }
2707
David Majnemer76d06bc2014-08-28 03:34:28 +00002708 // handle:
2709 // CI2 << X == CI
2710 // CI2 << X != CI
2711 //
2712 // where CI2 is a power of 2 and CI isn't
2713 if (auto *CI = dyn_cast<ConstantInt>(RHS)) {
2714 const APInt *CI2Val, *CIVal = &CI->getValue();
2715 if (LBO && match(LBO, m_Shl(m_APInt(CI2Val), m_Value())) &&
2716 CI2Val->isPowerOf2()) {
2717 if (!CIVal->isPowerOf2()) {
2718 // CI2 << X can equal zero in some circumstances,
2719 // this simplification is unsafe if CI is zero.
2720 //
2721 // We know it is safe if:
2722 // - The shift is nsw, we can't shift out the one bit.
2723 // - The shift is nuw, we can't shift out the one bit.
2724 // - CI2 is one
2725 // - CI isn't zero
2726 if (LBO->hasNoSignedWrap() || LBO->hasNoUnsignedWrap() ||
2727 *CI2Val == 1 || !CI->isZero()) {
2728 if (Pred == ICmpInst::ICMP_EQ)
2729 return ConstantInt::getFalse(RHS->getContext());
2730 if (Pred == ICmpInst::ICMP_NE)
2731 return ConstantInt::getTrue(RHS->getContext());
2732 }
2733 }
2734 if (CIVal->isSignBit() && *CI2Val == 1) {
2735 if (Pred == ICmpInst::ICMP_UGT)
2736 return ConstantInt::getFalse(RHS->getContext());
2737 if (Pred == ICmpInst::ICMP_ULE)
2738 return ConstantInt::getTrue(RHS->getContext());
2739 }
2740 }
2741 }
2742
Nick Lewycky9719a712011-03-05 05:19:11 +00002743 if (MaxRecurse && LBO && RBO && LBO->getOpcode() == RBO->getOpcode() &&
2744 LBO->getOperand(1) == RBO->getOperand(1)) {
2745 switch (LBO->getOpcode()) {
2746 default: break;
2747 case Instruction::UDiv:
2748 case Instruction::LShr:
2749 if (ICmpInst::isSigned(Pred))
2750 break;
2751 // fall-through
2752 case Instruction::SDiv:
2753 case Instruction::AShr:
Eli Friedman8a20e662011-05-05 21:59:18 +00002754 if (!LBO->isExact() || !RBO->isExact())
Nick Lewycky9719a712011-03-05 05:19:11 +00002755 break;
2756 if (Value *V = SimplifyICmpInst(Pred, LBO->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002757 RBO->getOperand(0), Q, MaxRecurse-1))
Nick Lewycky9719a712011-03-05 05:19:11 +00002758 return V;
2759 break;
2760 case Instruction::Shl: {
Duncan Sands020c1942011-08-04 10:02:21 +00002761 bool NUW = LBO->hasNoUnsignedWrap() && RBO->hasNoUnsignedWrap();
Nick Lewycky9719a712011-03-05 05:19:11 +00002762 bool NSW = LBO->hasNoSignedWrap() && RBO->hasNoSignedWrap();
2763 if (!NUW && !NSW)
2764 break;
2765 if (!NSW && ICmpInst::isSigned(Pred))
2766 break;
2767 if (Value *V = SimplifyICmpInst(Pred, LBO->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002768 RBO->getOperand(0), Q, MaxRecurse-1))
Nick Lewycky9719a712011-03-05 05:19:11 +00002769 return V;
2770 break;
2771 }
2772 }
2773 }
2774
Duncan Sands0a9c1242011-05-03 19:53:10 +00002775 // Simplify comparisons involving max/min.
2776 Value *A, *B;
2777 CmpInst::Predicate P = CmpInst::BAD_ICMP_PREDICATE;
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002778 CmpInst::Predicate EqP; // Chosen so that "A == max/min(A,B)" iff "A EqP B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002779
Duncan Sandsa2287852011-05-04 16:05:05 +00002780 // Signed variants on "max(a,b)>=a -> true".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002781 if (match(LHS, m_SMax(m_Value(A), m_Value(B))) && (A == RHS || B == RHS)) {
2782 if (A != RHS) std::swap(A, B); // smax(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002783 EqP = CmpInst::ICMP_SGE; // "A == smax(A, B)" iff "A sge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002784 // We analyze this as smax(A, B) pred A.
2785 P = Pred;
2786 } else if (match(RHS, m_SMax(m_Value(A), m_Value(B))) &&
2787 (A == LHS || B == LHS)) {
2788 if (A != LHS) std::swap(A, B); // A pred smax(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002789 EqP = CmpInst::ICMP_SGE; // "A == smax(A, B)" iff "A sge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002790 // We analyze this as smax(A, B) swapped-pred A.
2791 P = CmpInst::getSwappedPredicate(Pred);
2792 } else if (match(LHS, m_SMin(m_Value(A), m_Value(B))) &&
2793 (A == RHS || B == RHS)) {
2794 if (A != RHS) std::swap(A, B); // smin(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002795 EqP = CmpInst::ICMP_SLE; // "A == smin(A, B)" iff "A sle B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002796 // We analyze this as smax(-A, -B) swapped-pred -A.
2797 // Note that we do not need to actually form -A or -B thanks to EqP.
2798 P = CmpInst::getSwappedPredicate(Pred);
2799 } else if (match(RHS, m_SMin(m_Value(A), m_Value(B))) &&
2800 (A == LHS || B == LHS)) {
2801 if (A != LHS) std::swap(A, B); // A pred smin(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002802 EqP = CmpInst::ICMP_SLE; // "A == smin(A, B)" iff "A sle B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002803 // We analyze this as smax(-A, -B) pred -A.
2804 // Note that we do not need to actually form -A or -B thanks to EqP.
2805 P = Pred;
2806 }
2807 if (P != CmpInst::BAD_ICMP_PREDICATE) {
2808 // Cases correspond to "max(A, B) p A".
2809 switch (P) {
2810 default:
2811 break;
2812 case CmpInst::ICMP_EQ:
2813 case CmpInst::ICMP_SLE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002814 // Equivalent to "A EqP B". This may be the same as the condition tested
2815 // in the max/min; if so, we can just return that.
2816 if (Value *V = ExtractEquivalentCondition(LHS, EqP, A, B))
2817 return V;
2818 if (Value *V = ExtractEquivalentCondition(RHS, EqP, A, B))
2819 return V;
2820 // Otherwise, see if "A EqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002821 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002822 if (Value *V = SimplifyICmpInst(EqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002823 return V;
2824 break;
2825 case CmpInst::ICMP_NE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002826 case CmpInst::ICMP_SGT: {
2827 CmpInst::Predicate InvEqP = CmpInst::getInversePredicate(EqP);
2828 // Equivalent to "A InvEqP B". This may be the same as the condition
2829 // tested in the max/min; if so, we can just return that.
2830 if (Value *V = ExtractEquivalentCondition(LHS, InvEqP, A, B))
2831 return V;
2832 if (Value *V = ExtractEquivalentCondition(RHS, InvEqP, A, B))
2833 return V;
2834 // Otherwise, see if "A InvEqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002835 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002836 if (Value *V = SimplifyICmpInst(InvEqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002837 return V;
2838 break;
Duncan Sandsaf327282011-05-07 16:56:49 +00002839 }
Duncan Sands0a9c1242011-05-03 19:53:10 +00002840 case CmpInst::ICMP_SGE:
2841 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002842 return getTrue(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002843 case CmpInst::ICMP_SLT:
2844 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002845 return getFalse(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002846 }
2847 }
2848
Duncan Sandsa2287852011-05-04 16:05:05 +00002849 // Unsigned variants on "max(a,b)>=a -> true".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002850 P = CmpInst::BAD_ICMP_PREDICATE;
2851 if (match(LHS, m_UMax(m_Value(A), m_Value(B))) && (A == RHS || B == RHS)) {
2852 if (A != RHS) std::swap(A, B); // umax(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002853 EqP = CmpInst::ICMP_UGE; // "A == umax(A, B)" iff "A uge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002854 // We analyze this as umax(A, B) pred A.
2855 P = Pred;
2856 } else if (match(RHS, m_UMax(m_Value(A), m_Value(B))) &&
2857 (A == LHS || B == LHS)) {
2858 if (A != LHS) std::swap(A, B); // A pred umax(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002859 EqP = CmpInst::ICMP_UGE; // "A == umax(A, B)" iff "A uge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002860 // We analyze this as umax(A, B) swapped-pred A.
2861 P = CmpInst::getSwappedPredicate(Pred);
2862 } else if (match(LHS, m_UMin(m_Value(A), m_Value(B))) &&
2863 (A == RHS || B == RHS)) {
2864 if (A != RHS) std::swap(A, B); // umin(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002865 EqP = CmpInst::ICMP_ULE; // "A == umin(A, B)" iff "A ule B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002866 // We analyze this as umax(-A, -B) swapped-pred -A.
2867 // Note that we do not need to actually form -A or -B thanks to EqP.
2868 P = CmpInst::getSwappedPredicate(Pred);
2869 } else if (match(RHS, m_UMin(m_Value(A), m_Value(B))) &&
2870 (A == LHS || B == LHS)) {
2871 if (A != LHS) std::swap(A, B); // A pred umin(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002872 EqP = CmpInst::ICMP_ULE; // "A == umin(A, B)" iff "A ule B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002873 // We analyze this as umax(-A, -B) pred -A.
2874 // Note that we do not need to actually form -A or -B thanks to EqP.
2875 P = Pred;
2876 }
2877 if (P != CmpInst::BAD_ICMP_PREDICATE) {
2878 // Cases correspond to "max(A, B) p A".
2879 switch (P) {
2880 default:
2881 break;
2882 case CmpInst::ICMP_EQ:
2883 case CmpInst::ICMP_ULE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002884 // Equivalent to "A EqP B". This may be the same as the condition tested
2885 // in the max/min; if so, we can just return that.
2886 if (Value *V = ExtractEquivalentCondition(LHS, EqP, A, B))
2887 return V;
2888 if (Value *V = ExtractEquivalentCondition(RHS, EqP, A, B))
2889 return V;
2890 // Otherwise, see if "A EqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002891 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002892 if (Value *V = SimplifyICmpInst(EqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002893 return V;
2894 break;
2895 case CmpInst::ICMP_NE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002896 case CmpInst::ICMP_UGT: {
2897 CmpInst::Predicate InvEqP = CmpInst::getInversePredicate(EqP);
2898 // Equivalent to "A InvEqP B". This may be the same as the condition
2899 // tested in the max/min; if so, we can just return that.
2900 if (Value *V = ExtractEquivalentCondition(LHS, InvEqP, A, B))
2901 return V;
2902 if (Value *V = ExtractEquivalentCondition(RHS, InvEqP, A, B))
2903 return V;
2904 // Otherwise, see if "A InvEqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002905 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002906 if (Value *V = SimplifyICmpInst(InvEqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002907 return V;
2908 break;
Duncan Sandsaf327282011-05-07 16:56:49 +00002909 }
Duncan Sands0a9c1242011-05-03 19:53:10 +00002910 case CmpInst::ICMP_UGE:
2911 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002912 return getTrue(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002913 case CmpInst::ICMP_ULT:
2914 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002915 return getFalse(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002916 }
2917 }
2918
Duncan Sandsa2287852011-05-04 16:05:05 +00002919 // Variants on "max(x,y) >= min(x,z)".
2920 Value *C, *D;
2921 if (match(LHS, m_SMax(m_Value(A), m_Value(B))) &&
2922 match(RHS, m_SMin(m_Value(C), m_Value(D))) &&
2923 (A == C || A == D || B == C || B == D)) {
2924 // max(x, ?) pred min(x, ?).
2925 if (Pred == CmpInst::ICMP_SGE)
2926 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002927 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002928 if (Pred == CmpInst::ICMP_SLT)
2929 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002930 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002931 } else if (match(LHS, m_SMin(m_Value(A), m_Value(B))) &&
2932 match(RHS, m_SMax(m_Value(C), m_Value(D))) &&
2933 (A == C || A == D || B == C || B == D)) {
2934 // min(x, ?) pred max(x, ?).
2935 if (Pred == CmpInst::ICMP_SLE)
2936 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002937 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002938 if (Pred == CmpInst::ICMP_SGT)
2939 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002940 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002941 } else if (match(LHS, m_UMax(m_Value(A), m_Value(B))) &&
2942 match(RHS, m_UMin(m_Value(C), m_Value(D))) &&
2943 (A == C || A == D || B == C || B == D)) {
2944 // max(x, ?) pred min(x, ?).
2945 if (Pred == CmpInst::ICMP_UGE)
2946 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002947 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002948 if (Pred == CmpInst::ICMP_ULT)
2949 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002950 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002951 } else if (match(LHS, m_UMin(m_Value(A), m_Value(B))) &&
2952 match(RHS, m_UMax(m_Value(C), m_Value(D))) &&
2953 (A == C || A == D || B == C || B == D)) {
2954 // min(x, ?) pred max(x, ?).
2955 if (Pred == CmpInst::ICMP_ULE)
2956 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002957 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002958 if (Pred == CmpInst::ICMP_UGT)
2959 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002960 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002961 }
2962
Chandler Carruth8059c842012-03-25 21:28:14 +00002963 // Simplify comparisons of related pointers using a powerful, recursive
2964 // GEP-walk when we have target data available..
Dan Gohman18c77a12013-01-31 02:50:36 +00002965 if (LHS->getType()->isPointerTy())
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002966 if (Constant *C = computePointerICmp(Q.DL, Q.TLI, Pred, LHS, RHS))
Chandler Carruth8059c842012-03-25 21:28:14 +00002967 return C;
2968
Nick Lewycky3db143e2012-02-26 02:09:49 +00002969 if (GetElementPtrInst *GLHS = dyn_cast<GetElementPtrInst>(LHS)) {
2970 if (GEPOperator *GRHS = dyn_cast<GEPOperator>(RHS)) {
2971 if (GLHS->getPointerOperand() == GRHS->getPointerOperand() &&
2972 GLHS->hasAllConstantIndices() && GRHS->hasAllConstantIndices() &&
2973 (ICmpInst::isEquality(Pred) ||
2974 (GLHS->isInBounds() && GRHS->isInBounds() &&
2975 Pred == ICmpInst::getSignedPredicate(Pred)))) {
2976 // The bases are equal and the indices are constant. Build a constant
2977 // expression GEP with the same indices and a null base pointer to see
2978 // what constant folding can make out of it.
2979 Constant *Null = Constant::getNullValue(GLHS->getPointerOperandType());
2980 SmallVector<Value *, 4> IndicesLHS(GLHS->idx_begin(), GLHS->idx_end());
2981 Constant *NewLHS = ConstantExpr::getGetElementPtr(Null, IndicesLHS);
2982
2983 SmallVector<Value *, 4> IndicesRHS(GRHS->idx_begin(), GRHS->idx_end());
2984 Constant *NewRHS = ConstantExpr::getGetElementPtr(Null, IndicesRHS);
2985 return ConstantExpr::getICmp(Pred, NewLHS, NewRHS);
2986 }
2987 }
2988 }
2989
David Majnemer5854e9f2014-11-16 02:20:08 +00002990 // If a bit is known to be zero for A and known to be one for B,
2991 // then A and B cannot be equal.
2992 if (ICmpInst::isEquality(Pred)) {
2993 if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
2994 uint32_t BitWidth = CI->getBitWidth();
2995 APInt LHSKnownZero(BitWidth, 0);
2996 APInt LHSKnownOne(BitWidth, 0);
Chandler Carruth66b31302015-01-04 12:03:27 +00002997 computeKnownBits(LHS, LHSKnownZero, LHSKnownOne, Q.DL, /*Depth=*/0, Q.AC,
David Majnemer5854e9f2014-11-16 02:20:08 +00002998 Q.CxtI, Q.DT);
2999 const APInt &RHSVal = CI->getValue();
3000 if (((LHSKnownZero & RHSVal) != 0) || ((LHSKnownOne & ~RHSVal) != 0))
3001 return Pred == ICmpInst::ICMP_EQ
3002 ? ConstantInt::getFalse(CI->getContext())
3003 : ConstantInt::getTrue(CI->getContext());
3004 }
3005 }
3006
Duncan Sandsf532d312010-11-07 16:12:23 +00003007 // If the comparison is with the result of a select instruction, check whether
3008 // comparing with either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003009 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003010 if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003011 return V;
3012
3013 // If the comparison is with the result of a phi instruction, check whether
3014 // doing the compare with each incoming phi value yields a common result.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003015 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003016 if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsfc5ad3f02010-11-09 17:25:51 +00003017 return V;
Duncan Sandsf532d312010-11-07 16:12:23 +00003018
Craig Topper9f008862014-04-15 04:59:12 +00003019 return nullptr;
Chris Lattner084a1b52009-11-09 22:57:59 +00003020}
3021
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003022Value *llvm::SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003023 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00003024 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003025 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003026 Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003027 return ::SimplifyICmpInst(Predicate, LHS, RHS, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003028 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003029}
3030
Chris Lattnerc1f19072009-11-09 23:28:39 +00003031/// SimplifyFCmpInst - Given operands for an FCmpInst, see if we can
3032/// fold the result. If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003033static Value *SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003034 const Query &Q, unsigned MaxRecurse) {
Chris Lattnerc1f19072009-11-09 23:28:39 +00003035 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate;
3036 assert(CmpInst::isFPPredicate(Pred) && "Not an FP compare!");
3037
Chris Lattnera71e9d62009-11-10 00:55:12 +00003038 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
Chris Lattnerc1f19072009-11-09 23:28:39 +00003039 if (Constant *CRHS = dyn_cast<Constant>(RHS))
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003040 return ConstantFoldCompareInstOperands(Pred, CLHS, CRHS, Q.DL, Q.TLI);
Duncan Sands7e800d62010-11-14 11:23:23 +00003041
Chris Lattnera71e9d62009-11-10 00:55:12 +00003042 // If we have a constant, make sure it is on the RHS.
3043 std::swap(LHS, RHS);
3044 Pred = CmpInst::getSwappedPredicate(Pred);
3045 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003046
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003047 // Fold trivial predicates.
3048 if (Pred == FCmpInst::FCMP_FALSE)
3049 return ConstantInt::get(GetCompareTy(LHS), 0);
3050 if (Pred == FCmpInst::FCMP_TRUE)
3051 return ConstantInt::get(GetCompareTy(LHS), 1);
3052
Mehdi Aminieb242a52015-03-09 03:20:25 +00003053 // fcmp pred x, undef and fcmp pred undef, x
3054 // fold to true if unordered, false if ordered
3055 if (isa<UndefValue>(LHS) || isa<UndefValue>(RHS)) {
3056 // Choosing NaN for the undef will always make unordered comparison succeed
3057 // and ordered comparison fail.
3058 return ConstantInt::get(GetCompareTy(LHS), CmpInst::isUnordered(Pred));
3059 }
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003060
3061 // fcmp x,x -> true/false. Not all compares are foldable.
Duncan Sands772749a2011-01-01 20:08:02 +00003062 if (LHS == RHS) {
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003063 if (CmpInst::isTrueWhenEqual(Pred))
3064 return ConstantInt::get(GetCompareTy(LHS), 1);
3065 if (CmpInst::isFalseWhenEqual(Pred))
3066 return ConstantInt::get(GetCompareTy(LHS), 0);
3067 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003068
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003069 // Handle fcmp with constant RHS
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003070 if (ConstantFP *CFP = dyn_cast<ConstantFP>(RHS)) {
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003071 // If the constant is a nan, see if we can fold the comparison based on it.
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003072 if (CFP->getValueAPF().isNaN()) {
3073 if (FCmpInst::isOrdered(Pred)) // True "if ordered and foo"
3074 return ConstantInt::getFalse(CFP->getContext());
3075 assert(FCmpInst::isUnordered(Pred) &&
3076 "Comparison must be either ordered or unordered!");
3077 // True if unordered.
3078 return ConstantInt::getTrue(CFP->getContext());
3079 }
3080 // Check whether the constant is an infinity.
3081 if (CFP->getValueAPF().isInfinity()) {
3082 if (CFP->getValueAPF().isNegative()) {
Elena Demikhovsky45f04482015-01-28 08:03:58 +00003083 switch (Pred) {
Elena Demikhovsky45f04482015-01-28 08:03:58 +00003084 case FCmpInst::FCMP_OLT:
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003085 // No value is ordered and less than negative infinity.
3086 return ConstantInt::getFalse(CFP->getContext());
3087 case FCmpInst::FCMP_UGE:
3088 // All values are unordered with or at least negative infinity.
3089 return ConstantInt::getTrue(CFP->getContext());
Elena Demikhovsky45f04482015-01-28 08:03:58 +00003090 default:
3091 break;
3092 }
Mehdi Amini383d7ae2015-02-13 07:38:04 +00003093 } else {
3094 switch (Pred) {
3095 case FCmpInst::FCMP_OGT:
3096 // No value is ordered and greater than infinity.
3097 return ConstantInt::getFalse(CFP->getContext());
3098 case FCmpInst::FCMP_ULE:
3099 // All values are unordered with and at most infinity.
3100 return ConstantInt::getTrue(CFP->getContext());
3101 default:
3102 break;
3103 }
3104 }
3105 }
3106 if (CFP->getValueAPF().isZero()) {
3107 switch (Pred) {
3108 case FCmpInst::FCMP_UGE:
3109 if (CannotBeOrderedLessThanZero(LHS))
3110 return ConstantInt::getTrue(CFP->getContext());
3111 break;
3112 case FCmpInst::FCMP_OLT:
3113 // X < 0
3114 if (CannotBeOrderedLessThanZero(LHS))
3115 return ConstantInt::getFalse(CFP->getContext());
3116 break;
3117 default:
3118 break;
3119 }
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003120 }
3121 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003122
Duncan Sandsa620bd12010-11-07 16:46:25 +00003123 // If the comparison is with the result of a select instruction, check whether
3124 // comparing with either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003125 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003126 if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003127 return V;
3128
3129 // If the comparison is with the result of a phi instruction, check whether
3130 // doing the compare with each incoming phi value yields a common result.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003131 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003132 if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsfc5ad3f02010-11-09 17:25:51 +00003133 return V;
Duncan Sandsa620bd12010-11-07 16:46:25 +00003134
Craig Topper9f008862014-04-15 04:59:12 +00003135 return nullptr;
Chris Lattnerc1f19072009-11-09 23:28:39 +00003136}
3137
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003138Value *llvm::SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003139 const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00003140 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003141 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003142 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003143 return ::SimplifyFCmpInst(Predicate, LHS, RHS, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003144 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003145}
3146
Chris Lattnerc707fa92010-04-20 05:32:14 +00003147/// SimplifySelectInst - Given operands for a SelectInst, see if we can fold
3148/// the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00003149static Value *SimplifySelectInst(Value *CondVal, Value *TrueVal,
3150 Value *FalseVal, const Query &Q,
3151 unsigned MaxRecurse) {
Chris Lattnerc707fa92010-04-20 05:32:14 +00003152 // select true, X, Y -> X
3153 // select false, X, Y -> Y
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00003154 if (Constant *CB = dyn_cast<Constant>(CondVal)) {
3155 if (CB->isAllOnesValue())
3156 return TrueVal;
3157 if (CB->isNullValue())
3158 return FalseVal;
3159 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003160
Chris Lattnerc707fa92010-04-20 05:32:14 +00003161 // select C, X, X -> X
Duncan Sands772749a2011-01-01 20:08:02 +00003162 if (TrueVal == FalseVal)
Chris Lattnerc707fa92010-04-20 05:32:14 +00003163 return TrueVal;
Duncan Sands7e800d62010-11-14 11:23:23 +00003164
Chris Lattnerc707fa92010-04-20 05:32:14 +00003165 if (isa<UndefValue>(CondVal)) { // select undef, X, Y -> X or Y
3166 if (isa<Constant>(TrueVal))
3167 return TrueVal;
3168 return FalseVal;
3169 }
Dan Gohman54664ed2011-07-01 01:03:43 +00003170 if (isa<UndefValue>(TrueVal)) // select C, undef, X -> X
3171 return FalseVal;
3172 if (isa<UndefValue>(FalseVal)) // select C, X, undef -> X
3173 return TrueVal;
Duncan Sands7e800d62010-11-14 11:23:23 +00003174
David Majnemer147f8582014-12-20 04:45:33 +00003175 const auto *ICI = dyn_cast<ICmpInst>(CondVal);
3176 unsigned BitWidth = TrueVal->getType()->getScalarSizeInBits();
3177 if (ICI && BitWidth) {
David Majnemer7bd71442014-12-20 03:29:59 +00003178 ICmpInst::Predicate Pred = ICI->getPredicate();
David Majnemer147f8582014-12-20 04:45:33 +00003179 APInt MinSignedValue = APInt::getSignBit(BitWidth);
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003180 Value *X;
3181 const APInt *Y;
David Majnemer7bd71442014-12-20 03:29:59 +00003182 bool TrueWhenUnset;
David Majnemer147f8582014-12-20 04:45:33 +00003183 bool IsBitTest = false;
David Majnemer0b6a0b02014-12-20 03:04:38 +00003184 if (ICmpInst::isEquality(Pred) &&
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003185 match(ICI->getOperand(0), m_And(m_Value(X), m_APInt(Y))) &&
3186 match(ICI->getOperand(1), m_Zero())) {
David Majnemer7bd71442014-12-20 03:29:59 +00003187 IsBitTest = true;
3188 TrueWhenUnset = Pred == ICmpInst::ICMP_EQ;
3189 } else if (Pred == ICmpInst::ICMP_SLT &&
3190 match(ICI->getOperand(1), m_Zero())) {
3191 X = ICI->getOperand(0);
3192 Y = &MinSignedValue;
3193 IsBitTest = true;
3194 TrueWhenUnset = false;
3195 } else if (Pred == ICmpInst::ICMP_SGT &&
3196 match(ICI->getOperand(1), m_AllOnes())) {
3197 X = ICI->getOperand(0);
3198 Y = &MinSignedValue;
3199 IsBitTest = true;
3200 TrueWhenUnset = true;
3201 }
3202 if (IsBitTest) {
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003203 const APInt *C;
3204 // (X & Y) == 0 ? X & ~Y : X --> X
3205 // (X & Y) != 0 ? X & ~Y : X --> X & ~Y
3206 if (FalseVal == X && match(TrueVal, m_And(m_Specific(X), m_APInt(C))) &&
3207 *Y == ~*C)
David Majnemer7bd71442014-12-20 03:29:59 +00003208 return TrueWhenUnset ? FalseVal : TrueVal;
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003209 // (X & Y) == 0 ? X : X & ~Y --> X & ~Y
3210 // (X & Y) != 0 ? X : X & ~Y --> X
3211 if (TrueVal == X && match(FalseVal, m_And(m_Specific(X), m_APInt(C))) &&
3212 *Y == ~*C)
David Majnemer7bd71442014-12-20 03:29:59 +00003213 return TrueWhenUnset ? FalseVal : TrueVal;
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003214
3215 if (Y->isPowerOf2()) {
3216 // (X & Y) == 0 ? X | Y : X --> X | Y
3217 // (X & Y) != 0 ? X | Y : X --> X
3218 if (FalseVal == X && match(TrueVal, m_Or(m_Specific(X), m_APInt(C))) &&
3219 *Y == *C)
David Majnemer7bd71442014-12-20 03:29:59 +00003220 return TrueWhenUnset ? TrueVal : FalseVal;
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003221 // (X & Y) == 0 ? X : X | Y --> X
3222 // (X & Y) != 0 ? X : X | Y --> X | Y
3223 if (TrueVal == X && match(FalseVal, m_Or(m_Specific(X), m_APInt(C))) &&
3224 *Y == *C)
David Majnemer7bd71442014-12-20 03:29:59 +00003225 return TrueWhenUnset ? TrueVal : FalseVal;
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003226 }
3227 }
3228 }
3229
Craig Topper9f008862014-04-15 04:59:12 +00003230 return nullptr;
Chris Lattnerc707fa92010-04-20 05:32:14 +00003231}
3232
Duncan Sandsb8cee002012-03-13 11:42:19 +00003233Value *llvm::SimplifySelectInst(Value *Cond, Value *TrueVal, Value *FalseVal,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003234 const DataLayout &DL,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003235 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003236 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003237 const Instruction *CxtI) {
3238 return ::SimplifySelectInst(Cond, TrueVal, FalseVal,
Chandler Carruth66b31302015-01-04 12:03:27 +00003239 Query(DL, TLI, DT, AC, CxtI), RecursionLimit);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003240}
3241
Chris Lattner8574aba2009-11-27 00:29:05 +00003242/// SimplifyGEPInst - Given operands for an GetElementPtrInst, see if we can
3243/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00003244static Value *SimplifyGEPInst(ArrayRef<Value *> Ops, const Query &Q, unsigned) {
Duncan Sands8a0f4862010-11-22 13:42:49 +00003245 // The type of the GEP pointer operand.
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00003246 PointerType *PtrTy = cast<PointerType>(Ops[0]->getType()->getScalarType());
Nico Weber48c82402014-08-27 20:06:19 +00003247 unsigned AS = PtrTy->getAddressSpace();
Duncan Sands8a0f4862010-11-22 13:42:49 +00003248
Chris Lattner8574aba2009-11-27 00:29:05 +00003249 // getelementptr P -> P.
Jay Foadb992a632011-07-19 15:07:52 +00003250 if (Ops.size() == 1)
Chris Lattner8574aba2009-11-27 00:29:05 +00003251 return Ops[0];
3252
Nico Weber48c82402014-08-27 20:06:19 +00003253 // Compute the (pointer) type returned by the GEP instruction.
3254 Type *LastType = GetElementPtrInst::getIndexedType(PtrTy, Ops.slice(1));
3255 Type *GEPTy = PointerType::get(LastType, AS);
3256 if (VectorType *VT = dyn_cast<VectorType>(Ops[0]->getType()))
3257 GEPTy = VectorType::get(GEPTy, VT->getNumElements());
3258
3259 if (isa<UndefValue>(Ops[0]))
Duncan Sands8a0f4862010-11-22 13:42:49 +00003260 return UndefValue::get(GEPTy);
Chris Lattner8574aba2009-11-27 00:29:05 +00003261
Jay Foadb992a632011-07-19 15:07:52 +00003262 if (Ops.size() == 2) {
Duncan Sandscf4bceb2010-11-21 13:53:09 +00003263 // getelementptr P, 0 -> P.
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00003264 if (match(Ops[1], m_Zero()))
3265 return Ops[0];
Nico Weber48c82402014-08-27 20:06:19 +00003266
3267 Type *Ty = PtrTy->getElementType();
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003268 if (Ty->isSized()) {
Nico Weber48c82402014-08-27 20:06:19 +00003269 Value *P;
3270 uint64_t C;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003271 uint64_t TyAllocSize = Q.DL.getTypeAllocSize(Ty);
Nico Weber48c82402014-08-27 20:06:19 +00003272 // getelementptr P, N -> P if P points to a type of zero size.
3273 if (TyAllocSize == 0)
Duncan Sandscf4bceb2010-11-21 13:53:09 +00003274 return Ops[0];
Nico Weber48c82402014-08-27 20:06:19 +00003275
3276 // The following transforms are only safe if the ptrtoint cast
3277 // doesn't truncate the pointers.
3278 if (Ops[1]->getType()->getScalarSizeInBits() ==
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003279 Q.DL.getPointerSizeInBits(AS)) {
Nico Weber48c82402014-08-27 20:06:19 +00003280 auto PtrToIntOrZero = [GEPTy](Value *P) -> Value * {
3281 if (match(P, m_Zero()))
3282 return Constant::getNullValue(GEPTy);
3283 Value *Temp;
3284 if (match(P, m_PtrToInt(m_Value(Temp))))
David Majnemer11ca2972014-08-27 20:08:34 +00003285 if (Temp->getType() == GEPTy)
3286 return Temp;
Nico Weber48c82402014-08-27 20:06:19 +00003287 return nullptr;
3288 };
3289
3290 // getelementptr V, (sub P, V) -> P if P points to a type of size 1.
3291 if (TyAllocSize == 1 &&
3292 match(Ops[1], m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0])))))
3293 if (Value *R = PtrToIntOrZero(P))
3294 return R;
3295
3296 // getelementptr V, (ashr (sub P, V), C) -> Q
3297 // if P points to a type of size 1 << C.
3298 if (match(Ops[1],
3299 m_AShr(m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0]))),
3300 m_ConstantInt(C))) &&
3301 TyAllocSize == 1ULL << C)
3302 if (Value *R = PtrToIntOrZero(P))
3303 return R;
3304
3305 // getelementptr V, (sdiv (sub P, V), C) -> Q
3306 // if P points to a type of size C.
3307 if (match(Ops[1],
3308 m_SDiv(m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0]))),
3309 m_SpecificInt(TyAllocSize))))
3310 if (Value *R = PtrToIntOrZero(P))
3311 return R;
3312 }
Duncan Sandscf4bceb2010-11-21 13:53:09 +00003313 }
3314 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003315
Chris Lattner8574aba2009-11-27 00:29:05 +00003316 // Check to see if this is constant foldable.
Jay Foadb992a632011-07-19 15:07:52 +00003317 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
Chris Lattner8574aba2009-11-27 00:29:05 +00003318 if (!isa<Constant>(Ops[i]))
Craig Topper9f008862014-04-15 04:59:12 +00003319 return nullptr;
Duncan Sands7e800d62010-11-14 11:23:23 +00003320
Jay Foaded8db7d2011-07-21 14:31:17 +00003321 return ConstantExpr::getGetElementPtr(cast<Constant>(Ops[0]), Ops.slice(1));
Chris Lattner8574aba2009-11-27 00:29:05 +00003322}
3323
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003324Value *llvm::SimplifyGEPInst(ArrayRef<Value *> Ops, const DataLayout &DL,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003325 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003326 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003327 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003328 return ::SimplifyGEPInst(Ops, Query(DL, TLI, DT, AC, CxtI), RecursionLimit);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003329}
3330
Duncan Sandsfd26a952011-09-05 06:52:48 +00003331/// SimplifyInsertValueInst - Given operands for an InsertValueInst, see if we
3332/// can fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00003333static Value *SimplifyInsertValueInst(Value *Agg, Value *Val,
3334 ArrayRef<unsigned> Idxs, const Query &Q,
3335 unsigned) {
Duncan Sandsfd26a952011-09-05 06:52:48 +00003336 if (Constant *CAgg = dyn_cast<Constant>(Agg))
3337 if (Constant *CVal = dyn_cast<Constant>(Val))
3338 return ConstantFoldInsertValueInstruction(CAgg, CVal, Idxs);
3339
3340 // insertvalue x, undef, n -> x
3341 if (match(Val, m_Undef()))
3342 return Agg;
3343
3344 // insertvalue x, (extractvalue y, n), n
3345 if (ExtractValueInst *EV = dyn_cast<ExtractValueInst>(Val))
Benjamin Kramer4b79c212011-09-05 18:16:19 +00003346 if (EV->getAggregateOperand()->getType() == Agg->getType() &&
3347 EV->getIndices() == Idxs) {
Duncan Sandsfd26a952011-09-05 06:52:48 +00003348 // insertvalue undef, (extractvalue y, n), n -> y
3349 if (match(Agg, m_Undef()))
3350 return EV->getAggregateOperand();
3351
3352 // insertvalue y, (extractvalue y, n), n -> y
3353 if (Agg == EV->getAggregateOperand())
3354 return Agg;
3355 }
3356
Craig Topper9f008862014-04-15 04:59:12 +00003357 return nullptr;
Duncan Sandsfd26a952011-09-05 06:52:48 +00003358}
3359
Chandler Carruth66b31302015-01-04 12:03:27 +00003360Value *llvm::SimplifyInsertValueInst(
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003361 Value *Agg, Value *Val, ArrayRef<unsigned> Idxs, const DataLayout &DL,
Chandler Carruth66b31302015-01-04 12:03:27 +00003362 const TargetLibraryInfo *TLI, const DominatorTree *DT, AssumptionCache *AC,
3363 const Instruction *CxtI) {
3364 return ::SimplifyInsertValueInst(Agg, Val, Idxs, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003365 RecursionLimit);
3366}
3367
Duncan Sands7412f6e2010-11-17 04:30:22 +00003368/// SimplifyPHINode - See if we can fold the given phi. If not, returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00003369static Value *SimplifyPHINode(PHINode *PN, const Query &Q) {
Duncan Sands7412f6e2010-11-17 04:30:22 +00003370 // If all of the PHI's incoming values are the same then replace the PHI node
3371 // with the common value.
Craig Topper9f008862014-04-15 04:59:12 +00003372 Value *CommonValue = nullptr;
Duncan Sands7412f6e2010-11-17 04:30:22 +00003373 bool HasUndefInput = false;
3374 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
3375 Value *Incoming = PN->getIncomingValue(i);
3376 // If the incoming value is the phi node itself, it can safely be skipped.
3377 if (Incoming == PN) continue;
3378 if (isa<UndefValue>(Incoming)) {
3379 // Remember that we saw an undef value, but otherwise ignore them.
3380 HasUndefInput = true;
3381 continue;
3382 }
3383 if (CommonValue && Incoming != CommonValue)
Craig Topper9f008862014-04-15 04:59:12 +00003384 return nullptr; // Not the same, bail out.
Duncan Sands7412f6e2010-11-17 04:30:22 +00003385 CommonValue = Incoming;
3386 }
3387
3388 // If CommonValue is null then all of the incoming values were either undef or
3389 // equal to the phi node itself.
3390 if (!CommonValue)
3391 return UndefValue::get(PN->getType());
3392
3393 // If we have a PHI node like phi(X, undef, X), where X is defined by some
3394 // instruction, we cannot return X as the result of the PHI node unless it
3395 // dominates the PHI block.
3396 if (HasUndefInput)
Craig Topper9f008862014-04-15 04:59:12 +00003397 return ValueDominatesPHI(CommonValue, PN, Q.DT) ? CommonValue : nullptr;
Duncan Sands7412f6e2010-11-17 04:30:22 +00003398
3399 return CommonValue;
3400}
3401
Duncan Sands395ac42d2012-03-13 14:07:05 +00003402static Value *SimplifyTruncInst(Value *Op, Type *Ty, const Query &Q, unsigned) {
3403 if (Constant *C = dyn_cast<Constant>(Op))
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003404 return ConstantFoldInstOperands(Instruction::Trunc, Ty, C, Q.DL, Q.TLI);
Duncan Sands395ac42d2012-03-13 14:07:05 +00003405
Craig Topper9f008862014-04-15 04:59:12 +00003406 return nullptr;
Duncan Sands395ac42d2012-03-13 14:07:05 +00003407}
3408
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003409Value *llvm::SimplifyTruncInst(Value *Op, Type *Ty, const DataLayout &DL,
Duncan Sands395ac42d2012-03-13 14:07:05 +00003410 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003411 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003412 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003413 return ::SimplifyTruncInst(Op, Ty, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00003414 RecursionLimit);
Duncan Sands395ac42d2012-03-13 14:07:05 +00003415}
3416
Chris Lattnera71e9d62009-11-10 00:55:12 +00003417//=== Helper functions for higher up the class hierarchy.
Chris Lattnerc1f19072009-11-09 23:28:39 +00003418
Chris Lattnera71e9d62009-11-10 00:55:12 +00003419/// SimplifyBinOp - Given operands for a BinaryOperator, see if we can
3420/// fold the result. If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003421static Value *SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003422 const Query &Q, unsigned MaxRecurse) {
Chris Lattnera71e9d62009-11-10 00:55:12 +00003423 switch (Opcode) {
Chris Lattner9e4aa022011-02-09 17:15:04 +00003424 case Instruction::Add:
Duncan Sands8b4e2832011-02-09 17:45:03 +00003425 return SimplifyAddInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003426 Q, MaxRecurse);
Michael Ilsemand2b05e52012-12-12 00:29:16 +00003427 case Instruction::FAdd:
3428 return SimplifyFAddInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
3429
Chris Lattner9e4aa022011-02-09 17:15:04 +00003430 case Instruction::Sub:
Duncan Sands8b4e2832011-02-09 17:45:03 +00003431 return SimplifySubInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003432 Q, MaxRecurse);
Michael Ilsemand2b05e52012-12-12 00:29:16 +00003433 case Instruction::FSub:
3434 return SimplifyFSubInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
3435
Duncan Sandsb8cee002012-03-13 11:42:19 +00003436 case Instruction::Mul: return SimplifyMulInst (LHS, RHS, Q, MaxRecurse);
Michael Ilsemand2b05e52012-12-12 00:29:16 +00003437 case Instruction::FMul:
3438 return SimplifyFMulInst (LHS, RHS, FastMathFlags(), Q, MaxRecurse);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003439 case Instruction::SDiv: return SimplifySDivInst(LHS, RHS, Q, MaxRecurse);
3440 case Instruction::UDiv: return SimplifyUDivInst(LHS, RHS, Q, MaxRecurse);
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00003441 case Instruction::FDiv:
3442 return SimplifyFDivInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003443 case Instruction::SRem: return SimplifySRemInst(LHS, RHS, Q, MaxRecurse);
3444 case Instruction::URem: return SimplifyURemInst(LHS, RHS, Q, MaxRecurse);
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00003445 case Instruction::FRem:
3446 return SimplifyFRemInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00003447 case Instruction::Shl:
Duncan Sands8b4e2832011-02-09 17:45:03 +00003448 return SimplifyShlInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003449 Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00003450 case Instruction::LShr:
Duncan Sandsb8cee002012-03-13 11:42:19 +00003451 return SimplifyLShrInst(LHS, RHS, /*isExact*/false, Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00003452 case Instruction::AShr:
Duncan Sandsb8cee002012-03-13 11:42:19 +00003453 return SimplifyAShrInst(LHS, RHS, /*isExact*/false, Q, MaxRecurse);
3454 case Instruction::And: return SimplifyAndInst(LHS, RHS, Q, MaxRecurse);
3455 case Instruction::Or: return SimplifyOrInst (LHS, RHS, Q, MaxRecurse);
3456 case Instruction::Xor: return SimplifyXorInst(LHS, RHS, Q, MaxRecurse);
Chris Lattnera71e9d62009-11-10 00:55:12 +00003457 default:
3458 if (Constant *CLHS = dyn_cast<Constant>(LHS))
3459 if (Constant *CRHS = dyn_cast<Constant>(RHS)) {
3460 Constant *COps[] = {CLHS, CRHS};
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003461 return ConstantFoldInstOperands(Opcode, LHS->getType(), COps, Q.DL,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003462 Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00003463 }
Duncan Sandsb0579e92010-11-10 13:00:08 +00003464
Duncan Sands6c7a52c2010-12-21 08:49:00 +00003465 // If the operation is associative, try some generic simplifications.
3466 if (Instruction::isAssociative(Opcode))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003467 if (Value *V = SimplifyAssociativeBinOp(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00003468 return V;
3469
Duncan Sandsb8cee002012-03-13 11:42:19 +00003470 // If the operation is with the result of a select instruction check whether
Duncan Sandsb0579e92010-11-10 13:00:08 +00003471 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003472 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003473 if (Value *V = ThreadBinOpOverSelect(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003474 return V;
3475
3476 // If the operation is with the result of a phi instruction, check whether
3477 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003478 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003479 if (Value *V = ThreadBinOpOverPHI(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00003480 return V;
3481
Craig Topper9f008862014-04-15 04:59:12 +00003482 return nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00003483 }
3484}
Chris Lattnerc1f19072009-11-09 23:28:39 +00003485
Michael Zolotukhin4e8598e2015-02-06 20:02:51 +00003486/// SimplifyFPBinOp - Given operands for a BinaryOperator, see if we can
3487/// fold the result. If not, this returns null.
3488/// In contrast to SimplifyBinOp, try to use FastMathFlag when folding the
3489/// result. In case we don't need FastMathFlags, simply fall to SimplifyBinOp.
3490static Value *SimplifyFPBinOp(unsigned Opcode, Value *LHS, Value *RHS,
3491 const FastMathFlags &FMF, const Query &Q,
3492 unsigned MaxRecurse) {
3493 switch (Opcode) {
3494 case Instruction::FAdd:
3495 return SimplifyFAddInst(LHS, RHS, FMF, Q, MaxRecurse);
3496 case Instruction::FSub:
3497 return SimplifyFSubInst(LHS, RHS, FMF, Q, MaxRecurse);
3498 case Instruction::FMul:
3499 return SimplifyFMulInst(LHS, RHS, FMF, Q, MaxRecurse);
3500 default:
3501 return SimplifyBinOp(Opcode, LHS, RHS, Q, MaxRecurse);
3502 }
3503}
3504
Duncan Sands7e800d62010-11-14 11:23:23 +00003505Value *llvm::SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003506 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003507 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003508 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003509 return ::SimplifyBinOp(Opcode, LHS, RHS, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00003510 RecursionLimit);
Chris Lattnerc1f19072009-11-09 23:28:39 +00003511}
3512
Michael Zolotukhin4e8598e2015-02-06 20:02:51 +00003513Value *llvm::SimplifyFPBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003514 const FastMathFlags &FMF, const DataLayout &DL,
Michael Zolotukhin4e8598e2015-02-06 20:02:51 +00003515 const TargetLibraryInfo *TLI,
3516 const DominatorTree *DT, AssumptionCache *AC,
3517 const Instruction *CxtI) {
3518 return ::SimplifyFPBinOp(Opcode, LHS, RHS, FMF, Query(DL, TLI, DT, AC, CxtI),
3519 RecursionLimit);
3520}
3521
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003522/// SimplifyCmpInst - Given operands for a CmpInst, see if we can
3523/// fold the result.
3524static Value *SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003525 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003526 if (CmpInst::isIntPredicate((CmpInst::Predicate)Predicate))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003527 return SimplifyICmpInst(Predicate, LHS, RHS, Q, MaxRecurse);
3528 return SimplifyFCmpInst(Predicate, LHS, RHS, Q, MaxRecurse);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003529}
3530
3531Value *llvm::SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003532 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003533 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003534 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003535 return ::SimplifyCmpInst(Predicate, LHS, RHS, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003536 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003537}
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003538
Michael Ilseman54857292013-02-07 19:26:05 +00003539static bool IsIdempotent(Intrinsic::ID ID) {
3540 switch (ID) {
3541 default: return false;
3542
3543 // Unary idempotent: f(f(x)) = f(x)
3544 case Intrinsic::fabs:
3545 case Intrinsic::floor:
3546 case Intrinsic::ceil:
3547 case Intrinsic::trunc:
3548 case Intrinsic::rint:
3549 case Intrinsic::nearbyint:
Hal Finkel171817e2013-08-07 22:49:12 +00003550 case Intrinsic::round:
Michael Ilseman54857292013-02-07 19:26:05 +00003551 return true;
3552 }
3553}
3554
3555template <typename IterTy>
3556static Value *SimplifyIntrinsic(Intrinsic::ID IID, IterTy ArgBegin, IterTy ArgEnd,
3557 const Query &Q, unsigned MaxRecurse) {
3558 // Perform idempotent optimizations
3559 if (!IsIdempotent(IID))
Craig Topper9f008862014-04-15 04:59:12 +00003560 return nullptr;
Michael Ilseman54857292013-02-07 19:26:05 +00003561
3562 // Unary Ops
3563 if (std::distance(ArgBegin, ArgEnd) == 1)
3564 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(*ArgBegin))
3565 if (II->getIntrinsicID() == IID)
3566 return II;
3567
Craig Topper9f008862014-04-15 04:59:12 +00003568 return nullptr;
Michael Ilseman54857292013-02-07 19:26:05 +00003569}
3570
Chandler Carruth9dc35582012-12-28 11:30:55 +00003571template <typename IterTy>
Chandler Carruthf6182152012-12-28 14:23:29 +00003572static Value *SimplifyCall(Value *V, IterTy ArgBegin, IterTy ArgEnd,
Chandler Carruth9dc35582012-12-28 11:30:55 +00003573 const Query &Q, unsigned MaxRecurse) {
Chandler Carruthf6182152012-12-28 14:23:29 +00003574 Type *Ty = V->getType();
Chandler Carruth9dc35582012-12-28 11:30:55 +00003575 if (PointerType *PTy = dyn_cast<PointerType>(Ty))
3576 Ty = PTy->getElementType();
3577 FunctionType *FTy = cast<FunctionType>(Ty);
3578
Dan Gohman85977e62011-11-04 18:32:42 +00003579 // call undef -> undef
Chandler Carruthf6182152012-12-28 14:23:29 +00003580 if (isa<UndefValue>(V))
Chandler Carruth9dc35582012-12-28 11:30:55 +00003581 return UndefValue::get(FTy->getReturnType());
Dan Gohman85977e62011-11-04 18:32:42 +00003582
Chandler Carruthf6182152012-12-28 14:23:29 +00003583 Function *F = dyn_cast<Function>(V);
3584 if (!F)
Craig Topper9f008862014-04-15 04:59:12 +00003585 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00003586
Michael Ilseman54857292013-02-07 19:26:05 +00003587 if (unsigned IID = F->getIntrinsicID())
3588 if (Value *Ret =
3589 SimplifyIntrinsic((Intrinsic::ID) IID, ArgBegin, ArgEnd, Q, MaxRecurse))
3590 return Ret;
3591
Chandler Carruthf6182152012-12-28 14:23:29 +00003592 if (!canConstantFoldCallTo(F))
Craig Topper9f008862014-04-15 04:59:12 +00003593 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00003594
3595 SmallVector<Constant *, 4> ConstantArgs;
3596 ConstantArgs.reserve(ArgEnd - ArgBegin);
3597 for (IterTy I = ArgBegin, E = ArgEnd; I != E; ++I) {
3598 Constant *C = dyn_cast<Constant>(*I);
3599 if (!C)
Craig Topper9f008862014-04-15 04:59:12 +00003600 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00003601 ConstantArgs.push_back(C);
3602 }
3603
3604 return ConstantFoldCall(F, ConstantArgs, Q.TLI);
Dan Gohman85977e62011-11-04 18:32:42 +00003605}
3606
Chandler Carruthf6182152012-12-28 14:23:29 +00003607Value *llvm::SimplifyCall(Value *V, User::op_iterator ArgBegin,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003608 User::op_iterator ArgEnd, const DataLayout &DL,
Chandler Carruth66b31302015-01-04 12:03:27 +00003609 const TargetLibraryInfo *TLI, const DominatorTree *DT,
3610 AssumptionCache *AC, const Instruction *CxtI) {
3611 return ::SimplifyCall(V, ArgBegin, ArgEnd, Query(DL, TLI, DT, AC, CxtI),
Chandler Carruth9dc35582012-12-28 11:30:55 +00003612 RecursionLimit);
3613}
3614
Chandler Carruthf6182152012-12-28 14:23:29 +00003615Value *llvm::SimplifyCall(Value *V, ArrayRef<Value *> Args,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003616 const DataLayout &DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003617 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003618 const Instruction *CxtI) {
3619 return ::SimplifyCall(V, Args.begin(), Args.end(),
Chandler Carruth66b31302015-01-04 12:03:27 +00003620 Query(DL, TLI, DT, AC, CxtI), RecursionLimit);
Chandler Carruth9dc35582012-12-28 11:30:55 +00003621}
3622
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003623/// SimplifyInstruction - See if we can compute a simplified version of this
3624/// instruction. If not, this returns null.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003625Value *llvm::SimplifyInstruction(Instruction *I, const DataLayout &DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00003626 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003627 const DominatorTree *DT, AssumptionCache *AC) {
Duncan Sands64e41cf2010-11-17 08:35:29 +00003628 Value *Result;
3629
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003630 switch (I->getOpcode()) {
3631 default:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003632 Result = ConstantFoldInstruction(I, DL, TLI);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003633 break;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00003634 case Instruction::FAdd:
3635 Result = SimplifyFAddInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00003636 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00003637 break;
Chris Lattner3d9823b2009-11-27 17:42:22 +00003638 case Instruction::Add:
Duncan Sands64e41cf2010-11-17 08:35:29 +00003639 Result = SimplifyAddInst(I->getOperand(0), I->getOperand(1),
3640 cast<BinaryOperator>(I)->hasNoSignedWrap(),
Chandler Carruth66b31302015-01-04 12:03:27 +00003641 cast<BinaryOperator>(I)->hasNoUnsignedWrap(), DL,
3642 TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003643 break;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00003644 case Instruction::FSub:
3645 Result = SimplifyFSubInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00003646 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00003647 break;
Duncan Sands0a2c41682010-12-15 14:07:39 +00003648 case Instruction::Sub:
3649 Result = SimplifySubInst(I->getOperand(0), I->getOperand(1),
3650 cast<BinaryOperator>(I)->hasNoSignedWrap(),
Chandler Carruth66b31302015-01-04 12:03:27 +00003651 cast<BinaryOperator>(I)->hasNoUnsignedWrap(), DL,
3652 TLI, DT, AC, I);
Duncan Sands0a2c41682010-12-15 14:07:39 +00003653 break;
Michael Ilsemanbe9137a2012-11-27 00:46:26 +00003654 case Instruction::FMul:
3655 Result = SimplifyFMulInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00003656 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +00003657 break;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00003658 case Instruction::Mul:
Chandler Carruth66b31302015-01-04 12:03:27 +00003659 Result =
3660 SimplifyMulInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00003661 break;
Duncan Sands771e82a2011-01-28 16:51:11 +00003662 case Instruction::SDiv:
Chandler Carruth66b31302015-01-04 12:03:27 +00003663 Result = SimplifySDivInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
3664 AC, I);
Duncan Sands771e82a2011-01-28 16:51:11 +00003665 break;
3666 case Instruction::UDiv:
Chandler Carruth66b31302015-01-04 12:03:27 +00003667 Result = SimplifyUDivInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
3668 AC, I);
Duncan Sands771e82a2011-01-28 16:51:11 +00003669 break;
Frits van Bommelc2549662011-01-29 15:26:31 +00003670 case Instruction::FDiv:
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00003671 Result = SimplifyFDivInst(I->getOperand(0), I->getOperand(1),
3672 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Frits van Bommelc2549662011-01-29 15:26:31 +00003673 break;
Duncan Sandsa3e36992011-05-02 16:27:02 +00003674 case Instruction::SRem:
Chandler Carruth66b31302015-01-04 12:03:27 +00003675 Result = SimplifySRemInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
3676 AC, I);
Duncan Sandsa3e36992011-05-02 16:27:02 +00003677 break;
3678 case Instruction::URem:
Chandler Carruth66b31302015-01-04 12:03:27 +00003679 Result = SimplifyURemInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
3680 AC, I);
Duncan Sandsa3e36992011-05-02 16:27:02 +00003681 break;
3682 case Instruction::FRem:
Mehdi Aminicd3ca6f2015-02-23 18:30:25 +00003683 Result = SimplifyFRemInst(I->getOperand(0), I->getOperand(1),
3684 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Duncan Sandsa3e36992011-05-02 16:27:02 +00003685 break;
Duncan Sands7f60dc12011-01-14 00:37:45 +00003686 case Instruction::Shl:
Chris Lattner9e4aa022011-02-09 17:15:04 +00003687 Result = SimplifyShlInst(I->getOperand(0), I->getOperand(1),
3688 cast<BinaryOperator>(I)->hasNoSignedWrap(),
Chandler Carruth66b31302015-01-04 12:03:27 +00003689 cast<BinaryOperator>(I)->hasNoUnsignedWrap(), DL,
3690 TLI, DT, AC, I);
Duncan Sands7f60dc12011-01-14 00:37:45 +00003691 break;
3692 case Instruction::LShr:
Chris Lattner9e4aa022011-02-09 17:15:04 +00003693 Result = SimplifyLShrInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00003694 cast<BinaryOperator>(I)->isExact(), DL, TLI, DT,
3695 AC, I);
Duncan Sands7f60dc12011-01-14 00:37:45 +00003696 break;
3697 case Instruction::AShr:
Chris Lattner9e4aa022011-02-09 17:15:04 +00003698 Result = SimplifyAShrInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00003699 cast<BinaryOperator>(I)->isExact(), DL, TLI, DT,
3700 AC, I);
Duncan Sands7f60dc12011-01-14 00:37:45 +00003701 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003702 case Instruction::And:
Chandler Carruth66b31302015-01-04 12:03:27 +00003703 Result =
3704 SimplifyAndInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003705 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003706 case Instruction::Or:
Chandler Carruth66b31302015-01-04 12:03:27 +00003707 Result =
3708 SimplifyOrInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003709 break;
Duncan Sandsc89ac072010-11-17 18:52:15 +00003710 case Instruction::Xor:
Chandler Carruth66b31302015-01-04 12:03:27 +00003711 Result =
3712 SimplifyXorInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sandsc89ac072010-11-17 18:52:15 +00003713 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003714 case Instruction::ICmp:
Chandler Carruth66b31302015-01-04 12:03:27 +00003715 Result =
3716 SimplifyICmpInst(cast<ICmpInst>(I)->getPredicate(), I->getOperand(0),
3717 I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003718 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003719 case Instruction::FCmp:
Chandler Carruth66b31302015-01-04 12:03:27 +00003720 Result =
3721 SimplifyFCmpInst(cast<FCmpInst>(I)->getPredicate(), I->getOperand(0),
3722 I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003723 break;
Chris Lattnerc707fa92010-04-20 05:32:14 +00003724 case Instruction::Select:
Duncan Sands64e41cf2010-11-17 08:35:29 +00003725 Result = SimplifySelectInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00003726 I->getOperand(2), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003727 break;
Chris Lattner8574aba2009-11-27 00:29:05 +00003728 case Instruction::GetElementPtr: {
3729 SmallVector<Value*, 8> Ops(I->op_begin(), I->op_end());
Chandler Carruth66b31302015-01-04 12:03:27 +00003730 Result = SimplifyGEPInst(Ops, DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003731 break;
Chris Lattner8574aba2009-11-27 00:29:05 +00003732 }
Duncan Sandsfd26a952011-09-05 06:52:48 +00003733 case Instruction::InsertValue: {
3734 InsertValueInst *IV = cast<InsertValueInst>(I);
3735 Result = SimplifyInsertValueInst(IV->getAggregateOperand(),
3736 IV->getInsertedValueOperand(),
Chandler Carruth66b31302015-01-04 12:03:27 +00003737 IV->getIndices(), DL, TLI, DT, AC, I);
Duncan Sandsfd26a952011-09-05 06:52:48 +00003738 break;
3739 }
Duncan Sands4581ddc2010-11-14 13:30:18 +00003740 case Instruction::PHI:
Chandler Carruth66b31302015-01-04 12:03:27 +00003741 Result = SimplifyPHINode(cast<PHINode>(I), Query(DL, TLI, DT, AC, I));
Duncan Sands64e41cf2010-11-17 08:35:29 +00003742 break;
Chandler Carruth9dc35582012-12-28 11:30:55 +00003743 case Instruction::Call: {
3744 CallSite CS(cast<CallInst>(I));
Chandler Carruth66b31302015-01-04 12:03:27 +00003745 Result = SimplifyCall(CS.getCalledValue(), CS.arg_begin(), CS.arg_end(), DL,
3746 TLI, DT, AC, I);
Dan Gohman85977e62011-11-04 18:32:42 +00003747 break;
Chandler Carruth9dc35582012-12-28 11:30:55 +00003748 }
Duncan Sands395ac42d2012-03-13 14:07:05 +00003749 case Instruction::Trunc:
Chandler Carruth66b31302015-01-04 12:03:27 +00003750 Result =
3751 SimplifyTruncInst(I->getOperand(0), I->getType(), DL, TLI, DT, AC, I);
Duncan Sands395ac42d2012-03-13 14:07:05 +00003752 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003753 }
Duncan Sands64e41cf2010-11-17 08:35:29 +00003754
3755 /// If called on unreachable code, the above logic may report that the
3756 /// instruction simplified to itself. Make life easier for users by
Duncan Sands019a4182010-12-15 11:02:22 +00003757 /// detecting that case here, returning a safe value instead.
3758 return Result == I ? UndefValue::get(I->getType()) : Result;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003759}
3760
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003761/// \brief Implementation of recursive simplification through an instructions
3762/// uses.
Chris Lattner852d6d62009-11-10 22:26:15 +00003763///
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003764/// This is the common implementation of the recursive simplification routines.
3765/// If we have a pre-simplified value in 'SimpleV', that is forcibly used to
3766/// replace the instruction 'I'. Otherwise, we simply add 'I' to the list of
3767/// instructions to process and attempt to simplify it using
3768/// InstructionSimplify.
3769///
3770/// This routine returns 'true' only when *it* simplifies something. The passed
3771/// in simplified value does not count toward this.
3772static bool replaceAndRecursivelySimplifyImpl(Instruction *I, Value *SimpleV,
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003773 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00003774 const DominatorTree *DT,
Chandler Carruth66b31302015-01-04 12:03:27 +00003775 AssumptionCache *AC) {
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003776 bool Simplified = false;
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00003777 SmallSetVector<Instruction *, 8> Worklist;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003778 const DataLayout &DL = I->getModule()->getDataLayout();
Duncan Sands7e800d62010-11-14 11:23:23 +00003779
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003780 // If we have an explicit value to collapse to, do that round of the
3781 // simplification loop by hand initially.
3782 if (SimpleV) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00003783 for (User *U : I->users())
3784 if (U != I)
3785 Worklist.insert(cast<Instruction>(U));
Duncan Sands7e800d62010-11-14 11:23:23 +00003786
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003787 // Replace the instruction with its simplified value.
3788 I->replaceAllUsesWith(SimpleV);
Chris Lattner19eff2a2010-07-15 06:36:08 +00003789
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003790 // Gracefully handle edge cases where the instruction is not wired into any
3791 // parent block.
3792 if (I->getParent())
3793 I->eraseFromParent();
3794 } else {
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00003795 Worklist.insert(I);
Chris Lattner852d6d62009-11-10 22:26:15 +00003796 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003797
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00003798 // Note that we must test the size on each iteration, the worklist can grow.
3799 for (unsigned Idx = 0; Idx != Worklist.size(); ++Idx) {
3800 I = Worklist[Idx];
Duncan Sands7e800d62010-11-14 11:23:23 +00003801
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003802 // See if this instruction simplifies.
Chandler Carruth66b31302015-01-04 12:03:27 +00003803 SimpleV = SimplifyInstruction(I, DL, TLI, DT, AC);
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003804 if (!SimpleV)
3805 continue;
3806
3807 Simplified = true;
3808
3809 // Stash away all the uses of the old instruction so we can check them for
3810 // recursive simplifications after a RAUW. This is cheaper than checking all
3811 // uses of To on the recursive step in most cases.
Chandler Carruthcdf47882014-03-09 03:16:01 +00003812 for (User *U : I->users())
3813 Worklist.insert(cast<Instruction>(U));
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003814
3815 // Replace the instruction with its simplified value.
3816 I->replaceAllUsesWith(SimpleV);
3817
3818 // Gracefully handle edge cases where the instruction is not wired into any
3819 // parent block.
3820 if (I->getParent())
3821 I->eraseFromParent();
3822 }
3823 return Simplified;
3824}
3825
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003826bool llvm::recursivelySimplifyInstruction(Instruction *I,
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003827 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00003828 const DominatorTree *DT,
Chandler Carruth66b31302015-01-04 12:03:27 +00003829 AssumptionCache *AC) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003830 return replaceAndRecursivelySimplifyImpl(I, nullptr, TLI, DT, AC);
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003831}
3832
3833bool llvm::replaceAndRecursivelySimplify(Instruction *I, Value *SimpleV,
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003834 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00003835 const DominatorTree *DT,
Chandler Carruth66b31302015-01-04 12:03:27 +00003836 AssumptionCache *AC) {
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003837 assert(I != SimpleV && "replaceAndRecursivelySimplify(X,X) is not valid!");
3838 assert(SimpleV && "Must provide a simplified value.");
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003839 return replaceAndRecursivelySimplifyImpl(I, SimpleV, TLI, DT, AC);
Chris Lattner852d6d62009-11-10 22:26:15 +00003840}