blob: 3fbbd7cbd22af04c76c36a4082661c050d189f75 [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 {
Rafael Espindola37dc9e12014-02-21 00:06:31 +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
Rafael Espindola37dc9e12014-02-21 00:06:31 +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);
Duncan Sandsb8cee002012-03-13 11:42:19 +000064static Value *SimplifyCmpInst(unsigned, Value *, Value *, const Query &,
Chad Rosierc24b86f2011-12-01 03:08:23 +000065 unsigned);
Duncan Sandsb8cee002012-03-13 11:42:19 +000066static Value *SimplifyOrInst(Value *, Value *, const Query &, unsigned);
67static Value *SimplifyXorInst(Value *, Value *, const Query &, unsigned);
Duncan Sands395ac42d2012-03-13 14:07:05 +000068static Value *SimplifyTruncInst(Value *, Type *, const Query &, unsigned);
Duncan Sands5ffc2982010-11-16 12:16:38 +000069
Duncan Sandsc1c92712011-07-26 15:03:53 +000070/// getFalse - For a boolean type, or a vector of boolean type, return false, or
71/// a vector with every element false, as appropriate for the type.
72static Constant *getFalse(Type *Ty) {
Nick Lewyckye659b842011-12-01 02:39:36 +000073 assert(Ty->getScalarType()->isIntegerTy(1) &&
Duncan Sandsc1c92712011-07-26 15:03:53 +000074 "Expected i1 type or a vector of i1!");
75 return Constant::getNullValue(Ty);
76}
77
78/// getTrue - For a boolean type, or a vector of boolean type, return true, or
79/// a vector with every element true, as appropriate for the type.
80static Constant *getTrue(Type *Ty) {
Nick Lewyckye659b842011-12-01 02:39:36 +000081 assert(Ty->getScalarType()->isIntegerTy(1) &&
Duncan Sandsc1c92712011-07-26 15:03:53 +000082 "Expected i1 type or a vector of i1!");
83 return Constant::getAllOnesValue(Ty);
84}
85
Duncan Sands3d5692a2011-10-30 19:56:36 +000086/// isSameCompare - Is V equivalent to the comparison "LHS Pred RHS"?
87static bool isSameCompare(Value *V, CmpInst::Predicate Pred, Value *LHS,
88 Value *RHS) {
89 CmpInst *Cmp = dyn_cast<CmpInst>(V);
90 if (!Cmp)
91 return false;
92 CmpInst::Predicate CPred = Cmp->getPredicate();
93 Value *CLHS = Cmp->getOperand(0), *CRHS = Cmp->getOperand(1);
94 if (CPred == Pred && CLHS == LHS && CRHS == RHS)
95 return true;
96 return CPred == CmpInst::getSwappedPredicate(Pred) && CLHS == RHS &&
97 CRHS == LHS;
98}
99
Duncan Sands5ffc2982010-11-16 12:16:38 +0000100/// ValueDominatesPHI - Does the given value dominate the specified phi node?
101static bool ValueDominatesPHI(Value *V, PHINode *P, const DominatorTree *DT) {
102 Instruction *I = dyn_cast<Instruction>(V);
103 if (!I)
104 // Arguments and constants dominate all instructions.
105 return true;
106
Chandler Carruth3ffccb32012-03-21 10:58:47 +0000107 // If we are processing instructions (and/or basic blocks) that have not been
108 // fully added to a function, the parent nodes may still be null. Simply
109 // return the conservative answer in these cases.
110 if (!I->getParent() || !P->getParent() || !I->getParent()->getParent())
111 return false;
112
Duncan Sands5ffc2982010-11-16 12:16:38 +0000113 // If we have a DominatorTree then do a precise test.
Eli Friedmanc8cbd062012-03-13 01:06:07 +0000114 if (DT) {
115 if (!DT->isReachableFromEntry(P->getParent()))
116 return true;
117 if (!DT->isReachableFromEntry(I->getParent()))
118 return false;
119 return DT->dominates(I, P);
120 }
Duncan Sands5ffc2982010-11-16 12:16:38 +0000121
122 // Otherwise, if the instruction is in the entry block, and is not an invoke,
123 // then it obviously dominates all phi nodes.
124 if (I->getParent() == &I->getParent()->getParent()->getEntryBlock() &&
125 !isa<InvokeInst>(I))
126 return true;
127
128 return false;
129}
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000130
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000131/// ExpandBinOp - Simplify "A op (B op' C)" by distributing op over op', turning
132/// it into "(A op B) op' (A op C)". Here "op" is given by Opcode and "op'" is
133/// given by OpcodeToExpand, while "A" corresponds to LHS and "B op' C" to RHS.
134/// Also performs the transform "(A op' B) op C" -> "(A op C) op' (B op C)".
135/// Returns the simplified value, or null if no simplification was performed.
136static Value *ExpandBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000137 unsigned OpcToExpand, const Query &Q,
Chad Rosierc24b86f2011-12-01 03:08:23 +0000138 unsigned MaxRecurse) {
Benjamin Kramerb6d52b82010-12-28 13:52:52 +0000139 Instruction::BinaryOps OpcodeToExpand = (Instruction::BinaryOps)OpcToExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000140 // Recursion is always used, so bail out at once if we already hit the limit.
141 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000142 return nullptr;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000143
144 // Check whether the expression has the form "(A op' B) op C".
145 if (BinaryOperator *Op0 = dyn_cast<BinaryOperator>(LHS))
146 if (Op0->getOpcode() == OpcodeToExpand) {
147 // It does! Try turning it into "(A op C) op' (B op C)".
148 Value *A = Op0->getOperand(0), *B = Op0->getOperand(1), *C = RHS;
149 // Do "A op C" and "B op C" both simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000150 if (Value *L = SimplifyBinOp(Opcode, A, C, Q, MaxRecurse))
151 if (Value *R = SimplifyBinOp(Opcode, B, C, Q, MaxRecurse)) {
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000152 // They do! Return "L op' R" if it simplifies or is already available.
153 // If "L op' R" equals "A op' B" then "L op' R" is just the LHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000154 if ((L == A && R == B) || (Instruction::isCommutative(OpcodeToExpand)
155 && L == B && R == A)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000156 ++NumExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000157 return LHS;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000158 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000159 // Otherwise return "L op' R" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000160 if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000161 ++NumExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000162 return V;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000163 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000164 }
165 }
166
167 // Check whether the expression has the form "A op (B op' C)".
168 if (BinaryOperator *Op1 = dyn_cast<BinaryOperator>(RHS))
169 if (Op1->getOpcode() == OpcodeToExpand) {
170 // It does! Try turning it into "(A op B) op' (A op C)".
171 Value *A = LHS, *B = Op1->getOperand(0), *C = Op1->getOperand(1);
172 // Do "A op B" and "A op C" both simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000173 if (Value *L = SimplifyBinOp(Opcode, A, B, Q, MaxRecurse))
174 if (Value *R = SimplifyBinOp(Opcode, A, C, Q, MaxRecurse)) {
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000175 // They do! Return "L op' R" if it simplifies or is already available.
176 // If "L op' R" equals "B op' C" then "L op' R" is just the RHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000177 if ((L == B && R == C) || (Instruction::isCommutative(OpcodeToExpand)
178 && L == C && R == B)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000179 ++NumExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000180 return RHS;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000181 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000182 // Otherwise return "L op' R" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000183 if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000184 ++NumExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000185 return V;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000186 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000187 }
188 }
189
Craig Topper9f008862014-04-15 04:59:12 +0000190 return nullptr;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000191}
192
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000193/// SimplifyAssociativeBinOp - Generic simplifications for associative binary
194/// operations. Returns the simpler value, or null if none was found.
Benjamin Kramerb6d52b82010-12-28 13:52:52 +0000195static Value *SimplifyAssociativeBinOp(unsigned Opc, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000196 const Query &Q, unsigned MaxRecurse) {
Benjamin Kramerb6d52b82010-12-28 13:52:52 +0000197 Instruction::BinaryOps Opcode = (Instruction::BinaryOps)Opc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000198 assert(Instruction::isAssociative(Opcode) && "Not an associative operation!");
199
200 // Recursion is always used, so bail out at once if we already hit the limit.
201 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000202 return nullptr;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000203
204 BinaryOperator *Op0 = dyn_cast<BinaryOperator>(LHS);
205 BinaryOperator *Op1 = dyn_cast<BinaryOperator>(RHS);
206
207 // Transform: "(A op B) op C" ==> "A op (B op C)" if it simplifies completely.
208 if (Op0 && Op0->getOpcode() == Opcode) {
209 Value *A = Op0->getOperand(0);
210 Value *B = Op0->getOperand(1);
211 Value *C = RHS;
212
213 // Does "B op C" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000214 if (Value *V = SimplifyBinOp(Opcode, B, C, Q, MaxRecurse)) {
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000215 // It does! Return "A op V" if it simplifies or is already available.
216 // If V equals B then "A op V" is just the LHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000217 if (V == B) return LHS;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000218 // Otherwise return "A op V" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000219 if (Value *W = SimplifyBinOp(Opcode, A, V, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000220 ++NumReassoc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000221 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000222 }
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000223 }
224 }
225
226 // Transform: "A op (B op C)" ==> "(A op B) op C" if it simplifies completely.
227 if (Op1 && Op1->getOpcode() == Opcode) {
228 Value *A = LHS;
229 Value *B = Op1->getOperand(0);
230 Value *C = Op1->getOperand(1);
231
232 // Does "A op B" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000233 if (Value *V = SimplifyBinOp(Opcode, A, B, Q, MaxRecurse)) {
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000234 // It does! Return "V op C" if it simplifies or is already available.
235 // If V equals B then "V op C" is just the RHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000236 if (V == B) return RHS;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000237 // Otherwise return "V op C" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000238 if (Value *W = SimplifyBinOp(Opcode, V, C, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000239 ++NumReassoc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000240 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000241 }
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000242 }
243 }
244
245 // The remaining transforms require commutativity as well as associativity.
246 if (!Instruction::isCommutative(Opcode))
Craig Topper9f008862014-04-15 04:59:12 +0000247 return nullptr;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000248
249 // Transform: "(A op B) op C" ==> "(C op A) op B" if it simplifies completely.
250 if (Op0 && Op0->getOpcode() == Opcode) {
251 Value *A = Op0->getOperand(0);
252 Value *B = Op0->getOperand(1);
253 Value *C = RHS;
254
255 // Does "C op A" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000256 if (Value *V = SimplifyBinOp(Opcode, C, A, Q, MaxRecurse)) {
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000257 // It does! Return "V op B" if it simplifies or is already available.
258 // If V equals A then "V op B" is just the LHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000259 if (V == A) return LHS;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000260 // Otherwise return "V op B" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000261 if (Value *W = SimplifyBinOp(Opcode, V, B, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000262 ++NumReassoc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000263 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000264 }
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000265 }
266 }
267
268 // Transform: "A op (B op C)" ==> "B op (C op A)" if it simplifies completely.
269 if (Op1 && Op1->getOpcode() == Opcode) {
270 Value *A = LHS;
271 Value *B = Op1->getOperand(0);
272 Value *C = Op1->getOperand(1);
273
274 // Does "C op A" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000275 if (Value *V = SimplifyBinOp(Opcode, C, A, Q, MaxRecurse)) {
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000276 // It does! Return "B op V" if it simplifies or is already available.
277 // If V equals C then "B op V" is just the RHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000278 if (V == C) return RHS;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000279 // Otherwise return "B op V" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000280 if (Value *W = SimplifyBinOp(Opcode, B, V, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000281 ++NumReassoc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000282 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000283 }
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000284 }
285 }
286
Craig Topper9f008862014-04-15 04:59:12 +0000287 return nullptr;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000288}
289
Duncan Sandsb0579e92010-11-10 13:00:08 +0000290/// ThreadBinOpOverSelect - In the case of a binary operation with a select
291/// instruction as an operand, try to simplify the binop by seeing whether
292/// evaluating it on both branches of the select results in the same value.
293/// Returns the common value if so, otherwise returns null.
294static Value *ThreadBinOpOverSelect(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000295 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000296 // Recursion is always used, so bail out at once if we already hit the limit.
297 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000298 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000299
Duncan Sandsb0579e92010-11-10 13:00:08 +0000300 SelectInst *SI;
301 if (isa<SelectInst>(LHS)) {
302 SI = cast<SelectInst>(LHS);
303 } else {
304 assert(isa<SelectInst>(RHS) && "No select instruction operand!");
305 SI = cast<SelectInst>(RHS);
306 }
307
308 // Evaluate the BinOp on the true and false branches of the select.
309 Value *TV;
310 Value *FV;
311 if (SI == LHS) {
Duncan Sandsb8cee002012-03-13 11:42:19 +0000312 TV = SimplifyBinOp(Opcode, SI->getTrueValue(), RHS, Q, MaxRecurse);
313 FV = SimplifyBinOp(Opcode, SI->getFalseValue(), RHS, Q, MaxRecurse);
Duncan Sandsb0579e92010-11-10 13:00:08 +0000314 } else {
Duncan Sandsb8cee002012-03-13 11:42:19 +0000315 TV = SimplifyBinOp(Opcode, LHS, SI->getTrueValue(), Q, MaxRecurse);
316 FV = SimplifyBinOp(Opcode, LHS, SI->getFalseValue(), Q, MaxRecurse);
Duncan Sandsb0579e92010-11-10 13:00:08 +0000317 }
318
Duncan Sandse3c53952011-01-01 16:12:09 +0000319 // If they simplified to the same value, then return the common value.
Duncan Sands772749a2011-01-01 20:08:02 +0000320 // If they both failed to simplify then return null.
321 if (TV == FV)
Duncan Sandsb0579e92010-11-10 13:00:08 +0000322 return TV;
323
324 // If one branch simplified to undef, return the other one.
325 if (TV && isa<UndefValue>(TV))
326 return FV;
327 if (FV && isa<UndefValue>(FV))
328 return TV;
329
330 // If applying the operation did not change the true and false select values,
331 // then the result of the binop is the select itself.
Duncan Sands772749a2011-01-01 20:08:02 +0000332 if (TV == SI->getTrueValue() && FV == SI->getFalseValue())
Duncan Sandsb0579e92010-11-10 13:00:08 +0000333 return SI;
334
335 // If one branch simplified and the other did not, and the simplified
336 // value is equal to the unsimplified one, return the simplified value.
337 // For example, select (cond, X, X & Z) & Z -> X & Z.
338 if ((FV && !TV) || (TV && !FV)) {
339 // Check that the simplified value has the form "X op Y" where "op" is the
340 // same as the original operation.
341 Instruction *Simplified = dyn_cast<Instruction>(FV ? FV : TV);
342 if (Simplified && Simplified->getOpcode() == Opcode) {
343 // The value that didn't simplify is "UnsimplifiedLHS op UnsimplifiedRHS".
344 // We already know that "op" is the same as for the simplified value. See
345 // if the operands match too. If so, return the simplified value.
346 Value *UnsimplifiedBranch = FV ? SI->getTrueValue() : SI->getFalseValue();
347 Value *UnsimplifiedLHS = SI == LHS ? UnsimplifiedBranch : LHS;
348 Value *UnsimplifiedRHS = SI == LHS ? RHS : UnsimplifiedBranch;
Duncan Sands772749a2011-01-01 20:08:02 +0000349 if (Simplified->getOperand(0) == UnsimplifiedLHS &&
350 Simplified->getOperand(1) == UnsimplifiedRHS)
Duncan Sandsb0579e92010-11-10 13:00:08 +0000351 return Simplified;
352 if (Simplified->isCommutative() &&
Duncan Sands772749a2011-01-01 20:08:02 +0000353 Simplified->getOperand(1) == UnsimplifiedLHS &&
354 Simplified->getOperand(0) == UnsimplifiedRHS)
Duncan Sandsb0579e92010-11-10 13:00:08 +0000355 return Simplified;
356 }
357 }
358
Craig Topper9f008862014-04-15 04:59:12 +0000359 return nullptr;
Duncan Sandsb0579e92010-11-10 13:00:08 +0000360}
361
362/// ThreadCmpOverSelect - In the case of a comparison with a select instruction,
363/// try to simplify the comparison by seeing whether both branches of the select
364/// result in the same value. Returns the common value if so, otherwise returns
365/// null.
366static Value *ThreadCmpOverSelect(CmpInst::Predicate Pred, Value *LHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000367 Value *RHS, const Query &Q,
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000368 unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000369 // Recursion is always used, so bail out at once if we already hit the limit.
370 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000371 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000372
Duncan Sandsb0579e92010-11-10 13:00:08 +0000373 // Make sure the select is on the LHS.
374 if (!isa<SelectInst>(LHS)) {
375 std::swap(LHS, RHS);
376 Pred = CmpInst::getSwappedPredicate(Pred);
377 }
378 assert(isa<SelectInst>(LHS) && "Not comparing with a select instruction!");
379 SelectInst *SI = cast<SelectInst>(LHS);
Duncan Sands3d5692a2011-10-30 19:56:36 +0000380 Value *Cond = SI->getCondition();
381 Value *TV = SI->getTrueValue();
382 Value *FV = SI->getFalseValue();
Duncan Sandsb0579e92010-11-10 13:00:08 +0000383
Duncan Sands06504022011-02-03 09:37:39 +0000384 // Now that we have "cmp select(Cond, TV, FV), RHS", analyse it.
Duncan Sandsb0579e92010-11-10 13:00:08 +0000385 // Does "cmp TV, RHS" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000386 Value *TCmp = SimplifyCmpInst(Pred, TV, RHS, Q, MaxRecurse);
Duncan Sands3d5692a2011-10-30 19:56:36 +0000387 if (TCmp == Cond) {
388 // It not only simplified, it simplified to the select condition. Replace
389 // it with 'true'.
390 TCmp = getTrue(Cond->getType());
391 } else if (!TCmp) {
392 // It didn't simplify. However if "cmp TV, RHS" is equal to the select
393 // condition then we can replace it with 'true'. Otherwise give up.
394 if (!isSameCompare(Cond, Pred, TV, RHS))
Craig Topper9f008862014-04-15 04:59:12 +0000395 return nullptr;
Duncan Sands3d5692a2011-10-30 19:56:36 +0000396 TCmp = getTrue(Cond->getType());
Duncan Sands06504022011-02-03 09:37:39 +0000397 }
398
Duncan Sands3d5692a2011-10-30 19:56:36 +0000399 // Does "cmp FV, RHS" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000400 Value *FCmp = SimplifyCmpInst(Pred, FV, RHS, Q, MaxRecurse);
Duncan Sands3d5692a2011-10-30 19:56:36 +0000401 if (FCmp == Cond) {
402 // It not only simplified, it simplified to the select condition. Replace
403 // it with 'false'.
404 FCmp = getFalse(Cond->getType());
405 } else if (!FCmp) {
406 // It didn't simplify. However if "cmp FV, RHS" is equal to the select
407 // condition then we can replace it with 'false'. Otherwise give up.
408 if (!isSameCompare(Cond, Pred, FV, RHS))
Craig Topper9f008862014-04-15 04:59:12 +0000409 return nullptr;
Duncan Sands3d5692a2011-10-30 19:56:36 +0000410 FCmp = getFalse(Cond->getType());
411 }
412
413 // If both sides simplified to the same value, then use it as the result of
414 // the original comparison.
415 if (TCmp == FCmp)
416 return TCmp;
Duncan Sands26641d72012-02-10 14:31:24 +0000417
418 // The remaining cases only make sense if the select condition has the same
419 // type as the result of the comparison, so bail out if this is not so.
420 if (Cond->getType()->isVectorTy() != RHS->getType()->isVectorTy())
Craig Topper9f008862014-04-15 04:59:12 +0000421 return nullptr;
Duncan Sands3d5692a2011-10-30 19:56:36 +0000422 // If the false value simplified to false, then the result of the compare
423 // is equal to "Cond && TCmp". This also catches the case when the false
424 // value simplified to false and the true value to true, returning "Cond".
425 if (match(FCmp, m_Zero()))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000426 if (Value *V = SimplifyAndInst(Cond, TCmp, Q, MaxRecurse))
Duncan Sands3d5692a2011-10-30 19:56:36 +0000427 return V;
428 // If the true value simplified to true, then the result of the compare
429 // is equal to "Cond || FCmp".
430 if (match(TCmp, m_One()))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000431 if (Value *V = SimplifyOrInst(Cond, FCmp, Q, MaxRecurse))
Duncan Sands3d5692a2011-10-30 19:56:36 +0000432 return V;
433 // Finally, if the false value simplified to true and the true value to
434 // false, then the result of the compare is equal to "!Cond".
435 if (match(FCmp, m_One()) && match(TCmp, m_Zero()))
436 if (Value *V =
437 SimplifyXorInst(Cond, Constant::getAllOnesValue(Cond->getType()),
Duncan Sandsb8cee002012-03-13 11:42:19 +0000438 Q, MaxRecurse))
Duncan Sands3d5692a2011-10-30 19:56:36 +0000439 return V;
440
Craig Topper9f008862014-04-15 04:59:12 +0000441 return nullptr;
Duncan Sandsb0579e92010-11-10 13:00:08 +0000442}
443
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000444/// ThreadBinOpOverPHI - In the case of a binary operation with an operand that
445/// is a PHI instruction, try to simplify the binop by seeing whether evaluating
446/// it on the incoming phi values yields the same result for every value. If so
447/// returns the common value, otherwise returns null.
448static Value *ThreadBinOpOverPHI(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000449 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000450 // Recursion is always used, so bail out at once if we already hit the limit.
451 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000452 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000453
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000454 PHINode *PI;
455 if (isa<PHINode>(LHS)) {
456 PI = cast<PHINode>(LHS);
Duncan Sands5ffc2982010-11-16 12:16:38 +0000457 // Bail out if RHS and the phi may be mutually interdependent due to a loop.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000458 if (!ValueDominatesPHI(RHS, PI, Q.DT))
Craig Topper9f008862014-04-15 04:59:12 +0000459 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000460 } else {
461 assert(isa<PHINode>(RHS) && "No PHI instruction operand!");
462 PI = cast<PHINode>(RHS);
Duncan Sands5ffc2982010-11-16 12:16:38 +0000463 // Bail out if LHS and the phi may be mutually interdependent due to a loop.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000464 if (!ValueDominatesPHI(LHS, PI, Q.DT))
Craig Topper9f008862014-04-15 04:59:12 +0000465 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000466 }
467
468 // Evaluate the BinOp on the incoming phi values.
Craig Topper9f008862014-04-15 04:59:12 +0000469 Value *CommonValue = nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000470 for (unsigned i = 0, e = PI->getNumIncomingValues(); i != e; ++i) {
Duncan Sandsf12ba1d2010-11-15 17:52:45 +0000471 Value *Incoming = PI->getIncomingValue(i);
Duncan Sands7412f6e2010-11-17 04:30:22 +0000472 // If the incoming value is the phi node itself, it can safely be skipped.
Duncan Sandsf12ba1d2010-11-15 17:52:45 +0000473 if (Incoming == PI) continue;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000474 Value *V = PI == LHS ?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000475 SimplifyBinOp(Opcode, Incoming, RHS, Q, MaxRecurse) :
476 SimplifyBinOp(Opcode, LHS, Incoming, Q, MaxRecurse);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000477 // If the operation failed to simplify, or simplified to a different value
478 // to previously, then give up.
479 if (!V || (CommonValue && V != CommonValue))
Craig Topper9f008862014-04-15 04:59:12 +0000480 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000481 CommonValue = V;
482 }
483
484 return CommonValue;
485}
486
487/// ThreadCmpOverPHI - In the case of a comparison with a PHI instruction, try
488/// try to simplify the comparison by seeing whether comparing with all of the
489/// incoming phi values yields the same result every time. If so returns the
490/// common result, otherwise returns null.
491static Value *ThreadCmpOverPHI(CmpInst::Predicate Pred, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000492 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000493 // Recursion is always used, so bail out at once if we already hit the limit.
494 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000495 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000496
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000497 // Make sure the phi is on the LHS.
498 if (!isa<PHINode>(LHS)) {
499 std::swap(LHS, RHS);
500 Pred = CmpInst::getSwappedPredicate(Pred);
501 }
502 assert(isa<PHINode>(LHS) && "Not comparing with a phi instruction!");
503 PHINode *PI = cast<PHINode>(LHS);
504
Duncan Sands5ffc2982010-11-16 12:16:38 +0000505 // Bail out if RHS and the phi may be mutually interdependent due to a loop.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000506 if (!ValueDominatesPHI(RHS, PI, Q.DT))
Craig Topper9f008862014-04-15 04:59:12 +0000507 return nullptr;
Duncan Sands5ffc2982010-11-16 12:16:38 +0000508
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000509 // Evaluate the BinOp on the incoming phi values.
Craig Topper9f008862014-04-15 04:59:12 +0000510 Value *CommonValue = nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000511 for (unsigned i = 0, e = PI->getNumIncomingValues(); i != e; ++i) {
Duncan Sandsf12ba1d2010-11-15 17:52:45 +0000512 Value *Incoming = PI->getIncomingValue(i);
Duncan Sands7412f6e2010-11-17 04:30:22 +0000513 // If the incoming value is the phi node itself, it can safely be skipped.
Duncan Sandsf12ba1d2010-11-15 17:52:45 +0000514 if (Incoming == PI) continue;
Duncan Sandsb8cee002012-03-13 11:42:19 +0000515 Value *V = SimplifyCmpInst(Pred, Incoming, RHS, Q, MaxRecurse);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000516 // If the operation failed to simplify, or simplified to a different value
517 // to previously, then give up.
518 if (!V || (CommonValue && V != CommonValue))
Craig Topper9f008862014-04-15 04:59:12 +0000519 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000520 CommonValue = V;
521 }
522
523 return CommonValue;
524}
525
Chris Lattner3d9823b2009-11-27 17:42:22 +0000526/// SimplifyAddInst - Given operands for an Add, see if we can
527/// fold the result. If not, this returns null.
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000528static Value *SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000529 const Query &Q, unsigned MaxRecurse) {
Chris Lattner3d9823b2009-11-27 17:42:22 +0000530 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
531 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
532 Constant *Ops[] = { CLHS, CRHS };
Duncan Sandsb8cee002012-03-13 11:42:19 +0000533 return ConstantFoldInstOperands(Instruction::Add, CLHS->getType(), Ops,
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000534 Q.DL, Q.TLI);
Chris Lattner3d9823b2009-11-27 17:42:22 +0000535 }
Duncan Sands7e800d62010-11-14 11:23:23 +0000536
Chris Lattner3d9823b2009-11-27 17:42:22 +0000537 // Canonicalize the constant to the RHS.
538 std::swap(Op0, Op1);
539 }
Duncan Sands7e800d62010-11-14 11:23:23 +0000540
Duncan Sands0a2c41682010-12-15 14:07:39 +0000541 // X + undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000542 if (match(Op1, m_Undef()))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000543 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +0000544
Duncan Sands0a2c41682010-12-15 14:07:39 +0000545 // X + 0 -> X
546 if (match(Op1, m_Zero()))
547 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +0000548
Duncan Sands0a2c41682010-12-15 14:07:39 +0000549 // X + (Y - X) -> Y
550 // (Y - X) + X -> Y
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000551 // Eg: X + -X -> 0
Craig Topper9f008862014-04-15 04:59:12 +0000552 Value *Y = nullptr;
Duncan Sands772749a2011-01-01 20:08:02 +0000553 if (match(Op1, m_Sub(m_Value(Y), m_Specific(Op0))) ||
554 match(Op0, m_Sub(m_Value(Y), m_Specific(Op1))))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000555 return Y;
556
557 // X + ~X -> -1 since ~X = -X-1
Duncan Sands772749a2011-01-01 20:08:02 +0000558 if (match(Op0, m_Not(m_Specific(Op1))) ||
559 match(Op1, m_Not(m_Specific(Op0))))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000560 return Constant::getAllOnesValue(Op0->getType());
Duncan Sandsb238de02010-11-19 09:20:39 +0000561
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000562 /// i1 add -> xor.
Duncan Sands5def0d62010-12-21 14:48:48 +0000563 if (MaxRecurse && Op0->getType()->isIntegerTy(1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000564 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sandsfecc6422010-12-21 15:03:43 +0000565 return V;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000566
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000567 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000568 if (Value *V = SimplifyAssociativeBinOp(Instruction::Add, Op0, Op1, Q,
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000569 MaxRecurse))
570 return V;
571
Duncan Sandsb238de02010-11-19 09:20:39 +0000572 // Threading Add over selects and phi nodes is pointless, so don't bother.
573 // Threading over the select in "A + select(cond, B, C)" means evaluating
574 // "A+B" and "A+C" and seeing if they are equal; but they are equal if and
575 // only if B and C are equal. If B and C are equal then (since we assume
576 // that operands have already been simplified) "select(cond, B, C)" should
577 // have been simplified to the common value of B and C already. Analysing
578 // "A+B" and "A+C" thus gains nothing, but costs compile time. Similarly
579 // for threading over phi nodes.
580
Craig Topper9f008862014-04-15 04:59:12 +0000581 return nullptr;
Chris Lattner3d9823b2009-11-27 17:42:22 +0000582}
583
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000584Value *llvm::SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000585 const DataLayout *DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +0000586 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +0000587 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +0000588 return ::SimplifyAddInst(Op0, Op1, isNSW, isNUW, Query(DL, TLI, DT, AC, CxtI),
589 RecursionLimit);
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000590}
591
Chandler Carrutha0796552012-03-12 11:19:31 +0000592/// \brief Compute the base pointer and cumulative constant offsets for V.
593///
594/// This strips all constant offsets off of V, leaving it the base pointer, and
595/// accumulates the total constant offset applied in the returned constant. It
596/// returns 0 if V is not a pointer, and returns the constant '0' if there are
597/// no constant offsets applied.
Dan Gohman36fa8392013-01-31 02:45:26 +0000598///
599/// This is very similar to GetPointerBaseWithConstantOffset except it doesn't
600/// follow non-inbounds geps. This allows it to remain usable for icmp ult/etc.
601/// folding.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000602static Constant *stripAndComputeConstantOffsets(const DataLayout *DL,
Benjamin Kramer942dfe62013-09-23 14:16:38 +0000603 Value *&V,
604 bool AllowNonInbounds = false) {
Benjamin Kramerc05aa952013-02-01 15:21:10 +0000605 assert(V->getType()->getScalarType()->isPointerTy());
Chandler Carrutha0796552012-03-12 11:19:31 +0000606
Dan Gohman18c77a12013-01-31 02:50:36 +0000607 // Without DataLayout, just be conservative for now. Theoretically, more could
608 // be done in this case.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000609 if (!DL)
Dan Gohman18c77a12013-01-31 02:50:36 +0000610 return ConstantInt::get(IntegerType::get(V->getContext(), 64), 0);
611
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000612 Type *IntPtrTy = DL->getIntPtrType(V->getType())->getScalarType();
Matt Arsenault2f9cce22013-08-03 01:03:12 +0000613 APInt Offset = APInt::getNullValue(IntPtrTy->getIntegerBitWidth());
Chandler Carrutha0796552012-03-12 11:19:31 +0000614
615 // Even though we don't look through PHI nodes, we could be called on an
616 // instruction in an unreachable block, which may be on a cycle.
617 SmallPtrSet<Value *, 4> Visited;
618 Visited.insert(V);
619 do {
620 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
Benjamin Kramer942dfe62013-09-23 14:16:38 +0000621 if ((!AllowNonInbounds && !GEP->isInBounds()) ||
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000622 !GEP->accumulateConstantOffset(*DL, Offset))
Chandler Carrutha0796552012-03-12 11:19:31 +0000623 break;
Chandler Carrutha0796552012-03-12 11:19:31 +0000624 V = GEP->getPointerOperand();
625 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
Matt Arsenault2f9cce22013-08-03 01:03:12 +0000626 V = cast<Operator>(V)->getOperand(0);
Chandler Carrutha0796552012-03-12 11:19:31 +0000627 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) {
628 if (GA->mayBeOverridden())
629 break;
630 V = GA->getAliasee();
631 } else {
632 break;
633 }
Benjamin Kramerc05aa952013-02-01 15:21:10 +0000634 assert(V->getType()->getScalarType()->isPointerTy() &&
635 "Unexpected operand type!");
David Blaikie70573dc2014-11-19 07:49:26 +0000636 } while (Visited.insert(V).second);
Chandler Carrutha0796552012-03-12 11:19:31 +0000637
Benjamin Kramerc05aa952013-02-01 15:21:10 +0000638 Constant *OffsetIntPtr = ConstantInt::get(IntPtrTy, Offset);
639 if (V->getType()->isVectorTy())
640 return ConstantVector::getSplat(V->getType()->getVectorNumElements(),
641 OffsetIntPtr);
642 return OffsetIntPtr;
Chandler Carrutha0796552012-03-12 11:19:31 +0000643}
644
645/// \brief Compute the constant difference between two pointer values.
646/// If the difference is not a constant, returns zero.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000647static Constant *computePointerDifference(const DataLayout *DL,
Chandler Carrutha0796552012-03-12 11:19:31 +0000648 Value *LHS, Value *RHS) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000649 Constant *LHSOffset = stripAndComputeConstantOffsets(DL, LHS);
650 Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS);
Chandler Carrutha0796552012-03-12 11:19:31 +0000651
652 // If LHS and RHS are not related via constant offsets to the same base
653 // value, there is nothing we can do here.
654 if (LHS != RHS)
Craig Topper9f008862014-04-15 04:59:12 +0000655 return nullptr;
Chandler Carrutha0796552012-03-12 11:19:31 +0000656
657 // Otherwise, the difference of LHS - RHS can be computed as:
658 // LHS - RHS
659 // = (LHSOffset + Base) - (RHSOffset + Base)
660 // = LHSOffset - RHSOffset
661 return ConstantExpr::getSub(LHSOffset, RHSOffset);
662}
663
Duncan Sands0a2c41682010-12-15 14:07:39 +0000664/// SimplifySubInst - Given operands for a Sub, see if we can
665/// fold the result. If not, this returns null.
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000666static Value *SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000667 const Query &Q, unsigned MaxRecurse) {
Duncan Sands0a2c41682010-12-15 14:07:39 +0000668 if (Constant *CLHS = dyn_cast<Constant>(Op0))
669 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
670 Constant *Ops[] = { CLHS, CRHS };
671 return ConstantFoldInstOperands(Instruction::Sub, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000672 Ops, Q.DL, Q.TLI);
Duncan Sands0a2c41682010-12-15 14:07:39 +0000673 }
674
675 // X - undef -> undef
676 // undef - X -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000677 if (match(Op0, m_Undef()) || match(Op1, m_Undef()))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000678 return UndefValue::get(Op0->getType());
679
680 // X - 0 -> X
681 if (match(Op1, m_Zero()))
682 return Op0;
683
684 // X - X -> 0
Duncan Sands772749a2011-01-01 20:08:02 +0000685 if (Op0 == Op1)
Duncan Sands0a2c41682010-12-15 14:07:39 +0000686 return Constant::getNullValue(Op0->getType());
687
David Majnemer4efa9ff2014-11-22 07:15:16 +0000688 // 0 - X -> 0 if the sub is NUW.
689 if (isNUW && match(Op0, m_Zero()))
690 return Op0;
David Majnemercd4fbcd2014-07-31 04:49:18 +0000691
Duncan Sands99589d02011-01-18 11:50:19 +0000692 // (X + Y) - Z -> X + (Y - Z) or Y + (X - Z) if everything simplifies.
693 // For example, (X + Y) - Y -> X; (Y + X) - Y -> X
Dinesh Dwivedi99281a02014-06-26 08:57:33 +0000694 Value *X = nullptr, *Y = nullptr, *Z = Op1;
Duncan Sands99589d02011-01-18 11:50:19 +0000695 if (MaxRecurse && match(Op0, m_Add(m_Value(X), m_Value(Y)))) { // (X + Y) - Z
696 // See if "V === Y - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000697 if (Value *V = SimplifyBinOp(Instruction::Sub, Y, Z, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000698 // It does! Now see if "X + V" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000699 if (Value *W = SimplifyBinOp(Instruction::Add, X, V, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000700 // It does, we successfully reassociated!
701 ++NumReassoc;
702 return W;
703 }
704 // See if "V === X - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000705 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Z, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000706 // It does! Now see if "Y + V" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000707 if (Value *W = SimplifyBinOp(Instruction::Add, Y, V, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000708 // It does, we successfully reassociated!
709 ++NumReassoc;
710 return W;
711 }
712 }
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000713
Duncan Sands99589d02011-01-18 11:50:19 +0000714 // X - (Y + Z) -> (X - Y) - Z or (X - Z) - Y if everything simplifies.
715 // For example, X - (X + 1) -> -1
716 X = Op0;
717 if (MaxRecurse && match(Op1, m_Add(m_Value(Y), m_Value(Z)))) { // X - (Y + Z)
718 // See if "V === X - Y" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000719 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Y, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000720 // It does! Now see if "V - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000721 if (Value *W = SimplifyBinOp(Instruction::Sub, V, Z, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000722 // It does, we successfully reassociated!
723 ++NumReassoc;
724 return W;
725 }
726 // See if "V === X - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000727 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Z, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000728 // It does! Now see if "V - Y" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000729 if (Value *W = SimplifyBinOp(Instruction::Sub, V, Y, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000730 // It does, we successfully reassociated!
731 ++NumReassoc;
732 return W;
733 }
734 }
735
736 // Z - (X - Y) -> (Z - X) + Y if everything simplifies.
737 // For example, X - (X - Y) -> Y.
738 Z = Op0;
Duncan Sandsd6f1a952011-01-14 15:26:10 +0000739 if (MaxRecurse && match(Op1, m_Sub(m_Value(X), m_Value(Y)))) // Z - (X - Y)
740 // See if "V === Z - X" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000741 if (Value *V = SimplifyBinOp(Instruction::Sub, Z, X, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000742 // It does! Now see if "V + Y" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000743 if (Value *W = SimplifyBinOp(Instruction::Add, V, Y, Q, MaxRecurse-1)) {
Duncan Sandsd6f1a952011-01-14 15:26:10 +0000744 // It does, we successfully reassociated!
745 ++NumReassoc;
746 return W;
747 }
748
Duncan Sands395ac42d2012-03-13 14:07:05 +0000749 // trunc(X) - trunc(Y) -> trunc(X - Y) if everything simplifies.
750 if (MaxRecurse && match(Op0, m_Trunc(m_Value(X))) &&
751 match(Op1, m_Trunc(m_Value(Y))))
752 if (X->getType() == Y->getType())
753 // See if "V === X - Y" simplifies.
754 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Y, Q, MaxRecurse-1))
755 // It does! Now see if "trunc V" simplifies.
756 if (Value *W = SimplifyTruncInst(V, Op0->getType(), Q, MaxRecurse-1))
757 // It does, return the simplified "trunc V".
758 return W;
759
760 // Variations on GEP(base, I, ...) - GEP(base, i, ...) -> GEP(null, I-i, ...).
Dan Gohman18c77a12013-01-31 02:50:36 +0000761 if (match(Op0, m_PtrToInt(m_Value(X))) &&
Duncan Sands395ac42d2012-03-13 14:07:05 +0000762 match(Op1, m_PtrToInt(m_Value(Y))))
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000763 if (Constant *Result = computePointerDifference(Q.DL, X, Y))
Duncan Sands395ac42d2012-03-13 14:07:05 +0000764 return ConstantExpr::getIntegerCast(Result, Op0->getType(), true);
765
Duncan Sands99589d02011-01-18 11:50:19 +0000766 // i1 sub -> xor.
767 if (MaxRecurse && Op0->getType()->isIntegerTy(1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000768 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000769 return V;
770
Duncan Sands0a2c41682010-12-15 14:07:39 +0000771 // Threading Sub over selects and phi nodes is pointless, so don't bother.
772 // Threading over the select in "A - select(cond, B, C)" means evaluating
773 // "A-B" and "A-C" and seeing if they are equal; but they are equal if and
774 // only if B and C are equal. If B and C are equal then (since we assume
775 // that operands have already been simplified) "select(cond, B, C)" should
776 // have been simplified to the common value of B and C already. Analysing
777 // "A-B" and "A-C" thus gains nothing, but costs compile time. Similarly
778 // for threading over phi nodes.
779
Craig Topper9f008862014-04-15 04:59:12 +0000780 return nullptr;
Duncan Sands0a2c41682010-12-15 14:07:39 +0000781}
782
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000783Value *llvm::SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000784 const DataLayout *DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +0000785 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +0000786 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +0000787 return ::SimplifySubInst(Op0, Op1, isNSW, isNUW, Query(DL, TLI, DT, AC, CxtI),
788 RecursionLimit);
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000789}
790
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000791/// Given operands for an FAdd, see if we can fold the result. If not, this
792/// returns null.
793static Value *SimplifyFAddInst(Value *Op0, Value *Op1, FastMathFlags FMF,
794 const Query &Q, unsigned MaxRecurse) {
795 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
796 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
797 Constant *Ops[] = { CLHS, CRHS };
798 return ConstantFoldInstOperands(Instruction::FAdd, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000799 Ops, Q.DL, Q.TLI);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000800 }
801
802 // Canonicalize the constant to the RHS.
803 std::swap(Op0, Op1);
804 }
805
806 // fadd X, -0 ==> X
807 if (match(Op1, m_NegZero()))
808 return Op0;
809
810 // fadd X, 0 ==> X, when we know X is not -0
811 if (match(Op1, m_Zero()) &&
812 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0)))
813 return Op0;
814
815 // fadd [nnan ninf] X, (fsub [nnan ninf] 0, X) ==> 0
816 // where nnan and ninf have to occur at least once somewhere in this
817 // expression
Craig Topper9f008862014-04-15 04:59:12 +0000818 Value *SubOp = nullptr;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000819 if (match(Op1, m_FSub(m_AnyZero(), m_Specific(Op0))))
820 SubOp = Op1;
821 else if (match(Op0, m_FSub(m_AnyZero(), m_Specific(Op1))))
822 SubOp = Op0;
823 if (SubOp) {
824 Instruction *FSub = cast<Instruction>(SubOp);
825 if ((FMF.noNaNs() || FSub->hasNoNaNs()) &&
826 (FMF.noInfs() || FSub->hasNoInfs()))
827 return Constant::getNullValue(Op0->getType());
828 }
829
Craig Topper9f008862014-04-15 04:59:12 +0000830 return nullptr;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000831}
832
833/// Given operands for an FSub, see if we can fold the result. If not, this
834/// returns null.
835static Value *SimplifyFSubInst(Value *Op0, Value *Op1, FastMathFlags FMF,
836 const Query &Q, unsigned MaxRecurse) {
837 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
838 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
839 Constant *Ops[] = { CLHS, CRHS };
840 return ConstantFoldInstOperands(Instruction::FSub, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000841 Ops, Q.DL, Q.TLI);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000842 }
843 }
844
845 // fsub X, 0 ==> X
846 if (match(Op1, m_Zero()))
847 return Op0;
848
849 // fsub X, -0 ==> X, when we know X is not -0
850 if (match(Op1, m_NegZero()) &&
851 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0)))
852 return Op0;
853
854 // fsub 0, (fsub -0.0, X) ==> X
855 Value *X;
856 if (match(Op0, m_AnyZero())) {
857 if (match(Op1, m_FSub(m_NegZero(), m_Value(X))))
858 return X;
859 if (FMF.noSignedZeros() && match(Op1, m_FSub(m_AnyZero(), m_Value(X))))
860 return X;
861 }
862
863 // fsub nnan ninf x, x ==> 0.0
864 if (FMF.noNaNs() && FMF.noInfs() && Op0 == Op1)
865 return Constant::getNullValue(Op0->getType());
866
Craig Topper9f008862014-04-15 04:59:12 +0000867 return nullptr;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000868}
869
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000870/// Given the operands for an FMul, see if we can fold the result
871static Value *SimplifyFMulInst(Value *Op0, Value *Op1,
872 FastMathFlags FMF,
873 const Query &Q,
874 unsigned MaxRecurse) {
875 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
876 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
877 Constant *Ops[] = { CLHS, CRHS };
878 return ConstantFoldInstOperands(Instruction::FMul, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000879 Ops, Q.DL, Q.TLI);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000880 }
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000881
882 // Canonicalize the constant to the RHS.
883 std::swap(Op0, Op1);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000884 }
885
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000886 // fmul X, 1.0 ==> X
887 if (match(Op1, m_FPOne()))
888 return Op0;
889
890 // fmul nnan nsz X, 0 ==> 0
891 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op1, m_AnyZero()))
892 return Op1;
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000893
Craig Topper9f008862014-04-15 04:59:12 +0000894 return nullptr;
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000895}
896
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000897/// SimplifyMulInst - Given operands for a Mul, see if we can
898/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000899static Value *SimplifyMulInst(Value *Op0, Value *Op1, const Query &Q,
900 unsigned MaxRecurse) {
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000901 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
902 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
903 Constant *Ops[] = { CLHS, CRHS };
904 return ConstantFoldInstOperands(Instruction::Mul, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000905 Ops, Q.DL, Q.TLI);
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000906 }
907
908 // Canonicalize the constant to the RHS.
909 std::swap(Op0, Op1);
910 }
911
912 // X * undef -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000913 if (match(Op1, m_Undef()))
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000914 return Constant::getNullValue(Op0->getType());
915
916 // X * 0 -> 0
917 if (match(Op1, m_Zero()))
918 return Op1;
919
920 // X * 1 -> X
921 if (match(Op1, m_One()))
922 return Op0;
923
Duncan Sandsb67edc62011-01-30 18:03:50 +0000924 // (X / Y) * Y -> X if the division is exact.
Craig Topper9f008862014-04-15 04:59:12 +0000925 Value *X = nullptr;
Benjamin Kramer9442cd02012-01-01 17:55:30 +0000926 if (match(Op0, m_Exact(m_IDiv(m_Value(X), m_Specific(Op1)))) || // (X / Y) * Y
927 match(Op1, m_Exact(m_IDiv(m_Value(X), m_Specific(Op0))))) // Y * (X / Y)
928 return X;
Duncan Sandsb67edc62011-01-30 18:03:50 +0000929
Nick Lewyckyb89d9a42011-01-29 19:55:23 +0000930 // i1 mul -> and.
Duncan Sands5def0d62010-12-21 14:48:48 +0000931 if (MaxRecurse && Op0->getType()->isIntegerTy(1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000932 if (Value *V = SimplifyAndInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sandsfecc6422010-12-21 15:03:43 +0000933 return V;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000934
935 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000936 if (Value *V = SimplifyAssociativeBinOp(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000937 MaxRecurse))
938 return V;
939
940 // Mul distributes over Add. Try some generic simplifications based on this.
941 if (Value *V = ExpandBinOp(Instruction::Mul, Op0, Op1, Instruction::Add,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000942 Q, MaxRecurse))
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000943 return V;
944
945 // If the operation is with the result of a select instruction, check whether
946 // operating on either branch of the select always yields the same value.
947 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000948 if (Value *V = ThreadBinOpOverSelect(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000949 MaxRecurse))
950 return V;
951
952 // If the operation is with the result of a phi instruction, check whether
953 // operating on all incoming values of the phi always yields the same value.
954 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000955 if (Value *V = ThreadBinOpOverPHI(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000956 MaxRecurse))
957 return V;
958
Craig Topper9f008862014-04-15 04:59:12 +0000959 return nullptr;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000960}
961
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000962Value *llvm::SimplifyFAddInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Chandler Carruth66b31302015-01-04 12:03:27 +0000963 const DataLayout *DL,
964 const TargetLibraryInfo *TLI,
965 const DominatorTree *DT, AssumptionCache *AC,
966 const Instruction *CxtI) {
967 return ::SimplifyFAddInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +0000968 RecursionLimit);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000969}
970
971Value *llvm::SimplifyFSubInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Chandler Carruth66b31302015-01-04 12:03:27 +0000972 const DataLayout *DL,
973 const TargetLibraryInfo *TLI,
974 const DominatorTree *DT, AssumptionCache *AC,
975 const Instruction *CxtI) {
976 return ::SimplifyFSubInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +0000977 RecursionLimit);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000978}
979
Chandler Carruth66b31302015-01-04 12:03:27 +0000980Value *llvm::SimplifyFMulInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000981 const DataLayout *DL,
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000982 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +0000983 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +0000984 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +0000985 return ::SimplifyFMulInst(Op0, Op1, FMF, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +0000986 RecursionLimit);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000987}
988
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000989Value *llvm::SimplifyMulInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +0000990 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +0000991 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +0000992 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +0000993 return ::SimplifyMulInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +0000994 RecursionLimit);
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000995}
996
Duncan Sands771e82a2011-01-28 16:51:11 +0000997/// SimplifyDiv - Given operands for an SDiv or UDiv, see if we can
998/// fold the result. If not, this returns null.
Anders Carlsson36c6d232011-02-05 18:33:43 +0000999static Value *SimplifyDiv(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001000 const Query &Q, unsigned MaxRecurse) {
Duncan Sands771e82a2011-01-28 16:51:11 +00001001 if (Constant *C0 = dyn_cast<Constant>(Op0)) {
1002 if (Constant *C1 = dyn_cast<Constant>(Op1)) {
1003 Constant *Ops[] = { C0, C1 };
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001004 return ConstantFoldInstOperands(Opcode, C0->getType(), Ops, Q.DL, Q.TLI);
Duncan Sands771e82a2011-01-28 16:51:11 +00001005 }
1006 }
1007
Duncan Sands65995fa2011-01-28 18:50:50 +00001008 bool isSigned = Opcode == Instruction::SDiv;
1009
Duncan Sands771e82a2011-01-28 16:51:11 +00001010 // X / undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001011 if (match(Op1, m_Undef()))
Duncan Sands771e82a2011-01-28 16:51:11 +00001012 return Op1;
1013
David Majnemer71dc8fb2014-12-10 07:52:18 +00001014 // X / 0 -> undef, we don't need to preserve faults!
1015 if (match(Op1, m_Zero()))
1016 return UndefValue::get(Op1->getType());
1017
Duncan Sands771e82a2011-01-28 16:51:11 +00001018 // undef / X -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001019 if (match(Op0, m_Undef()))
Duncan Sands771e82a2011-01-28 16:51:11 +00001020 return Constant::getNullValue(Op0->getType());
1021
1022 // 0 / X -> 0, we don't need to preserve faults!
1023 if (match(Op0, m_Zero()))
1024 return Op0;
1025
1026 // X / 1 -> X
1027 if (match(Op1, m_One()))
1028 return Op0;
Duncan Sands771e82a2011-01-28 16:51:11 +00001029
1030 if (Op0->getType()->isIntegerTy(1))
1031 // It can't be division by zero, hence it must be division by one.
1032 return Op0;
1033
1034 // X / X -> 1
1035 if (Op0 == Op1)
1036 return ConstantInt::get(Op0->getType(), 1);
1037
1038 // (X * Y) / Y -> X if the multiplication does not overflow.
Craig Topper9f008862014-04-15 04:59:12 +00001039 Value *X = nullptr, *Y = nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001040 if (match(Op0, m_Mul(m_Value(X), m_Value(Y))) && (X == Op1 || Y == Op1)) {
1041 if (Y != Op1) std::swap(X, Y); // Ensure expression is (X * Y) / Y, Y = Op1
Duncan Sands7cb61e52011-10-27 19:16:21 +00001042 OverflowingBinaryOperator *Mul = cast<OverflowingBinaryOperator>(Op0);
Duncan Sands5747aba2011-02-02 20:52:00 +00001043 // If the Mul knows it does not overflow, then we are good to go.
1044 if ((isSigned && Mul->hasNoSignedWrap()) ||
1045 (!isSigned && Mul->hasNoUnsignedWrap()))
1046 return X;
Duncan Sands771e82a2011-01-28 16:51:11 +00001047 // If X has the form X = A / Y then X * Y cannot overflow.
1048 if (BinaryOperator *Div = dyn_cast<BinaryOperator>(X))
1049 if (Div->getOpcode() == Opcode && Div->getOperand(1) == Y)
1050 return X;
1051 }
1052
Duncan Sands65995fa2011-01-28 18:50:50 +00001053 // (X rem Y) / Y -> 0
1054 if ((isSigned && match(Op0, m_SRem(m_Value(), m_Specific(Op1)))) ||
1055 (!isSigned && match(Op0, m_URem(m_Value(), m_Specific(Op1)))))
1056 return Constant::getNullValue(Op0->getType());
1057
David Majnemercb9d5962014-10-11 10:20:01 +00001058 // (X /u C1) /u C2 -> 0 if C1 * C2 overflow
1059 ConstantInt *C1, *C2;
1060 if (!isSigned && match(Op0, m_UDiv(m_Value(X), m_ConstantInt(C1))) &&
1061 match(Op1, m_ConstantInt(C2))) {
1062 bool Overflow;
1063 C1->getValue().umul_ov(C2->getValue(), Overflow);
1064 if (Overflow)
1065 return Constant::getNullValue(Op0->getType());
1066 }
1067
Duncan Sands65995fa2011-01-28 18:50:50 +00001068 // If the operation is with the result of a select instruction, check whether
1069 // operating on either branch of the select always yields the same value.
1070 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001071 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands65995fa2011-01-28 18:50:50 +00001072 return V;
1073
1074 // If the operation is with the result of a phi instruction, check whether
1075 // operating on all incoming values of the phi always yields the same value.
1076 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001077 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands65995fa2011-01-28 18:50:50 +00001078 return V;
1079
Craig Topper9f008862014-04-15 04:59:12 +00001080 return nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001081}
1082
1083/// SimplifySDivInst - Given operands for an SDiv, see if we can
1084/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001085static Value *SimplifySDivInst(Value *Op0, Value *Op1, const Query &Q,
1086 unsigned MaxRecurse) {
1087 if (Value *V = SimplifyDiv(Instruction::SDiv, Op0, Op1, Q, MaxRecurse))
Duncan Sands771e82a2011-01-28 16:51:11 +00001088 return V;
1089
Craig Topper9f008862014-04-15 04:59:12 +00001090 return nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001091}
1092
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001093Value *llvm::SimplifySDivInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001094 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001095 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001096 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001097 return ::SimplifySDivInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001098 RecursionLimit);
Duncan Sands771e82a2011-01-28 16:51:11 +00001099}
1100
1101/// SimplifyUDivInst - Given operands for a UDiv, see if we can
1102/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001103static Value *SimplifyUDivInst(Value *Op0, Value *Op1, const Query &Q,
1104 unsigned MaxRecurse) {
1105 if (Value *V = SimplifyDiv(Instruction::UDiv, Op0, Op1, Q, MaxRecurse))
Duncan Sands771e82a2011-01-28 16:51:11 +00001106 return V;
1107
Craig Topper9f008862014-04-15 04:59:12 +00001108 return nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001109}
1110
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001111Value *llvm::SimplifyUDivInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001112 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001113 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001114 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001115 return ::SimplifyUDivInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001116 RecursionLimit);
Duncan Sands771e82a2011-01-28 16:51:11 +00001117}
1118
Duncan Sandsb8cee002012-03-13 11:42:19 +00001119static Value *SimplifyFDivInst(Value *Op0, Value *Op1, const Query &Q,
1120 unsigned) {
Frits van Bommelc2549662011-01-29 15:26:31 +00001121 // undef / X -> undef (the undef could be a snan).
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001122 if (match(Op0, m_Undef()))
Frits van Bommelc2549662011-01-29 15:26:31 +00001123 return Op0;
1124
1125 // X / undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001126 if (match(Op1, m_Undef()))
Frits van Bommelc2549662011-01-29 15:26:31 +00001127 return Op1;
1128
Craig Topper9f008862014-04-15 04:59:12 +00001129 return nullptr;
Frits van Bommelc2549662011-01-29 15:26:31 +00001130}
1131
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001132Value *llvm::SimplifyFDivInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001133 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001134 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001135 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001136 return ::SimplifyFDivInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001137 RecursionLimit);
Frits van Bommelc2549662011-01-29 15:26:31 +00001138}
1139
Duncan Sandsa3e36992011-05-02 16:27:02 +00001140/// SimplifyRem - Given operands for an SRem or URem, see if we can
1141/// fold the result. If not, this returns null.
1142static Value *SimplifyRem(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001143 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsa3e36992011-05-02 16:27:02 +00001144 if (Constant *C0 = dyn_cast<Constant>(Op0)) {
1145 if (Constant *C1 = dyn_cast<Constant>(Op1)) {
1146 Constant *Ops[] = { C0, C1 };
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001147 return ConstantFoldInstOperands(Opcode, C0->getType(), Ops, Q.DL, Q.TLI);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001148 }
1149 }
1150
Duncan Sandsa3e36992011-05-02 16:27:02 +00001151 // X % undef -> undef
1152 if (match(Op1, m_Undef()))
1153 return Op1;
1154
1155 // undef % X -> 0
1156 if (match(Op0, m_Undef()))
1157 return Constant::getNullValue(Op0->getType());
1158
1159 // 0 % X -> 0, we don't need to preserve faults!
1160 if (match(Op0, m_Zero()))
1161 return Op0;
1162
1163 // X % 0 -> undef, we don't need to preserve faults!
1164 if (match(Op1, m_Zero()))
1165 return UndefValue::get(Op0->getType());
1166
1167 // X % 1 -> 0
1168 if (match(Op1, m_One()))
1169 return Constant::getNullValue(Op0->getType());
1170
1171 if (Op0->getType()->isIntegerTy(1))
1172 // It can't be remainder by zero, hence it must be remainder by one.
1173 return Constant::getNullValue(Op0->getType());
1174
1175 // X % X -> 0
1176 if (Op0 == Op1)
1177 return Constant::getNullValue(Op0->getType());
1178
David Majnemerb435a422014-09-17 04:16:35 +00001179 // (X % Y) % Y -> X % Y
1180 if ((Opcode == Instruction::SRem &&
1181 match(Op0, m_SRem(m_Value(), m_Specific(Op1)))) ||
1182 (Opcode == Instruction::URem &&
1183 match(Op0, m_URem(m_Value(), m_Specific(Op1)))))
David Majnemerac717f02014-09-17 03:34:34 +00001184 return Op0;
David Majnemerac717f02014-09-17 03:34:34 +00001185
Duncan Sandsa3e36992011-05-02 16:27:02 +00001186 // If the operation is with the result of a select instruction, check whether
1187 // operating on either branch of the select always yields the same value.
1188 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001189 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001190 return V;
1191
1192 // If the operation is with the result of a phi instruction, check whether
1193 // operating on all incoming values of the phi always yields the same value.
1194 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001195 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001196 return V;
1197
Craig Topper9f008862014-04-15 04:59:12 +00001198 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001199}
1200
1201/// SimplifySRemInst - Given operands for an SRem, see if we can
1202/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001203static Value *SimplifySRemInst(Value *Op0, Value *Op1, const Query &Q,
1204 unsigned MaxRecurse) {
1205 if (Value *V = SimplifyRem(Instruction::SRem, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001206 return V;
1207
Craig Topper9f008862014-04-15 04:59:12 +00001208 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001209}
1210
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001211Value *llvm::SimplifySRemInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001212 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001213 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001214 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001215 return ::SimplifySRemInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001216 RecursionLimit);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001217}
1218
1219/// SimplifyURemInst - Given operands for a URem, see if we can
1220/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001221static Value *SimplifyURemInst(Value *Op0, Value *Op1, const Query &Q,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001222 unsigned MaxRecurse) {
Duncan Sandsb8cee002012-03-13 11:42:19 +00001223 if (Value *V = SimplifyRem(Instruction::URem, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001224 return V;
1225
Craig Topper9f008862014-04-15 04:59:12 +00001226 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001227}
1228
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001229Value *llvm::SimplifyURemInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001230 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001231 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001232 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001233 return ::SimplifyURemInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001234 RecursionLimit);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001235}
1236
Duncan Sandsb8cee002012-03-13 11:42:19 +00001237static Value *SimplifyFRemInst(Value *Op0, Value *Op1, const Query &,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001238 unsigned) {
Duncan Sandsa3e36992011-05-02 16:27:02 +00001239 // undef % X -> undef (the undef could be a snan).
1240 if (match(Op0, m_Undef()))
1241 return Op0;
1242
1243 // X % undef -> undef
1244 if (match(Op1, m_Undef()))
1245 return Op1;
1246
Craig Topper9f008862014-04-15 04:59:12 +00001247 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001248}
1249
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001250Value *llvm::SimplifyFRemInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001251 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001252 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001253 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001254 return ::SimplifyFRemInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001255 RecursionLimit);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001256}
1257
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00001258/// isUndefShift - Returns true if a shift by \c Amount always yields undef.
1259static bool isUndefShift(Value *Amount) {
1260 Constant *C = dyn_cast<Constant>(Amount);
1261 if (!C)
1262 return false;
1263
1264 // X shift by undef -> undef because it may shift by the bitwidth.
1265 if (isa<UndefValue>(C))
1266 return true;
1267
1268 // Shifting by the bitwidth or more is undefined.
1269 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
1270 if (CI->getValue().getLimitedValue() >=
1271 CI->getType()->getScalarSizeInBits())
1272 return true;
1273
1274 // If all lanes of a vector shift are undefined the whole shift is.
1275 if (isa<ConstantVector>(C) || isa<ConstantDataVector>(C)) {
1276 for (unsigned I = 0, E = C->getType()->getVectorNumElements(); I != E; ++I)
1277 if (!isUndefShift(C->getAggregateElement(I)))
1278 return false;
1279 return true;
1280 }
1281
1282 return false;
1283}
1284
Duncan Sands571fd9a2011-01-14 14:44:12 +00001285/// SimplifyShift - Given operands for an Shl, LShr or AShr, see if we can
Duncan Sands7f60dc12011-01-14 00:37:45 +00001286/// fold the result. If not, this returns null.
Duncan Sands571fd9a2011-01-14 14:44:12 +00001287static Value *SimplifyShift(unsigned Opcode, Value *Op0, Value *Op1,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001288 const Query &Q, unsigned MaxRecurse) {
Duncan Sands7f60dc12011-01-14 00:37:45 +00001289 if (Constant *C0 = dyn_cast<Constant>(Op0)) {
1290 if (Constant *C1 = dyn_cast<Constant>(Op1)) {
1291 Constant *Ops[] = { C0, C1 };
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001292 return ConstantFoldInstOperands(Opcode, C0->getType(), Ops, Q.DL, Q.TLI);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001293 }
1294 }
1295
Duncan Sands571fd9a2011-01-14 14:44:12 +00001296 // 0 shift by X -> 0
Duncan Sands7f60dc12011-01-14 00:37:45 +00001297 if (match(Op0, m_Zero()))
1298 return Op0;
1299
Duncan Sands571fd9a2011-01-14 14:44:12 +00001300 // X shift by 0 -> X
Duncan Sands7f60dc12011-01-14 00:37:45 +00001301 if (match(Op1, m_Zero()))
1302 return Op0;
1303
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00001304 // Fold undefined shifts.
1305 if (isUndefShift(Op1))
1306 return UndefValue::get(Op0->getType());
Duncan Sands7f60dc12011-01-14 00:37:45 +00001307
Duncan Sands571fd9a2011-01-14 14:44:12 +00001308 // If the operation is with the result of a select instruction, check whether
1309 // operating on either branch of the select always yields the same value.
1310 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001311 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001312 return V;
1313
1314 // If the operation is with the result of a phi instruction, check whether
1315 // operating on all incoming values of the phi always yields the same value.
1316 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001317 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001318 return V;
1319
Craig Topper9f008862014-04-15 04:59:12 +00001320 return nullptr;
Duncan Sands571fd9a2011-01-14 14:44:12 +00001321}
1322
David Majnemerbf7550e2014-11-05 00:59:59 +00001323/// \brief Given operands for an Shl, LShr or AShr, see if we can
1324/// fold the result. If not, this returns null.
1325static Value *SimplifyRightShift(unsigned Opcode, Value *Op0, Value *Op1,
1326 bool isExact, const Query &Q,
1327 unsigned MaxRecurse) {
1328 if (Value *V = SimplifyShift(Opcode, Op0, Op1, Q, MaxRecurse))
1329 return V;
1330
1331 // X >> X -> 0
1332 if (Op0 == Op1)
1333 return Constant::getNullValue(Op0->getType());
1334
David Majnemer65c52ae2014-12-17 01:54:33 +00001335 // undef >> X -> 0
1336 // undef >> X -> undef (if it's exact)
1337 if (match(Op0, m_Undef()))
1338 return isExact ? Op0 : Constant::getNullValue(Op0->getType());
1339
David Majnemerbf7550e2014-11-05 00:59:59 +00001340 // The low bit cannot be shifted out of an exact shift if it is set.
1341 if (isExact) {
1342 unsigned BitWidth = Op0->getType()->getScalarSizeInBits();
1343 APInt Op0KnownZero(BitWidth, 0);
1344 APInt Op0KnownOne(BitWidth, 0);
Chandler Carruth66b31302015-01-04 12:03:27 +00001345 computeKnownBits(Op0, Op0KnownZero, Op0KnownOne, Q.DL, /*Depth=*/0, Q.AC,
1346 Q.CxtI, Q.DT);
David Majnemerbf7550e2014-11-05 00:59:59 +00001347 if (Op0KnownOne[0])
1348 return Op0;
1349 }
1350
1351 return nullptr;
1352}
1353
Duncan Sands571fd9a2011-01-14 14:44:12 +00001354/// SimplifyShlInst - Given operands for an Shl, see if we can
1355/// fold the result. If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001356static Value *SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001357 const Query &Q, unsigned MaxRecurse) {
1358 if (Value *V = SimplifyShift(Instruction::Shl, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001359 return V;
1360
1361 // undef << X -> 0
David Majnemer65c52ae2014-12-17 01:54:33 +00001362 // undef << X -> undef if (if it's NSW/NUW)
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001363 if (match(Op0, m_Undef()))
David Majnemer65c52ae2014-12-17 01:54:33 +00001364 return isNSW || isNUW ? Op0 : Constant::getNullValue(Op0->getType());
Duncan Sands571fd9a2011-01-14 14:44:12 +00001365
Chris Lattner9e4aa022011-02-09 17:15:04 +00001366 // (X >> A) << A -> X
1367 Value *X;
Benjamin Kramer9442cd02012-01-01 17:55:30 +00001368 if (match(Op0, m_Exact(m_Shr(m_Value(X), m_Specific(Op1)))))
Chris Lattner9e4aa022011-02-09 17:15:04 +00001369 return X;
Craig Topper9f008862014-04-15 04:59:12 +00001370 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001371}
1372
Chris Lattner9e4aa022011-02-09 17:15:04 +00001373Value *llvm::SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001374 const DataLayout *DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001375 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001376 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001377 return ::SimplifyShlInst(Op0, Op1, isNSW, isNUW, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00001378 RecursionLimit);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001379}
1380
1381/// SimplifyLShrInst - Given operands for an LShr, see if we can
1382/// fold the result. If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001383static Value *SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001384 const Query &Q, unsigned MaxRecurse) {
David Majnemerbf7550e2014-11-05 00:59:59 +00001385 if (Value *V = SimplifyRightShift(Instruction::LShr, Op0, Op1, isExact, Q,
1386 MaxRecurse))
1387 return V;
David Majnemera80fed72013-07-09 22:01:22 +00001388
Chris Lattner9e4aa022011-02-09 17:15:04 +00001389 // (X << A) >> A -> X
1390 Value *X;
David Majnemer4f438372014-11-04 17:38:50 +00001391 if (match(Op0, m_NUWShl(m_Value(X), m_Specific(Op1))))
Chris Lattner9e4aa022011-02-09 17:15:04 +00001392 return X;
Duncan Sandsd114ab32011-02-13 17:15:40 +00001393
Craig Topper9f008862014-04-15 04:59:12 +00001394 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001395}
1396
Chris Lattner9e4aa022011-02-09 17:15:04 +00001397Value *llvm::SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001398 const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001399 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001400 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001401 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001402 return ::SimplifyLShrInst(Op0, Op1, isExact, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00001403 RecursionLimit);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001404}
1405
1406/// SimplifyAShrInst - Given operands for an AShr, see if we can
1407/// fold the result. If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001408static Value *SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001409 const Query &Q, unsigned MaxRecurse) {
David Majnemerbf7550e2014-11-05 00:59:59 +00001410 if (Value *V = SimplifyRightShift(Instruction::AShr, Op0, Op1, isExact, Q,
1411 MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001412 return V;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001413
1414 // all ones >>a X -> all ones
1415 if (match(Op0, m_AllOnes()))
1416 return Op0;
1417
Chris Lattner9e4aa022011-02-09 17:15:04 +00001418 // (X << A) >> A -> X
1419 Value *X;
David Majnemer2de97fc2014-11-04 17:47:13 +00001420 if (match(Op0, m_NSWShl(m_Value(X), m_Specific(Op1))))
Chris Lattner9e4aa022011-02-09 17:15:04 +00001421 return X;
Duncan Sandsd114ab32011-02-13 17:15:40 +00001422
Suyog Sarda68862412014-07-17 06:28:15 +00001423 // Arithmetic shifting an all-sign-bit value is a no-op.
Chandler Carruth66b31302015-01-04 12:03:27 +00001424 unsigned NumSignBits = ComputeNumSignBits(Op0, Q.DL, 0, Q.AC, Q.CxtI, Q.DT);
Suyog Sarda68862412014-07-17 06:28:15 +00001425 if (NumSignBits == Op0->getType()->getScalarSizeInBits())
1426 return Op0;
1427
Craig Topper9f008862014-04-15 04:59:12 +00001428 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001429}
1430
Chris Lattner9e4aa022011-02-09 17:15:04 +00001431Value *llvm::SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001432 const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001433 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001434 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001435 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001436 return ::SimplifyAShrInst(Op0, Op1, isExact, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00001437 RecursionLimit);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001438}
1439
David Majnemer1af36e52014-12-06 10:51:40 +00001440static Value *simplifyUnsignedRangeCheck(ICmpInst *ZeroICmp,
1441 ICmpInst *UnsignedICmp, bool IsAnd) {
1442 Value *X, *Y;
1443
1444 ICmpInst::Predicate EqPred;
David Majnemerd5b3aa42014-12-08 18:30:43 +00001445 if (!match(ZeroICmp, m_ICmp(EqPred, m_Value(Y), m_Zero())) ||
1446 !ICmpInst::isEquality(EqPred))
David Majnemer1af36e52014-12-06 10:51:40 +00001447 return nullptr;
1448
1449 ICmpInst::Predicate UnsignedPred;
1450 if (match(UnsignedICmp, m_ICmp(UnsignedPred, m_Value(X), m_Specific(Y))) &&
1451 ICmpInst::isUnsigned(UnsignedPred))
1452 ;
1453 else if (match(UnsignedICmp,
1454 m_ICmp(UnsignedPred, m_Value(Y), m_Specific(X))) &&
1455 ICmpInst::isUnsigned(UnsignedPred))
1456 UnsignedPred = ICmpInst::getSwappedPredicate(UnsignedPred);
1457 else
1458 return nullptr;
1459
1460 // X < Y && Y != 0 --> X < Y
1461 // X < Y || Y != 0 --> Y != 0
1462 if (UnsignedPred == ICmpInst::ICMP_ULT && EqPred == ICmpInst::ICMP_NE)
1463 return IsAnd ? UnsignedICmp : ZeroICmp;
1464
1465 // X >= Y || Y != 0 --> true
1466 // X >= Y || Y == 0 --> X >= Y
1467 if (UnsignedPred == ICmpInst::ICMP_UGE && !IsAnd) {
1468 if (EqPred == ICmpInst::ICMP_NE)
1469 return getTrue(UnsignedICmp->getType());
1470 return UnsignedICmp;
1471 }
1472
David Majnemerd5b3aa42014-12-08 18:30:43 +00001473 // X < Y && Y == 0 --> false
1474 if (UnsignedPred == ICmpInst::ICMP_ULT && EqPred == ICmpInst::ICMP_EQ &&
1475 IsAnd)
1476 return getFalse(UnsignedICmp->getType());
1477
David Majnemer1af36e52014-12-06 10:51:40 +00001478 return nullptr;
1479}
1480
David Majnemera315bd82014-09-15 08:15:28 +00001481// Simplify (and (icmp ...) (icmp ...)) to true when we can tell that the range
1482// of possible values cannot be satisfied.
1483static Value *SimplifyAndOfICmps(ICmpInst *Op0, ICmpInst *Op1) {
1484 ICmpInst::Predicate Pred0, Pred1;
1485 ConstantInt *CI1, *CI2;
1486 Value *V;
David Majnemer1af36e52014-12-06 10:51:40 +00001487
1488 if (Value *X = simplifyUnsignedRangeCheck(Op0, Op1, /*IsAnd=*/true))
1489 return X;
1490
David Majnemera315bd82014-09-15 08:15:28 +00001491 if (!match(Op0, m_ICmp(Pred0, m_Add(m_Value(V), m_ConstantInt(CI1)),
1492 m_ConstantInt(CI2))))
1493 return nullptr;
1494
1495 if (!match(Op1, m_ICmp(Pred1, m_Specific(V), m_Specific(CI1))))
1496 return nullptr;
1497
1498 Type *ITy = Op0->getType();
1499
1500 auto *AddInst = cast<BinaryOperator>(Op0->getOperand(0));
1501 bool isNSW = AddInst->hasNoSignedWrap();
1502 bool isNUW = AddInst->hasNoUnsignedWrap();
1503
1504 const APInt &CI1V = CI1->getValue();
1505 const APInt &CI2V = CI2->getValue();
1506 const APInt Delta = CI2V - CI1V;
1507 if (CI1V.isStrictlyPositive()) {
1508 if (Delta == 2) {
1509 if (Pred0 == ICmpInst::ICMP_ULT && Pred1 == ICmpInst::ICMP_SGT)
1510 return getFalse(ITy);
1511 if (Pred0 == ICmpInst::ICMP_SLT && Pred1 == ICmpInst::ICMP_SGT && isNSW)
1512 return getFalse(ITy);
1513 }
1514 if (Delta == 1) {
1515 if (Pred0 == ICmpInst::ICMP_ULE && Pred1 == ICmpInst::ICMP_SGT)
1516 return getFalse(ITy);
1517 if (Pred0 == ICmpInst::ICMP_SLE && Pred1 == ICmpInst::ICMP_SGT && isNSW)
1518 return getFalse(ITy);
1519 }
1520 }
1521 if (CI1V.getBoolValue() && isNUW) {
1522 if (Delta == 2)
1523 if (Pred0 == ICmpInst::ICMP_ULT && Pred1 == ICmpInst::ICMP_UGT)
1524 return getFalse(ITy);
1525 if (Delta == 1)
1526 if (Pred0 == ICmpInst::ICMP_ULE && Pred1 == ICmpInst::ICMP_UGT)
1527 return getFalse(ITy);
1528 }
1529
1530 return nullptr;
1531}
1532
Chris Lattnera71e9d62009-11-10 00:55:12 +00001533/// SimplifyAndInst - Given operands for an And, see if we can
Chris Lattner084a1b52009-11-09 22:57:59 +00001534/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001535static Value *SimplifyAndInst(Value *Op0, Value *Op1, const Query &Q,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001536 unsigned MaxRecurse) {
Chris Lattnera71e9d62009-11-10 00:55:12 +00001537 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
1538 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
1539 Constant *Ops[] = { CLHS, CRHS };
1540 return ConstantFoldInstOperands(Instruction::And, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001541 Ops, Q.DL, Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00001542 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001543
Chris Lattnera71e9d62009-11-10 00:55:12 +00001544 // Canonicalize the constant to the RHS.
1545 std::swap(Op0, Op1);
1546 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001547
Chris Lattnera71e9d62009-11-10 00:55:12 +00001548 // X & undef -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001549 if (match(Op1, m_Undef()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001550 return Constant::getNullValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001551
Chris Lattnera71e9d62009-11-10 00:55:12 +00001552 // X & X = X
Duncan Sands772749a2011-01-01 20:08:02 +00001553 if (Op0 == Op1)
Chris Lattnera71e9d62009-11-10 00:55:12 +00001554 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001555
Duncan Sandsc89ac072010-11-17 18:52:15 +00001556 // X & 0 = 0
1557 if (match(Op1, m_Zero()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001558 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001559
Duncan Sandsc89ac072010-11-17 18:52:15 +00001560 // X & -1 = X
1561 if (match(Op1, m_AllOnes()))
1562 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001563
Chris Lattnera71e9d62009-11-10 00:55:12 +00001564 // A & ~A = ~A & A = 0
Chris Lattner9e4aa022011-02-09 17:15:04 +00001565 if (match(Op0, m_Not(m_Specific(Op1))) ||
1566 match(Op1, m_Not(m_Specific(Op0))))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001567 return Constant::getNullValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001568
Chris Lattnera71e9d62009-11-10 00:55:12 +00001569 // (A | ?) & A = A
Craig Topper9f008862014-04-15 04:59:12 +00001570 Value *A = nullptr, *B = nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00001571 if (match(Op0, m_Or(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001572 (A == Op1 || B == Op1))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001573 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001574
Chris Lattnera71e9d62009-11-10 00:55:12 +00001575 // A & (A | ?) = A
1576 if (match(Op1, m_Or(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001577 (A == Op0 || B == Op0))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001578 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001579
Duncan Sandsba286d72011-10-26 20:55:21 +00001580 // A & (-A) = A if A is a power of two or zero.
1581 if (match(Op0, m_Neg(m_Specific(Op1))) ||
1582 match(Op1, m_Neg(m_Specific(Op0)))) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001583 if (isKnownToBeAPowerOfTwo(Op0, /*OrZero*/ true, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsba286d72011-10-26 20:55:21 +00001584 return Op0;
Chandler Carruth66b31302015-01-04 12:03:27 +00001585 if (isKnownToBeAPowerOfTwo(Op1, /*OrZero*/ true, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsba286d72011-10-26 20:55:21 +00001586 return Op1;
1587 }
1588
David Majnemera315bd82014-09-15 08:15:28 +00001589 if (auto *ICILHS = dyn_cast<ICmpInst>(Op0)) {
1590 if (auto *ICIRHS = dyn_cast<ICmpInst>(Op1)) {
1591 if (Value *V = SimplifyAndOfICmps(ICILHS, ICIRHS))
1592 return V;
1593 if (Value *V = SimplifyAndOfICmps(ICIRHS, ICILHS))
1594 return V;
1595 }
1596 }
1597
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001598 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001599 if (Value *V = SimplifyAssociativeBinOp(Instruction::And, Op0, Op1, Q,
1600 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001601 return V;
Benjamin Kramer8c35fb02010-09-10 22:39:55 +00001602
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001603 // And distributes over Or. Try some generic simplifications based on this.
1604 if (Value *V = ExpandBinOp(Instruction::And, Op0, Op1, Instruction::Or,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001605 Q, MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001606 return V;
1607
1608 // And distributes over Xor. Try some generic simplifications based on this.
1609 if (Value *V = ExpandBinOp(Instruction::And, Op0, Op1, Instruction::Xor,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001610 Q, MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001611 return V;
1612
Duncan Sandsb0579e92010-11-10 13:00:08 +00001613 // If the operation is with the result of a select instruction, check whether
1614 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001615 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001616 if (Value *V = ThreadBinOpOverSelect(Instruction::And, Op0, Op1, Q,
1617 MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001618 return V;
1619
1620 // If the operation is with the result of a phi instruction, check whether
1621 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001622 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001623 if (Value *V = ThreadBinOpOverPHI(Instruction::And, Op0, Op1, Q,
Duncan Sandsf64e6902010-12-21 09:09:15 +00001624 MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00001625 return V;
1626
Craig Topper9f008862014-04-15 04:59:12 +00001627 return nullptr;
Chris Lattner084a1b52009-11-09 22:57:59 +00001628}
1629
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001630Value *llvm::SimplifyAndInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001631 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001632 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001633 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001634 return ::SimplifyAndInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001635 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001636}
1637
David Majnemera315bd82014-09-15 08:15:28 +00001638// Simplify (or (icmp ...) (icmp ...)) to true when we can tell that the union
1639// contains all possible values.
1640static Value *SimplifyOrOfICmps(ICmpInst *Op0, ICmpInst *Op1) {
1641 ICmpInst::Predicate Pred0, Pred1;
1642 ConstantInt *CI1, *CI2;
1643 Value *V;
David Majnemer1af36e52014-12-06 10:51:40 +00001644
1645 if (Value *X = simplifyUnsignedRangeCheck(Op0, Op1, /*IsAnd=*/false))
1646 return X;
1647
David Majnemera315bd82014-09-15 08:15:28 +00001648 if (!match(Op0, m_ICmp(Pred0, m_Add(m_Value(V), m_ConstantInt(CI1)),
1649 m_ConstantInt(CI2))))
1650 return nullptr;
1651
1652 if (!match(Op1, m_ICmp(Pred1, m_Specific(V), m_Specific(CI1))))
1653 return nullptr;
1654
1655 Type *ITy = Op0->getType();
1656
1657 auto *AddInst = cast<BinaryOperator>(Op0->getOperand(0));
1658 bool isNSW = AddInst->hasNoSignedWrap();
1659 bool isNUW = AddInst->hasNoUnsignedWrap();
1660
1661 const APInt &CI1V = CI1->getValue();
1662 const APInt &CI2V = CI2->getValue();
1663 const APInt Delta = CI2V - CI1V;
1664 if (CI1V.isStrictlyPositive()) {
1665 if (Delta == 2) {
1666 if (Pred0 == ICmpInst::ICMP_UGE && Pred1 == ICmpInst::ICMP_SLE)
1667 return getTrue(ITy);
1668 if (Pred0 == ICmpInst::ICMP_SGE && Pred1 == ICmpInst::ICMP_SLE && isNSW)
1669 return getTrue(ITy);
1670 }
1671 if (Delta == 1) {
1672 if (Pred0 == ICmpInst::ICMP_UGT && Pred1 == ICmpInst::ICMP_SLE)
1673 return getTrue(ITy);
1674 if (Pred0 == ICmpInst::ICMP_SGT && Pred1 == ICmpInst::ICMP_SLE && isNSW)
1675 return getTrue(ITy);
1676 }
1677 }
1678 if (CI1V.getBoolValue() && isNUW) {
1679 if (Delta == 2)
1680 if (Pred0 == ICmpInst::ICMP_UGE && Pred1 == ICmpInst::ICMP_ULE)
1681 return getTrue(ITy);
1682 if (Delta == 1)
1683 if (Pred0 == ICmpInst::ICMP_UGT && Pred1 == ICmpInst::ICMP_ULE)
1684 return getTrue(ITy);
1685 }
1686
1687 return nullptr;
1688}
1689
Chris Lattnera71e9d62009-11-10 00:55:12 +00001690/// SimplifyOrInst - Given operands for an Or, see if we can
1691/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001692static Value *SimplifyOrInst(Value *Op0, Value *Op1, const Query &Q,
1693 unsigned MaxRecurse) {
Chris Lattnera71e9d62009-11-10 00:55:12 +00001694 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
1695 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
1696 Constant *Ops[] = { CLHS, CRHS };
1697 return ConstantFoldInstOperands(Instruction::Or, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001698 Ops, Q.DL, Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00001699 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001700
Chris Lattnera71e9d62009-11-10 00:55:12 +00001701 // Canonicalize the constant to the RHS.
1702 std::swap(Op0, Op1);
1703 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001704
Chris Lattnera71e9d62009-11-10 00:55:12 +00001705 // X | undef -> -1
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001706 if (match(Op1, m_Undef()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001707 return Constant::getAllOnesValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001708
Chris Lattnera71e9d62009-11-10 00:55:12 +00001709 // X | X = X
Duncan Sands772749a2011-01-01 20:08:02 +00001710 if (Op0 == Op1)
Chris Lattnera71e9d62009-11-10 00:55:12 +00001711 return Op0;
1712
Duncan Sandsc89ac072010-11-17 18:52:15 +00001713 // X | 0 = X
1714 if (match(Op1, m_Zero()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001715 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001716
Duncan Sandsc89ac072010-11-17 18:52:15 +00001717 // X | -1 = -1
1718 if (match(Op1, m_AllOnes()))
1719 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001720
Chris Lattnera71e9d62009-11-10 00:55:12 +00001721 // A | ~A = ~A | A = -1
Chris Lattner9e4aa022011-02-09 17:15:04 +00001722 if (match(Op0, m_Not(m_Specific(Op1))) ||
1723 match(Op1, m_Not(m_Specific(Op0))))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001724 return Constant::getAllOnesValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001725
Chris Lattnera71e9d62009-11-10 00:55:12 +00001726 // (A & ?) | A = A
Craig Topper9f008862014-04-15 04:59:12 +00001727 Value *A = nullptr, *B = nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00001728 if (match(Op0, m_And(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001729 (A == Op1 || B == Op1))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001730 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001731
Chris Lattnera71e9d62009-11-10 00:55:12 +00001732 // A | (A & ?) = A
1733 if (match(Op1, m_And(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001734 (A == Op0 || B == Op0))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001735 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001736
Benjamin Kramer5b7a4e02011-02-20 15:20:01 +00001737 // ~(A & ?) | A = -1
1738 if (match(Op0, m_Not(m_And(m_Value(A), m_Value(B)))) &&
1739 (A == Op1 || B == Op1))
1740 return Constant::getAllOnesValue(Op1->getType());
1741
1742 // A | ~(A & ?) = -1
1743 if (match(Op1, m_Not(m_And(m_Value(A), m_Value(B)))) &&
1744 (A == Op0 || B == Op0))
1745 return Constant::getAllOnesValue(Op0->getType());
1746
David Majnemera315bd82014-09-15 08:15:28 +00001747 if (auto *ICILHS = dyn_cast<ICmpInst>(Op0)) {
1748 if (auto *ICIRHS = dyn_cast<ICmpInst>(Op1)) {
1749 if (Value *V = SimplifyOrOfICmps(ICILHS, ICIRHS))
1750 return V;
1751 if (Value *V = SimplifyOrOfICmps(ICIRHS, ICILHS))
1752 return V;
1753 }
1754 }
1755
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001756 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001757 if (Value *V = SimplifyAssociativeBinOp(Instruction::Or, Op0, Op1, Q,
1758 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001759 return V;
Benjamin Kramer8c35fb02010-09-10 22:39:55 +00001760
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001761 // Or distributes over And. Try some generic simplifications based on this.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001762 if (Value *V = ExpandBinOp(Instruction::Or, Op0, Op1, Instruction::And, Q,
1763 MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001764 return V;
1765
Duncan Sandsb0579e92010-11-10 13:00:08 +00001766 // If the operation is with the result of a select instruction, check whether
1767 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001768 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001769 if (Value *V = ThreadBinOpOverSelect(Instruction::Or, Op0, Op1, Q,
Duncan Sandsf64e6902010-12-21 09:09:15 +00001770 MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001771 return V;
1772
Nick Lewycky8561a492014-06-19 03:51:46 +00001773 // (A & C)|(B & D)
1774 Value *C = nullptr, *D = nullptr;
1775 if (match(Op0, m_And(m_Value(A), m_Value(C))) &&
1776 match(Op1, m_And(m_Value(B), m_Value(D)))) {
1777 ConstantInt *C1 = dyn_cast<ConstantInt>(C);
1778 ConstantInt *C2 = dyn_cast<ConstantInt>(D);
1779 if (C1 && C2 && (C1->getValue() == ~C2->getValue())) {
1780 // (A & C1)|(B & C2)
1781 // If we have: ((V + N) & C1) | (V & C2)
1782 // .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0
1783 // replace with V+N.
1784 Value *V1, *V2;
1785 if ((C2->getValue() & (C2->getValue() + 1)) == 0 && // C2 == 0+1+
1786 match(A, m_Add(m_Value(V1), m_Value(V2)))) {
1787 // Add commutes, try both ways.
Chandler Carruth66b31302015-01-04 12:03:27 +00001788 if (V1 == B &&
1789 MaskedValueIsZero(V2, C2->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001790 return A;
Chandler Carruth66b31302015-01-04 12:03:27 +00001791 if (V2 == B &&
1792 MaskedValueIsZero(V1, C2->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001793 return A;
1794 }
1795 // Or commutes, try both ways.
1796 if ((C1->getValue() & (C1->getValue() + 1)) == 0 &&
1797 match(B, m_Add(m_Value(V1), m_Value(V2)))) {
1798 // Add commutes, try both ways.
Chandler Carruth66b31302015-01-04 12:03:27 +00001799 if (V1 == A &&
1800 MaskedValueIsZero(V2, C1->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001801 return B;
Chandler Carruth66b31302015-01-04 12:03:27 +00001802 if (V2 == A &&
1803 MaskedValueIsZero(V1, C1->getValue(), Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Nick Lewycky8561a492014-06-19 03:51:46 +00001804 return B;
1805 }
1806 }
1807 }
1808
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001809 // If the operation is with the result of a phi instruction, check whether
1810 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001811 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001812 if (Value *V = ThreadBinOpOverPHI(Instruction::Or, Op0, Op1, Q, MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00001813 return V;
1814
Craig Topper9f008862014-04-15 04:59:12 +00001815 return nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00001816}
1817
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001818Value *llvm::SimplifyOrInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001819 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001820 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001821 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001822 return ::SimplifyOrInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001823 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001824}
Chris Lattnera71e9d62009-11-10 00:55:12 +00001825
Duncan Sandsc89ac072010-11-17 18:52:15 +00001826/// SimplifyXorInst - Given operands for a Xor, see if we can
1827/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001828static Value *SimplifyXorInst(Value *Op0, Value *Op1, const Query &Q,
1829 unsigned MaxRecurse) {
Duncan Sandsc89ac072010-11-17 18:52:15 +00001830 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
1831 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
1832 Constant *Ops[] = { CLHS, CRHS };
1833 return ConstantFoldInstOperands(Instruction::Xor, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001834 Ops, Q.DL, Q.TLI);
Duncan Sandsc89ac072010-11-17 18:52:15 +00001835 }
1836
1837 // Canonicalize the constant to the RHS.
1838 std::swap(Op0, Op1);
1839 }
1840
1841 // A ^ undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001842 if (match(Op1, m_Undef()))
Duncan Sands019a4182010-12-15 11:02:22 +00001843 return Op1;
Duncan Sandsc89ac072010-11-17 18:52:15 +00001844
1845 // A ^ 0 = A
1846 if (match(Op1, m_Zero()))
1847 return Op0;
1848
Eli Friedmanad3cfe72011-08-17 19:31:49 +00001849 // A ^ A = 0
1850 if (Op0 == Op1)
1851 return Constant::getNullValue(Op0->getType());
1852
Duncan Sandsc89ac072010-11-17 18:52:15 +00001853 // A ^ ~A = ~A ^ A = -1
Chris Lattner9e4aa022011-02-09 17:15:04 +00001854 if (match(Op0, m_Not(m_Specific(Op1))) ||
1855 match(Op1, m_Not(m_Specific(Op0))))
Duncan Sandsc89ac072010-11-17 18:52:15 +00001856 return Constant::getAllOnesValue(Op0->getType());
1857
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001858 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001859 if (Value *V = SimplifyAssociativeBinOp(Instruction::Xor, Op0, Op1, Q,
1860 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001861 return V;
Duncan Sandsc89ac072010-11-17 18:52:15 +00001862
Duncan Sandsb238de02010-11-19 09:20:39 +00001863 // Threading Xor over selects and phi nodes is pointless, so don't bother.
1864 // Threading over the select in "A ^ select(cond, B, C)" means evaluating
1865 // "A^B" and "A^C" and seeing if they are equal; but they are equal if and
1866 // only if B and C are equal. If B and C are equal then (since we assume
1867 // that operands have already been simplified) "select(cond, B, C)" should
1868 // have been simplified to the common value of B and C already. Analysing
1869 // "A^B" and "A^C" thus gains nothing, but costs compile time. Similarly
1870 // for threading over phi nodes.
Duncan Sandsc89ac072010-11-17 18:52:15 +00001871
Craig Topper9f008862014-04-15 04:59:12 +00001872 return nullptr;
Duncan Sandsc89ac072010-11-17 18:52:15 +00001873}
1874
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001875Value *llvm::SimplifyXorInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001876 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00001877 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00001878 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001879 return ::SimplifyXorInst(Op0, Op1, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00001880 RecursionLimit);
Duncan Sandsc89ac072010-11-17 18:52:15 +00001881}
1882
Chris Lattner229907c2011-07-18 04:54:35 +00001883static Type *GetCompareTy(Value *Op) {
Chris Lattnerccfdceb2009-11-09 23:55:12 +00001884 return CmpInst::makeCmpResultType(Op->getType());
1885}
1886
Duncan Sandsaf327282011-05-07 16:56:49 +00001887/// ExtractEquivalentCondition - Rummage around inside V looking for something
1888/// equivalent to the comparison "LHS Pred RHS". Return such a value if found,
1889/// otherwise return null. Helper function for analyzing max/min idioms.
1890static Value *ExtractEquivalentCondition(Value *V, CmpInst::Predicate Pred,
1891 Value *LHS, Value *RHS) {
1892 SelectInst *SI = dyn_cast<SelectInst>(V);
1893 if (!SI)
Craig Topper9f008862014-04-15 04:59:12 +00001894 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00001895 CmpInst *Cmp = dyn_cast<CmpInst>(SI->getCondition());
1896 if (!Cmp)
Craig Topper9f008862014-04-15 04:59:12 +00001897 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00001898 Value *CmpLHS = Cmp->getOperand(0), *CmpRHS = Cmp->getOperand(1);
1899 if (Pred == Cmp->getPredicate() && LHS == CmpLHS && RHS == CmpRHS)
1900 return Cmp;
1901 if (Pred == CmpInst::getSwappedPredicate(Cmp->getPredicate()) &&
1902 LHS == CmpRHS && RHS == CmpLHS)
1903 return Cmp;
Craig Topper9f008862014-04-15 04:59:12 +00001904 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00001905}
1906
Dan Gohman9631d902013-02-01 00:49:06 +00001907// A significant optimization not implemented here is assuming that alloca
1908// addresses are not equal to incoming argument values. They don't *alias*,
1909// as we say, but that doesn't mean they aren't equal, so we take a
1910// conservative approach.
1911//
1912// This is inspired in part by C++11 5.10p1:
1913// "Two pointers of the same type compare equal if and only if they are both
1914// null, both point to the same function, or both represent the same
1915// address."
1916//
1917// This is pretty permissive.
1918//
1919// It's also partly due to C11 6.5.9p6:
1920// "Two pointers compare equal if and only if both are null pointers, both are
1921// pointers to the same object (including a pointer to an object and a
1922// subobject at its beginning) or function, both are pointers to one past the
1923// last element of the same array object, or one is a pointer to one past the
1924// end of one array object and the other is a pointer to the start of a
NAKAMURA Takumi065fd352013-04-08 23:05:21 +00001925// different array object that happens to immediately follow the first array
Dan Gohman9631d902013-02-01 00:49:06 +00001926// object in the address space.)
1927//
1928// C11's version is more restrictive, however there's no reason why an argument
1929// couldn't be a one-past-the-end value for a stack object in the caller and be
1930// equal to the beginning of a stack object in the callee.
1931//
1932// If the C and C++ standards are ever made sufficiently restrictive in this
1933// area, it may be possible to update LLVM's semantics accordingly and reinstate
1934// this optimization.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001935static Constant *computePointerICmp(const DataLayout *DL,
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001936 const TargetLibraryInfo *TLI,
Chandler Carruth8059c842012-03-25 21:28:14 +00001937 CmpInst::Predicate Pred,
1938 Value *LHS, Value *RHS) {
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001939 // First, skip past any trivial no-ops.
1940 LHS = LHS->stripPointerCasts();
1941 RHS = RHS->stripPointerCasts();
1942
1943 // A non-null pointer is not equal to a null pointer.
Benjamin Kramerfd4777c2013-09-24 16:37:51 +00001944 if (llvm::isKnownNonNull(LHS, TLI) && isa<ConstantPointerNull>(RHS) &&
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001945 (Pred == CmpInst::ICMP_EQ || Pred == CmpInst::ICMP_NE))
1946 return ConstantInt::get(GetCompareTy(LHS),
1947 !CmpInst::isTrueWhenEqual(Pred));
1948
Chandler Carruth8059c842012-03-25 21:28:14 +00001949 // We can only fold certain predicates on pointer comparisons.
1950 switch (Pred) {
1951 default:
Craig Topper9f008862014-04-15 04:59:12 +00001952 return nullptr;
Chandler Carruth8059c842012-03-25 21:28:14 +00001953
1954 // Equality comaprisons are easy to fold.
1955 case CmpInst::ICMP_EQ:
1956 case CmpInst::ICMP_NE:
1957 break;
1958
1959 // We can only handle unsigned relational comparisons because 'inbounds' on
1960 // a GEP only protects against unsigned wrapping.
1961 case CmpInst::ICMP_UGT:
1962 case CmpInst::ICMP_UGE:
1963 case CmpInst::ICMP_ULT:
1964 case CmpInst::ICMP_ULE:
1965 // However, we have to switch them to their signed variants to handle
1966 // negative indices from the base pointer.
1967 Pred = ICmpInst::getSignedPredicate(Pred);
1968 break;
1969 }
1970
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001971 // Strip off any constant offsets so that we can reason about them.
1972 // It's tempting to use getUnderlyingObject or even just stripInBoundsOffsets
1973 // here and compare base addresses like AliasAnalysis does, however there are
1974 // numerous hazards. AliasAnalysis and its utilities rely on special rules
1975 // governing loads and stores which don't apply to icmps. Also, AliasAnalysis
1976 // doesn't need to guarantee pointer inequality when it says NoAlias.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001977 Constant *LHSOffset = stripAndComputeConstantOffsets(DL, LHS);
1978 Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS);
Chandler Carruth8059c842012-03-25 21:28:14 +00001979
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001980 // If LHS and RHS are related via constant offsets to the same base
1981 // value, we can replace it with an icmp which just compares the offsets.
1982 if (LHS == RHS)
1983 return ConstantExpr::getICmp(Pred, LHSOffset, RHSOffset);
Chandler Carruth8059c842012-03-25 21:28:14 +00001984
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001985 // Various optimizations for (in)equality comparisons.
1986 if (Pred == CmpInst::ICMP_EQ || Pred == CmpInst::ICMP_NE) {
1987 // Different non-empty allocations that exist at the same time have
1988 // different addresses (if the program can tell). Global variables always
1989 // exist, so they always exist during the lifetime of each other and all
1990 // allocas. Two different allocas usually have different addresses...
1991 //
1992 // However, if there's an @llvm.stackrestore dynamically in between two
1993 // allocas, they may have the same address. It's tempting to reduce the
1994 // scope of the problem by only looking at *static* allocas here. That would
1995 // cover the majority of allocas while significantly reducing the likelihood
1996 // of having an @llvm.stackrestore pop up in the middle. However, it's not
1997 // actually impossible for an @llvm.stackrestore to pop up in the middle of
1998 // an entry block. Also, if we have a block that's not attached to a
1999 // function, we can't tell if it's "static" under the current definition.
2000 // Theoretically, this problem could be fixed by creating a new kind of
2001 // instruction kind specifically for static allocas. Such a new instruction
2002 // could be required to be at the top of the entry block, thus preventing it
2003 // from being subject to a @llvm.stackrestore. Instcombine could even
2004 // convert regular allocas into these special allocas. It'd be nifty.
2005 // However, until then, this problem remains open.
2006 //
2007 // So, we'll assume that two non-empty allocas have different addresses
2008 // for now.
2009 //
2010 // With all that, if the offsets are within the bounds of their allocations
2011 // (and not one-past-the-end! so we can't use inbounds!), and their
2012 // allocations aren't the same, the pointers are not equal.
2013 //
2014 // Note that it's not necessary to check for LHS being a global variable
2015 // address, due to canonicalization and constant folding.
2016 if (isa<AllocaInst>(LHS) &&
2017 (isa<AllocaInst>(RHS) || isa<GlobalVariable>(RHS))) {
Benjamin Kramerc05aa952013-02-01 15:21:10 +00002018 ConstantInt *LHSOffsetCI = dyn_cast<ConstantInt>(LHSOffset);
2019 ConstantInt *RHSOffsetCI = dyn_cast<ConstantInt>(RHSOffset);
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002020 uint64_t LHSSize, RHSSize;
Benjamin Kramerc05aa952013-02-01 15:21:10 +00002021 if (LHSOffsetCI && RHSOffsetCI &&
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002022 getObjectSize(LHS, LHSSize, DL, TLI) &&
2023 getObjectSize(RHS, RHSSize, DL, TLI)) {
Benjamin Kramerc05aa952013-02-01 15:21:10 +00002024 const APInt &LHSOffsetValue = LHSOffsetCI->getValue();
2025 const APInt &RHSOffsetValue = RHSOffsetCI->getValue();
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002026 if (!LHSOffsetValue.isNegative() &&
2027 !RHSOffsetValue.isNegative() &&
2028 LHSOffsetValue.ult(LHSSize) &&
2029 RHSOffsetValue.ult(RHSSize)) {
2030 return ConstantInt::get(GetCompareTy(LHS),
2031 !CmpInst::isTrueWhenEqual(Pred));
2032 }
2033 }
2034
2035 // Repeat the above check but this time without depending on DataLayout
2036 // or being able to compute a precise size.
2037 if (!cast<PointerType>(LHS->getType())->isEmptyTy() &&
2038 !cast<PointerType>(RHS->getType())->isEmptyTy() &&
2039 LHSOffset->isNullValue() &&
2040 RHSOffset->isNullValue())
2041 return ConstantInt::get(GetCompareTy(LHS),
2042 !CmpInst::isTrueWhenEqual(Pred));
2043 }
Benjamin Kramer942dfe62013-09-23 14:16:38 +00002044
2045 // Even if an non-inbounds GEP occurs along the path we can still optimize
2046 // equality comparisons concerning the result. We avoid walking the whole
2047 // chain again by starting where the last calls to
2048 // stripAndComputeConstantOffsets left off and accumulate the offsets.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002049 Constant *LHSNoBound = stripAndComputeConstantOffsets(DL, LHS, true);
2050 Constant *RHSNoBound = stripAndComputeConstantOffsets(DL, RHS, true);
Benjamin Kramer942dfe62013-09-23 14:16:38 +00002051 if (LHS == RHS)
2052 return ConstantExpr::getICmp(Pred,
2053 ConstantExpr::getAdd(LHSOffset, LHSNoBound),
2054 ConstantExpr::getAdd(RHSOffset, RHSNoBound));
Hal Finkelafcd8db2014-12-01 23:38:06 +00002055
2056 // If one side of the equality comparison must come from a noalias call
2057 // (meaning a system memory allocation function), and the other side must
2058 // come from a pointer that cannot overlap with dynamically-allocated
2059 // memory within the lifetime of the current function (allocas, byval
2060 // arguments, globals), then determine the comparison result here.
2061 SmallVector<Value *, 8> LHSUObjs, RHSUObjs;
2062 GetUnderlyingObjects(LHS, LHSUObjs, DL);
2063 GetUnderlyingObjects(RHS, RHSUObjs, DL);
2064
2065 // Is the set of underlying objects all noalias calls?
2066 auto IsNAC = [](SmallVectorImpl<Value *> &Objects) {
2067 return std::all_of(Objects.begin(), Objects.end(),
2068 [](Value *V){ return isNoAliasCall(V); });
2069 };
2070
2071 // Is the set of underlying objects all things which must be disjoint from
Hal Finkelaa19baf2014-12-04 17:45:19 +00002072 // noalias calls. For allocas, we consider only static ones (dynamic
2073 // allocas might be transformed into calls to malloc not simultaneously
2074 // live with the compared-to allocation). For globals, we exclude symbols
2075 // that might be resolve lazily to symbols in another dynamically-loaded
2076 // library (and, thus, could be malloc'ed by the implementation).
Hal Finkelafcd8db2014-12-01 23:38:06 +00002077 auto IsAllocDisjoint = [](SmallVectorImpl<Value *> &Objects) {
2078 return std::all_of(Objects.begin(), Objects.end(),
2079 [](Value *V){
Hal Finkelaa19baf2014-12-04 17:45:19 +00002080 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V))
2081 return AI->getParent() && AI->getParent()->getParent() &&
2082 AI->isStaticAlloca();
2083 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
2084 return (GV->hasLocalLinkage() ||
2085 GV->hasHiddenVisibility() ||
2086 GV->hasProtectedVisibility() ||
2087 GV->hasUnnamedAddr()) &&
2088 !GV->isThreadLocal();
Hal Finkelafcd8db2014-12-01 23:38:06 +00002089 if (const Argument *A = dyn_cast<Argument>(V))
2090 return A->hasByValAttr();
2091 return false;
2092 });
2093 };
2094
2095 if ((IsNAC(LHSUObjs) && IsAllocDisjoint(RHSUObjs)) ||
2096 (IsNAC(RHSUObjs) && IsAllocDisjoint(LHSUObjs)))
2097 return ConstantInt::get(GetCompareTy(LHS),
2098 !CmpInst::isTrueWhenEqual(Pred));
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00002099 }
2100
2101 // Otherwise, fail.
Craig Topper9f008862014-04-15 04:59:12 +00002102 return nullptr;
Chandler Carruth8059c842012-03-25 21:28:14 +00002103}
Chris Lattner01990f02012-02-24 19:01:58 +00002104
Chris Lattnerc1f19072009-11-09 23:28:39 +00002105/// SimplifyICmpInst - Given operands for an ICmpInst, see if we can
2106/// fold the result. If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00002107static Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00002108 const Query &Q, unsigned MaxRecurse) {
Chris Lattner084a1b52009-11-09 22:57:59 +00002109 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate;
Chris Lattnerc1f19072009-11-09 23:28:39 +00002110 assert(CmpInst::isIntPredicate(Pred) && "Not an integer compare!");
Duncan Sands7e800d62010-11-14 11:23:23 +00002111
Chris Lattnera71e9d62009-11-10 00:55:12 +00002112 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
Chris Lattnercdfb80d2009-11-09 23:06:58 +00002113 if (Constant *CRHS = dyn_cast<Constant>(RHS))
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002114 return ConstantFoldCompareInstOperands(Pred, CLHS, CRHS, Q.DL, Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00002115
2116 // If we have a constant, make sure it is on the RHS.
2117 std::swap(LHS, RHS);
2118 Pred = CmpInst::getSwappedPredicate(Pred);
2119 }
Duncan Sands7e800d62010-11-14 11:23:23 +00002120
Chris Lattner229907c2011-07-18 04:54:35 +00002121 Type *ITy = GetCompareTy(LHS); // The return type.
2122 Type *OpTy = LHS->getType(); // The operand type.
Duncan Sands7e800d62010-11-14 11:23:23 +00002123
Chris Lattnerccfdceb2009-11-09 23:55:12 +00002124 // icmp X, X -> true/false
Chris Lattner3afc0722010-03-03 19:46:03 +00002125 // X icmp undef -> true/false. For example, icmp ugt %X, undef -> false
2126 // because X could be 0.
Duncan Sands772749a2011-01-01 20:08:02 +00002127 if (LHS == RHS || isa<UndefValue>(RHS))
Chris Lattnerccfdceb2009-11-09 23:55:12 +00002128 return ConstantInt::get(ITy, CmpInst::isTrueWhenEqual(Pred));
Duncan Sands7e800d62010-11-14 11:23:23 +00002129
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002130 // Special case logic when the operands have i1 type.
Nick Lewyckye659b842011-12-01 02:39:36 +00002131 if (OpTy->getScalarType()->isIntegerTy(1)) {
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002132 switch (Pred) {
2133 default: break;
2134 case ICmpInst::ICMP_EQ:
2135 // X == 1 -> X
2136 if (match(RHS, m_One()))
2137 return LHS;
2138 break;
2139 case ICmpInst::ICMP_NE:
2140 // X != 0 -> X
2141 if (match(RHS, m_Zero()))
2142 return LHS;
2143 break;
2144 case ICmpInst::ICMP_UGT:
2145 // X >u 0 -> X
2146 if (match(RHS, m_Zero()))
2147 return LHS;
2148 break;
2149 case ICmpInst::ICMP_UGE:
2150 // X >=u 1 -> X
2151 if (match(RHS, m_One()))
2152 return LHS;
2153 break;
2154 case ICmpInst::ICMP_SLT:
2155 // X <s 0 -> X
2156 if (match(RHS, m_Zero()))
2157 return LHS;
2158 break;
2159 case ICmpInst::ICMP_SLE:
2160 // X <=s -1 -> X
2161 if (match(RHS, m_One()))
2162 return LHS;
2163 break;
2164 }
2165 }
2166
Duncan Sandsd3951082011-01-25 09:38:29 +00002167 // If we are comparing with zero then try hard since this is a common case.
2168 if (match(RHS, m_Zero())) {
2169 bool LHSKnownNonNegative, LHSKnownNegative;
2170 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00002171 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sandsd3951082011-01-25 09:38:29 +00002172 case ICmpInst::ICMP_ULT:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002173 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002174 case ICmpInst::ICMP_UGE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002175 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002176 case ICmpInst::ICMP_EQ:
2177 case ICmpInst::ICMP_ULE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002178 if (isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002179 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002180 break;
2181 case ICmpInst::ICMP_NE:
2182 case ICmpInst::ICMP_UGT:
Chandler Carruth66b31302015-01-04 12:03:27 +00002183 if (isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002184 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002185 break;
2186 case ICmpInst::ICMP_SLT:
Chandler Carruth66b31302015-01-04 12:03:27 +00002187 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC,
2188 Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002189 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002190 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002191 if (LHSKnownNonNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002192 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002193 break;
2194 case ICmpInst::ICMP_SLE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002195 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC,
2196 Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002197 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002198 return getTrue(ITy);
Chandler Carruth66b31302015-01-04 12:03:27 +00002199 if (LHSKnownNonNegative &&
2200 isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002201 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002202 break;
2203 case ICmpInst::ICMP_SGE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002204 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC,
2205 Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002206 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002207 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002208 if (LHSKnownNonNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002209 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002210 break;
2211 case ICmpInst::ICMP_SGT:
Chandler Carruth66b31302015-01-04 12:03:27 +00002212 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC,
2213 Q.CxtI, Q.DT);
Duncan Sandsd3951082011-01-25 09:38:29 +00002214 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002215 return getFalse(ITy);
Chandler Carruth66b31302015-01-04 12:03:27 +00002216 if (LHSKnownNonNegative &&
2217 isKnownNonZero(LHS, Q.DL, 0, Q.AC, Q.CxtI, Q.DT))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002218 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002219 break;
2220 }
2221 }
2222
2223 // See if we are doing a comparison with a constant integer.
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002224 if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002225 // Rule out tautological comparisons (eg., ult 0 or uge 0).
2226 ConstantRange RHS_CR = ICmpInst::makeConstantRange(Pred, CI->getValue());
2227 if (RHS_CR.isEmptySet())
2228 return ConstantInt::getFalse(CI->getContext());
2229 if (RHS_CR.isFullSet())
2230 return ConstantInt::getTrue(CI->getContext());
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002231
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002232 // Many binary operators with constant RHS have easy to compute constant
2233 // range. Use them to check whether the comparison is a tautology.
David Majnemer78910fc2014-05-16 17:14:03 +00002234 unsigned Width = CI->getBitWidth();
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002235 APInt Lower = APInt(Width, 0);
2236 APInt Upper = APInt(Width, 0);
2237 ConstantInt *CI2;
2238 if (match(LHS, m_URem(m_Value(), m_ConstantInt(CI2)))) {
2239 // 'urem x, CI2' produces [0, CI2).
2240 Upper = CI2->getValue();
2241 } else if (match(LHS, m_SRem(m_Value(), m_ConstantInt(CI2)))) {
2242 // 'srem x, CI2' produces (-|CI2|, |CI2|).
2243 Upper = CI2->getValue().abs();
2244 Lower = (-Upper) + 1;
Duncan Sands92af0a82011-10-28 18:17:44 +00002245 } else if (match(LHS, m_UDiv(m_ConstantInt(CI2), m_Value()))) {
2246 // 'udiv CI2, x' produces [0, CI2].
Eli Friedman0bae8b22011-11-08 21:08:02 +00002247 Upper = CI2->getValue() + 1;
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002248 } else if (match(LHS, m_UDiv(m_Value(), m_ConstantInt(CI2)))) {
2249 // 'udiv x, CI2' produces [0, UINT_MAX / CI2].
2250 APInt NegOne = APInt::getAllOnesValue(Width);
2251 if (!CI2->isZero())
2252 Upper = NegOne.udiv(CI2->getValue()) + 1;
David Majnemerea8d5db2014-05-16 16:57:04 +00002253 } else if (match(LHS, m_SDiv(m_ConstantInt(CI2), m_Value()))) {
David Majnemer651ed5e2014-07-04 00:23:39 +00002254 if (CI2->isMinSignedValue()) {
2255 // 'sdiv INT_MIN, x' produces [INT_MIN, INT_MIN / -2].
2256 Lower = CI2->getValue();
2257 Upper = Lower.lshr(1) + 1;
2258 } else {
2259 // 'sdiv CI2, x' produces [-|CI2|, |CI2|].
2260 Upper = CI2->getValue().abs() + 1;
2261 Lower = (-Upper) + 1;
2262 }
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002263 } else if (match(LHS, m_SDiv(m_Value(), m_ConstantInt(CI2)))) {
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002264 APInt IntMin = APInt::getSignedMinValue(Width);
2265 APInt IntMax = APInt::getSignedMaxValue(Width);
David Majnemeraf9180f2014-07-14 20:38:45 +00002266 APInt Val = CI2->getValue();
2267 if (Val.isAllOnesValue()) {
2268 // 'sdiv x, -1' produces [INT_MIN + 1, INT_MAX]
2269 // where CI2 != -1 and CI2 != 0 and CI2 != 1
2270 Lower = IntMin + 1;
2271 Upper = IntMax + 1;
2272 } else if (Val.countLeadingZeros() < Width - 1) {
2273 // 'sdiv x, CI2' produces [INT_MIN / CI2, INT_MAX / CI2]
2274 // where CI2 != -1 and CI2 != 0 and CI2 != 1
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002275 Lower = IntMin.sdiv(Val);
David Majnemeraf9180f2014-07-14 20:38:45 +00002276 Upper = IntMax.sdiv(Val);
2277 if (Lower.sgt(Upper))
2278 std::swap(Lower, Upper);
2279 Upper = Upper + 1;
David Majnemer5ea4fc02014-07-14 19:49:57 +00002280 assert(Upper != Lower && "Upper part of range has wrapped!");
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002281 }
David Majnemerd6d16712014-08-27 18:03:46 +00002282 } else if (match(LHS, m_NUWShl(m_ConstantInt(CI2), m_Value()))) {
2283 // 'shl nuw CI2, x' produces [CI2, CI2 << CLZ(CI2)]
2284 Lower = CI2->getValue();
2285 Upper = Lower.shl(Lower.countLeadingZeros()) + 1;
2286 } else if (match(LHS, m_NSWShl(m_ConstantInt(CI2), m_Value()))) {
2287 if (CI2->isNegative()) {
2288 // 'shl nsw CI2, x' produces [CI2 << CLO(CI2)-1, CI2]
2289 unsigned ShiftAmount = CI2->getValue().countLeadingOnes() - 1;
2290 Lower = CI2->getValue().shl(ShiftAmount);
2291 Upper = CI2->getValue() + 1;
2292 } else {
2293 // 'shl nsw CI2, x' produces [CI2, CI2 << CLZ(CI2)-1]
2294 unsigned ShiftAmount = CI2->getValue().countLeadingZeros() - 1;
2295 Lower = CI2->getValue();
2296 Upper = CI2->getValue().shl(ShiftAmount) + 1;
2297 }
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002298 } else if (match(LHS, m_LShr(m_Value(), m_ConstantInt(CI2)))) {
2299 // 'lshr x, CI2' produces [0, UINT_MAX >> CI2].
2300 APInt NegOne = APInt::getAllOnesValue(Width);
2301 if (CI2->getValue().ult(Width))
2302 Upper = NegOne.lshr(CI2->getValue()) + 1;
David Majnemer78910fc2014-05-16 17:14:03 +00002303 } else if (match(LHS, m_LShr(m_ConstantInt(CI2), m_Value()))) {
2304 // 'lshr CI2, x' produces [CI2 >> (Width-1), CI2].
2305 unsigned ShiftAmount = Width - 1;
2306 if (!CI2->isZero() && cast<BinaryOperator>(LHS)->isExact())
2307 ShiftAmount = CI2->getValue().countTrailingZeros();
2308 Lower = CI2->getValue().lshr(ShiftAmount);
2309 Upper = CI2->getValue() + 1;
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002310 } else if (match(LHS, m_AShr(m_Value(), m_ConstantInt(CI2)))) {
2311 // 'ashr x, CI2' produces [INT_MIN >> CI2, INT_MAX >> CI2].
2312 APInt IntMin = APInt::getSignedMinValue(Width);
2313 APInt IntMax = APInt::getSignedMaxValue(Width);
2314 if (CI2->getValue().ult(Width)) {
2315 Lower = IntMin.ashr(CI2->getValue());
2316 Upper = IntMax.ashr(CI2->getValue()) + 1;
2317 }
David Majnemer78910fc2014-05-16 17:14:03 +00002318 } else if (match(LHS, m_AShr(m_ConstantInt(CI2), m_Value()))) {
2319 unsigned ShiftAmount = Width - 1;
2320 if (!CI2->isZero() && cast<BinaryOperator>(LHS)->isExact())
2321 ShiftAmount = CI2->getValue().countTrailingZeros();
2322 if (CI2->isNegative()) {
2323 // 'ashr CI2, x' produces [CI2, CI2 >> (Width-1)]
2324 Lower = CI2->getValue();
2325 Upper = CI2->getValue().ashr(ShiftAmount) + 1;
2326 } else {
2327 // 'ashr CI2, x' produces [CI2 >> (Width-1), CI2]
2328 Lower = CI2->getValue().ashr(ShiftAmount);
2329 Upper = CI2->getValue() + 1;
2330 }
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002331 } else if (match(LHS, m_Or(m_Value(), m_ConstantInt(CI2)))) {
2332 // 'or x, CI2' produces [CI2, UINT_MAX].
2333 Lower = CI2->getValue();
2334 } else if (match(LHS, m_And(m_Value(), m_ConstantInt(CI2)))) {
2335 // 'and x, CI2' produces [0, CI2].
2336 Upper = CI2->getValue() + 1;
2337 }
2338 if (Lower != Upper) {
2339 ConstantRange LHS_CR = ConstantRange(Lower, Upper);
2340 if (RHS_CR.contains(LHS_CR))
2341 return ConstantInt::getTrue(RHS->getContext());
2342 if (RHS_CR.inverse().contains(LHS_CR))
2343 return ConstantInt::getFalse(RHS->getContext());
2344 }
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002345 }
2346
Duncan Sands8fb2c382011-01-20 13:21:55 +00002347 // Compare of cast, for example (zext X) != 0 -> X != 0
2348 if (isa<CastInst>(LHS) && (isa<Constant>(RHS) || isa<CastInst>(RHS))) {
2349 Instruction *LI = cast<CastInst>(LHS);
2350 Value *SrcOp = LI->getOperand(0);
Chris Lattner229907c2011-07-18 04:54:35 +00002351 Type *SrcTy = SrcOp->getType();
2352 Type *DstTy = LI->getType();
Duncan Sands8fb2c382011-01-20 13:21:55 +00002353
2354 // Turn icmp (ptrtoint x), (ptrtoint/constant) into a compare of the input
2355 // if the integer type is the same size as the pointer type.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002356 if (MaxRecurse && Q.DL && isa<PtrToIntInst>(LI) &&
2357 Q.DL->getTypeSizeInBits(SrcTy) == DstTy->getPrimitiveSizeInBits()) {
Duncan Sands8fb2c382011-01-20 13:21:55 +00002358 if (Constant *RHSC = dyn_cast<Constant>(RHS)) {
2359 // Transfer the cast to the constant.
2360 if (Value *V = SimplifyICmpInst(Pred, SrcOp,
2361 ConstantExpr::getIntToPtr(RHSC, SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002362 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002363 return V;
2364 } else if (PtrToIntInst *RI = dyn_cast<PtrToIntInst>(RHS)) {
2365 if (RI->getOperand(0)->getType() == SrcTy)
2366 // Compare without the cast.
2367 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002368 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002369 return V;
2370 }
2371 }
2372
2373 if (isa<ZExtInst>(LHS)) {
2374 // Turn icmp (zext X), (zext Y) into a compare of X and Y if they have the
2375 // same type.
2376 if (ZExtInst *RI = dyn_cast<ZExtInst>(RHS)) {
2377 if (MaxRecurse && SrcTy == RI->getOperand(0)->getType())
2378 // Compare X and Y. Note that signed predicates become unsigned.
2379 if (Value *V = SimplifyICmpInst(ICmpInst::getUnsignedPredicate(Pred),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002380 SrcOp, RI->getOperand(0), Q,
Duncan Sands8fb2c382011-01-20 13:21:55 +00002381 MaxRecurse-1))
2382 return V;
2383 }
2384 // Turn icmp (zext X), Cst into a compare of X and Cst if Cst is extended
2385 // too. If not, then try to deduce the result of the comparison.
2386 else if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
2387 // Compute the constant that would happen if we truncated to SrcTy then
2388 // reextended to DstTy.
2389 Constant *Trunc = ConstantExpr::getTrunc(CI, SrcTy);
2390 Constant *RExt = ConstantExpr::getCast(CastInst::ZExt, Trunc, DstTy);
2391
2392 // If the re-extended constant didn't change then this is effectively
2393 // also a case of comparing two zero-extended values.
2394 if (RExt == CI && MaxRecurse)
2395 if (Value *V = SimplifyICmpInst(ICmpInst::getUnsignedPredicate(Pred),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002396 SrcOp, Trunc, Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002397 return V;
2398
2399 // Otherwise the upper bits of LHS are zero while RHS has a non-zero bit
2400 // there. Use this to work out the result of the comparison.
2401 if (RExt != CI) {
2402 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00002403 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sands8fb2c382011-01-20 13:21:55 +00002404 // LHS <u RHS.
2405 case ICmpInst::ICMP_EQ:
2406 case ICmpInst::ICMP_UGT:
2407 case ICmpInst::ICMP_UGE:
2408 return ConstantInt::getFalse(CI->getContext());
2409
2410 case ICmpInst::ICMP_NE:
2411 case ICmpInst::ICMP_ULT:
2412 case ICmpInst::ICMP_ULE:
2413 return ConstantInt::getTrue(CI->getContext());
2414
2415 // LHS is non-negative. If RHS is negative then LHS >s LHS. If RHS
2416 // is non-negative then LHS <s RHS.
2417 case ICmpInst::ICMP_SGT:
2418 case ICmpInst::ICMP_SGE:
2419 return CI->getValue().isNegative() ?
2420 ConstantInt::getTrue(CI->getContext()) :
2421 ConstantInt::getFalse(CI->getContext());
2422
2423 case ICmpInst::ICMP_SLT:
2424 case ICmpInst::ICMP_SLE:
2425 return CI->getValue().isNegative() ?
2426 ConstantInt::getFalse(CI->getContext()) :
2427 ConstantInt::getTrue(CI->getContext());
2428 }
2429 }
2430 }
2431 }
2432
2433 if (isa<SExtInst>(LHS)) {
2434 // Turn icmp (sext X), (sext Y) into a compare of X and Y if they have the
2435 // same type.
2436 if (SExtInst *RI = dyn_cast<SExtInst>(RHS)) {
2437 if (MaxRecurse && SrcTy == RI->getOperand(0)->getType())
2438 // Compare X and Y. Note that the predicate does not change.
2439 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002440 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002441 return V;
2442 }
2443 // Turn icmp (sext X), Cst into a compare of X and Cst if Cst is extended
2444 // too. If not, then try to deduce the result of the comparison.
2445 else if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
2446 // Compute the constant that would happen if we truncated to SrcTy then
2447 // reextended to DstTy.
2448 Constant *Trunc = ConstantExpr::getTrunc(CI, SrcTy);
2449 Constant *RExt = ConstantExpr::getCast(CastInst::SExt, Trunc, DstTy);
2450
2451 // If the re-extended constant didn't change then this is effectively
2452 // also a case of comparing two sign-extended values.
2453 if (RExt == CI && MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002454 if (Value *V = SimplifyICmpInst(Pred, SrcOp, Trunc, Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002455 return V;
2456
2457 // Otherwise the upper bits of LHS are all equal, while RHS has varying
2458 // bits there. Use this to work out the result of the comparison.
2459 if (RExt != CI) {
2460 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00002461 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sands8fb2c382011-01-20 13:21:55 +00002462 case ICmpInst::ICMP_EQ:
2463 return ConstantInt::getFalse(CI->getContext());
2464 case ICmpInst::ICMP_NE:
2465 return ConstantInt::getTrue(CI->getContext());
2466
2467 // If RHS is non-negative then LHS <s RHS. If RHS is negative then
2468 // LHS >s RHS.
2469 case ICmpInst::ICMP_SGT:
2470 case ICmpInst::ICMP_SGE:
2471 return CI->getValue().isNegative() ?
2472 ConstantInt::getTrue(CI->getContext()) :
2473 ConstantInt::getFalse(CI->getContext());
2474 case ICmpInst::ICMP_SLT:
2475 case ICmpInst::ICMP_SLE:
2476 return CI->getValue().isNegative() ?
2477 ConstantInt::getFalse(CI->getContext()) :
2478 ConstantInt::getTrue(CI->getContext());
2479
2480 // If LHS is non-negative then LHS <u RHS. If LHS is negative then
2481 // LHS >u RHS.
2482 case ICmpInst::ICMP_UGT:
2483 case ICmpInst::ICMP_UGE:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002484 // Comparison is true iff the LHS <s 0.
Duncan Sands8fb2c382011-01-20 13:21:55 +00002485 if (MaxRecurse)
2486 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SLT, SrcOp,
2487 Constant::getNullValue(SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002488 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002489 return V;
2490 break;
2491 case ICmpInst::ICMP_ULT:
2492 case ICmpInst::ICMP_ULE:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002493 // Comparison is true iff the LHS >=s 0.
Duncan Sands8fb2c382011-01-20 13:21:55 +00002494 if (MaxRecurse)
2495 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SGE, SrcOp,
2496 Constant::getNullValue(SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002497 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002498 return V;
2499 break;
2500 }
2501 }
2502 }
2503 }
2504 }
2505
Duncan Sandsd114ab32011-02-13 17:15:40 +00002506 // Special logic for binary operators.
2507 BinaryOperator *LBO = dyn_cast<BinaryOperator>(LHS);
2508 BinaryOperator *RBO = dyn_cast<BinaryOperator>(RHS);
2509 if (MaxRecurse && (LBO || RBO)) {
Duncan Sandsd114ab32011-02-13 17:15:40 +00002510 // Analyze the case when either LHS or RHS is an add instruction.
Craig Topper9f008862014-04-15 04:59:12 +00002511 Value *A = nullptr, *B = nullptr, *C = nullptr, *D = nullptr;
Duncan Sandsd114ab32011-02-13 17:15:40 +00002512 // LHS = A + B (or A and B are null); RHS = C + D (or C and D are null).
2513 bool NoLHSWrapProblem = false, NoRHSWrapProblem = false;
2514 if (LBO && LBO->getOpcode() == Instruction::Add) {
2515 A = LBO->getOperand(0); B = LBO->getOperand(1);
2516 NoLHSWrapProblem = ICmpInst::isEquality(Pred) ||
2517 (CmpInst::isUnsigned(Pred) && LBO->hasNoUnsignedWrap()) ||
2518 (CmpInst::isSigned(Pred) && LBO->hasNoSignedWrap());
2519 }
2520 if (RBO && RBO->getOpcode() == Instruction::Add) {
2521 C = RBO->getOperand(0); D = RBO->getOperand(1);
2522 NoRHSWrapProblem = ICmpInst::isEquality(Pred) ||
2523 (CmpInst::isUnsigned(Pred) && RBO->hasNoUnsignedWrap()) ||
2524 (CmpInst::isSigned(Pred) && RBO->hasNoSignedWrap());
2525 }
2526
2527 // icmp (X+Y), X -> icmp Y, 0 for equalities or if there is no overflow.
2528 if ((A == RHS || B == RHS) && NoLHSWrapProblem)
2529 if (Value *V = SimplifyICmpInst(Pred, A == RHS ? B : A,
2530 Constant::getNullValue(RHS->getType()),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002531 Q, MaxRecurse-1))
Duncan Sandsd114ab32011-02-13 17:15:40 +00002532 return V;
2533
2534 // icmp X, (X+Y) -> icmp 0, Y for equalities or if there is no overflow.
2535 if ((C == LHS || D == LHS) && NoRHSWrapProblem)
2536 if (Value *V = SimplifyICmpInst(Pred,
2537 Constant::getNullValue(LHS->getType()),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002538 C == LHS ? D : C, Q, MaxRecurse-1))
Duncan Sandsd114ab32011-02-13 17:15:40 +00002539 return V;
2540
2541 // icmp (X+Y), (X+Z) -> icmp Y,Z for equalities or if there is no overflow.
2542 if (A && C && (A == C || A == D || B == C || B == D) &&
2543 NoLHSWrapProblem && NoRHSWrapProblem) {
2544 // Determine Y and Z in the form icmp (X+Y), (X+Z).
Duncan Sandsc41076c2012-11-16 19:41:26 +00002545 Value *Y, *Z;
2546 if (A == C) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002547 // C + B == C + D -> B == D
Duncan Sandsc41076c2012-11-16 19:41:26 +00002548 Y = B;
2549 Z = D;
2550 } else if (A == D) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002551 // D + B == C + D -> B == C
Duncan Sandsc41076c2012-11-16 19:41:26 +00002552 Y = B;
2553 Z = C;
2554 } else if (B == C) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002555 // A + C == C + D -> A == D
Duncan Sandsc41076c2012-11-16 19:41:26 +00002556 Y = A;
2557 Z = D;
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002558 } else {
2559 assert(B == D);
2560 // A + D == C + D -> A == C
Duncan Sandsc41076c2012-11-16 19:41:26 +00002561 Y = A;
2562 Z = C;
2563 }
Duncan Sandsb8cee002012-03-13 11:42:19 +00002564 if (Value *V = SimplifyICmpInst(Pred, Y, Z, Q, MaxRecurse-1))
Duncan Sandsd114ab32011-02-13 17:15:40 +00002565 return V;
2566 }
2567 }
2568
David Majnemerbd9ce4e2014-11-25 02:55:48 +00002569 // icmp pred (or X, Y), X
2570 if (LBO && match(LBO, m_CombineOr(m_Or(m_Value(), m_Specific(RHS)),
2571 m_Or(m_Specific(RHS), m_Value())))) {
2572 if (Pred == ICmpInst::ICMP_ULT)
2573 return getFalse(ITy);
2574 if (Pred == ICmpInst::ICMP_UGE)
2575 return getTrue(ITy);
2576 }
2577 // icmp pred X, (or X, Y)
2578 if (RBO && match(RBO, m_CombineOr(m_Or(m_Value(), m_Specific(LHS)),
2579 m_Or(m_Specific(LHS), m_Value())))) {
2580 if (Pred == ICmpInst::ICMP_ULE)
2581 return getTrue(ITy);
2582 if (Pred == ICmpInst::ICMP_UGT)
2583 return getFalse(ITy);
2584 }
2585
2586 // icmp pred (and X, Y), X
2587 if (LBO && match(LBO, m_CombineOr(m_And(m_Value(), m_Specific(RHS)),
2588 m_And(m_Specific(RHS), m_Value())))) {
2589 if (Pred == ICmpInst::ICMP_UGT)
2590 return getFalse(ITy);
2591 if (Pred == ICmpInst::ICMP_ULE)
2592 return getTrue(ITy);
2593 }
2594 // icmp pred X, (and X, Y)
2595 if (RBO && match(RBO, m_CombineOr(m_And(m_Value(), m_Specific(LHS)),
2596 m_And(m_Specific(LHS), m_Value())))) {
2597 if (Pred == ICmpInst::ICMP_UGE)
2598 return getTrue(ITy);
2599 if (Pred == ICmpInst::ICMP_ULT)
2600 return getFalse(ITy);
2601 }
2602
David Majnemer2d6c0232014-05-14 20:16:28 +00002603 // 0 - (zext X) pred C
2604 if (!CmpInst::isUnsigned(Pred) && match(LHS, m_Neg(m_ZExt(m_Value())))) {
2605 if (ConstantInt *RHSC = dyn_cast<ConstantInt>(RHS)) {
2606 if (RHSC->getValue().isStrictlyPositive()) {
2607 if (Pred == ICmpInst::ICMP_SLT)
2608 return ConstantInt::getTrue(RHSC->getContext());
2609 if (Pred == ICmpInst::ICMP_SGE)
2610 return ConstantInt::getFalse(RHSC->getContext());
2611 if (Pred == ICmpInst::ICMP_EQ)
2612 return ConstantInt::getFalse(RHSC->getContext());
2613 if (Pred == ICmpInst::ICMP_NE)
2614 return ConstantInt::getTrue(RHSC->getContext());
2615 }
2616 if (RHSC->getValue().isNonNegative()) {
2617 if (Pred == ICmpInst::ICMP_SLE)
2618 return ConstantInt::getTrue(RHSC->getContext());
2619 if (Pred == ICmpInst::ICMP_SGT)
2620 return ConstantInt::getFalse(RHSC->getContext());
2621 }
2622 }
2623 }
2624
Nick Lewycky35aeea92013-07-12 23:42:57 +00002625 // icmp pred (urem X, Y), Y
Nick Lewycky980104d2011-03-09 06:26:03 +00002626 if (LBO && match(LBO, m_URem(m_Value(), m_Specific(RHS)))) {
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002627 bool KnownNonNegative, KnownNegative;
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002628 switch (Pred) {
2629 default:
2630 break;
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002631 case ICmpInst::ICMP_SGT:
2632 case ICmpInst::ICMP_SGE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002633 ComputeSignBit(RHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC,
2634 Q.CxtI, Q.DT);
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002635 if (!KnownNonNegative)
2636 break;
2637 // fall-through
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002638 case ICmpInst::ICMP_EQ:
2639 case ICmpInst::ICMP_UGT:
2640 case ICmpInst::ICMP_UGE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002641 return getFalse(ITy);
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002642 case ICmpInst::ICMP_SLT:
2643 case ICmpInst::ICMP_SLE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002644 ComputeSignBit(RHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC,
2645 Q.CxtI, Q.DT);
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002646 if (!KnownNonNegative)
2647 break;
2648 // fall-through
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002649 case ICmpInst::ICMP_NE:
2650 case ICmpInst::ICMP_ULT:
2651 case ICmpInst::ICMP_ULE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002652 return getTrue(ITy);
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002653 }
2654 }
Nick Lewycky35aeea92013-07-12 23:42:57 +00002655
2656 // icmp pred X, (urem Y, X)
Nick Lewycky980104d2011-03-09 06:26:03 +00002657 if (RBO && match(RBO, m_URem(m_Value(), m_Specific(LHS)))) {
2658 bool KnownNonNegative, KnownNegative;
2659 switch (Pred) {
2660 default:
2661 break;
2662 case ICmpInst::ICMP_SGT:
2663 case ICmpInst::ICMP_SGE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002664 ComputeSignBit(LHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC,
2665 Q.CxtI, Q.DT);
Nick Lewycky980104d2011-03-09 06:26:03 +00002666 if (!KnownNonNegative)
2667 break;
2668 // fall-through
Nick Lewycky774647d2011-03-09 08:20:06 +00002669 case ICmpInst::ICMP_NE:
Nick Lewycky980104d2011-03-09 06:26:03 +00002670 case ICmpInst::ICMP_UGT:
2671 case ICmpInst::ICMP_UGE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002672 return getTrue(ITy);
Nick Lewycky980104d2011-03-09 06:26:03 +00002673 case ICmpInst::ICMP_SLT:
2674 case ICmpInst::ICMP_SLE:
Chandler Carruth66b31302015-01-04 12:03:27 +00002675 ComputeSignBit(LHS, KnownNonNegative, KnownNegative, Q.DL, 0, Q.AC,
2676 Q.CxtI, Q.DT);
Nick Lewycky980104d2011-03-09 06:26:03 +00002677 if (!KnownNonNegative)
2678 break;
2679 // fall-through
Nick Lewycky774647d2011-03-09 08:20:06 +00002680 case ICmpInst::ICMP_EQ:
Nick Lewycky980104d2011-03-09 06:26:03 +00002681 case ICmpInst::ICMP_ULT:
2682 case ICmpInst::ICMP_ULE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002683 return getFalse(ITy);
Nick Lewycky980104d2011-03-09 06:26:03 +00002684 }
2685 }
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002686
Duncan Sands92af0a82011-10-28 18:17:44 +00002687 // x udiv y <=u x.
2688 if (LBO && match(LBO, m_UDiv(m_Specific(RHS), m_Value()))) {
2689 // icmp pred (X /u Y), X
2690 if (Pred == ICmpInst::ICMP_UGT)
2691 return getFalse(ITy);
2692 if (Pred == ICmpInst::ICMP_ULE)
2693 return getTrue(ITy);
2694 }
2695
David Majnemer76d06bc2014-08-28 03:34:28 +00002696 // handle:
2697 // CI2 << X == CI
2698 // CI2 << X != CI
2699 //
2700 // where CI2 is a power of 2 and CI isn't
2701 if (auto *CI = dyn_cast<ConstantInt>(RHS)) {
2702 const APInt *CI2Val, *CIVal = &CI->getValue();
2703 if (LBO && match(LBO, m_Shl(m_APInt(CI2Val), m_Value())) &&
2704 CI2Val->isPowerOf2()) {
2705 if (!CIVal->isPowerOf2()) {
2706 // CI2 << X can equal zero in some circumstances,
2707 // this simplification is unsafe if CI is zero.
2708 //
2709 // We know it is safe if:
2710 // - The shift is nsw, we can't shift out the one bit.
2711 // - The shift is nuw, we can't shift out the one bit.
2712 // - CI2 is one
2713 // - CI isn't zero
2714 if (LBO->hasNoSignedWrap() || LBO->hasNoUnsignedWrap() ||
2715 *CI2Val == 1 || !CI->isZero()) {
2716 if (Pred == ICmpInst::ICMP_EQ)
2717 return ConstantInt::getFalse(RHS->getContext());
2718 if (Pred == ICmpInst::ICMP_NE)
2719 return ConstantInt::getTrue(RHS->getContext());
2720 }
2721 }
2722 if (CIVal->isSignBit() && *CI2Val == 1) {
2723 if (Pred == ICmpInst::ICMP_UGT)
2724 return ConstantInt::getFalse(RHS->getContext());
2725 if (Pred == ICmpInst::ICMP_ULE)
2726 return ConstantInt::getTrue(RHS->getContext());
2727 }
2728 }
2729 }
2730
Nick Lewycky9719a712011-03-05 05:19:11 +00002731 if (MaxRecurse && LBO && RBO && LBO->getOpcode() == RBO->getOpcode() &&
2732 LBO->getOperand(1) == RBO->getOperand(1)) {
2733 switch (LBO->getOpcode()) {
2734 default: break;
2735 case Instruction::UDiv:
2736 case Instruction::LShr:
2737 if (ICmpInst::isSigned(Pred))
2738 break;
2739 // fall-through
2740 case Instruction::SDiv:
2741 case Instruction::AShr:
Eli Friedman8a20e662011-05-05 21:59:18 +00002742 if (!LBO->isExact() || !RBO->isExact())
Nick Lewycky9719a712011-03-05 05:19:11 +00002743 break;
2744 if (Value *V = SimplifyICmpInst(Pred, LBO->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002745 RBO->getOperand(0), Q, MaxRecurse-1))
Nick Lewycky9719a712011-03-05 05:19:11 +00002746 return V;
2747 break;
2748 case Instruction::Shl: {
Duncan Sands020c1942011-08-04 10:02:21 +00002749 bool NUW = LBO->hasNoUnsignedWrap() && RBO->hasNoUnsignedWrap();
Nick Lewycky9719a712011-03-05 05:19:11 +00002750 bool NSW = LBO->hasNoSignedWrap() && RBO->hasNoSignedWrap();
2751 if (!NUW && !NSW)
2752 break;
2753 if (!NSW && ICmpInst::isSigned(Pred))
2754 break;
2755 if (Value *V = SimplifyICmpInst(Pred, LBO->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002756 RBO->getOperand(0), Q, MaxRecurse-1))
Nick Lewycky9719a712011-03-05 05:19:11 +00002757 return V;
2758 break;
2759 }
2760 }
2761 }
2762
Duncan Sands0a9c1242011-05-03 19:53:10 +00002763 // Simplify comparisons involving max/min.
2764 Value *A, *B;
2765 CmpInst::Predicate P = CmpInst::BAD_ICMP_PREDICATE;
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002766 CmpInst::Predicate EqP; // Chosen so that "A == max/min(A,B)" iff "A EqP B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002767
Duncan Sandsa2287852011-05-04 16:05:05 +00002768 // Signed variants on "max(a,b)>=a -> true".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002769 if (match(LHS, m_SMax(m_Value(A), m_Value(B))) && (A == RHS || B == RHS)) {
2770 if (A != RHS) std::swap(A, B); // smax(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002771 EqP = CmpInst::ICMP_SGE; // "A == smax(A, B)" iff "A sge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002772 // We analyze this as smax(A, B) pred A.
2773 P = Pred;
2774 } else if (match(RHS, m_SMax(m_Value(A), m_Value(B))) &&
2775 (A == LHS || B == LHS)) {
2776 if (A != LHS) std::swap(A, B); // A pred smax(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002777 EqP = CmpInst::ICMP_SGE; // "A == smax(A, B)" iff "A sge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002778 // We analyze this as smax(A, B) swapped-pred A.
2779 P = CmpInst::getSwappedPredicate(Pred);
2780 } else if (match(LHS, m_SMin(m_Value(A), m_Value(B))) &&
2781 (A == RHS || B == RHS)) {
2782 if (A != RHS) std::swap(A, B); // smin(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002783 EqP = CmpInst::ICMP_SLE; // "A == smin(A, B)" iff "A sle B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002784 // We analyze this as smax(-A, -B) swapped-pred -A.
2785 // Note that we do not need to actually form -A or -B thanks to EqP.
2786 P = CmpInst::getSwappedPredicate(Pred);
2787 } else if (match(RHS, m_SMin(m_Value(A), m_Value(B))) &&
2788 (A == LHS || B == LHS)) {
2789 if (A != LHS) std::swap(A, B); // A pred smin(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002790 EqP = CmpInst::ICMP_SLE; // "A == smin(A, B)" iff "A sle B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002791 // We analyze this as smax(-A, -B) pred -A.
2792 // Note that we do not need to actually form -A or -B thanks to EqP.
2793 P = Pred;
2794 }
2795 if (P != CmpInst::BAD_ICMP_PREDICATE) {
2796 // Cases correspond to "max(A, B) p A".
2797 switch (P) {
2798 default:
2799 break;
2800 case CmpInst::ICMP_EQ:
2801 case CmpInst::ICMP_SLE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002802 // Equivalent to "A EqP B". This may be the same as the condition tested
2803 // in the max/min; if so, we can just return that.
2804 if (Value *V = ExtractEquivalentCondition(LHS, EqP, A, B))
2805 return V;
2806 if (Value *V = ExtractEquivalentCondition(RHS, EqP, A, B))
2807 return V;
2808 // Otherwise, see if "A EqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002809 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002810 if (Value *V = SimplifyICmpInst(EqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002811 return V;
2812 break;
2813 case CmpInst::ICMP_NE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002814 case CmpInst::ICMP_SGT: {
2815 CmpInst::Predicate InvEqP = CmpInst::getInversePredicate(EqP);
2816 // Equivalent to "A InvEqP B". This may be the same as the condition
2817 // tested in the max/min; if so, we can just return that.
2818 if (Value *V = ExtractEquivalentCondition(LHS, InvEqP, A, B))
2819 return V;
2820 if (Value *V = ExtractEquivalentCondition(RHS, InvEqP, A, B))
2821 return V;
2822 // Otherwise, see if "A InvEqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002823 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002824 if (Value *V = SimplifyICmpInst(InvEqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002825 return V;
2826 break;
Duncan Sandsaf327282011-05-07 16:56:49 +00002827 }
Duncan Sands0a9c1242011-05-03 19:53:10 +00002828 case CmpInst::ICMP_SGE:
2829 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002830 return getTrue(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002831 case CmpInst::ICMP_SLT:
2832 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002833 return getFalse(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002834 }
2835 }
2836
Duncan Sandsa2287852011-05-04 16:05:05 +00002837 // Unsigned variants on "max(a,b)>=a -> true".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002838 P = CmpInst::BAD_ICMP_PREDICATE;
2839 if (match(LHS, m_UMax(m_Value(A), m_Value(B))) && (A == RHS || B == RHS)) {
2840 if (A != RHS) std::swap(A, B); // umax(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002841 EqP = CmpInst::ICMP_UGE; // "A == umax(A, B)" iff "A uge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002842 // We analyze this as umax(A, B) pred A.
2843 P = Pred;
2844 } else if (match(RHS, m_UMax(m_Value(A), m_Value(B))) &&
2845 (A == LHS || B == LHS)) {
2846 if (A != LHS) std::swap(A, B); // A pred umax(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002847 EqP = CmpInst::ICMP_UGE; // "A == umax(A, B)" iff "A uge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002848 // We analyze this as umax(A, B) swapped-pred A.
2849 P = CmpInst::getSwappedPredicate(Pred);
2850 } else if (match(LHS, m_UMin(m_Value(A), m_Value(B))) &&
2851 (A == RHS || B == RHS)) {
2852 if (A != RHS) std::swap(A, B); // umin(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002853 EqP = CmpInst::ICMP_ULE; // "A == umin(A, B)" iff "A ule B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002854 // We analyze this as umax(-A, -B) swapped-pred -A.
2855 // Note that we do not need to actually form -A or -B thanks to EqP.
2856 P = CmpInst::getSwappedPredicate(Pred);
2857 } else if (match(RHS, m_UMin(m_Value(A), m_Value(B))) &&
2858 (A == LHS || B == LHS)) {
2859 if (A != LHS) std::swap(A, B); // A pred umin(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002860 EqP = CmpInst::ICMP_ULE; // "A == umin(A, B)" iff "A ule B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002861 // We analyze this as umax(-A, -B) pred -A.
2862 // Note that we do not need to actually form -A or -B thanks to EqP.
2863 P = Pred;
2864 }
2865 if (P != CmpInst::BAD_ICMP_PREDICATE) {
2866 // Cases correspond to "max(A, B) p A".
2867 switch (P) {
2868 default:
2869 break;
2870 case CmpInst::ICMP_EQ:
2871 case CmpInst::ICMP_ULE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002872 // Equivalent to "A EqP B". This may be the same as the condition tested
2873 // in the max/min; if so, we can just return that.
2874 if (Value *V = ExtractEquivalentCondition(LHS, EqP, A, B))
2875 return V;
2876 if (Value *V = ExtractEquivalentCondition(RHS, EqP, A, B))
2877 return V;
2878 // Otherwise, see if "A EqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002879 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002880 if (Value *V = SimplifyICmpInst(EqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002881 return V;
2882 break;
2883 case CmpInst::ICMP_NE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002884 case CmpInst::ICMP_UGT: {
2885 CmpInst::Predicate InvEqP = CmpInst::getInversePredicate(EqP);
2886 // Equivalent to "A InvEqP B". This may be the same as the condition
2887 // tested in the max/min; if so, we can just return that.
2888 if (Value *V = ExtractEquivalentCondition(LHS, InvEqP, A, B))
2889 return V;
2890 if (Value *V = ExtractEquivalentCondition(RHS, InvEqP, A, B))
2891 return V;
2892 // Otherwise, see if "A InvEqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002893 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002894 if (Value *V = SimplifyICmpInst(InvEqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002895 return V;
2896 break;
Duncan Sandsaf327282011-05-07 16:56:49 +00002897 }
Duncan Sands0a9c1242011-05-03 19:53:10 +00002898 case CmpInst::ICMP_UGE:
2899 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002900 return getTrue(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002901 case CmpInst::ICMP_ULT:
2902 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002903 return getFalse(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002904 }
2905 }
2906
Duncan Sandsa2287852011-05-04 16:05:05 +00002907 // Variants on "max(x,y) >= min(x,z)".
2908 Value *C, *D;
2909 if (match(LHS, m_SMax(m_Value(A), m_Value(B))) &&
2910 match(RHS, m_SMin(m_Value(C), m_Value(D))) &&
2911 (A == C || A == D || B == C || B == D)) {
2912 // max(x, ?) pred min(x, ?).
2913 if (Pred == CmpInst::ICMP_SGE)
2914 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002915 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002916 if (Pred == CmpInst::ICMP_SLT)
2917 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002918 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002919 } else if (match(LHS, m_SMin(m_Value(A), m_Value(B))) &&
2920 match(RHS, m_SMax(m_Value(C), m_Value(D))) &&
2921 (A == C || A == D || B == C || B == D)) {
2922 // min(x, ?) pred max(x, ?).
2923 if (Pred == CmpInst::ICMP_SLE)
2924 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002925 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002926 if (Pred == CmpInst::ICMP_SGT)
2927 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002928 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002929 } else if (match(LHS, m_UMax(m_Value(A), m_Value(B))) &&
2930 match(RHS, m_UMin(m_Value(C), m_Value(D))) &&
2931 (A == C || A == D || B == C || B == D)) {
2932 // max(x, ?) pred min(x, ?).
2933 if (Pred == CmpInst::ICMP_UGE)
2934 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002935 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002936 if (Pred == CmpInst::ICMP_ULT)
2937 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002938 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002939 } else if (match(LHS, m_UMin(m_Value(A), m_Value(B))) &&
2940 match(RHS, m_UMax(m_Value(C), m_Value(D))) &&
2941 (A == C || A == D || B == C || B == D)) {
2942 // min(x, ?) pred max(x, ?).
2943 if (Pred == CmpInst::ICMP_ULE)
2944 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002945 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002946 if (Pred == CmpInst::ICMP_UGT)
2947 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002948 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002949 }
2950
Chandler Carruth8059c842012-03-25 21:28:14 +00002951 // Simplify comparisons of related pointers using a powerful, recursive
2952 // GEP-walk when we have target data available..
Dan Gohman18c77a12013-01-31 02:50:36 +00002953 if (LHS->getType()->isPointerTy())
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002954 if (Constant *C = computePointerICmp(Q.DL, Q.TLI, Pred, LHS, RHS))
Chandler Carruth8059c842012-03-25 21:28:14 +00002955 return C;
2956
Nick Lewycky3db143e2012-02-26 02:09:49 +00002957 if (GetElementPtrInst *GLHS = dyn_cast<GetElementPtrInst>(LHS)) {
2958 if (GEPOperator *GRHS = dyn_cast<GEPOperator>(RHS)) {
2959 if (GLHS->getPointerOperand() == GRHS->getPointerOperand() &&
2960 GLHS->hasAllConstantIndices() && GRHS->hasAllConstantIndices() &&
2961 (ICmpInst::isEquality(Pred) ||
2962 (GLHS->isInBounds() && GRHS->isInBounds() &&
2963 Pred == ICmpInst::getSignedPredicate(Pred)))) {
2964 // The bases are equal and the indices are constant. Build a constant
2965 // expression GEP with the same indices and a null base pointer to see
2966 // what constant folding can make out of it.
2967 Constant *Null = Constant::getNullValue(GLHS->getPointerOperandType());
2968 SmallVector<Value *, 4> IndicesLHS(GLHS->idx_begin(), GLHS->idx_end());
2969 Constant *NewLHS = ConstantExpr::getGetElementPtr(Null, IndicesLHS);
2970
2971 SmallVector<Value *, 4> IndicesRHS(GRHS->idx_begin(), GRHS->idx_end());
2972 Constant *NewRHS = ConstantExpr::getGetElementPtr(Null, IndicesRHS);
2973 return ConstantExpr::getICmp(Pred, NewLHS, NewRHS);
2974 }
2975 }
2976 }
2977
David Majnemer5854e9f2014-11-16 02:20:08 +00002978 // If a bit is known to be zero for A and known to be one for B,
2979 // then A and B cannot be equal.
2980 if (ICmpInst::isEquality(Pred)) {
2981 if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
2982 uint32_t BitWidth = CI->getBitWidth();
2983 APInt LHSKnownZero(BitWidth, 0);
2984 APInt LHSKnownOne(BitWidth, 0);
Chandler Carruth66b31302015-01-04 12:03:27 +00002985 computeKnownBits(LHS, LHSKnownZero, LHSKnownOne, Q.DL, /*Depth=*/0, Q.AC,
David Majnemer5854e9f2014-11-16 02:20:08 +00002986 Q.CxtI, Q.DT);
2987 const APInt &RHSVal = CI->getValue();
2988 if (((LHSKnownZero & RHSVal) != 0) || ((LHSKnownOne & ~RHSVal) != 0))
2989 return Pred == ICmpInst::ICMP_EQ
2990 ? ConstantInt::getFalse(CI->getContext())
2991 : ConstantInt::getTrue(CI->getContext());
2992 }
2993 }
2994
Duncan Sandsf532d312010-11-07 16:12:23 +00002995 // If the comparison is with the result of a select instruction, check whether
2996 // comparing with either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00002997 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00002998 if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00002999 return V;
3000
3001 // If the comparison is with the result of a phi instruction, check whether
3002 // doing the compare with each incoming phi value yields a common result.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003003 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003004 if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsfc5ad3f02010-11-09 17:25:51 +00003005 return V;
Duncan Sandsf532d312010-11-07 16:12:23 +00003006
Craig Topper9f008862014-04-15 04:59:12 +00003007 return nullptr;
Chris Lattner084a1b52009-11-09 22:57:59 +00003008}
3009
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003010Value *llvm::SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003011 const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00003012 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003013 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003014 Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003015 return ::SimplifyICmpInst(Predicate, LHS, RHS, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003016 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003017}
3018
Chris Lattnerc1f19072009-11-09 23:28:39 +00003019/// SimplifyFCmpInst - Given operands for an FCmpInst, see if we can
3020/// fold the result. If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003021static Value *SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003022 const Query &Q, unsigned MaxRecurse) {
Chris Lattnerc1f19072009-11-09 23:28:39 +00003023 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate;
3024 assert(CmpInst::isFPPredicate(Pred) && "Not an FP compare!");
3025
Chris Lattnera71e9d62009-11-10 00:55:12 +00003026 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
Chris Lattnerc1f19072009-11-09 23:28:39 +00003027 if (Constant *CRHS = dyn_cast<Constant>(RHS))
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003028 return ConstantFoldCompareInstOperands(Pred, CLHS, CRHS, Q.DL, Q.TLI);
Duncan Sands7e800d62010-11-14 11:23:23 +00003029
Chris Lattnera71e9d62009-11-10 00:55:12 +00003030 // If we have a constant, make sure it is on the RHS.
3031 std::swap(LHS, RHS);
3032 Pred = CmpInst::getSwappedPredicate(Pred);
3033 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003034
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003035 // Fold trivial predicates.
3036 if (Pred == FCmpInst::FCMP_FALSE)
3037 return ConstantInt::get(GetCompareTy(LHS), 0);
3038 if (Pred == FCmpInst::FCMP_TRUE)
3039 return ConstantInt::get(GetCompareTy(LHS), 1);
3040
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003041 if (isa<UndefValue>(RHS)) // fcmp pred X, undef -> undef
3042 return UndefValue::get(GetCompareTy(LHS));
3043
3044 // fcmp x,x -> true/false. Not all compares are foldable.
Duncan Sands772749a2011-01-01 20:08:02 +00003045 if (LHS == RHS) {
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003046 if (CmpInst::isTrueWhenEqual(Pred))
3047 return ConstantInt::get(GetCompareTy(LHS), 1);
3048 if (CmpInst::isFalseWhenEqual(Pred))
3049 return ConstantInt::get(GetCompareTy(LHS), 0);
3050 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003051
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003052 // Handle fcmp with constant RHS
3053 if (Constant *RHSC = dyn_cast<Constant>(RHS)) {
3054 // If the constant is a nan, see if we can fold the comparison based on it.
3055 if (ConstantFP *CFP = dyn_cast<ConstantFP>(RHSC)) {
3056 if (CFP->getValueAPF().isNaN()) {
3057 if (FCmpInst::isOrdered(Pred)) // True "if ordered and foo"
3058 return ConstantInt::getFalse(CFP->getContext());
3059 assert(FCmpInst::isUnordered(Pred) &&
3060 "Comparison must be either ordered or unordered!");
3061 // True if unordered.
3062 return ConstantInt::getTrue(CFP->getContext());
3063 }
Dan Gohman754e4a92010-02-22 04:06:03 +00003064 // Check whether the constant is an infinity.
3065 if (CFP->getValueAPF().isInfinity()) {
3066 if (CFP->getValueAPF().isNegative()) {
3067 switch (Pred) {
3068 case FCmpInst::FCMP_OLT:
3069 // No value is ordered and less than negative infinity.
3070 return ConstantInt::getFalse(CFP->getContext());
3071 case FCmpInst::FCMP_UGE:
3072 // All values are unordered with or at least negative infinity.
3073 return ConstantInt::getTrue(CFP->getContext());
3074 default:
3075 break;
3076 }
3077 } else {
3078 switch (Pred) {
3079 case FCmpInst::FCMP_OGT:
3080 // No value is ordered and greater than infinity.
3081 return ConstantInt::getFalse(CFP->getContext());
3082 case FCmpInst::FCMP_ULE:
3083 // All values are unordered with and at most infinity.
3084 return ConstantInt::getTrue(CFP->getContext());
3085 default:
3086 break;
3087 }
3088 }
3089 }
Chris Lattnerccfdceb2009-11-09 23:55:12 +00003090 }
3091 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003092
Duncan Sandsa620bd12010-11-07 16:46:25 +00003093 // If the comparison is with the result of a select instruction, check whether
3094 // comparing with either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003095 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003096 if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003097 return V;
3098
3099 // If the comparison is with the result of a phi instruction, check whether
3100 // doing the compare with each incoming phi value yields a common result.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003101 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003102 if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsfc5ad3f02010-11-09 17:25:51 +00003103 return V;
Duncan Sandsa620bd12010-11-07 16:46:25 +00003104
Craig Topper9f008862014-04-15 04:59:12 +00003105 return nullptr;
Chris Lattnerc1f19072009-11-09 23:28:39 +00003106}
3107
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003108Value *llvm::SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003109 const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00003110 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003111 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003112 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003113 return ::SimplifyFCmpInst(Predicate, LHS, RHS, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003114 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003115}
3116
Chris Lattnerc707fa92010-04-20 05:32:14 +00003117/// SimplifySelectInst - Given operands for a SelectInst, see if we can fold
3118/// the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00003119static Value *SimplifySelectInst(Value *CondVal, Value *TrueVal,
3120 Value *FalseVal, const Query &Q,
3121 unsigned MaxRecurse) {
Chris Lattnerc707fa92010-04-20 05:32:14 +00003122 // select true, X, Y -> X
3123 // select false, X, Y -> Y
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00003124 if (Constant *CB = dyn_cast<Constant>(CondVal)) {
3125 if (CB->isAllOnesValue())
3126 return TrueVal;
3127 if (CB->isNullValue())
3128 return FalseVal;
3129 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003130
Chris Lattnerc707fa92010-04-20 05:32:14 +00003131 // select C, X, X -> X
Duncan Sands772749a2011-01-01 20:08:02 +00003132 if (TrueVal == FalseVal)
Chris Lattnerc707fa92010-04-20 05:32:14 +00003133 return TrueVal;
Duncan Sands7e800d62010-11-14 11:23:23 +00003134
Chris Lattnerc707fa92010-04-20 05:32:14 +00003135 if (isa<UndefValue>(CondVal)) { // select undef, X, Y -> X or Y
3136 if (isa<Constant>(TrueVal))
3137 return TrueVal;
3138 return FalseVal;
3139 }
Dan Gohman54664ed2011-07-01 01:03:43 +00003140 if (isa<UndefValue>(TrueVal)) // select C, undef, X -> X
3141 return FalseVal;
3142 if (isa<UndefValue>(FalseVal)) // select C, X, undef -> X
3143 return TrueVal;
Duncan Sands7e800d62010-11-14 11:23:23 +00003144
David Majnemer147f8582014-12-20 04:45:33 +00003145 const auto *ICI = dyn_cast<ICmpInst>(CondVal);
3146 unsigned BitWidth = TrueVal->getType()->getScalarSizeInBits();
3147 if (ICI && BitWidth) {
David Majnemer7bd71442014-12-20 03:29:59 +00003148 ICmpInst::Predicate Pred = ICI->getPredicate();
David Majnemer147f8582014-12-20 04:45:33 +00003149 APInt MinSignedValue = APInt::getSignBit(BitWidth);
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003150 Value *X;
3151 const APInt *Y;
David Majnemer7bd71442014-12-20 03:29:59 +00003152 bool TrueWhenUnset;
David Majnemer147f8582014-12-20 04:45:33 +00003153 bool IsBitTest = false;
David Majnemer0b6a0b02014-12-20 03:04:38 +00003154 if (ICmpInst::isEquality(Pred) &&
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003155 match(ICI->getOperand(0), m_And(m_Value(X), m_APInt(Y))) &&
3156 match(ICI->getOperand(1), m_Zero())) {
David Majnemer7bd71442014-12-20 03:29:59 +00003157 IsBitTest = true;
3158 TrueWhenUnset = Pred == ICmpInst::ICMP_EQ;
3159 } else if (Pred == ICmpInst::ICMP_SLT &&
3160 match(ICI->getOperand(1), m_Zero())) {
3161 X = ICI->getOperand(0);
3162 Y = &MinSignedValue;
3163 IsBitTest = true;
3164 TrueWhenUnset = false;
3165 } else if (Pred == ICmpInst::ICMP_SGT &&
3166 match(ICI->getOperand(1), m_AllOnes())) {
3167 X = ICI->getOperand(0);
3168 Y = &MinSignedValue;
3169 IsBitTest = true;
3170 TrueWhenUnset = true;
3171 }
3172 if (IsBitTest) {
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003173 const APInt *C;
3174 // (X & Y) == 0 ? X & ~Y : X --> X
3175 // (X & Y) != 0 ? X & ~Y : X --> X & ~Y
3176 if (FalseVal == X && match(TrueVal, m_And(m_Specific(X), m_APInt(C))) &&
3177 *Y == ~*C)
David Majnemer7bd71442014-12-20 03:29:59 +00003178 return TrueWhenUnset ? FalseVal : TrueVal;
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003179 // (X & Y) == 0 ? X : X & ~Y --> X & ~Y
3180 // (X & Y) != 0 ? X : X & ~Y --> X
3181 if (TrueVal == X && match(FalseVal, m_And(m_Specific(X), m_APInt(C))) &&
3182 *Y == ~*C)
David Majnemer7bd71442014-12-20 03:29:59 +00003183 return TrueWhenUnset ? FalseVal : TrueVal;
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003184
3185 if (Y->isPowerOf2()) {
3186 // (X & Y) == 0 ? X | Y : X --> X | Y
3187 // (X & Y) != 0 ? X | Y : X --> X
3188 if (FalseVal == X && match(TrueVal, m_Or(m_Specific(X), m_APInt(C))) &&
3189 *Y == *C)
David Majnemer7bd71442014-12-20 03:29:59 +00003190 return TrueWhenUnset ? TrueVal : FalseVal;
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003191 // (X & Y) == 0 ? X : X | Y --> X
3192 // (X & Y) != 0 ? X : X | Y --> X | Y
3193 if (TrueVal == X && match(FalseVal, m_Or(m_Specific(X), m_APInt(C))) &&
3194 *Y == *C)
David Majnemer7bd71442014-12-20 03:29:59 +00003195 return TrueWhenUnset ? TrueVal : FalseVal;
David Majnemerc6a5e1d2014-11-27 06:32:46 +00003196 }
3197 }
3198 }
3199
Craig Topper9f008862014-04-15 04:59:12 +00003200 return nullptr;
Chris Lattnerc707fa92010-04-20 05:32:14 +00003201}
3202
Duncan Sandsb8cee002012-03-13 11:42:19 +00003203Value *llvm::SimplifySelectInst(Value *Cond, Value *TrueVal, Value *FalseVal,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003204 const DataLayout *DL,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003205 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003206 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003207 const Instruction *CxtI) {
3208 return ::SimplifySelectInst(Cond, TrueVal, FalseVal,
Chandler Carruth66b31302015-01-04 12:03:27 +00003209 Query(DL, TLI, DT, AC, CxtI), RecursionLimit);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003210}
3211
Chris Lattner8574aba2009-11-27 00:29:05 +00003212/// SimplifyGEPInst - Given operands for an GetElementPtrInst, see if we can
3213/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00003214static Value *SimplifyGEPInst(ArrayRef<Value *> Ops, const Query &Q, unsigned) {
Duncan Sands8a0f4862010-11-22 13:42:49 +00003215 // The type of the GEP pointer operand.
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00003216 PointerType *PtrTy = cast<PointerType>(Ops[0]->getType()->getScalarType());
Nico Weber48c82402014-08-27 20:06:19 +00003217 unsigned AS = PtrTy->getAddressSpace();
Duncan Sands8a0f4862010-11-22 13:42:49 +00003218
Chris Lattner8574aba2009-11-27 00:29:05 +00003219 // getelementptr P -> P.
Jay Foadb992a632011-07-19 15:07:52 +00003220 if (Ops.size() == 1)
Chris Lattner8574aba2009-11-27 00:29:05 +00003221 return Ops[0];
3222
Nico Weber48c82402014-08-27 20:06:19 +00003223 // Compute the (pointer) type returned by the GEP instruction.
3224 Type *LastType = GetElementPtrInst::getIndexedType(PtrTy, Ops.slice(1));
3225 Type *GEPTy = PointerType::get(LastType, AS);
3226 if (VectorType *VT = dyn_cast<VectorType>(Ops[0]->getType()))
3227 GEPTy = VectorType::get(GEPTy, VT->getNumElements());
3228
3229 if (isa<UndefValue>(Ops[0]))
Duncan Sands8a0f4862010-11-22 13:42:49 +00003230 return UndefValue::get(GEPTy);
Chris Lattner8574aba2009-11-27 00:29:05 +00003231
Jay Foadb992a632011-07-19 15:07:52 +00003232 if (Ops.size() == 2) {
Duncan Sandscf4bceb2010-11-21 13:53:09 +00003233 // getelementptr P, 0 -> P.
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00003234 if (match(Ops[1], m_Zero()))
3235 return Ops[0];
Nico Weber48c82402014-08-27 20:06:19 +00003236
3237 Type *Ty = PtrTy->getElementType();
3238 if (Q.DL && Ty->isSized()) {
3239 Value *P;
3240 uint64_t C;
3241 uint64_t TyAllocSize = Q.DL->getTypeAllocSize(Ty);
3242 // getelementptr P, N -> P if P points to a type of zero size.
3243 if (TyAllocSize == 0)
Duncan Sandscf4bceb2010-11-21 13:53:09 +00003244 return Ops[0];
Nico Weber48c82402014-08-27 20:06:19 +00003245
3246 // The following transforms are only safe if the ptrtoint cast
3247 // doesn't truncate the pointers.
3248 if (Ops[1]->getType()->getScalarSizeInBits() ==
3249 Q.DL->getPointerSizeInBits(AS)) {
3250 auto PtrToIntOrZero = [GEPTy](Value *P) -> Value * {
3251 if (match(P, m_Zero()))
3252 return Constant::getNullValue(GEPTy);
3253 Value *Temp;
3254 if (match(P, m_PtrToInt(m_Value(Temp))))
David Majnemer11ca2972014-08-27 20:08:34 +00003255 if (Temp->getType() == GEPTy)
3256 return Temp;
Nico Weber48c82402014-08-27 20:06:19 +00003257 return nullptr;
3258 };
3259
3260 // getelementptr V, (sub P, V) -> P if P points to a type of size 1.
3261 if (TyAllocSize == 1 &&
3262 match(Ops[1], m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0])))))
3263 if (Value *R = PtrToIntOrZero(P))
3264 return R;
3265
3266 // getelementptr V, (ashr (sub P, V), C) -> Q
3267 // if P points to a type of size 1 << C.
3268 if (match(Ops[1],
3269 m_AShr(m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0]))),
3270 m_ConstantInt(C))) &&
3271 TyAllocSize == 1ULL << C)
3272 if (Value *R = PtrToIntOrZero(P))
3273 return R;
3274
3275 // getelementptr V, (sdiv (sub P, V), C) -> Q
3276 // if P points to a type of size C.
3277 if (match(Ops[1],
3278 m_SDiv(m_Sub(m_Value(P), m_PtrToInt(m_Specific(Ops[0]))),
3279 m_SpecificInt(TyAllocSize))))
3280 if (Value *R = PtrToIntOrZero(P))
3281 return R;
3282 }
Duncan Sandscf4bceb2010-11-21 13:53:09 +00003283 }
3284 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003285
Chris Lattner8574aba2009-11-27 00:29:05 +00003286 // Check to see if this is constant foldable.
Jay Foadb992a632011-07-19 15:07:52 +00003287 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
Chris Lattner8574aba2009-11-27 00:29:05 +00003288 if (!isa<Constant>(Ops[i]))
Craig Topper9f008862014-04-15 04:59:12 +00003289 return nullptr;
Duncan Sands7e800d62010-11-14 11:23:23 +00003290
Jay Foaded8db7d2011-07-21 14:31:17 +00003291 return ConstantExpr::getGetElementPtr(cast<Constant>(Ops[0]), Ops.slice(1));
Chris Lattner8574aba2009-11-27 00:29:05 +00003292}
3293
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003294Value *llvm::SimplifyGEPInst(ArrayRef<Value *> Ops, const DataLayout *DL,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003295 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003296 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003297 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003298 return ::SimplifyGEPInst(Ops, Query(DL, TLI, DT, AC, CxtI), RecursionLimit);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003299}
3300
Duncan Sandsfd26a952011-09-05 06:52:48 +00003301/// SimplifyInsertValueInst - Given operands for an InsertValueInst, see if we
3302/// can fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00003303static Value *SimplifyInsertValueInst(Value *Agg, Value *Val,
3304 ArrayRef<unsigned> Idxs, const Query &Q,
3305 unsigned) {
Duncan Sandsfd26a952011-09-05 06:52:48 +00003306 if (Constant *CAgg = dyn_cast<Constant>(Agg))
3307 if (Constant *CVal = dyn_cast<Constant>(Val))
3308 return ConstantFoldInsertValueInstruction(CAgg, CVal, Idxs);
3309
3310 // insertvalue x, undef, n -> x
3311 if (match(Val, m_Undef()))
3312 return Agg;
3313
3314 // insertvalue x, (extractvalue y, n), n
3315 if (ExtractValueInst *EV = dyn_cast<ExtractValueInst>(Val))
Benjamin Kramer4b79c212011-09-05 18:16:19 +00003316 if (EV->getAggregateOperand()->getType() == Agg->getType() &&
3317 EV->getIndices() == Idxs) {
Duncan Sandsfd26a952011-09-05 06:52:48 +00003318 // insertvalue undef, (extractvalue y, n), n -> y
3319 if (match(Agg, m_Undef()))
3320 return EV->getAggregateOperand();
3321
3322 // insertvalue y, (extractvalue y, n), n -> y
3323 if (Agg == EV->getAggregateOperand())
3324 return Agg;
3325 }
3326
Craig Topper9f008862014-04-15 04:59:12 +00003327 return nullptr;
Duncan Sandsfd26a952011-09-05 06:52:48 +00003328}
3329
Chandler Carruth66b31302015-01-04 12:03:27 +00003330Value *llvm::SimplifyInsertValueInst(
3331 Value *Agg, Value *Val, ArrayRef<unsigned> Idxs, const DataLayout *DL,
3332 const TargetLibraryInfo *TLI, const DominatorTree *DT, AssumptionCache *AC,
3333 const Instruction *CxtI) {
3334 return ::SimplifyInsertValueInst(Agg, Val, Idxs, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003335 RecursionLimit);
3336}
3337
Duncan Sands7412f6e2010-11-17 04:30:22 +00003338/// SimplifyPHINode - See if we can fold the given phi. If not, returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00003339static Value *SimplifyPHINode(PHINode *PN, const Query &Q) {
Duncan Sands7412f6e2010-11-17 04:30:22 +00003340 // If all of the PHI's incoming values are the same then replace the PHI node
3341 // with the common value.
Craig Topper9f008862014-04-15 04:59:12 +00003342 Value *CommonValue = nullptr;
Duncan Sands7412f6e2010-11-17 04:30:22 +00003343 bool HasUndefInput = false;
3344 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
3345 Value *Incoming = PN->getIncomingValue(i);
3346 // If the incoming value is the phi node itself, it can safely be skipped.
3347 if (Incoming == PN) continue;
3348 if (isa<UndefValue>(Incoming)) {
3349 // Remember that we saw an undef value, but otherwise ignore them.
3350 HasUndefInput = true;
3351 continue;
3352 }
3353 if (CommonValue && Incoming != CommonValue)
Craig Topper9f008862014-04-15 04:59:12 +00003354 return nullptr; // Not the same, bail out.
Duncan Sands7412f6e2010-11-17 04:30:22 +00003355 CommonValue = Incoming;
3356 }
3357
3358 // If CommonValue is null then all of the incoming values were either undef or
3359 // equal to the phi node itself.
3360 if (!CommonValue)
3361 return UndefValue::get(PN->getType());
3362
3363 // If we have a PHI node like phi(X, undef, X), where X is defined by some
3364 // instruction, we cannot return X as the result of the PHI node unless it
3365 // dominates the PHI block.
3366 if (HasUndefInput)
Craig Topper9f008862014-04-15 04:59:12 +00003367 return ValueDominatesPHI(CommonValue, PN, Q.DT) ? CommonValue : nullptr;
Duncan Sands7412f6e2010-11-17 04:30:22 +00003368
3369 return CommonValue;
3370}
3371
Duncan Sands395ac42d2012-03-13 14:07:05 +00003372static Value *SimplifyTruncInst(Value *Op, Type *Ty, const Query &Q, unsigned) {
3373 if (Constant *C = dyn_cast<Constant>(Op))
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003374 return ConstantFoldInstOperands(Instruction::Trunc, Ty, C, Q.DL, Q.TLI);
Duncan Sands395ac42d2012-03-13 14:07:05 +00003375
Craig Topper9f008862014-04-15 04:59:12 +00003376 return nullptr;
Duncan Sands395ac42d2012-03-13 14:07:05 +00003377}
3378
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003379Value *llvm::SimplifyTruncInst(Value *Op, Type *Ty, const DataLayout *DL,
Duncan Sands395ac42d2012-03-13 14:07:05 +00003380 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003381 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003382 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003383 return ::SimplifyTruncInst(Op, Ty, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00003384 RecursionLimit);
Duncan Sands395ac42d2012-03-13 14:07:05 +00003385}
3386
Chris Lattnera71e9d62009-11-10 00:55:12 +00003387//=== Helper functions for higher up the class hierarchy.
Chris Lattnerc1f19072009-11-09 23:28:39 +00003388
Chris Lattnera71e9d62009-11-10 00:55:12 +00003389/// SimplifyBinOp - Given operands for a BinaryOperator, see if we can
3390/// fold the result. If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003391static Value *SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003392 const Query &Q, unsigned MaxRecurse) {
Chris Lattnera71e9d62009-11-10 00:55:12 +00003393 switch (Opcode) {
Chris Lattner9e4aa022011-02-09 17:15:04 +00003394 case Instruction::Add:
Duncan Sands8b4e2832011-02-09 17:45:03 +00003395 return SimplifyAddInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003396 Q, MaxRecurse);
Michael Ilsemand2b05e52012-12-12 00:29:16 +00003397 case Instruction::FAdd:
3398 return SimplifyFAddInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
3399
Chris Lattner9e4aa022011-02-09 17:15:04 +00003400 case Instruction::Sub:
Duncan Sands8b4e2832011-02-09 17:45:03 +00003401 return SimplifySubInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003402 Q, MaxRecurse);
Michael Ilsemand2b05e52012-12-12 00:29:16 +00003403 case Instruction::FSub:
3404 return SimplifyFSubInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
3405
Duncan Sandsb8cee002012-03-13 11:42:19 +00003406 case Instruction::Mul: return SimplifyMulInst (LHS, RHS, Q, MaxRecurse);
Michael Ilsemand2b05e52012-12-12 00:29:16 +00003407 case Instruction::FMul:
3408 return SimplifyFMulInst (LHS, RHS, FastMathFlags(), Q, MaxRecurse);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003409 case Instruction::SDiv: return SimplifySDivInst(LHS, RHS, Q, MaxRecurse);
3410 case Instruction::UDiv: return SimplifyUDivInst(LHS, RHS, Q, MaxRecurse);
3411 case Instruction::FDiv: return SimplifyFDivInst(LHS, RHS, Q, MaxRecurse);
3412 case Instruction::SRem: return SimplifySRemInst(LHS, RHS, Q, MaxRecurse);
3413 case Instruction::URem: return SimplifyURemInst(LHS, RHS, Q, MaxRecurse);
3414 case Instruction::FRem: return SimplifyFRemInst(LHS, RHS, Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00003415 case Instruction::Shl:
Duncan Sands8b4e2832011-02-09 17:45:03 +00003416 return SimplifyShlInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003417 Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00003418 case Instruction::LShr:
Duncan Sandsb8cee002012-03-13 11:42:19 +00003419 return SimplifyLShrInst(LHS, RHS, /*isExact*/false, Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00003420 case Instruction::AShr:
Duncan Sandsb8cee002012-03-13 11:42:19 +00003421 return SimplifyAShrInst(LHS, RHS, /*isExact*/false, Q, MaxRecurse);
3422 case Instruction::And: return SimplifyAndInst(LHS, RHS, Q, MaxRecurse);
3423 case Instruction::Or: return SimplifyOrInst (LHS, RHS, Q, MaxRecurse);
3424 case Instruction::Xor: return SimplifyXorInst(LHS, RHS, Q, MaxRecurse);
Chris Lattnera71e9d62009-11-10 00:55:12 +00003425 default:
3426 if (Constant *CLHS = dyn_cast<Constant>(LHS))
3427 if (Constant *CRHS = dyn_cast<Constant>(RHS)) {
3428 Constant *COps[] = {CLHS, CRHS};
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003429 return ConstantFoldInstOperands(Opcode, LHS->getType(), COps, Q.DL,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003430 Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00003431 }
Duncan Sandsb0579e92010-11-10 13:00:08 +00003432
Duncan Sands6c7a52c2010-12-21 08:49:00 +00003433 // If the operation is associative, try some generic simplifications.
3434 if (Instruction::isAssociative(Opcode))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003435 if (Value *V = SimplifyAssociativeBinOp(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00003436 return V;
3437
Duncan Sandsb8cee002012-03-13 11:42:19 +00003438 // If the operation is with the result of a select instruction check whether
Duncan Sandsb0579e92010-11-10 13:00:08 +00003439 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003440 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003441 if (Value *V = ThreadBinOpOverSelect(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003442 return V;
3443
3444 // If the operation is with the result of a phi instruction, check whether
3445 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003446 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003447 if (Value *V = ThreadBinOpOverPHI(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00003448 return V;
3449
Craig Topper9f008862014-04-15 04:59:12 +00003450 return nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00003451 }
3452}
Chris Lattnerc1f19072009-11-09 23:28:39 +00003453
Duncan Sands7e800d62010-11-14 11:23:23 +00003454Value *llvm::SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003455 const DataLayout *DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003456 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003457 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003458 return ::SimplifyBinOp(Opcode, LHS, RHS, Query(DL, TLI, DT, AC, CxtI),
Hal Finkel60db0582014-09-07 18:57:58 +00003459 RecursionLimit);
Chris Lattnerc1f19072009-11-09 23:28:39 +00003460}
3461
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003462/// SimplifyCmpInst - Given operands for a CmpInst, see if we can
3463/// fold the result.
3464static Value *SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003465 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003466 if (CmpInst::isIntPredicate((CmpInst::Predicate)Predicate))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003467 return SimplifyICmpInst(Predicate, LHS, RHS, Q, MaxRecurse);
3468 return SimplifyFCmpInst(Predicate, LHS, RHS, Q, MaxRecurse);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003469}
3470
3471Value *llvm::SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003472 const DataLayout *DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003473 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003474 const Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00003475 return ::SimplifyCmpInst(Predicate, LHS, RHS, Query(DL, TLI, DT, AC, CxtI),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003476 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003477}
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003478
Michael Ilseman54857292013-02-07 19:26:05 +00003479static bool IsIdempotent(Intrinsic::ID ID) {
3480 switch (ID) {
3481 default: return false;
3482
3483 // Unary idempotent: f(f(x)) = f(x)
3484 case Intrinsic::fabs:
3485 case Intrinsic::floor:
3486 case Intrinsic::ceil:
3487 case Intrinsic::trunc:
3488 case Intrinsic::rint:
3489 case Intrinsic::nearbyint:
Hal Finkel171817e2013-08-07 22:49:12 +00003490 case Intrinsic::round:
Michael Ilseman54857292013-02-07 19:26:05 +00003491 return true;
3492 }
3493}
3494
3495template <typename IterTy>
3496static Value *SimplifyIntrinsic(Intrinsic::ID IID, IterTy ArgBegin, IterTy ArgEnd,
3497 const Query &Q, unsigned MaxRecurse) {
3498 // Perform idempotent optimizations
3499 if (!IsIdempotent(IID))
Craig Topper9f008862014-04-15 04:59:12 +00003500 return nullptr;
Michael Ilseman54857292013-02-07 19:26:05 +00003501
3502 // Unary Ops
3503 if (std::distance(ArgBegin, ArgEnd) == 1)
3504 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(*ArgBegin))
3505 if (II->getIntrinsicID() == IID)
3506 return II;
3507
Craig Topper9f008862014-04-15 04:59:12 +00003508 return nullptr;
Michael Ilseman54857292013-02-07 19:26:05 +00003509}
3510
Chandler Carruth9dc35582012-12-28 11:30:55 +00003511template <typename IterTy>
Chandler Carruthf6182152012-12-28 14:23:29 +00003512static Value *SimplifyCall(Value *V, IterTy ArgBegin, IterTy ArgEnd,
Chandler Carruth9dc35582012-12-28 11:30:55 +00003513 const Query &Q, unsigned MaxRecurse) {
Chandler Carruthf6182152012-12-28 14:23:29 +00003514 Type *Ty = V->getType();
Chandler Carruth9dc35582012-12-28 11:30:55 +00003515 if (PointerType *PTy = dyn_cast<PointerType>(Ty))
3516 Ty = PTy->getElementType();
3517 FunctionType *FTy = cast<FunctionType>(Ty);
3518
Dan Gohman85977e62011-11-04 18:32:42 +00003519 // call undef -> undef
Chandler Carruthf6182152012-12-28 14:23:29 +00003520 if (isa<UndefValue>(V))
Chandler Carruth9dc35582012-12-28 11:30:55 +00003521 return UndefValue::get(FTy->getReturnType());
Dan Gohman85977e62011-11-04 18:32:42 +00003522
Chandler Carruthf6182152012-12-28 14:23:29 +00003523 Function *F = dyn_cast<Function>(V);
3524 if (!F)
Craig Topper9f008862014-04-15 04:59:12 +00003525 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00003526
Michael Ilseman54857292013-02-07 19:26:05 +00003527 if (unsigned IID = F->getIntrinsicID())
3528 if (Value *Ret =
3529 SimplifyIntrinsic((Intrinsic::ID) IID, ArgBegin, ArgEnd, Q, MaxRecurse))
3530 return Ret;
3531
Chandler Carruthf6182152012-12-28 14:23:29 +00003532 if (!canConstantFoldCallTo(F))
Craig Topper9f008862014-04-15 04:59:12 +00003533 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00003534
3535 SmallVector<Constant *, 4> ConstantArgs;
3536 ConstantArgs.reserve(ArgEnd - ArgBegin);
3537 for (IterTy I = ArgBegin, E = ArgEnd; I != E; ++I) {
3538 Constant *C = dyn_cast<Constant>(*I);
3539 if (!C)
Craig Topper9f008862014-04-15 04:59:12 +00003540 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00003541 ConstantArgs.push_back(C);
3542 }
3543
3544 return ConstantFoldCall(F, ConstantArgs, Q.TLI);
Dan Gohman85977e62011-11-04 18:32:42 +00003545}
3546
Chandler Carruthf6182152012-12-28 14:23:29 +00003547Value *llvm::SimplifyCall(Value *V, User::op_iterator ArgBegin,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003548 User::op_iterator ArgEnd, const DataLayout *DL,
Chandler Carruth66b31302015-01-04 12:03:27 +00003549 const TargetLibraryInfo *TLI, const DominatorTree *DT,
3550 AssumptionCache *AC, const Instruction *CxtI) {
3551 return ::SimplifyCall(V, ArgBegin, ArgEnd, Query(DL, TLI, DT, AC, CxtI),
Chandler Carruth9dc35582012-12-28 11:30:55 +00003552 RecursionLimit);
3553}
3554
Chandler Carruthf6182152012-12-28 14:23:29 +00003555Value *llvm::SimplifyCall(Value *V, ArrayRef<Value *> Args,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003556 const DataLayout *DL, const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003557 const DominatorTree *DT, AssumptionCache *AC,
Hal Finkel60db0582014-09-07 18:57:58 +00003558 const Instruction *CxtI) {
3559 return ::SimplifyCall(V, Args.begin(), Args.end(),
Chandler Carruth66b31302015-01-04 12:03:27 +00003560 Query(DL, TLI, DT, AC, CxtI), RecursionLimit);
Chandler Carruth9dc35582012-12-28 11:30:55 +00003561}
3562
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003563/// SimplifyInstruction - See if we can compute a simplified version of this
3564/// instruction. If not, this returns null.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003565Value *llvm::SimplifyInstruction(Instruction *I, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00003566 const TargetLibraryInfo *TLI,
Chandler Carruth66b31302015-01-04 12:03:27 +00003567 const DominatorTree *DT, AssumptionCache *AC) {
Duncan Sands64e41cf2010-11-17 08:35:29 +00003568 Value *Result;
3569
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003570 switch (I->getOpcode()) {
3571 default:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003572 Result = ConstantFoldInstruction(I, DL, TLI);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003573 break;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00003574 case Instruction::FAdd:
3575 Result = SimplifyFAddInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00003576 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00003577 break;
Chris Lattner3d9823b2009-11-27 17:42:22 +00003578 case Instruction::Add:
Duncan Sands64e41cf2010-11-17 08:35:29 +00003579 Result = SimplifyAddInst(I->getOperand(0), I->getOperand(1),
3580 cast<BinaryOperator>(I)->hasNoSignedWrap(),
Chandler Carruth66b31302015-01-04 12:03:27 +00003581 cast<BinaryOperator>(I)->hasNoUnsignedWrap(), DL,
3582 TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003583 break;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00003584 case Instruction::FSub:
3585 Result = SimplifyFSubInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00003586 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00003587 break;
Duncan Sands0a2c41682010-12-15 14:07:39 +00003588 case Instruction::Sub:
3589 Result = SimplifySubInst(I->getOperand(0), I->getOperand(1),
3590 cast<BinaryOperator>(I)->hasNoSignedWrap(),
Chandler Carruth66b31302015-01-04 12:03:27 +00003591 cast<BinaryOperator>(I)->hasNoUnsignedWrap(), DL,
3592 TLI, DT, AC, I);
Duncan Sands0a2c41682010-12-15 14:07:39 +00003593 break;
Michael Ilsemanbe9137a2012-11-27 00:46:26 +00003594 case Instruction::FMul:
3595 Result = SimplifyFMulInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00003596 I->getFastMathFlags(), DL, TLI, DT, AC, I);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +00003597 break;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00003598 case Instruction::Mul:
Chandler Carruth66b31302015-01-04 12:03:27 +00003599 Result =
3600 SimplifyMulInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00003601 break;
Duncan Sands771e82a2011-01-28 16:51:11 +00003602 case Instruction::SDiv:
Chandler Carruth66b31302015-01-04 12:03:27 +00003603 Result = SimplifySDivInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
3604 AC, I);
Duncan Sands771e82a2011-01-28 16:51:11 +00003605 break;
3606 case Instruction::UDiv:
Chandler Carruth66b31302015-01-04 12:03:27 +00003607 Result = SimplifyUDivInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
3608 AC, I);
Duncan Sands771e82a2011-01-28 16:51:11 +00003609 break;
Frits van Bommelc2549662011-01-29 15:26:31 +00003610 case Instruction::FDiv:
Chandler Carruth66b31302015-01-04 12:03:27 +00003611 Result = SimplifyFDivInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
3612 AC, I);
Frits van Bommelc2549662011-01-29 15:26:31 +00003613 break;
Duncan Sandsa3e36992011-05-02 16:27:02 +00003614 case Instruction::SRem:
Chandler Carruth66b31302015-01-04 12:03:27 +00003615 Result = SimplifySRemInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
3616 AC, I);
Duncan Sandsa3e36992011-05-02 16:27:02 +00003617 break;
3618 case Instruction::URem:
Chandler Carruth66b31302015-01-04 12:03:27 +00003619 Result = SimplifyURemInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
3620 AC, I);
Duncan Sandsa3e36992011-05-02 16:27:02 +00003621 break;
3622 case Instruction::FRem:
Chandler Carruth66b31302015-01-04 12:03:27 +00003623 Result = SimplifyFRemInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT,
3624 AC, I);
Duncan Sandsa3e36992011-05-02 16:27:02 +00003625 break;
Duncan Sands7f60dc12011-01-14 00:37:45 +00003626 case Instruction::Shl:
Chris Lattner9e4aa022011-02-09 17:15:04 +00003627 Result = SimplifyShlInst(I->getOperand(0), I->getOperand(1),
3628 cast<BinaryOperator>(I)->hasNoSignedWrap(),
Chandler Carruth66b31302015-01-04 12:03:27 +00003629 cast<BinaryOperator>(I)->hasNoUnsignedWrap(), DL,
3630 TLI, DT, AC, I);
Duncan Sands7f60dc12011-01-14 00:37:45 +00003631 break;
3632 case Instruction::LShr:
Chris Lattner9e4aa022011-02-09 17:15:04 +00003633 Result = SimplifyLShrInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00003634 cast<BinaryOperator>(I)->isExact(), DL, TLI, DT,
3635 AC, I);
Duncan Sands7f60dc12011-01-14 00:37:45 +00003636 break;
3637 case Instruction::AShr:
Chris Lattner9e4aa022011-02-09 17:15:04 +00003638 Result = SimplifyAShrInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00003639 cast<BinaryOperator>(I)->isExact(), DL, TLI, DT,
3640 AC, I);
Duncan Sands7f60dc12011-01-14 00:37:45 +00003641 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003642 case Instruction::And:
Chandler Carruth66b31302015-01-04 12:03:27 +00003643 Result =
3644 SimplifyAndInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003645 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003646 case Instruction::Or:
Chandler Carruth66b31302015-01-04 12:03:27 +00003647 Result =
3648 SimplifyOrInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003649 break;
Duncan Sandsc89ac072010-11-17 18:52:15 +00003650 case Instruction::Xor:
Chandler Carruth66b31302015-01-04 12:03:27 +00003651 Result =
3652 SimplifyXorInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sandsc89ac072010-11-17 18:52:15 +00003653 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003654 case Instruction::ICmp:
Chandler Carruth66b31302015-01-04 12:03:27 +00003655 Result =
3656 SimplifyICmpInst(cast<ICmpInst>(I)->getPredicate(), I->getOperand(0),
3657 I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003658 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003659 case Instruction::FCmp:
Chandler Carruth66b31302015-01-04 12:03:27 +00003660 Result =
3661 SimplifyFCmpInst(cast<FCmpInst>(I)->getPredicate(), I->getOperand(0),
3662 I->getOperand(1), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003663 break;
Chris Lattnerc707fa92010-04-20 05:32:14 +00003664 case Instruction::Select:
Duncan Sands64e41cf2010-11-17 08:35:29 +00003665 Result = SimplifySelectInst(I->getOperand(0), I->getOperand(1),
Chandler Carruth66b31302015-01-04 12:03:27 +00003666 I->getOperand(2), DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003667 break;
Chris Lattner8574aba2009-11-27 00:29:05 +00003668 case Instruction::GetElementPtr: {
3669 SmallVector<Value*, 8> Ops(I->op_begin(), I->op_end());
Chandler Carruth66b31302015-01-04 12:03:27 +00003670 Result = SimplifyGEPInst(Ops, DL, TLI, DT, AC, I);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003671 break;
Chris Lattner8574aba2009-11-27 00:29:05 +00003672 }
Duncan Sandsfd26a952011-09-05 06:52:48 +00003673 case Instruction::InsertValue: {
3674 InsertValueInst *IV = cast<InsertValueInst>(I);
3675 Result = SimplifyInsertValueInst(IV->getAggregateOperand(),
3676 IV->getInsertedValueOperand(),
Chandler Carruth66b31302015-01-04 12:03:27 +00003677 IV->getIndices(), DL, TLI, DT, AC, I);
Duncan Sandsfd26a952011-09-05 06:52:48 +00003678 break;
3679 }
Duncan Sands4581ddc2010-11-14 13:30:18 +00003680 case Instruction::PHI:
Chandler Carruth66b31302015-01-04 12:03:27 +00003681 Result = SimplifyPHINode(cast<PHINode>(I), Query(DL, TLI, DT, AC, I));
Duncan Sands64e41cf2010-11-17 08:35:29 +00003682 break;
Chandler Carruth9dc35582012-12-28 11:30:55 +00003683 case Instruction::Call: {
3684 CallSite CS(cast<CallInst>(I));
Chandler Carruth66b31302015-01-04 12:03:27 +00003685 Result = SimplifyCall(CS.getCalledValue(), CS.arg_begin(), CS.arg_end(), DL,
3686 TLI, DT, AC, I);
Dan Gohman85977e62011-11-04 18:32:42 +00003687 break;
Chandler Carruth9dc35582012-12-28 11:30:55 +00003688 }
Duncan Sands395ac42d2012-03-13 14:07:05 +00003689 case Instruction::Trunc:
Chandler Carruth66b31302015-01-04 12:03:27 +00003690 Result =
3691 SimplifyTruncInst(I->getOperand(0), I->getType(), DL, TLI, DT, AC, I);
Duncan Sands395ac42d2012-03-13 14:07:05 +00003692 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003693 }
Duncan Sands64e41cf2010-11-17 08:35:29 +00003694
3695 /// If called on unreachable code, the above logic may report that the
3696 /// instruction simplified to itself. Make life easier for users by
Duncan Sands019a4182010-12-15 11:02:22 +00003697 /// detecting that case here, returning a safe value instead.
3698 return Result == I ? UndefValue::get(I->getType()) : Result;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003699}
3700
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003701/// \brief Implementation of recursive simplification through an instructions
3702/// uses.
Chris Lattner852d6d62009-11-10 22:26:15 +00003703///
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003704/// This is the common implementation of the recursive simplification routines.
3705/// If we have a pre-simplified value in 'SimpleV', that is forcibly used to
3706/// replace the instruction 'I'. Otherwise, we simply add 'I' to the list of
3707/// instructions to process and attempt to simplify it using
3708/// InstructionSimplify.
3709///
3710/// This routine returns 'true' only when *it* simplifies something. The passed
3711/// in simplified value does not count toward this.
3712static bool replaceAndRecursivelySimplifyImpl(Instruction *I, Value *SimpleV,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003713 const DataLayout *DL,
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003714 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00003715 const DominatorTree *DT,
Chandler Carruth66b31302015-01-04 12:03:27 +00003716 AssumptionCache *AC) {
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003717 bool Simplified = false;
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00003718 SmallSetVector<Instruction *, 8> Worklist;
Duncan Sands7e800d62010-11-14 11:23:23 +00003719
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003720 // If we have an explicit value to collapse to, do that round of the
3721 // simplification loop by hand initially.
3722 if (SimpleV) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00003723 for (User *U : I->users())
3724 if (U != I)
3725 Worklist.insert(cast<Instruction>(U));
Duncan Sands7e800d62010-11-14 11:23:23 +00003726
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003727 // Replace the instruction with its simplified value.
3728 I->replaceAllUsesWith(SimpleV);
Chris Lattner19eff2a2010-07-15 06:36:08 +00003729
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003730 // Gracefully handle edge cases where the instruction is not wired into any
3731 // parent block.
3732 if (I->getParent())
3733 I->eraseFromParent();
3734 } else {
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00003735 Worklist.insert(I);
Chris Lattner852d6d62009-11-10 22:26:15 +00003736 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003737
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00003738 // Note that we must test the size on each iteration, the worklist can grow.
3739 for (unsigned Idx = 0; Idx != Worklist.size(); ++Idx) {
3740 I = Worklist[Idx];
Duncan Sands7e800d62010-11-14 11:23:23 +00003741
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003742 // See if this instruction simplifies.
Chandler Carruth66b31302015-01-04 12:03:27 +00003743 SimpleV = SimplifyInstruction(I, DL, TLI, DT, AC);
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003744 if (!SimpleV)
3745 continue;
3746
3747 Simplified = true;
3748
3749 // Stash away all the uses of the old instruction so we can check them for
3750 // recursive simplifications after a RAUW. This is cheaper than checking all
3751 // uses of To on the recursive step in most cases.
Chandler Carruthcdf47882014-03-09 03:16:01 +00003752 for (User *U : I->users())
3753 Worklist.insert(cast<Instruction>(U));
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003754
3755 // Replace the instruction with its simplified value.
3756 I->replaceAllUsesWith(SimpleV);
3757
3758 // Gracefully handle edge cases where the instruction is not wired into any
3759 // parent block.
3760 if (I->getParent())
3761 I->eraseFromParent();
3762 }
3763 return Simplified;
3764}
3765
Chandler Carruth66b31302015-01-04 12:03:27 +00003766bool llvm::recursivelySimplifyInstruction(Instruction *I, const DataLayout *DL,
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003767 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00003768 const DominatorTree *DT,
Chandler Carruth66b31302015-01-04 12:03:27 +00003769 AssumptionCache *AC) {
3770 return replaceAndRecursivelySimplifyImpl(I, nullptr, DL, TLI, DT, AC);
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003771}
3772
3773bool llvm::replaceAndRecursivelySimplify(Instruction *I, Value *SimpleV,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003774 const DataLayout *DL,
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003775 const TargetLibraryInfo *TLI,
Hal Finkel60db0582014-09-07 18:57:58 +00003776 const DominatorTree *DT,
Chandler Carruth66b31302015-01-04 12:03:27 +00003777 AssumptionCache *AC) {
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003778 assert(I != SimpleV && "replaceAndRecursivelySimplify(X,X) is not valid!");
3779 assert(SimpleV && "Must provide a simplified value.");
Chandler Carruth66b31302015-01-04 12:03:27 +00003780 return replaceAndRecursivelySimplifyImpl(I, SimpleV, DL, TLI, DT, AC);
Chris Lattner852d6d62009-11-10 22:26:15 +00003781}