blob: 8aa6e5a190bfac82c75506485fcb98f6717802ee [file] [log] [blame]
Chris Lattner084a1b52009-11-09 22:57:59 +00001//===- InstructionSimplify.cpp - Fold instruction operands ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements routines for folding instructions into simpler forms
Duncan Sandsa0219882010-11-23 10:50:08 +000011// that do not require creating new instructions. This does constant folding
12// ("add i32 1, 1" -> "2") but can also handle non-constant operands, either
13// returning a constant ("and i32 %x, 0" -> "0") or an already existing value
Duncan Sandsed6d6c32010-12-20 14:47:04 +000014// ("and i32 %x, %x" -> "%x"). All operands are assumed to have already been
15// simplified: This is usually true and assuming it simplifies the logic (if
16// they have not been simplified then results are correct but maybe suboptimal).
Chris Lattner084a1b52009-11-09 22:57:59 +000017//
18//===----------------------------------------------------------------------===//
19
20#include "llvm/Analysis/InstructionSimplify.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000021#include "llvm/ADT/SetVector.h"
22#include "llvm/ADT/Statistic.h"
Chris Lattner084a1b52009-11-09 22:57:59 +000023#include "llvm/Analysis/ConstantFolding.h"
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +000024#include "llvm/Analysis/MemoryBuiltins.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000025#include "llvm/Analysis/ValueTracking.h"
Chandler Carruth8cd041e2014-03-04 12:24:34 +000026#include "llvm/IR/ConstantRange.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000027#include "llvm/IR/DataLayout.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000028#include "llvm/IR/Dominators.h"
Chandler Carruth03eb0de2014-03-04 10:40:04 +000029#include "llvm/IR/GetElementPtrTypeIterator.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000030#include "llvm/IR/GlobalAlias.h"
31#include "llvm/IR/Operator.h"
Chandler Carruth820a9082014-03-04 11:08:18 +000032#include "llvm/IR/PatternMatch.h"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000033#include "llvm/IR/ValueHandle.h"
Chris Lattner084a1b52009-11-09 22:57:59 +000034using namespace llvm;
Chris Lattnera71e9d62009-11-10 00:55:12 +000035using namespace llvm::PatternMatch;
Chris Lattner084a1b52009-11-09 22:57:59 +000036
Chandler Carruthf1221bd2014-04-22 02:48:03 +000037#define DEBUG_TYPE "instsimplify"
38
Chris Lattner9e4aa022011-02-09 17:15:04 +000039enum { RecursionLimit = 3 };
Duncan Sandsf3b1bf12010-11-10 18:23:01 +000040
Duncan Sands3547d2e2010-12-22 09:40:51 +000041STATISTIC(NumExpand, "Number of expansions");
42STATISTIC(NumFactor , "Number of factorizations");
43STATISTIC(NumReassoc, "Number of reassociations");
44
Duncan Sandsb8cee002012-03-13 11:42:19 +000045struct Query {
Rafael Espindola37dc9e12014-02-21 00:06:31 +000046 const DataLayout *DL;
Duncan Sandsb8cee002012-03-13 11:42:19 +000047 const TargetLibraryInfo *TLI;
48 const DominatorTree *DT;
49
Rafael Espindola37dc9e12014-02-21 00:06:31 +000050 Query(const DataLayout *DL, const TargetLibraryInfo *tli,
51 const DominatorTree *dt) : DL(DL), TLI(tli), DT(dt) {}
Duncan Sandsb8cee002012-03-13 11:42:19 +000052};
53
54static Value *SimplifyAndInst(Value *, Value *, const Query &, unsigned);
55static Value *SimplifyBinOp(unsigned, Value *, Value *, const Query &,
Chad Rosierc24b86f2011-12-01 03:08:23 +000056 unsigned);
Duncan Sandsb8cee002012-03-13 11:42:19 +000057static Value *SimplifyCmpInst(unsigned, Value *, Value *, const Query &,
Chad Rosierc24b86f2011-12-01 03:08:23 +000058 unsigned);
Duncan Sandsb8cee002012-03-13 11:42:19 +000059static Value *SimplifyOrInst(Value *, Value *, const Query &, unsigned);
60static Value *SimplifyXorInst(Value *, Value *, const Query &, unsigned);
Duncan Sands395ac42d2012-03-13 14:07:05 +000061static Value *SimplifyTruncInst(Value *, Type *, const Query &, unsigned);
Duncan Sands5ffc2982010-11-16 12:16:38 +000062
Duncan Sandsc1c92712011-07-26 15:03:53 +000063/// getFalse - For a boolean type, or a vector of boolean type, return false, or
64/// a vector with every element false, as appropriate for the type.
65static Constant *getFalse(Type *Ty) {
Nick Lewyckye659b842011-12-01 02:39:36 +000066 assert(Ty->getScalarType()->isIntegerTy(1) &&
Duncan Sandsc1c92712011-07-26 15:03:53 +000067 "Expected i1 type or a vector of i1!");
68 return Constant::getNullValue(Ty);
69}
70
71/// getTrue - For a boolean type, or a vector of boolean type, return true, or
72/// a vector with every element true, as appropriate for the type.
73static Constant *getTrue(Type *Ty) {
Nick Lewyckye659b842011-12-01 02:39:36 +000074 assert(Ty->getScalarType()->isIntegerTy(1) &&
Duncan Sandsc1c92712011-07-26 15:03:53 +000075 "Expected i1 type or a vector of i1!");
76 return Constant::getAllOnesValue(Ty);
77}
78
Duncan Sands3d5692a2011-10-30 19:56:36 +000079/// isSameCompare - Is V equivalent to the comparison "LHS Pred RHS"?
80static bool isSameCompare(Value *V, CmpInst::Predicate Pred, Value *LHS,
81 Value *RHS) {
82 CmpInst *Cmp = dyn_cast<CmpInst>(V);
83 if (!Cmp)
84 return false;
85 CmpInst::Predicate CPred = Cmp->getPredicate();
86 Value *CLHS = Cmp->getOperand(0), *CRHS = Cmp->getOperand(1);
87 if (CPred == Pred && CLHS == LHS && CRHS == RHS)
88 return true;
89 return CPred == CmpInst::getSwappedPredicate(Pred) && CLHS == RHS &&
90 CRHS == LHS;
91}
92
Duncan Sands5ffc2982010-11-16 12:16:38 +000093/// ValueDominatesPHI - Does the given value dominate the specified phi node?
94static bool ValueDominatesPHI(Value *V, PHINode *P, const DominatorTree *DT) {
95 Instruction *I = dyn_cast<Instruction>(V);
96 if (!I)
97 // Arguments and constants dominate all instructions.
98 return true;
99
Chandler Carruth3ffccb32012-03-21 10:58:47 +0000100 // If we are processing instructions (and/or basic blocks) that have not been
101 // fully added to a function, the parent nodes may still be null. Simply
102 // return the conservative answer in these cases.
103 if (!I->getParent() || !P->getParent() || !I->getParent()->getParent())
104 return false;
105
Duncan Sands5ffc2982010-11-16 12:16:38 +0000106 // If we have a DominatorTree then do a precise test.
Eli Friedmanc8cbd062012-03-13 01:06:07 +0000107 if (DT) {
108 if (!DT->isReachableFromEntry(P->getParent()))
109 return true;
110 if (!DT->isReachableFromEntry(I->getParent()))
111 return false;
112 return DT->dominates(I, P);
113 }
Duncan Sands5ffc2982010-11-16 12:16:38 +0000114
115 // Otherwise, if the instruction is in the entry block, and is not an invoke,
116 // then it obviously dominates all phi nodes.
117 if (I->getParent() == &I->getParent()->getParent()->getEntryBlock() &&
118 !isa<InvokeInst>(I))
119 return true;
120
121 return false;
122}
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000123
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000124/// ExpandBinOp - Simplify "A op (B op' C)" by distributing op over op', turning
125/// it into "(A op B) op' (A op C)". Here "op" is given by Opcode and "op'" is
126/// given by OpcodeToExpand, while "A" corresponds to LHS and "B op' C" to RHS.
127/// Also performs the transform "(A op' B) op C" -> "(A op C) op' (B op C)".
128/// Returns the simplified value, or null if no simplification was performed.
129static Value *ExpandBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000130 unsigned OpcToExpand, const Query &Q,
Chad Rosierc24b86f2011-12-01 03:08:23 +0000131 unsigned MaxRecurse) {
Benjamin Kramerb6d52b82010-12-28 13:52:52 +0000132 Instruction::BinaryOps OpcodeToExpand = (Instruction::BinaryOps)OpcToExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000133 // Recursion is always used, so bail out at once if we already hit the limit.
134 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000135 return nullptr;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000136
137 // Check whether the expression has the form "(A op' B) op C".
138 if (BinaryOperator *Op0 = dyn_cast<BinaryOperator>(LHS))
139 if (Op0->getOpcode() == OpcodeToExpand) {
140 // It does! Try turning it into "(A op C) op' (B op C)".
141 Value *A = Op0->getOperand(0), *B = Op0->getOperand(1), *C = RHS;
142 // Do "A op C" and "B op C" both simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000143 if (Value *L = SimplifyBinOp(Opcode, A, C, Q, MaxRecurse))
144 if (Value *R = SimplifyBinOp(Opcode, B, C, Q, MaxRecurse)) {
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000145 // They do! Return "L op' R" if it simplifies or is already available.
146 // If "L op' R" equals "A op' B" then "L op' R" is just the LHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000147 if ((L == A && R == B) || (Instruction::isCommutative(OpcodeToExpand)
148 && L == B && R == A)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000149 ++NumExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000150 return LHS;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000151 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000152 // Otherwise return "L op' R" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000153 if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000154 ++NumExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000155 return V;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000156 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000157 }
158 }
159
160 // Check whether the expression has the form "A op (B op' C)".
161 if (BinaryOperator *Op1 = dyn_cast<BinaryOperator>(RHS))
162 if (Op1->getOpcode() == OpcodeToExpand) {
163 // It does! Try turning it into "(A op B) op' (A op C)".
164 Value *A = LHS, *B = Op1->getOperand(0), *C = Op1->getOperand(1);
165 // Do "A op B" and "A op C" both simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000166 if (Value *L = SimplifyBinOp(Opcode, A, B, Q, MaxRecurse))
167 if (Value *R = SimplifyBinOp(Opcode, A, C, Q, MaxRecurse)) {
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000168 // They do! Return "L op' R" if it simplifies or is already available.
169 // If "L op' R" equals "B op' C" then "L op' R" is just the RHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000170 if ((L == B && R == C) || (Instruction::isCommutative(OpcodeToExpand)
171 && L == C && R == B)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000172 ++NumExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000173 return RHS;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000174 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000175 // Otherwise return "L op' R" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000176 if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000177 ++NumExpand;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000178 return V;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000179 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000180 }
181 }
182
Craig Topper9f008862014-04-15 04:59:12 +0000183 return nullptr;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000184}
185
186/// FactorizeBinOp - Simplify "LHS Opcode RHS" by factorizing out a common term
187/// using the operation OpCodeToExtract. For example, when Opcode is Add and
188/// OpCodeToExtract is Mul then this tries to turn "(A*B)+(A*C)" into "A*(B+C)".
189/// Returns the simplified value, or null if no simplification was performed.
190static Value *FactorizeBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000191 unsigned OpcToExtract, const Query &Q,
Chad Rosierc24b86f2011-12-01 03:08:23 +0000192 unsigned MaxRecurse) {
Benjamin Kramerb6d52b82010-12-28 13:52:52 +0000193 Instruction::BinaryOps OpcodeToExtract = (Instruction::BinaryOps)OpcToExtract;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000194 // Recursion is always used, so bail out at once if we already hit the limit.
195 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000196 return nullptr;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000197
198 BinaryOperator *Op0 = dyn_cast<BinaryOperator>(LHS);
199 BinaryOperator *Op1 = dyn_cast<BinaryOperator>(RHS);
200
201 if (!Op0 || Op0->getOpcode() != OpcodeToExtract ||
202 !Op1 || Op1->getOpcode() != OpcodeToExtract)
Craig Topper9f008862014-04-15 04:59:12 +0000203 return nullptr;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000204
205 // The expression has the form "(A op' B) op (C op' D)".
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000206 Value *A = Op0->getOperand(0), *B = Op0->getOperand(1);
207 Value *C = Op1->getOperand(0), *D = Op1->getOperand(1);
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000208
209 // Use left distributivity, i.e. "X op' (Y op Z) = (X op' Y) op (X op' Z)".
210 // Does the instruction have the form "(A op' B) op (A op' D)" or, in the
211 // commutative case, "(A op' B) op (C op' A)"?
Duncan Sands772749a2011-01-01 20:08:02 +0000212 if (A == C || (Instruction::isCommutative(OpcodeToExtract) && A == D)) {
213 Value *DD = A == C ? D : C;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000214 // Form "A op' (B op DD)" if it simplifies completely.
215 // Does "B op DD" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000216 if (Value *V = SimplifyBinOp(Opcode, B, DD, Q, MaxRecurse)) {
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000217 // It does! Return "A op' V" if it simplifies or is already available.
Duncan Sandsa45cfbd2010-12-22 17:15:25 +0000218 // If V equals B then "A op' V" is just the LHS. If V equals DD then
219 // "A op' V" is just the RHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000220 if (V == B || V == DD) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000221 ++NumFactor;
Duncan Sands772749a2011-01-01 20:08:02 +0000222 return V == B ? LHS : RHS;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000223 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000224 // Otherwise return "A op' V" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000225 if (Value *W = SimplifyBinOp(OpcodeToExtract, A, V, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000226 ++NumFactor;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000227 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000228 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000229 }
230 }
231
232 // Use right distributivity, i.e. "(X op Y) op' Z = (X op' Z) op (Y op' Z)".
233 // Does the instruction have the form "(A op' B) op (C op' B)" or, in the
234 // commutative case, "(A op' B) op (B op' D)"?
Duncan Sands772749a2011-01-01 20:08:02 +0000235 if (B == D || (Instruction::isCommutative(OpcodeToExtract) && B == C)) {
236 Value *CC = B == D ? C : D;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000237 // Form "(A op CC) op' B" if it simplifies completely..
238 // Does "A op CC" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000239 if (Value *V = SimplifyBinOp(Opcode, A, CC, Q, MaxRecurse)) {
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000240 // It does! Return "V op' B" if it simplifies or is already available.
Duncan Sandsa45cfbd2010-12-22 17:15:25 +0000241 // If V equals A then "V op' B" is just the LHS. If V equals CC then
242 // "V op' B" is just the RHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000243 if (V == A || V == CC) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000244 ++NumFactor;
Duncan Sands772749a2011-01-01 20:08:02 +0000245 return V == A ? LHS : RHS;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000246 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000247 // Otherwise return "V op' B" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000248 if (Value *W = SimplifyBinOp(OpcodeToExtract, V, B, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000249 ++NumFactor;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000250 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000251 }
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000252 }
253 }
254
Craig Topper9f008862014-04-15 04:59:12 +0000255 return nullptr;
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000256}
257
258/// SimplifyAssociativeBinOp - Generic simplifications for associative binary
259/// operations. Returns the simpler value, or null if none was found.
Benjamin Kramerb6d52b82010-12-28 13:52:52 +0000260static Value *SimplifyAssociativeBinOp(unsigned Opc, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000261 const Query &Q, unsigned MaxRecurse) {
Benjamin Kramerb6d52b82010-12-28 13:52:52 +0000262 Instruction::BinaryOps Opcode = (Instruction::BinaryOps)Opc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000263 assert(Instruction::isAssociative(Opcode) && "Not an associative operation!");
264
265 // Recursion is always used, so bail out at once if we already hit the limit.
266 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000267 return nullptr;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000268
269 BinaryOperator *Op0 = dyn_cast<BinaryOperator>(LHS);
270 BinaryOperator *Op1 = dyn_cast<BinaryOperator>(RHS);
271
272 // Transform: "(A op B) op C" ==> "A op (B op C)" if it simplifies completely.
273 if (Op0 && Op0->getOpcode() == Opcode) {
274 Value *A = Op0->getOperand(0);
275 Value *B = Op0->getOperand(1);
276 Value *C = RHS;
277
278 // Does "B op C" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000279 if (Value *V = SimplifyBinOp(Opcode, B, C, Q, MaxRecurse)) {
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000280 // It does! Return "A op V" if it simplifies or is already available.
281 // If V equals B then "A op V" is just the LHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000282 if (V == B) return LHS;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000283 // Otherwise return "A op V" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000284 if (Value *W = SimplifyBinOp(Opcode, A, V, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000285 ++NumReassoc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000286 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000287 }
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000288 }
289 }
290
291 // Transform: "A op (B op C)" ==> "(A op B) op C" if it simplifies completely.
292 if (Op1 && Op1->getOpcode() == Opcode) {
293 Value *A = LHS;
294 Value *B = Op1->getOperand(0);
295 Value *C = Op1->getOperand(1);
296
297 // Does "A op B" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000298 if (Value *V = SimplifyBinOp(Opcode, A, B, Q, MaxRecurse)) {
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000299 // It does! Return "V op C" if it simplifies or is already available.
300 // If V equals B then "V op C" is just the RHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000301 if (V == B) return RHS;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000302 // Otherwise return "V op C" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000303 if (Value *W = SimplifyBinOp(Opcode, V, C, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000304 ++NumReassoc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000305 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000306 }
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000307 }
308 }
309
310 // The remaining transforms require commutativity as well as associativity.
311 if (!Instruction::isCommutative(Opcode))
Craig Topper9f008862014-04-15 04:59:12 +0000312 return nullptr;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000313
314 // Transform: "(A op B) op C" ==> "(C op A) op B" if it simplifies completely.
315 if (Op0 && Op0->getOpcode() == Opcode) {
316 Value *A = Op0->getOperand(0);
317 Value *B = Op0->getOperand(1);
318 Value *C = RHS;
319
320 // Does "C op A" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000321 if (Value *V = SimplifyBinOp(Opcode, C, A, Q, MaxRecurse)) {
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000322 // It does! Return "V op B" if it simplifies or is already available.
323 // If V equals A then "V op B" is just the LHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000324 if (V == A) return LHS;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000325 // Otherwise return "V op B" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000326 if (Value *W = SimplifyBinOp(Opcode, V, B, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000327 ++NumReassoc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000328 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000329 }
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000330 }
331 }
332
333 // Transform: "A op (B op C)" ==> "B op (C op A)" if it simplifies completely.
334 if (Op1 && Op1->getOpcode() == Opcode) {
335 Value *A = LHS;
336 Value *B = Op1->getOperand(0);
337 Value *C = Op1->getOperand(1);
338
339 // Does "C op A" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000340 if (Value *V = SimplifyBinOp(Opcode, C, A, Q, MaxRecurse)) {
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000341 // It does! Return "B op V" if it simplifies or is already available.
342 // If V equals C then "B op V" is just the RHS.
Duncan Sands772749a2011-01-01 20:08:02 +0000343 if (V == C) return RHS;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000344 // Otherwise return "B op V" if it simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000345 if (Value *W = SimplifyBinOp(Opcode, B, V, Q, MaxRecurse)) {
Duncan Sands3547d2e2010-12-22 09:40:51 +0000346 ++NumReassoc;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000347 return W;
Duncan Sands3547d2e2010-12-22 09:40:51 +0000348 }
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000349 }
350 }
351
Craig Topper9f008862014-04-15 04:59:12 +0000352 return nullptr;
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000353}
354
Duncan Sandsb0579e92010-11-10 13:00:08 +0000355/// ThreadBinOpOverSelect - In the case of a binary operation with a select
356/// instruction as an operand, try to simplify the binop by seeing whether
357/// evaluating it on both branches of the select results in the same value.
358/// Returns the common value if so, otherwise returns null.
359static Value *ThreadBinOpOverSelect(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000360 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000361 // Recursion is always used, so bail out at once if we already hit the limit.
362 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000363 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000364
Duncan Sandsb0579e92010-11-10 13:00:08 +0000365 SelectInst *SI;
366 if (isa<SelectInst>(LHS)) {
367 SI = cast<SelectInst>(LHS);
368 } else {
369 assert(isa<SelectInst>(RHS) && "No select instruction operand!");
370 SI = cast<SelectInst>(RHS);
371 }
372
373 // Evaluate the BinOp on the true and false branches of the select.
374 Value *TV;
375 Value *FV;
376 if (SI == LHS) {
Duncan Sandsb8cee002012-03-13 11:42:19 +0000377 TV = SimplifyBinOp(Opcode, SI->getTrueValue(), RHS, Q, MaxRecurse);
378 FV = SimplifyBinOp(Opcode, SI->getFalseValue(), RHS, Q, MaxRecurse);
Duncan Sandsb0579e92010-11-10 13:00:08 +0000379 } else {
Duncan Sandsb8cee002012-03-13 11:42:19 +0000380 TV = SimplifyBinOp(Opcode, LHS, SI->getTrueValue(), Q, MaxRecurse);
381 FV = SimplifyBinOp(Opcode, LHS, SI->getFalseValue(), Q, MaxRecurse);
Duncan Sandsb0579e92010-11-10 13:00:08 +0000382 }
383
Duncan Sandse3c53952011-01-01 16:12:09 +0000384 // If they simplified to the same value, then return the common value.
Duncan Sands772749a2011-01-01 20:08:02 +0000385 // If they both failed to simplify then return null.
386 if (TV == FV)
Duncan Sandsb0579e92010-11-10 13:00:08 +0000387 return TV;
388
389 // If one branch simplified to undef, return the other one.
390 if (TV && isa<UndefValue>(TV))
391 return FV;
392 if (FV && isa<UndefValue>(FV))
393 return TV;
394
395 // If applying the operation did not change the true and false select values,
396 // then the result of the binop is the select itself.
Duncan Sands772749a2011-01-01 20:08:02 +0000397 if (TV == SI->getTrueValue() && FV == SI->getFalseValue())
Duncan Sandsb0579e92010-11-10 13:00:08 +0000398 return SI;
399
400 // If one branch simplified and the other did not, and the simplified
401 // value is equal to the unsimplified one, return the simplified value.
402 // For example, select (cond, X, X & Z) & Z -> X & Z.
403 if ((FV && !TV) || (TV && !FV)) {
404 // Check that the simplified value has the form "X op Y" where "op" is the
405 // same as the original operation.
406 Instruction *Simplified = dyn_cast<Instruction>(FV ? FV : TV);
407 if (Simplified && Simplified->getOpcode() == Opcode) {
408 // The value that didn't simplify is "UnsimplifiedLHS op UnsimplifiedRHS".
409 // We already know that "op" is the same as for the simplified value. See
410 // if the operands match too. If so, return the simplified value.
411 Value *UnsimplifiedBranch = FV ? SI->getTrueValue() : SI->getFalseValue();
412 Value *UnsimplifiedLHS = SI == LHS ? UnsimplifiedBranch : LHS;
413 Value *UnsimplifiedRHS = SI == LHS ? RHS : UnsimplifiedBranch;
Duncan Sands772749a2011-01-01 20:08:02 +0000414 if (Simplified->getOperand(0) == UnsimplifiedLHS &&
415 Simplified->getOperand(1) == UnsimplifiedRHS)
Duncan Sandsb0579e92010-11-10 13:00:08 +0000416 return Simplified;
417 if (Simplified->isCommutative() &&
Duncan Sands772749a2011-01-01 20:08:02 +0000418 Simplified->getOperand(1) == UnsimplifiedLHS &&
419 Simplified->getOperand(0) == UnsimplifiedRHS)
Duncan Sandsb0579e92010-11-10 13:00:08 +0000420 return Simplified;
421 }
422 }
423
Craig Topper9f008862014-04-15 04:59:12 +0000424 return nullptr;
Duncan Sandsb0579e92010-11-10 13:00:08 +0000425}
426
427/// ThreadCmpOverSelect - In the case of a comparison with a select instruction,
428/// try to simplify the comparison by seeing whether both branches of the select
429/// result in the same value. Returns the common value if so, otherwise returns
430/// null.
431static Value *ThreadCmpOverSelect(CmpInst::Predicate Pred, Value *LHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000432 Value *RHS, const Query &Q,
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000433 unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000434 // Recursion is always used, so bail out at once if we already hit the limit.
435 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000436 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000437
Duncan Sandsb0579e92010-11-10 13:00:08 +0000438 // Make sure the select is on the LHS.
439 if (!isa<SelectInst>(LHS)) {
440 std::swap(LHS, RHS);
441 Pred = CmpInst::getSwappedPredicate(Pred);
442 }
443 assert(isa<SelectInst>(LHS) && "Not comparing with a select instruction!");
444 SelectInst *SI = cast<SelectInst>(LHS);
Duncan Sands3d5692a2011-10-30 19:56:36 +0000445 Value *Cond = SI->getCondition();
446 Value *TV = SI->getTrueValue();
447 Value *FV = SI->getFalseValue();
Duncan Sandsb0579e92010-11-10 13:00:08 +0000448
Duncan Sands06504022011-02-03 09:37:39 +0000449 // Now that we have "cmp select(Cond, TV, FV), RHS", analyse it.
Duncan Sandsb0579e92010-11-10 13:00:08 +0000450 // Does "cmp TV, RHS" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000451 Value *TCmp = SimplifyCmpInst(Pred, TV, RHS, Q, MaxRecurse);
Duncan Sands3d5692a2011-10-30 19:56:36 +0000452 if (TCmp == Cond) {
453 // It not only simplified, it simplified to the select condition. Replace
454 // it with 'true'.
455 TCmp = getTrue(Cond->getType());
456 } else if (!TCmp) {
457 // It didn't simplify. However if "cmp TV, RHS" is equal to the select
458 // condition then we can replace it with 'true'. Otherwise give up.
459 if (!isSameCompare(Cond, Pred, TV, RHS))
Craig Topper9f008862014-04-15 04:59:12 +0000460 return nullptr;
Duncan Sands3d5692a2011-10-30 19:56:36 +0000461 TCmp = getTrue(Cond->getType());
Duncan Sands06504022011-02-03 09:37:39 +0000462 }
463
Duncan Sands3d5692a2011-10-30 19:56:36 +0000464 // Does "cmp FV, RHS" simplify?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000465 Value *FCmp = SimplifyCmpInst(Pred, FV, RHS, Q, MaxRecurse);
Duncan Sands3d5692a2011-10-30 19:56:36 +0000466 if (FCmp == Cond) {
467 // It not only simplified, it simplified to the select condition. Replace
468 // it with 'false'.
469 FCmp = getFalse(Cond->getType());
470 } else if (!FCmp) {
471 // It didn't simplify. However if "cmp FV, RHS" is equal to the select
472 // condition then we can replace it with 'false'. Otherwise give up.
473 if (!isSameCompare(Cond, Pred, FV, RHS))
Craig Topper9f008862014-04-15 04:59:12 +0000474 return nullptr;
Duncan Sands3d5692a2011-10-30 19:56:36 +0000475 FCmp = getFalse(Cond->getType());
476 }
477
478 // If both sides simplified to the same value, then use it as the result of
479 // the original comparison.
480 if (TCmp == FCmp)
481 return TCmp;
Duncan Sands26641d72012-02-10 14:31:24 +0000482
483 // The remaining cases only make sense if the select condition has the same
484 // type as the result of the comparison, so bail out if this is not so.
485 if (Cond->getType()->isVectorTy() != RHS->getType()->isVectorTy())
Craig Topper9f008862014-04-15 04:59:12 +0000486 return nullptr;
Duncan Sands3d5692a2011-10-30 19:56:36 +0000487 // If the false value simplified to false, then the result of the compare
488 // is equal to "Cond && TCmp". This also catches the case when the false
489 // value simplified to false and the true value to true, returning "Cond".
490 if (match(FCmp, m_Zero()))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000491 if (Value *V = SimplifyAndInst(Cond, TCmp, Q, MaxRecurse))
Duncan Sands3d5692a2011-10-30 19:56:36 +0000492 return V;
493 // If the true value simplified to true, then the result of the compare
494 // is equal to "Cond || FCmp".
495 if (match(TCmp, m_One()))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000496 if (Value *V = SimplifyOrInst(Cond, FCmp, Q, MaxRecurse))
Duncan Sands3d5692a2011-10-30 19:56:36 +0000497 return V;
498 // Finally, if the false value simplified to true and the true value to
499 // false, then the result of the compare is equal to "!Cond".
500 if (match(FCmp, m_One()) && match(TCmp, m_Zero()))
501 if (Value *V =
502 SimplifyXorInst(Cond, Constant::getAllOnesValue(Cond->getType()),
Duncan Sandsb8cee002012-03-13 11:42:19 +0000503 Q, MaxRecurse))
Duncan Sands3d5692a2011-10-30 19:56:36 +0000504 return V;
505
Craig Topper9f008862014-04-15 04:59:12 +0000506 return nullptr;
Duncan Sandsb0579e92010-11-10 13:00:08 +0000507}
508
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000509/// ThreadBinOpOverPHI - In the case of a binary operation with an operand that
510/// is a PHI instruction, try to simplify the binop by seeing whether evaluating
511/// it on the incoming phi values yields the same result for every value. If so
512/// returns the common value, otherwise returns null.
513static Value *ThreadBinOpOverPHI(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000514 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000515 // Recursion is always used, so bail out at once if we already hit the limit.
516 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000517 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000518
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000519 PHINode *PI;
520 if (isa<PHINode>(LHS)) {
521 PI = cast<PHINode>(LHS);
Duncan Sands5ffc2982010-11-16 12:16:38 +0000522 // Bail out if RHS and the phi may be mutually interdependent due to a loop.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000523 if (!ValueDominatesPHI(RHS, PI, Q.DT))
Craig Topper9f008862014-04-15 04:59:12 +0000524 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000525 } else {
526 assert(isa<PHINode>(RHS) && "No PHI instruction operand!");
527 PI = cast<PHINode>(RHS);
Duncan Sands5ffc2982010-11-16 12:16:38 +0000528 // Bail out if LHS and the phi may be mutually interdependent due to a loop.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000529 if (!ValueDominatesPHI(LHS, PI, Q.DT))
Craig Topper9f008862014-04-15 04:59:12 +0000530 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000531 }
532
533 // Evaluate the BinOp on the incoming phi values.
Craig Topper9f008862014-04-15 04:59:12 +0000534 Value *CommonValue = nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000535 for (unsigned i = 0, e = PI->getNumIncomingValues(); i != e; ++i) {
Duncan Sandsf12ba1d2010-11-15 17:52:45 +0000536 Value *Incoming = PI->getIncomingValue(i);
Duncan Sands7412f6e2010-11-17 04:30:22 +0000537 // If the incoming value is the phi node itself, it can safely be skipped.
Duncan Sandsf12ba1d2010-11-15 17:52:45 +0000538 if (Incoming == PI) continue;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000539 Value *V = PI == LHS ?
Duncan Sandsb8cee002012-03-13 11:42:19 +0000540 SimplifyBinOp(Opcode, Incoming, RHS, Q, MaxRecurse) :
541 SimplifyBinOp(Opcode, LHS, Incoming, Q, MaxRecurse);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000542 // If the operation failed to simplify, or simplified to a different value
543 // to previously, then give up.
544 if (!V || (CommonValue && V != CommonValue))
Craig Topper9f008862014-04-15 04:59:12 +0000545 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000546 CommonValue = V;
547 }
548
549 return CommonValue;
550}
551
552/// ThreadCmpOverPHI - In the case of a comparison with a PHI instruction, try
553/// try to simplify the comparison by seeing whether comparing with all of the
554/// incoming phi values yields the same result every time. If so returns the
555/// common result, otherwise returns null.
556static Value *ThreadCmpOverPHI(CmpInst::Predicate Pred, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000557 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf64e6902010-12-21 09:09:15 +0000558 // Recursion is always used, so bail out at once if we already hit the limit.
559 if (!MaxRecurse--)
Craig Topper9f008862014-04-15 04:59:12 +0000560 return nullptr;
Duncan Sandsf64e6902010-12-21 09:09:15 +0000561
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000562 // Make sure the phi is on the LHS.
563 if (!isa<PHINode>(LHS)) {
564 std::swap(LHS, RHS);
565 Pred = CmpInst::getSwappedPredicate(Pred);
566 }
567 assert(isa<PHINode>(LHS) && "Not comparing with a phi instruction!");
568 PHINode *PI = cast<PHINode>(LHS);
569
Duncan Sands5ffc2982010-11-16 12:16:38 +0000570 // Bail out if RHS and the phi may be mutually interdependent due to a loop.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000571 if (!ValueDominatesPHI(RHS, PI, Q.DT))
Craig Topper9f008862014-04-15 04:59:12 +0000572 return nullptr;
Duncan Sands5ffc2982010-11-16 12:16:38 +0000573
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000574 // Evaluate the BinOp on the incoming phi values.
Craig Topper9f008862014-04-15 04:59:12 +0000575 Value *CommonValue = nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000576 for (unsigned i = 0, e = PI->getNumIncomingValues(); i != e; ++i) {
Duncan Sandsf12ba1d2010-11-15 17:52:45 +0000577 Value *Incoming = PI->getIncomingValue(i);
Duncan Sands7412f6e2010-11-17 04:30:22 +0000578 // If the incoming value is the phi node itself, it can safely be skipped.
Duncan Sandsf12ba1d2010-11-15 17:52:45 +0000579 if (Incoming == PI) continue;
Duncan Sandsb8cee002012-03-13 11:42:19 +0000580 Value *V = SimplifyCmpInst(Pred, Incoming, RHS, Q, MaxRecurse);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000581 // If the operation failed to simplify, or simplified to a different value
582 // to previously, then give up.
583 if (!V || (CommonValue && V != CommonValue))
Craig Topper9f008862014-04-15 04:59:12 +0000584 return nullptr;
Duncan Sandsf3b1bf12010-11-10 18:23:01 +0000585 CommonValue = V;
586 }
587
588 return CommonValue;
589}
590
Chris Lattner3d9823b2009-11-27 17:42:22 +0000591/// SimplifyAddInst - Given operands for an Add, see if we can
592/// fold the result. If not, this returns null.
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000593static Value *SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000594 const Query &Q, unsigned MaxRecurse) {
Chris Lattner3d9823b2009-11-27 17:42:22 +0000595 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
596 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
597 Constant *Ops[] = { CLHS, CRHS };
Duncan Sandsb8cee002012-03-13 11:42:19 +0000598 return ConstantFoldInstOperands(Instruction::Add, CLHS->getType(), Ops,
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000599 Q.DL, Q.TLI);
Chris Lattner3d9823b2009-11-27 17:42:22 +0000600 }
Duncan Sands7e800d62010-11-14 11:23:23 +0000601
Chris Lattner3d9823b2009-11-27 17:42:22 +0000602 // Canonicalize the constant to the RHS.
603 std::swap(Op0, Op1);
604 }
Duncan Sands7e800d62010-11-14 11:23:23 +0000605
Duncan Sands0a2c41682010-12-15 14:07:39 +0000606 // X + undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000607 if (match(Op1, m_Undef()))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000608 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +0000609
Duncan Sands0a2c41682010-12-15 14:07:39 +0000610 // X + 0 -> X
611 if (match(Op1, m_Zero()))
612 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +0000613
Duncan Sands0a2c41682010-12-15 14:07:39 +0000614 // X + (Y - X) -> Y
615 // (Y - X) + X -> Y
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000616 // Eg: X + -X -> 0
Craig Topper9f008862014-04-15 04:59:12 +0000617 Value *Y = nullptr;
Duncan Sands772749a2011-01-01 20:08:02 +0000618 if (match(Op1, m_Sub(m_Value(Y), m_Specific(Op0))) ||
619 match(Op0, m_Sub(m_Value(Y), m_Specific(Op1))))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000620 return Y;
621
622 // X + ~X -> -1 since ~X = -X-1
Duncan Sands772749a2011-01-01 20:08:02 +0000623 if (match(Op0, m_Not(m_Specific(Op1))) ||
624 match(Op1, m_Not(m_Specific(Op0))))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000625 return Constant::getAllOnesValue(Op0->getType());
Duncan Sandsb238de02010-11-19 09:20:39 +0000626
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000627 /// i1 add -> xor.
Duncan Sands5def0d62010-12-21 14:48:48 +0000628 if (MaxRecurse && Op0->getType()->isIntegerTy(1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000629 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sandsfecc6422010-12-21 15:03:43 +0000630 return V;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000631
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000632 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000633 if (Value *V = SimplifyAssociativeBinOp(Instruction::Add, Op0, Op1, Q,
Duncan Sands6c7a52c2010-12-21 08:49:00 +0000634 MaxRecurse))
635 return V;
636
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000637 // Mul distributes over Add. Try some generic simplifications based on this.
638 if (Value *V = FactorizeBinOp(Instruction::Add, Op0, Op1, Instruction::Mul,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000639 Q, MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000640 return V;
641
Duncan Sandsb238de02010-11-19 09:20:39 +0000642 // Threading Add over selects and phi nodes is pointless, so don't bother.
643 // Threading over the select in "A + select(cond, B, C)" means evaluating
644 // "A+B" and "A+C" and seeing if they are equal; but they are equal if and
645 // only if B and C are equal. If B and C are equal then (since we assume
646 // that operands have already been simplified) "select(cond, B, C)" should
647 // have been simplified to the common value of B and C already. Analysing
648 // "A+B" and "A+C" thus gains nothing, but costs compile time. Similarly
649 // for threading over phi nodes.
650
Craig Topper9f008862014-04-15 04:59:12 +0000651 return nullptr;
Chris Lattner3d9823b2009-11-27 17:42:22 +0000652}
653
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000654Value *llvm::SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000655 const DataLayout *DL, const TargetLibraryInfo *TLI,
Chad Rosierc24b86f2011-12-01 03:08:23 +0000656 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000657 return ::SimplifyAddInst(Op0, Op1, isNSW, isNUW, Query (DL, TLI, DT),
Duncan Sandsb8cee002012-03-13 11:42:19 +0000658 RecursionLimit);
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000659}
660
Chandler Carrutha0796552012-03-12 11:19:31 +0000661/// \brief Compute the base pointer and cumulative constant offsets for V.
662///
663/// This strips all constant offsets off of V, leaving it the base pointer, and
664/// accumulates the total constant offset applied in the returned constant. It
665/// returns 0 if V is not a pointer, and returns the constant '0' if there are
666/// no constant offsets applied.
Dan Gohman36fa8392013-01-31 02:45:26 +0000667///
668/// This is very similar to GetPointerBaseWithConstantOffset except it doesn't
669/// follow non-inbounds geps. This allows it to remain usable for icmp ult/etc.
670/// folding.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000671static Constant *stripAndComputeConstantOffsets(const DataLayout *DL,
Benjamin Kramer942dfe62013-09-23 14:16:38 +0000672 Value *&V,
673 bool AllowNonInbounds = false) {
Benjamin Kramerc05aa952013-02-01 15:21:10 +0000674 assert(V->getType()->getScalarType()->isPointerTy());
Chandler Carrutha0796552012-03-12 11:19:31 +0000675
Dan Gohman18c77a12013-01-31 02:50:36 +0000676 // Without DataLayout, just be conservative for now. Theoretically, more could
677 // be done in this case.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000678 if (!DL)
Dan Gohman18c77a12013-01-31 02:50:36 +0000679 return ConstantInt::get(IntegerType::get(V->getContext(), 64), 0);
680
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000681 Type *IntPtrTy = DL->getIntPtrType(V->getType())->getScalarType();
Matt Arsenault2f9cce22013-08-03 01:03:12 +0000682 APInt Offset = APInt::getNullValue(IntPtrTy->getIntegerBitWidth());
Chandler Carrutha0796552012-03-12 11:19:31 +0000683
684 // Even though we don't look through PHI nodes, we could be called on an
685 // instruction in an unreachable block, which may be on a cycle.
686 SmallPtrSet<Value *, 4> Visited;
687 Visited.insert(V);
688 do {
689 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
Benjamin Kramer942dfe62013-09-23 14:16:38 +0000690 if ((!AllowNonInbounds && !GEP->isInBounds()) ||
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000691 !GEP->accumulateConstantOffset(*DL, Offset))
Chandler Carrutha0796552012-03-12 11:19:31 +0000692 break;
Chandler Carrutha0796552012-03-12 11:19:31 +0000693 V = GEP->getPointerOperand();
694 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
Matt Arsenault2f9cce22013-08-03 01:03:12 +0000695 V = cast<Operator>(V)->getOperand(0);
Chandler Carrutha0796552012-03-12 11:19:31 +0000696 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) {
697 if (GA->mayBeOverridden())
698 break;
699 V = GA->getAliasee();
700 } else {
701 break;
702 }
Benjamin Kramerc05aa952013-02-01 15:21:10 +0000703 assert(V->getType()->getScalarType()->isPointerTy() &&
704 "Unexpected operand type!");
Chandler Carrutha0796552012-03-12 11:19:31 +0000705 } while (Visited.insert(V));
706
Benjamin Kramerc05aa952013-02-01 15:21:10 +0000707 Constant *OffsetIntPtr = ConstantInt::get(IntPtrTy, Offset);
708 if (V->getType()->isVectorTy())
709 return ConstantVector::getSplat(V->getType()->getVectorNumElements(),
710 OffsetIntPtr);
711 return OffsetIntPtr;
Chandler Carrutha0796552012-03-12 11:19:31 +0000712}
713
714/// \brief Compute the constant difference between two pointer values.
715/// If the difference is not a constant, returns zero.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000716static Constant *computePointerDifference(const DataLayout *DL,
Chandler Carrutha0796552012-03-12 11:19:31 +0000717 Value *LHS, Value *RHS) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000718 Constant *LHSOffset = stripAndComputeConstantOffsets(DL, LHS);
719 Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS);
Chandler Carrutha0796552012-03-12 11:19:31 +0000720
721 // If LHS and RHS are not related via constant offsets to the same base
722 // value, there is nothing we can do here.
723 if (LHS != RHS)
Craig Topper9f008862014-04-15 04:59:12 +0000724 return nullptr;
Chandler Carrutha0796552012-03-12 11:19:31 +0000725
726 // Otherwise, the difference of LHS - RHS can be computed as:
727 // LHS - RHS
728 // = (LHSOffset + Base) - (RHSOffset + Base)
729 // = LHSOffset - RHSOffset
730 return ConstantExpr::getSub(LHSOffset, RHSOffset);
731}
732
Duncan Sands0a2c41682010-12-15 14:07:39 +0000733/// SimplifySubInst - Given operands for a Sub, see if we can
734/// fold the result. If not, this returns null.
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000735static Value *SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000736 const Query &Q, unsigned MaxRecurse) {
Duncan Sands0a2c41682010-12-15 14:07:39 +0000737 if (Constant *CLHS = dyn_cast<Constant>(Op0))
738 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
739 Constant *Ops[] = { CLHS, CRHS };
740 return ConstantFoldInstOperands(Instruction::Sub, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000741 Ops, Q.DL, Q.TLI);
Duncan Sands0a2c41682010-12-15 14:07:39 +0000742 }
743
744 // X - undef -> undef
745 // undef - X -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000746 if (match(Op0, m_Undef()) || match(Op1, m_Undef()))
Duncan Sands0a2c41682010-12-15 14:07:39 +0000747 return UndefValue::get(Op0->getType());
748
749 // X - 0 -> X
750 if (match(Op1, m_Zero()))
751 return Op0;
752
753 // X - X -> 0
Duncan Sands772749a2011-01-01 20:08:02 +0000754 if (Op0 == Op1)
Duncan Sands0a2c41682010-12-15 14:07:39 +0000755 return Constant::getNullValue(Op0->getType());
756
Duncan Sands9b8e2bd2011-01-18 09:24:58 +0000757 // (X*2) - X -> X
758 // (X<<1) - X -> X
Craig Topper9f008862014-04-15 04:59:12 +0000759 Value *X = nullptr;
Duncan Sands9b8e2bd2011-01-18 09:24:58 +0000760 if (match(Op0, m_Mul(m_Specific(Op1), m_ConstantInt<2>())) ||
761 match(Op0, m_Shl(m_Specific(Op1), m_One())))
762 return Op1;
763
Duncan Sands99589d02011-01-18 11:50:19 +0000764 // (X + Y) - Z -> X + (Y - Z) or Y + (X - Z) if everything simplifies.
765 // For example, (X + Y) - Y -> X; (Y + X) - Y -> X
Craig Topper9f008862014-04-15 04:59:12 +0000766 Value *Y = nullptr, *Z = Op1;
Duncan Sands99589d02011-01-18 11:50:19 +0000767 if (MaxRecurse && match(Op0, m_Add(m_Value(X), m_Value(Y)))) { // (X + Y) - Z
768 // See if "V === Y - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000769 if (Value *V = SimplifyBinOp(Instruction::Sub, Y, Z, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000770 // It does! Now see if "X + V" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000771 if (Value *W = SimplifyBinOp(Instruction::Add, X, V, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000772 // It does, we successfully reassociated!
773 ++NumReassoc;
774 return W;
775 }
776 // See if "V === X - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000777 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Z, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000778 // It does! Now see if "Y + V" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000779 if (Value *W = SimplifyBinOp(Instruction::Add, Y, V, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000780 // It does, we successfully reassociated!
781 ++NumReassoc;
782 return W;
783 }
784 }
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000785
Duncan Sands99589d02011-01-18 11:50:19 +0000786 // X - (Y + Z) -> (X - Y) - Z or (X - Z) - Y if everything simplifies.
787 // For example, X - (X + 1) -> -1
788 X = Op0;
789 if (MaxRecurse && match(Op1, m_Add(m_Value(Y), m_Value(Z)))) { // X - (Y + Z)
790 // See if "V === X - Y" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000791 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Y, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000792 // It does! Now see if "V - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000793 if (Value *W = SimplifyBinOp(Instruction::Sub, V, Z, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000794 // It does, we successfully reassociated!
795 ++NumReassoc;
796 return W;
797 }
798 // See if "V === X - Z" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000799 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Z, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000800 // It does! Now see if "V - Y" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000801 if (Value *W = SimplifyBinOp(Instruction::Sub, V, Y, Q, MaxRecurse-1)) {
Duncan Sands99589d02011-01-18 11:50:19 +0000802 // It does, we successfully reassociated!
803 ++NumReassoc;
804 return W;
805 }
806 }
807
808 // Z - (X - Y) -> (Z - X) + Y if everything simplifies.
809 // For example, X - (X - Y) -> Y.
810 Z = Op0;
Duncan Sandsd6f1a952011-01-14 15:26:10 +0000811 if (MaxRecurse && match(Op1, m_Sub(m_Value(X), m_Value(Y)))) // Z - (X - Y)
812 // See if "V === Z - X" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000813 if (Value *V = SimplifyBinOp(Instruction::Sub, Z, X, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000814 // It does! Now see if "V + Y" simplifies.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000815 if (Value *W = SimplifyBinOp(Instruction::Add, V, Y, Q, MaxRecurse-1)) {
Duncan Sandsd6f1a952011-01-14 15:26:10 +0000816 // It does, we successfully reassociated!
817 ++NumReassoc;
818 return W;
819 }
820
Duncan Sands395ac42d2012-03-13 14:07:05 +0000821 // trunc(X) - trunc(Y) -> trunc(X - Y) if everything simplifies.
822 if (MaxRecurse && match(Op0, m_Trunc(m_Value(X))) &&
823 match(Op1, m_Trunc(m_Value(Y))))
824 if (X->getType() == Y->getType())
825 // See if "V === X - Y" simplifies.
826 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Y, Q, MaxRecurse-1))
827 // It does! Now see if "trunc V" simplifies.
828 if (Value *W = SimplifyTruncInst(V, Op0->getType(), Q, MaxRecurse-1))
829 // It does, return the simplified "trunc V".
830 return W;
831
832 // Variations on GEP(base, I, ...) - GEP(base, i, ...) -> GEP(null, I-i, ...).
Dan Gohman18c77a12013-01-31 02:50:36 +0000833 if (match(Op0, m_PtrToInt(m_Value(X))) &&
Duncan Sands395ac42d2012-03-13 14:07:05 +0000834 match(Op1, m_PtrToInt(m_Value(Y))))
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000835 if (Constant *Result = computePointerDifference(Q.DL, X, Y))
Duncan Sands395ac42d2012-03-13 14:07:05 +0000836 return ConstantExpr::getIntegerCast(Result, Op0->getType(), true);
837
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000838 // Mul distributes over Sub. Try some generic simplifications based on this.
839 if (Value *V = FactorizeBinOp(Instruction::Sub, Op0, Op1, Instruction::Mul,
Duncan Sandsb8cee002012-03-13 11:42:19 +0000840 Q, MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +0000841 return V;
842
Duncan Sands99589d02011-01-18 11:50:19 +0000843 // i1 sub -> xor.
844 if (MaxRecurse && Op0->getType()->isIntegerTy(1))
Duncan Sandsb8cee002012-03-13 11:42:19 +0000845 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sands99589d02011-01-18 11:50:19 +0000846 return V;
847
Duncan Sands0a2c41682010-12-15 14:07:39 +0000848 // Threading Sub over selects and phi nodes is pointless, so don't bother.
849 // Threading over the select in "A - select(cond, B, C)" means evaluating
850 // "A-B" and "A-C" and seeing if they are equal; but they are equal if and
851 // only if B and C are equal. If B and C are equal then (since we assume
852 // that operands have already been simplified) "select(cond, B, C)" should
853 // have been simplified to the common value of B and C already. Analysing
854 // "A-B" and "A-C" thus gains nothing, but costs compile time. Similarly
855 // for threading over phi nodes.
856
Craig Topper9f008862014-04-15 04:59:12 +0000857 return nullptr;
Duncan Sands0a2c41682010-12-15 14:07:39 +0000858}
859
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000860Value *llvm::SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000861 const DataLayout *DL, const TargetLibraryInfo *TLI,
Chad Rosierc24b86f2011-12-01 03:08:23 +0000862 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000863 return ::SimplifySubInst(Op0, Op1, isNSW, isNUW, Query (DL, TLI, DT),
Duncan Sandsb8cee002012-03-13 11:42:19 +0000864 RecursionLimit);
Duncan Sandsed6d6c32010-12-20 14:47:04 +0000865}
866
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000867/// Given operands for an FAdd, see if we can fold the result. If not, this
868/// returns null.
869static Value *SimplifyFAddInst(Value *Op0, Value *Op1, FastMathFlags FMF,
870 const Query &Q, unsigned MaxRecurse) {
871 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
872 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
873 Constant *Ops[] = { CLHS, CRHS };
874 return ConstantFoldInstOperands(Instruction::FAdd, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000875 Ops, Q.DL, Q.TLI);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000876 }
877
878 // Canonicalize the constant to the RHS.
879 std::swap(Op0, Op1);
880 }
881
882 // fadd X, -0 ==> X
883 if (match(Op1, m_NegZero()))
884 return Op0;
885
886 // fadd X, 0 ==> X, when we know X is not -0
887 if (match(Op1, m_Zero()) &&
888 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0)))
889 return Op0;
890
891 // fadd [nnan ninf] X, (fsub [nnan ninf] 0, X) ==> 0
892 // where nnan and ninf have to occur at least once somewhere in this
893 // expression
Craig Topper9f008862014-04-15 04:59:12 +0000894 Value *SubOp = nullptr;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000895 if (match(Op1, m_FSub(m_AnyZero(), m_Specific(Op0))))
896 SubOp = Op1;
897 else if (match(Op0, m_FSub(m_AnyZero(), m_Specific(Op1))))
898 SubOp = Op0;
899 if (SubOp) {
900 Instruction *FSub = cast<Instruction>(SubOp);
901 if ((FMF.noNaNs() || FSub->hasNoNaNs()) &&
902 (FMF.noInfs() || FSub->hasNoInfs()))
903 return Constant::getNullValue(Op0->getType());
904 }
905
Craig Topper9f008862014-04-15 04:59:12 +0000906 return nullptr;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000907}
908
909/// Given operands for an FSub, see if we can fold the result. If not, this
910/// returns null.
911static Value *SimplifyFSubInst(Value *Op0, Value *Op1, FastMathFlags FMF,
912 const Query &Q, unsigned MaxRecurse) {
913 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
914 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
915 Constant *Ops[] = { CLHS, CRHS };
916 return ConstantFoldInstOperands(Instruction::FSub, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000917 Ops, Q.DL, Q.TLI);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000918 }
919 }
920
921 // fsub X, 0 ==> X
922 if (match(Op1, m_Zero()))
923 return Op0;
924
925 // fsub X, -0 ==> X, when we know X is not -0
926 if (match(Op1, m_NegZero()) &&
927 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0)))
928 return Op0;
929
930 // fsub 0, (fsub -0.0, X) ==> X
931 Value *X;
932 if (match(Op0, m_AnyZero())) {
933 if (match(Op1, m_FSub(m_NegZero(), m_Value(X))))
934 return X;
935 if (FMF.noSignedZeros() && match(Op1, m_FSub(m_AnyZero(), m_Value(X))))
936 return X;
937 }
938
939 // fsub nnan ninf x, x ==> 0.0
940 if (FMF.noNaNs() && FMF.noInfs() && Op0 == Op1)
941 return Constant::getNullValue(Op0->getType());
942
Craig Topper9f008862014-04-15 04:59:12 +0000943 return nullptr;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000944}
945
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000946/// Given the operands for an FMul, see if we can fold the result
947static Value *SimplifyFMulInst(Value *Op0, Value *Op1,
948 FastMathFlags FMF,
949 const Query &Q,
950 unsigned MaxRecurse) {
951 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
952 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
953 Constant *Ops[] = { CLHS, CRHS };
954 return ConstantFoldInstOperands(Instruction::FMul, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000955 Ops, Q.DL, Q.TLI);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000956 }
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000957
958 // Canonicalize the constant to the RHS.
959 std::swap(Op0, Op1);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000960 }
961
Michael Ilsemanbb6f6912012-12-12 00:27:46 +0000962 // fmul X, 1.0 ==> X
963 if (match(Op1, m_FPOne()))
964 return Op0;
965
966 // fmul nnan nsz X, 0 ==> 0
967 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op1, m_AnyZero()))
968 return Op1;
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000969
Craig Topper9f008862014-04-15 04:59:12 +0000970 return nullptr;
Michael Ilsemanbe9137a2012-11-27 00:46:26 +0000971}
972
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000973/// SimplifyMulInst - Given operands for a Mul, see if we can
974/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +0000975static Value *SimplifyMulInst(Value *Op0, Value *Op1, const Query &Q,
976 unsigned MaxRecurse) {
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000977 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
978 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
979 Constant *Ops[] = { CLHS, CRHS };
980 return ConstantFoldInstOperands(Instruction::Mul, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000981 Ops, Q.DL, Q.TLI);
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000982 }
983
984 // Canonicalize the constant to the RHS.
985 std::swap(Op0, Op1);
986 }
987
988 // X * undef -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +0000989 if (match(Op1, m_Undef()))
Duncan Sandsd0eb6d32010-12-21 14:00:22 +0000990 return Constant::getNullValue(Op0->getType());
991
992 // X * 0 -> 0
993 if (match(Op1, m_Zero()))
994 return Op1;
995
996 // X * 1 -> X
997 if (match(Op1, m_One()))
998 return Op0;
999
Duncan Sandsb67edc62011-01-30 18:03:50 +00001000 // (X / Y) * Y -> X if the division is exact.
Craig Topper9f008862014-04-15 04:59:12 +00001001 Value *X = nullptr;
Benjamin Kramer9442cd02012-01-01 17:55:30 +00001002 if (match(Op0, m_Exact(m_IDiv(m_Value(X), m_Specific(Op1)))) || // (X / Y) * Y
1003 match(Op1, m_Exact(m_IDiv(m_Value(X), m_Specific(Op0))))) // Y * (X / Y)
1004 return X;
Duncan Sandsb67edc62011-01-30 18:03:50 +00001005
Nick Lewyckyb89d9a42011-01-29 19:55:23 +00001006 // i1 mul -> and.
Duncan Sands5def0d62010-12-21 14:48:48 +00001007 if (MaxRecurse && Op0->getType()->isIntegerTy(1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001008 if (Value *V = SimplifyAndInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sandsfecc6422010-12-21 15:03:43 +00001009 return V;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00001010
1011 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001012 if (Value *V = SimplifyAssociativeBinOp(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00001013 MaxRecurse))
1014 return V;
1015
1016 // Mul distributes over Add. Try some generic simplifications based on this.
1017 if (Value *V = ExpandBinOp(Instruction::Mul, Op0, Op1, Instruction::Add,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001018 Q, MaxRecurse))
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00001019 return V;
1020
1021 // If the operation is with the result of a select instruction, check whether
1022 // operating on either branch of the select always yields the same value.
1023 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001024 if (Value *V = ThreadBinOpOverSelect(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00001025 MaxRecurse))
1026 return V;
1027
1028 // If the operation is with the result of a phi instruction, check whether
1029 // operating on all incoming values of the phi always yields the same value.
1030 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001031 if (Value *V = ThreadBinOpOverPHI(Instruction::Mul, Op0, Op1, Q,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00001032 MaxRecurse))
1033 return V;
1034
Craig Topper9f008862014-04-15 04:59:12 +00001035 return nullptr;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00001036}
1037
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00001038Value *llvm::SimplifyFAddInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001039 const DataLayout *DL, const TargetLibraryInfo *TLI,
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00001040 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001041 return ::SimplifyFAddInst(Op0, Op1, FMF, Query (DL, TLI, DT), RecursionLimit);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00001042}
1043
1044Value *llvm::SimplifyFSubInst(Value *Op0, Value *Op1, FastMathFlags FMF,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001045 const DataLayout *DL, const TargetLibraryInfo *TLI,
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00001046 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001047 return ::SimplifyFSubInst(Op0, Op1, FMF, Query (DL, TLI, DT), RecursionLimit);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00001048}
1049
Michael Ilsemanbe9137a2012-11-27 00:46:26 +00001050Value *llvm::SimplifyFMulInst(Value *Op0, Value *Op1,
1051 FastMathFlags FMF,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001052 const DataLayout *DL,
Michael Ilsemanbe9137a2012-11-27 00:46:26 +00001053 const TargetLibraryInfo *TLI,
1054 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001055 return ::SimplifyFMulInst(Op0, Op1, FMF, Query (DL, TLI, DT), RecursionLimit);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +00001056}
1057
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001058Value *llvm::SimplifyMulInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001059 const TargetLibraryInfo *TLI,
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00001060 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001061 return ::SimplifyMulInst(Op0, Op1, Query (DL, TLI, DT), RecursionLimit);
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00001062}
1063
Duncan Sands771e82a2011-01-28 16:51:11 +00001064/// SimplifyDiv - Given operands for an SDiv or UDiv, see if we can
1065/// fold the result. If not, this returns null.
Anders Carlsson36c6d232011-02-05 18:33:43 +00001066static Value *SimplifyDiv(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001067 const Query &Q, unsigned MaxRecurse) {
Duncan Sands771e82a2011-01-28 16:51:11 +00001068 if (Constant *C0 = dyn_cast<Constant>(Op0)) {
1069 if (Constant *C1 = dyn_cast<Constant>(Op1)) {
1070 Constant *Ops[] = { C0, C1 };
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001071 return ConstantFoldInstOperands(Opcode, C0->getType(), Ops, Q.DL, Q.TLI);
Duncan Sands771e82a2011-01-28 16:51:11 +00001072 }
1073 }
1074
Duncan Sands65995fa2011-01-28 18:50:50 +00001075 bool isSigned = Opcode == Instruction::SDiv;
1076
Duncan Sands771e82a2011-01-28 16:51:11 +00001077 // X / undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001078 if (match(Op1, m_Undef()))
Duncan Sands771e82a2011-01-28 16:51:11 +00001079 return Op1;
1080
1081 // undef / X -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001082 if (match(Op0, m_Undef()))
Duncan Sands771e82a2011-01-28 16:51:11 +00001083 return Constant::getNullValue(Op0->getType());
1084
1085 // 0 / X -> 0, we don't need to preserve faults!
1086 if (match(Op0, m_Zero()))
1087 return Op0;
1088
1089 // X / 1 -> X
1090 if (match(Op1, m_One()))
1091 return Op0;
Duncan Sands771e82a2011-01-28 16:51:11 +00001092
1093 if (Op0->getType()->isIntegerTy(1))
1094 // It can't be division by zero, hence it must be division by one.
1095 return Op0;
1096
1097 // X / X -> 1
1098 if (Op0 == Op1)
1099 return ConstantInt::get(Op0->getType(), 1);
1100
1101 // (X * Y) / Y -> X if the multiplication does not overflow.
Craig Topper9f008862014-04-15 04:59:12 +00001102 Value *X = nullptr, *Y = nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001103 if (match(Op0, m_Mul(m_Value(X), m_Value(Y))) && (X == Op1 || Y == Op1)) {
1104 if (Y != Op1) std::swap(X, Y); // Ensure expression is (X * Y) / Y, Y = Op1
Duncan Sands7cb61e52011-10-27 19:16:21 +00001105 OverflowingBinaryOperator *Mul = cast<OverflowingBinaryOperator>(Op0);
Duncan Sands5747aba2011-02-02 20:52:00 +00001106 // If the Mul knows it does not overflow, then we are good to go.
1107 if ((isSigned && Mul->hasNoSignedWrap()) ||
1108 (!isSigned && Mul->hasNoUnsignedWrap()))
1109 return X;
Duncan Sands771e82a2011-01-28 16:51:11 +00001110 // If X has the form X = A / Y then X * Y cannot overflow.
1111 if (BinaryOperator *Div = dyn_cast<BinaryOperator>(X))
1112 if (Div->getOpcode() == Opcode && Div->getOperand(1) == Y)
1113 return X;
1114 }
1115
Duncan Sands65995fa2011-01-28 18:50:50 +00001116 // (X rem Y) / Y -> 0
1117 if ((isSigned && match(Op0, m_SRem(m_Value(), m_Specific(Op1)))) ||
1118 (!isSigned && match(Op0, m_URem(m_Value(), m_Specific(Op1)))))
1119 return Constant::getNullValue(Op0->getType());
1120
1121 // If the operation is with the result of a select instruction, check whether
1122 // operating on either branch of the select always yields the same value.
1123 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001124 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands65995fa2011-01-28 18:50:50 +00001125 return V;
1126
1127 // If the operation is with the result of a phi instruction, check whether
1128 // operating on all incoming values of the phi always yields the same value.
1129 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001130 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands65995fa2011-01-28 18:50:50 +00001131 return V;
1132
Craig Topper9f008862014-04-15 04:59:12 +00001133 return nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001134}
1135
1136/// SimplifySDivInst - Given operands for an SDiv, see if we can
1137/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001138static Value *SimplifySDivInst(Value *Op0, Value *Op1, const Query &Q,
1139 unsigned MaxRecurse) {
1140 if (Value *V = SimplifyDiv(Instruction::SDiv, Op0, Op1, Q, MaxRecurse))
Duncan Sands771e82a2011-01-28 16:51:11 +00001141 return V;
1142
Craig Topper9f008862014-04-15 04:59:12 +00001143 return nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001144}
1145
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001146Value *llvm::SimplifySDivInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001147 const TargetLibraryInfo *TLI,
Frits van Bommelc2549662011-01-29 15:26:31 +00001148 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001149 return ::SimplifySDivInst(Op0, Op1, Query (DL, TLI, DT), RecursionLimit);
Duncan Sands771e82a2011-01-28 16:51:11 +00001150}
1151
1152/// SimplifyUDivInst - Given operands for a UDiv, see if we can
1153/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001154static Value *SimplifyUDivInst(Value *Op0, Value *Op1, const Query &Q,
1155 unsigned MaxRecurse) {
1156 if (Value *V = SimplifyDiv(Instruction::UDiv, Op0, Op1, Q, MaxRecurse))
Duncan Sands771e82a2011-01-28 16:51:11 +00001157 return V;
1158
Craig Topper9f008862014-04-15 04:59:12 +00001159 return nullptr;
Duncan Sands771e82a2011-01-28 16:51:11 +00001160}
1161
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001162Value *llvm::SimplifyUDivInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001163 const TargetLibraryInfo *TLI,
Frits van Bommelc2549662011-01-29 15:26:31 +00001164 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001165 return ::SimplifyUDivInst(Op0, Op1, Query (DL, TLI, DT), RecursionLimit);
Duncan Sands771e82a2011-01-28 16:51:11 +00001166}
1167
Duncan Sandsb8cee002012-03-13 11:42:19 +00001168static Value *SimplifyFDivInst(Value *Op0, Value *Op1, const Query &Q,
1169 unsigned) {
Frits van Bommelc2549662011-01-29 15:26:31 +00001170 // undef / X -> undef (the undef could be a snan).
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001171 if (match(Op0, m_Undef()))
Frits van Bommelc2549662011-01-29 15:26:31 +00001172 return Op0;
1173
1174 // X / undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001175 if (match(Op1, m_Undef()))
Frits van Bommelc2549662011-01-29 15:26:31 +00001176 return Op1;
1177
Craig Topper9f008862014-04-15 04:59:12 +00001178 return nullptr;
Frits van Bommelc2549662011-01-29 15:26:31 +00001179}
1180
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001181Value *llvm::SimplifyFDivInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001182 const TargetLibraryInfo *TLI,
Frits van Bommelc2549662011-01-29 15:26:31 +00001183 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001184 return ::SimplifyFDivInst(Op0, Op1, Query (DL, TLI, DT), RecursionLimit);
Frits van Bommelc2549662011-01-29 15:26:31 +00001185}
1186
Duncan Sandsa3e36992011-05-02 16:27:02 +00001187/// SimplifyRem - Given operands for an SRem or URem, see if we can
1188/// fold the result. If not, this returns null.
1189static Value *SimplifyRem(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001190 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsa3e36992011-05-02 16:27:02 +00001191 if (Constant *C0 = dyn_cast<Constant>(Op0)) {
1192 if (Constant *C1 = dyn_cast<Constant>(Op1)) {
1193 Constant *Ops[] = { C0, C1 };
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001194 return ConstantFoldInstOperands(Opcode, C0->getType(), Ops, Q.DL, Q.TLI);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001195 }
1196 }
1197
Duncan Sandsa3e36992011-05-02 16:27:02 +00001198 // X % undef -> undef
1199 if (match(Op1, m_Undef()))
1200 return Op1;
1201
1202 // undef % X -> 0
1203 if (match(Op0, m_Undef()))
1204 return Constant::getNullValue(Op0->getType());
1205
1206 // 0 % X -> 0, we don't need to preserve faults!
1207 if (match(Op0, m_Zero()))
1208 return Op0;
1209
1210 // X % 0 -> undef, we don't need to preserve faults!
1211 if (match(Op1, m_Zero()))
1212 return UndefValue::get(Op0->getType());
1213
1214 // X % 1 -> 0
1215 if (match(Op1, m_One()))
1216 return Constant::getNullValue(Op0->getType());
1217
1218 if (Op0->getType()->isIntegerTy(1))
1219 // It can't be remainder by zero, hence it must be remainder by one.
1220 return Constant::getNullValue(Op0->getType());
1221
1222 // X % X -> 0
1223 if (Op0 == Op1)
1224 return Constant::getNullValue(Op0->getType());
1225
1226 // If the operation is with the result of a select instruction, check whether
1227 // operating on either branch of the select always yields the same value.
1228 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001229 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001230 return V;
1231
1232 // If the operation is with the result of a phi instruction, check whether
1233 // operating on all incoming values of the phi always yields the same value.
1234 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001235 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001236 return V;
1237
Craig Topper9f008862014-04-15 04:59:12 +00001238 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001239}
1240
1241/// SimplifySRemInst - Given operands for an SRem, see if we can
1242/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001243static Value *SimplifySRemInst(Value *Op0, Value *Op1, const Query &Q,
1244 unsigned MaxRecurse) {
1245 if (Value *V = SimplifyRem(Instruction::SRem, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001246 return V;
1247
Craig Topper9f008862014-04-15 04:59:12 +00001248 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001249}
1250
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001251Value *llvm::SimplifySRemInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001252 const TargetLibraryInfo *TLI,
Duncan Sandsa3e36992011-05-02 16:27:02 +00001253 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001254 return ::SimplifySRemInst(Op0, Op1, Query (DL, TLI, DT), RecursionLimit);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001255}
1256
1257/// SimplifyURemInst - Given operands for a URem, see if we can
1258/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001259static Value *SimplifyURemInst(Value *Op0, Value *Op1, const Query &Q,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001260 unsigned MaxRecurse) {
Duncan Sandsb8cee002012-03-13 11:42:19 +00001261 if (Value *V = SimplifyRem(Instruction::URem, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e36992011-05-02 16:27:02 +00001262 return V;
1263
Craig Topper9f008862014-04-15 04:59:12 +00001264 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001265}
1266
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001267Value *llvm::SimplifyURemInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001268 const TargetLibraryInfo *TLI,
Duncan Sandsa3e36992011-05-02 16:27:02 +00001269 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001270 return ::SimplifyURemInst(Op0, Op1, Query (DL, TLI, DT), RecursionLimit);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001271}
1272
Duncan Sandsb8cee002012-03-13 11:42:19 +00001273static Value *SimplifyFRemInst(Value *Op0, Value *Op1, const Query &,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001274 unsigned) {
Duncan Sandsa3e36992011-05-02 16:27:02 +00001275 // undef % X -> undef (the undef could be a snan).
1276 if (match(Op0, m_Undef()))
1277 return Op0;
1278
1279 // X % undef -> undef
1280 if (match(Op1, m_Undef()))
1281 return Op1;
1282
Craig Topper9f008862014-04-15 04:59:12 +00001283 return nullptr;
Duncan Sandsa3e36992011-05-02 16:27:02 +00001284}
1285
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001286Value *llvm::SimplifyFRemInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001287 const TargetLibraryInfo *TLI,
Duncan Sandsa3e36992011-05-02 16:27:02 +00001288 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001289 return ::SimplifyFRemInst(Op0, Op1, Query (DL, TLI, DT), RecursionLimit);
Duncan Sandsa3e36992011-05-02 16:27:02 +00001290}
1291
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00001292/// isUndefShift - Returns true if a shift by \c Amount always yields undef.
1293static bool isUndefShift(Value *Amount) {
1294 Constant *C = dyn_cast<Constant>(Amount);
1295 if (!C)
1296 return false;
1297
1298 // X shift by undef -> undef because it may shift by the bitwidth.
1299 if (isa<UndefValue>(C))
1300 return true;
1301
1302 // Shifting by the bitwidth or more is undefined.
1303 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
1304 if (CI->getValue().getLimitedValue() >=
1305 CI->getType()->getScalarSizeInBits())
1306 return true;
1307
1308 // If all lanes of a vector shift are undefined the whole shift is.
1309 if (isa<ConstantVector>(C) || isa<ConstantDataVector>(C)) {
1310 for (unsigned I = 0, E = C->getType()->getVectorNumElements(); I != E; ++I)
1311 if (!isUndefShift(C->getAggregateElement(I)))
1312 return false;
1313 return true;
1314 }
1315
1316 return false;
1317}
1318
Duncan Sands571fd9a2011-01-14 14:44:12 +00001319/// SimplifyShift - Given operands for an Shl, LShr or AShr, see if we can
Duncan Sands7f60dc12011-01-14 00:37:45 +00001320/// fold the result. If not, this returns null.
Duncan Sands571fd9a2011-01-14 14:44:12 +00001321static Value *SimplifyShift(unsigned Opcode, Value *Op0, Value *Op1,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001322 const Query &Q, unsigned MaxRecurse) {
Duncan Sands7f60dc12011-01-14 00:37:45 +00001323 if (Constant *C0 = dyn_cast<Constant>(Op0)) {
1324 if (Constant *C1 = dyn_cast<Constant>(Op1)) {
1325 Constant *Ops[] = { C0, C1 };
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001326 return ConstantFoldInstOperands(Opcode, C0->getType(), Ops, Q.DL, Q.TLI);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001327 }
1328 }
1329
Duncan Sands571fd9a2011-01-14 14:44:12 +00001330 // 0 shift by X -> 0
Duncan Sands7f60dc12011-01-14 00:37:45 +00001331 if (match(Op0, m_Zero()))
1332 return Op0;
1333
Duncan Sands571fd9a2011-01-14 14:44:12 +00001334 // X shift by 0 -> X
Duncan Sands7f60dc12011-01-14 00:37:45 +00001335 if (match(Op1, m_Zero()))
1336 return Op0;
1337
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00001338 // Fold undefined shifts.
1339 if (isUndefShift(Op1))
1340 return UndefValue::get(Op0->getType());
Duncan Sands7f60dc12011-01-14 00:37:45 +00001341
Duncan Sands571fd9a2011-01-14 14:44:12 +00001342 // If the operation is with the result of a select instruction, check whether
1343 // operating on either branch of the select always yields the same value.
1344 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001345 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001346 return V;
1347
1348 // If the operation is with the result of a phi instruction, check whether
1349 // operating on all incoming values of the phi always yields the same value.
1350 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001351 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001352 return V;
1353
Craig Topper9f008862014-04-15 04:59:12 +00001354 return nullptr;
Duncan Sands571fd9a2011-01-14 14:44:12 +00001355}
1356
1357/// SimplifyShlInst - Given operands for an Shl, see if we can
1358/// fold the result. If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001359static Value *SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001360 const Query &Q, unsigned MaxRecurse) {
1361 if (Value *V = SimplifyShift(Instruction::Shl, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001362 return V;
1363
1364 // undef << X -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001365 if (match(Op0, m_Undef()))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001366 return Constant::getNullValue(Op0->getType());
1367
Chris Lattner9e4aa022011-02-09 17:15:04 +00001368 // (X >> A) << A -> X
1369 Value *X;
Benjamin Kramer9442cd02012-01-01 17:55:30 +00001370 if (match(Op0, m_Exact(m_Shr(m_Value(X), m_Specific(Op1)))))
Chris Lattner9e4aa022011-02-09 17:15:04 +00001371 return X;
Craig Topper9f008862014-04-15 04:59:12 +00001372 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001373}
1374
Chris Lattner9e4aa022011-02-09 17:15:04 +00001375Value *llvm::SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001376 const DataLayout *DL, const TargetLibraryInfo *TLI,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001377 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001378 return ::SimplifyShlInst(Op0, Op1, isNSW, isNUW, Query (DL, TLI, DT),
Duncan Sandsb8cee002012-03-13 11:42:19 +00001379 RecursionLimit);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001380}
1381
1382/// SimplifyLShrInst - Given operands for an LShr, see if we can
1383/// fold the result. If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001384static Value *SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001385 const Query &Q, unsigned MaxRecurse) {
1386 if (Value *V = SimplifyShift(Instruction::LShr, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001387 return V;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001388
David Majnemera80fed72013-07-09 22:01:22 +00001389 // X >> X -> 0
1390 if (Op0 == Op1)
1391 return Constant::getNullValue(Op0->getType());
1392
Duncan Sands7f60dc12011-01-14 00:37:45 +00001393 // undef >>l X -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001394 if (match(Op0, m_Undef()))
Duncan Sands7f60dc12011-01-14 00:37:45 +00001395 return Constant::getNullValue(Op0->getType());
1396
Chris Lattner9e4aa022011-02-09 17:15:04 +00001397 // (X << A) >> A -> X
1398 Value *X;
1399 if (match(Op0, m_Shl(m_Value(X), m_Specific(Op1))) &&
1400 cast<OverflowingBinaryOperator>(Op0)->hasNoUnsignedWrap())
1401 return X;
Duncan Sandsd114ab32011-02-13 17:15:40 +00001402
Craig Topper9f008862014-04-15 04:59:12 +00001403 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001404}
1405
Chris Lattner9e4aa022011-02-09 17:15:04 +00001406Value *llvm::SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001407 const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001408 const TargetLibraryInfo *TLI,
1409 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001410 return ::SimplifyLShrInst(Op0, Op1, isExact, Query (DL, TLI, DT),
Duncan Sandsb8cee002012-03-13 11:42:19 +00001411 RecursionLimit);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001412}
1413
1414/// SimplifyAShrInst - Given operands for an AShr, see if we can
1415/// fold the result. If not, this returns null.
Chris Lattner9e4aa022011-02-09 17:15:04 +00001416static Value *SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001417 const Query &Q, unsigned MaxRecurse) {
1418 if (Value *V = SimplifyShift(Instruction::AShr, Op0, Op1, Q, MaxRecurse))
Duncan Sands571fd9a2011-01-14 14:44:12 +00001419 return V;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001420
David Majnemera80fed72013-07-09 22:01:22 +00001421 // X >> X -> 0
1422 if (Op0 == Op1)
1423 return Constant::getNullValue(Op0->getType());
1424
Duncan Sands7f60dc12011-01-14 00:37:45 +00001425 // all ones >>a X -> all ones
1426 if (match(Op0, m_AllOnes()))
1427 return Op0;
1428
1429 // undef >>a X -> all ones
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001430 if (match(Op0, m_Undef()))
Duncan Sands7f60dc12011-01-14 00:37:45 +00001431 return Constant::getAllOnesValue(Op0->getType());
1432
Chris Lattner9e4aa022011-02-09 17:15:04 +00001433 // (X << A) >> A -> X
1434 Value *X;
1435 if (match(Op0, m_Shl(m_Value(X), m_Specific(Op1))) &&
1436 cast<OverflowingBinaryOperator>(Op0)->hasNoSignedWrap())
1437 return X;
Duncan Sandsd114ab32011-02-13 17:15:40 +00001438
Craig Topper9f008862014-04-15 04:59:12 +00001439 return nullptr;
Duncan Sands7f60dc12011-01-14 00:37:45 +00001440}
1441
Chris Lattner9e4aa022011-02-09 17:15:04 +00001442Value *llvm::SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001443 const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001444 const TargetLibraryInfo *TLI,
1445 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001446 return ::SimplifyAShrInst(Op0, Op1, isExact, Query (DL, TLI, DT),
Duncan Sandsb8cee002012-03-13 11:42:19 +00001447 RecursionLimit);
Duncan Sands7f60dc12011-01-14 00:37:45 +00001448}
1449
Chris Lattnera71e9d62009-11-10 00:55:12 +00001450/// SimplifyAndInst - Given operands for an And, see if we can
Chris Lattner084a1b52009-11-09 22:57:59 +00001451/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001452static Value *SimplifyAndInst(Value *Op0, Value *Op1, const Query &Q,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001453 unsigned MaxRecurse) {
Chris Lattnera71e9d62009-11-10 00:55:12 +00001454 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
1455 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
1456 Constant *Ops[] = { CLHS, CRHS };
1457 return ConstantFoldInstOperands(Instruction::And, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001458 Ops, Q.DL, Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00001459 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001460
Chris Lattnera71e9d62009-11-10 00:55:12 +00001461 // Canonicalize the constant to the RHS.
1462 std::swap(Op0, Op1);
1463 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001464
Chris Lattnera71e9d62009-11-10 00:55:12 +00001465 // X & undef -> 0
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001466 if (match(Op1, m_Undef()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001467 return Constant::getNullValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001468
Chris Lattnera71e9d62009-11-10 00:55:12 +00001469 // X & X = X
Duncan Sands772749a2011-01-01 20:08:02 +00001470 if (Op0 == Op1)
Chris Lattnera71e9d62009-11-10 00:55:12 +00001471 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001472
Duncan Sandsc89ac072010-11-17 18:52:15 +00001473 // X & 0 = 0
1474 if (match(Op1, m_Zero()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001475 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001476
Duncan Sandsc89ac072010-11-17 18:52:15 +00001477 // X & -1 = X
1478 if (match(Op1, m_AllOnes()))
1479 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001480
Chris Lattnera71e9d62009-11-10 00:55:12 +00001481 // A & ~A = ~A & A = 0
Chris Lattner9e4aa022011-02-09 17:15:04 +00001482 if (match(Op0, m_Not(m_Specific(Op1))) ||
1483 match(Op1, m_Not(m_Specific(Op0))))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001484 return Constant::getNullValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001485
Chris Lattnera71e9d62009-11-10 00:55:12 +00001486 // (A | ?) & A = A
Craig Topper9f008862014-04-15 04:59:12 +00001487 Value *A = nullptr, *B = nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00001488 if (match(Op0, m_Or(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001489 (A == Op1 || B == Op1))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001490 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001491
Chris Lattnera71e9d62009-11-10 00:55:12 +00001492 // A & (A | ?) = A
1493 if (match(Op1, m_Or(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001494 (A == Op0 || B == Op0))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001495 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001496
Duncan Sandsba286d72011-10-26 20:55:21 +00001497 // A & (-A) = A if A is a power of two or zero.
1498 if (match(Op0, m_Neg(m_Specific(Op1))) ||
1499 match(Op1, m_Neg(m_Specific(Op0)))) {
Rafael Espindola319f74c2012-12-13 03:37:24 +00001500 if (isKnownToBeAPowerOfTwo(Op0, /*OrZero*/true))
Duncan Sandsba286d72011-10-26 20:55:21 +00001501 return Op0;
Rafael Espindola319f74c2012-12-13 03:37:24 +00001502 if (isKnownToBeAPowerOfTwo(Op1, /*OrZero*/true))
Duncan Sandsba286d72011-10-26 20:55:21 +00001503 return Op1;
1504 }
1505
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001506 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001507 if (Value *V = SimplifyAssociativeBinOp(Instruction::And, Op0, Op1, Q,
1508 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001509 return V;
Benjamin Kramer8c35fb02010-09-10 22:39:55 +00001510
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001511 // And distributes over Or. Try some generic simplifications based on this.
1512 if (Value *V = ExpandBinOp(Instruction::And, Op0, Op1, Instruction::Or,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001513 Q, MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001514 return V;
1515
1516 // And distributes over Xor. Try some generic simplifications based on this.
1517 if (Value *V = ExpandBinOp(Instruction::And, Op0, Op1, Instruction::Xor,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001518 Q, MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001519 return V;
1520
1521 // Or distributes over And. Try some generic simplifications based on this.
1522 if (Value *V = FactorizeBinOp(Instruction::And, Op0, Op1, Instruction::Or,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001523 Q, MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001524 return V;
1525
Duncan Sandsb0579e92010-11-10 13:00:08 +00001526 // If the operation is with the result of a select instruction, check whether
1527 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001528 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001529 if (Value *V = ThreadBinOpOverSelect(Instruction::And, Op0, Op1, Q,
1530 MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001531 return V;
1532
1533 // If the operation is with the result of a phi instruction, check whether
1534 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001535 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001536 if (Value *V = ThreadBinOpOverPHI(Instruction::And, Op0, Op1, Q,
Duncan Sandsf64e6902010-12-21 09:09:15 +00001537 MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00001538 return V;
1539
Craig Topper9f008862014-04-15 04:59:12 +00001540 return nullptr;
Chris Lattner084a1b52009-11-09 22:57:59 +00001541}
1542
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001543Value *llvm::SimplifyAndInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001544 const TargetLibraryInfo *TLI,
Duncan Sands5ffc2982010-11-16 12:16:38 +00001545 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001546 return ::SimplifyAndInst(Op0, Op1, Query (DL, TLI, DT), RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001547}
1548
Chris Lattnera71e9d62009-11-10 00:55:12 +00001549/// SimplifyOrInst - Given operands for an Or, see if we can
1550/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001551static Value *SimplifyOrInst(Value *Op0, Value *Op1, const Query &Q,
1552 unsigned MaxRecurse) {
Chris Lattnera71e9d62009-11-10 00:55:12 +00001553 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
1554 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
1555 Constant *Ops[] = { CLHS, CRHS };
1556 return ConstantFoldInstOperands(Instruction::Or, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001557 Ops, Q.DL, Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00001558 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001559
Chris Lattnera71e9d62009-11-10 00:55:12 +00001560 // Canonicalize the constant to the RHS.
1561 std::swap(Op0, Op1);
1562 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001563
Chris Lattnera71e9d62009-11-10 00:55:12 +00001564 // X | undef -> -1
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001565 if (match(Op1, m_Undef()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001566 return Constant::getAllOnesValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001567
Chris Lattnera71e9d62009-11-10 00:55:12 +00001568 // X | X = X
Duncan Sands772749a2011-01-01 20:08:02 +00001569 if (Op0 == Op1)
Chris Lattnera71e9d62009-11-10 00:55:12 +00001570 return Op0;
1571
Duncan Sandsc89ac072010-11-17 18:52:15 +00001572 // X | 0 = X
1573 if (match(Op1, m_Zero()))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001574 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001575
Duncan Sandsc89ac072010-11-17 18:52:15 +00001576 // X | -1 = -1
1577 if (match(Op1, m_AllOnes()))
1578 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001579
Chris Lattnera71e9d62009-11-10 00:55:12 +00001580 // A | ~A = ~A | A = -1
Chris Lattner9e4aa022011-02-09 17:15:04 +00001581 if (match(Op0, m_Not(m_Specific(Op1))) ||
1582 match(Op1, m_Not(m_Specific(Op0))))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001583 return Constant::getAllOnesValue(Op0->getType());
Duncan Sands7e800d62010-11-14 11:23:23 +00001584
Chris Lattnera71e9d62009-11-10 00:55:12 +00001585 // (A & ?) | A = A
Craig Topper9f008862014-04-15 04:59:12 +00001586 Value *A = nullptr, *B = nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00001587 if (match(Op0, m_And(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001588 (A == Op1 || B == Op1))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001589 return Op1;
Duncan Sands7e800d62010-11-14 11:23:23 +00001590
Chris Lattnera71e9d62009-11-10 00:55:12 +00001591 // A | (A & ?) = A
1592 if (match(Op1, m_And(m_Value(A), m_Value(B))) &&
Duncan Sands772749a2011-01-01 20:08:02 +00001593 (A == Op0 || B == Op0))
Chris Lattnera71e9d62009-11-10 00:55:12 +00001594 return Op0;
Duncan Sands7e800d62010-11-14 11:23:23 +00001595
Benjamin Kramer5b7a4e02011-02-20 15:20:01 +00001596 // ~(A & ?) | A = -1
1597 if (match(Op0, m_Not(m_And(m_Value(A), m_Value(B)))) &&
1598 (A == Op1 || B == Op1))
1599 return Constant::getAllOnesValue(Op1->getType());
1600
1601 // A | ~(A & ?) = -1
1602 if (match(Op1, m_Not(m_And(m_Value(A), m_Value(B)))) &&
1603 (A == Op0 || B == Op0))
1604 return Constant::getAllOnesValue(Op0->getType());
1605
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001606 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001607 if (Value *V = SimplifyAssociativeBinOp(Instruction::Or, Op0, Op1, Q,
1608 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001609 return V;
Benjamin Kramer8c35fb02010-09-10 22:39:55 +00001610
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001611 // Or distributes over And. Try some generic simplifications based on this.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001612 if (Value *V = ExpandBinOp(Instruction::Or, Op0, Op1, Instruction::And, Q,
1613 MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001614 return V;
1615
1616 // And distributes over Or. Try some generic simplifications based on this.
1617 if (Value *V = FactorizeBinOp(Instruction::Or, Op0, Op1, Instruction::And,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001618 Q, MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001619 return V;
1620
Duncan Sandsb0579e92010-11-10 13:00:08 +00001621 // If the operation is with the result of a select instruction, check whether
1622 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001623 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001624 if (Value *V = ThreadBinOpOverSelect(Instruction::Or, Op0, Op1, Q,
Duncan Sandsf64e6902010-12-21 09:09:15 +00001625 MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001626 return V;
1627
Nick Lewycky8561a492014-06-19 03:51:46 +00001628 // (A & C)|(B & D)
1629 Value *C = nullptr, *D = nullptr;
1630 if (match(Op0, m_And(m_Value(A), m_Value(C))) &&
1631 match(Op1, m_And(m_Value(B), m_Value(D)))) {
1632 ConstantInt *C1 = dyn_cast<ConstantInt>(C);
1633 ConstantInt *C2 = dyn_cast<ConstantInt>(D);
1634 if (C1 && C2 && (C1->getValue() == ~C2->getValue())) {
1635 // (A & C1)|(B & C2)
1636 // If we have: ((V + N) & C1) | (V & C2)
1637 // .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0
1638 // replace with V+N.
1639 Value *V1, *V2;
1640 if ((C2->getValue() & (C2->getValue() + 1)) == 0 && // C2 == 0+1+
1641 match(A, m_Add(m_Value(V1), m_Value(V2)))) {
1642 // Add commutes, try both ways.
1643 if (V1 == B && MaskedValueIsZero(V2, C2->getValue()))
1644 return A;
1645 if (V2 == B && MaskedValueIsZero(V1, C2->getValue()))
1646 return A;
1647 }
1648 // Or commutes, try both ways.
1649 if ((C1->getValue() & (C1->getValue() + 1)) == 0 &&
1650 match(B, m_Add(m_Value(V1), m_Value(V2)))) {
1651 // Add commutes, try both ways.
1652 if (V1 == A && MaskedValueIsZero(V2, C1->getValue()))
1653 return B;
1654 if (V2 == A && MaskedValueIsZero(V1, C1->getValue()))
1655 return B;
1656 }
1657 }
1658 }
1659
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001660 // If the operation is with the result of a phi instruction, check whether
1661 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00001662 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sandsb8cee002012-03-13 11:42:19 +00001663 if (Value *V = ThreadBinOpOverPHI(Instruction::Or, Op0, Op1, Q, MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00001664 return V;
1665
Craig Topper9f008862014-04-15 04:59:12 +00001666 return nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00001667}
1668
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001669Value *llvm::SimplifyOrInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001670 const TargetLibraryInfo *TLI,
Duncan Sands5ffc2982010-11-16 12:16:38 +00001671 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001672 return ::SimplifyOrInst(Op0, Op1, Query (DL, TLI, DT), RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001673}
Chris Lattnera71e9d62009-11-10 00:55:12 +00001674
Duncan Sandsc89ac072010-11-17 18:52:15 +00001675/// SimplifyXorInst - Given operands for a Xor, see if we can
1676/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001677static Value *SimplifyXorInst(Value *Op0, Value *Op1, const Query &Q,
1678 unsigned MaxRecurse) {
Duncan Sandsc89ac072010-11-17 18:52:15 +00001679 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
1680 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
1681 Constant *Ops[] = { CLHS, CRHS };
1682 return ConstantFoldInstOperands(Instruction::Xor, CLHS->getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001683 Ops, Q.DL, Q.TLI);
Duncan Sandsc89ac072010-11-17 18:52:15 +00001684 }
1685
1686 // Canonicalize the constant to the RHS.
1687 std::swap(Op0, Op1);
1688 }
1689
1690 // A ^ undef -> undef
Duncan Sandsa29ea9a2011-02-01 09:06:20 +00001691 if (match(Op1, m_Undef()))
Duncan Sands019a4182010-12-15 11:02:22 +00001692 return Op1;
Duncan Sandsc89ac072010-11-17 18:52:15 +00001693
1694 // A ^ 0 = A
1695 if (match(Op1, m_Zero()))
1696 return Op0;
1697
Eli Friedmanad3cfe72011-08-17 19:31:49 +00001698 // A ^ A = 0
1699 if (Op0 == Op1)
1700 return Constant::getNullValue(Op0->getType());
1701
Duncan Sandsc89ac072010-11-17 18:52:15 +00001702 // A ^ ~A = ~A ^ A = -1
Chris Lattner9e4aa022011-02-09 17:15:04 +00001703 if (match(Op0, m_Not(m_Specific(Op1))) ||
1704 match(Op1, m_Not(m_Specific(Op0))))
Duncan Sandsc89ac072010-11-17 18:52:15 +00001705 return Constant::getAllOnesValue(Op0->getType());
1706
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001707 // Try some generic simplifications for associative operations.
Duncan Sandsb8cee002012-03-13 11:42:19 +00001708 if (Value *V = SimplifyAssociativeBinOp(Instruction::Xor, Op0, Op1, Q,
1709 MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00001710 return V;
Duncan Sandsc89ac072010-11-17 18:52:15 +00001711
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001712 // And distributes over Xor. Try some generic simplifications based on this.
1713 if (Value *V = FactorizeBinOp(Instruction::Xor, Op0, Op1, Instruction::And,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001714 Q, MaxRecurse))
Duncan Sandsee3ec6e2010-12-21 13:32:22 +00001715 return V;
1716
Duncan Sandsb238de02010-11-19 09:20:39 +00001717 // Threading Xor over selects and phi nodes is pointless, so don't bother.
1718 // Threading over the select in "A ^ select(cond, B, C)" means evaluating
1719 // "A^B" and "A^C" and seeing if they are equal; but they are equal if and
1720 // only if B and C are equal. If B and C are equal then (since we assume
1721 // that operands have already been simplified) "select(cond, B, C)" should
1722 // have been simplified to the common value of B and C already. Analysing
1723 // "A^B" and "A^C" thus gains nothing, but costs compile time. Similarly
1724 // for threading over phi nodes.
Duncan Sandsc89ac072010-11-17 18:52:15 +00001725
Craig Topper9f008862014-04-15 04:59:12 +00001726 return nullptr;
Duncan Sandsc89ac072010-11-17 18:52:15 +00001727}
1728
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001729Value *llvm::SimplifyXorInst(Value *Op0, Value *Op1, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00001730 const TargetLibraryInfo *TLI,
Duncan Sandsc89ac072010-11-17 18:52:15 +00001731 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001732 return ::SimplifyXorInst(Op0, Op1, Query (DL, TLI, DT), RecursionLimit);
Duncan Sandsc89ac072010-11-17 18:52:15 +00001733}
1734
Chris Lattner229907c2011-07-18 04:54:35 +00001735static Type *GetCompareTy(Value *Op) {
Chris Lattnerccfdceb2009-11-09 23:55:12 +00001736 return CmpInst::makeCmpResultType(Op->getType());
1737}
1738
Duncan Sandsaf327282011-05-07 16:56:49 +00001739/// ExtractEquivalentCondition - Rummage around inside V looking for something
1740/// equivalent to the comparison "LHS Pred RHS". Return such a value if found,
1741/// otherwise return null. Helper function for analyzing max/min idioms.
1742static Value *ExtractEquivalentCondition(Value *V, CmpInst::Predicate Pred,
1743 Value *LHS, Value *RHS) {
1744 SelectInst *SI = dyn_cast<SelectInst>(V);
1745 if (!SI)
Craig Topper9f008862014-04-15 04:59:12 +00001746 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00001747 CmpInst *Cmp = dyn_cast<CmpInst>(SI->getCondition());
1748 if (!Cmp)
Craig Topper9f008862014-04-15 04:59:12 +00001749 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00001750 Value *CmpLHS = Cmp->getOperand(0), *CmpRHS = Cmp->getOperand(1);
1751 if (Pred == Cmp->getPredicate() && LHS == CmpLHS && RHS == CmpRHS)
1752 return Cmp;
1753 if (Pred == CmpInst::getSwappedPredicate(Cmp->getPredicate()) &&
1754 LHS == CmpRHS && RHS == CmpLHS)
1755 return Cmp;
Craig Topper9f008862014-04-15 04:59:12 +00001756 return nullptr;
Duncan Sandsaf327282011-05-07 16:56:49 +00001757}
1758
Dan Gohman9631d902013-02-01 00:49:06 +00001759// A significant optimization not implemented here is assuming that alloca
1760// addresses are not equal to incoming argument values. They don't *alias*,
1761// as we say, but that doesn't mean they aren't equal, so we take a
1762// conservative approach.
1763//
1764// This is inspired in part by C++11 5.10p1:
1765// "Two pointers of the same type compare equal if and only if they are both
1766// null, both point to the same function, or both represent the same
1767// address."
1768//
1769// This is pretty permissive.
1770//
1771// It's also partly due to C11 6.5.9p6:
1772// "Two pointers compare equal if and only if both are null pointers, both are
1773// pointers to the same object (including a pointer to an object and a
1774// subobject at its beginning) or function, both are pointers to one past the
1775// last element of the same array object, or one is a pointer to one past the
1776// end of one array object and the other is a pointer to the start of a
NAKAMURA Takumi065fd352013-04-08 23:05:21 +00001777// different array object that happens to immediately follow the first array
Dan Gohman9631d902013-02-01 00:49:06 +00001778// object in the address space.)
1779//
1780// C11's version is more restrictive, however there's no reason why an argument
1781// couldn't be a one-past-the-end value for a stack object in the caller and be
1782// equal to the beginning of a stack object in the callee.
1783//
1784// If the C and C++ standards are ever made sufficiently restrictive in this
1785// area, it may be possible to update LLVM's semantics accordingly and reinstate
1786// this optimization.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001787static Constant *computePointerICmp(const DataLayout *DL,
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001788 const TargetLibraryInfo *TLI,
Chandler Carruth8059c842012-03-25 21:28:14 +00001789 CmpInst::Predicate Pred,
1790 Value *LHS, Value *RHS) {
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001791 // First, skip past any trivial no-ops.
1792 LHS = LHS->stripPointerCasts();
1793 RHS = RHS->stripPointerCasts();
1794
1795 // A non-null pointer is not equal to a null pointer.
Benjamin Kramerfd4777c2013-09-24 16:37:51 +00001796 if (llvm::isKnownNonNull(LHS, TLI) && isa<ConstantPointerNull>(RHS) &&
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001797 (Pred == CmpInst::ICMP_EQ || Pred == CmpInst::ICMP_NE))
1798 return ConstantInt::get(GetCompareTy(LHS),
1799 !CmpInst::isTrueWhenEqual(Pred));
1800
Chandler Carruth8059c842012-03-25 21:28:14 +00001801 // We can only fold certain predicates on pointer comparisons.
1802 switch (Pred) {
1803 default:
Craig Topper9f008862014-04-15 04:59:12 +00001804 return nullptr;
Chandler Carruth8059c842012-03-25 21:28:14 +00001805
1806 // Equality comaprisons are easy to fold.
1807 case CmpInst::ICMP_EQ:
1808 case CmpInst::ICMP_NE:
1809 break;
1810
1811 // We can only handle unsigned relational comparisons because 'inbounds' on
1812 // a GEP only protects against unsigned wrapping.
1813 case CmpInst::ICMP_UGT:
1814 case CmpInst::ICMP_UGE:
1815 case CmpInst::ICMP_ULT:
1816 case CmpInst::ICMP_ULE:
1817 // However, we have to switch them to their signed variants to handle
1818 // negative indices from the base pointer.
1819 Pred = ICmpInst::getSignedPredicate(Pred);
1820 break;
1821 }
1822
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001823 // Strip off any constant offsets so that we can reason about them.
1824 // It's tempting to use getUnderlyingObject or even just stripInBoundsOffsets
1825 // here and compare base addresses like AliasAnalysis does, however there are
1826 // numerous hazards. AliasAnalysis and its utilities rely on special rules
1827 // governing loads and stores which don't apply to icmps. Also, AliasAnalysis
1828 // doesn't need to guarantee pointer inequality when it says NoAlias.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001829 Constant *LHSOffset = stripAndComputeConstantOffsets(DL, LHS);
1830 Constant *RHSOffset = stripAndComputeConstantOffsets(DL, RHS);
Chandler Carruth8059c842012-03-25 21:28:14 +00001831
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001832 // If LHS and RHS are related via constant offsets to the same base
1833 // value, we can replace it with an icmp which just compares the offsets.
1834 if (LHS == RHS)
1835 return ConstantExpr::getICmp(Pred, LHSOffset, RHSOffset);
Chandler Carruth8059c842012-03-25 21:28:14 +00001836
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001837 // Various optimizations for (in)equality comparisons.
1838 if (Pred == CmpInst::ICMP_EQ || Pred == CmpInst::ICMP_NE) {
1839 // Different non-empty allocations that exist at the same time have
1840 // different addresses (if the program can tell). Global variables always
1841 // exist, so they always exist during the lifetime of each other and all
1842 // allocas. Two different allocas usually have different addresses...
1843 //
1844 // However, if there's an @llvm.stackrestore dynamically in between two
1845 // allocas, they may have the same address. It's tempting to reduce the
1846 // scope of the problem by only looking at *static* allocas here. That would
1847 // cover the majority of allocas while significantly reducing the likelihood
1848 // of having an @llvm.stackrestore pop up in the middle. However, it's not
1849 // actually impossible for an @llvm.stackrestore to pop up in the middle of
1850 // an entry block. Also, if we have a block that's not attached to a
1851 // function, we can't tell if it's "static" under the current definition.
1852 // Theoretically, this problem could be fixed by creating a new kind of
1853 // instruction kind specifically for static allocas. Such a new instruction
1854 // could be required to be at the top of the entry block, thus preventing it
1855 // from being subject to a @llvm.stackrestore. Instcombine could even
1856 // convert regular allocas into these special allocas. It'd be nifty.
1857 // However, until then, this problem remains open.
1858 //
1859 // So, we'll assume that two non-empty allocas have different addresses
1860 // for now.
1861 //
1862 // With all that, if the offsets are within the bounds of their allocations
1863 // (and not one-past-the-end! so we can't use inbounds!), and their
1864 // allocations aren't the same, the pointers are not equal.
1865 //
1866 // Note that it's not necessary to check for LHS being a global variable
1867 // address, due to canonicalization and constant folding.
1868 if (isa<AllocaInst>(LHS) &&
1869 (isa<AllocaInst>(RHS) || isa<GlobalVariable>(RHS))) {
Benjamin Kramerc05aa952013-02-01 15:21:10 +00001870 ConstantInt *LHSOffsetCI = dyn_cast<ConstantInt>(LHSOffset);
1871 ConstantInt *RHSOffsetCI = dyn_cast<ConstantInt>(RHSOffset);
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001872 uint64_t LHSSize, RHSSize;
Benjamin Kramerc05aa952013-02-01 15:21:10 +00001873 if (LHSOffsetCI && RHSOffsetCI &&
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001874 getObjectSize(LHS, LHSSize, DL, TLI) &&
1875 getObjectSize(RHS, RHSSize, DL, TLI)) {
Benjamin Kramerc05aa952013-02-01 15:21:10 +00001876 const APInt &LHSOffsetValue = LHSOffsetCI->getValue();
1877 const APInt &RHSOffsetValue = RHSOffsetCI->getValue();
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001878 if (!LHSOffsetValue.isNegative() &&
1879 !RHSOffsetValue.isNegative() &&
1880 LHSOffsetValue.ult(LHSSize) &&
1881 RHSOffsetValue.ult(RHSSize)) {
1882 return ConstantInt::get(GetCompareTy(LHS),
1883 !CmpInst::isTrueWhenEqual(Pred));
1884 }
1885 }
1886
1887 // Repeat the above check but this time without depending on DataLayout
1888 // or being able to compute a precise size.
1889 if (!cast<PointerType>(LHS->getType())->isEmptyTy() &&
1890 !cast<PointerType>(RHS->getType())->isEmptyTy() &&
1891 LHSOffset->isNullValue() &&
1892 RHSOffset->isNullValue())
1893 return ConstantInt::get(GetCompareTy(LHS),
1894 !CmpInst::isTrueWhenEqual(Pred));
1895 }
Benjamin Kramer942dfe62013-09-23 14:16:38 +00001896
1897 // Even if an non-inbounds GEP occurs along the path we can still optimize
1898 // equality comparisons concerning the result. We avoid walking the whole
1899 // chain again by starting where the last calls to
1900 // stripAndComputeConstantOffsets left off and accumulate the offsets.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001901 Constant *LHSNoBound = stripAndComputeConstantOffsets(DL, LHS, true);
1902 Constant *RHSNoBound = stripAndComputeConstantOffsets(DL, RHS, true);
Benjamin Kramer942dfe62013-09-23 14:16:38 +00001903 if (LHS == RHS)
1904 return ConstantExpr::getICmp(Pred,
1905 ConstantExpr::getAdd(LHSOffset, LHSNoBound),
1906 ConstantExpr::getAdd(RHSOffset, RHSNoBound));
Dan Gohmanb3e2d3a2013-02-01 00:11:13 +00001907 }
1908
1909 // Otherwise, fail.
Craig Topper9f008862014-04-15 04:59:12 +00001910 return nullptr;
Chandler Carruth8059c842012-03-25 21:28:14 +00001911}
Chris Lattner01990f02012-02-24 19:01:58 +00001912
Chris Lattnerc1f19072009-11-09 23:28:39 +00001913/// SimplifyICmpInst - Given operands for an ICmpInst, see if we can
1914/// fold the result. If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00001915static Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00001916 const Query &Q, unsigned MaxRecurse) {
Chris Lattner084a1b52009-11-09 22:57:59 +00001917 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate;
Chris Lattnerc1f19072009-11-09 23:28:39 +00001918 assert(CmpInst::isIntPredicate(Pred) && "Not an integer compare!");
Duncan Sands7e800d62010-11-14 11:23:23 +00001919
Chris Lattnera71e9d62009-11-10 00:55:12 +00001920 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
Chris Lattnercdfb80d2009-11-09 23:06:58 +00001921 if (Constant *CRHS = dyn_cast<Constant>(RHS))
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001922 return ConstantFoldCompareInstOperands(Pred, CLHS, CRHS, Q.DL, Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00001923
1924 // If we have a constant, make sure it is on the RHS.
1925 std::swap(LHS, RHS);
1926 Pred = CmpInst::getSwappedPredicate(Pred);
1927 }
Duncan Sands7e800d62010-11-14 11:23:23 +00001928
Chris Lattner229907c2011-07-18 04:54:35 +00001929 Type *ITy = GetCompareTy(LHS); // The return type.
1930 Type *OpTy = LHS->getType(); // The operand type.
Duncan Sands7e800d62010-11-14 11:23:23 +00001931
Chris Lattnerccfdceb2009-11-09 23:55:12 +00001932 // icmp X, X -> true/false
Chris Lattner3afc0722010-03-03 19:46:03 +00001933 // X icmp undef -> true/false. For example, icmp ugt %X, undef -> false
1934 // because X could be 0.
Duncan Sands772749a2011-01-01 20:08:02 +00001935 if (LHS == RHS || isa<UndefValue>(RHS))
Chris Lattnerccfdceb2009-11-09 23:55:12 +00001936 return ConstantInt::get(ITy, CmpInst::isTrueWhenEqual(Pred));
Duncan Sands7e800d62010-11-14 11:23:23 +00001937
Duncan Sands8d25a7c2011-01-13 08:56:29 +00001938 // Special case logic when the operands have i1 type.
Nick Lewyckye659b842011-12-01 02:39:36 +00001939 if (OpTy->getScalarType()->isIntegerTy(1)) {
Duncan Sands8d25a7c2011-01-13 08:56:29 +00001940 switch (Pred) {
1941 default: break;
1942 case ICmpInst::ICMP_EQ:
1943 // X == 1 -> X
1944 if (match(RHS, m_One()))
1945 return LHS;
1946 break;
1947 case ICmpInst::ICMP_NE:
1948 // X != 0 -> X
1949 if (match(RHS, m_Zero()))
1950 return LHS;
1951 break;
1952 case ICmpInst::ICMP_UGT:
1953 // X >u 0 -> X
1954 if (match(RHS, m_Zero()))
1955 return LHS;
1956 break;
1957 case ICmpInst::ICMP_UGE:
1958 // X >=u 1 -> X
1959 if (match(RHS, m_One()))
1960 return LHS;
1961 break;
1962 case ICmpInst::ICMP_SLT:
1963 // X <s 0 -> X
1964 if (match(RHS, m_Zero()))
1965 return LHS;
1966 break;
1967 case ICmpInst::ICMP_SLE:
1968 // X <=s -1 -> X
1969 if (match(RHS, m_One()))
1970 return LHS;
1971 break;
1972 }
1973 }
1974
Duncan Sandsd3951082011-01-25 09:38:29 +00001975 // If we are comparing with zero then try hard since this is a common case.
1976 if (match(RHS, m_Zero())) {
1977 bool LHSKnownNonNegative, LHSKnownNegative;
1978 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00001979 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sandsd3951082011-01-25 09:38:29 +00001980 case ICmpInst::ICMP_ULT:
Duncan Sandsc1c92712011-07-26 15:03:53 +00001981 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00001982 case ICmpInst::ICMP_UGE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00001983 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00001984 case ICmpInst::ICMP_EQ:
1985 case ICmpInst::ICMP_ULE:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001986 if (isKnownNonZero(LHS, Q.DL))
Duncan Sandsc1c92712011-07-26 15:03:53 +00001987 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00001988 break;
1989 case ICmpInst::ICMP_NE:
1990 case ICmpInst::ICMP_UGT:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001991 if (isKnownNonZero(LHS, Q.DL))
Duncan Sandsc1c92712011-07-26 15:03:53 +00001992 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00001993 break;
1994 case ICmpInst::ICMP_SLT:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001995 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL);
Duncan Sandsd3951082011-01-25 09:38:29 +00001996 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00001997 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00001998 if (LHSKnownNonNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00001999 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002000 break;
2001 case ICmpInst::ICMP_SLE:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002002 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL);
Duncan Sandsd3951082011-01-25 09:38:29 +00002003 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002004 return getTrue(ITy);
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002005 if (LHSKnownNonNegative && isKnownNonZero(LHS, Q.DL))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002006 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002007 break;
2008 case ICmpInst::ICMP_SGE:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002009 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL);
Duncan Sandsd3951082011-01-25 09:38:29 +00002010 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002011 return getFalse(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002012 if (LHSKnownNonNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002013 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002014 break;
2015 case ICmpInst::ICMP_SGT:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002016 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL);
Duncan Sandsd3951082011-01-25 09:38:29 +00002017 if (LHSKnownNegative)
Duncan Sandsc1c92712011-07-26 15:03:53 +00002018 return getFalse(ITy);
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002019 if (LHSKnownNonNegative && isKnownNonZero(LHS, Q.DL))
Duncan Sandsc1c92712011-07-26 15:03:53 +00002020 return getTrue(ITy);
Duncan Sandsd3951082011-01-25 09:38:29 +00002021 break;
2022 }
2023 }
2024
2025 // See if we are doing a comparison with a constant integer.
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002026 if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002027 // Rule out tautological comparisons (eg., ult 0 or uge 0).
2028 ConstantRange RHS_CR = ICmpInst::makeConstantRange(Pred, CI->getValue());
2029 if (RHS_CR.isEmptySet())
2030 return ConstantInt::getFalse(CI->getContext());
2031 if (RHS_CR.isFullSet())
2032 return ConstantInt::getTrue(CI->getContext());
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002033
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002034 // Many binary operators with constant RHS have easy to compute constant
2035 // range. Use them to check whether the comparison is a tautology.
David Majnemer78910fc2014-05-16 17:14:03 +00002036 unsigned Width = CI->getBitWidth();
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002037 APInt Lower = APInt(Width, 0);
2038 APInt Upper = APInt(Width, 0);
2039 ConstantInt *CI2;
2040 if (match(LHS, m_URem(m_Value(), m_ConstantInt(CI2)))) {
2041 // 'urem x, CI2' produces [0, CI2).
2042 Upper = CI2->getValue();
2043 } else if (match(LHS, m_SRem(m_Value(), m_ConstantInt(CI2)))) {
2044 // 'srem x, CI2' produces (-|CI2|, |CI2|).
2045 Upper = CI2->getValue().abs();
2046 Lower = (-Upper) + 1;
Duncan Sands92af0a82011-10-28 18:17:44 +00002047 } else if (match(LHS, m_UDiv(m_ConstantInt(CI2), m_Value()))) {
2048 // 'udiv CI2, x' produces [0, CI2].
Eli Friedman0bae8b22011-11-08 21:08:02 +00002049 Upper = CI2->getValue() + 1;
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002050 } else if (match(LHS, m_UDiv(m_Value(), m_ConstantInt(CI2)))) {
2051 // 'udiv x, CI2' produces [0, UINT_MAX / CI2].
2052 APInt NegOne = APInt::getAllOnesValue(Width);
2053 if (!CI2->isZero())
2054 Upper = NegOne.udiv(CI2->getValue()) + 1;
David Majnemerea8d5db2014-05-16 16:57:04 +00002055 } else if (match(LHS, m_SDiv(m_ConstantInt(CI2), m_Value()))) {
2056 // 'sdiv CI2, x' produces [-|CI2|, |CI2|].
2057 Upper = CI2->getValue().abs() + 1;
2058 Lower = (-Upper) + 1;
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002059 } else if (match(LHS, m_SDiv(m_Value(), m_ConstantInt(CI2)))) {
2060 // 'sdiv x, CI2' produces [INT_MIN / CI2, INT_MAX / CI2].
2061 APInt IntMin = APInt::getSignedMinValue(Width);
2062 APInt IntMax = APInt::getSignedMaxValue(Width);
2063 APInt Val = CI2->getValue().abs();
2064 if (!Val.isMinValue()) {
2065 Lower = IntMin.sdiv(Val);
2066 Upper = IntMax.sdiv(Val) + 1;
2067 }
2068 } else if (match(LHS, m_LShr(m_Value(), m_ConstantInt(CI2)))) {
2069 // 'lshr x, CI2' produces [0, UINT_MAX >> CI2].
2070 APInt NegOne = APInt::getAllOnesValue(Width);
2071 if (CI2->getValue().ult(Width))
2072 Upper = NegOne.lshr(CI2->getValue()) + 1;
David Majnemer78910fc2014-05-16 17:14:03 +00002073 } else if (match(LHS, m_LShr(m_ConstantInt(CI2), m_Value()))) {
2074 // 'lshr CI2, x' produces [CI2 >> (Width-1), CI2].
2075 unsigned ShiftAmount = Width - 1;
2076 if (!CI2->isZero() && cast<BinaryOperator>(LHS)->isExact())
2077 ShiftAmount = CI2->getValue().countTrailingZeros();
2078 Lower = CI2->getValue().lshr(ShiftAmount);
2079 Upper = CI2->getValue() + 1;
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002080 } else if (match(LHS, m_AShr(m_Value(), m_ConstantInt(CI2)))) {
2081 // 'ashr x, CI2' produces [INT_MIN >> CI2, INT_MAX >> CI2].
2082 APInt IntMin = APInt::getSignedMinValue(Width);
2083 APInt IntMax = APInt::getSignedMaxValue(Width);
2084 if (CI2->getValue().ult(Width)) {
2085 Lower = IntMin.ashr(CI2->getValue());
2086 Upper = IntMax.ashr(CI2->getValue()) + 1;
2087 }
David Majnemer78910fc2014-05-16 17:14:03 +00002088 } else if (match(LHS, m_AShr(m_ConstantInt(CI2), m_Value()))) {
2089 unsigned ShiftAmount = Width - 1;
2090 if (!CI2->isZero() && cast<BinaryOperator>(LHS)->isExact())
2091 ShiftAmount = CI2->getValue().countTrailingZeros();
2092 if (CI2->isNegative()) {
2093 // 'ashr CI2, x' produces [CI2, CI2 >> (Width-1)]
2094 Lower = CI2->getValue();
2095 Upper = CI2->getValue().ashr(ShiftAmount) + 1;
2096 } else {
2097 // 'ashr CI2, x' produces [CI2 >> (Width-1), CI2]
2098 Lower = CI2->getValue().ashr(ShiftAmount);
2099 Upper = CI2->getValue() + 1;
2100 }
Nick Lewycky3cec6f52011-03-04 07:00:57 +00002101 } else if (match(LHS, m_Or(m_Value(), m_ConstantInt(CI2)))) {
2102 // 'or x, CI2' produces [CI2, UINT_MAX].
2103 Lower = CI2->getValue();
2104 } else if (match(LHS, m_And(m_Value(), m_ConstantInt(CI2)))) {
2105 // 'and x, CI2' produces [0, CI2].
2106 Upper = CI2->getValue() + 1;
2107 }
2108 if (Lower != Upper) {
2109 ConstantRange LHS_CR = ConstantRange(Lower, Upper);
2110 if (RHS_CR.contains(LHS_CR))
2111 return ConstantInt::getTrue(RHS->getContext());
2112 if (RHS_CR.inverse().contains(LHS_CR))
2113 return ConstantInt::getFalse(RHS->getContext());
2114 }
Duncan Sands8d25a7c2011-01-13 08:56:29 +00002115 }
2116
Duncan Sands8fb2c382011-01-20 13:21:55 +00002117 // Compare of cast, for example (zext X) != 0 -> X != 0
2118 if (isa<CastInst>(LHS) && (isa<Constant>(RHS) || isa<CastInst>(RHS))) {
2119 Instruction *LI = cast<CastInst>(LHS);
2120 Value *SrcOp = LI->getOperand(0);
Chris Lattner229907c2011-07-18 04:54:35 +00002121 Type *SrcTy = SrcOp->getType();
2122 Type *DstTy = LI->getType();
Duncan Sands8fb2c382011-01-20 13:21:55 +00002123
2124 // Turn icmp (ptrtoint x), (ptrtoint/constant) into a compare of the input
2125 // if the integer type is the same size as the pointer type.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002126 if (MaxRecurse && Q.DL && isa<PtrToIntInst>(LI) &&
2127 Q.DL->getTypeSizeInBits(SrcTy) == DstTy->getPrimitiveSizeInBits()) {
Duncan Sands8fb2c382011-01-20 13:21:55 +00002128 if (Constant *RHSC = dyn_cast<Constant>(RHS)) {
2129 // Transfer the cast to the constant.
2130 if (Value *V = SimplifyICmpInst(Pred, SrcOp,
2131 ConstantExpr::getIntToPtr(RHSC, SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002132 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002133 return V;
2134 } else if (PtrToIntInst *RI = dyn_cast<PtrToIntInst>(RHS)) {
2135 if (RI->getOperand(0)->getType() == SrcTy)
2136 // Compare without the cast.
2137 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002138 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002139 return V;
2140 }
2141 }
2142
2143 if (isa<ZExtInst>(LHS)) {
2144 // Turn icmp (zext X), (zext Y) into a compare of X and Y if they have the
2145 // same type.
2146 if (ZExtInst *RI = dyn_cast<ZExtInst>(RHS)) {
2147 if (MaxRecurse && SrcTy == RI->getOperand(0)->getType())
2148 // Compare X and Y. Note that signed predicates become unsigned.
2149 if (Value *V = SimplifyICmpInst(ICmpInst::getUnsignedPredicate(Pred),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002150 SrcOp, RI->getOperand(0), Q,
Duncan Sands8fb2c382011-01-20 13:21:55 +00002151 MaxRecurse-1))
2152 return V;
2153 }
2154 // Turn icmp (zext X), Cst into a compare of X and Cst if Cst is extended
2155 // too. If not, then try to deduce the result of the comparison.
2156 else if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
2157 // Compute the constant that would happen if we truncated to SrcTy then
2158 // reextended to DstTy.
2159 Constant *Trunc = ConstantExpr::getTrunc(CI, SrcTy);
2160 Constant *RExt = ConstantExpr::getCast(CastInst::ZExt, Trunc, DstTy);
2161
2162 // If the re-extended constant didn't change then this is effectively
2163 // also a case of comparing two zero-extended values.
2164 if (RExt == CI && MaxRecurse)
2165 if (Value *V = SimplifyICmpInst(ICmpInst::getUnsignedPredicate(Pred),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002166 SrcOp, Trunc, Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002167 return V;
2168
2169 // Otherwise the upper bits of LHS are zero while RHS has a non-zero bit
2170 // there. Use this to work out the result of the comparison.
2171 if (RExt != CI) {
2172 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00002173 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sands8fb2c382011-01-20 13:21:55 +00002174 // LHS <u RHS.
2175 case ICmpInst::ICMP_EQ:
2176 case ICmpInst::ICMP_UGT:
2177 case ICmpInst::ICMP_UGE:
2178 return ConstantInt::getFalse(CI->getContext());
2179
2180 case ICmpInst::ICMP_NE:
2181 case ICmpInst::ICMP_ULT:
2182 case ICmpInst::ICMP_ULE:
2183 return ConstantInt::getTrue(CI->getContext());
2184
2185 // LHS is non-negative. If RHS is negative then LHS >s LHS. If RHS
2186 // is non-negative then LHS <s RHS.
2187 case ICmpInst::ICMP_SGT:
2188 case ICmpInst::ICMP_SGE:
2189 return CI->getValue().isNegative() ?
2190 ConstantInt::getTrue(CI->getContext()) :
2191 ConstantInt::getFalse(CI->getContext());
2192
2193 case ICmpInst::ICMP_SLT:
2194 case ICmpInst::ICMP_SLE:
2195 return CI->getValue().isNegative() ?
2196 ConstantInt::getFalse(CI->getContext()) :
2197 ConstantInt::getTrue(CI->getContext());
2198 }
2199 }
2200 }
2201 }
2202
2203 if (isa<SExtInst>(LHS)) {
2204 // Turn icmp (sext X), (sext Y) into a compare of X and Y if they have the
2205 // same type.
2206 if (SExtInst *RI = dyn_cast<SExtInst>(RHS)) {
2207 if (MaxRecurse && SrcTy == RI->getOperand(0)->getType())
2208 // Compare X and Y. Note that the predicate does not change.
2209 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002210 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002211 return V;
2212 }
2213 // Turn icmp (sext X), Cst into a compare of X and Cst if Cst is extended
2214 // too. If not, then try to deduce the result of the comparison.
2215 else if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
2216 // Compute the constant that would happen if we truncated to SrcTy then
2217 // reextended to DstTy.
2218 Constant *Trunc = ConstantExpr::getTrunc(CI, SrcTy);
2219 Constant *RExt = ConstantExpr::getCast(CastInst::SExt, Trunc, DstTy);
2220
2221 // If the re-extended constant didn't change then this is effectively
2222 // also a case of comparing two sign-extended values.
2223 if (RExt == CI && MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002224 if (Value *V = SimplifyICmpInst(Pred, SrcOp, Trunc, Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002225 return V;
2226
2227 // Otherwise the upper bits of LHS are all equal, while RHS has varying
2228 // bits there. Use this to work out the result of the comparison.
2229 if (RExt != CI) {
2230 switch (Pred) {
Craig Toppera2886c22012-02-07 05:05:23 +00002231 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sands8fb2c382011-01-20 13:21:55 +00002232 case ICmpInst::ICMP_EQ:
2233 return ConstantInt::getFalse(CI->getContext());
2234 case ICmpInst::ICMP_NE:
2235 return ConstantInt::getTrue(CI->getContext());
2236
2237 // If RHS is non-negative then LHS <s RHS. If RHS is negative then
2238 // LHS >s RHS.
2239 case ICmpInst::ICMP_SGT:
2240 case ICmpInst::ICMP_SGE:
2241 return CI->getValue().isNegative() ?
2242 ConstantInt::getTrue(CI->getContext()) :
2243 ConstantInt::getFalse(CI->getContext());
2244 case ICmpInst::ICMP_SLT:
2245 case ICmpInst::ICMP_SLE:
2246 return CI->getValue().isNegative() ?
2247 ConstantInt::getFalse(CI->getContext()) :
2248 ConstantInt::getTrue(CI->getContext());
2249
2250 // If LHS is non-negative then LHS <u RHS. If LHS is negative then
2251 // LHS >u RHS.
2252 case ICmpInst::ICMP_UGT:
2253 case ICmpInst::ICMP_UGE:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002254 // Comparison is true iff the LHS <s 0.
Duncan Sands8fb2c382011-01-20 13:21:55 +00002255 if (MaxRecurse)
2256 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SLT, SrcOp,
2257 Constant::getNullValue(SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002258 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002259 return V;
2260 break;
2261 case ICmpInst::ICMP_ULT:
2262 case ICmpInst::ICMP_ULE:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002263 // Comparison is true iff the LHS >=s 0.
Duncan Sands8fb2c382011-01-20 13:21:55 +00002264 if (MaxRecurse)
2265 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SGE, SrcOp,
2266 Constant::getNullValue(SrcTy),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002267 Q, MaxRecurse-1))
Duncan Sands8fb2c382011-01-20 13:21:55 +00002268 return V;
2269 break;
2270 }
2271 }
2272 }
2273 }
2274 }
2275
Nick Lewyckyc9610302014-06-19 03:35:49 +00002276 // If a bit is known to be zero for A and known to be one for B,
2277 // then A and B cannot be equal.
2278 if (ICmpInst::isEquality(Pred)) {
2279 if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
2280 uint32_t BitWidth = CI->getBitWidth();
2281 APInt LHSKnownZero(BitWidth, 0);
2282 APInt LHSKnownOne(BitWidth, 0);
2283 computeKnownBits(LHS, LHSKnownZero, LHSKnownOne);
2284 APInt RHSKnownZero(BitWidth, 0);
2285 APInt RHSKnownOne(BitWidth, 0);
2286 computeKnownBits(RHS, RHSKnownZero, RHSKnownOne);
2287 if (((LHSKnownOne & RHSKnownZero) != 0) ||
2288 ((LHSKnownZero & RHSKnownOne) != 0))
2289 return (Pred == ICmpInst::ICMP_EQ)
2290 ? ConstantInt::getFalse(CI->getContext())
2291 : ConstantInt::getTrue(CI->getContext());
2292 }
2293 }
2294
Duncan Sandsd114ab32011-02-13 17:15:40 +00002295 // Special logic for binary operators.
2296 BinaryOperator *LBO = dyn_cast<BinaryOperator>(LHS);
2297 BinaryOperator *RBO = dyn_cast<BinaryOperator>(RHS);
2298 if (MaxRecurse && (LBO || RBO)) {
Duncan Sandsd114ab32011-02-13 17:15:40 +00002299 // Analyze the case when either LHS or RHS is an add instruction.
Craig Topper9f008862014-04-15 04:59:12 +00002300 Value *A = nullptr, *B = nullptr, *C = nullptr, *D = nullptr;
Duncan Sandsd114ab32011-02-13 17:15:40 +00002301 // LHS = A + B (or A and B are null); RHS = C + D (or C and D are null).
2302 bool NoLHSWrapProblem = false, NoRHSWrapProblem = false;
2303 if (LBO && LBO->getOpcode() == Instruction::Add) {
2304 A = LBO->getOperand(0); B = LBO->getOperand(1);
2305 NoLHSWrapProblem = ICmpInst::isEquality(Pred) ||
2306 (CmpInst::isUnsigned(Pred) && LBO->hasNoUnsignedWrap()) ||
2307 (CmpInst::isSigned(Pred) && LBO->hasNoSignedWrap());
2308 }
2309 if (RBO && RBO->getOpcode() == Instruction::Add) {
2310 C = RBO->getOperand(0); D = RBO->getOperand(1);
2311 NoRHSWrapProblem = ICmpInst::isEquality(Pred) ||
2312 (CmpInst::isUnsigned(Pred) && RBO->hasNoUnsignedWrap()) ||
2313 (CmpInst::isSigned(Pred) && RBO->hasNoSignedWrap());
2314 }
2315
2316 // icmp (X+Y), X -> icmp Y, 0 for equalities or if there is no overflow.
2317 if ((A == RHS || B == RHS) && NoLHSWrapProblem)
2318 if (Value *V = SimplifyICmpInst(Pred, A == RHS ? B : A,
2319 Constant::getNullValue(RHS->getType()),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002320 Q, MaxRecurse-1))
Duncan Sandsd114ab32011-02-13 17:15:40 +00002321 return V;
2322
2323 // icmp X, (X+Y) -> icmp 0, Y for equalities or if there is no overflow.
2324 if ((C == LHS || D == LHS) && NoRHSWrapProblem)
2325 if (Value *V = SimplifyICmpInst(Pred,
2326 Constant::getNullValue(LHS->getType()),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002327 C == LHS ? D : C, Q, MaxRecurse-1))
Duncan Sandsd114ab32011-02-13 17:15:40 +00002328 return V;
2329
2330 // icmp (X+Y), (X+Z) -> icmp Y,Z for equalities or if there is no overflow.
2331 if (A && C && (A == C || A == D || B == C || B == D) &&
2332 NoLHSWrapProblem && NoRHSWrapProblem) {
2333 // Determine Y and Z in the form icmp (X+Y), (X+Z).
Duncan Sandsc41076c2012-11-16 19:41:26 +00002334 Value *Y, *Z;
2335 if (A == C) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002336 // C + B == C + D -> B == D
Duncan Sandsc41076c2012-11-16 19:41:26 +00002337 Y = B;
2338 Z = D;
2339 } else if (A == D) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002340 // D + B == C + D -> B == C
Duncan Sandsc41076c2012-11-16 19:41:26 +00002341 Y = B;
2342 Z = C;
2343 } else if (B == C) {
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002344 // A + C == C + D -> A == D
Duncan Sandsc41076c2012-11-16 19:41:26 +00002345 Y = A;
2346 Z = D;
Duncan Sandsd7d8c092012-11-16 20:53:08 +00002347 } else {
2348 assert(B == D);
2349 // A + D == C + D -> A == C
Duncan Sandsc41076c2012-11-16 19:41:26 +00002350 Y = A;
2351 Z = C;
2352 }
Duncan Sandsb8cee002012-03-13 11:42:19 +00002353 if (Value *V = SimplifyICmpInst(Pred, Y, Z, Q, MaxRecurse-1))
Duncan Sandsd114ab32011-02-13 17:15:40 +00002354 return V;
2355 }
2356 }
2357
David Majnemer2d6c0232014-05-14 20:16:28 +00002358 // 0 - (zext X) pred C
2359 if (!CmpInst::isUnsigned(Pred) && match(LHS, m_Neg(m_ZExt(m_Value())))) {
2360 if (ConstantInt *RHSC = dyn_cast<ConstantInt>(RHS)) {
2361 if (RHSC->getValue().isStrictlyPositive()) {
2362 if (Pred == ICmpInst::ICMP_SLT)
2363 return ConstantInt::getTrue(RHSC->getContext());
2364 if (Pred == ICmpInst::ICMP_SGE)
2365 return ConstantInt::getFalse(RHSC->getContext());
2366 if (Pred == ICmpInst::ICMP_EQ)
2367 return ConstantInt::getFalse(RHSC->getContext());
2368 if (Pred == ICmpInst::ICMP_NE)
2369 return ConstantInt::getTrue(RHSC->getContext());
2370 }
2371 if (RHSC->getValue().isNonNegative()) {
2372 if (Pred == ICmpInst::ICMP_SLE)
2373 return ConstantInt::getTrue(RHSC->getContext());
2374 if (Pred == ICmpInst::ICMP_SGT)
2375 return ConstantInt::getFalse(RHSC->getContext());
2376 }
2377 }
2378 }
2379
Nick Lewycky35aeea92013-07-12 23:42:57 +00002380 // icmp pred (urem X, Y), Y
Nick Lewycky980104d2011-03-09 06:26:03 +00002381 if (LBO && match(LBO, m_URem(m_Value(), m_Specific(RHS)))) {
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002382 bool KnownNonNegative, KnownNegative;
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002383 switch (Pred) {
2384 default:
2385 break;
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002386 case ICmpInst::ICMP_SGT:
2387 case ICmpInst::ICMP_SGE:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002388 ComputeSignBit(RHS, KnownNonNegative, KnownNegative, Q.DL);
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002389 if (!KnownNonNegative)
2390 break;
2391 // fall-through
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002392 case ICmpInst::ICMP_EQ:
2393 case ICmpInst::ICMP_UGT:
2394 case ICmpInst::ICMP_UGE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002395 return getFalse(ITy);
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002396 case ICmpInst::ICMP_SLT:
2397 case ICmpInst::ICMP_SLE:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002398 ComputeSignBit(RHS, KnownNonNegative, KnownNegative, Q.DL);
Nick Lewycky8e3a79d2011-03-04 10:06:52 +00002399 if (!KnownNonNegative)
2400 break;
2401 // fall-through
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002402 case ICmpInst::ICMP_NE:
2403 case ICmpInst::ICMP_ULT:
2404 case ICmpInst::ICMP_ULE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002405 return getTrue(ITy);
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002406 }
2407 }
Nick Lewycky35aeea92013-07-12 23:42:57 +00002408
2409 // icmp pred X, (urem Y, X)
Nick Lewycky980104d2011-03-09 06:26:03 +00002410 if (RBO && match(RBO, m_URem(m_Value(), m_Specific(LHS)))) {
2411 bool KnownNonNegative, KnownNegative;
2412 switch (Pred) {
2413 default:
2414 break;
2415 case ICmpInst::ICMP_SGT:
2416 case ICmpInst::ICMP_SGE:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002417 ComputeSignBit(LHS, KnownNonNegative, KnownNegative, Q.DL);
Nick Lewycky980104d2011-03-09 06:26:03 +00002418 if (!KnownNonNegative)
2419 break;
2420 // fall-through
Nick Lewycky774647d2011-03-09 08:20:06 +00002421 case ICmpInst::ICMP_NE:
Nick Lewycky980104d2011-03-09 06:26:03 +00002422 case ICmpInst::ICMP_UGT:
2423 case ICmpInst::ICMP_UGE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002424 return getTrue(ITy);
Nick Lewycky980104d2011-03-09 06:26:03 +00002425 case ICmpInst::ICMP_SLT:
2426 case ICmpInst::ICMP_SLE:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002427 ComputeSignBit(LHS, KnownNonNegative, KnownNegative, Q.DL);
Nick Lewycky980104d2011-03-09 06:26:03 +00002428 if (!KnownNonNegative)
2429 break;
2430 // fall-through
Nick Lewycky774647d2011-03-09 08:20:06 +00002431 case ICmpInst::ICMP_EQ:
Nick Lewycky980104d2011-03-09 06:26:03 +00002432 case ICmpInst::ICMP_ULT:
2433 case ICmpInst::ICMP_ULE:
Duncan Sandsc1c92712011-07-26 15:03:53 +00002434 return getFalse(ITy);
Nick Lewycky980104d2011-03-09 06:26:03 +00002435 }
2436 }
Nick Lewyckyc9d20062011-03-01 08:15:50 +00002437
Duncan Sands92af0a82011-10-28 18:17:44 +00002438 // x udiv y <=u x.
2439 if (LBO && match(LBO, m_UDiv(m_Specific(RHS), m_Value()))) {
2440 // icmp pred (X /u Y), X
2441 if (Pred == ICmpInst::ICMP_UGT)
2442 return getFalse(ITy);
2443 if (Pred == ICmpInst::ICMP_ULE)
2444 return getTrue(ITy);
2445 }
2446
Nick Lewycky9719a712011-03-05 05:19:11 +00002447 if (MaxRecurse && LBO && RBO && LBO->getOpcode() == RBO->getOpcode() &&
2448 LBO->getOperand(1) == RBO->getOperand(1)) {
2449 switch (LBO->getOpcode()) {
2450 default: break;
2451 case Instruction::UDiv:
2452 case Instruction::LShr:
2453 if (ICmpInst::isSigned(Pred))
2454 break;
2455 // fall-through
2456 case Instruction::SDiv:
2457 case Instruction::AShr:
Eli Friedman8a20e662011-05-05 21:59:18 +00002458 if (!LBO->isExact() || !RBO->isExact())
Nick Lewycky9719a712011-03-05 05:19:11 +00002459 break;
2460 if (Value *V = SimplifyICmpInst(Pred, LBO->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002461 RBO->getOperand(0), Q, MaxRecurse-1))
Nick Lewycky9719a712011-03-05 05:19:11 +00002462 return V;
2463 break;
2464 case Instruction::Shl: {
Duncan Sands020c1942011-08-04 10:02:21 +00002465 bool NUW = LBO->hasNoUnsignedWrap() && RBO->hasNoUnsignedWrap();
Nick Lewycky9719a712011-03-05 05:19:11 +00002466 bool NSW = LBO->hasNoSignedWrap() && RBO->hasNoSignedWrap();
2467 if (!NUW && !NSW)
2468 break;
2469 if (!NSW && ICmpInst::isSigned(Pred))
2470 break;
2471 if (Value *V = SimplifyICmpInst(Pred, LBO->getOperand(0),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002472 RBO->getOperand(0), Q, MaxRecurse-1))
Nick Lewycky9719a712011-03-05 05:19:11 +00002473 return V;
2474 break;
2475 }
2476 }
2477 }
2478
Duncan Sands0a9c1242011-05-03 19:53:10 +00002479 // Simplify comparisons involving max/min.
2480 Value *A, *B;
2481 CmpInst::Predicate P = CmpInst::BAD_ICMP_PREDICATE;
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002482 CmpInst::Predicate EqP; // Chosen so that "A == max/min(A,B)" iff "A EqP B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002483
Duncan Sandsa2287852011-05-04 16:05:05 +00002484 // Signed variants on "max(a,b)>=a -> true".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002485 if (match(LHS, m_SMax(m_Value(A), m_Value(B))) && (A == RHS || B == RHS)) {
2486 if (A != RHS) std::swap(A, B); // smax(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002487 EqP = CmpInst::ICMP_SGE; // "A == smax(A, B)" iff "A sge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002488 // We analyze this as smax(A, B) pred A.
2489 P = Pred;
2490 } else if (match(RHS, m_SMax(m_Value(A), m_Value(B))) &&
2491 (A == LHS || B == LHS)) {
2492 if (A != LHS) std::swap(A, B); // A pred smax(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002493 EqP = CmpInst::ICMP_SGE; // "A == smax(A, B)" iff "A sge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002494 // We analyze this as smax(A, B) swapped-pred A.
2495 P = CmpInst::getSwappedPredicate(Pred);
2496 } else if (match(LHS, m_SMin(m_Value(A), m_Value(B))) &&
2497 (A == RHS || B == RHS)) {
2498 if (A != RHS) std::swap(A, B); // smin(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002499 EqP = CmpInst::ICMP_SLE; // "A == smin(A, B)" iff "A sle B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002500 // We analyze this as smax(-A, -B) swapped-pred -A.
2501 // Note that we do not need to actually form -A or -B thanks to EqP.
2502 P = CmpInst::getSwappedPredicate(Pred);
2503 } else if (match(RHS, m_SMin(m_Value(A), m_Value(B))) &&
2504 (A == LHS || B == LHS)) {
2505 if (A != LHS) std::swap(A, B); // A pred smin(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002506 EqP = CmpInst::ICMP_SLE; // "A == smin(A, B)" iff "A sle B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002507 // We analyze this as smax(-A, -B) pred -A.
2508 // Note that we do not need to actually form -A or -B thanks to EqP.
2509 P = Pred;
2510 }
2511 if (P != CmpInst::BAD_ICMP_PREDICATE) {
2512 // Cases correspond to "max(A, B) p A".
2513 switch (P) {
2514 default:
2515 break;
2516 case CmpInst::ICMP_EQ:
2517 case CmpInst::ICMP_SLE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002518 // Equivalent to "A EqP B". This may be the same as the condition tested
2519 // in the max/min; if so, we can just return that.
2520 if (Value *V = ExtractEquivalentCondition(LHS, EqP, A, B))
2521 return V;
2522 if (Value *V = ExtractEquivalentCondition(RHS, EqP, A, B))
2523 return V;
2524 // Otherwise, see if "A EqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002525 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002526 if (Value *V = SimplifyICmpInst(EqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002527 return V;
2528 break;
2529 case CmpInst::ICMP_NE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002530 case CmpInst::ICMP_SGT: {
2531 CmpInst::Predicate InvEqP = CmpInst::getInversePredicate(EqP);
2532 // Equivalent to "A InvEqP B". This may be the same as the condition
2533 // tested in the max/min; if so, we can just return that.
2534 if (Value *V = ExtractEquivalentCondition(LHS, InvEqP, A, B))
2535 return V;
2536 if (Value *V = ExtractEquivalentCondition(RHS, InvEqP, A, B))
2537 return V;
2538 // Otherwise, see if "A InvEqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002539 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002540 if (Value *V = SimplifyICmpInst(InvEqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002541 return V;
2542 break;
Duncan Sandsaf327282011-05-07 16:56:49 +00002543 }
Duncan Sands0a9c1242011-05-03 19:53:10 +00002544 case CmpInst::ICMP_SGE:
2545 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002546 return getTrue(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002547 case CmpInst::ICMP_SLT:
2548 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002549 return getFalse(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002550 }
2551 }
2552
Duncan Sandsa2287852011-05-04 16:05:05 +00002553 // Unsigned variants on "max(a,b)>=a -> true".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002554 P = CmpInst::BAD_ICMP_PREDICATE;
2555 if (match(LHS, m_UMax(m_Value(A), m_Value(B))) && (A == RHS || B == RHS)) {
2556 if (A != RHS) std::swap(A, B); // umax(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002557 EqP = CmpInst::ICMP_UGE; // "A == umax(A, B)" iff "A uge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002558 // We analyze this as umax(A, B) pred A.
2559 P = Pred;
2560 } else if (match(RHS, m_UMax(m_Value(A), m_Value(B))) &&
2561 (A == LHS || B == LHS)) {
2562 if (A != LHS) std::swap(A, B); // A pred umax(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002563 EqP = CmpInst::ICMP_UGE; // "A == umax(A, B)" iff "A uge B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002564 // We analyze this as umax(A, B) swapped-pred A.
2565 P = CmpInst::getSwappedPredicate(Pred);
2566 } else if (match(LHS, m_UMin(m_Value(A), m_Value(B))) &&
2567 (A == RHS || B == RHS)) {
2568 if (A != RHS) std::swap(A, B); // umin(A, B) pred A.
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002569 EqP = CmpInst::ICMP_ULE; // "A == umin(A, B)" iff "A ule B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002570 // We analyze this as umax(-A, -B) swapped-pred -A.
2571 // Note that we do not need to actually form -A or -B thanks to EqP.
2572 P = CmpInst::getSwappedPredicate(Pred);
2573 } else if (match(RHS, m_UMin(m_Value(A), m_Value(B))) &&
2574 (A == LHS || B == LHS)) {
2575 if (A != LHS) std::swap(A, B); // A pred umin(A, B).
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00002576 EqP = CmpInst::ICMP_ULE; // "A == umin(A, B)" iff "A ule B".
Duncan Sands0a9c1242011-05-03 19:53:10 +00002577 // We analyze this as umax(-A, -B) pred -A.
2578 // Note that we do not need to actually form -A or -B thanks to EqP.
2579 P = Pred;
2580 }
2581 if (P != CmpInst::BAD_ICMP_PREDICATE) {
2582 // Cases correspond to "max(A, B) p A".
2583 switch (P) {
2584 default:
2585 break;
2586 case CmpInst::ICMP_EQ:
2587 case CmpInst::ICMP_ULE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002588 // Equivalent to "A EqP B". This may be the same as the condition tested
2589 // in the max/min; if so, we can just return that.
2590 if (Value *V = ExtractEquivalentCondition(LHS, EqP, A, B))
2591 return V;
2592 if (Value *V = ExtractEquivalentCondition(RHS, EqP, A, B))
2593 return V;
2594 // Otherwise, see if "A EqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002595 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002596 if (Value *V = SimplifyICmpInst(EqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002597 return V;
2598 break;
2599 case CmpInst::ICMP_NE:
Duncan Sandsaf327282011-05-07 16:56:49 +00002600 case CmpInst::ICMP_UGT: {
2601 CmpInst::Predicate InvEqP = CmpInst::getInversePredicate(EqP);
2602 // Equivalent to "A InvEqP B". This may be the same as the condition
2603 // tested in the max/min; if so, we can just return that.
2604 if (Value *V = ExtractEquivalentCondition(LHS, InvEqP, A, B))
2605 return V;
2606 if (Value *V = ExtractEquivalentCondition(RHS, InvEqP, A, B))
2607 return V;
2608 // Otherwise, see if "A InvEqP B" simplifies.
Duncan Sands0a9c1242011-05-03 19:53:10 +00002609 if (MaxRecurse)
Duncan Sandsb8cee002012-03-13 11:42:19 +00002610 if (Value *V = SimplifyICmpInst(InvEqP, A, B, Q, MaxRecurse-1))
Duncan Sands0a9c1242011-05-03 19:53:10 +00002611 return V;
2612 break;
Duncan Sandsaf327282011-05-07 16:56:49 +00002613 }
Duncan Sands0a9c1242011-05-03 19:53:10 +00002614 case CmpInst::ICMP_UGE:
2615 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002616 return getTrue(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002617 case CmpInst::ICMP_ULT:
2618 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002619 return getFalse(ITy);
Duncan Sands0a9c1242011-05-03 19:53:10 +00002620 }
2621 }
2622
Duncan Sandsa2287852011-05-04 16:05:05 +00002623 // Variants on "max(x,y) >= min(x,z)".
2624 Value *C, *D;
2625 if (match(LHS, m_SMax(m_Value(A), m_Value(B))) &&
2626 match(RHS, m_SMin(m_Value(C), m_Value(D))) &&
2627 (A == C || A == D || B == C || B == D)) {
2628 // max(x, ?) pred min(x, ?).
2629 if (Pred == CmpInst::ICMP_SGE)
2630 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002631 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002632 if (Pred == CmpInst::ICMP_SLT)
2633 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002634 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002635 } else if (match(LHS, m_SMin(m_Value(A), m_Value(B))) &&
2636 match(RHS, m_SMax(m_Value(C), m_Value(D))) &&
2637 (A == C || A == D || B == C || B == D)) {
2638 // min(x, ?) pred max(x, ?).
2639 if (Pred == CmpInst::ICMP_SLE)
2640 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002641 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002642 if (Pred == CmpInst::ICMP_SGT)
2643 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002644 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002645 } else if (match(LHS, m_UMax(m_Value(A), m_Value(B))) &&
2646 match(RHS, m_UMin(m_Value(C), m_Value(D))) &&
2647 (A == C || A == D || B == C || B == D)) {
2648 // max(x, ?) pred min(x, ?).
2649 if (Pred == CmpInst::ICMP_UGE)
2650 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002651 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002652 if (Pred == CmpInst::ICMP_ULT)
2653 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002654 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002655 } else if (match(LHS, m_UMin(m_Value(A), m_Value(B))) &&
2656 match(RHS, m_UMax(m_Value(C), m_Value(D))) &&
2657 (A == C || A == D || B == C || B == D)) {
2658 // min(x, ?) pred max(x, ?).
2659 if (Pred == CmpInst::ICMP_ULE)
2660 // Always true.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002661 return getTrue(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002662 if (Pred == CmpInst::ICMP_UGT)
2663 // Always false.
Duncan Sandsc1c92712011-07-26 15:03:53 +00002664 return getFalse(ITy);
Duncan Sandsa2287852011-05-04 16:05:05 +00002665 }
2666
Chandler Carruth8059c842012-03-25 21:28:14 +00002667 // Simplify comparisons of related pointers using a powerful, recursive
2668 // GEP-walk when we have target data available..
Dan Gohman18c77a12013-01-31 02:50:36 +00002669 if (LHS->getType()->isPointerTy())
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002670 if (Constant *C = computePointerICmp(Q.DL, Q.TLI, Pred, LHS, RHS))
Chandler Carruth8059c842012-03-25 21:28:14 +00002671 return C;
2672
Nick Lewycky3db143e2012-02-26 02:09:49 +00002673 if (GetElementPtrInst *GLHS = dyn_cast<GetElementPtrInst>(LHS)) {
2674 if (GEPOperator *GRHS = dyn_cast<GEPOperator>(RHS)) {
2675 if (GLHS->getPointerOperand() == GRHS->getPointerOperand() &&
2676 GLHS->hasAllConstantIndices() && GRHS->hasAllConstantIndices() &&
2677 (ICmpInst::isEquality(Pred) ||
2678 (GLHS->isInBounds() && GRHS->isInBounds() &&
2679 Pred == ICmpInst::getSignedPredicate(Pred)))) {
2680 // The bases are equal and the indices are constant. Build a constant
2681 // expression GEP with the same indices and a null base pointer to see
2682 // what constant folding can make out of it.
2683 Constant *Null = Constant::getNullValue(GLHS->getPointerOperandType());
2684 SmallVector<Value *, 4> IndicesLHS(GLHS->idx_begin(), GLHS->idx_end());
2685 Constant *NewLHS = ConstantExpr::getGetElementPtr(Null, IndicesLHS);
2686
2687 SmallVector<Value *, 4> IndicesRHS(GRHS->idx_begin(), GRHS->idx_end());
2688 Constant *NewRHS = ConstantExpr::getGetElementPtr(Null, IndicesRHS);
2689 return ConstantExpr::getICmp(Pred, NewLHS, NewRHS);
2690 }
2691 }
2692 }
2693
Duncan Sandsf532d312010-11-07 16:12:23 +00002694 // If the comparison is with the result of a select instruction, check whether
2695 // comparing with either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00002696 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00002697 if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00002698 return V;
2699
2700 // If the comparison is with the result of a phi instruction, check whether
2701 // doing the compare with each incoming phi value yields a common result.
Duncan Sandsf64e6902010-12-21 09:09:15 +00002702 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00002703 if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsfc5ad3f02010-11-09 17:25:51 +00002704 return V;
Duncan Sandsf532d312010-11-07 16:12:23 +00002705
Craig Topper9f008862014-04-15 04:59:12 +00002706 return nullptr;
Chris Lattner084a1b52009-11-09 22:57:59 +00002707}
2708
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00002709Value *llvm::SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002710 const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00002711 const TargetLibraryInfo *TLI,
2712 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002713 return ::SimplifyICmpInst(Predicate, LHS, RHS, Query (DL, TLI, DT),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002714 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00002715}
2716
Chris Lattnerc1f19072009-11-09 23:28:39 +00002717/// SimplifyFCmpInst - Given operands for an FCmpInst, see if we can
2718/// fold the result. If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00002719static Value *SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00002720 const Query &Q, unsigned MaxRecurse) {
Chris Lattnerc1f19072009-11-09 23:28:39 +00002721 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate;
2722 assert(CmpInst::isFPPredicate(Pred) && "Not an FP compare!");
2723
Chris Lattnera71e9d62009-11-10 00:55:12 +00002724 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
Chris Lattnerc1f19072009-11-09 23:28:39 +00002725 if (Constant *CRHS = dyn_cast<Constant>(RHS))
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002726 return ConstantFoldCompareInstOperands(Pred, CLHS, CRHS, Q.DL, Q.TLI);
Duncan Sands7e800d62010-11-14 11:23:23 +00002727
Chris Lattnera71e9d62009-11-10 00:55:12 +00002728 // If we have a constant, make sure it is on the RHS.
2729 std::swap(LHS, RHS);
2730 Pred = CmpInst::getSwappedPredicate(Pred);
2731 }
Duncan Sands7e800d62010-11-14 11:23:23 +00002732
Chris Lattnerccfdceb2009-11-09 23:55:12 +00002733 // Fold trivial predicates.
2734 if (Pred == FCmpInst::FCMP_FALSE)
2735 return ConstantInt::get(GetCompareTy(LHS), 0);
2736 if (Pred == FCmpInst::FCMP_TRUE)
2737 return ConstantInt::get(GetCompareTy(LHS), 1);
2738
Chris Lattnerccfdceb2009-11-09 23:55:12 +00002739 if (isa<UndefValue>(RHS)) // fcmp pred X, undef -> undef
2740 return UndefValue::get(GetCompareTy(LHS));
2741
2742 // fcmp x,x -> true/false. Not all compares are foldable.
Duncan Sands772749a2011-01-01 20:08:02 +00002743 if (LHS == RHS) {
Chris Lattnerccfdceb2009-11-09 23:55:12 +00002744 if (CmpInst::isTrueWhenEqual(Pred))
2745 return ConstantInt::get(GetCompareTy(LHS), 1);
2746 if (CmpInst::isFalseWhenEqual(Pred))
2747 return ConstantInt::get(GetCompareTy(LHS), 0);
2748 }
Duncan Sands7e800d62010-11-14 11:23:23 +00002749
Chris Lattnerccfdceb2009-11-09 23:55:12 +00002750 // Handle fcmp with constant RHS
2751 if (Constant *RHSC = dyn_cast<Constant>(RHS)) {
2752 // If the constant is a nan, see if we can fold the comparison based on it.
2753 if (ConstantFP *CFP = dyn_cast<ConstantFP>(RHSC)) {
2754 if (CFP->getValueAPF().isNaN()) {
2755 if (FCmpInst::isOrdered(Pred)) // True "if ordered and foo"
2756 return ConstantInt::getFalse(CFP->getContext());
2757 assert(FCmpInst::isUnordered(Pred) &&
2758 "Comparison must be either ordered or unordered!");
2759 // True if unordered.
2760 return ConstantInt::getTrue(CFP->getContext());
2761 }
Dan Gohman754e4a92010-02-22 04:06:03 +00002762 // Check whether the constant is an infinity.
2763 if (CFP->getValueAPF().isInfinity()) {
2764 if (CFP->getValueAPF().isNegative()) {
2765 switch (Pred) {
2766 case FCmpInst::FCMP_OLT:
2767 // No value is ordered and less than negative infinity.
2768 return ConstantInt::getFalse(CFP->getContext());
2769 case FCmpInst::FCMP_UGE:
2770 // All values are unordered with or at least negative infinity.
2771 return ConstantInt::getTrue(CFP->getContext());
2772 default:
2773 break;
2774 }
2775 } else {
2776 switch (Pred) {
2777 case FCmpInst::FCMP_OGT:
2778 // No value is ordered and greater than infinity.
2779 return ConstantInt::getFalse(CFP->getContext());
2780 case FCmpInst::FCMP_ULE:
2781 // All values are unordered with and at most infinity.
2782 return ConstantInt::getTrue(CFP->getContext());
2783 default:
2784 break;
2785 }
2786 }
2787 }
Chris Lattnerccfdceb2009-11-09 23:55:12 +00002788 }
2789 }
Duncan Sands7e800d62010-11-14 11:23:23 +00002790
Duncan Sandsa620bd12010-11-07 16:46:25 +00002791 // If the comparison is with the result of a select instruction, check whether
2792 // comparing with either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00002793 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00002794 if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00002795 return V;
2796
2797 // If the comparison is with the result of a phi instruction, check whether
2798 // doing the compare with each incoming phi value yields a common result.
Duncan Sandsf64e6902010-12-21 09:09:15 +00002799 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00002800 if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsfc5ad3f02010-11-09 17:25:51 +00002801 return V;
Duncan Sandsa620bd12010-11-07 16:46:25 +00002802
Craig Topper9f008862014-04-15 04:59:12 +00002803 return nullptr;
Chris Lattnerc1f19072009-11-09 23:28:39 +00002804}
2805
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00002806Value *llvm::SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002807 const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00002808 const TargetLibraryInfo *TLI,
2809 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002810 return ::SimplifyFCmpInst(Predicate, LHS, RHS, Query (DL, TLI, DT),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002811 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00002812}
2813
Chris Lattnerc707fa92010-04-20 05:32:14 +00002814/// SimplifySelectInst - Given operands for a SelectInst, see if we can fold
2815/// the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00002816static Value *SimplifySelectInst(Value *CondVal, Value *TrueVal,
2817 Value *FalseVal, const Query &Q,
2818 unsigned MaxRecurse) {
Chris Lattnerc707fa92010-04-20 05:32:14 +00002819 // select true, X, Y -> X
2820 // select false, X, Y -> Y
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00002821 if (Constant *CB = dyn_cast<Constant>(CondVal)) {
2822 if (CB->isAllOnesValue())
2823 return TrueVal;
2824 if (CB->isNullValue())
2825 return FalseVal;
2826 }
Duncan Sands7e800d62010-11-14 11:23:23 +00002827
Chris Lattnerc707fa92010-04-20 05:32:14 +00002828 // select C, X, X -> X
Duncan Sands772749a2011-01-01 20:08:02 +00002829 if (TrueVal == FalseVal)
Chris Lattnerc707fa92010-04-20 05:32:14 +00002830 return TrueVal;
Duncan Sands7e800d62010-11-14 11:23:23 +00002831
Chris Lattnerc707fa92010-04-20 05:32:14 +00002832 if (isa<UndefValue>(CondVal)) { // select undef, X, Y -> X or Y
2833 if (isa<Constant>(TrueVal))
2834 return TrueVal;
2835 return FalseVal;
2836 }
Dan Gohman54664ed2011-07-01 01:03:43 +00002837 if (isa<UndefValue>(TrueVal)) // select C, undef, X -> X
2838 return FalseVal;
2839 if (isa<UndefValue>(FalseVal)) // select C, X, undef -> X
2840 return TrueVal;
Duncan Sands7e800d62010-11-14 11:23:23 +00002841
Craig Topper9f008862014-04-15 04:59:12 +00002842 return nullptr;
Chris Lattnerc707fa92010-04-20 05:32:14 +00002843}
2844
Duncan Sandsb8cee002012-03-13 11:42:19 +00002845Value *llvm::SimplifySelectInst(Value *Cond, Value *TrueVal, Value *FalseVal,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002846 const DataLayout *DL,
Duncan Sandsb8cee002012-03-13 11:42:19 +00002847 const TargetLibraryInfo *TLI,
2848 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002849 return ::SimplifySelectInst(Cond, TrueVal, FalseVal, Query (DL, TLI, DT),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002850 RecursionLimit);
2851}
2852
Chris Lattner8574aba2009-11-27 00:29:05 +00002853/// SimplifyGEPInst - Given operands for an GetElementPtrInst, see if we can
2854/// fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00002855static Value *SimplifyGEPInst(ArrayRef<Value *> Ops, const Query &Q, unsigned) {
Duncan Sands8a0f4862010-11-22 13:42:49 +00002856 // The type of the GEP pointer operand.
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00002857 PointerType *PtrTy = cast<PointerType>(Ops[0]->getType()->getScalarType());
Duncan Sands8a0f4862010-11-22 13:42:49 +00002858
Chris Lattner8574aba2009-11-27 00:29:05 +00002859 // getelementptr P -> P.
Jay Foadb992a632011-07-19 15:07:52 +00002860 if (Ops.size() == 1)
Chris Lattner8574aba2009-11-27 00:29:05 +00002861 return Ops[0];
2862
Duncan Sands8a0f4862010-11-22 13:42:49 +00002863 if (isa<UndefValue>(Ops[0])) {
2864 // Compute the (pointer) type returned by the GEP instruction.
Jay Foadd1b78492011-07-25 09:48:08 +00002865 Type *LastType = GetElementPtrInst::getIndexedType(PtrTy, Ops.slice(1));
Chris Lattner229907c2011-07-18 04:54:35 +00002866 Type *GEPTy = PointerType::get(LastType, PtrTy->getAddressSpace());
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00002867 if (VectorType *VT = dyn_cast<VectorType>(Ops[0]->getType()))
2868 GEPTy = VectorType::get(GEPTy, VT->getNumElements());
Duncan Sands8a0f4862010-11-22 13:42:49 +00002869 return UndefValue::get(GEPTy);
2870 }
Chris Lattner8574aba2009-11-27 00:29:05 +00002871
Jay Foadb992a632011-07-19 15:07:52 +00002872 if (Ops.size() == 2) {
Duncan Sandscf4bceb2010-11-21 13:53:09 +00002873 // getelementptr P, 0 -> P.
Benjamin Kramer5e1794e2014-01-24 17:09:53 +00002874 if (match(Ops[1], m_Zero()))
2875 return Ops[0];
Duncan Sandscf4bceb2010-11-21 13:53:09 +00002876 // getelementptr P, N -> P if P points to a type of zero size.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002877 if (Q.DL) {
Chris Lattner229907c2011-07-18 04:54:35 +00002878 Type *Ty = PtrTy->getElementType();
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002879 if (Ty->isSized() && Q.DL->getTypeAllocSize(Ty) == 0)
Duncan Sandscf4bceb2010-11-21 13:53:09 +00002880 return Ops[0];
2881 }
2882 }
Duncan Sands7e800d62010-11-14 11:23:23 +00002883
Chris Lattner8574aba2009-11-27 00:29:05 +00002884 // Check to see if this is constant foldable.
Jay Foadb992a632011-07-19 15:07:52 +00002885 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
Chris Lattner8574aba2009-11-27 00:29:05 +00002886 if (!isa<Constant>(Ops[i]))
Craig Topper9f008862014-04-15 04:59:12 +00002887 return nullptr;
Duncan Sands7e800d62010-11-14 11:23:23 +00002888
Jay Foaded8db7d2011-07-21 14:31:17 +00002889 return ConstantExpr::getGetElementPtr(cast<Constant>(Ops[0]), Ops.slice(1));
Chris Lattner8574aba2009-11-27 00:29:05 +00002890}
2891
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002892Value *llvm::SimplifyGEPInst(ArrayRef<Value *> Ops, const DataLayout *DL,
Duncan Sandsb8cee002012-03-13 11:42:19 +00002893 const TargetLibraryInfo *TLI,
2894 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002895 return ::SimplifyGEPInst(Ops, Query (DL, TLI, DT), RecursionLimit);
Duncan Sandsb8cee002012-03-13 11:42:19 +00002896}
2897
Duncan Sandsfd26a952011-09-05 06:52:48 +00002898/// SimplifyInsertValueInst - Given operands for an InsertValueInst, see if we
2899/// can fold the result. If not, this returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00002900static Value *SimplifyInsertValueInst(Value *Agg, Value *Val,
2901 ArrayRef<unsigned> Idxs, const Query &Q,
2902 unsigned) {
Duncan Sandsfd26a952011-09-05 06:52:48 +00002903 if (Constant *CAgg = dyn_cast<Constant>(Agg))
2904 if (Constant *CVal = dyn_cast<Constant>(Val))
2905 return ConstantFoldInsertValueInstruction(CAgg, CVal, Idxs);
2906
2907 // insertvalue x, undef, n -> x
2908 if (match(Val, m_Undef()))
2909 return Agg;
2910
2911 // insertvalue x, (extractvalue y, n), n
2912 if (ExtractValueInst *EV = dyn_cast<ExtractValueInst>(Val))
Benjamin Kramer4b79c212011-09-05 18:16:19 +00002913 if (EV->getAggregateOperand()->getType() == Agg->getType() &&
2914 EV->getIndices() == Idxs) {
Duncan Sandsfd26a952011-09-05 06:52:48 +00002915 // insertvalue undef, (extractvalue y, n), n -> y
2916 if (match(Agg, m_Undef()))
2917 return EV->getAggregateOperand();
2918
2919 // insertvalue y, (extractvalue y, n), n -> y
2920 if (Agg == EV->getAggregateOperand())
2921 return Agg;
2922 }
2923
Craig Topper9f008862014-04-15 04:59:12 +00002924 return nullptr;
Duncan Sandsfd26a952011-09-05 06:52:48 +00002925}
2926
Duncan Sandsb8cee002012-03-13 11:42:19 +00002927Value *llvm::SimplifyInsertValueInst(Value *Agg, Value *Val,
2928 ArrayRef<unsigned> Idxs,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002929 const DataLayout *DL,
Duncan Sandsb8cee002012-03-13 11:42:19 +00002930 const TargetLibraryInfo *TLI,
2931 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002932 return ::SimplifyInsertValueInst(Agg, Val, Idxs, Query (DL, TLI, DT),
Duncan Sandsb8cee002012-03-13 11:42:19 +00002933 RecursionLimit);
2934}
2935
Duncan Sands7412f6e2010-11-17 04:30:22 +00002936/// SimplifyPHINode - See if we can fold the given phi. If not, returns null.
Duncan Sandsb8cee002012-03-13 11:42:19 +00002937static Value *SimplifyPHINode(PHINode *PN, const Query &Q) {
Duncan Sands7412f6e2010-11-17 04:30:22 +00002938 // If all of the PHI's incoming values are the same then replace the PHI node
2939 // with the common value.
Craig Topper9f008862014-04-15 04:59:12 +00002940 Value *CommonValue = nullptr;
Duncan Sands7412f6e2010-11-17 04:30:22 +00002941 bool HasUndefInput = false;
2942 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
2943 Value *Incoming = PN->getIncomingValue(i);
2944 // If the incoming value is the phi node itself, it can safely be skipped.
2945 if (Incoming == PN) continue;
2946 if (isa<UndefValue>(Incoming)) {
2947 // Remember that we saw an undef value, but otherwise ignore them.
2948 HasUndefInput = true;
2949 continue;
2950 }
2951 if (CommonValue && Incoming != CommonValue)
Craig Topper9f008862014-04-15 04:59:12 +00002952 return nullptr; // Not the same, bail out.
Duncan Sands7412f6e2010-11-17 04:30:22 +00002953 CommonValue = Incoming;
2954 }
2955
2956 // If CommonValue is null then all of the incoming values were either undef or
2957 // equal to the phi node itself.
2958 if (!CommonValue)
2959 return UndefValue::get(PN->getType());
2960
2961 // If we have a PHI node like phi(X, undef, X), where X is defined by some
2962 // instruction, we cannot return X as the result of the PHI node unless it
2963 // dominates the PHI block.
2964 if (HasUndefInput)
Craig Topper9f008862014-04-15 04:59:12 +00002965 return ValueDominatesPHI(CommonValue, PN, Q.DT) ? CommonValue : nullptr;
Duncan Sands7412f6e2010-11-17 04:30:22 +00002966
2967 return CommonValue;
2968}
2969
Duncan Sands395ac42d2012-03-13 14:07:05 +00002970static Value *SimplifyTruncInst(Value *Op, Type *Ty, const Query &Q, unsigned) {
2971 if (Constant *C = dyn_cast<Constant>(Op))
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002972 return ConstantFoldInstOperands(Instruction::Trunc, Ty, C, Q.DL, Q.TLI);
Duncan Sands395ac42d2012-03-13 14:07:05 +00002973
Craig Topper9f008862014-04-15 04:59:12 +00002974 return nullptr;
Duncan Sands395ac42d2012-03-13 14:07:05 +00002975}
2976
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002977Value *llvm::SimplifyTruncInst(Value *Op, Type *Ty, const DataLayout *DL,
Duncan Sands395ac42d2012-03-13 14:07:05 +00002978 const TargetLibraryInfo *TLI,
2979 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00002980 return ::SimplifyTruncInst(Op, Ty, Query (DL, TLI, DT), RecursionLimit);
Duncan Sands395ac42d2012-03-13 14:07:05 +00002981}
2982
Chris Lattnera71e9d62009-11-10 00:55:12 +00002983//=== Helper functions for higher up the class hierarchy.
Chris Lattnerc1f19072009-11-09 23:28:39 +00002984
Chris Lattnera71e9d62009-11-10 00:55:12 +00002985/// SimplifyBinOp - Given operands for a BinaryOperator, see if we can
2986/// fold the result. If not, this returns null.
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00002987static Value *SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00002988 const Query &Q, unsigned MaxRecurse) {
Chris Lattnera71e9d62009-11-10 00:55:12 +00002989 switch (Opcode) {
Chris Lattner9e4aa022011-02-09 17:15:04 +00002990 case Instruction::Add:
Duncan Sands8b4e2832011-02-09 17:45:03 +00002991 return SimplifyAddInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sandsb8cee002012-03-13 11:42:19 +00002992 Q, MaxRecurse);
Michael Ilsemand2b05e52012-12-12 00:29:16 +00002993 case Instruction::FAdd:
2994 return SimplifyFAddInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
2995
Chris Lattner9e4aa022011-02-09 17:15:04 +00002996 case Instruction::Sub:
Duncan Sands8b4e2832011-02-09 17:45:03 +00002997 return SimplifySubInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sandsb8cee002012-03-13 11:42:19 +00002998 Q, MaxRecurse);
Michael Ilsemand2b05e52012-12-12 00:29:16 +00002999 case Instruction::FSub:
3000 return SimplifyFSubInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
3001
Duncan Sandsb8cee002012-03-13 11:42:19 +00003002 case Instruction::Mul: return SimplifyMulInst (LHS, RHS, Q, MaxRecurse);
Michael Ilsemand2b05e52012-12-12 00:29:16 +00003003 case Instruction::FMul:
3004 return SimplifyFMulInst (LHS, RHS, FastMathFlags(), Q, MaxRecurse);
Duncan Sandsb8cee002012-03-13 11:42:19 +00003005 case Instruction::SDiv: return SimplifySDivInst(LHS, RHS, Q, MaxRecurse);
3006 case Instruction::UDiv: return SimplifyUDivInst(LHS, RHS, Q, MaxRecurse);
3007 case Instruction::FDiv: return SimplifyFDivInst(LHS, RHS, Q, MaxRecurse);
3008 case Instruction::SRem: return SimplifySRemInst(LHS, RHS, Q, MaxRecurse);
3009 case Instruction::URem: return SimplifyURemInst(LHS, RHS, Q, MaxRecurse);
3010 case Instruction::FRem: return SimplifyFRemInst(LHS, RHS, Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00003011 case Instruction::Shl:
Duncan Sands8b4e2832011-02-09 17:45:03 +00003012 return SimplifyShlInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003013 Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00003014 case Instruction::LShr:
Duncan Sandsb8cee002012-03-13 11:42:19 +00003015 return SimplifyLShrInst(LHS, RHS, /*isExact*/false, Q, MaxRecurse);
Chris Lattner9e4aa022011-02-09 17:15:04 +00003016 case Instruction::AShr:
Duncan Sandsb8cee002012-03-13 11:42:19 +00003017 return SimplifyAShrInst(LHS, RHS, /*isExact*/false, Q, MaxRecurse);
3018 case Instruction::And: return SimplifyAndInst(LHS, RHS, Q, MaxRecurse);
3019 case Instruction::Or: return SimplifyOrInst (LHS, RHS, Q, MaxRecurse);
3020 case Instruction::Xor: return SimplifyXorInst(LHS, RHS, Q, MaxRecurse);
Chris Lattnera71e9d62009-11-10 00:55:12 +00003021 default:
3022 if (Constant *CLHS = dyn_cast<Constant>(LHS))
3023 if (Constant *CRHS = dyn_cast<Constant>(RHS)) {
3024 Constant *COps[] = {CLHS, CRHS};
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003025 return ConstantFoldInstOperands(Opcode, LHS->getType(), COps, Q.DL,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003026 Q.TLI);
Chris Lattnera71e9d62009-11-10 00:55:12 +00003027 }
Duncan Sandsb0579e92010-11-10 13:00:08 +00003028
Duncan Sands6c7a52c2010-12-21 08:49:00 +00003029 // If the operation is associative, try some generic simplifications.
3030 if (Instruction::isAssociative(Opcode))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003031 if (Value *V = SimplifyAssociativeBinOp(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sands6c7a52c2010-12-21 08:49:00 +00003032 return V;
3033
Duncan Sandsb8cee002012-03-13 11:42:19 +00003034 // If the operation is with the result of a select instruction check whether
Duncan Sandsb0579e92010-11-10 13:00:08 +00003035 // operating on either branch of the select always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003036 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003037 if (Value *V = ThreadBinOpOverSelect(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003038 return V;
3039
3040 // If the operation is with the result of a phi instruction, check whether
3041 // operating on all incoming values of the phi always yields the same value.
Duncan Sandsf64e6902010-12-21 09:09:15 +00003042 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003043 if (Value *V = ThreadBinOpOverPHI(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sandsb0579e92010-11-10 13:00:08 +00003044 return V;
3045
Craig Topper9f008862014-04-15 04:59:12 +00003046 return nullptr;
Chris Lattnera71e9d62009-11-10 00:55:12 +00003047 }
3048}
Chris Lattnerc1f19072009-11-09 23:28:39 +00003049
Duncan Sands7e800d62010-11-14 11:23:23 +00003050Value *llvm::SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003051 const DataLayout *DL, const TargetLibraryInfo *TLI,
Chad Rosierc24b86f2011-12-01 03:08:23 +00003052 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003053 return ::SimplifyBinOp(Opcode, LHS, RHS, Query (DL, TLI, DT), RecursionLimit);
Chris Lattnerc1f19072009-11-09 23:28:39 +00003054}
3055
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003056/// SimplifyCmpInst - Given operands for a CmpInst, see if we can
3057/// fold the result.
3058static Value *SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Duncan Sandsb8cee002012-03-13 11:42:19 +00003059 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003060 if (CmpInst::isIntPredicate((CmpInst::Predicate)Predicate))
Duncan Sandsb8cee002012-03-13 11:42:19 +00003061 return SimplifyICmpInst(Predicate, LHS, RHS, Q, MaxRecurse);
3062 return SimplifyFCmpInst(Predicate, LHS, RHS, Q, MaxRecurse);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003063}
3064
3065Value *llvm::SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003066 const DataLayout *DL, const TargetLibraryInfo *TLI,
Chad Rosierc24b86f2011-12-01 03:08:23 +00003067 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003068 return ::SimplifyCmpInst(Predicate, LHS, RHS, Query (DL, TLI, DT),
Duncan Sandsb8cee002012-03-13 11:42:19 +00003069 RecursionLimit);
Duncan Sandsf3b1bf12010-11-10 18:23:01 +00003070}
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003071
Michael Ilseman54857292013-02-07 19:26:05 +00003072static bool IsIdempotent(Intrinsic::ID ID) {
3073 switch (ID) {
3074 default: return false;
3075
3076 // Unary idempotent: f(f(x)) = f(x)
3077 case Intrinsic::fabs:
3078 case Intrinsic::floor:
3079 case Intrinsic::ceil:
3080 case Intrinsic::trunc:
3081 case Intrinsic::rint:
3082 case Intrinsic::nearbyint:
Hal Finkel171817e2013-08-07 22:49:12 +00003083 case Intrinsic::round:
Michael Ilseman54857292013-02-07 19:26:05 +00003084 return true;
3085 }
3086}
3087
3088template <typename IterTy>
3089static Value *SimplifyIntrinsic(Intrinsic::ID IID, IterTy ArgBegin, IterTy ArgEnd,
3090 const Query &Q, unsigned MaxRecurse) {
3091 // Perform idempotent optimizations
3092 if (!IsIdempotent(IID))
Craig Topper9f008862014-04-15 04:59:12 +00003093 return nullptr;
Michael Ilseman54857292013-02-07 19:26:05 +00003094
3095 // Unary Ops
3096 if (std::distance(ArgBegin, ArgEnd) == 1)
3097 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(*ArgBegin))
3098 if (II->getIntrinsicID() == IID)
3099 return II;
3100
Craig Topper9f008862014-04-15 04:59:12 +00003101 return nullptr;
Michael Ilseman54857292013-02-07 19:26:05 +00003102}
3103
Chandler Carruth9dc35582012-12-28 11:30:55 +00003104template <typename IterTy>
Chandler Carruthf6182152012-12-28 14:23:29 +00003105static Value *SimplifyCall(Value *V, IterTy ArgBegin, IterTy ArgEnd,
Chandler Carruth9dc35582012-12-28 11:30:55 +00003106 const Query &Q, unsigned MaxRecurse) {
Chandler Carruthf6182152012-12-28 14:23:29 +00003107 Type *Ty = V->getType();
Chandler Carruth9dc35582012-12-28 11:30:55 +00003108 if (PointerType *PTy = dyn_cast<PointerType>(Ty))
3109 Ty = PTy->getElementType();
3110 FunctionType *FTy = cast<FunctionType>(Ty);
3111
Dan Gohman85977e62011-11-04 18:32:42 +00003112 // call undef -> undef
Chandler Carruthf6182152012-12-28 14:23:29 +00003113 if (isa<UndefValue>(V))
Chandler Carruth9dc35582012-12-28 11:30:55 +00003114 return UndefValue::get(FTy->getReturnType());
Dan Gohman85977e62011-11-04 18:32:42 +00003115
Chandler Carruthf6182152012-12-28 14:23:29 +00003116 Function *F = dyn_cast<Function>(V);
3117 if (!F)
Craig Topper9f008862014-04-15 04:59:12 +00003118 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00003119
Michael Ilseman54857292013-02-07 19:26:05 +00003120 if (unsigned IID = F->getIntrinsicID())
3121 if (Value *Ret =
3122 SimplifyIntrinsic((Intrinsic::ID) IID, ArgBegin, ArgEnd, Q, MaxRecurse))
3123 return Ret;
3124
Chandler Carruthf6182152012-12-28 14:23:29 +00003125 if (!canConstantFoldCallTo(F))
Craig Topper9f008862014-04-15 04:59:12 +00003126 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00003127
3128 SmallVector<Constant *, 4> ConstantArgs;
3129 ConstantArgs.reserve(ArgEnd - ArgBegin);
3130 for (IterTy I = ArgBegin, E = ArgEnd; I != E; ++I) {
3131 Constant *C = dyn_cast<Constant>(*I);
3132 if (!C)
Craig Topper9f008862014-04-15 04:59:12 +00003133 return nullptr;
Chandler Carruthf6182152012-12-28 14:23:29 +00003134 ConstantArgs.push_back(C);
3135 }
3136
3137 return ConstantFoldCall(F, ConstantArgs, Q.TLI);
Dan Gohman85977e62011-11-04 18:32:42 +00003138}
3139
Chandler Carruthf6182152012-12-28 14:23:29 +00003140Value *llvm::SimplifyCall(Value *V, User::op_iterator ArgBegin,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003141 User::op_iterator ArgEnd, const DataLayout *DL,
Chandler Carruth9dc35582012-12-28 11:30:55 +00003142 const TargetLibraryInfo *TLI,
3143 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003144 return ::SimplifyCall(V, ArgBegin, ArgEnd, Query(DL, TLI, DT),
Chandler Carruth9dc35582012-12-28 11:30:55 +00003145 RecursionLimit);
3146}
3147
Chandler Carruthf6182152012-12-28 14:23:29 +00003148Value *llvm::SimplifyCall(Value *V, ArrayRef<Value *> Args,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003149 const DataLayout *DL, const TargetLibraryInfo *TLI,
Chandler Carruth9dc35582012-12-28 11:30:55 +00003150 const DominatorTree *DT) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003151 return ::SimplifyCall(V, Args.begin(), Args.end(), Query(DL, TLI, DT),
Chandler Carruth9dc35582012-12-28 11:30:55 +00003152 RecursionLimit);
3153}
3154
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003155/// SimplifyInstruction - See if we can compute a simplified version of this
3156/// instruction. If not, this returns null.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003157Value *llvm::SimplifyInstruction(Instruction *I, const DataLayout *DL,
Chad Rosierc24b86f2011-12-01 03:08:23 +00003158 const TargetLibraryInfo *TLI,
Duncan Sandsb99f39b2010-11-14 18:36:10 +00003159 const DominatorTree *DT) {
Duncan Sands64e41cf2010-11-17 08:35:29 +00003160 Value *Result;
3161
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003162 switch (I->getOpcode()) {
3163 default:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003164 Result = ConstantFoldInstruction(I, DL, TLI);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003165 break;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00003166 case Instruction::FAdd:
3167 Result = SimplifyFAddInst(I->getOperand(0), I->getOperand(1),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003168 I->getFastMathFlags(), DL, TLI, DT);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00003169 break;
Chris Lattner3d9823b2009-11-27 17:42:22 +00003170 case Instruction::Add:
Duncan Sands64e41cf2010-11-17 08:35:29 +00003171 Result = SimplifyAddInst(I->getOperand(0), I->getOperand(1),
3172 cast<BinaryOperator>(I)->hasNoSignedWrap(),
3173 cast<BinaryOperator>(I)->hasNoUnsignedWrap(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003174 DL, TLI, DT);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003175 break;
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00003176 case Instruction::FSub:
3177 Result = SimplifyFSubInst(I->getOperand(0), I->getOperand(1),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003178 I->getFastMathFlags(), DL, TLI, DT);
Michael Ilsemanbb6f6912012-12-12 00:27:46 +00003179 break;
Duncan Sands0a2c41682010-12-15 14:07:39 +00003180 case Instruction::Sub:
3181 Result = SimplifySubInst(I->getOperand(0), I->getOperand(1),
3182 cast<BinaryOperator>(I)->hasNoSignedWrap(),
3183 cast<BinaryOperator>(I)->hasNoUnsignedWrap(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003184 DL, TLI, DT);
Duncan Sands0a2c41682010-12-15 14:07:39 +00003185 break;
Michael Ilsemanbe9137a2012-11-27 00:46:26 +00003186 case Instruction::FMul:
3187 Result = SimplifyFMulInst(I->getOperand(0), I->getOperand(1),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003188 I->getFastMathFlags(), DL, TLI, DT);
Michael Ilsemanbe9137a2012-11-27 00:46:26 +00003189 break;
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00003190 case Instruction::Mul:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003191 Result = SimplifyMulInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT);
Duncan Sandsd0eb6d32010-12-21 14:00:22 +00003192 break;
Duncan Sands771e82a2011-01-28 16:51:11 +00003193 case Instruction::SDiv:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003194 Result = SimplifySDivInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT);
Duncan Sands771e82a2011-01-28 16:51:11 +00003195 break;
3196 case Instruction::UDiv:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003197 Result = SimplifyUDivInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT);
Duncan Sands771e82a2011-01-28 16:51:11 +00003198 break;
Frits van Bommelc2549662011-01-29 15:26:31 +00003199 case Instruction::FDiv:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003200 Result = SimplifyFDivInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT);
Frits van Bommelc2549662011-01-29 15:26:31 +00003201 break;
Duncan Sandsa3e36992011-05-02 16:27:02 +00003202 case Instruction::SRem:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003203 Result = SimplifySRemInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT);
Duncan Sandsa3e36992011-05-02 16:27:02 +00003204 break;
3205 case Instruction::URem:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003206 Result = SimplifyURemInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT);
Duncan Sandsa3e36992011-05-02 16:27:02 +00003207 break;
3208 case Instruction::FRem:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003209 Result = SimplifyFRemInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT);
Duncan Sandsa3e36992011-05-02 16:27:02 +00003210 break;
Duncan Sands7f60dc12011-01-14 00:37:45 +00003211 case Instruction::Shl:
Chris Lattner9e4aa022011-02-09 17:15:04 +00003212 Result = SimplifyShlInst(I->getOperand(0), I->getOperand(1),
3213 cast<BinaryOperator>(I)->hasNoSignedWrap(),
3214 cast<BinaryOperator>(I)->hasNoUnsignedWrap(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003215 DL, TLI, DT);
Duncan Sands7f60dc12011-01-14 00:37:45 +00003216 break;
3217 case Instruction::LShr:
Chris Lattner9e4aa022011-02-09 17:15:04 +00003218 Result = SimplifyLShrInst(I->getOperand(0), I->getOperand(1),
3219 cast<BinaryOperator>(I)->isExact(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003220 DL, TLI, DT);
Duncan Sands7f60dc12011-01-14 00:37:45 +00003221 break;
3222 case Instruction::AShr:
Chris Lattner9e4aa022011-02-09 17:15:04 +00003223 Result = SimplifyAShrInst(I->getOperand(0), I->getOperand(1),
3224 cast<BinaryOperator>(I)->isExact(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003225 DL, TLI, DT);
Duncan Sands7f60dc12011-01-14 00:37:45 +00003226 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003227 case Instruction::And:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003228 Result = SimplifyAndInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003229 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003230 case Instruction::Or:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003231 Result = SimplifyOrInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003232 break;
Duncan Sandsc89ac072010-11-17 18:52:15 +00003233 case Instruction::Xor:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003234 Result = SimplifyXorInst(I->getOperand(0), I->getOperand(1), DL, TLI, DT);
Duncan Sandsc89ac072010-11-17 18:52:15 +00003235 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003236 case Instruction::ICmp:
Duncan Sands64e41cf2010-11-17 08:35:29 +00003237 Result = SimplifyICmpInst(cast<ICmpInst>(I)->getPredicate(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003238 I->getOperand(0), I->getOperand(1), DL, TLI, DT);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003239 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003240 case Instruction::FCmp:
Duncan Sands64e41cf2010-11-17 08:35:29 +00003241 Result = SimplifyFCmpInst(cast<FCmpInst>(I)->getPredicate(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003242 I->getOperand(0), I->getOperand(1), DL, TLI, DT);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003243 break;
Chris Lattnerc707fa92010-04-20 05:32:14 +00003244 case Instruction::Select:
Duncan Sands64e41cf2010-11-17 08:35:29 +00003245 Result = SimplifySelectInst(I->getOperand(0), I->getOperand(1),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003246 I->getOperand(2), DL, TLI, DT);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003247 break;
Chris Lattner8574aba2009-11-27 00:29:05 +00003248 case Instruction::GetElementPtr: {
3249 SmallVector<Value*, 8> Ops(I->op_begin(), I->op_end());
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003250 Result = SimplifyGEPInst(Ops, DL, TLI, DT);
Duncan Sands64e41cf2010-11-17 08:35:29 +00003251 break;
Chris Lattner8574aba2009-11-27 00:29:05 +00003252 }
Duncan Sandsfd26a952011-09-05 06:52:48 +00003253 case Instruction::InsertValue: {
3254 InsertValueInst *IV = cast<InsertValueInst>(I);
3255 Result = SimplifyInsertValueInst(IV->getAggregateOperand(),
3256 IV->getInsertedValueOperand(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003257 IV->getIndices(), DL, TLI, DT);
Duncan Sandsfd26a952011-09-05 06:52:48 +00003258 break;
3259 }
Duncan Sands4581ddc2010-11-14 13:30:18 +00003260 case Instruction::PHI:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003261 Result = SimplifyPHINode(cast<PHINode>(I), Query (DL, TLI, DT));
Duncan Sands64e41cf2010-11-17 08:35:29 +00003262 break;
Chandler Carruth9dc35582012-12-28 11:30:55 +00003263 case Instruction::Call: {
3264 CallSite CS(cast<CallInst>(I));
3265 Result = SimplifyCall(CS.getCalledValue(), CS.arg_begin(), CS.arg_end(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003266 DL, TLI, DT);
Dan Gohman85977e62011-11-04 18:32:42 +00003267 break;
Chandler Carruth9dc35582012-12-28 11:30:55 +00003268 }
Duncan Sands395ac42d2012-03-13 14:07:05 +00003269 case Instruction::Trunc:
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003270 Result = SimplifyTruncInst(I->getOperand(0), I->getType(), DL, TLI, DT);
Duncan Sands395ac42d2012-03-13 14:07:05 +00003271 break;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003272 }
Duncan Sands64e41cf2010-11-17 08:35:29 +00003273
3274 /// If called on unreachable code, the above logic may report that the
3275 /// instruction simplified to itself. Make life easier for users by
Duncan Sands019a4182010-12-15 11:02:22 +00003276 /// detecting that case here, returning a safe value instead.
3277 return Result == I ? UndefValue::get(I->getType()) : Result;
Chris Lattnerfb7f87d2009-11-10 01:08:51 +00003278}
3279
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003280/// \brief Implementation of recursive simplification through an instructions
3281/// uses.
Chris Lattner852d6d62009-11-10 22:26:15 +00003282///
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003283/// This is the common implementation of the recursive simplification routines.
3284/// If we have a pre-simplified value in 'SimpleV', that is forcibly used to
3285/// replace the instruction 'I'. Otherwise, we simply add 'I' to the list of
3286/// instructions to process and attempt to simplify it using
3287/// InstructionSimplify.
3288///
3289/// This routine returns 'true' only when *it* simplifies something. The passed
3290/// in simplified value does not count toward this.
3291static bool replaceAndRecursivelySimplifyImpl(Instruction *I, Value *SimpleV,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003292 const DataLayout *DL,
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003293 const TargetLibraryInfo *TLI,
3294 const DominatorTree *DT) {
3295 bool Simplified = false;
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00003296 SmallSetVector<Instruction *, 8> Worklist;
Duncan Sands7e800d62010-11-14 11:23:23 +00003297
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003298 // If we have an explicit value to collapse to, do that round of the
3299 // simplification loop by hand initially.
3300 if (SimpleV) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00003301 for (User *U : I->users())
3302 if (U != I)
3303 Worklist.insert(cast<Instruction>(U));
Duncan Sands7e800d62010-11-14 11:23:23 +00003304
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003305 // Replace the instruction with its simplified value.
3306 I->replaceAllUsesWith(SimpleV);
Chris Lattner19eff2a2010-07-15 06:36:08 +00003307
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003308 // Gracefully handle edge cases where the instruction is not wired into any
3309 // parent block.
3310 if (I->getParent())
3311 I->eraseFromParent();
3312 } else {
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00003313 Worklist.insert(I);
Chris Lattner852d6d62009-11-10 22:26:15 +00003314 }
Duncan Sands7e800d62010-11-14 11:23:23 +00003315
Chandler Carruth77e8bfb2012-03-24 22:34:26 +00003316 // Note that we must test the size on each iteration, the worklist can grow.
3317 for (unsigned Idx = 0; Idx != Worklist.size(); ++Idx) {
3318 I = Worklist[Idx];
Duncan Sands7e800d62010-11-14 11:23:23 +00003319
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003320 // See if this instruction simplifies.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003321 SimpleV = SimplifyInstruction(I, DL, TLI, DT);
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003322 if (!SimpleV)
3323 continue;
3324
3325 Simplified = true;
3326
3327 // Stash away all the uses of the old instruction so we can check them for
3328 // recursive simplifications after a RAUW. This is cheaper than checking all
3329 // uses of To on the recursive step in most cases.
Chandler Carruthcdf47882014-03-09 03:16:01 +00003330 for (User *U : I->users())
3331 Worklist.insert(cast<Instruction>(U));
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003332
3333 // Replace the instruction with its simplified value.
3334 I->replaceAllUsesWith(SimpleV);
3335
3336 // Gracefully handle edge cases where the instruction is not wired into any
3337 // parent block.
3338 if (I->getParent())
3339 I->eraseFromParent();
3340 }
3341 return Simplified;
3342}
3343
3344bool llvm::recursivelySimplifyInstruction(Instruction *I,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003345 const DataLayout *DL,
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003346 const TargetLibraryInfo *TLI,
3347 const DominatorTree *DT) {
Craig Topper9f008862014-04-15 04:59:12 +00003348 return replaceAndRecursivelySimplifyImpl(I, nullptr, DL, TLI, DT);
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003349}
3350
3351bool llvm::replaceAndRecursivelySimplify(Instruction *I, Value *SimpleV,
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003352 const DataLayout *DL,
Chandler Carruthcf1b5852012-03-24 21:11:24 +00003353 const TargetLibraryInfo *TLI,
3354 const DominatorTree *DT) {
3355 assert(I != SimpleV && "replaceAndRecursivelySimplify(X,X) is not valid!");
3356 assert(SimpleV && "Must provide a simplified value.");
Rafael Espindola37dc9e12014-02-21 00:06:31 +00003357 return replaceAndRecursivelySimplifyImpl(I, SimpleV, DL, TLI, DT);
Chris Lattner852d6d62009-11-10 22:26:15 +00003358}