blob: 762fbe4c9ad1a20da6bdf2d9d86fdc9a27ff36d4 [file] [log] [blame]
Chris Lattner9bc02a42003-05-13 21:37:02 +00001//===-- Constants.cpp - Implement Constant nodes --------------------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +00009//
Chris Lattnerd0ec2352009-11-01 03:03:03 +000010// This file implements the Constant* classes.
Chris Lattner00950542001-06-06 20:29:01 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner31bcdb82002-04-28 19:55:58 +000014#include "llvm/Constants.h"
Chris Lattner37f077a2009-08-23 04:02:03 +000015#include "LLVMContextImpl.h"
Chris Lattner92f6fea2007-02-27 03:05:06 +000016#include "ConstantFold.h"
Chris Lattner00950542001-06-06 20:29:01 +000017#include "llvm/DerivedTypes.h"
Reid Spencer1c9c8e62004-07-17 23:48:33 +000018#include "llvm/GlobalValue.h"
Misha Brukman47b14a42004-07-29 17:30:56 +000019#include "llvm/Instructions.h"
Chris Lattnerf5ec48d2001-10-13 06:57:33 +000020#include "llvm/Module.h"
Dan Gohman5a206ee2009-07-18 01:49:22 +000021#include "llvm/Operator.h"
Nick Lewycky21cc4462009-04-04 07:22:01 +000022#include "llvm/ADT/FoldingSet.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000023#include "llvm/ADT/StringExtras.h"
Nick Lewycky21cc4462009-04-04 07:22:01 +000024#include "llvm/ADT/StringMap.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000025#include "llvm/Support/Compiler.h"
Bill Wendling2e3def12006-11-17 08:03:48 +000026#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000027#include "llvm/Support/ErrorHandling.h"
Chris Lattner8a94bf12006-09-28 00:35:06 +000028#include "llvm/Support/ManagedStatic.h"
Bill Wendling2e3def12006-11-17 08:03:48 +000029#include "llvm/Support/MathExtras.h"
Chris Lattner37f077a2009-08-23 04:02:03 +000030#include "llvm/Support/raw_ostream.h"
Dan Gohmane6992f72009-09-10 23:37:55 +000031#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattner6b6f6ba2007-02-20 06:39:57 +000032#include "llvm/ADT/DenseMap.h"
Chris Lattnerf9021ff2007-02-19 20:01:23 +000033#include "llvm/ADT/SmallVector.h"
Chris Lattner00950542001-06-06 20:29:01 +000034#include <algorithm>
Reid Spenceref9b9a72007-02-05 20:47:22 +000035#include <map>
Chris Lattner31f84992003-11-21 20:23:48 +000036using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000037
Chris Lattner00950542001-06-06 20:29:01 +000038//===----------------------------------------------------------------------===//
Chris Lattnere9bb2df2001-12-03 22:26:30 +000039// Constant Class
Chris Lattner00950542001-06-06 20:29:01 +000040//===----------------------------------------------------------------------===//
41
Owen Andersona7235ea2009-07-31 20:28:14 +000042// Constructor to create a '0' constant of arbitrary type...
43static const uint64_t zero[2] = {0, 0};
Chris Lattner38211762009-10-30 22:33:29 +000044Constant *Constant::getNullValue(const Type *Ty) {
Owen Andersona7235ea2009-07-31 20:28:14 +000045 switch (Ty->getTypeID()) {
46 case Type::IntegerTyID:
47 return ConstantInt::get(Ty, 0);
48 case Type::FloatTyID:
49 return ConstantFP::get(Ty->getContext(), APFloat(APInt(32, 0)));
50 case Type::DoubleTyID:
51 return ConstantFP::get(Ty->getContext(), APFloat(APInt(64, 0)));
52 case Type::X86_FP80TyID:
53 return ConstantFP::get(Ty->getContext(), APFloat(APInt(80, 2, zero)));
54 case Type::FP128TyID:
55 return ConstantFP::get(Ty->getContext(),
56 APFloat(APInt(128, 2, zero), true));
57 case Type::PPC_FP128TyID:
58 return ConstantFP::get(Ty->getContext(), APFloat(APInt(128, 2, zero)));
59 case Type::PointerTyID:
60 return ConstantPointerNull::get(cast<PointerType>(Ty));
61 case Type::StructTyID:
62 case Type::ArrayTyID:
63 case Type::VectorTyID:
64 return ConstantAggregateZero::get(Ty);
65 default:
66 // Function, Label, or Opaque type?
67 assert(!"Cannot create a null constant of that type!");
68 return 0;
69 }
70}
71
Chris Lattner38211762009-10-30 22:33:29 +000072Constant* Constant::getIntegerValue(const Type *Ty, const APInt &V) {
Dan Gohman43ee5f72009-08-03 22:07:33 +000073 const Type *ScalarTy = Ty->getScalarType();
74
75 // Create the base integer constant.
76 Constant *C = ConstantInt::get(Ty->getContext(), V);
77
78 // Convert an integer to a pointer, if necessary.
79 if (const PointerType *PTy = dyn_cast<PointerType>(ScalarTy))
80 C = ConstantExpr::getIntToPtr(C, PTy);
81
82 // Broadcast a scalar to a vector, if necessary.
83 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
84 C = ConstantVector::get(std::vector<Constant *>(VTy->getNumElements(), C));
85
86 return C;
87}
88
Chris Lattner38211762009-10-30 22:33:29 +000089Constant* Constant::getAllOnesValue(const Type *Ty) {
90 if (const IntegerType *ITy = dyn_cast<IntegerType>(Ty))
Owen Andersona7235ea2009-07-31 20:28:14 +000091 return ConstantInt::get(Ty->getContext(),
92 APInt::getAllOnesValue(ITy->getBitWidth()));
93
94 std::vector<Constant*> Elts;
Chris Lattner38211762009-10-30 22:33:29 +000095 const VectorType *VTy = cast<VectorType>(Ty);
Owen Andersona7235ea2009-07-31 20:28:14 +000096 Elts.resize(VTy->getNumElements(), getAllOnesValue(VTy->getElementType()));
97 assert(Elts[0] && "Not a vector integer type!");
98 return cast<ConstantVector>(ConstantVector::get(Elts));
99}
100
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000101void Constant::destroyConstantImpl() {
102 // When a Constant is destroyed, there may be lingering
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000103 // references to the constant by other constants in the constant pool. These
Misha Brukmanef6a6a62003-08-21 22:14:26 +0000104 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000105 // but they don't know that. Because we only find out when the CPV is
106 // deleted, we must now notify all of our users (that should only be
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000107 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000108 //
109 while (!use_empty()) {
110 Value *V = use_back();
111#ifndef NDEBUG // Only in -g mode...
Chris Lattner37f077a2009-08-23 04:02:03 +0000112 if (!isa<Constant>(V)) {
David Greened2e63b72010-01-05 01:29:19 +0000113 dbgs() << "While deleting: " << *this
Chris Lattner37f077a2009-08-23 04:02:03 +0000114 << "\n\nUse still stuck around after Def is destroyed: "
115 << *V << "\n\n";
116 }
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000117#endif
Vikram S. Adve345e0cf2002-07-14 23:13:17 +0000118 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Reid Spencer1c9c8e62004-07-17 23:48:33 +0000119 Constant *CV = cast<Constant>(V);
120 CV->destroyConstant();
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000121
122 // The constant should remove itself from our use list...
Vikram S. Adve345e0cf2002-07-14 23:13:17 +0000123 assert((use_empty() || use_back() != V) && "Constant not removed!");
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000124 }
125
126 // Value has no outstanding references it is safe to delete it now...
127 delete this;
Chris Lattner1d87bcf2001-10-01 20:11:19 +0000128}
Chris Lattner00950542001-06-06 20:29:01 +0000129
Chris Lattner35b89fa2006-10-20 00:27:06 +0000130/// canTrap - Return true if evaluation of this constant could trap. This is
131/// true for things like constant expressions that could divide by zero.
132bool Constant::canTrap() const {
133 assert(getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
134 // The only thing that could possibly trap are constant exprs.
135 const ConstantExpr *CE = dyn_cast<ConstantExpr>(this);
136 if (!CE) return false;
137
138 // ConstantExpr traps if any operands can trap.
139 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattner0eeb9132009-10-28 05:14:34 +0000140 if (CE->getOperand(i)->canTrap())
Chris Lattner35b89fa2006-10-20 00:27:06 +0000141 return true;
142
143 // Otherwise, only specific operations can trap.
144 switch (CE->getOpcode()) {
145 default:
146 return false;
Reid Spencer1628cec2006-10-26 06:15:43 +0000147 case Instruction::UDiv:
148 case Instruction::SDiv:
149 case Instruction::FDiv:
Reid Spencer0a783f72006-11-02 01:53:59 +0000150 case Instruction::URem:
151 case Instruction::SRem:
152 case Instruction::FRem:
Chris Lattner35b89fa2006-10-20 00:27:06 +0000153 // Div and rem can trap if the RHS is not known to be non-zero.
Chris Lattner0eeb9132009-10-28 05:14:34 +0000154 if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
Chris Lattner35b89fa2006-10-20 00:27:06 +0000155 return true;
156 return false;
157 }
158}
159
Chris Lattner4a7642e2009-11-01 18:11:50 +0000160/// isConstantUsed - Return true if the constant has users other than constant
161/// exprs and other dangling things.
162bool Constant::isConstantUsed() const {
163 for (use_const_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
164 const Constant *UC = dyn_cast<Constant>(*UI);
165 if (UC == 0 || isa<GlobalValue>(UC))
166 return true;
167
168 if (UC->isConstantUsed())
169 return true;
170 }
171 return false;
172}
173
174
Chris Lattner7cf12c72009-07-22 00:05:44 +0000175
176/// getRelocationInfo - This method classifies the entry according to
177/// whether or not it may generate a relocation entry. This must be
178/// conservative, so if it might codegen to a relocatable entry, it should say
179/// so. The return values are:
180///
Chris Lattner083a1e02009-07-24 03:27:21 +0000181/// NoRelocation: This constant pool entry is guaranteed to never have a
182/// relocation applied to it (because it holds a simple constant like
183/// '4').
184/// LocalRelocation: This entry has relocations, but the entries are
185/// guaranteed to be resolvable by the static linker, so the dynamic
186/// linker will never see them.
187/// GlobalRelocations: This entry may have arbitrary relocations.
Chris Lattner7cf12c72009-07-22 00:05:44 +0000188///
189/// FIXME: This really should not be in VMCore.
Chris Lattner083a1e02009-07-24 03:27:21 +0000190Constant::PossibleRelocationsTy Constant::getRelocationInfo() const {
191 if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
Chris Lattner7cf12c72009-07-22 00:05:44 +0000192 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
Chris Lattner083a1e02009-07-24 03:27:21 +0000193 return LocalRelocation; // Local to this file/library.
194 return GlobalRelocations; // Global reference.
Anton Korobeynikovab267a22009-03-29 17:13:18 +0000195 }
Chris Lattner7cf12c72009-07-22 00:05:44 +0000196
Chris Lattner5d81bef2009-10-28 04:12:16 +0000197 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
198 return BA->getFunction()->getRelocationInfo();
199
Chris Lattner5099b312010-01-03 18:09:40 +0000200 // While raw uses of blockaddress need to be relocated, differences between
201 // two of them don't when they are for labels in the same function. This is a
202 // common idiom when creating a table for the indirect goto extension, so we
203 // handle it efficiently here.
204 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(this))
205 if (CE->getOpcode() == Instruction::Sub) {
206 ConstantExpr *LHS = dyn_cast<ConstantExpr>(CE->getOperand(0));
207 ConstantExpr *RHS = dyn_cast<ConstantExpr>(CE->getOperand(1));
208 if (LHS && RHS &&
209 LHS->getOpcode() == Instruction::PtrToInt &&
210 RHS->getOpcode() == Instruction::PtrToInt &&
211 isa<BlockAddress>(LHS->getOperand(0)) &&
212 isa<BlockAddress>(RHS->getOperand(0)) &&
213 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
214 cast<BlockAddress>(RHS->getOperand(0))->getFunction())
215 return NoRelocation;
216 }
217
Chris Lattner083a1e02009-07-24 03:27:21 +0000218 PossibleRelocationsTy Result = NoRelocation;
Evan Chengafe15812007-03-08 00:59:12 +0000219 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattner0eeb9132009-10-28 05:14:34 +0000220 Result = std::max(Result,
221 cast<Constant>(getOperand(i))->getRelocationInfo());
Chris Lattner7cf12c72009-07-22 00:05:44 +0000222
223 return Result;
Evan Chengafe15812007-03-08 00:59:12 +0000224}
225
Chris Lattner7cf12c72009-07-22 00:05:44 +0000226
Chris Lattner86381442008-07-10 00:28:11 +0000227/// getVectorElements - This method, which is only valid on constant of vector
228/// type, returns the elements of the vector in the specified smallvector.
Chris Lattner071aade2008-07-14 05:10:41 +0000229/// This handles breaking down a vector undef into undef elements, etc. For
230/// constant exprs and other cases we can't handle, we return an empty vector.
Chris Lattnerb29d5962010-02-01 20:48:08 +0000231void Constant::getVectorElements(SmallVectorImpl<Constant*> &Elts) const {
Chris Lattner86381442008-07-10 00:28:11 +0000232 assert(isa<VectorType>(getType()) && "Not a vector constant!");
233
234 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this)) {
235 for (unsigned i = 0, e = CV->getNumOperands(); i != e; ++i)
236 Elts.push_back(CV->getOperand(i));
237 return;
238 }
239
240 const VectorType *VT = cast<VectorType>(getType());
241 if (isa<ConstantAggregateZero>(this)) {
242 Elts.assign(VT->getNumElements(),
Owen Andersona7235ea2009-07-31 20:28:14 +0000243 Constant::getNullValue(VT->getElementType()));
Chris Lattner86381442008-07-10 00:28:11 +0000244 return;
245 }
246
Chris Lattner071aade2008-07-14 05:10:41 +0000247 if (isa<UndefValue>(this)) {
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000248 Elts.assign(VT->getNumElements(), UndefValue::get(VT->getElementType()));
Chris Lattner071aade2008-07-14 05:10:41 +0000249 return;
250 }
251
252 // Unknown type, must be constant expr etc.
Chris Lattner86381442008-07-10 00:28:11 +0000253}
254
255
256
Chris Lattner00950542001-06-06 20:29:01 +0000257//===----------------------------------------------------------------------===//
Chris Lattner6b6f6ba2007-02-20 06:39:57 +0000258// ConstantInt
Chris Lattner00950542001-06-06 20:29:01 +0000259//===----------------------------------------------------------------------===//
260
Reid Spencer532d0ce2007-02-26 23:54:03 +0000261ConstantInt::ConstantInt(const IntegerType *Ty, const APInt& V)
Chris Lattnereb41bdd2007-02-20 05:55:46 +0000262 : Constant(Ty, ConstantIntVal, 0, 0), Val(V) {
Reid Spencer532d0ce2007-02-26 23:54:03 +0000263 assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
Chris Lattner00950542001-06-06 20:29:01 +0000264}
265
Owen Anderson5defacc2009-07-31 17:39:07 +0000266ConstantInt* ConstantInt::getTrue(LLVMContext &Context) {
267 LLVMContextImpl *pImpl = Context.pImpl;
Owen Anderson5defacc2009-07-31 17:39:07 +0000268 if (pImpl->TheTrueVal)
269 return pImpl->TheTrueVal;
270 else
Owen Anderson1d0be152009-08-13 21:58:54 +0000271 return (pImpl->TheTrueVal =
272 ConstantInt::get(IntegerType::get(Context, 1), 1));
Owen Anderson5defacc2009-07-31 17:39:07 +0000273}
274
275ConstantInt* ConstantInt::getFalse(LLVMContext &Context) {
276 LLVMContextImpl *pImpl = Context.pImpl;
Owen Anderson5defacc2009-07-31 17:39:07 +0000277 if (pImpl->TheFalseVal)
278 return pImpl->TheFalseVal;
279 else
Owen Anderson1d0be152009-08-13 21:58:54 +0000280 return (pImpl->TheFalseVal =
281 ConstantInt::get(IntegerType::get(Context, 1), 0));
Owen Anderson5defacc2009-07-31 17:39:07 +0000282}
283
284
Owen Andersoneed707b2009-07-24 23:12:02 +0000285// Get a ConstantInt from an APInt. Note that the value stored in the DenseMap
286// as the key, is a DenseMapAPIntKeyInfo::KeyTy which has provided the
287// operator== and operator!= to ensure that the DenseMap doesn't attempt to
288// compare APInt's of different widths, which would violate an APInt class
289// invariant which generates an assertion.
290ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt& V) {
291 // Get the corresponding integer type for the bit width of the value.
Owen Anderson1d0be152009-08-13 21:58:54 +0000292 const IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
Owen Andersoneed707b2009-07-24 23:12:02 +0000293 // get an existing value or the insertion position
294 DenseMapAPIntKeyInfo::KeyTy Key(V, ITy);
Owen Andersoneed707b2009-07-24 23:12:02 +0000295 ConstantInt *&Slot = Context.pImpl->IntConstants[Key];
Owen Anderson59d5aac2009-10-19 20:11:52 +0000296 if (!Slot) Slot = new ConstantInt(ITy, V);
297 return Slot;
Owen Andersoneed707b2009-07-24 23:12:02 +0000298}
299
300Constant* ConstantInt::get(const Type* Ty, uint64_t V, bool isSigned) {
301 Constant *C = get(cast<IntegerType>(Ty->getScalarType()),
302 V, isSigned);
303
304 // For vectors, broadcast the value.
305 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
Owen Andersonaf7ec972009-07-28 21:19:26 +0000306 return ConstantVector::get(
Owen Andersoneed707b2009-07-24 23:12:02 +0000307 std::vector<Constant *>(VTy->getNumElements(), C));
308
309 return C;
310}
311
312ConstantInt* ConstantInt::get(const IntegerType* Ty, uint64_t V,
313 bool isSigned) {
314 return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
315}
316
317ConstantInt* ConstantInt::getSigned(const IntegerType* Ty, int64_t V) {
318 return get(Ty, V, true);
319}
320
321Constant *ConstantInt::getSigned(const Type *Ty, int64_t V) {
322 return get(Ty, V, true);
323}
324
325Constant* ConstantInt::get(const Type* Ty, const APInt& V) {
326 ConstantInt *C = get(Ty->getContext(), V);
327 assert(C->getType() == Ty->getScalarType() &&
328 "ConstantInt type doesn't match the type implied by its value!");
329
330 // For vectors, broadcast the value.
331 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
Owen Andersonaf7ec972009-07-28 21:19:26 +0000332 return ConstantVector::get(
Owen Andersoneed707b2009-07-24 23:12:02 +0000333 std::vector<Constant *>(VTy->getNumElements(), C));
334
335 return C;
336}
337
Daniel Dunbar2928c832009-11-06 10:58:06 +0000338ConstantInt* ConstantInt::get(const IntegerType* Ty, StringRef Str,
Erick Tryzelaar0e81f662009-08-16 23:36:33 +0000339 uint8_t radix) {
340 return get(Ty->getContext(), APInt(Ty->getBitWidth(), Str, radix));
341}
342
Chris Lattner6b6f6ba2007-02-20 06:39:57 +0000343//===----------------------------------------------------------------------===//
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000344// ConstantFP
Chris Lattner6b6f6ba2007-02-20 06:39:57 +0000345//===----------------------------------------------------------------------===//
346
Rafael Espindola87d1f472009-07-15 17:40:42 +0000347static const fltSemantics *TypeToFloatSemantics(const Type *Ty) {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000348 if (Ty->isFloatTy())
Rafael Espindola87d1f472009-07-15 17:40:42 +0000349 return &APFloat::IEEEsingle;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000350 if (Ty->isDoubleTy())
Rafael Espindola87d1f472009-07-15 17:40:42 +0000351 return &APFloat::IEEEdouble;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000352 if (Ty->isX86_FP80Ty())
Rafael Espindola87d1f472009-07-15 17:40:42 +0000353 return &APFloat::x87DoubleExtended;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000354 else if (Ty->isFP128Ty())
Rafael Espindola87d1f472009-07-15 17:40:42 +0000355 return &APFloat::IEEEquad;
356
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000357 assert(Ty->isPPC_FP128Ty() && "Unknown FP format");
Rafael Espindola87d1f472009-07-15 17:40:42 +0000358 return &APFloat::PPCDoubleDouble;
359}
360
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000361/// get() - This returns a constant fp for the specified value in the
362/// specified type. This should only be used for simple constant values like
363/// 2.0/1.0 etc, that are known-valid both as double and as the target format.
364Constant* ConstantFP::get(const Type* Ty, double V) {
365 LLVMContext &Context = Ty->getContext();
366
367 APFloat FV(V);
368 bool ignored;
369 FV.convert(*TypeToFloatSemantics(Ty->getScalarType()),
370 APFloat::rmNearestTiesToEven, &ignored);
371 Constant *C = get(Context, FV);
372
373 // For vectors, broadcast the value.
374 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
Owen Andersonaf7ec972009-07-28 21:19:26 +0000375 return ConstantVector::get(
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000376 std::vector<Constant *>(VTy->getNumElements(), C));
377
378 return C;
379}
380
Erick Tryzelaar0e81f662009-08-16 23:36:33 +0000381
Daniel Dunbar2928c832009-11-06 10:58:06 +0000382Constant* ConstantFP::get(const Type* Ty, StringRef Str) {
Erick Tryzelaar0e81f662009-08-16 23:36:33 +0000383 LLVMContext &Context = Ty->getContext();
384
385 APFloat FV(*TypeToFloatSemantics(Ty->getScalarType()), Str);
386 Constant *C = get(Context, FV);
387
388 // For vectors, broadcast the value.
389 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
390 return ConstantVector::get(
391 std::vector<Constant *>(VTy->getNumElements(), C));
392
393 return C;
394}
395
396
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000397ConstantFP* ConstantFP::getNegativeZero(const Type* Ty) {
398 LLVMContext &Context = Ty->getContext();
Owen Andersona7235ea2009-07-31 20:28:14 +0000399 APFloat apf = cast <ConstantFP>(Constant::getNullValue(Ty))->getValueAPF();
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000400 apf.changeSign();
401 return get(Context, apf);
402}
403
404
405Constant* ConstantFP::getZeroValueForNegation(const Type* Ty) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000406 if (const VectorType *PTy = dyn_cast<VectorType>(Ty))
407 if (PTy->getElementType()->isFloatingPoint()) {
408 std::vector<Constant*> zeros(PTy->getNumElements(),
409 getNegativeZero(PTy->getElementType()));
Owen Andersonaf7ec972009-07-28 21:19:26 +0000410 return ConstantVector::get(PTy, zeros);
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000411 }
412
413 if (Ty->isFloatingPoint())
414 return getNegativeZero(Ty);
415
Owen Andersona7235ea2009-07-31 20:28:14 +0000416 return Constant::getNullValue(Ty);
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000417}
418
419
420// ConstantFP accessors.
421ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) {
422 DenseMapAPFloatKeyInfo::KeyTy Key(V);
423
424 LLVMContextImpl* pImpl = Context.pImpl;
425
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000426 ConstantFP *&Slot = pImpl->FPConstants[Key];
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000427
428 if (!Slot) {
Owen Anderson59d5aac2009-10-19 20:11:52 +0000429 const Type *Ty;
430 if (&V.getSemantics() == &APFloat::IEEEsingle)
431 Ty = Type::getFloatTy(Context);
432 else if (&V.getSemantics() == &APFloat::IEEEdouble)
433 Ty = Type::getDoubleTy(Context);
434 else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
435 Ty = Type::getX86_FP80Ty(Context);
436 else if (&V.getSemantics() == &APFloat::IEEEquad)
437 Ty = Type::getFP128Ty(Context);
438 else {
439 assert(&V.getSemantics() == &APFloat::PPCDoubleDouble &&
440 "Unknown FP format");
441 Ty = Type::getPPC_FP128Ty(Context);
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000442 }
Owen Anderson59d5aac2009-10-19 20:11:52 +0000443 Slot = new ConstantFP(Ty, V);
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000444 }
445
446 return Slot;
447}
448
Dan Gohmana23643d2009-09-25 23:40:21 +0000449ConstantFP *ConstantFP::getInfinity(const Type *Ty, bool Negative) {
Dan Gohmanf344f7f2009-09-25 23:00:48 +0000450 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty);
451 return ConstantFP::get(Ty->getContext(),
452 APFloat::getInf(Semantics, Negative));
453}
454
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000455ConstantFP::ConstantFP(const Type *Ty, const APFloat& V)
456 : Constant(Ty, ConstantFPVal, 0, 0), Val(V) {
Chris Lattner288e78f2008-04-09 06:38:30 +0000457 assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
458 "FP type Mismatch");
Chris Lattner00950542001-06-06 20:29:01 +0000459}
460
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000461bool ConstantFP::isNullValue() const {
Dale Johannesen343e7702007-08-24 00:56:33 +0000462 return Val.isZero() && !Val.isNegative();
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000463}
464
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000465bool ConstantFP::isExactlyValue(const APFloat& V) const {
466 return Val.bitwiseIsEqual(V);
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000467}
468
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000469//===----------------------------------------------------------------------===//
470// ConstantXXX Classes
471//===----------------------------------------------------------------------===//
472
473
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000474ConstantArray::ConstantArray(const ArrayType *T,
Chris Lattnere4671472005-01-29 00:34:39 +0000475 const std::vector<Constant*> &V)
Gabor Greifefe65362008-05-10 08:32:32 +0000476 : Constant(T, ConstantArrayVal,
477 OperandTraits<ConstantArray>::op_end(this) - V.size(),
478 V.size()) {
Alkis Evlogimenose0de1d62004-09-15 02:32:15 +0000479 assert(V.size() == T->getNumElements() &&
480 "Invalid initializer vector for constant array");
Chris Lattnere4671472005-01-29 00:34:39 +0000481 Use *OL = OperandList;
Chris Lattnerdfdd6c52005-10-03 21:56:24 +0000482 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
483 I != E; ++I, ++OL) {
Chris Lattner71abaab2005-10-07 05:23:36 +0000484 Constant *C = *I;
Nick Lewyckyb13105f2009-10-03 19:30:43 +0000485 assert(C->getType() == T->getElementType() &&
Alkis Evlogimenoscad90ad2004-09-10 04:16:59 +0000486 "Initializer for array element doesn't match array element type!");
Gabor Greif6c80c382008-05-26 21:33:52 +0000487 *OL = C;
Chris Lattner00950542001-06-06 20:29:01 +0000488 }
489}
490
Owen Anderson1fd70962009-07-28 18:32:17 +0000491Constant *ConstantArray::get(const ArrayType *Ty,
492 const std::vector<Constant*> &V) {
Jeffrey Yasskin1fb613c2009-09-30 21:08:08 +0000493 for (unsigned i = 0, e = V.size(); i != e; ++i) {
494 assert(V[i]->getType() == Ty->getElementType() &&
495 "Wrong type in array element initializer");
496 }
Owen Anderson1fd70962009-07-28 18:32:17 +0000497 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
498 // If this is an all-zero array, return a ConstantAggregateZero object
499 if (!V.empty()) {
500 Constant *C = V[0];
Chris Lattner83738a22009-12-30 20:25:09 +0000501 if (!C->isNullValue())
Owen Anderson1fd70962009-07-28 18:32:17 +0000502 return pImpl->ArrayConstants.getOrCreate(Ty, V);
Chris Lattner83738a22009-12-30 20:25:09 +0000503
Owen Anderson1fd70962009-07-28 18:32:17 +0000504 for (unsigned i = 1, e = V.size(); i != e; ++i)
Chris Lattner83738a22009-12-30 20:25:09 +0000505 if (V[i] != C)
Owen Anderson1fd70962009-07-28 18:32:17 +0000506 return pImpl->ArrayConstants.getOrCreate(Ty, V);
Owen Anderson1fd70962009-07-28 18:32:17 +0000507 }
508
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000509 return ConstantAggregateZero::get(Ty);
Owen Anderson1fd70962009-07-28 18:32:17 +0000510}
511
512
513Constant* ConstantArray::get(const ArrayType* T, Constant* const* Vals,
514 unsigned NumVals) {
515 // FIXME: make this the primary ctor method.
516 return get(T, std::vector<Constant*>(Vals, Vals+NumVals));
517}
518
519/// ConstantArray::get(const string&) - Return an array that is initialized to
520/// contain the specified string. If length is zero then a null terminator is
521/// added to the specified string so that it may be used in a natural way.
522/// Otherwise, the length parameter specifies how much of the string to use
523/// and it won't be null terminated.
524///
Daniel Dunbar2928c832009-11-06 10:58:06 +0000525Constant* ConstantArray::get(LLVMContext &Context, StringRef Str,
Owen Anderson1d0be152009-08-13 21:58:54 +0000526 bool AddNull) {
Owen Anderson1fd70962009-07-28 18:32:17 +0000527 std::vector<Constant*> ElementVals;
528 for (unsigned i = 0; i < Str.size(); ++i)
Owen Anderson1d0be152009-08-13 21:58:54 +0000529 ElementVals.push_back(ConstantInt::get(Type::getInt8Ty(Context), Str[i]));
Owen Anderson1fd70962009-07-28 18:32:17 +0000530
531 // Add a null terminator to the string...
532 if (AddNull) {
Owen Anderson1d0be152009-08-13 21:58:54 +0000533 ElementVals.push_back(ConstantInt::get(Type::getInt8Ty(Context), 0));
Owen Anderson1fd70962009-07-28 18:32:17 +0000534 }
535
Owen Anderson1d0be152009-08-13 21:58:54 +0000536 ArrayType *ATy = ArrayType::get(Type::getInt8Ty(Context), ElementVals.size());
Owen Anderson1fd70962009-07-28 18:32:17 +0000537 return get(ATy, ElementVals);
538}
539
540
Chris Lattnere4671472005-01-29 00:34:39 +0000541
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000542ConstantStruct::ConstantStruct(const StructType *T,
Chris Lattnere4671472005-01-29 00:34:39 +0000543 const std::vector<Constant*> &V)
Gabor Greifefe65362008-05-10 08:32:32 +0000544 : Constant(T, ConstantStructVal,
545 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
546 V.size()) {
Chris Lattnerd21cd802004-02-09 04:37:31 +0000547 assert(V.size() == T->getNumElements() &&
Vikram S. Adve345e0cf2002-07-14 23:13:17 +0000548 "Invalid initializer vector for constant structure");
Chris Lattnere4671472005-01-29 00:34:39 +0000549 Use *OL = OperandList;
Chris Lattnerdfdd6c52005-10-03 21:56:24 +0000550 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
551 I != E; ++I, ++OL) {
Chris Lattner71abaab2005-10-07 05:23:36 +0000552 Constant *C = *I;
Nick Lewyckyb13105f2009-10-03 19:30:43 +0000553 assert(C->getType() == T->getElementType(I-V.begin()) &&
Chris Lattnerb8438892003-06-02 17:42:47 +0000554 "Initializer for struct element doesn't match struct element type!");
Gabor Greif6c80c382008-05-26 21:33:52 +0000555 *OL = C;
Chris Lattner00950542001-06-06 20:29:01 +0000556 }
557}
558
Owen Anderson8fa33382009-07-27 22:29:26 +0000559// ConstantStruct accessors.
560Constant* ConstantStruct::get(const StructType* T,
561 const std::vector<Constant*>& V) {
562 LLVMContextImpl* pImpl = T->getContext().pImpl;
563
564 // Create a ConstantAggregateZero value if all elements are zeros...
565 for (unsigned i = 0, e = V.size(); i != e; ++i)
566 if (!V[i]->isNullValue())
Owen Anderson8fa33382009-07-27 22:29:26 +0000567 return pImpl->StructConstants.getOrCreate(T, V);
568
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000569 return ConstantAggregateZero::get(T);
Owen Anderson8fa33382009-07-27 22:29:26 +0000570}
571
Owen Andersond7f2a6c2009-08-05 23:16:16 +0000572Constant* ConstantStruct::get(LLVMContext &Context,
573 const std::vector<Constant*>& V, bool packed) {
Owen Anderson8fa33382009-07-27 22:29:26 +0000574 std::vector<const Type*> StructEls;
575 StructEls.reserve(V.size());
576 for (unsigned i = 0, e = V.size(); i != e; ++i)
577 StructEls.push_back(V[i]->getType());
Owen Andersond7f2a6c2009-08-05 23:16:16 +0000578 return get(StructType::get(Context, StructEls, packed), V);
Owen Anderson8fa33382009-07-27 22:29:26 +0000579}
580
Owen Andersond7f2a6c2009-08-05 23:16:16 +0000581Constant* ConstantStruct::get(LLVMContext &Context,
582 Constant* const *Vals, unsigned NumVals,
Owen Anderson8fa33382009-07-27 22:29:26 +0000583 bool Packed) {
584 // FIXME: make this the primary ctor method.
Owen Andersond7f2a6c2009-08-05 23:16:16 +0000585 return get(Context, std::vector<Constant*>(Vals, Vals+NumVals), Packed);
Owen Anderson8fa33382009-07-27 22:29:26 +0000586}
Chris Lattnere4671472005-01-29 00:34:39 +0000587
Reid Spencer9d6565a2007-02-15 02:26:10 +0000588ConstantVector::ConstantVector(const VectorType *T,
Chris Lattnere4671472005-01-29 00:34:39 +0000589 const std::vector<Constant*> &V)
Gabor Greifefe65362008-05-10 08:32:32 +0000590 : Constant(T, ConstantVectorVal,
591 OperandTraits<ConstantVector>::op_end(this) - V.size(),
592 V.size()) {
Chris Lattnere4671472005-01-29 00:34:39 +0000593 Use *OL = OperandList;
Chris Lattnerdfdd6c52005-10-03 21:56:24 +0000594 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
595 I != E; ++I, ++OL) {
Chris Lattner71abaab2005-10-07 05:23:36 +0000596 Constant *C = *I;
Nick Lewyckyb13105f2009-10-03 19:30:43 +0000597 assert(C->getType() == T->getElementType() &&
Dan Gohmanfa73ea22007-05-24 14:36:04 +0000598 "Initializer for vector element doesn't match vector element type!");
Gabor Greif6c80c382008-05-26 21:33:52 +0000599 *OL = C;
Brian Gaeke715c90b2004-08-20 06:00:58 +0000600 }
601}
602
Owen Andersonaf7ec972009-07-28 21:19:26 +0000603// ConstantVector accessors.
604Constant* ConstantVector::get(const VectorType* T,
605 const std::vector<Constant*>& V) {
606 assert(!V.empty() && "Vectors can't be empty");
607 LLVMContext &Context = T->getContext();
608 LLVMContextImpl *pImpl = Context.pImpl;
609
610 // If this is an all-undef or alll-zero vector, return a
611 // ConstantAggregateZero or UndefValue.
612 Constant *C = V[0];
613 bool isZero = C->isNullValue();
614 bool isUndef = isa<UndefValue>(C);
615
616 if (isZero || isUndef) {
617 for (unsigned i = 1, e = V.size(); i != e; ++i)
618 if (V[i] != C) {
619 isZero = isUndef = false;
620 break;
621 }
622 }
623
624 if (isZero)
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000625 return ConstantAggregateZero::get(T);
Owen Andersonaf7ec972009-07-28 21:19:26 +0000626 if (isUndef)
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000627 return UndefValue::get(T);
Owen Andersonaf7ec972009-07-28 21:19:26 +0000628
Owen Andersonaf7ec972009-07-28 21:19:26 +0000629 return pImpl->VectorConstants.getOrCreate(T, V);
630}
631
632Constant* ConstantVector::get(const std::vector<Constant*>& V) {
633 assert(!V.empty() && "Cannot infer type if V is empty");
634 return get(VectorType::get(V.front()->getType(),V.size()), V);
635}
636
637Constant* ConstantVector::get(Constant* const* Vals, unsigned NumVals) {
638 // FIXME: make this the primary ctor method.
639 return get(std::vector<Constant*>(Vals, Vals+NumVals));
640}
641
Dan Gohmanbdc46c62009-12-18 02:58:50 +0000642Constant* ConstantExpr::getNSWNeg(Constant* C) {
643 assert(C->getType()->isIntOrIntVector() &&
644 "Cannot NEG a nonintegral value!");
645 return getNSWSub(ConstantFP::getZeroValueForNegation(C->getType()), C);
646}
647
Dan Gohman6e7ad952009-09-03 23:34:49 +0000648Constant* ConstantExpr::getNSWAdd(Constant* C1, Constant* C2) {
Dan Gohmanf8dbee72009-09-07 23:54:19 +0000649 return getTy(C1->getType(), Instruction::Add, C1, C2,
650 OverflowingBinaryOperator::NoSignedWrap);
Dan Gohman6e7ad952009-09-03 23:34:49 +0000651}
652
Duncan Sands3548ea82009-09-26 15:35:35 +0000653Constant* ConstantExpr::getNSWSub(Constant* C1, Constant* C2) {
654 return getTy(C1->getType(), Instruction::Sub, C1, C2,
655 OverflowingBinaryOperator::NoSignedWrap);
656}
657
Dan Gohmand75ff312010-02-01 16:38:14 +0000658Constant* ConstantExpr::getNUWMul(Constant* C1, Constant* C2) {
659 return getTy(C1->getType(), Instruction::Mul, C1, C2,
660 OverflowingBinaryOperator::NoUnsignedWrap);
661}
662
Dan Gohman41198482009-12-18 03:10:26 +0000663Constant* ConstantExpr::getNSWMul(Constant* C1, Constant* C2) {
664 return getTy(C1->getType(), Instruction::Mul, C1, C2,
665 OverflowingBinaryOperator::NoSignedWrap);
666}
667
Dan Gohman6e7ad952009-09-03 23:34:49 +0000668Constant* ConstantExpr::getExactSDiv(Constant* C1, Constant* C2) {
Dan Gohmanf8dbee72009-09-07 23:54:19 +0000669 return getTy(C1->getType(), Instruction::SDiv, C1, C2,
670 SDivOperator::IsExact);
Dan Gohman6e7ad952009-09-03 23:34:49 +0000671}
672
Reid Spencer3da59db2006-11-27 01:05:10 +0000673// Utility function for determining if a ConstantExpr is a CastOp or not. This
674// can't be inline because we don't want to #include Instruction.h into
675// Constant.h
676bool ConstantExpr::isCast() const {
677 return Instruction::isCast(getOpcode());
678}
679
Reid Spencer077d0eb2006-12-04 05:19:50 +0000680bool ConstantExpr::isCompare() const {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +0000681 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
Reid Spencer077d0eb2006-12-04 05:19:50 +0000682}
683
Dan Gohmane6992f72009-09-10 23:37:55 +0000684bool ConstantExpr::isGEPWithNoNotionalOverIndexing() const {
685 if (getOpcode() != Instruction::GetElementPtr) return false;
686
687 gep_type_iterator GEPI = gep_type_begin(this), E = gep_type_end(this);
688 User::const_op_iterator OI = next(this->op_begin());
689
690 // Skip the first index, as it has no static limit.
691 ++GEPI;
692 ++OI;
693
694 // The remaining indices must be compile-time known integers within the
695 // bounds of the corresponding notional static array types.
696 for (; GEPI != E; ++GEPI, ++OI) {
697 ConstantInt *CI = dyn_cast<ConstantInt>(*OI);
698 if (!CI) return false;
699 if (const ArrayType *ATy = dyn_cast<ArrayType>(*GEPI))
700 if (CI->getValue().getActiveBits() > 64 ||
701 CI->getZExtValue() >= ATy->getNumElements())
702 return false;
703 }
704
705 // All the indices checked out.
706 return true;
707}
708
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000709bool ConstantExpr::hasIndices() const {
710 return getOpcode() == Instruction::ExtractValue ||
711 getOpcode() == Instruction::InsertValue;
712}
713
714const SmallVector<unsigned, 4> &ConstantExpr::getIndices() const {
715 if (const ExtractValueConstantExpr *EVCE =
716 dyn_cast<ExtractValueConstantExpr>(this))
717 return EVCE->Indices;
Dan Gohman1a203572008-06-23 16:39:44 +0000718
719 return cast<InsertValueConstantExpr>(this)->Indices;
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000720}
721
Reid Spencer728b6db2006-12-03 05:48:19 +0000722unsigned ConstantExpr::getPredicate() const {
Nate Begemanac80ade2008-05-12 19:01:56 +0000723 assert(getOpcode() == Instruction::FCmp ||
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +0000724 getOpcode() == Instruction::ICmp);
Chris Lattnerb7daa842007-10-18 16:26:24 +0000725 return ((const CompareConstantExpr*)this)->predicate;
Reid Spencer728b6db2006-12-03 05:48:19 +0000726}
Chris Lattnerf4ba6c72001-10-03 06:12:09 +0000727
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000728/// getWithOperandReplaced - Return a constant expression identical to this
729/// one, but with the specified operand set to the specified value.
Reid Spencer3da59db2006-11-27 01:05:10 +0000730Constant *
731ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000732 assert(OpNo < getNumOperands() && "Operand num is out of range!");
733 assert(Op->getType() == getOperand(OpNo)->getType() &&
734 "Replacing operand with value of different type!");
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000735 if (getOperand(OpNo) == Op)
736 return const_cast<ConstantExpr*>(this);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000737
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000738 Constant *Op0, *Op1, *Op2;
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000739 switch (getOpcode()) {
Reid Spencer3da59db2006-11-27 01:05:10 +0000740 case Instruction::Trunc:
741 case Instruction::ZExt:
742 case Instruction::SExt:
743 case Instruction::FPTrunc:
744 case Instruction::FPExt:
745 case Instruction::UIToFP:
746 case Instruction::SIToFP:
747 case Instruction::FPToUI:
748 case Instruction::FPToSI:
749 case Instruction::PtrToInt:
750 case Instruction::IntToPtr:
751 case Instruction::BitCast:
752 return ConstantExpr::getCast(getOpcode(), Op, getType());
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000753 case Instruction::Select:
754 Op0 = (OpNo == 0) ? Op : getOperand(0);
755 Op1 = (OpNo == 1) ? Op : getOperand(1);
756 Op2 = (OpNo == 2) ? Op : getOperand(2);
757 return ConstantExpr::getSelect(Op0, Op1, Op2);
758 case Instruction::InsertElement:
759 Op0 = (OpNo == 0) ? Op : getOperand(0);
760 Op1 = (OpNo == 1) ? Op : getOperand(1);
761 Op2 = (OpNo == 2) ? Op : getOperand(2);
762 return ConstantExpr::getInsertElement(Op0, Op1, Op2);
763 case Instruction::ExtractElement:
764 Op0 = (OpNo == 0) ? Op : getOperand(0);
765 Op1 = (OpNo == 1) ? Op : getOperand(1);
766 return ConstantExpr::getExtractElement(Op0, Op1);
767 case Instruction::ShuffleVector:
768 Op0 = (OpNo == 0) ? Op : getOperand(0);
769 Op1 = (OpNo == 1) ? Op : getOperand(1);
770 Op2 = (OpNo == 2) ? Op : getOperand(2);
771 return ConstantExpr::getShuffleVector(Op0, Op1, Op2);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000772 case Instruction::GetElementPtr: {
Chris Lattnerf9021ff2007-02-19 20:01:23 +0000773 SmallVector<Constant*, 8> Ops;
Dan Gohman041e2eb2008-05-15 19:50:34 +0000774 Ops.resize(getNumOperands()-1);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000775 for (unsigned i = 1, e = getNumOperands(); i != e; ++i)
Dan Gohman041e2eb2008-05-15 19:50:34 +0000776 Ops[i-1] = getOperand(i);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000777 if (OpNo == 0)
Dan Gohmanf8dbee72009-09-07 23:54:19 +0000778 return cast<GEPOperator>(this)->isInBounds() ?
779 ConstantExpr::getInBoundsGetElementPtr(Op, &Ops[0], Ops.size()) :
780 ConstantExpr::getGetElementPtr(Op, &Ops[0], Ops.size());
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000781 Ops[OpNo-1] = Op;
Dan Gohmanf8dbee72009-09-07 23:54:19 +0000782 return cast<GEPOperator>(this)->isInBounds() ?
Chris Lattnercafe9bb2009-12-29 02:14:09 +0000783 ConstantExpr::getInBoundsGetElementPtr(getOperand(0), &Ops[0],Ops.size()):
Dan Gohmanf8dbee72009-09-07 23:54:19 +0000784 ConstantExpr::getGetElementPtr(getOperand(0), &Ops[0], Ops.size());
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000785 }
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000786 default:
787 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000788 Op0 = (OpNo == 0) ? Op : getOperand(0);
789 Op1 = (OpNo == 1) ? Op : getOperand(1);
Chris Lattnercafe9bb2009-12-29 02:14:09 +0000790 return ConstantExpr::get(getOpcode(), Op0, Op1, SubclassOptionalData);
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000791 }
792}
793
794/// getWithOperands - This returns the current constant expression with the
795/// operands replaced with the specified values. The specified operands must
796/// match count and type with the existing ones.
797Constant *ConstantExpr::
Chris Lattnerb054bfd2008-08-20 22:27:40 +0000798getWithOperands(Constant* const *Ops, unsigned NumOps) const {
799 assert(NumOps == getNumOperands() && "Operand count mismatch!");
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000800 bool AnyChange = false;
Chris Lattnerb054bfd2008-08-20 22:27:40 +0000801 for (unsigned i = 0; i != NumOps; ++i) {
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000802 assert(Ops[i]->getType() == getOperand(i)->getType() &&
803 "Operand type mismatch!");
804 AnyChange |= Ops[i] != getOperand(i);
805 }
806 if (!AnyChange) // No operands changed, return self.
807 return const_cast<ConstantExpr*>(this);
808
809 switch (getOpcode()) {
Reid Spencer3da59db2006-11-27 01:05:10 +0000810 case Instruction::Trunc:
811 case Instruction::ZExt:
812 case Instruction::SExt:
813 case Instruction::FPTrunc:
814 case Instruction::FPExt:
815 case Instruction::UIToFP:
816 case Instruction::SIToFP:
817 case Instruction::FPToUI:
818 case Instruction::FPToSI:
819 case Instruction::PtrToInt:
820 case Instruction::IntToPtr:
821 case Instruction::BitCast:
822 return ConstantExpr::getCast(getOpcode(), Ops[0], getType());
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000823 case Instruction::Select:
824 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]);
825 case Instruction::InsertElement:
826 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]);
827 case Instruction::ExtractElement:
828 return ConstantExpr::getExtractElement(Ops[0], Ops[1]);
829 case Instruction::ShuffleVector:
830 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2]);
Chris Lattnerf9021ff2007-02-19 20:01:23 +0000831 case Instruction::GetElementPtr:
Dan Gohmanf8dbee72009-09-07 23:54:19 +0000832 return cast<GEPOperator>(this)->isInBounds() ?
833 ConstantExpr::getInBoundsGetElementPtr(Ops[0], &Ops[1], NumOps-1) :
834 ConstantExpr::getGetElementPtr(Ops[0], &Ops[1], NumOps-1);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000835 case Instruction::ICmp:
836 case Instruction::FCmp:
837 return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1]);
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000838 default:
839 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattnercafe9bb2009-12-29 02:14:09 +0000840 return ConstantExpr::get(getOpcode(), Ops[0], Ops[1], SubclassOptionalData);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000841 }
842}
843
Chris Lattner00950542001-06-06 20:29:01 +0000844
845//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +0000846// isValueValidForType implementations
847
Reid Spencer9b11d512006-12-19 01:28:19 +0000848bool ConstantInt::isValueValidForType(const Type *Ty, uint64_t Val) {
Reid Spencera54b7cb2007-01-12 07:05:14 +0000849 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
Owen Anderson1d0be152009-08-13 21:58:54 +0000850 if (Ty == Type::getInt1Ty(Ty->getContext()))
Reid Spencera54b7cb2007-01-12 07:05:14 +0000851 return Val == 0 || Val == 1;
Reid Spencer554cec62007-02-05 23:47:56 +0000852 if (NumBits >= 64)
Reid Spencera54b7cb2007-01-12 07:05:14 +0000853 return true; // always true, has to fit in largest type
854 uint64_t Max = (1ll << NumBits) - 1;
855 return Val <= Max;
Reid Spencer9b11d512006-12-19 01:28:19 +0000856}
857
Reid Spencerb83eb642006-10-20 07:07:24 +0000858bool ConstantInt::isValueValidForType(const Type *Ty, int64_t Val) {
Reid Spencera54b7cb2007-01-12 07:05:14 +0000859 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
Owen Anderson1d0be152009-08-13 21:58:54 +0000860 if (Ty == Type::getInt1Ty(Ty->getContext()))
Reid Spencerc1030572007-01-19 21:13:56 +0000861 return Val == 0 || Val == 1 || Val == -1;
Reid Spencer554cec62007-02-05 23:47:56 +0000862 if (NumBits >= 64)
Reid Spencera54b7cb2007-01-12 07:05:14 +0000863 return true; // always true, has to fit in largest type
864 int64_t Min = -(1ll << (NumBits-1));
865 int64_t Max = (1ll << (NumBits-1)) - 1;
866 return (Val >= Min && Val <= Max);
Chris Lattner00950542001-06-06 20:29:01 +0000867}
868
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000869bool ConstantFP::isValueValidForType(const Type *Ty, const APFloat& Val) {
870 // convert modifies in place, so make a copy.
871 APFloat Val2 = APFloat(Val);
Dale Johannesen23a98552008-10-09 23:00:39 +0000872 bool losesInfo;
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000873 switch (Ty->getTypeID()) {
Chris Lattner00950542001-06-06 20:29:01 +0000874 default:
875 return false; // These can't be represented as floating point!
876
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000877 // FIXME rounding mode needs to be more flexible
Dale Johannesen23a98552008-10-09 23:00:39 +0000878 case Type::FloatTyID: {
879 if (&Val2.getSemantics() == &APFloat::IEEEsingle)
880 return true;
881 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
882 return !losesInfo;
883 }
884 case Type::DoubleTyID: {
885 if (&Val2.getSemantics() == &APFloat::IEEEsingle ||
886 &Val2.getSemantics() == &APFloat::IEEEdouble)
887 return true;
888 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
889 return !losesInfo;
890 }
Dale Johannesenebbc95d2007-08-09 22:51:36 +0000891 case Type::X86_FP80TyID:
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000892 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
893 &Val2.getSemantics() == &APFloat::IEEEdouble ||
894 &Val2.getSemantics() == &APFloat::x87DoubleExtended;
Dale Johannesenebbc95d2007-08-09 22:51:36 +0000895 case Type::FP128TyID:
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000896 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
897 &Val2.getSemantics() == &APFloat::IEEEdouble ||
898 &Val2.getSemantics() == &APFloat::IEEEquad;
Dale Johannesena471c2e2007-10-11 18:07:22 +0000899 case Type::PPC_FP128TyID:
900 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
901 &Val2.getSemantics() == &APFloat::IEEEdouble ||
902 &Val2.getSemantics() == &APFloat::PPCDoubleDouble;
Chris Lattner00950542001-06-06 20:29:01 +0000903 }
Chris Lattnerd74ea2b2006-05-24 17:04:05 +0000904}
Chris Lattner37bf6302001-07-20 19:16:02 +0000905
Chris Lattner531daef2001-09-07 16:46:31 +0000906//===----------------------------------------------------------------------===//
Chris Lattner531daef2001-09-07 16:46:31 +0000907// Factory Function Implementation
908
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000909ConstantAggregateZero* ConstantAggregateZero::get(const Type* Ty) {
910 assert((isa<StructType>(Ty) || isa<ArrayType>(Ty) || isa<VectorType>(Ty)) &&
911 "Cannot create an aggregate zero of non-aggregate type!");
912
913 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000914 return pImpl->AggZeroConstants.getOrCreate(Ty, 0);
915}
916
Dan Gohman0f8b53f2009-03-03 02:55:14 +0000917/// destroyConstant - Remove the constant from the constant table...
918///
Owen Anderson04fb7c32009-06-20 00:24:58 +0000919void ConstantAggregateZero::destroyConstant() {
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000920 getType()->getContext().pImpl->AggZeroConstants.remove(this);
Chris Lattner40bbeb52004-02-15 05:53:04 +0000921 destroyConstantImpl();
922}
923
Dan Gohman0f8b53f2009-03-03 02:55:14 +0000924/// destroyConstant - Remove the constant from the constant table...
925///
Owen Anderson04fb7c32009-06-20 00:24:58 +0000926void ConstantArray::destroyConstant() {
Owen Anderson1fd70962009-07-28 18:32:17 +0000927 getType()->getContext().pImpl->ArrayConstants.remove(this);
Chris Lattner02ec5ed2003-05-23 20:03:32 +0000928 destroyConstantImpl();
929}
930
Reid Spencer3d10b0b2007-01-26 07:37:34 +0000931/// isString - This method returns true if the array is an array of i8, and
932/// if the elements of the array are all ConstantInt's.
Chris Lattner13cfdea2004-01-14 17:06:38 +0000933bool ConstantArray::isString() const {
Reid Spencer3d10b0b2007-01-26 07:37:34 +0000934 // Check the element type for i8...
Benjamin Kramer8c65f6e2010-01-05 21:05:54 +0000935 if (!getType()->getElementType()->isInteger(8))
Chris Lattner13cfdea2004-01-14 17:06:38 +0000936 return false;
937 // Check the elements to make sure they are all integers, not constant
938 // expressions.
939 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
940 if (!isa<ConstantInt>(getOperand(i)))
941 return false;
942 return true;
943}
944
Evan Cheng22c70302006-10-26 19:15:05 +0000945/// isCString - This method returns true if the array is a string (see
Dan Gohman0f8b53f2009-03-03 02:55:14 +0000946/// isString) and it ends in a null byte \\0 and does not contains any other
Evan Cheng22c70302006-10-26 19:15:05 +0000947/// null bytes except its terminator.
Owen Anderson1ca29d32009-07-13 21:27:19 +0000948bool ConstantArray::isCString() const {
Reid Spencer3d10b0b2007-01-26 07:37:34 +0000949 // Check the element type for i8...
Benjamin Kramer8c65f6e2010-01-05 21:05:54 +0000950 if (!getType()->getElementType()->isInteger(8))
Evan Chengabf63452006-10-26 21:48:03 +0000951 return false;
Owen Anderson1ca29d32009-07-13 21:27:19 +0000952
Evan Chengabf63452006-10-26 21:48:03 +0000953 // Last element must be a null.
Owen Anderson1ca29d32009-07-13 21:27:19 +0000954 if (!getOperand(getNumOperands()-1)->isNullValue())
Evan Chengabf63452006-10-26 21:48:03 +0000955 return false;
956 // Other elements must be non-null integers.
957 for (unsigned i = 0, e = getNumOperands()-1; i != e; ++i) {
958 if (!isa<ConstantInt>(getOperand(i)))
Evan Cheng22c70302006-10-26 19:15:05 +0000959 return false;
Owen Anderson1ca29d32009-07-13 21:27:19 +0000960 if (getOperand(i)->isNullValue())
Evan Chengabf63452006-10-26 21:48:03 +0000961 return false;
962 }
Evan Cheng22c70302006-10-26 19:15:05 +0000963 return true;
964}
965
966
Dan Gohman0f8b53f2009-03-03 02:55:14 +0000967/// getAsString - If the sub-element type of this array is i8
968/// then this method converts the array to an std::string and returns it.
969/// Otherwise, it asserts out.
970///
Chris Lattner93aeea32002-08-26 17:53:56 +0000971std::string ConstantArray::getAsString() const {
Chris Lattner13cfdea2004-01-14 17:06:38 +0000972 assert(isString() && "Not a string!");
Chris Lattner93aeea32002-08-26 17:53:56 +0000973 std::string Result;
Owen Anderson45e39582008-06-24 21:58:29 +0000974 Result.reserve(getNumOperands());
Chris Lattnerc07736a2003-07-23 15:22:26 +0000975 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Owen Andersone4f6ee52008-06-25 01:05:05 +0000976 Result.push_back((char)cast<ConstantInt>(getOperand(i))->getZExtValue());
Chris Lattner93aeea32002-08-26 17:53:56 +0000977 return Result;
978}
979
980
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000981//---- ConstantStruct::get() implementation...
Chris Lattner531daef2001-09-07 16:46:31 +0000982//
Chris Lattnered468e372003-10-05 00:17:43 +0000983
Chris Lattner31f84992003-11-21 20:23:48 +0000984namespace llvm {
Misha Brukmanfd939082005-04-21 23:48:37 +0000985
Chris Lattner531daef2001-09-07 16:46:31 +0000986}
Chris Lattner6a57baa2001-10-03 15:39:36 +0000987
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000988// destroyConstant - Remove the constant from the constant table...
Chris Lattner6a57baa2001-10-03 15:39:36 +0000989//
Owen Anderson04fb7c32009-06-20 00:24:58 +0000990void ConstantStruct::destroyConstant() {
Owen Anderson8fa33382009-07-27 22:29:26 +0000991 getType()->getContext().pImpl->StructConstants.remove(this);
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000992 destroyConstantImpl();
993}
Chris Lattner6a57baa2001-10-03 15:39:36 +0000994
Brian Gaeke715c90b2004-08-20 06:00:58 +0000995// destroyConstant - Remove the constant from the constant table...
996//
Owen Anderson04fb7c32009-06-20 00:24:58 +0000997void ConstantVector::destroyConstant() {
Owen Andersonaf7ec972009-07-28 21:19:26 +0000998 getType()->getContext().pImpl->VectorConstants.remove(this);
Brian Gaeke715c90b2004-08-20 06:00:58 +0000999 destroyConstantImpl();
1000}
1001
Dan Gohmanfa73ea22007-05-24 14:36:04 +00001002/// This function will return true iff every element in this vector constant
Jim Laskeyfa301822007-01-12 22:39:14 +00001003/// is set to all ones.
1004/// @returns true iff this constant's emements are all set to all ones.
1005/// @brief Determine if the value is all ones.
Reid Spencer9d6565a2007-02-15 02:26:10 +00001006bool ConstantVector::isAllOnesValue() const {
Jim Laskeyfa301822007-01-12 22:39:14 +00001007 // Check out first element.
1008 const Constant *Elt = getOperand(0);
1009 const ConstantInt *CI = dyn_cast<ConstantInt>(Elt);
1010 if (!CI || !CI->isAllOnesValue()) return false;
1011 // Then make sure all remaining elements point to the same value.
1012 for (unsigned I = 1, E = getNumOperands(); I < E; ++I) {
1013 if (getOperand(I) != Elt) return false;
1014 }
1015 return true;
1016}
1017
Dan Gohman3b7cf0a2007-10-17 17:51:30 +00001018/// getSplatValue - If this is a splat constant, where all of the
1019/// elements have the same value, return that value. Otherwise return null.
1020Constant *ConstantVector::getSplatValue() {
1021 // Check out first element.
1022 Constant *Elt = getOperand(0);
1023 // Then make sure all remaining elements point to the same value.
1024 for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
1025 if (getOperand(I) != Elt) return 0;
1026 return Elt;
1027}
1028
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001029//---- ConstantPointerNull::get() implementation.
Chris Lattnerf5ec48d2001-10-13 06:57:33 +00001030//
Chris Lattner02ec5ed2003-05-23 20:03:32 +00001031
Owen Anderson04fb7c32009-06-20 00:24:58 +00001032ConstantPointerNull *ConstantPointerNull::get(const PointerType *Ty) {
Owen Anderson7e3142b2009-07-31 22:45:43 +00001033 return Ty->getContext().pImpl->NullPtrConstants.getOrCreate(Ty, 0);
Chris Lattner6a57baa2001-10-03 15:39:36 +00001034}
1035
Chris Lattner41661fd2002-08-18 00:40:04 +00001036// destroyConstant - Remove the constant from the constant table...
1037//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001038void ConstantPointerNull::destroyConstant() {
Owen Anderson7e3142b2009-07-31 22:45:43 +00001039 getType()->getContext().pImpl->NullPtrConstants.remove(this);
Chris Lattner41661fd2002-08-18 00:40:04 +00001040 destroyConstantImpl();
1041}
1042
1043
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001044//---- UndefValue::get() implementation.
Chris Lattnerb9f18592004-10-16 18:07:16 +00001045//
1046
Owen Anderson04fb7c32009-06-20 00:24:58 +00001047UndefValue *UndefValue::get(const Type *Ty) {
Owen Anderson7e3142b2009-07-31 22:45:43 +00001048 return Ty->getContext().pImpl->UndefValueConstants.getOrCreate(Ty, 0);
Chris Lattnerb9f18592004-10-16 18:07:16 +00001049}
1050
1051// destroyConstant - Remove the constant from the constant table.
1052//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001053void UndefValue::destroyConstant() {
Owen Anderson7e3142b2009-07-31 22:45:43 +00001054 getType()->getContext().pImpl->UndefValueConstants.remove(this);
Chris Lattnerb9f18592004-10-16 18:07:16 +00001055 destroyConstantImpl();
1056}
1057
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001058//---- BlockAddress::get() implementation.
1059//
1060
1061BlockAddress *BlockAddress::get(BasicBlock *BB) {
1062 assert(BB->getParent() != 0 && "Block must have a parent");
1063 return get(BB->getParent(), BB);
1064}
1065
1066BlockAddress *BlockAddress::get(Function *F, BasicBlock *BB) {
1067 BlockAddress *&BA =
1068 F->getContext().pImpl->BlockAddresses[std::make_pair(F, BB)];
1069 if (BA == 0)
1070 BA = new BlockAddress(F, BB);
1071
1072 assert(BA->getFunction() == F && "Basic block moved between functions");
1073 return BA;
1074}
1075
1076BlockAddress::BlockAddress(Function *F, BasicBlock *BB)
1077: Constant(Type::getInt8PtrTy(F->getContext()), Value::BlockAddressVal,
1078 &Op<0>(), 2) {
Chris Lattnerd0ec2352009-11-01 03:03:03 +00001079 setOperand(0, F);
1080 setOperand(1, BB);
Chris Lattnercdfc9402009-11-01 01:27:45 +00001081 BB->AdjustBlockAddressRefCount(1);
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001082}
1083
1084
1085// destroyConstant - Remove the constant from the constant table.
1086//
1087void BlockAddress::destroyConstant() {
1088 getFunction()->getType()->getContext().pImpl
1089 ->BlockAddresses.erase(std::make_pair(getFunction(), getBasicBlock()));
Chris Lattnercdfc9402009-11-01 01:27:45 +00001090 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001091 destroyConstantImpl();
1092}
1093
1094void BlockAddress::replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U) {
1095 // This could be replacing either the Basic Block or the Function. In either
1096 // case, we have to remove the map entry.
1097 Function *NewF = getFunction();
1098 BasicBlock *NewBB = getBasicBlock();
1099
1100 if (U == &Op<0>())
1101 NewF = cast<Function>(To);
1102 else
1103 NewBB = cast<BasicBlock>(To);
1104
1105 // See if the 'new' entry already exists, if not, just update this in place
1106 // and return early.
1107 BlockAddress *&NewBA =
1108 getContext().pImpl->BlockAddresses[std::make_pair(NewF, NewBB)];
1109 if (NewBA == 0) {
Chris Lattnerd0ec2352009-11-01 03:03:03 +00001110 getBasicBlock()->AdjustBlockAddressRefCount(-1);
1111
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001112 // Remove the old entry, this can't cause the map to rehash (just a
1113 // tombstone will get added).
1114 getContext().pImpl->BlockAddresses.erase(std::make_pair(getFunction(),
1115 getBasicBlock()));
1116 NewBA = this;
Chris Lattnerd0ec2352009-11-01 03:03:03 +00001117 setOperand(0, NewF);
1118 setOperand(1, NewBB);
1119 getBasicBlock()->AdjustBlockAddressRefCount(1);
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001120 return;
1121 }
1122
1123 // Otherwise, I do need to replace this with an existing value.
1124 assert(NewBA != this && "I didn't contain From!");
1125
1126 // Everyone using this now uses the replacement.
1127 uncheckedReplaceAllUsesWith(NewBA);
1128
1129 destroyConstant();
1130}
1131
1132//---- ConstantExpr::get() implementations.
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001133//
Reid Spencer79e21d32006-12-31 05:26:44 +00001134
Reid Spencer3da59db2006-11-27 01:05:10 +00001135/// This is a utility function to handle folding of casts and lookup of the
Duncan Sands66a1a052008-03-30 19:38:55 +00001136/// cast in the ExprConstants map. It is used by the various get* methods below.
Reid Spencer3da59db2006-11-27 01:05:10 +00001137static inline Constant *getFoldedCast(
Owen Anderson04fb7c32009-06-20 00:24:58 +00001138 Instruction::CastOps opc, Constant *C, const Type *Ty) {
Chris Lattner9eacf8a2003-10-07 22:19:19 +00001139 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
Reid Spencer3da59db2006-11-27 01:05:10 +00001140 // Fold a few common cases
Chris Lattnerb29d5962010-02-01 20:48:08 +00001141 if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
Reid Spencer3da59db2006-11-27 01:05:10 +00001142 return FC;
Chris Lattnerd628f6a2003-04-17 19:24:48 +00001143
Owen Andersond03eecd2009-08-04 20:25:11 +00001144 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
1145
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00001146 // Look up the constant in the table first to ensure uniqueness
Chris Lattner9bc02a42003-05-13 21:37:02 +00001147 std::vector<Constant*> argVec(1, C);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001148 ExprMapKeyType Key(opc, argVec);
Owen Anderson3e456ab2009-06-17 18:40:29 +00001149
Owen Andersond03eecd2009-08-04 20:25:11 +00001150 return pImpl->ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001151}
Reid Spencer7858b332006-12-05 19:14:13 +00001152
Owen Anderson04fb7c32009-06-20 00:24:58 +00001153Constant *ConstantExpr::getCast(unsigned oc, Constant *C, const Type *Ty) {
Reid Spencer3da59db2006-11-27 01:05:10 +00001154 Instruction::CastOps opc = Instruction::CastOps(oc);
1155 assert(Instruction::isCast(opc) && "opcode out of range");
1156 assert(C && Ty && "Null arguments to getCast");
Chris Lattner0b68a002010-01-26 21:51:43 +00001157 assert(CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!");
Reid Spencer3da59db2006-11-27 01:05:10 +00001158
1159 switch (opc) {
Chris Lattner0b68a002010-01-26 21:51:43 +00001160 default:
1161 llvm_unreachable("Invalid cast opcode");
1162 break;
1163 case Instruction::Trunc: return getTrunc(C, Ty);
1164 case Instruction::ZExt: return getZExt(C, Ty);
1165 case Instruction::SExt: return getSExt(C, Ty);
1166 case Instruction::FPTrunc: return getFPTrunc(C, Ty);
1167 case Instruction::FPExt: return getFPExtend(C, Ty);
1168 case Instruction::UIToFP: return getUIToFP(C, Ty);
1169 case Instruction::SIToFP: return getSIToFP(C, Ty);
1170 case Instruction::FPToUI: return getFPToUI(C, Ty);
1171 case Instruction::FPToSI: return getFPToSI(C, Ty);
1172 case Instruction::PtrToInt: return getPtrToInt(C, Ty);
1173 case Instruction::IntToPtr: return getIntToPtr(C, Ty);
1174 case Instruction::BitCast: return getBitCast(C, Ty);
Chris Lattnerf5ac6c22005-01-01 15:59:57 +00001175 }
Reid Spencer3da59db2006-11-27 01:05:10 +00001176 return 0;
Reid Spencer7858b332006-12-05 19:14:13 +00001177}
1178
Reid Spencer848414e2006-12-04 20:17:56 +00001179Constant *ConstantExpr::getZExtOrBitCast(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001180 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Reid Spencer848414e2006-12-04 20:17:56 +00001181 return getCast(Instruction::BitCast, C, Ty);
1182 return getCast(Instruction::ZExt, C, Ty);
1183}
1184
Owen Anderson04fb7c32009-06-20 00:24:58 +00001185Constant *ConstantExpr::getSExtOrBitCast(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001186 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Owen Anderson04fb7c32009-06-20 00:24:58 +00001187 return getCast(Instruction::BitCast, C, Ty);
1188 return getCast(Instruction::SExt, C, Ty);
Reid Spencer848414e2006-12-04 20:17:56 +00001189}
1190
1191Constant *ConstantExpr::getTruncOrBitCast(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001192 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Reid Spencer848414e2006-12-04 20:17:56 +00001193 return getCast(Instruction::BitCast, C, Ty);
1194 return getCast(Instruction::Trunc, C, Ty);
1195}
1196
Owen Anderson04fb7c32009-06-20 00:24:58 +00001197Constant *ConstantExpr::getPointerCast(Constant *S, const Type *Ty) {
Reid Spencerc0459fb2006-12-05 03:25:26 +00001198 assert(isa<PointerType>(S->getType()) && "Invalid cast");
Chris Lattner42a75512007-01-15 02:27:26 +00001199 assert((Ty->isInteger() || isa<PointerType>(Ty)) && "Invalid cast");
Reid Spencerc0459fb2006-12-05 03:25:26 +00001200
Chris Lattner42a75512007-01-15 02:27:26 +00001201 if (Ty->isInteger())
Owen Anderson04fb7c32009-06-20 00:24:58 +00001202 return getCast(Instruction::PtrToInt, S, Ty);
1203 return getCast(Instruction::BitCast, S, Ty);
Reid Spencerc0459fb2006-12-05 03:25:26 +00001204}
1205
Reid Spencer84f3eab2006-12-12 00:51:07 +00001206Constant *ConstantExpr::getIntegerCast(Constant *C, const Type *Ty,
1207 bool isSigned) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001208 assert(C->getType()->isIntOrIntVector() &&
1209 Ty->isIntOrIntVector() && "Invalid cast");
1210 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1211 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer84f3eab2006-12-12 00:51:07 +00001212 Instruction::CastOps opcode =
1213 (SrcBits == DstBits ? Instruction::BitCast :
1214 (SrcBits > DstBits ? Instruction::Trunc :
1215 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1216 return getCast(opcode, C, Ty);
1217}
1218
1219Constant *ConstantExpr::getFPCast(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001220 assert(C->getType()->isFPOrFPVector() && Ty->isFPOrFPVector() &&
Reid Spencer84f3eab2006-12-12 00:51:07 +00001221 "Invalid cast");
Dan Gohman6de29f82009-06-15 22:12:54 +00001222 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1223 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencerf25212a2006-12-12 05:38:50 +00001224 if (SrcBits == DstBits)
1225 return C; // Avoid a useless cast
Reid Spencer84f3eab2006-12-12 00:51:07 +00001226 Instruction::CastOps opcode =
Reid Spencerf25212a2006-12-12 05:38:50 +00001227 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
Reid Spencer84f3eab2006-12-12 00:51:07 +00001228 return getCast(opcode, C, Ty);
1229}
1230
Owen Anderson04fb7c32009-06-20 00:24:58 +00001231Constant *ConstantExpr::getTrunc(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001232#ifndef NDEBUG
1233 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1234 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1235#endif
1236 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1237 assert(C->getType()->isIntOrIntVector() && "Trunc operand must be integer");
1238 assert(Ty->isIntOrIntVector() && "Trunc produces only integral");
1239 assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001240 "SrcTy must be larger than DestTy for Trunc!");
1241
Owen Anderson04fb7c32009-06-20 00:24:58 +00001242 return getFoldedCast(Instruction::Trunc, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001243}
1244
Owen Anderson04fb7c32009-06-20 00:24:58 +00001245Constant *ConstantExpr::getSExt(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001246#ifndef NDEBUG
1247 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1248 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1249#endif
1250 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1251 assert(C->getType()->isIntOrIntVector() && "SExt operand must be integral");
1252 assert(Ty->isIntOrIntVector() && "SExt produces only integer");
1253 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001254 "SrcTy must be smaller than DestTy for SExt!");
1255
Owen Anderson04fb7c32009-06-20 00:24:58 +00001256 return getFoldedCast(Instruction::SExt, C, Ty);
Chris Lattnerd144f422004-04-04 23:20:30 +00001257}
1258
Owen Anderson04fb7c32009-06-20 00:24:58 +00001259Constant *ConstantExpr::getZExt(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001260#ifndef NDEBUG
1261 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1262 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1263#endif
1264 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1265 assert(C->getType()->isIntOrIntVector() && "ZEXt operand must be integral");
1266 assert(Ty->isIntOrIntVector() && "ZExt produces only integer");
1267 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001268 "SrcTy must be smaller than DestTy for ZExt!");
1269
Owen Anderson04fb7c32009-06-20 00:24:58 +00001270 return getFoldedCast(Instruction::ZExt, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001271}
1272
Owen Anderson04fb7c32009-06-20 00:24:58 +00001273Constant *ConstantExpr::getFPTrunc(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001274#ifndef NDEBUG
1275 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1276 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1277#endif
1278 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1279 assert(C->getType()->isFPOrFPVector() && Ty->isFPOrFPVector() &&
1280 C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001281 "This is an illegal floating point truncation!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001282 return getFoldedCast(Instruction::FPTrunc, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001283}
1284
Owen Anderson04fb7c32009-06-20 00:24:58 +00001285Constant *ConstantExpr::getFPExtend(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001286#ifndef NDEBUG
1287 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1288 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1289#endif
1290 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1291 assert(C->getType()->isFPOrFPVector() && Ty->isFPOrFPVector() &&
1292 C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001293 "This is an illegal floating point extension!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001294 return getFoldedCast(Instruction::FPExt, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001295}
1296
Owen Anderson04fb7c32009-06-20 00:24:58 +00001297Constant *ConstantExpr::getUIToFP(Constant *C, const Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001298#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001299 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1300 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001301#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001302 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1303 assert(C->getType()->isIntOrIntVector() && Ty->isFPOrFPVector() &&
1304 "This is an illegal uint to floating point cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001305 return getFoldedCast(Instruction::UIToFP, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001306}
1307
Owen Anderson04fb7c32009-06-20 00:24:58 +00001308Constant *ConstantExpr::getSIToFP(Constant *C, const Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001309#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001310 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1311 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001312#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001313 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1314 assert(C->getType()->isIntOrIntVector() && Ty->isFPOrFPVector() &&
Reid Spencer3da59db2006-11-27 01:05:10 +00001315 "This is an illegal sint to floating point cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001316 return getFoldedCast(Instruction::SIToFP, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001317}
1318
Owen Anderson04fb7c32009-06-20 00:24:58 +00001319Constant *ConstantExpr::getFPToUI(Constant *C, const Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001320#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001321 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1322 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001323#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001324 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1325 assert(C->getType()->isFPOrFPVector() && Ty->isIntOrIntVector() &&
1326 "This is an illegal floating point to uint cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001327 return getFoldedCast(Instruction::FPToUI, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001328}
1329
Owen Anderson04fb7c32009-06-20 00:24:58 +00001330Constant *ConstantExpr::getFPToSI(Constant *C, const Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001331#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001332 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1333 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001334#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001335 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1336 assert(C->getType()->isFPOrFPVector() && Ty->isIntOrIntVector() &&
1337 "This is an illegal floating point to sint cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001338 return getFoldedCast(Instruction::FPToSI, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001339}
1340
Owen Anderson04fb7c32009-06-20 00:24:58 +00001341Constant *ConstantExpr::getPtrToInt(Constant *C, const Type *DstTy) {
Reid Spencer3da59db2006-11-27 01:05:10 +00001342 assert(isa<PointerType>(C->getType()) && "PtrToInt source must be pointer");
Chris Lattner42a75512007-01-15 02:27:26 +00001343 assert(DstTy->isInteger() && "PtrToInt destination must be integral");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001344 return getFoldedCast(Instruction::PtrToInt, C, DstTy);
Reid Spencer3da59db2006-11-27 01:05:10 +00001345}
1346
Owen Anderson04fb7c32009-06-20 00:24:58 +00001347Constant *ConstantExpr::getIntToPtr(Constant *C, const Type *DstTy) {
Chris Lattner42a75512007-01-15 02:27:26 +00001348 assert(C->getType()->isInteger() && "IntToPtr source must be integral");
Reid Spencer3da59db2006-11-27 01:05:10 +00001349 assert(isa<PointerType>(DstTy) && "IntToPtr destination must be a pointer");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001350 return getFoldedCast(Instruction::IntToPtr, C, DstTy);
Reid Spencer3da59db2006-11-27 01:05:10 +00001351}
1352
Owen Anderson04fb7c32009-06-20 00:24:58 +00001353Constant *ConstantExpr::getBitCast(Constant *C, const Type *DstTy) {
Chris Lattner0b68a002010-01-26 21:51:43 +00001354 assert(CastInst::castIsValid(Instruction::BitCast, C, DstTy) &&
1355 "Invalid constantexpr bitcast!");
Chris Lattner8c7f24a2009-03-21 06:55:54 +00001356
1357 // It is common to ask for a bitcast of a value to its own type, handle this
1358 // speedily.
1359 if (C->getType() == DstTy) return C;
1360
Owen Anderson04fb7c32009-06-20 00:24:58 +00001361 return getFoldedCast(Instruction::BitCast, C, DstTy);
Chris Lattnerd144f422004-04-04 23:20:30 +00001362}
1363
Chris Lattnered468e372003-10-05 00:17:43 +00001364Constant *ConstantExpr::getTy(const Type *ReqTy, unsigned Opcode,
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001365 Constant *C1, Constant *C2,
1366 unsigned Flags) {
Chris Lattnerf31f5832003-05-21 17:49:25 +00001367 // Check the operands for consistency first
Reid Spencer0a783f72006-11-02 01:53:59 +00001368 assert(Opcode >= Instruction::BinaryOpsBegin &&
1369 Opcode < Instruction::BinaryOpsEnd &&
Chris Lattnerf31f5832003-05-21 17:49:25 +00001370 "Invalid opcode in binary constant expression");
1371 assert(C1->getType() == C2->getType() &&
1372 "Operand types in binary constant expression should match");
Chris Lattnered468e372003-10-05 00:17:43 +00001373
Owen Anderson1d0be152009-08-13 21:58:54 +00001374 if (ReqTy == C1->getType() || ReqTy == Type::getInt1Ty(ReqTy->getContext()))
Chris Lattnerb29d5962010-02-01 20:48:08 +00001375 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
Chris Lattnered468e372003-10-05 00:17:43 +00001376 return FC; // Fold a few common cases...
Chris Lattnerd628f6a2003-04-17 19:24:48 +00001377
Chris Lattner9bc02a42003-05-13 21:37:02 +00001378 std::vector<Constant*> argVec(1, C1); argVec.push_back(C2);
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001379 ExprMapKeyType Key(Opcode, argVec, 0, Flags);
Owen Anderson31c36f02009-06-17 20:10:08 +00001380
Owen Andersond03eecd2009-08-04 20:25:11 +00001381 LLVMContextImpl *pImpl = ReqTy->getContext().pImpl;
Owen Andersond03eecd2009-08-04 20:25:11 +00001382 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001383}
1384
Reid Spencere4d87aa2006-12-23 06:05:41 +00001385Constant *ConstantExpr::getCompareTy(unsigned short predicate,
Nate Begemanff795a82008-07-25 17:56:27 +00001386 Constant *C1, Constant *C2) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00001387 switch (predicate) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001388 default: llvm_unreachable("Invalid CmpInst predicate");
Nate Begemanb5557ab2008-07-25 17:35:37 +00001389 case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
1390 case CmpInst::FCMP_OGE: case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE:
1391 case CmpInst::FCMP_ONE: case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO:
1392 case CmpInst::FCMP_UEQ: case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE:
1393 case CmpInst::FCMP_ULT: case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
1394 case CmpInst::FCMP_TRUE:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00001395 return getFCmp(predicate, C1, C2);
1396
Nate Begemanb5557ab2008-07-25 17:35:37 +00001397 case CmpInst::ICMP_EQ: case CmpInst::ICMP_NE: case CmpInst::ICMP_UGT:
1398 case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE:
1399 case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT:
1400 case CmpInst::ICMP_SLE:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00001401 return getICmp(predicate, C1, C2);
Reid Spencere4d87aa2006-12-23 06:05:41 +00001402 }
Reid Spencer67263fe2006-12-04 21:35:24 +00001403}
1404
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001405Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2,
1406 unsigned Flags) {
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001407 // API compatibility: Adjust integer opcodes to floating-point opcodes.
1408 if (C1->getType()->isFPOrFPVector()) {
1409 if (Opcode == Instruction::Add) Opcode = Instruction::FAdd;
1410 else if (Opcode == Instruction::Sub) Opcode = Instruction::FSub;
1411 else if (Opcode == Instruction::Mul) Opcode = Instruction::FMul;
1412 }
Chris Lattner91b362b2004-08-17 17:28:46 +00001413#ifndef NDEBUG
1414 switch (Opcode) {
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001415 case Instruction::Add:
Reid Spencer0a783f72006-11-02 01:53:59 +00001416 case Instruction::Sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001417 case Instruction::Mul:
Chris Lattner91b362b2004-08-17 17:28:46 +00001418 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001419 assert(C1->getType()->isIntOrIntVector() &&
1420 "Tried to create an integer operation on a non-integer type!");
1421 break;
1422 case Instruction::FAdd:
1423 case Instruction::FSub:
1424 case Instruction::FMul:
1425 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1426 assert(C1->getType()->isFPOrFPVector() &&
1427 "Tried to create a floating-point operation on a "
1428 "non-floating-point type!");
Chris Lattner91b362b2004-08-17 17:28:46 +00001429 break;
Reid Spencer1628cec2006-10-26 06:15:43 +00001430 case Instruction::UDiv:
1431 case Instruction::SDiv:
1432 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Dan Gohmanf57478f2009-06-15 22:25:12 +00001433 assert(C1->getType()->isIntOrIntVector() &&
Reid Spencer1628cec2006-10-26 06:15:43 +00001434 "Tried to create an arithmetic operation on a non-arithmetic type!");
1435 break;
1436 case Instruction::FDiv:
1437 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Dan Gohmanf57478f2009-06-15 22:25:12 +00001438 assert(C1->getType()->isFPOrFPVector() &&
1439 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer1628cec2006-10-26 06:15:43 +00001440 break;
Reid Spencer0a783f72006-11-02 01:53:59 +00001441 case Instruction::URem:
1442 case Instruction::SRem:
1443 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Dan Gohmanf57478f2009-06-15 22:25:12 +00001444 assert(C1->getType()->isIntOrIntVector() &&
Reid Spencer0a783f72006-11-02 01:53:59 +00001445 "Tried to create an arithmetic operation on a non-arithmetic type!");
1446 break;
1447 case Instruction::FRem:
1448 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Dan Gohmanf57478f2009-06-15 22:25:12 +00001449 assert(C1->getType()->isFPOrFPVector() &&
1450 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer0a783f72006-11-02 01:53:59 +00001451 break;
Chris Lattner91b362b2004-08-17 17:28:46 +00001452 case Instruction::And:
1453 case Instruction::Or:
1454 case Instruction::Xor:
1455 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Dan Gohmanf57478f2009-06-15 22:25:12 +00001456 assert(C1->getType()->isIntOrIntVector() &&
Misha Brukman1bae2912005-01-27 06:46:38 +00001457 "Tried to create a logical operation on a non-integral type!");
Chris Lattner91b362b2004-08-17 17:28:46 +00001458 break;
Chris Lattner91b362b2004-08-17 17:28:46 +00001459 case Instruction::Shl:
Reid Spencer3822ff52006-11-08 06:47:33 +00001460 case Instruction::LShr:
1461 case Instruction::AShr:
Reid Spencer832254e2007-02-02 02:16:23 +00001462 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Dan Gohmanc1317932009-03-14 17:09:17 +00001463 assert(C1->getType()->isIntOrIntVector() &&
Chris Lattner91b362b2004-08-17 17:28:46 +00001464 "Tried to create a shift operation on a non-integer type!");
1465 break;
1466 default:
1467 break;
1468 }
1469#endif
1470
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001471 return getTy(C1->getType(), Opcode, C1, C2, Flags);
Reid Spencer67263fe2006-12-04 21:35:24 +00001472}
1473
Owen Andersonbaf3c402009-07-29 18:55:55 +00001474Constant* ConstantExpr::getSizeOf(const Type* Ty) {
1475 // sizeof is implemented as: (i64) gep (Ty*)null, 1
1476 // Note that a non-inbounds gep is used, as null isn't within any object.
Owen Anderson1d0be152009-08-13 21:58:54 +00001477 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001478 Constant *GEP = getGetElementPtr(
Owen Andersona7235ea2009-07-31 20:28:14 +00001479 Constant::getNullValue(PointerType::getUnqual(Ty)), &GEPIdx, 1);
Owen Anderson1d0be152009-08-13 21:58:54 +00001480 return getCast(Instruction::PtrToInt, GEP,
1481 Type::getInt64Ty(Ty->getContext()));
Owen Andersonbaf3c402009-07-29 18:55:55 +00001482}
1483
1484Constant* ConstantExpr::getAlignOf(const Type* Ty) {
Dan Gohman0f5efe52010-01-28 02:15:55 +00001485 // alignof is implemented as: (i64) gep ({i1,Ty}*)null, 0, 1
Dan Gohmane2574d32009-08-11 17:57:01 +00001486 // Note that a non-inbounds gep is used, as null isn't within any object.
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001487 const Type *AligningTy = StructType::get(Ty->getContext(),
Dan Gohman0f5efe52010-01-28 02:15:55 +00001488 Type::getInt1Ty(Ty->getContext()), Ty, NULL);
Owen Andersona7235ea2009-07-31 20:28:14 +00001489 Constant *NullPtr = Constant::getNullValue(AligningTy->getPointerTo());
Dan Gohman06ed3e72010-01-28 02:43:22 +00001490 Constant *Zero = ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0);
Owen Anderson1d0be152009-08-13 21:58:54 +00001491 Constant *One = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001492 Constant *Indices[2] = { Zero, One };
1493 Constant *GEP = getGetElementPtr(NullPtr, Indices, 2);
Owen Anderson1d0be152009-08-13 21:58:54 +00001494 return getCast(Instruction::PtrToInt, GEP,
Dan Gohman06ed3e72010-01-28 02:43:22 +00001495 Type::getInt64Ty(Ty->getContext()));
Owen Andersonbaf3c402009-07-29 18:55:55 +00001496}
1497
Dan Gohman3778f212009-08-16 21:26:11 +00001498Constant* ConstantExpr::getOffsetOf(const StructType* STy, unsigned FieldNo) {
Dan Gohman2544a1d2010-02-01 16:37:38 +00001499 return getOffsetOf(STy, ConstantInt::get(Type::getInt32Ty(STy->getContext()),
1500 FieldNo));
1501}
1502
1503Constant* ConstantExpr::getOffsetOf(const Type* Ty, Constant *FieldNo) {
Dan Gohman3778f212009-08-16 21:26:11 +00001504 // offsetof is implemented as: (i64) gep (Ty*)null, 0, FieldNo
1505 // Note that a non-inbounds gep is used, as null isn't within any object.
1506 Constant *GEPIdx[] = {
Dan Gohman2544a1d2010-02-01 16:37:38 +00001507 ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0),
1508 FieldNo
Dan Gohman3778f212009-08-16 21:26:11 +00001509 };
1510 Constant *GEP = getGetElementPtr(
Dan Gohman2544a1d2010-02-01 16:37:38 +00001511 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx, 2);
Dan Gohman3778f212009-08-16 21:26:11 +00001512 return getCast(Instruction::PtrToInt, GEP,
Dan Gohman2544a1d2010-02-01 16:37:38 +00001513 Type::getInt64Ty(Ty->getContext()));
Dan Gohman3778f212009-08-16 21:26:11 +00001514}
Owen Andersonbaf3c402009-07-29 18:55:55 +00001515
Reid Spencere4d87aa2006-12-23 06:05:41 +00001516Constant *ConstantExpr::getCompare(unsigned short pred,
Reid Spencer67263fe2006-12-04 21:35:24 +00001517 Constant *C1, Constant *C2) {
1518 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Reid Spencere4d87aa2006-12-23 06:05:41 +00001519 return getCompareTy(pred, C1, C2);
Chris Lattnerc3d12f02004-08-04 18:50:09 +00001520}
1521
Chris Lattner08a45cc2004-03-12 05:54:04 +00001522Constant *ConstantExpr::getSelectTy(const Type *ReqTy, Constant *C,
Owen Anderson04fb7c32009-06-20 00:24:58 +00001523 Constant *V1, Constant *V2) {
Chris Lattner9ace0cd2008-12-29 00:16:12 +00001524 assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
Chris Lattner08a45cc2004-03-12 05:54:04 +00001525
1526 if (ReqTy == V1->getType())
Chris Lattnerb29d5962010-02-01 20:48:08 +00001527 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
Chris Lattner08a45cc2004-03-12 05:54:04 +00001528 return SC; // Fold common cases
1529
1530 std::vector<Constant*> argVec(3, C);
1531 argVec[1] = V1;
1532 argVec[2] = V2;
Reid Spencer077d0eb2006-12-04 05:19:50 +00001533 ExprMapKeyType Key(Instruction::Select, argVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001534
Owen Andersond03eecd2009-08-04 20:25:11 +00001535 LLVMContextImpl *pImpl = ReqTy->getContext().pImpl;
Owen Andersond03eecd2009-08-04 20:25:11 +00001536 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Chris Lattner08a45cc2004-03-12 05:54:04 +00001537}
1538
Chris Lattnered468e372003-10-05 00:17:43 +00001539Constant *ConstantExpr::getGetElementPtrTy(const Type *ReqTy, Constant *C,
Chris Lattner2b9a5da2007-01-31 04:40:28 +00001540 Value* const *Idxs,
Owen Anderson04fb7c32009-06-20 00:24:58 +00001541 unsigned NumIdx) {
Dan Gohman041e2eb2008-05-15 19:50:34 +00001542 assert(GetElementPtrInst::getIndexedType(C->getType(), Idxs,
1543 Idxs+NumIdx) ==
1544 cast<PointerType>(ReqTy)->getElementType() &&
1545 "GEP indices invalid!");
Chris Lattner2e9bb1a2004-02-16 20:46:13 +00001546
Chris Lattnerb29d5962010-02-01 20:48:08 +00001547 if (Constant *FC = ConstantFoldGetElementPtr(C, /*inBounds=*/false,
1548 (Constant**)Idxs, NumIdx))
Chris Lattnerd628f6a2003-04-17 19:24:48 +00001549 return FC; // Fold a few common cases...
Chris Lattner2e9bb1a2004-02-16 20:46:13 +00001550
Chris Lattnered468e372003-10-05 00:17:43 +00001551 assert(isa<PointerType>(C->getType()) &&
Chris Lattner02ec5ed2003-05-23 20:03:32 +00001552 "Non-pointer type for constant GetElementPtr expression");
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00001553 // Look up the constant in the table first to ensure uniqueness
Chris Lattner7fa6e662004-10-11 22:52:25 +00001554 std::vector<Constant*> ArgVec;
Chris Lattner2b9a5da2007-01-31 04:40:28 +00001555 ArgVec.reserve(NumIdx+1);
Chris Lattner7fa6e662004-10-11 22:52:25 +00001556 ArgVec.push_back(C);
Chris Lattner2b9a5da2007-01-31 04:40:28 +00001557 for (unsigned i = 0; i != NumIdx; ++i)
1558 ArgVec.push_back(cast<Constant>(Idxs[i]));
1559 const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001560
Owen Andersond03eecd2009-08-04 20:25:11 +00001561 LLVMContextImpl *pImpl = ReqTy->getContext().pImpl;
Owen Andersond03eecd2009-08-04 20:25:11 +00001562 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00001563}
1564
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001565Constant *ConstantExpr::getInBoundsGetElementPtrTy(const Type *ReqTy,
1566 Constant *C,
Chris Lattner399ac532009-12-08 05:31:46 +00001567 Value *const *Idxs,
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001568 unsigned NumIdx) {
1569 assert(GetElementPtrInst::getIndexedType(C->getType(), Idxs,
1570 Idxs+NumIdx) ==
1571 cast<PointerType>(ReqTy)->getElementType() &&
1572 "GEP indices invalid!");
1573
Chris Lattnerb29d5962010-02-01 20:48:08 +00001574 if (Constant *FC = ConstantFoldGetElementPtr(C, /*inBounds=*/true,
1575 (Constant**)Idxs, NumIdx))
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001576 return FC; // Fold a few common cases...
1577
1578 assert(isa<PointerType>(C->getType()) &&
1579 "Non-pointer type for constant GetElementPtr expression");
1580 // Look up the constant in the table first to ensure uniqueness
1581 std::vector<Constant*> ArgVec;
1582 ArgVec.reserve(NumIdx+1);
1583 ArgVec.push_back(C);
1584 for (unsigned i = 0; i != NumIdx; ++i)
1585 ArgVec.push_back(cast<Constant>(Idxs[i]));
1586 const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec, 0,
1587 GEPOperator::IsInBounds);
1588
1589 LLVMContextImpl *pImpl = ReqTy->getContext().pImpl;
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001590 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
1591}
1592
Chris Lattner2b9a5da2007-01-31 04:40:28 +00001593Constant *ConstantExpr::getGetElementPtr(Constant *C, Value* const *Idxs,
Owen Anderson04fb7c32009-06-20 00:24:58 +00001594 unsigned NumIdx) {
Chris Lattnered468e372003-10-05 00:17:43 +00001595 // Get the result type of the getelementptr!
Chris Lattner2b9a5da2007-01-31 04:40:28 +00001596 const Type *Ty =
Dan Gohman041e2eb2008-05-15 19:50:34 +00001597 GetElementPtrInst::getIndexedType(C->getType(), Idxs, Idxs+NumIdx);
Chris Lattnered468e372003-10-05 00:17:43 +00001598 assert(Ty && "GEP indices invalid!");
Christopher Lambfe63fb92007-12-11 08:59:05 +00001599 unsigned As = cast<PointerType>(C->getType())->getAddressSpace();
Owen Anderson04fb7c32009-06-20 00:24:58 +00001600 return getGetElementPtrTy(PointerType::get(Ty, As), C, Idxs, NumIdx);
Chris Lattner7fa6e662004-10-11 22:52:25 +00001601}
1602
Dan Gohman6e7ad952009-09-03 23:34:49 +00001603Constant *ConstantExpr::getInBoundsGetElementPtr(Constant *C,
1604 Value* const *Idxs,
1605 unsigned NumIdx) {
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001606 // Get the result type of the getelementptr!
1607 const Type *Ty =
1608 GetElementPtrInst::getIndexedType(C->getType(), Idxs, Idxs+NumIdx);
1609 assert(Ty && "GEP indices invalid!");
1610 unsigned As = cast<PointerType>(C->getType())->getAddressSpace();
1611 return getInBoundsGetElementPtrTy(PointerType::get(Ty, As), C, Idxs, NumIdx);
Dan Gohman6e7ad952009-09-03 23:34:49 +00001612}
1613
Chris Lattner2b9a5da2007-01-31 04:40:28 +00001614Constant *ConstantExpr::getGetElementPtr(Constant *C, Constant* const *Idxs,
Owen Anderson04fb7c32009-06-20 00:24:58 +00001615 unsigned NumIdx) {
1616 return getGetElementPtr(C, (Value* const *)Idxs, NumIdx);
Chris Lattnered468e372003-10-05 00:17:43 +00001617}
1618
Dan Gohman6e7ad952009-09-03 23:34:49 +00001619Constant *ConstantExpr::getInBoundsGetElementPtr(Constant *C,
1620 Constant* const *Idxs,
1621 unsigned NumIdx) {
1622 return getInBoundsGetElementPtr(C, (Value* const *)Idxs, NumIdx);
1623}
1624
Reid Spencer077d0eb2006-12-04 05:19:50 +00001625Constant *
Nick Lewycky401f3252010-01-21 07:03:21 +00001626ConstantExpr::getICmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spencer077d0eb2006-12-04 05:19:50 +00001627 assert(LHS->getType() == RHS->getType());
1628 assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE &&
1629 pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid ICmp Predicate");
1630
Chris Lattnerb29d5962010-02-01 20:48:08 +00001631 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spencer077d0eb2006-12-04 05:19:50 +00001632 return FC; // Fold a few common cases...
1633
1634 // Look up the constant in the table first to ensure uniqueness
1635 std::vector<Constant*> ArgVec;
1636 ArgVec.push_back(LHS);
1637 ArgVec.push_back(RHS);
Reid Spencer4fa021a2006-12-24 18:42:29 +00001638 // Get the key type with both the opcode and predicate
Reid Spencer077d0eb2006-12-04 05:19:50 +00001639 const ExprMapKeyType Key(Instruction::ICmp, ArgVec, pred);
Owen Anderson31c36f02009-06-17 20:10:08 +00001640
Nick Lewycky401f3252010-01-21 07:03:21 +00001641 const Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1642 if (const VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
1643 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1644
Owen Andersond03eecd2009-08-04 20:25:11 +00001645 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky401f3252010-01-21 07:03:21 +00001646 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001647}
1648
1649Constant *
Nick Lewycky401f3252010-01-21 07:03:21 +00001650ConstantExpr::getFCmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spencer077d0eb2006-12-04 05:19:50 +00001651 assert(LHS->getType() == RHS->getType());
1652 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate");
1653
Chris Lattnerb29d5962010-02-01 20:48:08 +00001654 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spencer077d0eb2006-12-04 05:19:50 +00001655 return FC; // Fold a few common cases...
1656
1657 // Look up the constant in the table first to ensure uniqueness
1658 std::vector<Constant*> ArgVec;
1659 ArgVec.push_back(LHS);
1660 ArgVec.push_back(RHS);
Reid Spencer4fa021a2006-12-24 18:42:29 +00001661 // Get the key type with both the opcode and predicate
Reid Spencer077d0eb2006-12-04 05:19:50 +00001662 const ExprMapKeyType Key(Instruction::FCmp, ArgVec, pred);
Nick Lewycky401f3252010-01-21 07:03:21 +00001663
1664 const Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1665 if (const VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
1666 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1667
Owen Andersond03eecd2009-08-04 20:25:11 +00001668 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky401f3252010-01-21 07:03:21 +00001669 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001670}
1671
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00001672Constant *ConstantExpr::getExtractElementTy(const Type *ReqTy, Constant *Val,
1673 Constant *Idx) {
Chris Lattnerb29d5962010-02-01 20:48:08 +00001674 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
Chris Lattner83738a22009-12-30 20:25:09 +00001675 return FC; // Fold a few common cases.
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00001676 // Look up the constant in the table first to ensure uniqueness
1677 std::vector<Constant*> ArgVec(1, Val);
1678 ArgVec.push_back(Idx);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001679 const ExprMapKeyType Key(Instruction::ExtractElement,ArgVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001680
Owen Andersond03eecd2009-08-04 20:25:11 +00001681 LLVMContextImpl *pImpl = ReqTy->getContext().pImpl;
Owen Andersond03eecd2009-08-04 20:25:11 +00001682 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00001683}
1684
1685Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00001686 assert(isa<VectorType>(Val->getType()) &&
Reid Spencerac9dcb92007-02-15 03:39:18 +00001687 "Tried to create extractelement operation on non-vector type!");
Benjamin Kramer11acaa32010-01-05 20:07:06 +00001688 assert(Idx->getType()->isInteger(32) &&
Reid Spencer3d10b0b2007-01-26 07:37:34 +00001689 "Extractelement index must be i32 type!");
Reid Spencer9d6565a2007-02-15 02:26:10 +00001690 return getExtractElementTy(cast<VectorType>(Val->getType())->getElementType(),
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00001691 Val, Idx);
1692}
Chris Lattnered468e372003-10-05 00:17:43 +00001693
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001694Constant *ConstantExpr::getInsertElementTy(const Type *ReqTy, Constant *Val,
1695 Constant *Elt, Constant *Idx) {
Chris Lattnerb29d5962010-02-01 20:48:08 +00001696 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
Chris Lattner83738a22009-12-30 20:25:09 +00001697 return FC; // Fold a few common cases.
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001698 // Look up the constant in the table first to ensure uniqueness
1699 std::vector<Constant*> ArgVec(1, Val);
1700 ArgVec.push_back(Elt);
1701 ArgVec.push_back(Idx);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001702 const ExprMapKeyType Key(Instruction::InsertElement,ArgVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001703
Owen Andersond03eecd2009-08-04 20:25:11 +00001704 LLVMContextImpl *pImpl = ReqTy->getContext().pImpl;
Owen Andersond03eecd2009-08-04 20:25:11 +00001705 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001706}
1707
1708Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
1709 Constant *Idx) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00001710 assert(isa<VectorType>(Val->getType()) &&
Reid Spencerac9dcb92007-02-15 03:39:18 +00001711 "Tried to create insertelement operation on non-vector type!");
Reid Spencer9d6565a2007-02-15 02:26:10 +00001712 assert(Elt->getType() == cast<VectorType>(Val->getType())->getElementType()
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001713 && "Insertelement types must match!");
Benjamin Kramer11acaa32010-01-05 20:07:06 +00001714 assert(Idx->getType()->isInteger(32) &&
Reid Spencer3d10b0b2007-01-26 07:37:34 +00001715 "Insertelement index must be i32 type!");
Gordon Henriksen699609c2008-08-30 15:41:51 +00001716 return getInsertElementTy(Val->getType(), Val, Elt, Idx);
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001717}
1718
Chris Lattner00f10232006-04-08 01:18:18 +00001719Constant *ConstantExpr::getShuffleVectorTy(const Type *ReqTy, Constant *V1,
1720 Constant *V2, Constant *Mask) {
Chris Lattnerb29d5962010-02-01 20:48:08 +00001721 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
Chris Lattner00f10232006-04-08 01:18:18 +00001722 return FC; // Fold a few common cases...
1723 // Look up the constant in the table first to ensure uniqueness
1724 std::vector<Constant*> ArgVec(1, V1);
1725 ArgVec.push_back(V2);
1726 ArgVec.push_back(Mask);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001727 const ExprMapKeyType Key(Instruction::ShuffleVector,ArgVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001728
Owen Andersond03eecd2009-08-04 20:25:11 +00001729 LLVMContextImpl *pImpl = ReqTy->getContext().pImpl;
Owen Andersond03eecd2009-08-04 20:25:11 +00001730 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Chris Lattner00f10232006-04-08 01:18:18 +00001731}
1732
1733Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
1734 Constant *Mask) {
1735 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
1736 "Invalid shuffle vector constant expr operands!");
Nate Begeman0f123cf2009-02-12 21:28:33 +00001737
1738 unsigned NElts = cast<VectorType>(Mask->getType())->getNumElements();
1739 const Type *EltTy = cast<VectorType>(V1->getType())->getElementType();
1740 const Type *ShufTy = VectorType::get(EltTy, NElts);
1741 return getShuffleVectorTy(ShufTy, V1, V2, Mask);
Chris Lattner00f10232006-04-08 01:18:18 +00001742}
1743
Dan Gohman041e2eb2008-05-15 19:50:34 +00001744Constant *ConstantExpr::getInsertValueTy(const Type *ReqTy, Constant *Agg,
1745 Constant *Val,
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001746 const unsigned *Idxs, unsigned NumIdx) {
Dan Gohman041e2eb2008-05-15 19:50:34 +00001747 assert(ExtractValueInst::getIndexedType(Agg->getType(), Idxs,
1748 Idxs+NumIdx) == Val->getType() &&
1749 "insertvalue indices invalid!");
1750 assert(Agg->getType() == ReqTy &&
1751 "insertvalue type invalid!");
Dan Gohmane4569942008-05-23 00:36:11 +00001752 assert(Agg->getType()->isFirstClassType() &&
1753 "Non-first-class type for constant InsertValue expression");
Chris Lattnerb29d5962010-02-01 20:48:08 +00001754 Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs, NumIdx);
Dan Gohmane0891602008-07-21 23:30:30 +00001755 assert(FC && "InsertValue constant expr couldn't be folded!");
1756 return FC;
Dan Gohman041e2eb2008-05-15 19:50:34 +00001757}
1758
1759Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001760 const unsigned *IdxList, unsigned NumIdx) {
Dan Gohmane4569942008-05-23 00:36:11 +00001761 assert(Agg->getType()->isFirstClassType() &&
1762 "Tried to create insertelement operation on non-first-class type!");
Dan Gohman041e2eb2008-05-15 19:50:34 +00001763
Dan Gohmane4569942008-05-23 00:36:11 +00001764 const Type *ReqTy = Agg->getType();
Devang Patelb6dc9352008-11-03 23:20:04 +00001765#ifndef NDEBUG
Dan Gohmane4569942008-05-23 00:36:11 +00001766 const Type *ValTy =
Dan Gohman041e2eb2008-05-15 19:50:34 +00001767 ExtractValueInst::getIndexedType(Agg->getType(), IdxList, IdxList+NumIdx);
Devang Patelb6dc9352008-11-03 23:20:04 +00001768#endif
Dan Gohmane4569942008-05-23 00:36:11 +00001769 assert(ValTy == Val->getType() && "insertvalue indices invalid!");
Dan Gohman041e2eb2008-05-15 19:50:34 +00001770 return getInsertValueTy(ReqTy, Agg, Val, IdxList, NumIdx);
1771}
1772
1773Constant *ConstantExpr::getExtractValueTy(const Type *ReqTy, Constant *Agg,
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001774 const unsigned *Idxs, unsigned NumIdx) {
Dan Gohman041e2eb2008-05-15 19:50:34 +00001775 assert(ExtractValueInst::getIndexedType(Agg->getType(), Idxs,
1776 Idxs+NumIdx) == ReqTy &&
1777 "extractvalue indices invalid!");
Dan Gohmane4569942008-05-23 00:36:11 +00001778 assert(Agg->getType()->isFirstClassType() &&
1779 "Non-first-class type for constant extractvalue expression");
Chris Lattnerb29d5962010-02-01 20:48:08 +00001780 Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs, NumIdx);
Dan Gohmane0891602008-07-21 23:30:30 +00001781 assert(FC && "ExtractValue constant expr couldn't be folded!");
1782 return FC;
Dan Gohman041e2eb2008-05-15 19:50:34 +00001783}
1784
1785Constant *ConstantExpr::getExtractValue(Constant *Agg,
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001786 const unsigned *IdxList, unsigned NumIdx) {
Dan Gohmane4569942008-05-23 00:36:11 +00001787 assert(Agg->getType()->isFirstClassType() &&
1788 "Tried to create extractelement operation on non-first-class type!");
Dan Gohman041e2eb2008-05-15 19:50:34 +00001789
1790 const Type *ReqTy =
1791 ExtractValueInst::getIndexedType(Agg->getType(), IdxList, IdxList+NumIdx);
1792 assert(ReqTy && "extractvalue indices invalid!");
1793 return getExtractValueTy(ReqTy, Agg, IdxList, NumIdx);
1794}
1795
Owen Andersonbaf3c402009-07-29 18:55:55 +00001796Constant* ConstantExpr::getNeg(Constant* C) {
1797 // API compatibility: Adjust integer opcodes to floating-point opcodes.
1798 if (C->getType()->isFPOrFPVector())
1799 return getFNeg(C);
1800 assert(C->getType()->isIntOrIntVector() &&
1801 "Cannot NEG a nonintegral value!");
1802 return get(Instruction::Sub,
1803 ConstantFP::getZeroValueForNegation(C->getType()),
1804 C);
1805}
1806
1807Constant* ConstantExpr::getFNeg(Constant* C) {
1808 assert(C->getType()->isFPOrFPVector() &&
1809 "Cannot FNEG a non-floating-point value!");
1810 return get(Instruction::FSub,
1811 ConstantFP::getZeroValueForNegation(C->getType()),
1812 C);
1813}
1814
1815Constant* ConstantExpr::getNot(Constant* C) {
1816 assert(C->getType()->isIntOrIntVector() &&
1817 "Cannot NOT a nonintegral value!");
Owen Andersona7235ea2009-07-31 20:28:14 +00001818 return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType()));
Owen Andersonbaf3c402009-07-29 18:55:55 +00001819}
1820
1821Constant* ConstantExpr::getAdd(Constant* C1, Constant* C2) {
1822 return get(Instruction::Add, C1, C2);
1823}
1824
1825Constant* ConstantExpr::getFAdd(Constant* C1, Constant* C2) {
1826 return get(Instruction::FAdd, C1, C2);
1827}
1828
1829Constant* ConstantExpr::getSub(Constant* C1, Constant* C2) {
1830 return get(Instruction::Sub, C1, C2);
1831}
1832
1833Constant* ConstantExpr::getFSub(Constant* C1, Constant* C2) {
1834 return get(Instruction::FSub, C1, C2);
1835}
1836
1837Constant* ConstantExpr::getMul(Constant* C1, Constant* C2) {
1838 return get(Instruction::Mul, C1, C2);
1839}
1840
1841Constant* ConstantExpr::getFMul(Constant* C1, Constant* C2) {
1842 return get(Instruction::FMul, C1, C2);
1843}
1844
1845Constant* ConstantExpr::getUDiv(Constant* C1, Constant* C2) {
1846 return get(Instruction::UDiv, C1, C2);
1847}
1848
1849Constant* ConstantExpr::getSDiv(Constant* C1, Constant* C2) {
1850 return get(Instruction::SDiv, C1, C2);
1851}
1852
1853Constant* ConstantExpr::getFDiv(Constant* C1, Constant* C2) {
1854 return get(Instruction::FDiv, C1, C2);
1855}
1856
1857Constant* ConstantExpr::getURem(Constant* C1, Constant* C2) {
1858 return get(Instruction::URem, C1, C2);
1859}
1860
1861Constant* ConstantExpr::getSRem(Constant* C1, Constant* C2) {
1862 return get(Instruction::SRem, C1, C2);
1863}
1864
1865Constant* ConstantExpr::getFRem(Constant* C1, Constant* C2) {
1866 return get(Instruction::FRem, C1, C2);
1867}
1868
1869Constant* ConstantExpr::getAnd(Constant* C1, Constant* C2) {
1870 return get(Instruction::And, C1, C2);
1871}
1872
1873Constant* ConstantExpr::getOr(Constant* C1, Constant* C2) {
1874 return get(Instruction::Or, C1, C2);
1875}
1876
1877Constant* ConstantExpr::getXor(Constant* C1, Constant* C2) {
1878 return get(Instruction::Xor, C1, C2);
1879}
1880
1881Constant* ConstantExpr::getShl(Constant* C1, Constant* C2) {
1882 return get(Instruction::Shl, C1, C2);
1883}
1884
1885Constant* ConstantExpr::getLShr(Constant* C1, Constant* C2) {
1886 return get(Instruction::LShr, C1, C2);
1887}
1888
1889Constant* ConstantExpr::getAShr(Constant* C1, Constant* C2) {
1890 return get(Instruction::AShr, C1, C2);
1891}
1892
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00001893// destroyConstant - Remove the constant from the constant table...
1894//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001895void ConstantExpr::destroyConstant() {
Chris Lattner83738a22009-12-30 20:25:09 +00001896 getType()->getContext().pImpl->ExprConstants.remove(this);
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00001897 destroyConstantImpl();
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001898}
1899
Chris Lattnerc188eeb2002-07-30 18:54:25 +00001900const char *ConstantExpr::getOpcodeName() const {
1901 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001902}
Reid Spencer1c9c8e62004-07-17 23:48:33 +00001903
Chris Lattner5cbade92005-10-03 21:58:36 +00001904//===----------------------------------------------------------------------===//
1905// replaceUsesOfWithOnConstant implementations
1906
Chris Lattner54984052007-08-21 00:55:23 +00001907/// replaceUsesOfWithOnConstant - Update this constant array to change uses of
1908/// 'From' to be uses of 'To'. This must update the uniquing data structures
1909/// etc.
1910///
1911/// Note that we intentionally replace all uses of From with To here. Consider
1912/// a large array that uses 'From' 1000 times. By handling this case all here,
1913/// ConstantArray::replaceUsesOfWithOnConstant is only invoked once, and that
1914/// single invocation handles all 1000 uses. Handling them one at a time would
1915/// work, but would be really slow because it would have to unique each updated
1916/// array instance.
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001917///
Chris Lattner5cbade92005-10-03 21:58:36 +00001918void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00001919 Use *U) {
Owen Anderson1fd70962009-07-28 18:32:17 +00001920 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
1921 Constant *ToC = cast<Constant>(To);
1922
1923 LLVMContext &Context = getType()->getContext();
1924 LLVMContextImpl *pImpl = Context.pImpl;
1925
Dan Gohmane3394d42009-09-15 15:58:07 +00001926 std::pair<LLVMContextImpl::ArrayConstantsTy::MapKey, ConstantArray*> Lookup;
Owen Anderson1fd70962009-07-28 18:32:17 +00001927 Lookup.first.first = getType();
1928 Lookup.second = this;
1929
1930 std::vector<Constant*> &Values = Lookup.first.second;
1931 Values.reserve(getNumOperands()); // Build replacement array.
1932
1933 // Fill values with the modified operands of the constant array. Also,
1934 // compute whether this turns into an all-zeros array.
1935 bool isAllZeros = false;
1936 unsigned NumUpdated = 0;
1937 if (!ToC->isNullValue()) {
1938 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
1939 Constant *Val = cast<Constant>(O->get());
1940 if (Val == From) {
1941 Val = ToC;
1942 ++NumUpdated;
1943 }
1944 Values.push_back(Val);
1945 }
1946 } else {
1947 isAllZeros = true;
1948 for (Use *O = OperandList, *E = OperandList+getNumOperands();O != E; ++O) {
1949 Constant *Val = cast<Constant>(O->get());
1950 if (Val == From) {
1951 Val = ToC;
1952 ++NumUpdated;
1953 }
1954 Values.push_back(Val);
1955 if (isAllZeros) isAllZeros = Val->isNullValue();
1956 }
1957 }
1958
1959 Constant *Replacement = 0;
1960 if (isAllZeros) {
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001961 Replacement = ConstantAggregateZero::get(getType());
Owen Anderson1fd70962009-07-28 18:32:17 +00001962 } else {
1963 // Check to see if we have this array type already.
Owen Anderson1fd70962009-07-28 18:32:17 +00001964 bool Exists;
1965 LLVMContextImpl::ArrayConstantsTy::MapTy::iterator I =
1966 pImpl->ArrayConstants.InsertOrGetItem(Lookup, Exists);
1967
1968 if (Exists) {
Devang Patel5f4ac842009-09-03 01:39:20 +00001969 Replacement = I->second;
Owen Anderson1fd70962009-07-28 18:32:17 +00001970 } else {
1971 // Okay, the new shape doesn't exist in the system yet. Instead of
1972 // creating a new constant array, inserting it, replaceallusesof'ing the
1973 // old with the new, then deleting the old... just update the current one
1974 // in place!
1975 pImpl->ArrayConstants.MoveConstantToNewSlot(this, I);
1976
1977 // Update to the new value. Optimize for the case when we have a single
1978 // operand that we're changing, but handle bulk updates efficiently.
1979 if (NumUpdated == 1) {
1980 unsigned OperandToUpdate = U - OperandList;
1981 assert(getOperand(OperandToUpdate) == From &&
1982 "ReplaceAllUsesWith broken!");
1983 setOperand(OperandToUpdate, ToC);
1984 } else {
1985 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1986 if (getOperand(i) == From)
1987 setOperand(i, ToC);
1988 }
1989 return;
1990 }
1991 }
Chris Lattnercea141f2005-10-03 22:51:37 +00001992
1993 // Otherwise, I do need to replace this with an existing value.
Chris Lattner5cbade92005-10-03 21:58:36 +00001994 assert(Replacement != this && "I didn't contain From!");
1995
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00001996 // Everyone using this now uses the replacement.
1997 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattner5cbade92005-10-03 21:58:36 +00001998
1999 // Delete the old constant!
2000 destroyConstant();
2001}
2002
2003void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002004 Use *U) {
Owen Anderson8fa33382009-07-27 22:29:26 +00002005 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2006 Constant *ToC = cast<Constant>(To);
2007
2008 unsigned OperandToUpdate = U-OperandList;
2009 assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!");
2010
Dan Gohmane3394d42009-09-15 15:58:07 +00002011 std::pair<LLVMContextImpl::StructConstantsTy::MapKey, ConstantStruct*> Lookup;
Owen Anderson8fa33382009-07-27 22:29:26 +00002012 Lookup.first.first = getType();
2013 Lookup.second = this;
2014 std::vector<Constant*> &Values = Lookup.first.second;
2015 Values.reserve(getNumOperands()); // Build replacement struct.
2016
2017
2018 // Fill values with the modified operands of the constant struct. Also,
2019 // compute whether this turns into an all-zeros struct.
2020 bool isAllZeros = false;
2021 if (!ToC->isNullValue()) {
2022 for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O)
2023 Values.push_back(cast<Constant>(O->get()));
2024 } else {
2025 isAllZeros = true;
2026 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2027 Constant *Val = cast<Constant>(O->get());
2028 Values.push_back(Val);
2029 if (isAllZeros) isAllZeros = Val->isNullValue();
2030 }
2031 }
2032 Values[OperandToUpdate] = ToC;
2033
2034 LLVMContext &Context = getType()->getContext();
2035 LLVMContextImpl *pImpl = Context.pImpl;
2036
2037 Constant *Replacement = 0;
2038 if (isAllZeros) {
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002039 Replacement = ConstantAggregateZero::get(getType());
Owen Anderson8fa33382009-07-27 22:29:26 +00002040 } else {
2041 // Check to see if we have this array type already.
Owen Anderson8fa33382009-07-27 22:29:26 +00002042 bool Exists;
2043 LLVMContextImpl::StructConstantsTy::MapTy::iterator I =
2044 pImpl->StructConstants.InsertOrGetItem(Lookup, Exists);
2045
2046 if (Exists) {
Devang Patel5f4ac842009-09-03 01:39:20 +00002047 Replacement = I->second;
Owen Anderson8fa33382009-07-27 22:29:26 +00002048 } else {
2049 // Okay, the new shape doesn't exist in the system yet. Instead of
2050 // creating a new constant struct, inserting it, replaceallusesof'ing the
2051 // old with the new, then deleting the old... just update the current one
2052 // in place!
2053 pImpl->StructConstants.MoveConstantToNewSlot(this, I);
2054
2055 // Update to the new value.
2056 setOperand(OperandToUpdate, ToC);
2057 return;
2058 }
2059 }
2060
2061 assert(Replacement != this && "I didn't contain From!");
Chris Lattner5cbade92005-10-03 21:58:36 +00002062
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002063 // Everyone using this now uses the replacement.
2064 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattner5cbade92005-10-03 21:58:36 +00002065
2066 // Delete the old constant!
2067 destroyConstant();
2068}
2069
Reid Spencer9d6565a2007-02-15 02:26:10 +00002070void ConstantVector::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002071 Use *U) {
Chris Lattner5cbade92005-10-03 21:58:36 +00002072 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2073
2074 std::vector<Constant*> Values;
2075 Values.reserve(getNumOperands()); // Build replacement array...
2076 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2077 Constant *Val = getOperand(i);
2078 if (Val == From) Val = cast<Constant>(To);
2079 Values.push_back(Val);
2080 }
2081
Owen Andersonaf7ec972009-07-28 21:19:26 +00002082 Constant *Replacement = get(getType(), Values);
Chris Lattner5cbade92005-10-03 21:58:36 +00002083 assert(Replacement != this && "I didn't contain From!");
2084
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002085 // Everyone using this now uses the replacement.
2086 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattner5cbade92005-10-03 21:58:36 +00002087
2088 // Delete the old constant!
2089 destroyConstant();
2090}
2091
2092void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002093 Use *U) {
Chris Lattner5cbade92005-10-03 21:58:36 +00002094 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
2095 Constant *To = cast<Constant>(ToV);
2096
2097 Constant *Replacement = 0;
2098 if (getOpcode() == Instruction::GetElementPtr) {
Chris Lattnerf9021ff2007-02-19 20:01:23 +00002099 SmallVector<Constant*, 8> Indices;
Chris Lattner5cbade92005-10-03 21:58:36 +00002100 Constant *Pointer = getOperand(0);
2101 Indices.reserve(getNumOperands()-1);
2102 if (Pointer == From) Pointer = To;
2103
2104 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
2105 Constant *Val = getOperand(i);
2106 if (Val == From) Val = To;
2107 Indices.push_back(Val);
2108 }
Chris Lattnerf9021ff2007-02-19 20:01:23 +00002109 Replacement = ConstantExpr::getGetElementPtr(Pointer,
2110 &Indices[0], Indices.size());
Dan Gohman041e2eb2008-05-15 19:50:34 +00002111 } else if (getOpcode() == Instruction::ExtractValue) {
Dan Gohman041e2eb2008-05-15 19:50:34 +00002112 Constant *Agg = getOperand(0);
Dan Gohman041e2eb2008-05-15 19:50:34 +00002113 if (Agg == From) Agg = To;
2114
Dan Gohman81a0c0b2008-05-31 00:58:22 +00002115 const SmallVector<unsigned, 4> &Indices = getIndices();
Dan Gohman041e2eb2008-05-15 19:50:34 +00002116 Replacement = ConstantExpr::getExtractValue(Agg,
2117 &Indices[0], Indices.size());
2118 } else if (getOpcode() == Instruction::InsertValue) {
Dan Gohman041e2eb2008-05-15 19:50:34 +00002119 Constant *Agg = getOperand(0);
2120 Constant *Val = getOperand(1);
Dan Gohman041e2eb2008-05-15 19:50:34 +00002121 if (Agg == From) Agg = To;
2122 if (Val == From) Val = To;
2123
Dan Gohman81a0c0b2008-05-31 00:58:22 +00002124 const SmallVector<unsigned, 4> &Indices = getIndices();
Dan Gohman041e2eb2008-05-15 19:50:34 +00002125 Replacement = ConstantExpr::getInsertValue(Agg, Val,
2126 &Indices[0], Indices.size());
Reid Spencer3da59db2006-11-27 01:05:10 +00002127 } else if (isCast()) {
Chris Lattner5cbade92005-10-03 21:58:36 +00002128 assert(getOperand(0) == From && "Cast only has one use!");
Reid Spencer3da59db2006-11-27 01:05:10 +00002129 Replacement = ConstantExpr::getCast(getOpcode(), To, getType());
Chris Lattner5cbade92005-10-03 21:58:36 +00002130 } else if (getOpcode() == Instruction::Select) {
2131 Constant *C1 = getOperand(0);
2132 Constant *C2 = getOperand(1);
2133 Constant *C3 = getOperand(2);
2134 if (C1 == From) C1 = To;
2135 if (C2 == From) C2 = To;
2136 if (C3 == From) C3 = To;
2137 Replacement = ConstantExpr::getSelect(C1, C2, C3);
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00002138 } else if (getOpcode() == Instruction::ExtractElement) {
2139 Constant *C1 = getOperand(0);
2140 Constant *C2 = getOperand(1);
2141 if (C1 == From) C1 = To;
2142 if (C2 == From) C2 = To;
2143 Replacement = ConstantExpr::getExtractElement(C1, C2);
Chris Lattner42b55802006-04-08 05:09:48 +00002144 } else if (getOpcode() == Instruction::InsertElement) {
2145 Constant *C1 = getOperand(0);
2146 Constant *C2 = getOperand(1);
2147 Constant *C3 = getOperand(1);
2148 if (C1 == From) C1 = To;
2149 if (C2 == From) C2 = To;
2150 if (C3 == From) C3 = To;
2151 Replacement = ConstantExpr::getInsertElement(C1, C2, C3);
2152 } else if (getOpcode() == Instruction::ShuffleVector) {
2153 Constant *C1 = getOperand(0);
2154 Constant *C2 = getOperand(1);
2155 Constant *C3 = getOperand(2);
2156 if (C1 == From) C1 = To;
2157 if (C2 == From) C2 = To;
2158 if (C3 == From) C3 = To;
2159 Replacement = ConstantExpr::getShuffleVector(C1, C2, C3);
Reid Spencer077d0eb2006-12-04 05:19:50 +00002160 } else if (isCompare()) {
2161 Constant *C1 = getOperand(0);
2162 Constant *C2 = getOperand(1);
2163 if (C1 == From) C1 = To;
2164 if (C2 == From) C2 = To;
2165 if (getOpcode() == Instruction::ICmp)
2166 Replacement = ConstantExpr::getICmp(getPredicate(), C1, C2);
Chris Lattnerbbedb0e2008-07-14 05:17:31 +00002167 else {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002168 assert(getOpcode() == Instruction::FCmp);
2169 Replacement = ConstantExpr::getFCmp(getPredicate(), C1, C2);
Chris Lattnerbbedb0e2008-07-14 05:17:31 +00002170 }
Chris Lattner5cbade92005-10-03 21:58:36 +00002171 } else if (getNumOperands() == 2) {
2172 Constant *C1 = getOperand(0);
2173 Constant *C2 = getOperand(1);
2174 if (C1 == From) C1 = To;
2175 if (C2 == From) C2 = To;
Chris Lattnercafe9bb2009-12-29 02:14:09 +00002176 Replacement = ConstantExpr::get(getOpcode(), C1, C2, SubclassOptionalData);
Chris Lattner5cbade92005-10-03 21:58:36 +00002177 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +00002178 llvm_unreachable("Unknown ConstantExpr type!");
Chris Lattner5cbade92005-10-03 21:58:36 +00002179 return;
2180 }
2181
2182 assert(Replacement != this && "I didn't contain From!");
2183
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002184 // Everyone using this now uses the replacement.
2185 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattner5cbade92005-10-03 21:58:36 +00002186
2187 // Delete the old constant!
2188 destroyConstant();
Matthijs Kooijman10b9de62008-07-03 07:46:41 +00002189}