blob: bc51457406614b81b0806324299f09622cad132a [file] [log] [blame]
Chris Lattner9f3c25a2009-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 Sands4cd2ad12010-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 Sandsee9a2e32010-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 Lattner9f3c25a2009-11-09 22:57:59 +000017//
18//===----------------------------------------------------------------------===//
19
Duncan Sandsa3c44a52010-12-22 09:40:51 +000020#define DEBUG_TYPE "instsimplify"
Chris Lattner9f3c25a2009-11-09 22:57:59 +000021#include "llvm/Analysis/InstructionSimplify.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000022#include "llvm/ADT/SetVector.h"
23#include "llvm/ADT/Statistic.h"
Nick Lewyckyf7087ea2012-02-26 02:09:49 +000024#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattner9f3c25a2009-11-09 22:57:59 +000025#include "llvm/Analysis/ConstantFolding.h"
Duncan Sands18450092010-11-16 12:16:38 +000026#include "llvm/Analysis/Dominators.h"
Duncan Sandsd70d1a52011-01-25 09:38:29 +000027#include "llvm/Analysis/ValueTracking.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000028#include "llvm/IR/DataLayout.h"
29#include "llvm/IR/GlobalAlias.h"
30#include "llvm/IR/Operator.h"
Nick Lewycky3a73e342011-03-04 07:00:57 +000031#include "llvm/Support/ConstantRange.h"
Chandler Carruthfc72ae62012-03-12 11:19:31 +000032#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattnerd06094f2009-11-10 00:55:12 +000033#include "llvm/Support/PatternMatch.h"
Duncan Sands18450092010-11-16 12:16:38 +000034#include "llvm/Support/ValueHandle.h"
Chris Lattner9f3c25a2009-11-09 22:57:59 +000035using namespace llvm;
Chris Lattnerd06094f2009-11-10 00:55:12 +000036using namespace llvm::PatternMatch;
Chris Lattner9f3c25a2009-11-09 22:57:59 +000037
Chris Lattner81a0dc92011-02-09 17:15:04 +000038enum { RecursionLimit = 3 };
Duncan Sandsa74a58c2010-11-10 18:23:01 +000039
Duncan Sandsa3c44a52010-12-22 09:40:51 +000040STATISTIC(NumExpand, "Number of expansions");
41STATISTIC(NumFactor , "Number of factorizations");
42STATISTIC(NumReassoc, "Number of reassociations");
43
Duncan Sands0aa85eb2012-03-13 11:42:19 +000044struct Query {
Micah Villmow3574eca2012-10-08 16:38:25 +000045 const DataLayout *TD;
Duncan Sands0aa85eb2012-03-13 11:42:19 +000046 const TargetLibraryInfo *TLI;
47 const DominatorTree *DT;
48
Micah Villmow3574eca2012-10-08 16:38:25 +000049 Query(const DataLayout *td, const TargetLibraryInfo *tli,
Bill Wendling91337832012-05-17 20:27:58 +000050 const DominatorTree *dt) : TD(td), TLI(tli), DT(dt) {}
Duncan Sands0aa85eb2012-03-13 11:42:19 +000051};
52
53static Value *SimplifyAndInst(Value *, Value *, const Query &, unsigned);
54static Value *SimplifyBinOp(unsigned, Value *, Value *, const Query &,
Chad Rosier618c1db2011-12-01 03:08:23 +000055 unsigned);
Duncan Sands0aa85eb2012-03-13 11:42:19 +000056static Value *SimplifyCmpInst(unsigned, Value *, Value *, const Query &,
Chad Rosier618c1db2011-12-01 03:08:23 +000057 unsigned);
Duncan Sands0aa85eb2012-03-13 11:42:19 +000058static Value *SimplifyOrInst(Value *, Value *, const Query &, unsigned);
59static Value *SimplifyXorInst(Value *, Value *, const Query &, unsigned);
Duncan Sandsbd0fe562012-03-13 14:07:05 +000060static Value *SimplifyTruncInst(Value *, Type *, const Query &, unsigned);
Duncan Sands18450092010-11-16 12:16:38 +000061
Duncan Sandsf56138d2011-07-26 15:03:53 +000062/// getFalse - For a boolean type, or a vector of boolean type, return false, or
63/// a vector with every element false, as appropriate for the type.
64static Constant *getFalse(Type *Ty) {
Nick Lewycky66d004e2011-12-01 02:39:36 +000065 assert(Ty->getScalarType()->isIntegerTy(1) &&
Duncan Sandsf56138d2011-07-26 15:03:53 +000066 "Expected i1 type or a vector of i1!");
67 return Constant::getNullValue(Ty);
68}
69
70/// getTrue - For a boolean type, or a vector of boolean type, return true, or
71/// a vector with every element true, as appropriate for the type.
72static Constant *getTrue(Type *Ty) {
Nick Lewycky66d004e2011-12-01 02:39:36 +000073 assert(Ty->getScalarType()->isIntegerTy(1) &&
Duncan Sandsf56138d2011-07-26 15:03:53 +000074 "Expected i1 type or a vector of i1!");
75 return Constant::getAllOnesValue(Ty);
76}
77
Duncan Sands6dc9e2b2011-10-30 19:56:36 +000078/// isSameCompare - Is V equivalent to the comparison "LHS Pred RHS"?
79static bool isSameCompare(Value *V, CmpInst::Predicate Pred, Value *LHS,
80 Value *RHS) {
81 CmpInst *Cmp = dyn_cast<CmpInst>(V);
82 if (!Cmp)
83 return false;
84 CmpInst::Predicate CPred = Cmp->getPredicate();
85 Value *CLHS = Cmp->getOperand(0), *CRHS = Cmp->getOperand(1);
86 if (CPred == Pred && CLHS == LHS && CRHS == RHS)
87 return true;
88 return CPred == CmpInst::getSwappedPredicate(Pred) && CLHS == RHS &&
89 CRHS == LHS;
90}
91
Duncan Sands18450092010-11-16 12:16:38 +000092/// ValueDominatesPHI - Does the given value dominate the specified phi node?
93static bool ValueDominatesPHI(Value *V, PHINode *P, const DominatorTree *DT) {
94 Instruction *I = dyn_cast<Instruction>(V);
95 if (!I)
96 // Arguments and constants dominate all instructions.
97 return true;
98
Chandler Carruthff739c12012-03-21 10:58:47 +000099 // If we are processing instructions (and/or basic blocks) that have not been
100 // fully added to a function, the parent nodes may still be null. Simply
101 // return the conservative answer in these cases.
102 if (!I->getParent() || !P->getParent() || !I->getParent()->getParent())
103 return false;
104
Duncan Sands18450092010-11-16 12:16:38 +0000105 // If we have a DominatorTree then do a precise test.
Eli Friedman5b8f0dd2012-03-13 01:06:07 +0000106 if (DT) {
107 if (!DT->isReachableFromEntry(P->getParent()))
108 return true;
109 if (!DT->isReachableFromEntry(I->getParent()))
110 return false;
111 return DT->dominates(I, P);
112 }
Duncan Sands18450092010-11-16 12:16:38 +0000113
114 // Otherwise, if the instruction is in the entry block, and is not an invoke,
115 // then it obviously dominates all phi nodes.
116 if (I->getParent() == &I->getParent()->getParent()->getEntryBlock() &&
117 !isa<InvokeInst>(I))
118 return true;
119
120 return false;
121}
Duncan Sandsa74a58c2010-11-10 18:23:01 +0000122
Duncan Sands3421d902010-12-21 13:32:22 +0000123/// ExpandBinOp - Simplify "A op (B op' C)" by distributing op over op', turning
124/// it into "(A op B) op' (A op C)". Here "op" is given by Opcode and "op'" is
125/// given by OpcodeToExpand, while "A" corresponds to LHS and "B op' C" to RHS.
126/// Also performs the transform "(A op' B) op C" -> "(A op C) op' (B op C)".
127/// Returns the simplified value, or null if no simplification was performed.
128static Value *ExpandBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000129 unsigned OpcToExpand, const Query &Q,
Chad Rosier618c1db2011-12-01 03:08:23 +0000130 unsigned MaxRecurse) {
Benjamin Kramere21083a2010-12-28 13:52:52 +0000131 Instruction::BinaryOps OpcodeToExpand = (Instruction::BinaryOps)OpcToExpand;
Duncan Sands3421d902010-12-21 13:32:22 +0000132 // Recursion is always used, so bail out at once if we already hit the limit.
133 if (!MaxRecurse--)
134 return 0;
135
136 // Check whether the expression has the form "(A op' B) op C".
137 if (BinaryOperator *Op0 = dyn_cast<BinaryOperator>(LHS))
138 if (Op0->getOpcode() == OpcodeToExpand) {
139 // It does! Try turning it into "(A op C) op' (B op C)".
140 Value *A = Op0->getOperand(0), *B = Op0->getOperand(1), *C = RHS;
141 // Do "A op C" and "B op C" both simplify?
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000142 if (Value *L = SimplifyBinOp(Opcode, A, C, Q, MaxRecurse))
143 if (Value *R = SimplifyBinOp(Opcode, B, C, Q, MaxRecurse)) {
Duncan Sands3421d902010-12-21 13:32:22 +0000144 // They do! Return "L op' R" if it simplifies or is already available.
145 // If "L op' R" equals "A op' B" then "L op' R" is just the LHS.
Duncan Sands124708d2011-01-01 20:08:02 +0000146 if ((L == A && R == B) || (Instruction::isCommutative(OpcodeToExpand)
147 && L == B && R == A)) {
Duncan Sandsa3c44a52010-12-22 09:40:51 +0000148 ++NumExpand;
Duncan Sands3421d902010-12-21 13:32:22 +0000149 return LHS;
Duncan Sandsa3c44a52010-12-22 09:40:51 +0000150 }
Duncan Sands3421d902010-12-21 13:32:22 +0000151 // Otherwise return "L op' R" if it simplifies.
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000152 if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, Q, MaxRecurse)) {
Duncan Sandsa3c44a52010-12-22 09:40:51 +0000153 ++NumExpand;
Duncan Sands3421d902010-12-21 13:32:22 +0000154 return V;
Duncan Sandsa3c44a52010-12-22 09:40:51 +0000155 }
Duncan Sands3421d902010-12-21 13:32:22 +0000156 }
157 }
158
159 // Check whether the expression has the form "A op (B op' C)".
160 if (BinaryOperator *Op1 = dyn_cast<BinaryOperator>(RHS))
161 if (Op1->getOpcode() == OpcodeToExpand) {
162 // It does! Try turning it into "(A op B) op' (A op C)".
163 Value *A = LHS, *B = Op1->getOperand(0), *C = Op1->getOperand(1);
164 // Do "A op B" and "A op C" both simplify?
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000165 if (Value *L = SimplifyBinOp(Opcode, A, B, Q, MaxRecurse))
166 if (Value *R = SimplifyBinOp(Opcode, A, C, Q, MaxRecurse)) {
Duncan Sands3421d902010-12-21 13:32:22 +0000167 // They do! Return "L op' R" if it simplifies or is already available.
168 // If "L op' R" equals "B op' C" then "L op' R" is just the RHS.
Duncan Sands124708d2011-01-01 20:08:02 +0000169 if ((L == B && R == C) || (Instruction::isCommutative(OpcodeToExpand)
170 && L == C && R == B)) {
Duncan Sandsa3c44a52010-12-22 09:40:51 +0000171 ++NumExpand;
Duncan Sands3421d902010-12-21 13:32:22 +0000172 return RHS;
Duncan Sandsa3c44a52010-12-22 09:40:51 +0000173 }
Duncan Sands3421d902010-12-21 13:32:22 +0000174 // Otherwise return "L op' R" if it simplifies.
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000175 if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, Q, MaxRecurse)) {
Duncan Sandsa3c44a52010-12-22 09:40:51 +0000176 ++NumExpand;
Duncan Sands3421d902010-12-21 13:32:22 +0000177 return V;
Duncan Sandsa3c44a52010-12-22 09:40:51 +0000178 }
Duncan Sands3421d902010-12-21 13:32:22 +0000179 }
180 }
181
182 return 0;
183}
184
185/// FactorizeBinOp - Simplify "LHS Opcode RHS" by factorizing out a common term
186/// using the operation OpCodeToExtract. For example, when Opcode is Add and
187/// OpCodeToExtract is Mul then this tries to turn "(A*B)+(A*C)" into "A*(B+C)".
188/// Returns the simplified value, or null if no simplification was performed.
189static Value *FactorizeBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000190 unsigned OpcToExtract, const Query &Q,
Chad Rosier618c1db2011-12-01 03:08:23 +0000191 unsigned MaxRecurse) {
Benjamin Kramere21083a2010-12-28 13:52:52 +0000192 Instruction::BinaryOps OpcodeToExtract = (Instruction::BinaryOps)OpcToExtract;
Duncan Sands3421d902010-12-21 13:32:22 +0000193 // Recursion is always used, so bail out at once if we already hit the limit.
194 if (!MaxRecurse--)
195 return 0;
196
197 BinaryOperator *Op0 = dyn_cast<BinaryOperator>(LHS);
198 BinaryOperator *Op1 = dyn_cast<BinaryOperator>(RHS);
199
200 if (!Op0 || Op0->getOpcode() != OpcodeToExtract ||
201 !Op1 || Op1->getOpcode() != OpcodeToExtract)
202 return 0;
203
204 // The expression has the form "(A op' B) op (C op' D)".
Duncan Sands82fdab32010-12-21 14:00:22 +0000205 Value *A = Op0->getOperand(0), *B = Op0->getOperand(1);
206 Value *C = Op1->getOperand(0), *D = Op1->getOperand(1);
Duncan Sands3421d902010-12-21 13:32:22 +0000207
208 // Use left distributivity, i.e. "X op' (Y op Z) = (X op' Y) op (X op' Z)".
209 // Does the instruction have the form "(A op' B) op (A op' D)" or, in the
210 // commutative case, "(A op' B) op (C op' A)"?
Duncan Sands124708d2011-01-01 20:08:02 +0000211 if (A == C || (Instruction::isCommutative(OpcodeToExtract) && A == D)) {
212 Value *DD = A == C ? D : C;
Duncan Sands3421d902010-12-21 13:32:22 +0000213 // Form "A op' (B op DD)" if it simplifies completely.
214 // Does "B op DD" simplify?
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000215 if (Value *V = SimplifyBinOp(Opcode, B, DD, Q, MaxRecurse)) {
Duncan Sands3421d902010-12-21 13:32:22 +0000216 // It does! Return "A op' V" if it simplifies or is already available.
Duncan Sands1cd05bb2010-12-22 17:15:25 +0000217 // If V equals B then "A op' V" is just the LHS. If V equals DD then
218 // "A op' V" is just the RHS.
Duncan Sands124708d2011-01-01 20:08:02 +0000219 if (V == B || V == DD) {
Duncan Sandsa3c44a52010-12-22 09:40:51 +0000220 ++NumFactor;
Duncan Sands124708d2011-01-01 20:08:02 +0000221 return V == B ? LHS : RHS;
Duncan Sandsa3c44a52010-12-22 09:40:51 +0000222 }
Duncan Sands3421d902010-12-21 13:32:22 +0000223 // Otherwise return "A op' V" if it simplifies.
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000224 if (Value *W = SimplifyBinOp(OpcodeToExtract, A, V, Q, MaxRecurse)) {
Duncan Sandsa3c44a52010-12-22 09:40:51 +0000225 ++NumFactor;
Duncan Sands3421d902010-12-21 13:32:22 +0000226 return W;
Duncan Sandsa3c44a52010-12-22 09:40:51 +0000227 }
Duncan Sands3421d902010-12-21 13:32:22 +0000228 }
229 }
230
231 // Use right distributivity, i.e. "(X op Y) op' Z = (X op' Z) op (Y op' Z)".
232 // Does the instruction have the form "(A op' B) op (C op' B)" or, in the
233 // commutative case, "(A op' B) op (B op' D)"?
Duncan Sands124708d2011-01-01 20:08:02 +0000234 if (B == D || (Instruction::isCommutative(OpcodeToExtract) && B == C)) {
235 Value *CC = B == D ? C : D;
Duncan Sands3421d902010-12-21 13:32:22 +0000236 // Form "(A op CC) op' B" if it simplifies completely..
237 // Does "A op CC" simplify?
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000238 if (Value *V = SimplifyBinOp(Opcode, A, CC, Q, MaxRecurse)) {
Duncan Sands3421d902010-12-21 13:32:22 +0000239 // It does! Return "V op' B" if it simplifies or is already available.
Duncan Sands1cd05bb2010-12-22 17:15:25 +0000240 // If V equals A then "V op' B" is just the LHS. If V equals CC then
241 // "V op' B" is just the RHS.
Duncan Sands124708d2011-01-01 20:08:02 +0000242 if (V == A || V == CC) {
Duncan Sandsa3c44a52010-12-22 09:40:51 +0000243 ++NumFactor;
Duncan Sands124708d2011-01-01 20:08:02 +0000244 return V == A ? LHS : RHS;
Duncan Sandsa3c44a52010-12-22 09:40:51 +0000245 }
Duncan Sands3421d902010-12-21 13:32:22 +0000246 // Otherwise return "V op' B" if it simplifies.
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000247 if (Value *W = SimplifyBinOp(OpcodeToExtract, V, B, Q, MaxRecurse)) {
Duncan Sandsa3c44a52010-12-22 09:40:51 +0000248 ++NumFactor;
Duncan Sands3421d902010-12-21 13:32:22 +0000249 return W;
Duncan Sandsa3c44a52010-12-22 09:40:51 +0000250 }
Duncan Sands3421d902010-12-21 13:32:22 +0000251 }
252 }
253
254 return 0;
255}
256
257/// SimplifyAssociativeBinOp - Generic simplifications for associative binary
258/// operations. Returns the simpler value, or null if none was found.
Benjamin Kramere21083a2010-12-28 13:52:52 +0000259static Value *SimplifyAssociativeBinOp(unsigned Opc, Value *LHS, Value *RHS,
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000260 const Query &Q, unsigned MaxRecurse) {
Benjamin Kramere21083a2010-12-28 13:52:52 +0000261 Instruction::BinaryOps Opcode = (Instruction::BinaryOps)Opc;
Duncan Sands566edb02010-12-21 08:49:00 +0000262 assert(Instruction::isAssociative(Opcode) && "Not an associative operation!");
263
264 // Recursion is always used, so bail out at once if we already hit the limit.
265 if (!MaxRecurse--)
266 return 0;
267
268 BinaryOperator *Op0 = dyn_cast<BinaryOperator>(LHS);
269 BinaryOperator *Op1 = dyn_cast<BinaryOperator>(RHS);
270
271 // Transform: "(A op B) op C" ==> "A op (B op C)" if it simplifies completely.
272 if (Op0 && Op0->getOpcode() == Opcode) {
273 Value *A = Op0->getOperand(0);
274 Value *B = Op0->getOperand(1);
275 Value *C = RHS;
276
277 // Does "B op C" simplify?
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000278 if (Value *V = SimplifyBinOp(Opcode, B, C, Q, MaxRecurse)) {
Duncan Sands566edb02010-12-21 08:49:00 +0000279 // It does! Return "A op V" if it simplifies or is already available.
280 // If V equals B then "A op V" is just the LHS.
Duncan Sands124708d2011-01-01 20:08:02 +0000281 if (V == B) return LHS;
Duncan Sands566edb02010-12-21 08:49:00 +0000282 // Otherwise return "A op V" if it simplifies.
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000283 if (Value *W = SimplifyBinOp(Opcode, A, V, Q, MaxRecurse)) {
Duncan Sandsa3c44a52010-12-22 09:40:51 +0000284 ++NumReassoc;
Duncan Sands566edb02010-12-21 08:49:00 +0000285 return W;
Duncan Sandsa3c44a52010-12-22 09:40:51 +0000286 }
Duncan Sands566edb02010-12-21 08:49:00 +0000287 }
288 }
289
290 // Transform: "A op (B op C)" ==> "(A op B) op C" if it simplifies completely.
291 if (Op1 && Op1->getOpcode() == Opcode) {
292 Value *A = LHS;
293 Value *B = Op1->getOperand(0);
294 Value *C = Op1->getOperand(1);
295
296 // Does "A op B" simplify?
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000297 if (Value *V = SimplifyBinOp(Opcode, A, B, Q, MaxRecurse)) {
Duncan Sands566edb02010-12-21 08:49:00 +0000298 // It does! Return "V op C" if it simplifies or is already available.
299 // If V equals B then "V op C" is just the RHS.
Duncan Sands124708d2011-01-01 20:08:02 +0000300 if (V == B) return RHS;
Duncan Sands566edb02010-12-21 08:49:00 +0000301 // Otherwise return "V op C" if it simplifies.
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000302 if (Value *W = SimplifyBinOp(Opcode, V, C, Q, MaxRecurse)) {
Duncan Sandsa3c44a52010-12-22 09:40:51 +0000303 ++NumReassoc;
Duncan Sands566edb02010-12-21 08:49:00 +0000304 return W;
Duncan Sandsa3c44a52010-12-22 09:40:51 +0000305 }
Duncan Sands566edb02010-12-21 08:49:00 +0000306 }
307 }
308
309 // The remaining transforms require commutativity as well as associativity.
310 if (!Instruction::isCommutative(Opcode))
311 return 0;
312
313 // Transform: "(A op B) op C" ==> "(C op A) op B" if it simplifies completely.
314 if (Op0 && Op0->getOpcode() == Opcode) {
315 Value *A = Op0->getOperand(0);
316 Value *B = Op0->getOperand(1);
317 Value *C = RHS;
318
319 // Does "C op A" simplify?
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000320 if (Value *V = SimplifyBinOp(Opcode, C, A, Q, MaxRecurse)) {
Duncan Sands566edb02010-12-21 08:49:00 +0000321 // It does! Return "V op B" if it simplifies or is already available.
322 // If V equals A then "V op B" is just the LHS.
Duncan Sands124708d2011-01-01 20:08:02 +0000323 if (V == A) return LHS;
Duncan Sands566edb02010-12-21 08:49:00 +0000324 // Otherwise return "V op B" if it simplifies.
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000325 if (Value *W = SimplifyBinOp(Opcode, V, B, Q, MaxRecurse)) {
Duncan Sandsa3c44a52010-12-22 09:40:51 +0000326 ++NumReassoc;
Duncan Sands566edb02010-12-21 08:49:00 +0000327 return W;
Duncan Sandsa3c44a52010-12-22 09:40:51 +0000328 }
Duncan Sands566edb02010-12-21 08:49:00 +0000329 }
330 }
331
332 // Transform: "A op (B op C)" ==> "B op (C op A)" if it simplifies completely.
333 if (Op1 && Op1->getOpcode() == Opcode) {
334 Value *A = LHS;
335 Value *B = Op1->getOperand(0);
336 Value *C = Op1->getOperand(1);
337
338 // Does "C op A" simplify?
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000339 if (Value *V = SimplifyBinOp(Opcode, C, A, Q, MaxRecurse)) {
Duncan Sands566edb02010-12-21 08:49:00 +0000340 // It does! Return "B op V" if it simplifies or is already available.
341 // If V equals C then "B op V" is just the RHS.
Duncan Sands124708d2011-01-01 20:08:02 +0000342 if (V == C) return RHS;
Duncan Sands566edb02010-12-21 08:49:00 +0000343 // Otherwise return "B op V" if it simplifies.
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000344 if (Value *W = SimplifyBinOp(Opcode, B, V, Q, MaxRecurse)) {
Duncan Sandsa3c44a52010-12-22 09:40:51 +0000345 ++NumReassoc;
Duncan Sands566edb02010-12-21 08:49:00 +0000346 return W;
Duncan Sandsa3c44a52010-12-22 09:40:51 +0000347 }
Duncan Sands566edb02010-12-21 08:49:00 +0000348 }
349 }
350
351 return 0;
352}
353
Duncan Sandsb2cbdc32010-11-10 13:00:08 +0000354/// ThreadBinOpOverSelect - In the case of a binary operation with a select
355/// instruction as an operand, try to simplify the binop by seeing whether
356/// evaluating it on both branches of the select results in the same value.
357/// Returns the common value if so, otherwise returns null.
358static Value *ThreadBinOpOverSelect(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000359 const Query &Q, unsigned MaxRecurse) {
Duncan Sands0312a932010-12-21 09:09:15 +0000360 // Recursion is always used, so bail out at once if we already hit the limit.
361 if (!MaxRecurse--)
362 return 0;
363
Duncan Sandsb2cbdc32010-11-10 13:00:08 +0000364 SelectInst *SI;
365 if (isa<SelectInst>(LHS)) {
366 SI = cast<SelectInst>(LHS);
367 } else {
368 assert(isa<SelectInst>(RHS) && "No select instruction operand!");
369 SI = cast<SelectInst>(RHS);
370 }
371
372 // Evaluate the BinOp on the true and false branches of the select.
373 Value *TV;
374 Value *FV;
375 if (SI == LHS) {
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000376 TV = SimplifyBinOp(Opcode, SI->getTrueValue(), RHS, Q, MaxRecurse);
377 FV = SimplifyBinOp(Opcode, SI->getFalseValue(), RHS, Q, MaxRecurse);
Duncan Sandsb2cbdc32010-11-10 13:00:08 +0000378 } else {
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000379 TV = SimplifyBinOp(Opcode, LHS, SI->getTrueValue(), Q, MaxRecurse);
380 FV = SimplifyBinOp(Opcode, LHS, SI->getFalseValue(), Q, MaxRecurse);
Duncan Sandsb2cbdc32010-11-10 13:00:08 +0000381 }
382
Duncan Sands7cf85e72011-01-01 16:12:09 +0000383 // If they simplified to the same value, then return the common value.
Duncan Sands124708d2011-01-01 20:08:02 +0000384 // If they both failed to simplify then return null.
385 if (TV == FV)
Duncan Sandsb2cbdc32010-11-10 13:00:08 +0000386 return TV;
387
388 // If one branch simplified to undef, return the other one.
389 if (TV && isa<UndefValue>(TV))
390 return FV;
391 if (FV && isa<UndefValue>(FV))
392 return TV;
393
394 // If applying the operation did not change the true and false select values,
395 // then the result of the binop is the select itself.
Duncan Sands124708d2011-01-01 20:08:02 +0000396 if (TV == SI->getTrueValue() && FV == SI->getFalseValue())
Duncan Sandsb2cbdc32010-11-10 13:00:08 +0000397 return SI;
398
399 // If one branch simplified and the other did not, and the simplified
400 // value is equal to the unsimplified one, return the simplified value.
401 // For example, select (cond, X, X & Z) & Z -> X & Z.
402 if ((FV && !TV) || (TV && !FV)) {
403 // Check that the simplified value has the form "X op Y" where "op" is the
404 // same as the original operation.
405 Instruction *Simplified = dyn_cast<Instruction>(FV ? FV : TV);
406 if (Simplified && Simplified->getOpcode() == Opcode) {
407 // The value that didn't simplify is "UnsimplifiedLHS op UnsimplifiedRHS".
408 // We already know that "op" is the same as for the simplified value. See
409 // if the operands match too. If so, return the simplified value.
410 Value *UnsimplifiedBranch = FV ? SI->getTrueValue() : SI->getFalseValue();
411 Value *UnsimplifiedLHS = SI == LHS ? UnsimplifiedBranch : LHS;
412 Value *UnsimplifiedRHS = SI == LHS ? RHS : UnsimplifiedBranch;
Duncan Sands124708d2011-01-01 20:08:02 +0000413 if (Simplified->getOperand(0) == UnsimplifiedLHS &&
414 Simplified->getOperand(1) == UnsimplifiedRHS)
Duncan Sandsb2cbdc32010-11-10 13:00:08 +0000415 return Simplified;
416 if (Simplified->isCommutative() &&
Duncan Sands124708d2011-01-01 20:08:02 +0000417 Simplified->getOperand(1) == UnsimplifiedLHS &&
418 Simplified->getOperand(0) == UnsimplifiedRHS)
Duncan Sandsb2cbdc32010-11-10 13:00:08 +0000419 return Simplified;
420 }
421 }
422
423 return 0;
424}
425
426/// ThreadCmpOverSelect - In the case of a comparison with a select instruction,
427/// try to simplify the comparison by seeing whether both branches of the select
428/// result in the same value. Returns the common value if so, otherwise returns
429/// null.
430static Value *ThreadCmpOverSelect(CmpInst::Predicate Pred, Value *LHS,
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000431 Value *RHS, const Query &Q,
Duncan Sandsa74a58c2010-11-10 18:23:01 +0000432 unsigned MaxRecurse) {
Duncan Sands0312a932010-12-21 09:09:15 +0000433 // Recursion is always used, so bail out at once if we already hit the limit.
434 if (!MaxRecurse--)
435 return 0;
436
Duncan Sandsb2cbdc32010-11-10 13:00:08 +0000437 // Make sure the select is on the LHS.
438 if (!isa<SelectInst>(LHS)) {
439 std::swap(LHS, RHS);
440 Pred = CmpInst::getSwappedPredicate(Pred);
441 }
442 assert(isa<SelectInst>(LHS) && "Not comparing with a select instruction!");
443 SelectInst *SI = cast<SelectInst>(LHS);
Duncan Sands6dc9e2b2011-10-30 19:56:36 +0000444 Value *Cond = SI->getCondition();
445 Value *TV = SI->getTrueValue();
446 Value *FV = SI->getFalseValue();
Duncan Sandsb2cbdc32010-11-10 13:00:08 +0000447
Duncan Sands50ca4d32011-02-03 09:37:39 +0000448 // Now that we have "cmp select(Cond, TV, FV), RHS", analyse it.
Duncan Sandsb2cbdc32010-11-10 13:00:08 +0000449 // Does "cmp TV, RHS" simplify?
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000450 Value *TCmp = SimplifyCmpInst(Pred, TV, RHS, Q, MaxRecurse);
Duncan Sands6dc9e2b2011-10-30 19:56:36 +0000451 if (TCmp == Cond) {
452 // It not only simplified, it simplified to the select condition. Replace
453 // it with 'true'.
454 TCmp = getTrue(Cond->getType());
455 } else if (!TCmp) {
456 // It didn't simplify. However if "cmp TV, RHS" is equal to the select
457 // condition then we can replace it with 'true'. Otherwise give up.
458 if (!isSameCompare(Cond, Pred, TV, RHS))
459 return 0;
460 TCmp = getTrue(Cond->getType());
Duncan Sands50ca4d32011-02-03 09:37:39 +0000461 }
462
Duncan Sands6dc9e2b2011-10-30 19:56:36 +0000463 // Does "cmp FV, RHS" simplify?
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000464 Value *FCmp = SimplifyCmpInst(Pred, FV, RHS, Q, MaxRecurse);
Duncan Sands6dc9e2b2011-10-30 19:56:36 +0000465 if (FCmp == Cond) {
466 // It not only simplified, it simplified to the select condition. Replace
467 // it with 'false'.
468 FCmp = getFalse(Cond->getType());
469 } else if (!FCmp) {
470 // It didn't simplify. However if "cmp FV, RHS" is equal to the select
471 // condition then we can replace it with 'false'. Otherwise give up.
472 if (!isSameCompare(Cond, Pred, FV, RHS))
473 return 0;
474 FCmp = getFalse(Cond->getType());
475 }
476
477 // If both sides simplified to the same value, then use it as the result of
478 // the original comparison.
479 if (TCmp == FCmp)
480 return TCmp;
Duncan Sandsaa97bb52012-02-10 14:31:24 +0000481
482 // The remaining cases only make sense if the select condition has the same
483 // type as the result of the comparison, so bail out if this is not so.
484 if (Cond->getType()->isVectorTy() != RHS->getType()->isVectorTy())
485 return 0;
Duncan Sands6dc9e2b2011-10-30 19:56:36 +0000486 // If the false value simplified to false, then the result of the compare
487 // is equal to "Cond && TCmp". This also catches the case when the false
488 // value simplified to false and the true value to true, returning "Cond".
489 if (match(FCmp, m_Zero()))
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000490 if (Value *V = SimplifyAndInst(Cond, TCmp, Q, MaxRecurse))
Duncan Sands6dc9e2b2011-10-30 19:56:36 +0000491 return V;
492 // If the true value simplified to true, then the result of the compare
493 // is equal to "Cond || FCmp".
494 if (match(TCmp, m_One()))
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000495 if (Value *V = SimplifyOrInst(Cond, FCmp, Q, MaxRecurse))
Duncan Sands6dc9e2b2011-10-30 19:56:36 +0000496 return V;
497 // Finally, if the false value simplified to true and the true value to
498 // false, then the result of the compare is equal to "!Cond".
499 if (match(FCmp, m_One()) && match(TCmp, m_Zero()))
500 if (Value *V =
501 SimplifyXorInst(Cond, Constant::getAllOnesValue(Cond->getType()),
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000502 Q, MaxRecurse))
Duncan Sands6dc9e2b2011-10-30 19:56:36 +0000503 return V;
504
Duncan Sandsb2cbdc32010-11-10 13:00:08 +0000505 return 0;
506}
507
Duncan Sandsa74a58c2010-11-10 18:23:01 +0000508/// ThreadBinOpOverPHI - In the case of a binary operation with an operand that
509/// is a PHI instruction, try to simplify the binop by seeing whether evaluating
510/// it on the incoming phi values yields the same result for every value. If so
511/// returns the common value, otherwise returns null.
512static Value *ThreadBinOpOverPHI(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000513 const Query &Q, unsigned MaxRecurse) {
Duncan Sands0312a932010-12-21 09:09:15 +0000514 // Recursion is always used, so bail out at once if we already hit the limit.
515 if (!MaxRecurse--)
516 return 0;
517
Duncan Sandsa74a58c2010-11-10 18:23:01 +0000518 PHINode *PI;
519 if (isa<PHINode>(LHS)) {
520 PI = cast<PHINode>(LHS);
Duncan Sands18450092010-11-16 12:16:38 +0000521 // Bail out if RHS and the phi may be mutually interdependent due to a loop.
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000522 if (!ValueDominatesPHI(RHS, PI, Q.DT))
Duncan Sands18450092010-11-16 12:16:38 +0000523 return 0;
Duncan Sandsa74a58c2010-11-10 18:23:01 +0000524 } else {
525 assert(isa<PHINode>(RHS) && "No PHI instruction operand!");
526 PI = cast<PHINode>(RHS);
Duncan Sands18450092010-11-16 12:16:38 +0000527 // Bail out if LHS and the phi may be mutually interdependent due to a loop.
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000528 if (!ValueDominatesPHI(LHS, PI, Q.DT))
Duncan Sands18450092010-11-16 12:16:38 +0000529 return 0;
Duncan Sandsa74a58c2010-11-10 18:23:01 +0000530 }
531
532 // Evaluate the BinOp on the incoming phi values.
533 Value *CommonValue = 0;
534 for (unsigned i = 0, e = PI->getNumIncomingValues(); i != e; ++i) {
Duncan Sands55200892010-11-15 17:52:45 +0000535 Value *Incoming = PI->getIncomingValue(i);
Duncan Sandsff103412010-11-17 04:30:22 +0000536 // If the incoming value is the phi node itself, it can safely be skipped.
Duncan Sands55200892010-11-15 17:52:45 +0000537 if (Incoming == PI) continue;
Duncan Sandsa74a58c2010-11-10 18:23:01 +0000538 Value *V = PI == LHS ?
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000539 SimplifyBinOp(Opcode, Incoming, RHS, Q, MaxRecurse) :
540 SimplifyBinOp(Opcode, LHS, Incoming, Q, MaxRecurse);
Duncan Sandsa74a58c2010-11-10 18:23:01 +0000541 // If the operation failed to simplify, or simplified to a different value
542 // to previously, then give up.
543 if (!V || (CommonValue && V != CommonValue))
544 return 0;
545 CommonValue = V;
546 }
547
548 return CommonValue;
549}
550
551/// ThreadCmpOverPHI - In the case of a comparison with a PHI instruction, try
552/// try to simplify the comparison by seeing whether comparing with all of the
553/// incoming phi values yields the same result every time. If so returns the
554/// common result, otherwise returns null.
555static Value *ThreadCmpOverPHI(CmpInst::Predicate Pred, Value *LHS, Value *RHS,
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000556 const Query &Q, unsigned MaxRecurse) {
Duncan Sands0312a932010-12-21 09:09:15 +0000557 // Recursion is always used, so bail out at once if we already hit the limit.
558 if (!MaxRecurse--)
559 return 0;
560
Duncan Sandsa74a58c2010-11-10 18:23:01 +0000561 // Make sure the phi is on the LHS.
562 if (!isa<PHINode>(LHS)) {
563 std::swap(LHS, RHS);
564 Pred = CmpInst::getSwappedPredicate(Pred);
565 }
566 assert(isa<PHINode>(LHS) && "Not comparing with a phi instruction!");
567 PHINode *PI = cast<PHINode>(LHS);
568
Duncan Sands18450092010-11-16 12:16:38 +0000569 // Bail out if RHS and the phi may be mutually interdependent due to a loop.
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000570 if (!ValueDominatesPHI(RHS, PI, Q.DT))
Duncan Sands18450092010-11-16 12:16:38 +0000571 return 0;
572
Duncan Sandsa74a58c2010-11-10 18:23:01 +0000573 // Evaluate the BinOp on the incoming phi values.
574 Value *CommonValue = 0;
575 for (unsigned i = 0, e = PI->getNumIncomingValues(); i != e; ++i) {
Duncan Sands55200892010-11-15 17:52:45 +0000576 Value *Incoming = PI->getIncomingValue(i);
Duncan Sandsff103412010-11-17 04:30:22 +0000577 // If the incoming value is the phi node itself, it can safely be skipped.
Duncan Sands55200892010-11-15 17:52:45 +0000578 if (Incoming == PI) continue;
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000579 Value *V = SimplifyCmpInst(Pred, Incoming, RHS, Q, MaxRecurse);
Duncan Sandsa74a58c2010-11-10 18:23:01 +0000580 // If the operation failed to simplify, or simplified to a different value
581 // to previously, then give up.
582 if (!V || (CommonValue && V != CommonValue))
583 return 0;
584 CommonValue = V;
585 }
586
587 return CommonValue;
588}
589
Chris Lattner8aee8ef2009-11-27 17:42:22 +0000590/// SimplifyAddInst - Given operands for an Add, see if we can
591/// fold the result. If not, this returns null.
Duncan Sandsee9a2e32010-12-20 14:47:04 +0000592static Value *SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000593 const Query &Q, unsigned MaxRecurse) {
Chris Lattner8aee8ef2009-11-27 17:42:22 +0000594 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
595 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
596 Constant *Ops[] = { CLHS, CRHS };
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000597 return ConstantFoldInstOperands(Instruction::Add, CLHS->getType(), Ops,
598 Q.TD, Q.TLI);
Chris Lattner8aee8ef2009-11-27 17:42:22 +0000599 }
Duncan Sands12a86f52010-11-14 11:23:23 +0000600
Chris Lattner8aee8ef2009-11-27 17:42:22 +0000601 // Canonicalize the constant to the RHS.
602 std::swap(Op0, Op1);
603 }
Duncan Sands12a86f52010-11-14 11:23:23 +0000604
Duncan Sandsfea3b212010-12-15 14:07:39 +0000605 // X + undef -> undef
Duncan Sandsf9e4a982011-02-01 09:06:20 +0000606 if (match(Op1, m_Undef()))
Duncan Sandsfea3b212010-12-15 14:07:39 +0000607 return Op1;
Duncan Sands12a86f52010-11-14 11:23:23 +0000608
Duncan Sandsfea3b212010-12-15 14:07:39 +0000609 // X + 0 -> X
610 if (match(Op1, m_Zero()))
611 return Op0;
Duncan Sands12a86f52010-11-14 11:23:23 +0000612
Duncan Sandsfea3b212010-12-15 14:07:39 +0000613 // X + (Y - X) -> Y
614 // (Y - X) + X -> Y
Duncan Sandsee9a2e32010-12-20 14:47:04 +0000615 // Eg: X + -X -> 0
Duncan Sands124708d2011-01-01 20:08:02 +0000616 Value *Y = 0;
617 if (match(Op1, m_Sub(m_Value(Y), m_Specific(Op0))) ||
618 match(Op0, m_Sub(m_Value(Y), m_Specific(Op1))))
Duncan Sandsfea3b212010-12-15 14:07:39 +0000619 return Y;
620
621 // X + ~X -> -1 since ~X = -X-1
Duncan Sands124708d2011-01-01 20:08:02 +0000622 if (match(Op0, m_Not(m_Specific(Op1))) ||
623 match(Op1, m_Not(m_Specific(Op0))))
Duncan Sandsfea3b212010-12-15 14:07:39 +0000624 return Constant::getAllOnesValue(Op0->getType());
Duncan Sands87689cf2010-11-19 09:20:39 +0000625
Duncan Sands82fdab32010-12-21 14:00:22 +0000626 /// i1 add -> xor.
Duncan Sands75d289e2010-12-21 14:48:48 +0000627 if (MaxRecurse && Op0->getType()->isIntegerTy(1))
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000628 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sands07f30fb2010-12-21 15:03:43 +0000629 return V;
Duncan Sands82fdab32010-12-21 14:00:22 +0000630
Duncan Sands566edb02010-12-21 08:49:00 +0000631 // Try some generic simplifications for associative operations.
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000632 if (Value *V = SimplifyAssociativeBinOp(Instruction::Add, Op0, Op1, Q,
Duncan Sands566edb02010-12-21 08:49:00 +0000633 MaxRecurse))
634 return V;
635
Duncan Sands3421d902010-12-21 13:32:22 +0000636 // Mul distributes over Add. Try some generic simplifications based on this.
637 if (Value *V = FactorizeBinOp(Instruction::Add, Op0, Op1, Instruction::Mul,
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000638 Q, MaxRecurse))
Duncan Sands3421d902010-12-21 13:32:22 +0000639 return V;
640
Duncan Sands87689cf2010-11-19 09:20:39 +0000641 // Threading Add over selects and phi nodes is pointless, so don't bother.
642 // Threading over the select in "A + select(cond, B, C)" means evaluating
643 // "A+B" and "A+C" and seeing if they are equal; but they are equal if and
644 // only if B and C are equal. If B and C are equal then (since we assume
645 // that operands have already been simplified) "select(cond, B, C)" should
646 // have been simplified to the common value of B and C already. Analysing
647 // "A+B" and "A+C" thus gains nothing, but costs compile time. Similarly
648 // for threading over phi nodes.
649
Chris Lattner8aee8ef2009-11-27 17:42:22 +0000650 return 0;
651}
652
Duncan Sandsee9a2e32010-12-20 14:47:04 +0000653Value *llvm::SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Micah Villmow3574eca2012-10-08 16:38:25 +0000654 const DataLayout *TD, const TargetLibraryInfo *TLI,
Chad Rosier618c1db2011-12-01 03:08:23 +0000655 const DominatorTree *DT) {
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000656 return ::SimplifyAddInst(Op0, Op1, isNSW, isNUW, Query (TD, TLI, DT),
657 RecursionLimit);
Duncan Sandsee9a2e32010-12-20 14:47:04 +0000658}
659
Chandler Carruthfc72ae62012-03-12 11:19:31 +0000660/// \brief Compute the base pointer and cumulative constant offsets for V.
661///
662/// This strips all constant offsets off of V, leaving it the base pointer, and
663/// accumulates the total constant offset applied in the returned constant. It
664/// returns 0 if V is not a pointer, and returns the constant '0' if there are
665/// no constant offsets applied.
Micah Villmow3574eca2012-10-08 16:38:25 +0000666static Constant *stripAndComputeConstantOffsets(const DataLayout &TD,
Chandler Carruthfc72ae62012-03-12 11:19:31 +0000667 Value *&V) {
Dan Gohmanf2335dc2013-01-31 00:12:20 +0000668 assert(V->getType()->isPointerTy());
Chandler Carruthfc72ae62012-03-12 11:19:31 +0000669
Chandler Carruth426c2bf2012-11-01 09:14:31 +0000670 unsigned IntPtrWidth = TD.getPointerSizeInBits();
Chandler Carruth90c14fc2012-03-13 00:06:15 +0000671 APInt Offset = APInt::getNullValue(IntPtrWidth);
Chandler Carruthfc72ae62012-03-12 11:19:31 +0000672
673 // Even though we don't look through PHI nodes, we could be called on an
674 // instruction in an unreachable block, which may be on a cycle.
675 SmallPtrSet<Value *, 4> Visited;
676 Visited.insert(V);
677 do {
678 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
Chandler Carruth7550f962012-12-11 11:05:15 +0000679 if (!GEP->isInBounds() || !GEP->accumulateConstantOffset(TD, Offset))
Chandler Carruthfc72ae62012-03-12 11:19:31 +0000680 break;
Chandler Carruthfc72ae62012-03-12 11:19:31 +0000681 V = GEP->getPointerOperand();
682 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
683 V = cast<Operator>(V)->getOperand(0);
684 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) {
685 if (GA->mayBeOverridden())
686 break;
687 V = GA->getAliasee();
688 } else {
689 break;
690 }
691 assert(V->getType()->isPointerTy() && "Unexpected operand type!");
692 } while (Visited.insert(V));
693
Chandler Carruthece6c6b2012-11-01 08:07:29 +0000694 Type *IntPtrTy = TD.getIntPtrType(V->getContext());
Chandler Carruth90c14fc2012-03-13 00:06:15 +0000695 return ConstantInt::get(IntPtrTy, Offset);
Chandler Carruthfc72ae62012-03-12 11:19:31 +0000696}
697
698/// \brief Compute the constant difference between two pointer values.
699/// If the difference is not a constant, returns zero.
Micah Villmow3574eca2012-10-08 16:38:25 +0000700static Constant *computePointerDifference(const DataLayout &TD,
Chandler Carruthfc72ae62012-03-12 11:19:31 +0000701 Value *LHS, Value *RHS) {
702 Constant *LHSOffset = stripAndComputeConstantOffsets(TD, LHS);
Chandler Carruthfc72ae62012-03-12 11:19:31 +0000703 Constant *RHSOffset = stripAndComputeConstantOffsets(TD, RHS);
Chandler Carruthfc72ae62012-03-12 11:19:31 +0000704
705 // If LHS and RHS are not related via constant offsets to the same base
706 // value, there is nothing we can do here.
707 if (LHS != RHS)
708 return 0;
709
710 // Otherwise, the difference of LHS - RHS can be computed as:
711 // LHS - RHS
712 // = (LHSOffset + Base) - (RHSOffset + Base)
713 // = LHSOffset - RHSOffset
714 return ConstantExpr::getSub(LHSOffset, RHSOffset);
715}
716
Duncan Sandsfea3b212010-12-15 14:07:39 +0000717/// SimplifySubInst - Given operands for a Sub, see if we can
718/// fold the result. If not, this returns null.
Duncan Sandsee9a2e32010-12-20 14:47:04 +0000719static Value *SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000720 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsfea3b212010-12-15 14:07:39 +0000721 if (Constant *CLHS = dyn_cast<Constant>(Op0))
722 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
723 Constant *Ops[] = { CLHS, CRHS };
724 return ConstantFoldInstOperands(Instruction::Sub, CLHS->getType(),
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000725 Ops, Q.TD, Q.TLI);
Duncan Sandsfea3b212010-12-15 14:07:39 +0000726 }
727
728 // X - undef -> undef
729 // undef - X -> undef
Duncan Sandsf9e4a982011-02-01 09:06:20 +0000730 if (match(Op0, m_Undef()) || match(Op1, m_Undef()))
Duncan Sandsfea3b212010-12-15 14:07:39 +0000731 return UndefValue::get(Op0->getType());
732
733 // X - 0 -> X
734 if (match(Op1, m_Zero()))
735 return Op0;
736
737 // X - X -> 0
Duncan Sands124708d2011-01-01 20:08:02 +0000738 if (Op0 == Op1)
Duncan Sandsfea3b212010-12-15 14:07:39 +0000739 return Constant::getNullValue(Op0->getType());
740
Duncan Sandsfe02c692011-01-18 09:24:58 +0000741 // (X*2) - X -> X
742 // (X<<1) - X -> X
Duncan Sandsb2f3c382011-01-18 11:50:19 +0000743 Value *X = 0;
Duncan Sandsfe02c692011-01-18 09:24:58 +0000744 if (match(Op0, m_Mul(m_Specific(Op1), m_ConstantInt<2>())) ||
745 match(Op0, m_Shl(m_Specific(Op1), m_One())))
746 return Op1;
747
Duncan Sandsb2f3c382011-01-18 11:50:19 +0000748 // (X + Y) - Z -> X + (Y - Z) or Y + (X - Z) if everything simplifies.
749 // For example, (X + Y) - Y -> X; (Y + X) - Y -> X
750 Value *Y = 0, *Z = Op1;
751 if (MaxRecurse && match(Op0, m_Add(m_Value(X), m_Value(Y)))) { // (X + Y) - Z
752 // See if "V === Y - Z" simplifies.
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000753 if (Value *V = SimplifyBinOp(Instruction::Sub, Y, Z, Q, MaxRecurse-1))
Duncan Sandsb2f3c382011-01-18 11:50:19 +0000754 // It does! Now see if "X + V" simplifies.
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000755 if (Value *W = SimplifyBinOp(Instruction::Add, X, V, Q, MaxRecurse-1)) {
Duncan Sandsb2f3c382011-01-18 11:50:19 +0000756 // It does, we successfully reassociated!
757 ++NumReassoc;
758 return W;
759 }
760 // See if "V === X - Z" simplifies.
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000761 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Z, Q, MaxRecurse-1))
Duncan Sandsb2f3c382011-01-18 11:50:19 +0000762 // It does! Now see if "Y + V" simplifies.
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000763 if (Value *W = SimplifyBinOp(Instruction::Add, Y, V, Q, MaxRecurse-1)) {
Duncan Sandsb2f3c382011-01-18 11:50:19 +0000764 // It does, we successfully reassociated!
765 ++NumReassoc;
766 return W;
767 }
768 }
Duncan Sands82fdab32010-12-21 14:00:22 +0000769
Duncan Sandsb2f3c382011-01-18 11:50:19 +0000770 // X - (Y + Z) -> (X - Y) - Z or (X - Z) - Y if everything simplifies.
771 // For example, X - (X + 1) -> -1
772 X = Op0;
773 if (MaxRecurse && match(Op1, m_Add(m_Value(Y), m_Value(Z)))) { // X - (Y + Z)
774 // See if "V === X - Y" simplifies.
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000775 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Y, Q, MaxRecurse-1))
Duncan Sandsb2f3c382011-01-18 11:50:19 +0000776 // It does! Now see if "V - Z" simplifies.
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000777 if (Value *W = SimplifyBinOp(Instruction::Sub, V, Z, Q, MaxRecurse-1)) {
Duncan Sandsb2f3c382011-01-18 11:50:19 +0000778 // It does, we successfully reassociated!
779 ++NumReassoc;
780 return W;
781 }
782 // See if "V === X - Z" simplifies.
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000783 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Z, Q, MaxRecurse-1))
Duncan Sandsb2f3c382011-01-18 11:50:19 +0000784 // It does! Now see if "V - Y" simplifies.
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000785 if (Value *W = SimplifyBinOp(Instruction::Sub, V, Y, Q, MaxRecurse-1)) {
Duncan Sandsb2f3c382011-01-18 11:50:19 +0000786 // It does, we successfully reassociated!
787 ++NumReassoc;
788 return W;
789 }
790 }
791
792 // Z - (X - Y) -> (Z - X) + Y if everything simplifies.
793 // For example, X - (X - Y) -> Y.
794 Z = Op0;
Duncan Sandsc087e202011-01-14 15:26:10 +0000795 if (MaxRecurse && match(Op1, m_Sub(m_Value(X), m_Value(Y)))) // Z - (X - Y)
796 // See if "V === Z - X" simplifies.
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000797 if (Value *V = SimplifyBinOp(Instruction::Sub, Z, X, Q, MaxRecurse-1))
Duncan Sandsb2f3c382011-01-18 11:50:19 +0000798 // It does! Now see if "V + Y" simplifies.
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000799 if (Value *W = SimplifyBinOp(Instruction::Add, V, Y, Q, MaxRecurse-1)) {
Duncan Sandsc087e202011-01-14 15:26:10 +0000800 // It does, we successfully reassociated!
801 ++NumReassoc;
802 return W;
803 }
804
Duncan Sandsbd0fe562012-03-13 14:07:05 +0000805 // trunc(X) - trunc(Y) -> trunc(X - Y) if everything simplifies.
806 if (MaxRecurse && match(Op0, m_Trunc(m_Value(X))) &&
807 match(Op1, m_Trunc(m_Value(Y))))
808 if (X->getType() == Y->getType())
809 // See if "V === X - Y" simplifies.
810 if (Value *V = SimplifyBinOp(Instruction::Sub, X, Y, Q, MaxRecurse-1))
811 // It does! Now see if "trunc V" simplifies.
812 if (Value *W = SimplifyTruncInst(V, Op0->getType(), Q, MaxRecurse-1))
813 // It does, return the simplified "trunc V".
814 return W;
815
816 // Variations on GEP(base, I, ...) - GEP(base, i, ...) -> GEP(null, I-i, ...).
817 if (Q.TD && match(Op0, m_PtrToInt(m_Value(X))) &&
818 match(Op1, m_PtrToInt(m_Value(Y))))
819 if (Constant *Result = computePointerDifference(*Q.TD, X, Y))
820 return ConstantExpr::getIntegerCast(Result, Op0->getType(), true);
821
Duncan Sands3421d902010-12-21 13:32:22 +0000822 // Mul distributes over Sub. Try some generic simplifications based on this.
823 if (Value *V = FactorizeBinOp(Instruction::Sub, Op0, Op1, Instruction::Mul,
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000824 Q, MaxRecurse))
Duncan Sands3421d902010-12-21 13:32:22 +0000825 return V;
826
Duncan Sandsb2f3c382011-01-18 11:50:19 +0000827 // i1 sub -> xor.
828 if (MaxRecurse && Op0->getType()->isIntegerTy(1))
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000829 if (Value *V = SimplifyXorInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sandsb2f3c382011-01-18 11:50:19 +0000830 return V;
831
Duncan Sandsfea3b212010-12-15 14:07:39 +0000832 // Threading Sub over selects and phi nodes is pointless, so don't bother.
833 // Threading over the select in "A - select(cond, B, C)" means evaluating
834 // "A-B" and "A-C" and seeing if they are equal; but they are equal if and
835 // only if B and C are equal. If B and C are equal then (since we assume
836 // that operands have already been simplified) "select(cond, B, C)" should
837 // have been simplified to the common value of B and C already. Analysing
838 // "A-B" and "A-C" thus gains nothing, but costs compile time. Similarly
839 // for threading over phi nodes.
840
841 return 0;
842}
843
Duncan Sandsee9a2e32010-12-20 14:47:04 +0000844Value *llvm::SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Micah Villmow3574eca2012-10-08 16:38:25 +0000845 const DataLayout *TD, const TargetLibraryInfo *TLI,
Chad Rosier618c1db2011-12-01 03:08:23 +0000846 const DominatorTree *DT) {
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000847 return ::SimplifySubInst(Op0, Op1, isNSW, isNUW, Query (TD, TLI, DT),
848 RecursionLimit);
Duncan Sandsee9a2e32010-12-20 14:47:04 +0000849}
850
Michael Ilseman09ee2502012-12-12 00:27:46 +0000851/// Given operands for an FAdd, see if we can fold the result. If not, this
852/// returns null.
853static Value *SimplifyFAddInst(Value *Op0, Value *Op1, FastMathFlags FMF,
854 const Query &Q, unsigned MaxRecurse) {
855 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
856 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
857 Constant *Ops[] = { CLHS, CRHS };
858 return ConstantFoldInstOperands(Instruction::FAdd, CLHS->getType(),
859 Ops, Q.TD, Q.TLI);
860 }
861
862 // Canonicalize the constant to the RHS.
863 std::swap(Op0, Op1);
864 }
865
866 // fadd X, -0 ==> X
867 if (match(Op1, m_NegZero()))
868 return Op0;
869
870 // fadd X, 0 ==> X, when we know X is not -0
871 if (match(Op1, m_Zero()) &&
872 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0)))
873 return Op0;
874
875 // fadd [nnan ninf] X, (fsub [nnan ninf] 0, X) ==> 0
876 // where nnan and ninf have to occur at least once somewhere in this
877 // expression
878 Value *SubOp = 0;
879 if (match(Op1, m_FSub(m_AnyZero(), m_Specific(Op0))))
880 SubOp = Op1;
881 else if (match(Op0, m_FSub(m_AnyZero(), m_Specific(Op1))))
882 SubOp = Op0;
883 if (SubOp) {
884 Instruction *FSub = cast<Instruction>(SubOp);
885 if ((FMF.noNaNs() || FSub->hasNoNaNs()) &&
886 (FMF.noInfs() || FSub->hasNoInfs()))
887 return Constant::getNullValue(Op0->getType());
888 }
889
890 return 0;
891}
892
893/// Given operands for an FSub, see if we can fold the result. If not, this
894/// returns null.
895static Value *SimplifyFSubInst(Value *Op0, Value *Op1, FastMathFlags FMF,
896 const Query &Q, unsigned MaxRecurse) {
897 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
898 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
899 Constant *Ops[] = { CLHS, CRHS };
900 return ConstantFoldInstOperands(Instruction::FSub, CLHS->getType(),
901 Ops, Q.TD, Q.TLI);
902 }
903 }
904
905 // fsub X, 0 ==> X
906 if (match(Op1, m_Zero()))
907 return Op0;
908
909 // fsub X, -0 ==> X, when we know X is not -0
910 if (match(Op1, m_NegZero()) &&
911 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0)))
912 return Op0;
913
914 // fsub 0, (fsub -0.0, X) ==> X
915 Value *X;
916 if (match(Op0, m_AnyZero())) {
917 if (match(Op1, m_FSub(m_NegZero(), m_Value(X))))
918 return X;
919 if (FMF.noSignedZeros() && match(Op1, m_FSub(m_AnyZero(), m_Value(X))))
920 return X;
921 }
922
923 // fsub nnan ninf x, x ==> 0.0
924 if (FMF.noNaNs() && FMF.noInfs() && Op0 == Op1)
925 return Constant::getNullValue(Op0->getType());
926
927 return 0;
928}
929
Michael Ilsemaneb61c922012-11-27 00:46:26 +0000930/// Given the operands for an FMul, see if we can fold the result
931static Value *SimplifyFMulInst(Value *Op0, Value *Op1,
932 FastMathFlags FMF,
933 const Query &Q,
934 unsigned MaxRecurse) {
935 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
936 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
937 Constant *Ops[] = { CLHS, CRHS };
938 return ConstantFoldInstOperands(Instruction::FMul, CLHS->getType(),
939 Ops, Q.TD, Q.TLI);
940 }
Michael Ilseman09ee2502012-12-12 00:27:46 +0000941
942 // Canonicalize the constant to the RHS.
943 std::swap(Op0, Op1);
Michael Ilsemaneb61c922012-11-27 00:46:26 +0000944 }
945
Michael Ilseman09ee2502012-12-12 00:27:46 +0000946 // fmul X, 1.0 ==> X
947 if (match(Op1, m_FPOne()))
948 return Op0;
949
950 // fmul nnan nsz X, 0 ==> 0
951 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op1, m_AnyZero()))
952 return Op1;
Michael Ilsemaneb61c922012-11-27 00:46:26 +0000953
954 return 0;
955}
956
Duncan Sands82fdab32010-12-21 14:00:22 +0000957/// SimplifyMulInst - Given operands for a Mul, see if we can
958/// fold the result. If not, this returns null.
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000959static Value *SimplifyMulInst(Value *Op0, Value *Op1, const Query &Q,
960 unsigned MaxRecurse) {
Duncan Sands82fdab32010-12-21 14:00:22 +0000961 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
962 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
963 Constant *Ops[] = { CLHS, CRHS };
964 return ConstantFoldInstOperands(Instruction::Mul, CLHS->getType(),
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000965 Ops, Q.TD, Q.TLI);
Duncan Sands82fdab32010-12-21 14:00:22 +0000966 }
967
968 // Canonicalize the constant to the RHS.
969 std::swap(Op0, Op1);
970 }
971
972 // X * undef -> 0
Duncan Sandsf9e4a982011-02-01 09:06:20 +0000973 if (match(Op1, m_Undef()))
Duncan Sands82fdab32010-12-21 14:00:22 +0000974 return Constant::getNullValue(Op0->getType());
975
976 // X * 0 -> 0
977 if (match(Op1, m_Zero()))
978 return Op1;
979
980 // X * 1 -> X
981 if (match(Op1, m_One()))
982 return Op0;
983
Duncan Sands1895e982011-01-30 18:03:50 +0000984 // (X / Y) * Y -> X if the division is exact.
Benjamin Kramer55c6d572012-01-01 17:55:30 +0000985 Value *X = 0;
986 if (match(Op0, m_Exact(m_IDiv(m_Value(X), m_Specific(Op1)))) || // (X / Y) * Y
987 match(Op1, m_Exact(m_IDiv(m_Value(X), m_Specific(Op0))))) // Y * (X / Y)
988 return X;
Duncan Sands1895e982011-01-30 18:03:50 +0000989
Nick Lewycky54138802011-01-29 19:55:23 +0000990 // i1 mul -> and.
Duncan Sands75d289e2010-12-21 14:48:48 +0000991 if (MaxRecurse && Op0->getType()->isIntegerTy(1))
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000992 if (Value *V = SimplifyAndInst(Op0, Op1, Q, MaxRecurse-1))
Duncan Sands07f30fb2010-12-21 15:03:43 +0000993 return V;
Duncan Sands82fdab32010-12-21 14:00:22 +0000994
995 // Try some generic simplifications for associative operations.
Duncan Sands0aa85eb2012-03-13 11:42:19 +0000996 if (Value *V = SimplifyAssociativeBinOp(Instruction::Mul, Op0, Op1, Q,
Duncan Sands82fdab32010-12-21 14:00:22 +0000997 MaxRecurse))
998 return V;
999
1000 // Mul distributes over Add. Try some generic simplifications based on this.
1001 if (Value *V = ExpandBinOp(Instruction::Mul, Op0, Op1, Instruction::Add,
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001002 Q, MaxRecurse))
Duncan Sands82fdab32010-12-21 14:00:22 +00001003 return V;
1004
1005 // If the operation is with the result of a select instruction, check whether
1006 // operating on either branch of the select always yields the same value.
1007 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001008 if (Value *V = ThreadBinOpOverSelect(Instruction::Mul, Op0, Op1, Q,
Duncan Sands82fdab32010-12-21 14:00:22 +00001009 MaxRecurse))
1010 return V;
1011
1012 // If the operation is with the result of a phi instruction, check whether
1013 // operating on all incoming values of the phi always yields the same value.
1014 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001015 if (Value *V = ThreadBinOpOverPHI(Instruction::Mul, Op0, Op1, Q,
Duncan Sands82fdab32010-12-21 14:00:22 +00001016 MaxRecurse))
1017 return V;
1018
1019 return 0;
1020}
1021
Michael Ilseman09ee2502012-12-12 00:27:46 +00001022Value *llvm::SimplifyFAddInst(Value *Op0, Value *Op1, FastMathFlags FMF,
1023 const DataLayout *TD, const TargetLibraryInfo *TLI,
1024 const DominatorTree *DT) {
1025 return ::SimplifyFAddInst(Op0, Op1, FMF, Query (TD, TLI, DT), RecursionLimit);
1026}
1027
1028Value *llvm::SimplifyFSubInst(Value *Op0, Value *Op1, FastMathFlags FMF,
1029 const DataLayout *TD, const TargetLibraryInfo *TLI,
1030 const DominatorTree *DT) {
1031 return ::SimplifyFSubInst(Op0, Op1, FMF, Query (TD, TLI, DT), RecursionLimit);
1032}
1033
Michael Ilsemaneb61c922012-11-27 00:46:26 +00001034Value *llvm::SimplifyFMulInst(Value *Op0, Value *Op1,
1035 FastMathFlags FMF,
1036 const DataLayout *TD,
1037 const TargetLibraryInfo *TLI,
1038 const DominatorTree *DT) {
1039 return ::SimplifyFMulInst(Op0, Op1, FMF, Query (TD, TLI, DT), RecursionLimit);
1040}
1041
Micah Villmow3574eca2012-10-08 16:38:25 +00001042Value *llvm::SimplifyMulInst(Value *Op0, Value *Op1, const DataLayout *TD,
Chad Rosier618c1db2011-12-01 03:08:23 +00001043 const TargetLibraryInfo *TLI,
Duncan Sands82fdab32010-12-21 14:00:22 +00001044 const DominatorTree *DT) {
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001045 return ::SimplifyMulInst(Op0, Op1, Query (TD, TLI, DT), RecursionLimit);
Duncan Sands82fdab32010-12-21 14:00:22 +00001046}
1047
Duncan Sands593faa52011-01-28 16:51:11 +00001048/// SimplifyDiv - Given operands for an SDiv or UDiv, see if we can
1049/// fold the result. If not, this returns null.
Anders Carlsson479b4b92011-02-05 18:33:43 +00001050static Value *SimplifyDiv(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1,
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001051 const Query &Q, unsigned MaxRecurse) {
Duncan Sands593faa52011-01-28 16:51:11 +00001052 if (Constant *C0 = dyn_cast<Constant>(Op0)) {
1053 if (Constant *C1 = dyn_cast<Constant>(Op1)) {
1054 Constant *Ops[] = { C0, C1 };
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001055 return ConstantFoldInstOperands(Opcode, C0->getType(), Ops, Q.TD, Q.TLI);
Duncan Sands593faa52011-01-28 16:51:11 +00001056 }
1057 }
1058
Duncan Sandsa3e292c2011-01-28 18:50:50 +00001059 bool isSigned = Opcode == Instruction::SDiv;
1060
Duncan Sands593faa52011-01-28 16:51:11 +00001061 // X / undef -> undef
Duncan Sandsf9e4a982011-02-01 09:06:20 +00001062 if (match(Op1, m_Undef()))
Duncan Sands593faa52011-01-28 16:51:11 +00001063 return Op1;
1064
1065 // undef / X -> 0
Duncan Sandsf9e4a982011-02-01 09:06:20 +00001066 if (match(Op0, m_Undef()))
Duncan Sands593faa52011-01-28 16:51:11 +00001067 return Constant::getNullValue(Op0->getType());
1068
1069 // 0 / X -> 0, we don't need to preserve faults!
1070 if (match(Op0, m_Zero()))
1071 return Op0;
1072
1073 // X / 1 -> X
1074 if (match(Op1, m_One()))
1075 return Op0;
Duncan Sands593faa52011-01-28 16:51:11 +00001076
1077 if (Op0->getType()->isIntegerTy(1))
1078 // It can't be division by zero, hence it must be division by one.
1079 return Op0;
1080
1081 // X / X -> 1
1082 if (Op0 == Op1)
1083 return ConstantInt::get(Op0->getType(), 1);
1084
1085 // (X * Y) / Y -> X if the multiplication does not overflow.
1086 Value *X = 0, *Y = 0;
1087 if (match(Op0, m_Mul(m_Value(X), m_Value(Y))) && (X == Op1 || Y == Op1)) {
1088 if (Y != Op1) std::swap(X, Y); // Ensure expression is (X * Y) / Y, Y = Op1
Duncan Sands32a43cc2011-10-27 19:16:21 +00001089 OverflowingBinaryOperator *Mul = cast<OverflowingBinaryOperator>(Op0);
Duncan Sands4b720712011-02-02 20:52:00 +00001090 // If the Mul knows it does not overflow, then we are good to go.
1091 if ((isSigned && Mul->hasNoSignedWrap()) ||
1092 (!isSigned && Mul->hasNoUnsignedWrap()))
1093 return X;
Duncan Sands593faa52011-01-28 16:51:11 +00001094 // If X has the form X = A / Y then X * Y cannot overflow.
1095 if (BinaryOperator *Div = dyn_cast<BinaryOperator>(X))
1096 if (Div->getOpcode() == Opcode && Div->getOperand(1) == Y)
1097 return X;
1098 }
1099
Duncan Sandsa3e292c2011-01-28 18:50:50 +00001100 // (X rem Y) / Y -> 0
1101 if ((isSigned && match(Op0, m_SRem(m_Value(), m_Specific(Op1)))) ||
1102 (!isSigned && match(Op0, m_URem(m_Value(), m_Specific(Op1)))))
1103 return Constant::getNullValue(Op0->getType());
1104
1105 // If the operation is with the result of a select instruction, check whether
1106 // operating on either branch of the select always yields the same value.
1107 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001108 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e292c2011-01-28 18:50:50 +00001109 return V;
1110
1111 // If the operation is with the result of a phi instruction, check whether
1112 // operating on all incoming values of the phi always yields the same value.
1113 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001114 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sandsa3e292c2011-01-28 18:50:50 +00001115 return V;
1116
Duncan Sands593faa52011-01-28 16:51:11 +00001117 return 0;
1118}
1119
1120/// SimplifySDivInst - Given operands for an SDiv, see if we can
1121/// fold the result. If not, this returns null.
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001122static Value *SimplifySDivInst(Value *Op0, Value *Op1, const Query &Q,
1123 unsigned MaxRecurse) {
1124 if (Value *V = SimplifyDiv(Instruction::SDiv, Op0, Op1, Q, MaxRecurse))
Duncan Sands593faa52011-01-28 16:51:11 +00001125 return V;
1126
Duncan Sands593faa52011-01-28 16:51:11 +00001127 return 0;
1128}
1129
Micah Villmow3574eca2012-10-08 16:38:25 +00001130Value *llvm::SimplifySDivInst(Value *Op0, Value *Op1, const DataLayout *TD,
Chad Rosier618c1db2011-12-01 03:08:23 +00001131 const TargetLibraryInfo *TLI,
Frits van Bommel1fca2c32011-01-29 15:26:31 +00001132 const DominatorTree *DT) {
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001133 return ::SimplifySDivInst(Op0, Op1, Query (TD, TLI, DT), RecursionLimit);
Duncan Sands593faa52011-01-28 16:51:11 +00001134}
1135
1136/// SimplifyUDivInst - Given operands for a UDiv, see if we can
1137/// fold the result. If not, this returns null.
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001138static Value *SimplifyUDivInst(Value *Op0, Value *Op1, const Query &Q,
1139 unsigned MaxRecurse) {
1140 if (Value *V = SimplifyDiv(Instruction::UDiv, Op0, Op1, Q, MaxRecurse))
Duncan Sands593faa52011-01-28 16:51:11 +00001141 return V;
1142
Duncan Sands593faa52011-01-28 16:51:11 +00001143 return 0;
1144}
1145
Micah Villmow3574eca2012-10-08 16:38:25 +00001146Value *llvm::SimplifyUDivInst(Value *Op0, Value *Op1, const DataLayout *TD,
Chad Rosier618c1db2011-12-01 03:08:23 +00001147 const TargetLibraryInfo *TLI,
Frits van Bommel1fca2c32011-01-29 15:26:31 +00001148 const DominatorTree *DT) {
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001149 return ::SimplifyUDivInst(Op0, Op1, Query (TD, TLI, DT), RecursionLimit);
Duncan Sands593faa52011-01-28 16:51:11 +00001150}
1151
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001152static Value *SimplifyFDivInst(Value *Op0, Value *Op1, const Query &Q,
1153 unsigned) {
Frits van Bommel1fca2c32011-01-29 15:26:31 +00001154 // undef / X -> undef (the undef could be a snan).
Duncan Sandsf9e4a982011-02-01 09:06:20 +00001155 if (match(Op0, m_Undef()))
Frits van Bommel1fca2c32011-01-29 15:26:31 +00001156 return Op0;
1157
1158 // X / undef -> undef
Duncan Sandsf9e4a982011-02-01 09:06:20 +00001159 if (match(Op1, m_Undef()))
Frits van Bommel1fca2c32011-01-29 15:26:31 +00001160 return Op1;
1161
1162 return 0;
1163}
1164
Micah Villmow3574eca2012-10-08 16:38:25 +00001165Value *llvm::SimplifyFDivInst(Value *Op0, Value *Op1, const DataLayout *TD,
Chad Rosier618c1db2011-12-01 03:08:23 +00001166 const TargetLibraryInfo *TLI,
Frits van Bommel1fca2c32011-01-29 15:26:31 +00001167 const DominatorTree *DT) {
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001168 return ::SimplifyFDivInst(Op0, Op1, Query (TD, TLI, DT), RecursionLimit);
Frits van Bommel1fca2c32011-01-29 15:26:31 +00001169}
1170
Duncan Sandsf24ed772011-05-02 16:27:02 +00001171/// SimplifyRem - Given operands for an SRem or URem, see if we can
1172/// fold the result. If not, this returns null.
1173static Value *SimplifyRem(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1,
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001174 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsf24ed772011-05-02 16:27:02 +00001175 if (Constant *C0 = dyn_cast<Constant>(Op0)) {
1176 if (Constant *C1 = dyn_cast<Constant>(Op1)) {
1177 Constant *Ops[] = { C0, C1 };
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001178 return ConstantFoldInstOperands(Opcode, C0->getType(), Ops, Q.TD, Q.TLI);
Duncan Sandsf24ed772011-05-02 16:27:02 +00001179 }
1180 }
1181
Duncan Sandsf24ed772011-05-02 16:27:02 +00001182 // X % undef -> undef
1183 if (match(Op1, m_Undef()))
1184 return Op1;
1185
1186 // undef % X -> 0
1187 if (match(Op0, m_Undef()))
1188 return Constant::getNullValue(Op0->getType());
1189
1190 // 0 % X -> 0, we don't need to preserve faults!
1191 if (match(Op0, m_Zero()))
1192 return Op0;
1193
1194 // X % 0 -> undef, we don't need to preserve faults!
1195 if (match(Op1, m_Zero()))
1196 return UndefValue::get(Op0->getType());
1197
1198 // X % 1 -> 0
1199 if (match(Op1, m_One()))
1200 return Constant::getNullValue(Op0->getType());
1201
1202 if (Op0->getType()->isIntegerTy(1))
1203 // It can't be remainder by zero, hence it must be remainder by one.
1204 return Constant::getNullValue(Op0->getType());
1205
1206 // X % X -> 0
1207 if (Op0 == Op1)
1208 return Constant::getNullValue(Op0->getType());
1209
1210 // If the operation is with the result of a select instruction, check whether
1211 // operating on either branch of the select always yields the same value.
1212 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001213 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sandsf24ed772011-05-02 16:27:02 +00001214 return V;
1215
1216 // If the operation is with the result of a phi instruction, check whether
1217 // operating on all incoming values of the phi always yields the same value.
1218 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001219 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sandsf24ed772011-05-02 16:27:02 +00001220 return V;
1221
1222 return 0;
1223}
1224
1225/// SimplifySRemInst - Given operands for an SRem, see if we can
1226/// fold the result. If not, this returns null.
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001227static Value *SimplifySRemInst(Value *Op0, Value *Op1, const Query &Q,
1228 unsigned MaxRecurse) {
1229 if (Value *V = SimplifyRem(Instruction::SRem, Op0, Op1, Q, MaxRecurse))
Duncan Sandsf24ed772011-05-02 16:27:02 +00001230 return V;
1231
1232 return 0;
1233}
1234
Micah Villmow3574eca2012-10-08 16:38:25 +00001235Value *llvm::SimplifySRemInst(Value *Op0, Value *Op1, const DataLayout *TD,
Chad Rosier618c1db2011-12-01 03:08:23 +00001236 const TargetLibraryInfo *TLI,
Duncan Sandsf24ed772011-05-02 16:27:02 +00001237 const DominatorTree *DT) {
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001238 return ::SimplifySRemInst(Op0, Op1, Query (TD, TLI, DT), RecursionLimit);
Duncan Sandsf24ed772011-05-02 16:27:02 +00001239}
1240
1241/// SimplifyURemInst - Given operands for a URem, see if we can
1242/// fold the result. If not, this returns null.
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001243static Value *SimplifyURemInst(Value *Op0, Value *Op1, const Query &Q,
Chad Rosier618c1db2011-12-01 03:08:23 +00001244 unsigned MaxRecurse) {
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001245 if (Value *V = SimplifyRem(Instruction::URem, Op0, Op1, Q, MaxRecurse))
Duncan Sandsf24ed772011-05-02 16:27:02 +00001246 return V;
1247
1248 return 0;
1249}
1250
Micah Villmow3574eca2012-10-08 16:38:25 +00001251Value *llvm::SimplifyURemInst(Value *Op0, Value *Op1, const DataLayout *TD,
Chad Rosier618c1db2011-12-01 03:08:23 +00001252 const TargetLibraryInfo *TLI,
Duncan Sandsf24ed772011-05-02 16:27:02 +00001253 const DominatorTree *DT) {
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001254 return ::SimplifyURemInst(Op0, Op1, Query (TD, TLI, DT), RecursionLimit);
Duncan Sandsf24ed772011-05-02 16:27:02 +00001255}
1256
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001257static Value *SimplifyFRemInst(Value *Op0, Value *Op1, const Query &,
Chad Rosier618c1db2011-12-01 03:08:23 +00001258 unsigned) {
Duncan Sandsf24ed772011-05-02 16:27:02 +00001259 // undef % X -> undef (the undef could be a snan).
1260 if (match(Op0, m_Undef()))
1261 return Op0;
1262
1263 // X % undef -> undef
1264 if (match(Op1, m_Undef()))
1265 return Op1;
1266
1267 return 0;
1268}
1269
Micah Villmow3574eca2012-10-08 16:38:25 +00001270Value *llvm::SimplifyFRemInst(Value *Op0, Value *Op1, const DataLayout *TD,
Chad Rosier618c1db2011-12-01 03:08:23 +00001271 const TargetLibraryInfo *TLI,
Duncan Sandsf24ed772011-05-02 16:27:02 +00001272 const DominatorTree *DT) {
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001273 return ::SimplifyFRemInst(Op0, Op1, Query (TD, TLI, DT), RecursionLimit);
Duncan Sandsf24ed772011-05-02 16:27:02 +00001274}
1275
Duncan Sandscf80bc12011-01-14 14:44:12 +00001276/// SimplifyShift - Given operands for an Shl, LShr or AShr, see if we can
Duncan Sandsc43cee32011-01-14 00:37:45 +00001277/// fold the result. If not, this returns null.
Duncan Sandscf80bc12011-01-14 14:44:12 +00001278static Value *SimplifyShift(unsigned Opcode, Value *Op0, Value *Op1,
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001279 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsc43cee32011-01-14 00:37:45 +00001280 if (Constant *C0 = dyn_cast<Constant>(Op0)) {
1281 if (Constant *C1 = dyn_cast<Constant>(Op1)) {
1282 Constant *Ops[] = { C0, C1 };
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001283 return ConstantFoldInstOperands(Opcode, C0->getType(), Ops, Q.TD, Q.TLI);
Duncan Sandsc43cee32011-01-14 00:37:45 +00001284 }
1285 }
1286
Duncan Sandscf80bc12011-01-14 14:44:12 +00001287 // 0 shift by X -> 0
Duncan Sandsc43cee32011-01-14 00:37:45 +00001288 if (match(Op0, m_Zero()))
1289 return Op0;
1290
Duncan Sandscf80bc12011-01-14 14:44:12 +00001291 // X shift by 0 -> X
Duncan Sandsc43cee32011-01-14 00:37:45 +00001292 if (match(Op1, m_Zero()))
1293 return Op0;
1294
Duncan Sandscf80bc12011-01-14 14:44:12 +00001295 // X shift by undef -> undef because it may shift by the bitwidth.
Duncan Sandsf9e4a982011-02-01 09:06:20 +00001296 if (match(Op1, m_Undef()))
Duncan Sandsc43cee32011-01-14 00:37:45 +00001297 return Op1;
1298
1299 // Shifting by the bitwidth or more is undefined.
1300 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1))
1301 if (CI->getValue().getLimitedValue() >=
1302 Op0->getType()->getScalarSizeInBits())
1303 return UndefValue::get(Op0->getType());
1304
Duncan Sandscf80bc12011-01-14 14:44:12 +00001305 // If the operation is with the result of a select instruction, check whether
1306 // operating on either branch of the select always yields the same value.
1307 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001308 if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sandscf80bc12011-01-14 14:44:12 +00001309 return V;
1310
1311 // If the operation is with the result of a phi instruction, check whether
1312 // operating on all incoming values of the phi always yields the same value.
1313 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001314 if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
Duncan Sandscf80bc12011-01-14 14:44:12 +00001315 return V;
1316
1317 return 0;
1318}
1319
1320/// SimplifyShlInst - Given operands for an Shl, see if we can
1321/// fold the result. If not, this returns null.
Chris Lattner81a0dc92011-02-09 17:15:04 +00001322static Value *SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001323 const Query &Q, unsigned MaxRecurse) {
1324 if (Value *V = SimplifyShift(Instruction::Shl, Op0, Op1, Q, MaxRecurse))
Duncan Sandscf80bc12011-01-14 14:44:12 +00001325 return V;
1326
1327 // undef << X -> 0
Duncan Sandsf9e4a982011-02-01 09:06:20 +00001328 if (match(Op0, m_Undef()))
Duncan Sandscf80bc12011-01-14 14:44:12 +00001329 return Constant::getNullValue(Op0->getType());
1330
Chris Lattner81a0dc92011-02-09 17:15:04 +00001331 // (X >> A) << A -> X
1332 Value *X;
Benjamin Kramer55c6d572012-01-01 17:55:30 +00001333 if (match(Op0, m_Exact(m_Shr(m_Value(X), m_Specific(Op1)))))
Chris Lattner81a0dc92011-02-09 17:15:04 +00001334 return X;
Duncan Sandsc43cee32011-01-14 00:37:45 +00001335 return 0;
1336}
1337
Chris Lattner81a0dc92011-02-09 17:15:04 +00001338Value *llvm::SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
Micah Villmow3574eca2012-10-08 16:38:25 +00001339 const DataLayout *TD, const TargetLibraryInfo *TLI,
Chad Rosier618c1db2011-12-01 03:08:23 +00001340 const DominatorTree *DT) {
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001341 return ::SimplifyShlInst(Op0, Op1, isNSW, isNUW, Query (TD, TLI, DT),
1342 RecursionLimit);
Duncan Sandsc43cee32011-01-14 00:37:45 +00001343}
1344
1345/// SimplifyLShrInst - Given operands for an LShr, see if we can
1346/// fold the result. If not, this returns null.
Chris Lattner81a0dc92011-02-09 17:15:04 +00001347static Value *SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact,
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001348 const Query &Q, unsigned MaxRecurse) {
1349 if (Value *V = SimplifyShift(Instruction::LShr, Op0, Op1, Q, MaxRecurse))
Duncan Sandscf80bc12011-01-14 14:44:12 +00001350 return V;
Duncan Sandsc43cee32011-01-14 00:37:45 +00001351
1352 // undef >>l X -> 0
Duncan Sandsf9e4a982011-02-01 09:06:20 +00001353 if (match(Op0, m_Undef()))
Duncan Sandsc43cee32011-01-14 00:37:45 +00001354 return Constant::getNullValue(Op0->getType());
1355
Chris Lattner81a0dc92011-02-09 17:15:04 +00001356 // (X << A) >> A -> X
1357 Value *X;
1358 if (match(Op0, m_Shl(m_Value(X), m_Specific(Op1))) &&
1359 cast<OverflowingBinaryOperator>(Op0)->hasNoUnsignedWrap())
1360 return X;
Duncan Sands52fb8462011-02-13 17:15:40 +00001361
Duncan Sandsc43cee32011-01-14 00:37:45 +00001362 return 0;
1363}
1364
Chris Lattner81a0dc92011-02-09 17:15:04 +00001365Value *llvm::SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact,
Micah Villmow3574eca2012-10-08 16:38:25 +00001366 const DataLayout *TD,
Chad Rosier618c1db2011-12-01 03:08:23 +00001367 const TargetLibraryInfo *TLI,
1368 const DominatorTree *DT) {
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001369 return ::SimplifyLShrInst(Op0, Op1, isExact, Query (TD, TLI, DT),
1370 RecursionLimit);
Duncan Sandsc43cee32011-01-14 00:37:45 +00001371}
1372
1373/// SimplifyAShrInst - Given operands for an AShr, see if we can
1374/// fold the result. If not, this returns null.
Chris Lattner81a0dc92011-02-09 17:15:04 +00001375static Value *SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact,
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001376 const Query &Q, unsigned MaxRecurse) {
1377 if (Value *V = SimplifyShift(Instruction::AShr, Op0, Op1, Q, MaxRecurse))
Duncan Sandscf80bc12011-01-14 14:44:12 +00001378 return V;
Duncan Sandsc43cee32011-01-14 00:37:45 +00001379
1380 // all ones >>a X -> all ones
1381 if (match(Op0, m_AllOnes()))
1382 return Op0;
1383
1384 // undef >>a X -> all ones
Duncan Sandsf9e4a982011-02-01 09:06:20 +00001385 if (match(Op0, m_Undef()))
Duncan Sandsc43cee32011-01-14 00:37:45 +00001386 return Constant::getAllOnesValue(Op0->getType());
1387
Chris Lattner81a0dc92011-02-09 17:15:04 +00001388 // (X << A) >> A -> X
1389 Value *X;
1390 if (match(Op0, m_Shl(m_Value(X), m_Specific(Op1))) &&
1391 cast<OverflowingBinaryOperator>(Op0)->hasNoSignedWrap())
1392 return X;
Duncan Sands52fb8462011-02-13 17:15:40 +00001393
Duncan Sandsc43cee32011-01-14 00:37:45 +00001394 return 0;
1395}
1396
Chris Lattner81a0dc92011-02-09 17:15:04 +00001397Value *llvm::SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact,
Micah Villmow3574eca2012-10-08 16:38:25 +00001398 const DataLayout *TD,
Chad Rosier618c1db2011-12-01 03:08:23 +00001399 const TargetLibraryInfo *TLI,
1400 const DominatorTree *DT) {
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001401 return ::SimplifyAShrInst(Op0, Op1, isExact, Query (TD, TLI, DT),
1402 RecursionLimit);
Duncan Sandsc43cee32011-01-14 00:37:45 +00001403}
1404
Chris Lattnerd06094f2009-11-10 00:55:12 +00001405/// SimplifyAndInst - Given operands for an And, see if we can
Chris Lattner9f3c25a2009-11-09 22:57:59 +00001406/// fold the result. If not, this returns null.
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001407static Value *SimplifyAndInst(Value *Op0, Value *Op1, const Query &Q,
Chad Rosier618c1db2011-12-01 03:08:23 +00001408 unsigned MaxRecurse) {
Chris Lattnerd06094f2009-11-10 00:55:12 +00001409 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
1410 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
1411 Constant *Ops[] = { CLHS, CRHS };
1412 return ConstantFoldInstOperands(Instruction::And, CLHS->getType(),
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001413 Ops, Q.TD, Q.TLI);
Chris Lattnerd06094f2009-11-10 00:55:12 +00001414 }
Duncan Sands12a86f52010-11-14 11:23:23 +00001415
Chris Lattnerd06094f2009-11-10 00:55:12 +00001416 // Canonicalize the constant to the RHS.
1417 std::swap(Op0, Op1);
1418 }
Duncan Sands12a86f52010-11-14 11:23:23 +00001419
Chris Lattnerd06094f2009-11-10 00:55:12 +00001420 // X & undef -> 0
Duncan Sandsf9e4a982011-02-01 09:06:20 +00001421 if (match(Op1, m_Undef()))
Chris Lattnerd06094f2009-11-10 00:55:12 +00001422 return Constant::getNullValue(Op0->getType());
Duncan Sands12a86f52010-11-14 11:23:23 +00001423
Chris Lattnerd06094f2009-11-10 00:55:12 +00001424 // X & X = X
Duncan Sands124708d2011-01-01 20:08:02 +00001425 if (Op0 == Op1)
Chris Lattnerd06094f2009-11-10 00:55:12 +00001426 return Op0;
Duncan Sands12a86f52010-11-14 11:23:23 +00001427
Duncan Sands2b749872010-11-17 18:52:15 +00001428 // X & 0 = 0
1429 if (match(Op1, m_Zero()))
Chris Lattnerd06094f2009-11-10 00:55:12 +00001430 return Op1;
Duncan Sands12a86f52010-11-14 11:23:23 +00001431
Duncan Sands2b749872010-11-17 18:52:15 +00001432 // X & -1 = X
1433 if (match(Op1, m_AllOnes()))
1434 return Op0;
Duncan Sands12a86f52010-11-14 11:23:23 +00001435
Chris Lattnerd06094f2009-11-10 00:55:12 +00001436 // A & ~A = ~A & A = 0
Chris Lattner81a0dc92011-02-09 17:15:04 +00001437 if (match(Op0, m_Not(m_Specific(Op1))) ||
1438 match(Op1, m_Not(m_Specific(Op0))))
Chris Lattnerd06094f2009-11-10 00:55:12 +00001439 return Constant::getNullValue(Op0->getType());
Duncan Sands12a86f52010-11-14 11:23:23 +00001440
Chris Lattnerd06094f2009-11-10 00:55:12 +00001441 // (A | ?) & A = A
Chris Lattner81a0dc92011-02-09 17:15:04 +00001442 Value *A = 0, *B = 0;
Chris Lattnerd06094f2009-11-10 00:55:12 +00001443 if (match(Op0, m_Or(m_Value(A), m_Value(B))) &&
Duncan Sands124708d2011-01-01 20:08:02 +00001444 (A == Op1 || B == Op1))
Chris Lattnerd06094f2009-11-10 00:55:12 +00001445 return Op1;
Duncan Sands12a86f52010-11-14 11:23:23 +00001446
Chris Lattnerd06094f2009-11-10 00:55:12 +00001447 // A & (A | ?) = A
1448 if (match(Op1, m_Or(m_Value(A), m_Value(B))) &&
Duncan Sands124708d2011-01-01 20:08:02 +00001449 (A == Op0 || B == Op0))
Chris Lattnerd06094f2009-11-10 00:55:12 +00001450 return Op0;
Duncan Sands12a86f52010-11-14 11:23:23 +00001451
Duncan Sandsdd3149d2011-10-26 20:55:21 +00001452 // A & (-A) = A if A is a power of two or zero.
1453 if (match(Op0, m_Neg(m_Specific(Op1))) ||
1454 match(Op1, m_Neg(m_Specific(Op0)))) {
Rafael Espindoladbaa2372012-12-13 03:37:24 +00001455 if (isKnownToBeAPowerOfTwo(Op0, /*OrZero*/true))
Duncan Sandsdd3149d2011-10-26 20:55:21 +00001456 return Op0;
Rafael Espindoladbaa2372012-12-13 03:37:24 +00001457 if (isKnownToBeAPowerOfTwo(Op1, /*OrZero*/true))
Duncan Sandsdd3149d2011-10-26 20:55:21 +00001458 return Op1;
1459 }
1460
Duncan Sands566edb02010-12-21 08:49:00 +00001461 // Try some generic simplifications for associative operations.
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001462 if (Value *V = SimplifyAssociativeBinOp(Instruction::And, Op0, Op1, Q,
1463 MaxRecurse))
Duncan Sands566edb02010-12-21 08:49:00 +00001464 return V;
Benjamin Kramer6844c8e2010-09-10 22:39:55 +00001465
Duncan Sands3421d902010-12-21 13:32:22 +00001466 // And distributes over Or. Try some generic simplifications based on this.
1467 if (Value *V = ExpandBinOp(Instruction::And, Op0, Op1, Instruction::Or,
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001468 Q, MaxRecurse))
Duncan Sands3421d902010-12-21 13:32:22 +00001469 return V;
1470
1471 // And distributes over Xor. Try some generic simplifications based on this.
1472 if (Value *V = ExpandBinOp(Instruction::And, Op0, Op1, Instruction::Xor,
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001473 Q, MaxRecurse))
Duncan Sands3421d902010-12-21 13:32:22 +00001474 return V;
1475
1476 // Or distributes over And. Try some generic simplifications based on this.
1477 if (Value *V = FactorizeBinOp(Instruction::And, Op0, Op1, Instruction::Or,
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001478 Q, MaxRecurse))
Duncan Sands3421d902010-12-21 13:32:22 +00001479 return V;
1480
Duncan Sandsb2cbdc32010-11-10 13:00:08 +00001481 // If the operation is with the result of a select instruction, check whether
1482 // operating on either branch of the select always yields the same value.
Duncan Sands0312a932010-12-21 09:09:15 +00001483 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001484 if (Value *V = ThreadBinOpOverSelect(Instruction::And, Op0, Op1, Q,
1485 MaxRecurse))
Duncan Sandsa74a58c2010-11-10 18:23:01 +00001486 return V;
1487
1488 // If the operation is with the result of a phi instruction, check whether
1489 // operating on all incoming values of the phi always yields the same value.
Duncan Sands0312a932010-12-21 09:09:15 +00001490 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001491 if (Value *V = ThreadBinOpOverPHI(Instruction::And, Op0, Op1, Q,
Duncan Sands0312a932010-12-21 09:09:15 +00001492 MaxRecurse))
Duncan Sandsb2cbdc32010-11-10 13:00:08 +00001493 return V;
1494
Chris Lattner9f3c25a2009-11-09 22:57:59 +00001495 return 0;
1496}
1497
Micah Villmow3574eca2012-10-08 16:38:25 +00001498Value *llvm::SimplifyAndInst(Value *Op0, Value *Op1, const DataLayout *TD,
Chad Rosier618c1db2011-12-01 03:08:23 +00001499 const TargetLibraryInfo *TLI,
Duncan Sands18450092010-11-16 12:16:38 +00001500 const DominatorTree *DT) {
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001501 return ::SimplifyAndInst(Op0, Op1, Query (TD, TLI, DT), RecursionLimit);
Duncan Sandsa74a58c2010-11-10 18:23:01 +00001502}
1503
Chris Lattnerd06094f2009-11-10 00:55:12 +00001504/// SimplifyOrInst - Given operands for an Or, see if we can
1505/// fold the result. If not, this returns null.
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001506static Value *SimplifyOrInst(Value *Op0, Value *Op1, const Query &Q,
1507 unsigned MaxRecurse) {
Chris Lattnerd06094f2009-11-10 00:55:12 +00001508 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
1509 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
1510 Constant *Ops[] = { CLHS, CRHS };
1511 return ConstantFoldInstOperands(Instruction::Or, CLHS->getType(),
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001512 Ops, Q.TD, Q.TLI);
Chris Lattnerd06094f2009-11-10 00:55:12 +00001513 }
Duncan Sands12a86f52010-11-14 11:23:23 +00001514
Chris Lattnerd06094f2009-11-10 00:55:12 +00001515 // Canonicalize the constant to the RHS.
1516 std::swap(Op0, Op1);
1517 }
Duncan Sands12a86f52010-11-14 11:23:23 +00001518
Chris Lattnerd06094f2009-11-10 00:55:12 +00001519 // X | undef -> -1
Duncan Sandsf9e4a982011-02-01 09:06:20 +00001520 if (match(Op1, m_Undef()))
Chris Lattnerd06094f2009-11-10 00:55:12 +00001521 return Constant::getAllOnesValue(Op0->getType());
Duncan Sands12a86f52010-11-14 11:23:23 +00001522
Chris Lattnerd06094f2009-11-10 00:55:12 +00001523 // X | X = X
Duncan Sands124708d2011-01-01 20:08:02 +00001524 if (Op0 == Op1)
Chris Lattnerd06094f2009-11-10 00:55:12 +00001525 return Op0;
1526
Duncan Sands2b749872010-11-17 18:52:15 +00001527 // X | 0 = X
1528 if (match(Op1, m_Zero()))
Chris Lattnerd06094f2009-11-10 00:55:12 +00001529 return Op0;
Duncan Sands12a86f52010-11-14 11:23:23 +00001530
Duncan Sands2b749872010-11-17 18:52:15 +00001531 // X | -1 = -1
1532 if (match(Op1, m_AllOnes()))
1533 return Op1;
Duncan Sands12a86f52010-11-14 11:23:23 +00001534
Chris Lattnerd06094f2009-11-10 00:55:12 +00001535 // A | ~A = ~A | A = -1
Chris Lattner81a0dc92011-02-09 17:15:04 +00001536 if (match(Op0, m_Not(m_Specific(Op1))) ||
1537 match(Op1, m_Not(m_Specific(Op0))))
Chris Lattnerd06094f2009-11-10 00:55:12 +00001538 return Constant::getAllOnesValue(Op0->getType());
Duncan Sands12a86f52010-11-14 11:23:23 +00001539
Chris Lattnerd06094f2009-11-10 00:55:12 +00001540 // (A & ?) | A = A
Chris Lattner81a0dc92011-02-09 17:15:04 +00001541 Value *A = 0, *B = 0;
Chris Lattnerd06094f2009-11-10 00:55:12 +00001542 if (match(Op0, m_And(m_Value(A), m_Value(B))) &&
Duncan Sands124708d2011-01-01 20:08:02 +00001543 (A == Op1 || B == Op1))
Chris Lattnerd06094f2009-11-10 00:55:12 +00001544 return Op1;
Duncan Sands12a86f52010-11-14 11:23:23 +00001545
Chris Lattnerd06094f2009-11-10 00:55:12 +00001546 // A | (A & ?) = A
1547 if (match(Op1, m_And(m_Value(A), m_Value(B))) &&
Duncan Sands124708d2011-01-01 20:08:02 +00001548 (A == Op0 || B == Op0))
Chris Lattnerd06094f2009-11-10 00:55:12 +00001549 return Op0;
Duncan Sands12a86f52010-11-14 11:23:23 +00001550
Benjamin Kramer38f7f662011-02-20 15:20:01 +00001551 // ~(A & ?) | A = -1
1552 if (match(Op0, m_Not(m_And(m_Value(A), m_Value(B)))) &&
1553 (A == Op1 || B == Op1))
1554 return Constant::getAllOnesValue(Op1->getType());
1555
1556 // A | ~(A & ?) = -1
1557 if (match(Op1, m_Not(m_And(m_Value(A), m_Value(B)))) &&
1558 (A == Op0 || B == Op0))
1559 return Constant::getAllOnesValue(Op0->getType());
1560
Duncan Sands566edb02010-12-21 08:49:00 +00001561 // Try some generic simplifications for associative operations.
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001562 if (Value *V = SimplifyAssociativeBinOp(Instruction::Or, Op0, Op1, Q,
1563 MaxRecurse))
Duncan Sands566edb02010-12-21 08:49:00 +00001564 return V;
Benjamin Kramer6844c8e2010-09-10 22:39:55 +00001565
Duncan Sands3421d902010-12-21 13:32:22 +00001566 // Or distributes over And. Try some generic simplifications based on this.
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001567 if (Value *V = ExpandBinOp(Instruction::Or, Op0, Op1, Instruction::And, Q,
1568 MaxRecurse))
Duncan Sands3421d902010-12-21 13:32:22 +00001569 return V;
1570
1571 // And distributes over Or. Try some generic simplifications based on this.
1572 if (Value *V = FactorizeBinOp(Instruction::Or, Op0, Op1, Instruction::And,
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001573 Q, MaxRecurse))
Duncan Sands3421d902010-12-21 13:32:22 +00001574 return V;
1575
Duncan Sandsb2cbdc32010-11-10 13:00:08 +00001576 // If the operation is with the result of a select instruction, check whether
1577 // operating on either branch of the select always yields the same value.
Duncan Sands0312a932010-12-21 09:09:15 +00001578 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001579 if (Value *V = ThreadBinOpOverSelect(Instruction::Or, Op0, Op1, Q,
Duncan Sands0312a932010-12-21 09:09:15 +00001580 MaxRecurse))
Duncan Sandsa74a58c2010-11-10 18:23:01 +00001581 return V;
1582
1583 // If the operation is with the result of a phi instruction, check whether
1584 // operating on all incoming values of the phi always yields the same value.
Duncan Sands0312a932010-12-21 09:09:15 +00001585 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001586 if (Value *V = ThreadBinOpOverPHI(Instruction::Or, Op0, Op1, Q, MaxRecurse))
Duncan Sandsb2cbdc32010-11-10 13:00:08 +00001587 return V;
1588
Chris Lattnerd06094f2009-11-10 00:55:12 +00001589 return 0;
1590}
1591
Micah Villmow3574eca2012-10-08 16:38:25 +00001592Value *llvm::SimplifyOrInst(Value *Op0, Value *Op1, const DataLayout *TD,
Chad Rosier618c1db2011-12-01 03:08:23 +00001593 const TargetLibraryInfo *TLI,
Duncan Sands18450092010-11-16 12:16:38 +00001594 const DominatorTree *DT) {
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001595 return ::SimplifyOrInst(Op0, Op1, Query (TD, TLI, DT), RecursionLimit);
Duncan Sandsa74a58c2010-11-10 18:23:01 +00001596}
Chris Lattnerd06094f2009-11-10 00:55:12 +00001597
Duncan Sands2b749872010-11-17 18:52:15 +00001598/// SimplifyXorInst - Given operands for a Xor, see if we can
1599/// fold the result. If not, this returns null.
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001600static Value *SimplifyXorInst(Value *Op0, Value *Op1, const Query &Q,
1601 unsigned MaxRecurse) {
Duncan Sands2b749872010-11-17 18:52:15 +00001602 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
1603 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
1604 Constant *Ops[] = { CLHS, CRHS };
1605 return ConstantFoldInstOperands(Instruction::Xor, CLHS->getType(),
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001606 Ops, Q.TD, Q.TLI);
Duncan Sands2b749872010-11-17 18:52:15 +00001607 }
1608
1609 // Canonicalize the constant to the RHS.
1610 std::swap(Op0, Op1);
1611 }
1612
1613 // A ^ undef -> undef
Duncan Sandsf9e4a982011-02-01 09:06:20 +00001614 if (match(Op1, m_Undef()))
Duncan Sandsf8b1a5e2010-12-15 11:02:22 +00001615 return Op1;
Duncan Sands2b749872010-11-17 18:52:15 +00001616
1617 // A ^ 0 = A
1618 if (match(Op1, m_Zero()))
1619 return Op0;
1620
Eli Friedmanf23d4ad2011-08-17 19:31:49 +00001621 // A ^ A = 0
1622 if (Op0 == Op1)
1623 return Constant::getNullValue(Op0->getType());
1624
Duncan Sands2b749872010-11-17 18:52:15 +00001625 // A ^ ~A = ~A ^ A = -1
Chris Lattner81a0dc92011-02-09 17:15:04 +00001626 if (match(Op0, m_Not(m_Specific(Op1))) ||
1627 match(Op1, m_Not(m_Specific(Op0))))
Duncan Sands2b749872010-11-17 18:52:15 +00001628 return Constant::getAllOnesValue(Op0->getType());
1629
Duncan Sands566edb02010-12-21 08:49:00 +00001630 // Try some generic simplifications for associative operations.
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001631 if (Value *V = SimplifyAssociativeBinOp(Instruction::Xor, Op0, Op1, Q,
1632 MaxRecurse))
Duncan Sands566edb02010-12-21 08:49:00 +00001633 return V;
Duncan Sands2b749872010-11-17 18:52:15 +00001634
Duncan Sands3421d902010-12-21 13:32:22 +00001635 // And distributes over Xor. Try some generic simplifications based on this.
1636 if (Value *V = FactorizeBinOp(Instruction::Xor, Op0, Op1, Instruction::And,
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001637 Q, MaxRecurse))
Duncan Sands3421d902010-12-21 13:32:22 +00001638 return V;
1639
Duncan Sands87689cf2010-11-19 09:20:39 +00001640 // Threading Xor over selects and phi nodes is pointless, so don't bother.
1641 // Threading over the select in "A ^ select(cond, B, C)" means evaluating
1642 // "A^B" and "A^C" and seeing if they are equal; but they are equal if and
1643 // only if B and C are equal. If B and C are equal then (since we assume
1644 // that operands have already been simplified) "select(cond, B, C)" should
1645 // have been simplified to the common value of B and C already. Analysing
1646 // "A^B" and "A^C" thus gains nothing, but costs compile time. Similarly
1647 // for threading over phi nodes.
Duncan Sands2b749872010-11-17 18:52:15 +00001648
1649 return 0;
1650}
1651
Micah Villmow3574eca2012-10-08 16:38:25 +00001652Value *llvm::SimplifyXorInst(Value *Op0, Value *Op1, const DataLayout *TD,
Chad Rosier618c1db2011-12-01 03:08:23 +00001653 const TargetLibraryInfo *TLI,
Duncan Sands2b749872010-11-17 18:52:15 +00001654 const DominatorTree *DT) {
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001655 return ::SimplifyXorInst(Op0, Op1, Query (TD, TLI, DT), RecursionLimit);
Duncan Sands2b749872010-11-17 18:52:15 +00001656}
1657
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001658static Type *GetCompareTy(Value *Op) {
Chris Lattner210c5d42009-11-09 23:55:12 +00001659 return CmpInst::makeCmpResultType(Op->getType());
1660}
1661
Duncan Sandse864b5b2011-05-07 16:56:49 +00001662/// ExtractEquivalentCondition - Rummage around inside V looking for something
1663/// equivalent to the comparison "LHS Pred RHS". Return such a value if found,
1664/// otherwise return null. Helper function for analyzing max/min idioms.
1665static Value *ExtractEquivalentCondition(Value *V, CmpInst::Predicate Pred,
1666 Value *LHS, Value *RHS) {
1667 SelectInst *SI = dyn_cast<SelectInst>(V);
1668 if (!SI)
1669 return 0;
1670 CmpInst *Cmp = dyn_cast<CmpInst>(SI->getCondition());
1671 if (!Cmp)
1672 return 0;
1673 Value *CmpLHS = Cmp->getOperand(0), *CmpRHS = Cmp->getOperand(1);
1674 if (Pred == Cmp->getPredicate() && LHS == CmpLHS && RHS == CmpRHS)
1675 return Cmp;
1676 if (Pred == CmpInst::getSwappedPredicate(Cmp->getPredicate()) &&
1677 LHS == CmpRHS && RHS == CmpLHS)
1678 return Cmp;
1679 return 0;
1680}
1681
Micah Villmow3574eca2012-10-08 16:38:25 +00001682static Constant *computePointerICmp(const DataLayout &TD,
Chandler Carruth58725a62012-03-25 21:28:14 +00001683 CmpInst::Predicate Pred,
1684 Value *LHS, Value *RHS) {
1685 // We can only fold certain predicates on pointer comparisons.
1686 switch (Pred) {
1687 default:
1688 return 0;
1689
1690 // Equality comaprisons are easy to fold.
1691 case CmpInst::ICMP_EQ:
1692 case CmpInst::ICMP_NE:
1693 break;
1694
1695 // We can only handle unsigned relational comparisons because 'inbounds' on
1696 // a GEP only protects against unsigned wrapping.
1697 case CmpInst::ICMP_UGT:
1698 case CmpInst::ICMP_UGE:
1699 case CmpInst::ICMP_ULT:
1700 case CmpInst::ICMP_ULE:
1701 // However, we have to switch them to their signed variants to handle
1702 // negative indices from the base pointer.
1703 Pred = ICmpInst::getSignedPredicate(Pred);
1704 break;
1705 }
1706
1707 Constant *LHSOffset = stripAndComputeConstantOffsets(TD, LHS);
Chandler Carruth58725a62012-03-25 21:28:14 +00001708 Constant *RHSOffset = stripAndComputeConstantOffsets(TD, RHS);
Chandler Carruth58725a62012-03-25 21:28:14 +00001709
1710 // If LHS and RHS are not related via constant offsets to the same base
1711 // value, there is nothing we can do here.
1712 if (LHS != RHS)
1713 return 0;
1714
1715 return ConstantExpr::getICmp(Pred, LHSOffset, RHSOffset);
1716}
Chris Lattner009e2652012-02-24 19:01:58 +00001717
Chris Lattner9dbb4292009-11-09 23:28:39 +00001718/// SimplifyICmpInst - Given operands for an ICmpInst, see if we can
1719/// fold the result. If not, this returns null.
Duncan Sandsa74a58c2010-11-10 18:23:01 +00001720static Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001721 const Query &Q, unsigned MaxRecurse) {
Chris Lattner9f3c25a2009-11-09 22:57:59 +00001722 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate;
Chris Lattner9dbb4292009-11-09 23:28:39 +00001723 assert(CmpInst::isIntPredicate(Pred) && "Not an integer compare!");
Duncan Sands12a86f52010-11-14 11:23:23 +00001724
Chris Lattnerd06094f2009-11-10 00:55:12 +00001725 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
Chris Lattner8f73dea2009-11-09 23:06:58 +00001726 if (Constant *CRHS = dyn_cast<Constant>(RHS))
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001727 return ConstantFoldCompareInstOperands(Pred, CLHS, CRHS, Q.TD, Q.TLI);
Chris Lattnerd06094f2009-11-10 00:55:12 +00001728
1729 // If we have a constant, make sure it is on the RHS.
1730 std::swap(LHS, RHS);
1731 Pred = CmpInst::getSwappedPredicate(Pred);
1732 }
Duncan Sands12a86f52010-11-14 11:23:23 +00001733
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001734 Type *ITy = GetCompareTy(LHS); // The return type.
1735 Type *OpTy = LHS->getType(); // The operand type.
Duncan Sands12a86f52010-11-14 11:23:23 +00001736
Chris Lattner210c5d42009-11-09 23:55:12 +00001737 // icmp X, X -> true/false
Chris Lattnerc8e14b32010-03-03 19:46:03 +00001738 // X icmp undef -> true/false. For example, icmp ugt %X, undef -> false
1739 // because X could be 0.
Duncan Sands124708d2011-01-01 20:08:02 +00001740 if (LHS == RHS || isa<UndefValue>(RHS))
Chris Lattner210c5d42009-11-09 23:55:12 +00001741 return ConstantInt::get(ITy, CmpInst::isTrueWhenEqual(Pred));
Duncan Sands12a86f52010-11-14 11:23:23 +00001742
Duncan Sands6dc91252011-01-13 08:56:29 +00001743 // Special case logic when the operands have i1 type.
Nick Lewycky66d004e2011-12-01 02:39:36 +00001744 if (OpTy->getScalarType()->isIntegerTy(1)) {
Duncan Sands6dc91252011-01-13 08:56:29 +00001745 switch (Pred) {
1746 default: break;
1747 case ICmpInst::ICMP_EQ:
1748 // X == 1 -> X
1749 if (match(RHS, m_One()))
1750 return LHS;
1751 break;
1752 case ICmpInst::ICMP_NE:
1753 // X != 0 -> X
1754 if (match(RHS, m_Zero()))
1755 return LHS;
1756 break;
1757 case ICmpInst::ICMP_UGT:
1758 // X >u 0 -> X
1759 if (match(RHS, m_Zero()))
1760 return LHS;
1761 break;
1762 case ICmpInst::ICMP_UGE:
1763 // X >=u 1 -> X
1764 if (match(RHS, m_One()))
1765 return LHS;
1766 break;
1767 case ICmpInst::ICMP_SLT:
1768 // X <s 0 -> X
1769 if (match(RHS, m_Zero()))
1770 return LHS;
1771 break;
1772 case ICmpInst::ICMP_SLE:
1773 // X <=s -1 -> X
1774 if (match(RHS, m_One()))
1775 return LHS;
1776 break;
1777 }
1778 }
1779
Nick Lewyckyf7087ea2012-02-26 02:09:49 +00001780 // icmp <object*>, <object*/null> - Different identified objects have
1781 // different addresses (unless null), and what's more the address of an
1782 // identified local is never equal to another argument (again, barring null).
1783 // Note that generalizing to the case where LHS is a global variable address
1784 // or null is pointless, since if both LHS and RHS are constants then we
1785 // already constant folded the compare, and if only one of them is then we
1786 // moved it to RHS already.
Benjamin Kramerea79b8e2012-02-16 15:19:59 +00001787 Value *LHSPtr = LHS->stripPointerCasts();
1788 Value *RHSPtr = RHS->stripPointerCasts();
Eli Friedman2c3acb02012-02-18 03:29:25 +00001789 if (LHSPtr == RHSPtr)
1790 return ConstantInt::get(ITy, CmpInst::isTrueWhenEqual(Pred));
Nick Lewyckyf7087ea2012-02-26 02:09:49 +00001791
Chris Lattnerb053fc12012-02-20 00:42:49 +00001792 // Be more aggressive about stripping pointer adjustments when checking a
1793 // comparison of an alloca address to another object. We can rip off all
1794 // inbounds GEP operations, even if they are variable.
Chandler Carruth84dfc322012-03-10 08:39:09 +00001795 LHSPtr = LHSPtr->stripInBoundsOffsets();
Nick Lewyckyf7087ea2012-02-26 02:09:49 +00001796 if (llvm::isIdentifiedObject(LHSPtr)) {
Chandler Carruth84dfc322012-03-10 08:39:09 +00001797 RHSPtr = RHSPtr->stripInBoundsOffsets();
Nick Lewyckyf7087ea2012-02-26 02:09:49 +00001798 if (llvm::isKnownNonNull(LHSPtr) || llvm::isKnownNonNull(RHSPtr)) {
1799 // If both sides are different identified objects, they aren't equal
1800 // unless they're null.
Bill Wendlingc17731d652012-03-10 17:56:03 +00001801 if (LHSPtr != RHSPtr && llvm::isIdentifiedObject(RHSPtr) &&
Bill Wendling798d0132012-03-10 18:20:55 +00001802 Pred == CmpInst::ICMP_EQ)
Bill Wendlingc17731d652012-03-10 17:56:03 +00001803 return ConstantInt::get(ITy, false);
Nick Lewyckyf7087ea2012-02-26 02:09:49 +00001804
1805 // A local identified object (alloca or noalias call) can't equal any
Chandler Carruth961e1ac2012-08-07 10:59:59 +00001806 // incoming argument, unless they're both null or they belong to
1807 // different functions. The latter happens during inlining.
1808 if (Instruction *LHSInst = dyn_cast<Instruction>(LHSPtr))
1809 if (Argument *RHSArg = dyn_cast<Argument>(RHSPtr))
1810 if (LHSInst->getParent()->getParent() == RHSArg->getParent() &&
1811 Pred == CmpInst::ICMP_EQ)
1812 return ConstantInt::get(ITy, false);
Nick Lewyckyf7087ea2012-02-26 02:09:49 +00001813 }
1814
1815 // Assume that the constant null is on the right.
Bill Wendlingc17731d652012-03-10 17:56:03 +00001816 if (llvm::isKnownNonNull(LHSPtr) && isa<ConstantPointerNull>(RHSPtr)) {
Bill Wendling798d0132012-03-10 18:20:55 +00001817 if (Pred == CmpInst::ICMP_EQ)
Bill Wendlingc17731d652012-03-10 17:56:03 +00001818 return ConstantInt::get(ITy, false);
Bill Wendling798d0132012-03-10 18:20:55 +00001819 else if (Pred == CmpInst::ICMP_NE)
Bill Wendlingc17731d652012-03-10 17:56:03 +00001820 return ConstantInt::get(ITy, true);
1821 }
Chandler Carruth961e1ac2012-08-07 10:59:59 +00001822 } else if (Argument *LHSArg = dyn_cast<Argument>(LHSPtr)) {
Chandler Carruth84dfc322012-03-10 08:39:09 +00001823 RHSPtr = RHSPtr->stripInBoundsOffsets();
Chandler Carruth961e1ac2012-08-07 10:59:59 +00001824 // An alloca can't be equal to an argument unless they come from separate
1825 // functions via inlining.
1826 if (AllocaInst *RHSInst = dyn_cast<AllocaInst>(RHSPtr)) {
1827 if (LHSArg->getParent() == RHSInst->getParent()->getParent()) {
1828 if (Pred == CmpInst::ICMP_EQ)
1829 return ConstantInt::get(ITy, false);
1830 else if (Pred == CmpInst::ICMP_NE)
1831 return ConstantInt::get(ITy, true);
1832 }
Bill Wendlingc17731d652012-03-10 17:56:03 +00001833 }
Chris Lattnerb053fc12012-02-20 00:42:49 +00001834 }
Duncan Sandsd70d1a52011-01-25 09:38:29 +00001835
1836 // If we are comparing with zero then try hard since this is a common case.
1837 if (match(RHS, m_Zero())) {
1838 bool LHSKnownNonNegative, LHSKnownNegative;
1839 switch (Pred) {
Craig Topper85814382012-02-07 05:05:23 +00001840 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sandsd70d1a52011-01-25 09:38:29 +00001841 case ICmpInst::ICMP_ULT:
Duncan Sandsf56138d2011-07-26 15:03:53 +00001842 return getFalse(ITy);
Duncan Sandsd70d1a52011-01-25 09:38:29 +00001843 case ICmpInst::ICMP_UGE:
Duncan Sandsf56138d2011-07-26 15:03:53 +00001844 return getTrue(ITy);
Duncan Sandsd70d1a52011-01-25 09:38:29 +00001845 case ICmpInst::ICMP_EQ:
1846 case ICmpInst::ICMP_ULE:
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001847 if (isKnownNonZero(LHS, Q.TD))
Duncan Sandsf56138d2011-07-26 15:03:53 +00001848 return getFalse(ITy);
Duncan Sandsd70d1a52011-01-25 09:38:29 +00001849 break;
1850 case ICmpInst::ICMP_NE:
1851 case ICmpInst::ICMP_UGT:
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001852 if (isKnownNonZero(LHS, Q.TD))
Duncan Sandsf56138d2011-07-26 15:03:53 +00001853 return getTrue(ITy);
Duncan Sandsd70d1a52011-01-25 09:38:29 +00001854 break;
1855 case ICmpInst::ICMP_SLT:
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001856 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.TD);
Duncan Sandsd70d1a52011-01-25 09:38:29 +00001857 if (LHSKnownNegative)
Duncan Sandsf56138d2011-07-26 15:03:53 +00001858 return getTrue(ITy);
Duncan Sandsd70d1a52011-01-25 09:38:29 +00001859 if (LHSKnownNonNegative)
Duncan Sandsf56138d2011-07-26 15:03:53 +00001860 return getFalse(ITy);
Duncan Sandsd70d1a52011-01-25 09:38:29 +00001861 break;
1862 case ICmpInst::ICMP_SLE:
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001863 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.TD);
Duncan Sandsd70d1a52011-01-25 09:38:29 +00001864 if (LHSKnownNegative)
Duncan Sandsf56138d2011-07-26 15:03:53 +00001865 return getTrue(ITy);
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001866 if (LHSKnownNonNegative && isKnownNonZero(LHS, Q.TD))
Duncan Sandsf56138d2011-07-26 15:03:53 +00001867 return getFalse(ITy);
Duncan Sandsd70d1a52011-01-25 09:38:29 +00001868 break;
1869 case ICmpInst::ICMP_SGE:
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001870 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.TD);
Duncan Sandsd70d1a52011-01-25 09:38:29 +00001871 if (LHSKnownNegative)
Duncan Sandsf56138d2011-07-26 15:03:53 +00001872 return getFalse(ITy);
Duncan Sandsd70d1a52011-01-25 09:38:29 +00001873 if (LHSKnownNonNegative)
Duncan Sandsf56138d2011-07-26 15:03:53 +00001874 return getTrue(ITy);
Duncan Sandsd70d1a52011-01-25 09:38:29 +00001875 break;
1876 case ICmpInst::ICMP_SGT:
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001877 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.TD);
Duncan Sandsd70d1a52011-01-25 09:38:29 +00001878 if (LHSKnownNegative)
Duncan Sandsf56138d2011-07-26 15:03:53 +00001879 return getFalse(ITy);
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001880 if (LHSKnownNonNegative && isKnownNonZero(LHS, Q.TD))
Duncan Sandsf56138d2011-07-26 15:03:53 +00001881 return getTrue(ITy);
Duncan Sandsd70d1a52011-01-25 09:38:29 +00001882 break;
1883 }
1884 }
1885
1886 // See if we are doing a comparison with a constant integer.
Duncan Sands6dc91252011-01-13 08:56:29 +00001887 if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
Nick Lewycky3a73e342011-03-04 07:00:57 +00001888 // Rule out tautological comparisons (eg., ult 0 or uge 0).
1889 ConstantRange RHS_CR = ICmpInst::makeConstantRange(Pred, CI->getValue());
1890 if (RHS_CR.isEmptySet())
1891 return ConstantInt::getFalse(CI->getContext());
1892 if (RHS_CR.isFullSet())
1893 return ConstantInt::getTrue(CI->getContext());
Nick Lewycky88cd0aa2011-03-01 08:15:50 +00001894
Nick Lewycky3a73e342011-03-04 07:00:57 +00001895 // Many binary operators with constant RHS have easy to compute constant
1896 // range. Use them to check whether the comparison is a tautology.
1897 uint32_t Width = CI->getBitWidth();
1898 APInt Lower = APInt(Width, 0);
1899 APInt Upper = APInt(Width, 0);
1900 ConstantInt *CI2;
1901 if (match(LHS, m_URem(m_Value(), m_ConstantInt(CI2)))) {
1902 // 'urem x, CI2' produces [0, CI2).
1903 Upper = CI2->getValue();
1904 } else if (match(LHS, m_SRem(m_Value(), m_ConstantInt(CI2)))) {
1905 // 'srem x, CI2' produces (-|CI2|, |CI2|).
1906 Upper = CI2->getValue().abs();
1907 Lower = (-Upper) + 1;
Duncan Sandsc65c7472011-10-28 18:17:44 +00001908 } else if (match(LHS, m_UDiv(m_ConstantInt(CI2), m_Value()))) {
1909 // 'udiv CI2, x' produces [0, CI2].
Eli Friedman7781ae52011-11-08 21:08:02 +00001910 Upper = CI2->getValue() + 1;
Nick Lewycky3a73e342011-03-04 07:00:57 +00001911 } else if (match(LHS, m_UDiv(m_Value(), m_ConstantInt(CI2)))) {
1912 // 'udiv x, CI2' produces [0, UINT_MAX / CI2].
1913 APInt NegOne = APInt::getAllOnesValue(Width);
1914 if (!CI2->isZero())
1915 Upper = NegOne.udiv(CI2->getValue()) + 1;
1916 } else if (match(LHS, m_SDiv(m_Value(), m_ConstantInt(CI2)))) {
1917 // 'sdiv x, CI2' produces [INT_MIN / CI2, INT_MAX / CI2].
1918 APInt IntMin = APInt::getSignedMinValue(Width);
1919 APInt IntMax = APInt::getSignedMaxValue(Width);
1920 APInt Val = CI2->getValue().abs();
1921 if (!Val.isMinValue()) {
1922 Lower = IntMin.sdiv(Val);
1923 Upper = IntMax.sdiv(Val) + 1;
1924 }
1925 } else if (match(LHS, m_LShr(m_Value(), m_ConstantInt(CI2)))) {
1926 // 'lshr x, CI2' produces [0, UINT_MAX >> CI2].
1927 APInt NegOne = APInt::getAllOnesValue(Width);
1928 if (CI2->getValue().ult(Width))
1929 Upper = NegOne.lshr(CI2->getValue()) + 1;
1930 } else if (match(LHS, m_AShr(m_Value(), m_ConstantInt(CI2)))) {
1931 // 'ashr x, CI2' produces [INT_MIN >> CI2, INT_MAX >> CI2].
1932 APInt IntMin = APInt::getSignedMinValue(Width);
1933 APInt IntMax = APInt::getSignedMaxValue(Width);
1934 if (CI2->getValue().ult(Width)) {
1935 Lower = IntMin.ashr(CI2->getValue());
1936 Upper = IntMax.ashr(CI2->getValue()) + 1;
1937 }
1938 } else if (match(LHS, m_Or(m_Value(), m_ConstantInt(CI2)))) {
1939 // 'or x, CI2' produces [CI2, UINT_MAX].
1940 Lower = CI2->getValue();
1941 } else if (match(LHS, m_And(m_Value(), m_ConstantInt(CI2)))) {
1942 // 'and x, CI2' produces [0, CI2].
1943 Upper = CI2->getValue() + 1;
1944 }
1945 if (Lower != Upper) {
1946 ConstantRange LHS_CR = ConstantRange(Lower, Upper);
1947 if (RHS_CR.contains(LHS_CR))
1948 return ConstantInt::getTrue(RHS->getContext());
1949 if (RHS_CR.inverse().contains(LHS_CR))
1950 return ConstantInt::getFalse(RHS->getContext());
1951 }
Duncan Sands6dc91252011-01-13 08:56:29 +00001952 }
1953
Duncan Sands9d32f602011-01-20 13:21:55 +00001954 // Compare of cast, for example (zext X) != 0 -> X != 0
1955 if (isa<CastInst>(LHS) && (isa<Constant>(RHS) || isa<CastInst>(RHS))) {
1956 Instruction *LI = cast<CastInst>(LHS);
1957 Value *SrcOp = LI->getOperand(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001958 Type *SrcTy = SrcOp->getType();
1959 Type *DstTy = LI->getType();
Duncan Sands9d32f602011-01-20 13:21:55 +00001960
1961 // Turn icmp (ptrtoint x), (ptrtoint/constant) into a compare of the input
1962 // if the integer type is the same size as the pointer type.
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001963 if (MaxRecurse && Q.TD && isa<PtrToIntInst>(LI) &&
Chandler Carruth426c2bf2012-11-01 09:14:31 +00001964 Q.TD->getPointerSizeInBits() == DstTy->getPrimitiveSizeInBits()) {
Duncan Sands9d32f602011-01-20 13:21:55 +00001965 if (Constant *RHSC = dyn_cast<Constant>(RHS)) {
1966 // Transfer the cast to the constant.
1967 if (Value *V = SimplifyICmpInst(Pred, SrcOp,
1968 ConstantExpr::getIntToPtr(RHSC, SrcTy),
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001969 Q, MaxRecurse-1))
Duncan Sands9d32f602011-01-20 13:21:55 +00001970 return V;
1971 } else if (PtrToIntInst *RI = dyn_cast<PtrToIntInst>(RHS)) {
1972 if (RI->getOperand(0)->getType() == SrcTy)
1973 // Compare without the cast.
1974 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0),
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001975 Q, MaxRecurse-1))
Duncan Sands9d32f602011-01-20 13:21:55 +00001976 return V;
1977 }
1978 }
1979
1980 if (isa<ZExtInst>(LHS)) {
1981 // Turn icmp (zext X), (zext Y) into a compare of X and Y if they have the
1982 // same type.
1983 if (ZExtInst *RI = dyn_cast<ZExtInst>(RHS)) {
1984 if (MaxRecurse && SrcTy == RI->getOperand(0)->getType())
1985 // Compare X and Y. Note that signed predicates become unsigned.
1986 if (Value *V = SimplifyICmpInst(ICmpInst::getUnsignedPredicate(Pred),
Duncan Sands0aa85eb2012-03-13 11:42:19 +00001987 SrcOp, RI->getOperand(0), Q,
Duncan Sands9d32f602011-01-20 13:21:55 +00001988 MaxRecurse-1))
1989 return V;
1990 }
1991 // Turn icmp (zext X), Cst into a compare of X and Cst if Cst is extended
1992 // too. If not, then try to deduce the result of the comparison.
1993 else if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
1994 // Compute the constant that would happen if we truncated to SrcTy then
1995 // reextended to DstTy.
1996 Constant *Trunc = ConstantExpr::getTrunc(CI, SrcTy);
1997 Constant *RExt = ConstantExpr::getCast(CastInst::ZExt, Trunc, DstTy);
1998
1999 // If the re-extended constant didn't change then this is effectively
2000 // also a case of comparing two zero-extended values.
2001 if (RExt == CI && MaxRecurse)
2002 if (Value *V = SimplifyICmpInst(ICmpInst::getUnsignedPredicate(Pred),
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002003 SrcOp, Trunc, Q, MaxRecurse-1))
Duncan Sands9d32f602011-01-20 13:21:55 +00002004 return V;
2005
2006 // Otherwise the upper bits of LHS are zero while RHS has a non-zero bit
2007 // there. Use this to work out the result of the comparison.
2008 if (RExt != CI) {
2009 switch (Pred) {
Craig Topper85814382012-02-07 05:05:23 +00002010 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sands9d32f602011-01-20 13:21:55 +00002011 // LHS <u RHS.
2012 case ICmpInst::ICMP_EQ:
2013 case ICmpInst::ICMP_UGT:
2014 case ICmpInst::ICMP_UGE:
2015 return ConstantInt::getFalse(CI->getContext());
2016
2017 case ICmpInst::ICMP_NE:
2018 case ICmpInst::ICMP_ULT:
2019 case ICmpInst::ICMP_ULE:
2020 return ConstantInt::getTrue(CI->getContext());
2021
2022 // LHS is non-negative. If RHS is negative then LHS >s LHS. If RHS
2023 // is non-negative then LHS <s RHS.
2024 case ICmpInst::ICMP_SGT:
2025 case ICmpInst::ICMP_SGE:
2026 return CI->getValue().isNegative() ?
2027 ConstantInt::getTrue(CI->getContext()) :
2028 ConstantInt::getFalse(CI->getContext());
2029
2030 case ICmpInst::ICMP_SLT:
2031 case ICmpInst::ICMP_SLE:
2032 return CI->getValue().isNegative() ?
2033 ConstantInt::getFalse(CI->getContext()) :
2034 ConstantInt::getTrue(CI->getContext());
2035 }
2036 }
2037 }
2038 }
2039
2040 if (isa<SExtInst>(LHS)) {
2041 // Turn icmp (sext X), (sext Y) into a compare of X and Y if they have the
2042 // same type.
2043 if (SExtInst *RI = dyn_cast<SExtInst>(RHS)) {
2044 if (MaxRecurse && SrcTy == RI->getOperand(0)->getType())
2045 // Compare X and Y. Note that the predicate does not change.
2046 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0),
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002047 Q, MaxRecurse-1))
Duncan Sands9d32f602011-01-20 13:21:55 +00002048 return V;
2049 }
2050 // Turn icmp (sext X), Cst into a compare of X and Cst if Cst is extended
2051 // too. If not, then try to deduce the result of the comparison.
2052 else if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
2053 // Compute the constant that would happen if we truncated to SrcTy then
2054 // reextended to DstTy.
2055 Constant *Trunc = ConstantExpr::getTrunc(CI, SrcTy);
2056 Constant *RExt = ConstantExpr::getCast(CastInst::SExt, Trunc, DstTy);
2057
2058 // If the re-extended constant didn't change then this is effectively
2059 // also a case of comparing two sign-extended values.
2060 if (RExt == CI && MaxRecurse)
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002061 if (Value *V = SimplifyICmpInst(Pred, SrcOp, Trunc, Q, MaxRecurse-1))
Duncan Sands9d32f602011-01-20 13:21:55 +00002062 return V;
2063
2064 // Otherwise the upper bits of LHS are all equal, while RHS has varying
2065 // bits there. Use this to work out the result of the comparison.
2066 if (RExt != CI) {
2067 switch (Pred) {
Craig Topper85814382012-02-07 05:05:23 +00002068 default: llvm_unreachable("Unknown ICmp predicate!");
Duncan Sands9d32f602011-01-20 13:21:55 +00002069 case ICmpInst::ICMP_EQ:
2070 return ConstantInt::getFalse(CI->getContext());
2071 case ICmpInst::ICMP_NE:
2072 return ConstantInt::getTrue(CI->getContext());
2073
2074 // If RHS is non-negative then LHS <s RHS. If RHS is negative then
2075 // LHS >s RHS.
2076 case ICmpInst::ICMP_SGT:
2077 case ICmpInst::ICMP_SGE:
2078 return CI->getValue().isNegative() ?
2079 ConstantInt::getTrue(CI->getContext()) :
2080 ConstantInt::getFalse(CI->getContext());
2081 case ICmpInst::ICMP_SLT:
2082 case ICmpInst::ICMP_SLE:
2083 return CI->getValue().isNegative() ?
2084 ConstantInt::getFalse(CI->getContext()) :
2085 ConstantInt::getTrue(CI->getContext());
2086
2087 // If LHS is non-negative then LHS <u RHS. If LHS is negative then
2088 // LHS >u RHS.
2089 case ICmpInst::ICMP_UGT:
2090 case ICmpInst::ICMP_UGE:
Sylvestre Ledru94c22712012-09-27 10:14:43 +00002091 // Comparison is true iff the LHS <s 0.
Duncan Sands9d32f602011-01-20 13:21:55 +00002092 if (MaxRecurse)
2093 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SLT, SrcOp,
2094 Constant::getNullValue(SrcTy),
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002095 Q, MaxRecurse-1))
Duncan Sands9d32f602011-01-20 13:21:55 +00002096 return V;
2097 break;
2098 case ICmpInst::ICMP_ULT:
2099 case ICmpInst::ICMP_ULE:
Sylvestre Ledru94c22712012-09-27 10:14:43 +00002100 // Comparison is true iff the LHS >=s 0.
Duncan Sands9d32f602011-01-20 13:21:55 +00002101 if (MaxRecurse)
2102 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SGE, SrcOp,
2103 Constant::getNullValue(SrcTy),
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002104 Q, MaxRecurse-1))
Duncan Sands9d32f602011-01-20 13:21:55 +00002105 return V;
2106 break;
2107 }
2108 }
2109 }
2110 }
2111 }
2112
Duncan Sands52fb8462011-02-13 17:15:40 +00002113 // Special logic for binary operators.
2114 BinaryOperator *LBO = dyn_cast<BinaryOperator>(LHS);
2115 BinaryOperator *RBO = dyn_cast<BinaryOperator>(RHS);
2116 if (MaxRecurse && (LBO || RBO)) {
Duncan Sands52fb8462011-02-13 17:15:40 +00002117 // Analyze the case when either LHS or RHS is an add instruction.
2118 Value *A = 0, *B = 0, *C = 0, *D = 0;
2119 // LHS = A + B (or A and B are null); RHS = C + D (or C and D are null).
2120 bool NoLHSWrapProblem = false, NoRHSWrapProblem = false;
2121 if (LBO && LBO->getOpcode() == Instruction::Add) {
2122 A = LBO->getOperand(0); B = LBO->getOperand(1);
2123 NoLHSWrapProblem = ICmpInst::isEquality(Pred) ||
2124 (CmpInst::isUnsigned(Pred) && LBO->hasNoUnsignedWrap()) ||
2125 (CmpInst::isSigned(Pred) && LBO->hasNoSignedWrap());
2126 }
2127 if (RBO && RBO->getOpcode() == Instruction::Add) {
2128 C = RBO->getOperand(0); D = RBO->getOperand(1);
2129 NoRHSWrapProblem = ICmpInst::isEquality(Pred) ||
2130 (CmpInst::isUnsigned(Pred) && RBO->hasNoUnsignedWrap()) ||
2131 (CmpInst::isSigned(Pred) && RBO->hasNoSignedWrap());
2132 }
2133
2134 // icmp (X+Y), X -> icmp Y, 0 for equalities or if there is no overflow.
2135 if ((A == RHS || B == RHS) && NoLHSWrapProblem)
2136 if (Value *V = SimplifyICmpInst(Pred, A == RHS ? B : A,
2137 Constant::getNullValue(RHS->getType()),
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002138 Q, MaxRecurse-1))
Duncan Sands52fb8462011-02-13 17:15:40 +00002139 return V;
2140
2141 // icmp X, (X+Y) -> icmp 0, Y for equalities or if there is no overflow.
2142 if ((C == LHS || D == LHS) && NoRHSWrapProblem)
2143 if (Value *V = SimplifyICmpInst(Pred,
2144 Constant::getNullValue(LHS->getType()),
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002145 C == LHS ? D : C, Q, MaxRecurse-1))
Duncan Sands52fb8462011-02-13 17:15:40 +00002146 return V;
2147
2148 // icmp (X+Y), (X+Z) -> icmp Y,Z for equalities or if there is no overflow.
2149 if (A && C && (A == C || A == D || B == C || B == D) &&
2150 NoLHSWrapProblem && NoRHSWrapProblem) {
2151 // Determine Y and Z in the form icmp (X+Y), (X+Z).
Duncan Sandsaceb03e2012-11-16 19:41:26 +00002152 Value *Y, *Z;
2153 if (A == C) {
Duncan Sands4f0dfbb2012-11-16 20:53:08 +00002154 // C + B == C + D -> B == D
Duncan Sandsaceb03e2012-11-16 19:41:26 +00002155 Y = B;
2156 Z = D;
2157 } else if (A == D) {
Duncan Sands4f0dfbb2012-11-16 20:53:08 +00002158 // D + B == C + D -> B == C
Duncan Sandsaceb03e2012-11-16 19:41:26 +00002159 Y = B;
2160 Z = C;
2161 } else if (B == C) {
Duncan Sands4f0dfbb2012-11-16 20:53:08 +00002162 // A + C == C + D -> A == D
Duncan Sandsaceb03e2012-11-16 19:41:26 +00002163 Y = A;
2164 Z = D;
Duncan Sands4f0dfbb2012-11-16 20:53:08 +00002165 } else {
2166 assert(B == D);
2167 // A + D == C + D -> A == C
Duncan Sandsaceb03e2012-11-16 19:41:26 +00002168 Y = A;
2169 Z = C;
2170 }
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002171 if (Value *V = SimplifyICmpInst(Pred, Y, Z, Q, MaxRecurse-1))
Duncan Sands52fb8462011-02-13 17:15:40 +00002172 return V;
2173 }
2174 }
2175
Nick Lewycky84dd4fa2011-03-09 06:26:03 +00002176 if (LBO && match(LBO, m_URem(m_Value(), m_Specific(RHS)))) {
Nick Lewycky78679272011-03-04 10:06:52 +00002177 bool KnownNonNegative, KnownNegative;
Nick Lewycky88cd0aa2011-03-01 08:15:50 +00002178 switch (Pred) {
2179 default:
2180 break;
Nick Lewycky78679272011-03-04 10:06:52 +00002181 case ICmpInst::ICMP_SGT:
2182 case ICmpInst::ICMP_SGE:
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002183 ComputeSignBit(LHS, KnownNonNegative, KnownNegative, Q.TD);
Nick Lewycky78679272011-03-04 10:06:52 +00002184 if (!KnownNonNegative)
2185 break;
2186 // fall-through
Nick Lewycky88cd0aa2011-03-01 08:15:50 +00002187 case ICmpInst::ICMP_EQ:
2188 case ICmpInst::ICMP_UGT:
2189 case ICmpInst::ICMP_UGE:
Duncan Sandsf56138d2011-07-26 15:03:53 +00002190 return getFalse(ITy);
Nick Lewycky78679272011-03-04 10:06:52 +00002191 case ICmpInst::ICMP_SLT:
2192 case ICmpInst::ICMP_SLE:
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002193 ComputeSignBit(LHS, KnownNonNegative, KnownNegative, Q.TD);
Nick Lewycky78679272011-03-04 10:06:52 +00002194 if (!KnownNonNegative)
2195 break;
2196 // fall-through
Nick Lewycky88cd0aa2011-03-01 08:15:50 +00002197 case ICmpInst::ICMP_NE:
2198 case ICmpInst::ICMP_ULT:
2199 case ICmpInst::ICMP_ULE:
Duncan Sandsf56138d2011-07-26 15:03:53 +00002200 return getTrue(ITy);
Nick Lewycky88cd0aa2011-03-01 08:15:50 +00002201 }
2202 }
Nick Lewycky84dd4fa2011-03-09 06:26:03 +00002203 if (RBO && match(RBO, m_URem(m_Value(), m_Specific(LHS)))) {
2204 bool KnownNonNegative, KnownNegative;
2205 switch (Pred) {
2206 default:
2207 break;
2208 case ICmpInst::ICMP_SGT:
2209 case ICmpInst::ICMP_SGE:
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002210 ComputeSignBit(RHS, KnownNonNegative, KnownNegative, Q.TD);
Nick Lewycky84dd4fa2011-03-09 06:26:03 +00002211 if (!KnownNonNegative)
2212 break;
2213 // fall-through
Nick Lewyckya0e2f382011-03-09 08:20:06 +00002214 case ICmpInst::ICMP_NE:
Nick Lewycky84dd4fa2011-03-09 06:26:03 +00002215 case ICmpInst::ICMP_UGT:
2216 case ICmpInst::ICMP_UGE:
Duncan Sandsf56138d2011-07-26 15:03:53 +00002217 return getTrue(ITy);
Nick Lewycky84dd4fa2011-03-09 06:26:03 +00002218 case ICmpInst::ICMP_SLT:
2219 case ICmpInst::ICMP_SLE:
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002220 ComputeSignBit(RHS, KnownNonNegative, KnownNegative, Q.TD);
Nick Lewycky84dd4fa2011-03-09 06:26:03 +00002221 if (!KnownNonNegative)
2222 break;
2223 // fall-through
Nick Lewyckya0e2f382011-03-09 08:20:06 +00002224 case ICmpInst::ICMP_EQ:
Nick Lewycky84dd4fa2011-03-09 06:26:03 +00002225 case ICmpInst::ICMP_ULT:
2226 case ICmpInst::ICMP_ULE:
Duncan Sandsf56138d2011-07-26 15:03:53 +00002227 return getFalse(ITy);
Nick Lewycky84dd4fa2011-03-09 06:26:03 +00002228 }
2229 }
Nick Lewycky88cd0aa2011-03-01 08:15:50 +00002230
Duncan Sandsc65c7472011-10-28 18:17:44 +00002231 // x udiv y <=u x.
2232 if (LBO && match(LBO, m_UDiv(m_Specific(RHS), m_Value()))) {
2233 // icmp pred (X /u Y), X
2234 if (Pred == ICmpInst::ICMP_UGT)
2235 return getFalse(ITy);
2236 if (Pred == ICmpInst::ICMP_ULE)
2237 return getTrue(ITy);
2238 }
2239
Nick Lewycky58bfcdb2011-03-05 05:19:11 +00002240 if (MaxRecurse && LBO && RBO && LBO->getOpcode() == RBO->getOpcode() &&
2241 LBO->getOperand(1) == RBO->getOperand(1)) {
2242 switch (LBO->getOpcode()) {
2243 default: break;
2244 case Instruction::UDiv:
2245 case Instruction::LShr:
2246 if (ICmpInst::isSigned(Pred))
2247 break;
2248 // fall-through
2249 case Instruction::SDiv:
2250 case Instruction::AShr:
Eli Friedmanb6e7cd62011-05-05 21:59:18 +00002251 if (!LBO->isExact() || !RBO->isExact())
Nick Lewycky58bfcdb2011-03-05 05:19:11 +00002252 break;
2253 if (Value *V = SimplifyICmpInst(Pred, LBO->getOperand(0),
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002254 RBO->getOperand(0), Q, MaxRecurse-1))
Nick Lewycky58bfcdb2011-03-05 05:19:11 +00002255 return V;
2256 break;
2257 case Instruction::Shl: {
Duncan Sandsc9d904e2011-08-04 10:02:21 +00002258 bool NUW = LBO->hasNoUnsignedWrap() && RBO->hasNoUnsignedWrap();
Nick Lewycky58bfcdb2011-03-05 05:19:11 +00002259 bool NSW = LBO->hasNoSignedWrap() && RBO->hasNoSignedWrap();
2260 if (!NUW && !NSW)
2261 break;
2262 if (!NSW && ICmpInst::isSigned(Pred))
2263 break;
2264 if (Value *V = SimplifyICmpInst(Pred, LBO->getOperand(0),
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002265 RBO->getOperand(0), Q, MaxRecurse-1))
Nick Lewycky58bfcdb2011-03-05 05:19:11 +00002266 return V;
2267 break;
2268 }
2269 }
2270 }
2271
Duncan Sandsad206812011-05-03 19:53:10 +00002272 // Simplify comparisons involving max/min.
2273 Value *A, *B;
2274 CmpInst::Predicate P = CmpInst::BAD_ICMP_PREDICATE;
Sylvestre Ledru94c22712012-09-27 10:14:43 +00002275 CmpInst::Predicate EqP; // Chosen so that "A == max/min(A,B)" iff "A EqP B".
Duncan Sandsad206812011-05-03 19:53:10 +00002276
Duncan Sands8140ad32011-05-04 16:05:05 +00002277 // Signed variants on "max(a,b)>=a -> true".
Duncan Sandsad206812011-05-03 19:53:10 +00002278 if (match(LHS, m_SMax(m_Value(A), m_Value(B))) && (A == RHS || B == RHS)) {
2279 if (A != RHS) std::swap(A, B); // smax(A, B) pred A.
Sylvestre Ledru94c22712012-09-27 10:14:43 +00002280 EqP = CmpInst::ICMP_SGE; // "A == smax(A, B)" iff "A sge B".
Duncan Sandsad206812011-05-03 19:53:10 +00002281 // We analyze this as smax(A, B) pred A.
2282 P = Pred;
2283 } else if (match(RHS, m_SMax(m_Value(A), m_Value(B))) &&
2284 (A == LHS || B == LHS)) {
2285 if (A != LHS) std::swap(A, B); // A pred smax(A, B).
Sylvestre Ledru94c22712012-09-27 10:14:43 +00002286 EqP = CmpInst::ICMP_SGE; // "A == smax(A, B)" iff "A sge B".
Duncan Sandsad206812011-05-03 19:53:10 +00002287 // We analyze this as smax(A, B) swapped-pred A.
2288 P = CmpInst::getSwappedPredicate(Pred);
2289 } else if (match(LHS, m_SMin(m_Value(A), m_Value(B))) &&
2290 (A == RHS || B == RHS)) {
2291 if (A != RHS) std::swap(A, B); // smin(A, B) pred A.
Sylvestre Ledru94c22712012-09-27 10:14:43 +00002292 EqP = CmpInst::ICMP_SLE; // "A == smin(A, B)" iff "A sle B".
Duncan Sandsad206812011-05-03 19:53:10 +00002293 // We analyze this as smax(-A, -B) swapped-pred -A.
2294 // Note that we do not need to actually form -A or -B thanks to EqP.
2295 P = CmpInst::getSwappedPredicate(Pred);
2296 } else if (match(RHS, m_SMin(m_Value(A), m_Value(B))) &&
2297 (A == LHS || B == LHS)) {
2298 if (A != LHS) std::swap(A, B); // A pred smin(A, B).
Sylvestre Ledru94c22712012-09-27 10:14:43 +00002299 EqP = CmpInst::ICMP_SLE; // "A == smin(A, B)" iff "A sle B".
Duncan Sandsad206812011-05-03 19:53:10 +00002300 // We analyze this as smax(-A, -B) pred -A.
2301 // Note that we do not need to actually form -A or -B thanks to EqP.
2302 P = Pred;
2303 }
2304 if (P != CmpInst::BAD_ICMP_PREDICATE) {
2305 // Cases correspond to "max(A, B) p A".
2306 switch (P) {
2307 default:
2308 break;
2309 case CmpInst::ICMP_EQ:
2310 case CmpInst::ICMP_SLE:
Duncan Sandse864b5b2011-05-07 16:56:49 +00002311 // Equivalent to "A EqP B". This may be the same as the condition tested
2312 // in the max/min; if so, we can just return that.
2313 if (Value *V = ExtractEquivalentCondition(LHS, EqP, A, B))
2314 return V;
2315 if (Value *V = ExtractEquivalentCondition(RHS, EqP, A, B))
2316 return V;
2317 // Otherwise, see if "A EqP B" simplifies.
Duncan Sandsad206812011-05-03 19:53:10 +00002318 if (MaxRecurse)
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002319 if (Value *V = SimplifyICmpInst(EqP, A, B, Q, MaxRecurse-1))
Duncan Sandsad206812011-05-03 19:53:10 +00002320 return V;
2321 break;
2322 case CmpInst::ICMP_NE:
Duncan Sandse864b5b2011-05-07 16:56:49 +00002323 case CmpInst::ICMP_SGT: {
2324 CmpInst::Predicate InvEqP = CmpInst::getInversePredicate(EqP);
2325 // Equivalent to "A InvEqP B". This may be the same as the condition
2326 // tested in the max/min; if so, we can just return that.
2327 if (Value *V = ExtractEquivalentCondition(LHS, InvEqP, A, B))
2328 return V;
2329 if (Value *V = ExtractEquivalentCondition(RHS, InvEqP, A, B))
2330 return V;
2331 // Otherwise, see if "A InvEqP B" simplifies.
Duncan Sandsad206812011-05-03 19:53:10 +00002332 if (MaxRecurse)
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002333 if (Value *V = SimplifyICmpInst(InvEqP, A, B, Q, MaxRecurse-1))
Duncan Sandsad206812011-05-03 19:53:10 +00002334 return V;
2335 break;
Duncan Sandse864b5b2011-05-07 16:56:49 +00002336 }
Duncan Sandsad206812011-05-03 19:53:10 +00002337 case CmpInst::ICMP_SGE:
2338 // Always true.
Duncan Sandsf56138d2011-07-26 15:03:53 +00002339 return getTrue(ITy);
Duncan Sandsad206812011-05-03 19:53:10 +00002340 case CmpInst::ICMP_SLT:
2341 // Always false.
Duncan Sandsf56138d2011-07-26 15:03:53 +00002342 return getFalse(ITy);
Duncan Sandsad206812011-05-03 19:53:10 +00002343 }
2344 }
2345
Duncan Sands8140ad32011-05-04 16:05:05 +00002346 // Unsigned variants on "max(a,b)>=a -> true".
Duncan Sandsad206812011-05-03 19:53:10 +00002347 P = CmpInst::BAD_ICMP_PREDICATE;
2348 if (match(LHS, m_UMax(m_Value(A), m_Value(B))) && (A == RHS || B == RHS)) {
2349 if (A != RHS) std::swap(A, B); // umax(A, B) pred A.
Sylvestre Ledru94c22712012-09-27 10:14:43 +00002350 EqP = CmpInst::ICMP_UGE; // "A == umax(A, B)" iff "A uge B".
Duncan Sandsad206812011-05-03 19:53:10 +00002351 // We analyze this as umax(A, B) pred A.
2352 P = Pred;
2353 } else if (match(RHS, m_UMax(m_Value(A), m_Value(B))) &&
2354 (A == LHS || B == LHS)) {
2355 if (A != LHS) std::swap(A, B); // A pred umax(A, B).
Sylvestre Ledru94c22712012-09-27 10:14:43 +00002356 EqP = CmpInst::ICMP_UGE; // "A == umax(A, B)" iff "A uge B".
Duncan Sandsad206812011-05-03 19:53:10 +00002357 // We analyze this as umax(A, B) swapped-pred A.
2358 P = CmpInst::getSwappedPredicate(Pred);
2359 } else if (match(LHS, m_UMin(m_Value(A), m_Value(B))) &&
2360 (A == RHS || B == RHS)) {
2361 if (A != RHS) std::swap(A, B); // umin(A, B) pred A.
Sylvestre Ledru94c22712012-09-27 10:14:43 +00002362 EqP = CmpInst::ICMP_ULE; // "A == umin(A, B)" iff "A ule B".
Duncan Sandsad206812011-05-03 19:53:10 +00002363 // We analyze this as umax(-A, -B) swapped-pred -A.
2364 // Note that we do not need to actually form -A or -B thanks to EqP.
2365 P = CmpInst::getSwappedPredicate(Pred);
2366 } else if (match(RHS, m_UMin(m_Value(A), m_Value(B))) &&
2367 (A == LHS || B == LHS)) {
2368 if (A != LHS) std::swap(A, B); // A pred umin(A, B).
Sylvestre Ledru94c22712012-09-27 10:14:43 +00002369 EqP = CmpInst::ICMP_ULE; // "A == umin(A, B)" iff "A ule B".
Duncan Sandsad206812011-05-03 19:53:10 +00002370 // We analyze this as umax(-A, -B) pred -A.
2371 // Note that we do not need to actually form -A or -B thanks to EqP.
2372 P = Pred;
2373 }
2374 if (P != CmpInst::BAD_ICMP_PREDICATE) {
2375 // Cases correspond to "max(A, B) p A".
2376 switch (P) {
2377 default:
2378 break;
2379 case CmpInst::ICMP_EQ:
2380 case CmpInst::ICMP_ULE:
Duncan Sandse864b5b2011-05-07 16:56:49 +00002381 // Equivalent to "A EqP B". This may be the same as the condition tested
2382 // in the max/min; if so, we can just return that.
2383 if (Value *V = ExtractEquivalentCondition(LHS, EqP, A, B))
2384 return V;
2385 if (Value *V = ExtractEquivalentCondition(RHS, EqP, A, B))
2386 return V;
2387 // Otherwise, see if "A EqP B" simplifies.
Duncan Sandsad206812011-05-03 19:53:10 +00002388 if (MaxRecurse)
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002389 if (Value *V = SimplifyICmpInst(EqP, A, B, Q, MaxRecurse-1))
Duncan Sandsad206812011-05-03 19:53:10 +00002390 return V;
2391 break;
2392 case CmpInst::ICMP_NE:
Duncan Sandse864b5b2011-05-07 16:56:49 +00002393 case CmpInst::ICMP_UGT: {
2394 CmpInst::Predicate InvEqP = CmpInst::getInversePredicate(EqP);
2395 // Equivalent to "A InvEqP B". This may be the same as the condition
2396 // tested in the max/min; if so, we can just return that.
2397 if (Value *V = ExtractEquivalentCondition(LHS, InvEqP, A, B))
2398 return V;
2399 if (Value *V = ExtractEquivalentCondition(RHS, InvEqP, A, B))
2400 return V;
2401 // Otherwise, see if "A InvEqP B" simplifies.
Duncan Sandsad206812011-05-03 19:53:10 +00002402 if (MaxRecurse)
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002403 if (Value *V = SimplifyICmpInst(InvEqP, A, B, Q, MaxRecurse-1))
Duncan Sandsad206812011-05-03 19:53:10 +00002404 return V;
2405 break;
Duncan Sandse864b5b2011-05-07 16:56:49 +00002406 }
Duncan Sandsad206812011-05-03 19:53:10 +00002407 case CmpInst::ICMP_UGE:
2408 // Always true.
Duncan Sandsf56138d2011-07-26 15:03:53 +00002409 return getTrue(ITy);
Duncan Sandsad206812011-05-03 19:53:10 +00002410 case CmpInst::ICMP_ULT:
2411 // Always false.
Duncan Sandsf56138d2011-07-26 15:03:53 +00002412 return getFalse(ITy);
Duncan Sandsad206812011-05-03 19:53:10 +00002413 }
2414 }
2415
Duncan Sands8140ad32011-05-04 16:05:05 +00002416 // Variants on "max(x,y) >= min(x,z)".
2417 Value *C, *D;
2418 if (match(LHS, m_SMax(m_Value(A), m_Value(B))) &&
2419 match(RHS, m_SMin(m_Value(C), m_Value(D))) &&
2420 (A == C || A == D || B == C || B == D)) {
2421 // max(x, ?) pred min(x, ?).
2422 if (Pred == CmpInst::ICMP_SGE)
2423 // Always true.
Duncan Sandsf56138d2011-07-26 15:03:53 +00002424 return getTrue(ITy);
Duncan Sands8140ad32011-05-04 16:05:05 +00002425 if (Pred == CmpInst::ICMP_SLT)
2426 // Always false.
Duncan Sandsf56138d2011-07-26 15:03:53 +00002427 return getFalse(ITy);
Duncan Sands8140ad32011-05-04 16:05:05 +00002428 } else if (match(LHS, m_SMin(m_Value(A), m_Value(B))) &&
2429 match(RHS, m_SMax(m_Value(C), m_Value(D))) &&
2430 (A == C || A == D || B == C || B == D)) {
2431 // min(x, ?) pred max(x, ?).
2432 if (Pred == CmpInst::ICMP_SLE)
2433 // Always true.
Duncan Sandsf56138d2011-07-26 15:03:53 +00002434 return getTrue(ITy);
Duncan Sands8140ad32011-05-04 16:05:05 +00002435 if (Pred == CmpInst::ICMP_SGT)
2436 // Always false.
Duncan Sandsf56138d2011-07-26 15:03:53 +00002437 return getFalse(ITy);
Duncan Sands8140ad32011-05-04 16:05:05 +00002438 } else if (match(LHS, m_UMax(m_Value(A), m_Value(B))) &&
2439 match(RHS, m_UMin(m_Value(C), m_Value(D))) &&
2440 (A == C || A == D || B == C || B == D)) {
2441 // max(x, ?) pred min(x, ?).
2442 if (Pred == CmpInst::ICMP_UGE)
2443 // Always true.
Duncan Sandsf56138d2011-07-26 15:03:53 +00002444 return getTrue(ITy);
Duncan Sands8140ad32011-05-04 16:05:05 +00002445 if (Pred == CmpInst::ICMP_ULT)
2446 // Always false.
Duncan Sandsf56138d2011-07-26 15:03:53 +00002447 return getFalse(ITy);
Duncan Sands8140ad32011-05-04 16:05:05 +00002448 } else if (match(LHS, m_UMin(m_Value(A), m_Value(B))) &&
2449 match(RHS, m_UMax(m_Value(C), m_Value(D))) &&
2450 (A == C || A == D || B == C || B == D)) {
2451 // min(x, ?) pred max(x, ?).
2452 if (Pred == CmpInst::ICMP_ULE)
2453 // Always true.
Duncan Sandsf56138d2011-07-26 15:03:53 +00002454 return getTrue(ITy);
Duncan Sands8140ad32011-05-04 16:05:05 +00002455 if (Pred == CmpInst::ICMP_UGT)
2456 // Always false.
Duncan Sandsf56138d2011-07-26 15:03:53 +00002457 return getFalse(ITy);
Duncan Sands8140ad32011-05-04 16:05:05 +00002458 }
2459
Chandler Carruth58725a62012-03-25 21:28:14 +00002460 // Simplify comparisons of related pointers using a powerful, recursive
2461 // GEP-walk when we have target data available..
2462 if (Q.TD && LHS->getType()->isPointerTy() && RHS->getType()->isPointerTy())
2463 if (Constant *C = computePointerICmp(*Q.TD, Pred, LHS, RHS))
2464 return C;
2465
Nick Lewyckyf7087ea2012-02-26 02:09:49 +00002466 if (GetElementPtrInst *GLHS = dyn_cast<GetElementPtrInst>(LHS)) {
2467 if (GEPOperator *GRHS = dyn_cast<GEPOperator>(RHS)) {
2468 if (GLHS->getPointerOperand() == GRHS->getPointerOperand() &&
2469 GLHS->hasAllConstantIndices() && GRHS->hasAllConstantIndices() &&
2470 (ICmpInst::isEquality(Pred) ||
2471 (GLHS->isInBounds() && GRHS->isInBounds() &&
2472 Pred == ICmpInst::getSignedPredicate(Pred)))) {
2473 // The bases are equal and the indices are constant. Build a constant
2474 // expression GEP with the same indices and a null base pointer to see
2475 // what constant folding can make out of it.
2476 Constant *Null = Constant::getNullValue(GLHS->getPointerOperandType());
2477 SmallVector<Value *, 4> IndicesLHS(GLHS->idx_begin(), GLHS->idx_end());
2478 Constant *NewLHS = ConstantExpr::getGetElementPtr(Null, IndicesLHS);
2479
2480 SmallVector<Value *, 4> IndicesRHS(GRHS->idx_begin(), GRHS->idx_end());
2481 Constant *NewRHS = ConstantExpr::getGetElementPtr(Null, IndicesRHS);
2482 return ConstantExpr::getICmp(Pred, NewLHS, NewRHS);
2483 }
2484 }
2485 }
2486
Duncan Sands1ac7c992010-11-07 16:12:23 +00002487 // If the comparison is with the result of a select instruction, check whether
2488 // comparing with either branch of the select always yields the same value.
Duncan Sands0312a932010-12-21 09:09:15 +00002489 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002490 if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsa74a58c2010-11-10 18:23:01 +00002491 return V;
2492
2493 // If the comparison is with the result of a phi instruction, check whether
2494 // doing the compare with each incoming phi value yields a common result.
Duncan Sands0312a932010-12-21 09:09:15 +00002495 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002496 if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sands3bbb0cc2010-11-09 17:25:51 +00002497 return V;
Duncan Sands1ac7c992010-11-07 16:12:23 +00002498
Chris Lattner9f3c25a2009-11-09 22:57:59 +00002499 return 0;
2500}
2501
Duncan Sandsa74a58c2010-11-10 18:23:01 +00002502Value *llvm::SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Micah Villmow3574eca2012-10-08 16:38:25 +00002503 const DataLayout *TD,
Chad Rosier618c1db2011-12-01 03:08:23 +00002504 const TargetLibraryInfo *TLI,
2505 const DominatorTree *DT) {
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002506 return ::SimplifyICmpInst(Predicate, LHS, RHS, Query (TD, TLI, DT),
2507 RecursionLimit);
Duncan Sandsa74a58c2010-11-10 18:23:01 +00002508}
2509
Chris Lattner9dbb4292009-11-09 23:28:39 +00002510/// SimplifyFCmpInst - Given operands for an FCmpInst, see if we can
2511/// fold the result. If not, this returns null.
Duncan Sandsa74a58c2010-11-10 18:23:01 +00002512static Value *SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002513 const Query &Q, unsigned MaxRecurse) {
Chris Lattner9dbb4292009-11-09 23:28:39 +00002514 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate;
2515 assert(CmpInst::isFPPredicate(Pred) && "Not an FP compare!");
2516
Chris Lattnerd06094f2009-11-10 00:55:12 +00002517 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
Chris Lattner9dbb4292009-11-09 23:28:39 +00002518 if (Constant *CRHS = dyn_cast<Constant>(RHS))
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002519 return ConstantFoldCompareInstOperands(Pred, CLHS, CRHS, Q.TD, Q.TLI);
Duncan Sands12a86f52010-11-14 11:23:23 +00002520
Chris Lattnerd06094f2009-11-10 00:55:12 +00002521 // If we have a constant, make sure it is on the RHS.
2522 std::swap(LHS, RHS);
2523 Pred = CmpInst::getSwappedPredicate(Pred);
2524 }
Duncan Sands12a86f52010-11-14 11:23:23 +00002525
Chris Lattner210c5d42009-11-09 23:55:12 +00002526 // Fold trivial predicates.
2527 if (Pred == FCmpInst::FCMP_FALSE)
2528 return ConstantInt::get(GetCompareTy(LHS), 0);
2529 if (Pred == FCmpInst::FCMP_TRUE)
2530 return ConstantInt::get(GetCompareTy(LHS), 1);
2531
Chris Lattner210c5d42009-11-09 23:55:12 +00002532 if (isa<UndefValue>(RHS)) // fcmp pred X, undef -> undef
2533 return UndefValue::get(GetCompareTy(LHS));
2534
2535 // fcmp x,x -> true/false. Not all compares are foldable.
Duncan Sands124708d2011-01-01 20:08:02 +00002536 if (LHS == RHS) {
Chris Lattner210c5d42009-11-09 23:55:12 +00002537 if (CmpInst::isTrueWhenEqual(Pred))
2538 return ConstantInt::get(GetCompareTy(LHS), 1);
2539 if (CmpInst::isFalseWhenEqual(Pred))
2540 return ConstantInt::get(GetCompareTy(LHS), 0);
2541 }
Duncan Sands12a86f52010-11-14 11:23:23 +00002542
Chris Lattner210c5d42009-11-09 23:55:12 +00002543 // Handle fcmp with constant RHS
2544 if (Constant *RHSC = dyn_cast<Constant>(RHS)) {
2545 // If the constant is a nan, see if we can fold the comparison based on it.
2546 if (ConstantFP *CFP = dyn_cast<ConstantFP>(RHSC)) {
2547 if (CFP->getValueAPF().isNaN()) {
2548 if (FCmpInst::isOrdered(Pred)) // True "if ordered and foo"
2549 return ConstantInt::getFalse(CFP->getContext());
2550 assert(FCmpInst::isUnordered(Pred) &&
2551 "Comparison must be either ordered or unordered!");
2552 // True if unordered.
2553 return ConstantInt::getTrue(CFP->getContext());
2554 }
Dan Gohman6b617a72010-02-22 04:06:03 +00002555 // Check whether the constant is an infinity.
2556 if (CFP->getValueAPF().isInfinity()) {
2557 if (CFP->getValueAPF().isNegative()) {
2558 switch (Pred) {
2559 case FCmpInst::FCMP_OLT:
2560 // No value is ordered and less than negative infinity.
2561 return ConstantInt::getFalse(CFP->getContext());
2562 case FCmpInst::FCMP_UGE:
2563 // All values are unordered with or at least negative infinity.
2564 return ConstantInt::getTrue(CFP->getContext());
2565 default:
2566 break;
2567 }
2568 } else {
2569 switch (Pred) {
2570 case FCmpInst::FCMP_OGT:
2571 // No value is ordered and greater than infinity.
2572 return ConstantInt::getFalse(CFP->getContext());
2573 case FCmpInst::FCMP_ULE:
2574 // All values are unordered with and at most infinity.
2575 return ConstantInt::getTrue(CFP->getContext());
2576 default:
2577 break;
2578 }
2579 }
2580 }
Chris Lattner210c5d42009-11-09 23:55:12 +00002581 }
2582 }
Duncan Sands12a86f52010-11-14 11:23:23 +00002583
Duncan Sands92826de2010-11-07 16:46:25 +00002584 // If the comparison is with the result of a select instruction, check whether
2585 // comparing with either branch of the select always yields the same value.
Duncan Sands0312a932010-12-21 09:09:15 +00002586 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002587 if (Value *V = ThreadCmpOverSelect(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sandsa74a58c2010-11-10 18:23:01 +00002588 return V;
2589
2590 // If the comparison is with the result of a phi instruction, check whether
2591 // doing the compare with each incoming phi value yields a common result.
Duncan Sands0312a932010-12-21 09:09:15 +00002592 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002593 if (Value *V = ThreadCmpOverPHI(Pred, LHS, RHS, Q, MaxRecurse))
Duncan Sands3bbb0cc2010-11-09 17:25:51 +00002594 return V;
Duncan Sands92826de2010-11-07 16:46:25 +00002595
Chris Lattner9dbb4292009-11-09 23:28:39 +00002596 return 0;
2597}
2598
Duncan Sandsa74a58c2010-11-10 18:23:01 +00002599Value *llvm::SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Micah Villmow3574eca2012-10-08 16:38:25 +00002600 const DataLayout *TD,
Chad Rosier618c1db2011-12-01 03:08:23 +00002601 const TargetLibraryInfo *TLI,
2602 const DominatorTree *DT) {
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002603 return ::SimplifyFCmpInst(Predicate, LHS, RHS, Query (TD, TLI, DT),
2604 RecursionLimit);
Duncan Sandsa74a58c2010-11-10 18:23:01 +00002605}
2606
Chris Lattner04754262010-04-20 05:32:14 +00002607/// SimplifySelectInst - Given operands for a SelectInst, see if we can fold
2608/// the result. If not, this returns null.
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002609static Value *SimplifySelectInst(Value *CondVal, Value *TrueVal,
2610 Value *FalseVal, const Query &Q,
2611 unsigned MaxRecurse) {
Chris Lattner04754262010-04-20 05:32:14 +00002612 // select true, X, Y -> X
2613 // select false, X, Y -> Y
2614 if (ConstantInt *CB = dyn_cast<ConstantInt>(CondVal))
2615 return CB->getZExtValue() ? TrueVal : FalseVal;
Duncan Sands12a86f52010-11-14 11:23:23 +00002616
Chris Lattner04754262010-04-20 05:32:14 +00002617 // select C, X, X -> X
Duncan Sands124708d2011-01-01 20:08:02 +00002618 if (TrueVal == FalseVal)
Chris Lattner04754262010-04-20 05:32:14 +00002619 return TrueVal;
Duncan Sands12a86f52010-11-14 11:23:23 +00002620
Chris Lattner04754262010-04-20 05:32:14 +00002621 if (isa<UndefValue>(CondVal)) { // select undef, X, Y -> X or Y
2622 if (isa<Constant>(TrueVal))
2623 return TrueVal;
2624 return FalseVal;
2625 }
Dan Gohman68c0dbc2011-07-01 01:03:43 +00002626 if (isa<UndefValue>(TrueVal)) // select C, undef, X -> X
2627 return FalseVal;
2628 if (isa<UndefValue>(FalseVal)) // select C, X, undef -> X
2629 return TrueVal;
Duncan Sands12a86f52010-11-14 11:23:23 +00002630
Chris Lattner04754262010-04-20 05:32:14 +00002631 return 0;
2632}
2633
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002634Value *llvm::SimplifySelectInst(Value *Cond, Value *TrueVal, Value *FalseVal,
Micah Villmow3574eca2012-10-08 16:38:25 +00002635 const DataLayout *TD,
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002636 const TargetLibraryInfo *TLI,
2637 const DominatorTree *DT) {
2638 return ::SimplifySelectInst(Cond, TrueVal, FalseVal, Query (TD, TLI, DT),
2639 RecursionLimit);
2640}
2641
Chris Lattnerc514c1f2009-11-27 00:29:05 +00002642/// SimplifyGEPInst - Given operands for an GetElementPtrInst, see if we can
2643/// fold the result. If not, this returns null.
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002644static Value *SimplifyGEPInst(ArrayRef<Value *> Ops, const Query &Q, unsigned) {
Duncan Sands85bbff62010-11-22 13:42:49 +00002645 // The type of the GEP pointer operand.
Nadav Rotem16087692011-12-05 06:29:09 +00002646 PointerType *PtrTy = dyn_cast<PointerType>(Ops[0]->getType());
2647 // The GEP pointer operand is not a pointer, it's a vector of pointers.
2648 if (!PtrTy)
2649 return 0;
Duncan Sands85bbff62010-11-22 13:42:49 +00002650
Chris Lattnerc514c1f2009-11-27 00:29:05 +00002651 // getelementptr P -> P.
Jay Foadb9b54eb2011-07-19 15:07:52 +00002652 if (Ops.size() == 1)
Chris Lattnerc514c1f2009-11-27 00:29:05 +00002653 return Ops[0];
2654
Duncan Sands85bbff62010-11-22 13:42:49 +00002655 if (isa<UndefValue>(Ops[0])) {
2656 // Compute the (pointer) type returned by the GEP instruction.
Jay Foada9203102011-07-25 09:48:08 +00002657 Type *LastType = GetElementPtrInst::getIndexedType(PtrTy, Ops.slice(1));
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002658 Type *GEPTy = PointerType::get(LastType, PtrTy->getAddressSpace());
Duncan Sands85bbff62010-11-22 13:42:49 +00002659 return UndefValue::get(GEPTy);
2660 }
Chris Lattnerc514c1f2009-11-27 00:29:05 +00002661
Jay Foadb9b54eb2011-07-19 15:07:52 +00002662 if (Ops.size() == 2) {
Duncan Sandse60d79f2010-11-21 13:53:09 +00002663 // getelementptr P, 0 -> P.
Chris Lattnerc514c1f2009-11-27 00:29:05 +00002664 if (ConstantInt *C = dyn_cast<ConstantInt>(Ops[1]))
2665 if (C->isZero())
2666 return Ops[0];
Duncan Sandse60d79f2010-11-21 13:53:09 +00002667 // getelementptr P, N -> P if P points to a type of zero size.
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002668 if (Q.TD) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002669 Type *Ty = PtrTy->getElementType();
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002670 if (Ty->isSized() && Q.TD->getTypeAllocSize(Ty) == 0)
Duncan Sandse60d79f2010-11-21 13:53:09 +00002671 return Ops[0];
2672 }
2673 }
Duncan Sands12a86f52010-11-14 11:23:23 +00002674
Chris Lattnerc514c1f2009-11-27 00:29:05 +00002675 // Check to see if this is constant foldable.
Jay Foadb9b54eb2011-07-19 15:07:52 +00002676 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
Chris Lattnerc514c1f2009-11-27 00:29:05 +00002677 if (!isa<Constant>(Ops[i]))
2678 return 0;
Duncan Sands12a86f52010-11-14 11:23:23 +00002679
Jay Foaddab3d292011-07-21 14:31:17 +00002680 return ConstantExpr::getGetElementPtr(cast<Constant>(Ops[0]), Ops.slice(1));
Chris Lattnerc514c1f2009-11-27 00:29:05 +00002681}
2682
Micah Villmow3574eca2012-10-08 16:38:25 +00002683Value *llvm::SimplifyGEPInst(ArrayRef<Value *> Ops, const DataLayout *TD,
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002684 const TargetLibraryInfo *TLI,
2685 const DominatorTree *DT) {
2686 return ::SimplifyGEPInst(Ops, Query (TD, TLI, DT), RecursionLimit);
2687}
2688
Duncan Sandsdabc2802011-09-05 06:52:48 +00002689/// SimplifyInsertValueInst - Given operands for an InsertValueInst, see if we
2690/// can fold the result. If not, this returns null.
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002691static Value *SimplifyInsertValueInst(Value *Agg, Value *Val,
2692 ArrayRef<unsigned> Idxs, const Query &Q,
2693 unsigned) {
Duncan Sandsdabc2802011-09-05 06:52:48 +00002694 if (Constant *CAgg = dyn_cast<Constant>(Agg))
2695 if (Constant *CVal = dyn_cast<Constant>(Val))
2696 return ConstantFoldInsertValueInstruction(CAgg, CVal, Idxs);
2697
2698 // insertvalue x, undef, n -> x
2699 if (match(Val, m_Undef()))
2700 return Agg;
2701
2702 // insertvalue x, (extractvalue y, n), n
2703 if (ExtractValueInst *EV = dyn_cast<ExtractValueInst>(Val))
Benjamin Kramerae707bd2011-09-05 18:16:19 +00002704 if (EV->getAggregateOperand()->getType() == Agg->getType() &&
2705 EV->getIndices() == Idxs) {
Duncan Sandsdabc2802011-09-05 06:52:48 +00002706 // insertvalue undef, (extractvalue y, n), n -> y
2707 if (match(Agg, m_Undef()))
2708 return EV->getAggregateOperand();
2709
2710 // insertvalue y, (extractvalue y, n), n -> y
2711 if (Agg == EV->getAggregateOperand())
2712 return Agg;
2713 }
2714
2715 return 0;
2716}
2717
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002718Value *llvm::SimplifyInsertValueInst(Value *Agg, Value *Val,
2719 ArrayRef<unsigned> Idxs,
Micah Villmow3574eca2012-10-08 16:38:25 +00002720 const DataLayout *TD,
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002721 const TargetLibraryInfo *TLI,
2722 const DominatorTree *DT) {
2723 return ::SimplifyInsertValueInst(Agg, Val, Idxs, Query (TD, TLI, DT),
2724 RecursionLimit);
2725}
2726
Duncan Sandsff103412010-11-17 04:30:22 +00002727/// SimplifyPHINode - See if we can fold the given phi. If not, returns null.
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002728static Value *SimplifyPHINode(PHINode *PN, const Query &Q) {
Duncan Sandsff103412010-11-17 04:30:22 +00002729 // If all of the PHI's incoming values are the same then replace the PHI node
2730 // with the common value.
2731 Value *CommonValue = 0;
2732 bool HasUndefInput = false;
2733 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
2734 Value *Incoming = PN->getIncomingValue(i);
2735 // If the incoming value is the phi node itself, it can safely be skipped.
2736 if (Incoming == PN) continue;
2737 if (isa<UndefValue>(Incoming)) {
2738 // Remember that we saw an undef value, but otherwise ignore them.
2739 HasUndefInput = true;
2740 continue;
2741 }
2742 if (CommonValue && Incoming != CommonValue)
2743 return 0; // Not the same, bail out.
2744 CommonValue = Incoming;
2745 }
2746
2747 // If CommonValue is null then all of the incoming values were either undef or
2748 // equal to the phi node itself.
2749 if (!CommonValue)
2750 return UndefValue::get(PN->getType());
2751
2752 // If we have a PHI node like phi(X, undef, X), where X is defined by some
2753 // instruction, we cannot return X as the result of the PHI node unless it
2754 // dominates the PHI block.
2755 if (HasUndefInput)
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002756 return ValueDominatesPHI(CommonValue, PN, Q.DT) ? CommonValue : 0;
Duncan Sandsff103412010-11-17 04:30:22 +00002757
2758 return CommonValue;
2759}
2760
Duncan Sandsbd0fe562012-03-13 14:07:05 +00002761static Value *SimplifyTruncInst(Value *Op, Type *Ty, const Query &Q, unsigned) {
2762 if (Constant *C = dyn_cast<Constant>(Op))
2763 return ConstantFoldInstOperands(Instruction::Trunc, Ty, C, Q.TD, Q.TLI);
2764
2765 return 0;
2766}
2767
Micah Villmow3574eca2012-10-08 16:38:25 +00002768Value *llvm::SimplifyTruncInst(Value *Op, Type *Ty, const DataLayout *TD,
Duncan Sandsbd0fe562012-03-13 14:07:05 +00002769 const TargetLibraryInfo *TLI,
2770 const DominatorTree *DT) {
2771 return ::SimplifyTruncInst(Op, Ty, Query (TD, TLI, DT), RecursionLimit);
2772}
2773
Chris Lattnerd06094f2009-11-10 00:55:12 +00002774//=== Helper functions for higher up the class hierarchy.
Chris Lattner9dbb4292009-11-09 23:28:39 +00002775
Chris Lattnerd06094f2009-11-10 00:55:12 +00002776/// SimplifyBinOp - Given operands for a BinaryOperator, see if we can
2777/// fold the result. If not, this returns null.
Duncan Sandsa74a58c2010-11-10 18:23:01 +00002778static Value *SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002779 const Query &Q, unsigned MaxRecurse) {
Chris Lattnerd06094f2009-11-10 00:55:12 +00002780 switch (Opcode) {
Chris Lattner81a0dc92011-02-09 17:15:04 +00002781 case Instruction::Add:
Duncan Sandsffeb98a2011-02-09 17:45:03 +00002782 return SimplifyAddInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002783 Q, MaxRecurse);
Michael Ilsemand0a0d222012-12-12 00:29:16 +00002784 case Instruction::FAdd:
2785 return SimplifyFAddInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
2786
Chris Lattner81a0dc92011-02-09 17:15:04 +00002787 case Instruction::Sub:
Duncan Sandsffeb98a2011-02-09 17:45:03 +00002788 return SimplifySubInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002789 Q, MaxRecurse);
Michael Ilsemand0a0d222012-12-12 00:29:16 +00002790 case Instruction::FSub:
2791 return SimplifyFSubInst(LHS, RHS, FastMathFlags(), Q, MaxRecurse);
2792
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002793 case Instruction::Mul: return SimplifyMulInst (LHS, RHS, Q, MaxRecurse);
Michael Ilsemand0a0d222012-12-12 00:29:16 +00002794 case Instruction::FMul:
2795 return SimplifyFMulInst (LHS, RHS, FastMathFlags(), Q, MaxRecurse);
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002796 case Instruction::SDiv: return SimplifySDivInst(LHS, RHS, Q, MaxRecurse);
2797 case Instruction::UDiv: return SimplifyUDivInst(LHS, RHS, Q, MaxRecurse);
2798 case Instruction::FDiv: return SimplifyFDivInst(LHS, RHS, Q, MaxRecurse);
2799 case Instruction::SRem: return SimplifySRemInst(LHS, RHS, Q, MaxRecurse);
2800 case Instruction::URem: return SimplifyURemInst(LHS, RHS, Q, MaxRecurse);
2801 case Instruction::FRem: return SimplifyFRemInst(LHS, RHS, Q, MaxRecurse);
Chris Lattner81a0dc92011-02-09 17:15:04 +00002802 case Instruction::Shl:
Duncan Sandsffeb98a2011-02-09 17:45:03 +00002803 return SimplifyShlInst(LHS, RHS, /*isNSW*/false, /*isNUW*/false,
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002804 Q, MaxRecurse);
Chris Lattner81a0dc92011-02-09 17:15:04 +00002805 case Instruction::LShr:
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002806 return SimplifyLShrInst(LHS, RHS, /*isExact*/false, Q, MaxRecurse);
Chris Lattner81a0dc92011-02-09 17:15:04 +00002807 case Instruction::AShr:
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002808 return SimplifyAShrInst(LHS, RHS, /*isExact*/false, Q, MaxRecurse);
2809 case Instruction::And: return SimplifyAndInst(LHS, RHS, Q, MaxRecurse);
2810 case Instruction::Or: return SimplifyOrInst (LHS, RHS, Q, MaxRecurse);
2811 case Instruction::Xor: return SimplifyXorInst(LHS, RHS, Q, MaxRecurse);
Chris Lattnerd06094f2009-11-10 00:55:12 +00002812 default:
2813 if (Constant *CLHS = dyn_cast<Constant>(LHS))
2814 if (Constant *CRHS = dyn_cast<Constant>(RHS)) {
2815 Constant *COps[] = {CLHS, CRHS};
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002816 return ConstantFoldInstOperands(Opcode, LHS->getType(), COps, Q.TD,
2817 Q.TLI);
Chris Lattnerd06094f2009-11-10 00:55:12 +00002818 }
Duncan Sandsb2cbdc32010-11-10 13:00:08 +00002819
Duncan Sands566edb02010-12-21 08:49:00 +00002820 // If the operation is associative, try some generic simplifications.
2821 if (Instruction::isAssociative(Opcode))
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002822 if (Value *V = SimplifyAssociativeBinOp(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sands566edb02010-12-21 08:49:00 +00002823 return V;
2824
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002825 // If the operation is with the result of a select instruction check whether
Duncan Sandsb2cbdc32010-11-10 13:00:08 +00002826 // operating on either branch of the select always yields the same value.
Duncan Sands0312a932010-12-21 09:09:15 +00002827 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS))
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002828 if (Value *V = ThreadBinOpOverSelect(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sandsa74a58c2010-11-10 18:23:01 +00002829 return V;
2830
2831 // If the operation is with the result of a phi instruction, check whether
2832 // operating on all incoming values of the phi always yields the same value.
Duncan Sands0312a932010-12-21 09:09:15 +00002833 if (isa<PHINode>(LHS) || isa<PHINode>(RHS))
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002834 if (Value *V = ThreadBinOpOverPHI(Opcode, LHS, RHS, Q, MaxRecurse))
Duncan Sandsb2cbdc32010-11-10 13:00:08 +00002835 return V;
2836
Chris Lattnerd06094f2009-11-10 00:55:12 +00002837 return 0;
2838 }
2839}
Chris Lattner9dbb4292009-11-09 23:28:39 +00002840
Duncan Sands12a86f52010-11-14 11:23:23 +00002841Value *llvm::SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
Micah Villmow3574eca2012-10-08 16:38:25 +00002842 const DataLayout *TD, const TargetLibraryInfo *TLI,
Chad Rosier618c1db2011-12-01 03:08:23 +00002843 const DominatorTree *DT) {
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002844 return ::SimplifyBinOp(Opcode, LHS, RHS, Query (TD, TLI, DT), RecursionLimit);
Chris Lattner9dbb4292009-11-09 23:28:39 +00002845}
2846
Duncan Sandsa74a58c2010-11-10 18:23:01 +00002847/// SimplifyCmpInst - Given operands for a CmpInst, see if we can
2848/// fold the result.
2849static Value *SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002850 const Query &Q, unsigned MaxRecurse) {
Duncan Sandsa74a58c2010-11-10 18:23:01 +00002851 if (CmpInst::isIntPredicate((CmpInst::Predicate)Predicate))
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002852 return SimplifyICmpInst(Predicate, LHS, RHS, Q, MaxRecurse);
2853 return SimplifyFCmpInst(Predicate, LHS, RHS, Q, MaxRecurse);
Duncan Sandsa74a58c2010-11-10 18:23:01 +00002854}
2855
2856Value *llvm::SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
Micah Villmow3574eca2012-10-08 16:38:25 +00002857 const DataLayout *TD, const TargetLibraryInfo *TLI,
Chad Rosier618c1db2011-12-01 03:08:23 +00002858 const DominatorTree *DT) {
Duncan Sands0aa85eb2012-03-13 11:42:19 +00002859 return ::SimplifyCmpInst(Predicate, LHS, RHS, Query (TD, TLI, DT),
2860 RecursionLimit);
Duncan Sandsa74a58c2010-11-10 18:23:01 +00002861}
Chris Lattnere3453782009-11-10 01:08:51 +00002862
Chandler Carruthc98bd9f2012-12-28 11:30:55 +00002863template <typename IterTy>
Chandler Carruthe949aa12012-12-28 14:23:29 +00002864static Value *SimplifyCall(Value *V, IterTy ArgBegin, IterTy ArgEnd,
Chandler Carruthc98bd9f2012-12-28 11:30:55 +00002865 const Query &Q, unsigned MaxRecurse) {
Chandler Carruthe949aa12012-12-28 14:23:29 +00002866 Type *Ty = V->getType();
Chandler Carruthc98bd9f2012-12-28 11:30:55 +00002867 if (PointerType *PTy = dyn_cast<PointerType>(Ty))
2868 Ty = PTy->getElementType();
2869 FunctionType *FTy = cast<FunctionType>(Ty);
2870
Dan Gohman71d05032011-11-04 18:32:42 +00002871 // call undef -> undef
Chandler Carruthe949aa12012-12-28 14:23:29 +00002872 if (isa<UndefValue>(V))
Chandler Carruthc98bd9f2012-12-28 11:30:55 +00002873 return UndefValue::get(FTy->getReturnType());
Dan Gohman71d05032011-11-04 18:32:42 +00002874
Chandler Carruthe949aa12012-12-28 14:23:29 +00002875 Function *F = dyn_cast<Function>(V);
2876 if (!F)
2877 return 0;
2878
2879 if (!canConstantFoldCallTo(F))
2880 return 0;
2881
2882 SmallVector<Constant *, 4> ConstantArgs;
2883 ConstantArgs.reserve(ArgEnd - ArgBegin);
2884 for (IterTy I = ArgBegin, E = ArgEnd; I != E; ++I) {
2885 Constant *C = dyn_cast<Constant>(*I);
2886 if (!C)
2887 return 0;
2888 ConstantArgs.push_back(C);
2889 }
2890
2891 return ConstantFoldCall(F, ConstantArgs, Q.TLI);
Dan Gohman71d05032011-11-04 18:32:42 +00002892}
2893
Chandler Carruthe949aa12012-12-28 14:23:29 +00002894Value *llvm::SimplifyCall(Value *V, User::op_iterator ArgBegin,
Chandler Carruthc98bd9f2012-12-28 11:30:55 +00002895 User::op_iterator ArgEnd, const DataLayout *TD,
2896 const TargetLibraryInfo *TLI,
2897 const DominatorTree *DT) {
Chandler Carruthe949aa12012-12-28 14:23:29 +00002898 return ::SimplifyCall(V, ArgBegin, ArgEnd, Query(TD, TLI, DT),
Chandler Carruthc98bd9f2012-12-28 11:30:55 +00002899 RecursionLimit);
2900}
2901
Chandler Carruthe949aa12012-12-28 14:23:29 +00002902Value *llvm::SimplifyCall(Value *V, ArrayRef<Value *> Args,
Chandler Carruthc98bd9f2012-12-28 11:30:55 +00002903 const DataLayout *TD, const TargetLibraryInfo *TLI,
2904 const DominatorTree *DT) {
Chandler Carruthe949aa12012-12-28 14:23:29 +00002905 return ::SimplifyCall(V, Args.begin(), Args.end(), Query(TD, TLI, DT),
Chandler Carruthc98bd9f2012-12-28 11:30:55 +00002906 RecursionLimit);
2907}
2908
Chris Lattnere3453782009-11-10 01:08:51 +00002909/// SimplifyInstruction - See if we can compute a simplified version of this
2910/// instruction. If not, this returns null.
Micah Villmow3574eca2012-10-08 16:38:25 +00002911Value *llvm::SimplifyInstruction(Instruction *I, const DataLayout *TD,
Chad Rosier618c1db2011-12-01 03:08:23 +00002912 const TargetLibraryInfo *TLI,
Duncan Sandseff05812010-11-14 18:36:10 +00002913 const DominatorTree *DT) {
Duncan Sandsd261dc62010-11-17 08:35:29 +00002914 Value *Result;
2915
Chris Lattnere3453782009-11-10 01:08:51 +00002916 switch (I->getOpcode()) {
2917 default:
Chad Rosier618c1db2011-12-01 03:08:23 +00002918 Result = ConstantFoldInstruction(I, TD, TLI);
Duncan Sandsd261dc62010-11-17 08:35:29 +00002919 break;
Michael Ilseman09ee2502012-12-12 00:27:46 +00002920 case Instruction::FAdd:
2921 Result = SimplifyFAddInst(I->getOperand(0), I->getOperand(1),
2922 I->getFastMathFlags(), TD, TLI, DT);
2923 break;
Chris Lattner8aee8ef2009-11-27 17:42:22 +00002924 case Instruction::Add:
Duncan Sandsd261dc62010-11-17 08:35:29 +00002925 Result = SimplifyAddInst(I->getOperand(0), I->getOperand(1),
2926 cast<BinaryOperator>(I)->hasNoSignedWrap(),
2927 cast<BinaryOperator>(I)->hasNoUnsignedWrap(),
Chad Rosier618c1db2011-12-01 03:08:23 +00002928 TD, TLI, DT);
Duncan Sandsd261dc62010-11-17 08:35:29 +00002929 break;
Michael Ilseman09ee2502012-12-12 00:27:46 +00002930 case Instruction::FSub:
2931 Result = SimplifyFSubInst(I->getOperand(0), I->getOperand(1),
2932 I->getFastMathFlags(), TD, TLI, DT);
2933 break;
Duncan Sandsfea3b212010-12-15 14:07:39 +00002934 case Instruction::Sub:
2935 Result = SimplifySubInst(I->getOperand(0), I->getOperand(1),
2936 cast<BinaryOperator>(I)->hasNoSignedWrap(),
2937 cast<BinaryOperator>(I)->hasNoUnsignedWrap(),
Chad Rosier618c1db2011-12-01 03:08:23 +00002938 TD, TLI, DT);
Duncan Sandsfea3b212010-12-15 14:07:39 +00002939 break;
Michael Ilsemaneb61c922012-11-27 00:46:26 +00002940 case Instruction::FMul:
2941 Result = SimplifyFMulInst(I->getOperand(0), I->getOperand(1),
2942 I->getFastMathFlags(), TD, TLI, DT);
2943 break;
Duncan Sands82fdab32010-12-21 14:00:22 +00002944 case Instruction::Mul:
Chad Rosier618c1db2011-12-01 03:08:23 +00002945 Result = SimplifyMulInst(I->getOperand(0), I->getOperand(1), TD, TLI, DT);
Duncan Sands82fdab32010-12-21 14:00:22 +00002946 break;
Duncan Sands593faa52011-01-28 16:51:11 +00002947 case Instruction::SDiv:
Chad Rosier618c1db2011-12-01 03:08:23 +00002948 Result = SimplifySDivInst(I->getOperand(0), I->getOperand(1), TD, TLI, DT);
Duncan Sands593faa52011-01-28 16:51:11 +00002949 break;
2950 case Instruction::UDiv:
Chad Rosier618c1db2011-12-01 03:08:23 +00002951 Result = SimplifyUDivInst(I->getOperand(0), I->getOperand(1), TD, TLI, DT);
Duncan Sands593faa52011-01-28 16:51:11 +00002952 break;
Frits van Bommel1fca2c32011-01-29 15:26:31 +00002953 case Instruction::FDiv:
Chad Rosier618c1db2011-12-01 03:08:23 +00002954 Result = SimplifyFDivInst(I->getOperand(0), I->getOperand(1), TD, TLI, DT);
Frits van Bommel1fca2c32011-01-29 15:26:31 +00002955 break;
Duncan Sandsf24ed772011-05-02 16:27:02 +00002956 case Instruction::SRem:
Chad Rosier618c1db2011-12-01 03:08:23 +00002957 Result = SimplifySRemInst(I->getOperand(0), I->getOperand(1), TD, TLI, DT);
Duncan Sandsf24ed772011-05-02 16:27:02 +00002958 break;
2959 case Instruction::URem:
Chad Rosier618c1db2011-12-01 03:08:23 +00002960 Result = SimplifyURemInst(I->getOperand(0), I->getOperand(1), TD, TLI, DT);
Duncan Sandsf24ed772011-05-02 16:27:02 +00002961 break;
2962 case Instruction::FRem:
Chad Rosier618c1db2011-12-01 03:08:23 +00002963 Result = SimplifyFRemInst(I->getOperand(0), I->getOperand(1), TD, TLI, DT);
Duncan Sandsf24ed772011-05-02 16:27:02 +00002964 break;
Duncan Sandsc43cee32011-01-14 00:37:45 +00002965 case Instruction::Shl:
Chris Lattner81a0dc92011-02-09 17:15:04 +00002966 Result = SimplifyShlInst(I->getOperand(0), I->getOperand(1),
2967 cast<BinaryOperator>(I)->hasNoSignedWrap(),
2968 cast<BinaryOperator>(I)->hasNoUnsignedWrap(),
Chad Rosier618c1db2011-12-01 03:08:23 +00002969 TD, TLI, DT);
Duncan Sandsc43cee32011-01-14 00:37:45 +00002970 break;
2971 case Instruction::LShr:
Chris Lattner81a0dc92011-02-09 17:15:04 +00002972 Result = SimplifyLShrInst(I->getOperand(0), I->getOperand(1),
2973 cast<BinaryOperator>(I)->isExact(),
Chad Rosier618c1db2011-12-01 03:08:23 +00002974 TD, TLI, DT);
Duncan Sandsc43cee32011-01-14 00:37:45 +00002975 break;
2976 case Instruction::AShr:
Chris Lattner81a0dc92011-02-09 17:15:04 +00002977 Result = SimplifyAShrInst(I->getOperand(0), I->getOperand(1),
2978 cast<BinaryOperator>(I)->isExact(),
Chad Rosier618c1db2011-12-01 03:08:23 +00002979 TD, TLI, DT);
Duncan Sandsc43cee32011-01-14 00:37:45 +00002980 break;
Chris Lattnere3453782009-11-10 01:08:51 +00002981 case Instruction::And:
Chad Rosier618c1db2011-12-01 03:08:23 +00002982 Result = SimplifyAndInst(I->getOperand(0), I->getOperand(1), TD, TLI, DT);
Duncan Sandsd261dc62010-11-17 08:35:29 +00002983 break;
Chris Lattnere3453782009-11-10 01:08:51 +00002984 case Instruction::Or:
Chad Rosier618c1db2011-12-01 03:08:23 +00002985 Result = SimplifyOrInst(I->getOperand(0), I->getOperand(1), TD, TLI, DT);
Duncan Sandsd261dc62010-11-17 08:35:29 +00002986 break;
Duncan Sands2b749872010-11-17 18:52:15 +00002987 case Instruction::Xor:
Chad Rosier618c1db2011-12-01 03:08:23 +00002988 Result = SimplifyXorInst(I->getOperand(0), I->getOperand(1), TD, TLI, DT);
Duncan Sands2b749872010-11-17 18:52:15 +00002989 break;
Chris Lattnere3453782009-11-10 01:08:51 +00002990 case Instruction::ICmp:
Duncan Sandsd261dc62010-11-17 08:35:29 +00002991 Result = SimplifyICmpInst(cast<ICmpInst>(I)->getPredicate(),
Chad Rosier618c1db2011-12-01 03:08:23 +00002992 I->getOperand(0), I->getOperand(1), TD, TLI, DT);
Duncan Sandsd261dc62010-11-17 08:35:29 +00002993 break;
Chris Lattnere3453782009-11-10 01:08:51 +00002994 case Instruction::FCmp:
Duncan Sandsd261dc62010-11-17 08:35:29 +00002995 Result = SimplifyFCmpInst(cast<FCmpInst>(I)->getPredicate(),
Chad Rosier618c1db2011-12-01 03:08:23 +00002996 I->getOperand(0), I->getOperand(1), TD, TLI, DT);
Duncan Sandsd261dc62010-11-17 08:35:29 +00002997 break;
Chris Lattner04754262010-04-20 05:32:14 +00002998 case Instruction::Select:
Duncan Sandsd261dc62010-11-17 08:35:29 +00002999 Result = SimplifySelectInst(I->getOperand(0), I->getOperand(1),
Duncan Sands0aa85eb2012-03-13 11:42:19 +00003000 I->getOperand(2), TD, TLI, DT);
Duncan Sandsd261dc62010-11-17 08:35:29 +00003001 break;
Chris Lattnerc514c1f2009-11-27 00:29:05 +00003002 case Instruction::GetElementPtr: {
3003 SmallVector<Value*, 8> Ops(I->op_begin(), I->op_end());
Duncan Sands0aa85eb2012-03-13 11:42:19 +00003004 Result = SimplifyGEPInst(Ops, TD, TLI, DT);
Duncan Sandsd261dc62010-11-17 08:35:29 +00003005 break;
Chris Lattnerc514c1f2009-11-27 00:29:05 +00003006 }
Duncan Sandsdabc2802011-09-05 06:52:48 +00003007 case Instruction::InsertValue: {
3008 InsertValueInst *IV = cast<InsertValueInst>(I);
3009 Result = SimplifyInsertValueInst(IV->getAggregateOperand(),
3010 IV->getInsertedValueOperand(),
Duncan Sands0aa85eb2012-03-13 11:42:19 +00003011 IV->getIndices(), TD, TLI, DT);
Duncan Sandsdabc2802011-09-05 06:52:48 +00003012 break;
3013 }
Duncan Sandscd6636c2010-11-14 13:30:18 +00003014 case Instruction::PHI:
Duncan Sands0aa85eb2012-03-13 11:42:19 +00003015 Result = SimplifyPHINode(cast<PHINode>(I), Query (TD, TLI, DT));
Duncan Sandsd261dc62010-11-17 08:35:29 +00003016 break;
Chandler Carruthc98bd9f2012-12-28 11:30:55 +00003017 case Instruction::Call: {
3018 CallSite CS(cast<CallInst>(I));
3019 Result = SimplifyCall(CS.getCalledValue(), CS.arg_begin(), CS.arg_end(),
3020 TD, TLI, DT);
Dan Gohman71d05032011-11-04 18:32:42 +00003021 break;
Chandler Carruthc98bd9f2012-12-28 11:30:55 +00003022 }
Duncan Sandsbd0fe562012-03-13 14:07:05 +00003023 case Instruction::Trunc:
3024 Result = SimplifyTruncInst(I->getOperand(0), I->getType(), TD, TLI, DT);
3025 break;
Chris Lattnere3453782009-11-10 01:08:51 +00003026 }
Duncan Sandsd261dc62010-11-17 08:35:29 +00003027
3028 /// If called on unreachable code, the above logic may report that the
3029 /// instruction simplified to itself. Make life easier for users by
Duncan Sandsf8b1a5e2010-12-15 11:02:22 +00003030 /// detecting that case here, returning a safe value instead.
3031 return Result == I ? UndefValue::get(I->getType()) : Result;
Chris Lattnere3453782009-11-10 01:08:51 +00003032}
3033
Chandler Carruth6b980542012-03-24 21:11:24 +00003034/// \brief Implementation of recursive simplification through an instructions
3035/// uses.
Chris Lattner40d8c282009-11-10 22:26:15 +00003036///
Chandler Carruth6b980542012-03-24 21:11:24 +00003037/// This is the common implementation of the recursive simplification routines.
3038/// If we have a pre-simplified value in 'SimpleV', that is forcibly used to
3039/// replace the instruction 'I'. Otherwise, we simply add 'I' to the list of
3040/// instructions to process and attempt to simplify it using
3041/// InstructionSimplify.
3042///
3043/// This routine returns 'true' only when *it* simplifies something. The passed
3044/// in simplified value does not count toward this.
3045static bool replaceAndRecursivelySimplifyImpl(Instruction *I, Value *SimpleV,
Micah Villmow3574eca2012-10-08 16:38:25 +00003046 const DataLayout *TD,
Chandler Carruth6b980542012-03-24 21:11:24 +00003047 const TargetLibraryInfo *TLI,
3048 const DominatorTree *DT) {
3049 bool Simplified = false;
Chandler Carruth6231d5b2012-03-24 22:34:26 +00003050 SmallSetVector<Instruction *, 8> Worklist;
Duncan Sands12a86f52010-11-14 11:23:23 +00003051
Chandler Carruth6b980542012-03-24 21:11:24 +00003052 // If we have an explicit value to collapse to, do that round of the
3053 // simplification loop by hand initially.
3054 if (SimpleV) {
3055 for (Value::use_iterator UI = I->use_begin(), UE = I->use_end(); UI != UE;
3056 ++UI)
Chandler Carruthc5b785b2012-03-24 22:34:23 +00003057 if (*UI != I)
Chandler Carruth6231d5b2012-03-24 22:34:26 +00003058 Worklist.insert(cast<Instruction>(*UI));
Duncan Sands12a86f52010-11-14 11:23:23 +00003059
Chandler Carruth6b980542012-03-24 21:11:24 +00003060 // Replace the instruction with its simplified value.
3061 I->replaceAllUsesWith(SimpleV);
Chris Lattnerd2bfe542010-07-15 06:36:08 +00003062
Chandler Carruth6b980542012-03-24 21:11:24 +00003063 // Gracefully handle edge cases where the instruction is not wired into any
3064 // parent block.
3065 if (I->getParent())
3066 I->eraseFromParent();
3067 } else {
Chandler Carruth6231d5b2012-03-24 22:34:26 +00003068 Worklist.insert(I);
Chris Lattner40d8c282009-11-10 22:26:15 +00003069 }
Duncan Sands12a86f52010-11-14 11:23:23 +00003070
Chandler Carruth6231d5b2012-03-24 22:34:26 +00003071 // Note that we must test the size on each iteration, the worklist can grow.
3072 for (unsigned Idx = 0; Idx != Worklist.size(); ++Idx) {
3073 I = Worklist[Idx];
Duncan Sands12a86f52010-11-14 11:23:23 +00003074
Chandler Carruth6b980542012-03-24 21:11:24 +00003075 // See if this instruction simplifies.
3076 SimpleV = SimplifyInstruction(I, TD, TLI, DT);
3077 if (!SimpleV)
3078 continue;
3079
3080 Simplified = true;
3081
3082 // Stash away all the uses of the old instruction so we can check them for
3083 // recursive simplifications after a RAUW. This is cheaper than checking all
3084 // uses of To on the recursive step in most cases.
3085 for (Value::use_iterator UI = I->use_begin(), UE = I->use_end(); UI != UE;
3086 ++UI)
Chandler Carruth6231d5b2012-03-24 22:34:26 +00003087 Worklist.insert(cast<Instruction>(*UI));
Chandler Carruth6b980542012-03-24 21:11:24 +00003088
3089 // Replace the instruction with its simplified value.
3090 I->replaceAllUsesWith(SimpleV);
3091
3092 // Gracefully handle edge cases where the instruction is not wired into any
3093 // parent block.
3094 if (I->getParent())
3095 I->eraseFromParent();
3096 }
3097 return Simplified;
3098}
3099
3100bool llvm::recursivelySimplifyInstruction(Instruction *I,
Micah Villmow3574eca2012-10-08 16:38:25 +00003101 const DataLayout *TD,
Chandler Carruth6b980542012-03-24 21:11:24 +00003102 const TargetLibraryInfo *TLI,
3103 const DominatorTree *DT) {
3104 return replaceAndRecursivelySimplifyImpl(I, 0, TD, TLI, DT);
3105}
3106
3107bool llvm::replaceAndRecursivelySimplify(Instruction *I, Value *SimpleV,
Micah Villmow3574eca2012-10-08 16:38:25 +00003108 const DataLayout *TD,
Chandler Carruth6b980542012-03-24 21:11:24 +00003109 const TargetLibraryInfo *TLI,
3110 const DominatorTree *DT) {
3111 assert(I != SimpleV && "replaceAndRecursivelySimplify(X,X) is not valid!");
3112 assert(SimpleV && "Must provide a simplified value.");
3113 return replaceAndRecursivelySimplifyImpl(I, SimpleV, TD, TLI, DT);
Chris Lattner40d8c282009-11-10 22:26:15 +00003114}