blob: 66452a5d9865fa8634817f97dee3612b2f895125 [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
11// that do not require creating new instructions. For example, this does
12// constant folding, and can handle identities like (X&0)->0.
13//
14//===----------------------------------------------------------------------===//
15
16#include "llvm/Analysis/InstructionSimplify.h"
17#include "llvm/Analysis/ConstantFolding.h"
Chris Lattner40d8c282009-11-10 22:26:15 +000018#include "llvm/Support/ValueHandle.h"
Chris Lattner9f3c25a2009-11-09 22:57:59 +000019#include "llvm/Instructions.h"
Chris Lattnerd06094f2009-11-10 00:55:12 +000020#include "llvm/Support/PatternMatch.h"
Chris Lattner9f3c25a2009-11-09 22:57:59 +000021using namespace llvm;
Chris Lattnerd06094f2009-11-10 00:55:12 +000022using namespace llvm::PatternMatch;
Chris Lattner9f3c25a2009-11-09 22:57:59 +000023
Chris Lattner8aee8ef2009-11-27 17:42:22 +000024/// SimplifyAddInst - Given operands for an Add, see if we can
25/// fold the result. If not, this returns null.
26Value *llvm::SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
27 const TargetData *TD) {
28 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
29 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
30 Constant *Ops[] = { CLHS, CRHS };
31 return ConstantFoldInstOperands(Instruction::Add, CLHS->getType(),
32 Ops, 2, TD);
33 }
34
35 // Canonicalize the constant to the RHS.
36 std::swap(Op0, Op1);
37 }
38
39 if (Constant *Op1C = dyn_cast<Constant>(Op1)) {
40 // X + undef -> undef
41 if (isa<UndefValue>(Op1C))
42 return Op1C;
43
44 // X + 0 --> X
45 if (Op1C->isNullValue())
46 return Op0;
47 }
48
49 // FIXME: Could pull several more out of instcombine.
50 return 0;
51}
52
Chris Lattnerd06094f2009-11-10 00:55:12 +000053/// SimplifyAndInst - Given operands for an And, see if we can
Chris Lattner9f3c25a2009-11-09 22:57:59 +000054/// fold the result. If not, this returns null.
Chris Lattner8aee8ef2009-11-27 17:42:22 +000055Value *llvm::SimplifyAndInst(Value *Op0, Value *Op1, const TargetData *TD) {
Chris Lattnerd06094f2009-11-10 00:55:12 +000056 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
57 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
58 Constant *Ops[] = { CLHS, CRHS };
59 return ConstantFoldInstOperands(Instruction::And, CLHS->getType(),
60 Ops, 2, TD);
61 }
62
63 // Canonicalize the constant to the RHS.
64 std::swap(Op0, Op1);
65 }
66
67 // X & undef -> 0
68 if (isa<UndefValue>(Op1))
69 return Constant::getNullValue(Op0->getType());
70
71 // X & X = X
72 if (Op0 == Op1)
73 return Op0;
74
75 // X & <0,0> = <0,0>
76 if (isa<ConstantAggregateZero>(Op1))
77 return Op1;
78
79 // X & <-1,-1> = X
80 if (ConstantVector *CP = dyn_cast<ConstantVector>(Op1))
81 if (CP->isAllOnesValue())
82 return Op0;
83
84 if (ConstantInt *Op1CI = dyn_cast<ConstantInt>(Op1)) {
85 // X & 0 = 0
86 if (Op1CI->isZero())
87 return Op1CI;
88 // X & -1 = X
89 if (Op1CI->isAllOnesValue())
90 return Op0;
91 }
92
93 // A & ~A = ~A & A = 0
94 Value *A, *B;
Chris Lattner70ce6d02009-11-10 02:04:54 +000095 if ((match(Op0, m_Not(m_Value(A))) && A == Op1) ||
96 (match(Op1, m_Not(m_Value(A))) && A == Op0))
Chris Lattnerd06094f2009-11-10 00:55:12 +000097 return Constant::getNullValue(Op0->getType());
98
99 // (A | ?) & A = A
100 if (match(Op0, m_Or(m_Value(A), m_Value(B))) &&
101 (A == Op1 || B == Op1))
102 return Op1;
103
104 // A & (A | ?) = A
105 if (match(Op1, m_Or(m_Value(A), m_Value(B))) &&
106 (A == Op0 || B == Op0))
107 return Op0;
108
Benjamin Kramer6844c8e2010-09-10 22:39:55 +0000109 // (A & B) & A -> A & B
110 if (match(Op0, m_And(m_Value(A), m_Value(B))) &&
111 (A == Op1 || B == Op1))
112 return Op0;
113
114 // A & (A & B) -> A & B
115 if (match(Op1, m_And(m_Value(A), m_Value(B))) &&
116 (A == Op0 || B == Op0))
117 return Op1;
118
Chris Lattner9f3c25a2009-11-09 22:57:59 +0000119 return 0;
120}
121
Chris Lattnerd06094f2009-11-10 00:55:12 +0000122/// SimplifyOrInst - Given operands for an Or, see if we can
123/// fold the result. If not, this returns null.
Chris Lattner8aee8ef2009-11-27 17:42:22 +0000124Value *llvm::SimplifyOrInst(Value *Op0, Value *Op1, const TargetData *TD) {
Chris Lattnerd06094f2009-11-10 00:55:12 +0000125 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
126 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
127 Constant *Ops[] = { CLHS, CRHS };
128 return ConstantFoldInstOperands(Instruction::Or, CLHS->getType(),
129 Ops, 2, TD);
130 }
131
132 // Canonicalize the constant to the RHS.
133 std::swap(Op0, Op1);
134 }
135
136 // X | undef -> -1
137 if (isa<UndefValue>(Op1))
138 return Constant::getAllOnesValue(Op0->getType());
139
140 // X | X = X
141 if (Op0 == Op1)
142 return Op0;
143
144 // X | <0,0> = X
145 if (isa<ConstantAggregateZero>(Op1))
146 return Op0;
147
148 // X | <-1,-1> = <-1,-1>
149 if (ConstantVector *CP = dyn_cast<ConstantVector>(Op1))
150 if (CP->isAllOnesValue())
151 return Op1;
152
153 if (ConstantInt *Op1CI = dyn_cast<ConstantInt>(Op1)) {
154 // X | 0 = X
155 if (Op1CI->isZero())
156 return Op0;
157 // X | -1 = -1
158 if (Op1CI->isAllOnesValue())
159 return Op1CI;
160 }
161
162 // A | ~A = ~A | A = -1
163 Value *A, *B;
Chris Lattner70ce6d02009-11-10 02:04:54 +0000164 if ((match(Op0, m_Not(m_Value(A))) && A == Op1) ||
165 (match(Op1, m_Not(m_Value(A))) && A == Op0))
Chris Lattnerd06094f2009-11-10 00:55:12 +0000166 return Constant::getAllOnesValue(Op0->getType());
167
168 // (A & ?) | A = A
169 if (match(Op0, m_And(m_Value(A), m_Value(B))) &&
170 (A == Op1 || B == Op1))
171 return Op1;
172
173 // A | (A & ?) = A
174 if (match(Op1, m_And(m_Value(A), m_Value(B))) &&
175 (A == Op0 || B == Op0))
176 return Op0;
177
Benjamin Kramer6844c8e2010-09-10 22:39:55 +0000178 // (A | B) | A -> A | B
179 if (match(Op0, m_Or(m_Value(A), m_Value(B))) &&
180 (A == Op1 || B == Op1))
181 return Op0;
182
183 // A | (A | B) -> A | B
184 if (match(Op1, m_Or(m_Value(A), m_Value(B))) &&
185 (A == Op0 || B == Op0))
186 return Op1;
187
Chris Lattnerd06094f2009-11-10 00:55:12 +0000188 return 0;
189}
190
191
Chris Lattner210c5d42009-11-09 23:55:12 +0000192static const Type *GetCompareTy(Value *Op) {
193 return CmpInst::makeCmpResultType(Op->getType());
194}
195
Chris Lattner9f3c25a2009-11-09 22:57:59 +0000196
Chris Lattner9dbb4292009-11-09 23:28:39 +0000197/// SimplifyICmpInst - Given operands for an ICmpInst, see if we can
198/// fold the result. If not, this returns null.
199Value *llvm::SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
200 const TargetData *TD) {
Chris Lattner9f3c25a2009-11-09 22:57:59 +0000201 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate;
Chris Lattner9dbb4292009-11-09 23:28:39 +0000202 assert(CmpInst::isIntPredicate(Pred) && "Not an integer compare!");
Chris Lattner9f3c25a2009-11-09 22:57:59 +0000203
Chris Lattnerd06094f2009-11-10 00:55:12 +0000204 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
Chris Lattner8f73dea2009-11-09 23:06:58 +0000205 if (Constant *CRHS = dyn_cast<Constant>(RHS))
206 return ConstantFoldCompareInstOperands(Pred, CLHS, CRHS, TD);
Chris Lattnerd06094f2009-11-10 00:55:12 +0000207
208 // If we have a constant, make sure it is on the RHS.
209 std::swap(LHS, RHS);
210 Pred = CmpInst::getSwappedPredicate(Pred);
211 }
Chris Lattner9f3c25a2009-11-09 22:57:59 +0000212
Chris Lattner210c5d42009-11-09 23:55:12 +0000213 // ITy - This is the return type of the compare we're considering.
214 const Type *ITy = GetCompareTy(LHS);
215
216 // icmp X, X -> true/false
Chris Lattnerc8e14b32010-03-03 19:46:03 +0000217 // X icmp undef -> true/false. For example, icmp ugt %X, undef -> false
218 // because X could be 0.
219 if (LHS == RHS || isa<UndefValue>(RHS))
Chris Lattner210c5d42009-11-09 23:55:12 +0000220 return ConstantInt::get(ITy, CmpInst::isTrueWhenEqual(Pred));
Chris Lattner210c5d42009-11-09 23:55:12 +0000221
222 // icmp <global/alloca*/null>, <global/alloca*/null> - Global/Stack value
223 // addresses never equal each other! We already know that Op0 != Op1.
224 if ((isa<GlobalValue>(LHS) || isa<AllocaInst>(LHS) ||
225 isa<ConstantPointerNull>(LHS)) &&
226 (isa<GlobalValue>(RHS) || isa<AllocaInst>(RHS) ||
227 isa<ConstantPointerNull>(RHS)))
228 return ConstantInt::get(ITy, CmpInst::isFalseWhenEqual(Pred));
229
230 // See if we are doing a comparison with a constant.
231 if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
232 // If we have an icmp le or icmp ge instruction, turn it into the
233 // appropriate icmp lt or icmp gt instruction. This allows us to rely on
234 // them being folded in the code below.
235 switch (Pred) {
236 default: break;
237 case ICmpInst::ICMP_ULE:
238 if (CI->isMaxValue(false)) // A <=u MAX -> TRUE
239 return ConstantInt::getTrue(CI->getContext());
240 break;
241 case ICmpInst::ICMP_SLE:
242 if (CI->isMaxValue(true)) // A <=s MAX -> TRUE
243 return ConstantInt::getTrue(CI->getContext());
244 break;
245 case ICmpInst::ICMP_UGE:
246 if (CI->isMinValue(false)) // A >=u MIN -> TRUE
247 return ConstantInt::getTrue(CI->getContext());
248 break;
249 case ICmpInst::ICMP_SGE:
250 if (CI->isMinValue(true)) // A >=s MIN -> TRUE
251 return ConstantInt::getTrue(CI->getContext());
252 break;
253 }
Chris Lattner210c5d42009-11-09 23:55:12 +0000254 }
Duncan Sands1ac7c992010-11-07 16:12:23 +0000255
256 // If the comparison is with the result of a select instruction, check whether
257 // comparing with either branch of the select always yields the same value.
258 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS)) {
259 // Make sure the select is on the LHS.
260 if (!isa<SelectInst>(LHS)) {
261 std::swap(LHS, RHS);
262 Pred = CmpInst::getSwappedPredicate(Pred);
263 }
264 SelectInst *SI = cast<SelectInst>(LHS);
265 // Now that we have "icmp select(cond, TV, FV), RHS", analyse it.
266 // Does "icmp TV, RHS" simplify?
267 if (Value *TCmp = SimplifyICmpInst(Pred, SI->getTrueValue(), RHS, TD))
268 // It does! Does "icmp FV, RHS" simplify?
269 if (Value *FCmp = SimplifyICmpInst(Pred, SI->getFalseValue(), RHS, TD))
270 // It does! If they simplified to the same value, then use it as the
271 // result of the original comparison.
272 if (TCmp == FCmp)
273 return TCmp;
274 }
275
Chris Lattner9f3c25a2009-11-09 22:57:59 +0000276 return 0;
277}
278
Chris Lattner9dbb4292009-11-09 23:28:39 +0000279/// SimplifyFCmpInst - Given operands for an FCmpInst, see if we can
280/// fold the result. If not, this returns null.
281Value *llvm::SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
282 const TargetData *TD) {
283 CmpInst::Predicate Pred = (CmpInst::Predicate)Predicate;
284 assert(CmpInst::isFPPredicate(Pred) && "Not an FP compare!");
285
Chris Lattnerd06094f2009-11-10 00:55:12 +0000286 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
Chris Lattner9dbb4292009-11-09 23:28:39 +0000287 if (Constant *CRHS = dyn_cast<Constant>(RHS))
288 return ConstantFoldCompareInstOperands(Pred, CLHS, CRHS, TD);
Chris Lattnerd06094f2009-11-10 00:55:12 +0000289
290 // If we have a constant, make sure it is on the RHS.
291 std::swap(LHS, RHS);
292 Pred = CmpInst::getSwappedPredicate(Pred);
293 }
Chris Lattner9dbb4292009-11-09 23:28:39 +0000294
Chris Lattner210c5d42009-11-09 23:55:12 +0000295 // Fold trivial predicates.
296 if (Pred == FCmpInst::FCMP_FALSE)
297 return ConstantInt::get(GetCompareTy(LHS), 0);
298 if (Pred == FCmpInst::FCMP_TRUE)
299 return ConstantInt::get(GetCompareTy(LHS), 1);
300
Chris Lattner210c5d42009-11-09 23:55:12 +0000301 if (isa<UndefValue>(RHS)) // fcmp pred X, undef -> undef
302 return UndefValue::get(GetCompareTy(LHS));
303
304 // fcmp x,x -> true/false. Not all compares are foldable.
305 if (LHS == RHS) {
306 if (CmpInst::isTrueWhenEqual(Pred))
307 return ConstantInt::get(GetCompareTy(LHS), 1);
308 if (CmpInst::isFalseWhenEqual(Pred))
309 return ConstantInt::get(GetCompareTy(LHS), 0);
310 }
311
312 // Handle fcmp with constant RHS
313 if (Constant *RHSC = dyn_cast<Constant>(RHS)) {
314 // If the constant is a nan, see if we can fold the comparison based on it.
315 if (ConstantFP *CFP = dyn_cast<ConstantFP>(RHSC)) {
316 if (CFP->getValueAPF().isNaN()) {
317 if (FCmpInst::isOrdered(Pred)) // True "if ordered and foo"
318 return ConstantInt::getFalse(CFP->getContext());
319 assert(FCmpInst::isUnordered(Pred) &&
320 "Comparison must be either ordered or unordered!");
321 // True if unordered.
322 return ConstantInt::getTrue(CFP->getContext());
323 }
Dan Gohman6b617a72010-02-22 04:06:03 +0000324 // Check whether the constant is an infinity.
325 if (CFP->getValueAPF().isInfinity()) {
326 if (CFP->getValueAPF().isNegative()) {
327 switch (Pred) {
328 case FCmpInst::FCMP_OLT:
329 // No value is ordered and less than negative infinity.
330 return ConstantInt::getFalse(CFP->getContext());
331 case FCmpInst::FCMP_UGE:
332 // All values are unordered with or at least negative infinity.
333 return ConstantInt::getTrue(CFP->getContext());
334 default:
335 break;
336 }
337 } else {
338 switch (Pred) {
339 case FCmpInst::FCMP_OGT:
340 // No value is ordered and greater than infinity.
341 return ConstantInt::getFalse(CFP->getContext());
342 case FCmpInst::FCMP_ULE:
343 // All values are unordered with and at most infinity.
344 return ConstantInt::getTrue(CFP->getContext());
345 default:
346 break;
347 }
348 }
349 }
Chris Lattner210c5d42009-11-09 23:55:12 +0000350 }
351 }
352
Duncan Sands92826de2010-11-07 16:46:25 +0000353 // If the comparison is with the result of a select instruction, check whether
354 // comparing with either branch of the select always yields the same value.
355 if (isa<SelectInst>(LHS) || isa<SelectInst>(RHS)) {
356 // Make sure the select is on the LHS.
357 if (!isa<SelectInst>(LHS)) {
358 std::swap(LHS, RHS);
359 Pred = CmpInst::getSwappedPredicate(Pred);
360 }
361 SelectInst *SI = cast<SelectInst>(LHS);
362 // Now that we have "fcmp select(cond, TV, FV), RHS", analyse it.
363 // Does "fcmp TV, RHS" simplify?
364 if (Value *TCmp = SimplifyFCmpInst(Pred, SI->getTrueValue(), RHS, TD))
365 // It does! Does "fcmp FV, RHS" simplify?
366 if (Value *FCmp = SimplifyFCmpInst(Pred, SI->getFalseValue(), RHS, TD))
367 // It does! If they simplified to the same value, then use it as the
368 // result of the original comparison.
369 if (TCmp == FCmp)
370 return TCmp;
371 }
372
Chris Lattner9dbb4292009-11-09 23:28:39 +0000373 return 0;
374}
375
Chris Lattner04754262010-04-20 05:32:14 +0000376/// SimplifySelectInst - Given operands for a SelectInst, see if we can fold
377/// the result. If not, this returns null.
378Value *llvm::SimplifySelectInst(Value *CondVal, Value *TrueVal, Value *FalseVal,
379 const TargetData *TD) {
380 // select true, X, Y -> X
381 // select false, X, Y -> Y
382 if (ConstantInt *CB = dyn_cast<ConstantInt>(CondVal))
383 return CB->getZExtValue() ? TrueVal : FalseVal;
384
385 // select C, X, X -> X
386 if (TrueVal == FalseVal)
387 return TrueVal;
388
389 if (isa<UndefValue>(TrueVal)) // select C, undef, X -> X
390 return FalseVal;
391 if (isa<UndefValue>(FalseVal)) // select C, X, undef -> X
392 return TrueVal;
393 if (isa<UndefValue>(CondVal)) { // select undef, X, Y -> X or Y
394 if (isa<Constant>(TrueVal))
395 return TrueVal;
396 return FalseVal;
397 }
398
399
400
401 return 0;
402}
403
404
Chris Lattnerc514c1f2009-11-27 00:29:05 +0000405/// SimplifyGEPInst - Given operands for an GetElementPtrInst, see if we can
406/// fold the result. If not, this returns null.
407Value *llvm::SimplifyGEPInst(Value *const *Ops, unsigned NumOps,
408 const TargetData *TD) {
409 // getelementptr P -> P.
410 if (NumOps == 1)
411 return Ops[0];
412
413 // TODO.
414 //if (isa<UndefValue>(Ops[0]))
415 // return UndefValue::get(GEP.getType());
416
417 // getelementptr P, 0 -> P.
418 if (NumOps == 2)
419 if (ConstantInt *C = dyn_cast<ConstantInt>(Ops[1]))
420 if (C->isZero())
421 return Ops[0];
422
423 // Check to see if this is constant foldable.
424 for (unsigned i = 0; i != NumOps; ++i)
425 if (!isa<Constant>(Ops[i]))
426 return 0;
427
428 return ConstantExpr::getGetElementPtr(cast<Constant>(Ops[0]),
429 (Constant *const*)Ops+1, NumOps-1);
430}
431
432
Chris Lattnerd06094f2009-11-10 00:55:12 +0000433//=== Helper functions for higher up the class hierarchy.
Chris Lattner9dbb4292009-11-09 23:28:39 +0000434
Chris Lattnerd06094f2009-11-10 00:55:12 +0000435/// SimplifyBinOp - Given operands for a BinaryOperator, see if we can
436/// fold the result. If not, this returns null.
437Value *llvm::SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
438 const TargetData *TD) {
439 switch (Opcode) {
440 case Instruction::And: return SimplifyAndInst(LHS, RHS, TD);
441 case Instruction::Or: return SimplifyOrInst(LHS, RHS, TD);
442 default:
443 if (Constant *CLHS = dyn_cast<Constant>(LHS))
444 if (Constant *CRHS = dyn_cast<Constant>(RHS)) {
445 Constant *COps[] = {CLHS, CRHS};
446 return ConstantFoldInstOperands(Opcode, LHS->getType(), COps, 2, TD);
447 }
448 return 0;
449 }
450}
Chris Lattner9dbb4292009-11-09 23:28:39 +0000451
452/// SimplifyCmpInst - Given operands for a CmpInst, see if we can
453/// fold the result.
454Value *llvm::SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
455 const TargetData *TD) {
456 if (CmpInst::isIntPredicate((CmpInst::Predicate)Predicate))
457 return SimplifyICmpInst(Predicate, LHS, RHS, TD);
458 return SimplifyFCmpInst(Predicate, LHS, RHS, TD);
459}
460
Chris Lattnere3453782009-11-10 01:08:51 +0000461
462/// SimplifyInstruction - See if we can compute a simplified version of this
463/// instruction. If not, this returns null.
464Value *llvm::SimplifyInstruction(Instruction *I, const TargetData *TD) {
465 switch (I->getOpcode()) {
466 default:
467 return ConstantFoldInstruction(I, TD);
Chris Lattner8aee8ef2009-11-27 17:42:22 +0000468 case Instruction::Add:
Owen Anderson4e282de2010-09-16 20:51:41 +0000469 return SimplifyAddInst(I->getOperand(0), I->getOperand(1),
470 cast<BinaryOperator>(I)->hasNoSignedWrap(),
471 cast<BinaryOperator>(I)->hasNoUnsignedWrap(), TD);
Chris Lattnere3453782009-11-10 01:08:51 +0000472 case Instruction::And:
Owen Anderson4e282de2010-09-16 20:51:41 +0000473 return SimplifyAndInst(I->getOperand(0), I->getOperand(1), TD);
Chris Lattnere3453782009-11-10 01:08:51 +0000474 case Instruction::Or:
Owen Anderson4e282de2010-09-16 20:51:41 +0000475 return SimplifyOrInst(I->getOperand(0), I->getOperand(1), TD);
Chris Lattnere3453782009-11-10 01:08:51 +0000476 case Instruction::ICmp:
Owen Anderson4e282de2010-09-16 20:51:41 +0000477 return SimplifyICmpInst(cast<ICmpInst>(I)->getPredicate(),
478 I->getOperand(0), I->getOperand(1), TD);
Chris Lattnere3453782009-11-10 01:08:51 +0000479 case Instruction::FCmp:
Owen Anderson4e282de2010-09-16 20:51:41 +0000480 return SimplifyFCmpInst(cast<FCmpInst>(I)->getPredicate(),
481 I->getOperand(0), I->getOperand(1), TD);
Chris Lattner04754262010-04-20 05:32:14 +0000482 case Instruction::Select:
Owen Anderson4e282de2010-09-16 20:51:41 +0000483 return SimplifySelectInst(I->getOperand(0), I->getOperand(1),
Chris Lattner04754262010-04-20 05:32:14 +0000484 I->getOperand(2), TD);
Chris Lattnerc514c1f2009-11-27 00:29:05 +0000485 case Instruction::GetElementPtr: {
486 SmallVector<Value*, 8> Ops(I->op_begin(), I->op_end());
Owen Anderson4e282de2010-09-16 20:51:41 +0000487 return SimplifyGEPInst(&Ops[0], Ops.size(), TD);
Chris Lattnerc514c1f2009-11-27 00:29:05 +0000488 }
Chris Lattnere3453782009-11-10 01:08:51 +0000489 }
490}
491
Chris Lattner40d8c282009-11-10 22:26:15 +0000492/// ReplaceAndSimplifyAllUses - Perform From->replaceAllUsesWith(To) and then
493/// delete the From instruction. In addition to a basic RAUW, this does a
494/// recursive simplification of the newly formed instructions. This catches
495/// things where one simplification exposes other opportunities. This only
496/// simplifies and deletes scalar operations, it does not change the CFG.
497///
498void llvm::ReplaceAndSimplifyAllUses(Instruction *From, Value *To,
499 const TargetData *TD) {
500 assert(From != To && "ReplaceAndSimplifyAllUses(X,X) is not valid!");
501
Chris Lattnerd2bfe542010-07-15 06:36:08 +0000502 // FromHandle/ToHandle - This keeps a WeakVH on the from/to values so that
503 // we can know if it gets deleted out from under us or replaced in a
504 // recursive simplification.
Chris Lattner40d8c282009-11-10 22:26:15 +0000505 WeakVH FromHandle(From);
Chris Lattnerd2bfe542010-07-15 06:36:08 +0000506 WeakVH ToHandle(To);
Eli Friedmane2f93132010-07-15 05:09:31 +0000507
Chris Lattner40d8c282009-11-10 22:26:15 +0000508 while (!From->use_empty()) {
509 // Update the instruction to use the new value.
Chris Lattnerd2bfe542010-07-15 06:36:08 +0000510 Use &TheUse = From->use_begin().getUse();
511 Instruction *User = cast<Instruction>(TheUse.getUser());
512 TheUse = To;
513
514 // Check to see if the instruction can be folded due to the operand
515 // replacement. For example changing (or X, Y) into (or X, -1) can replace
516 // the 'or' with -1.
517 Value *SimplifiedVal;
518 {
519 // Sanity check to make sure 'User' doesn't dangle across
520 // SimplifyInstruction.
521 AssertingVH<> UserHandle(User);
Chris Lattner40d8c282009-11-10 22:26:15 +0000522
Chris Lattnerd2bfe542010-07-15 06:36:08 +0000523 SimplifiedVal = SimplifyInstruction(User, TD);
524 if (SimplifiedVal == 0) continue;
Chris Lattner40d8c282009-11-10 22:26:15 +0000525 }
Chris Lattnerd2bfe542010-07-15 06:36:08 +0000526
527 // Recursively simplify this user to the new value.
528 ReplaceAndSimplifyAllUses(User, SimplifiedVal, TD);
529 From = dyn_cast_or_null<Instruction>((Value*)FromHandle);
530 To = ToHandle;
531
532 assert(ToHandle && "To value deleted by recursive simplification?");
533
534 // If the recursive simplification ended up revisiting and deleting
535 // 'From' then we're done.
536 if (From == 0)
537 return;
Chris Lattner40d8c282009-11-10 22:26:15 +0000538 }
Chris Lattnerd2bfe542010-07-15 06:36:08 +0000539
540 // If 'From' has value handles referring to it, do a real RAUW to update them.
541 From->replaceAllUsesWith(To);
542
Chris Lattner40d8c282009-11-10 22:26:15 +0000543 From->eraseFromParent();
544}
545