blob: 6746882ed8d6f39a2978a5fd540cc66b5866fada [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 Lattnere9bb2df2001-12-03 22:26:30 +000010// This file implements the Constant* classes...
Chris Lattner00950542001-06-06 20:29:01 +000011//
12//===----------------------------------------------------------------------===//
13
Owen Andersoneed707b2009-07-24 23:12:02 +000014#include "LLVMContextImpl.h"
Chris Lattner31bcdb82002-04-28 19:55:58 +000015#include "llvm/Constants.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"
Owen Anderson04fb7c32009-06-20 00:24:58 +000030#include "llvm/System/Mutex.h"
Owen Anderson3e456ab2009-06-17 18:40:29 +000031#include "llvm/System/RWMutex.h"
Owen Andersone3cd5ca2009-06-18 16:54:52 +000032#include "llvm/System/Threading.h"
Chris Lattner6b6f6ba2007-02-20 06:39:57 +000033#include "llvm/ADT/DenseMap.h"
Chris Lattnerf9021ff2007-02-19 20:01:23 +000034#include "llvm/ADT/SmallVector.h"
Chris Lattner00950542001-06-06 20:29:01 +000035#include <algorithm>
Reid Spenceref9b9a72007-02-05 20:47:22 +000036#include <map>
Chris Lattner31f84992003-11-21 20:23:48 +000037using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000038
Chris Lattner00950542001-06-06 20:29:01 +000039//===----------------------------------------------------------------------===//
Chris Lattnere9bb2df2001-12-03 22:26:30 +000040// Constant Class
Chris Lattner00950542001-06-06 20:29:01 +000041//===----------------------------------------------------------------------===//
42
Owen Andersonee6aefc2009-06-18 19:10:19 +000043// Becomes a no-op when multithreading is disabled.
44ManagedStatic<sys::SmartRWMutex<true> > ConstantsLock;
Owen Anderson3e456ab2009-06-17 18:40:29 +000045
Chris Lattnere9bb2df2001-12-03 22:26:30 +000046void Constant::destroyConstantImpl() {
47 // When a Constant is destroyed, there may be lingering
Chris Lattnerf5ec48d2001-10-13 06:57:33 +000048 // references to the constant by other constants in the constant pool. These
Misha Brukmanef6a6a62003-08-21 22:14:26 +000049 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerf5ec48d2001-10-13 06:57:33 +000050 // but they don't know that. Because we only find out when the CPV is
51 // deleted, we must now notify all of our users (that should only be
Chris Lattnere9bb2df2001-12-03 22:26:30 +000052 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerf5ec48d2001-10-13 06:57:33 +000053 //
54 while (!use_empty()) {
55 Value *V = use_back();
56#ifndef NDEBUG // Only in -g mode...
Chris Lattner6183b922002-07-18 00:14:50 +000057 if (!isa<Constant>(V))
Bill Wendling2e3def12006-11-17 08:03:48 +000058 DOUT << "While deleting: " << *this
59 << "\n\nUse still stuck around after Def is destroyed: "
60 << *V << "\n\n";
Chris Lattnerf5ec48d2001-10-13 06:57:33 +000061#endif
Vikram S. Adve345e0cf2002-07-14 23:13:17 +000062 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Reid Spencer1c9c8e62004-07-17 23:48:33 +000063 Constant *CV = cast<Constant>(V);
64 CV->destroyConstant();
Chris Lattnerf5ec48d2001-10-13 06:57:33 +000065
66 // The constant should remove itself from our use list...
Vikram S. Adve345e0cf2002-07-14 23:13:17 +000067 assert((use_empty() || use_back() != V) && "Constant not removed!");
Chris Lattnerf5ec48d2001-10-13 06:57:33 +000068 }
69
70 // Value has no outstanding references it is safe to delete it now...
71 delete this;
Chris Lattner1d87bcf2001-10-01 20:11:19 +000072}
Chris Lattner00950542001-06-06 20:29:01 +000073
Chris Lattner35b89fa2006-10-20 00:27:06 +000074/// canTrap - Return true if evaluation of this constant could trap. This is
75/// true for things like constant expressions that could divide by zero.
76bool Constant::canTrap() const {
77 assert(getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
78 // The only thing that could possibly trap are constant exprs.
79 const ConstantExpr *CE = dyn_cast<ConstantExpr>(this);
80 if (!CE) return false;
81
82 // ConstantExpr traps if any operands can trap.
83 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
84 if (getOperand(i)->canTrap())
85 return true;
86
87 // Otherwise, only specific operations can trap.
88 switch (CE->getOpcode()) {
89 default:
90 return false;
Reid Spencer1628cec2006-10-26 06:15:43 +000091 case Instruction::UDiv:
92 case Instruction::SDiv:
93 case Instruction::FDiv:
Reid Spencer0a783f72006-11-02 01:53:59 +000094 case Instruction::URem:
95 case Instruction::SRem:
96 case Instruction::FRem:
Chris Lattner35b89fa2006-10-20 00:27:06 +000097 // Div and rem can trap if the RHS is not known to be non-zero.
98 if (!isa<ConstantInt>(getOperand(1)) || getOperand(1)->isNullValue())
99 return true;
100 return false;
101 }
102}
103
Chris Lattner7cf12c72009-07-22 00:05:44 +0000104
105/// getRelocationInfo - This method classifies the entry according to
106/// whether or not it may generate a relocation entry. This must be
107/// conservative, so if it might codegen to a relocatable entry, it should say
108/// so. The return values are:
109///
Chris Lattner083a1e02009-07-24 03:27:21 +0000110/// NoRelocation: This constant pool entry is guaranteed to never have a
111/// relocation applied to it (because it holds a simple constant like
112/// '4').
113/// LocalRelocation: This entry has relocations, but the entries are
114/// guaranteed to be resolvable by the static linker, so the dynamic
115/// linker will never see them.
116/// GlobalRelocations: This entry may have arbitrary relocations.
Chris Lattner7cf12c72009-07-22 00:05:44 +0000117///
118/// FIXME: This really should not be in VMCore.
Chris Lattner083a1e02009-07-24 03:27:21 +0000119Constant::PossibleRelocationsTy Constant::getRelocationInfo() const {
120 if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
Chris Lattner7cf12c72009-07-22 00:05:44 +0000121 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
Chris Lattner083a1e02009-07-24 03:27:21 +0000122 return LocalRelocation; // Local to this file/library.
123 return GlobalRelocations; // Global reference.
Anton Korobeynikovab267a22009-03-29 17:13:18 +0000124 }
Chris Lattner7cf12c72009-07-22 00:05:44 +0000125
Chris Lattner083a1e02009-07-24 03:27:21 +0000126 PossibleRelocationsTy Result = NoRelocation;
Evan Chengafe15812007-03-08 00:59:12 +0000127 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattner7cf12c72009-07-22 00:05:44 +0000128 Result = std::max(Result, getOperand(i)->getRelocationInfo());
129
130 return Result;
Evan Chengafe15812007-03-08 00:59:12 +0000131}
132
Chris Lattner7cf12c72009-07-22 00:05:44 +0000133
Chris Lattner86381442008-07-10 00:28:11 +0000134/// getVectorElements - This method, which is only valid on constant of vector
135/// type, returns the elements of the vector in the specified smallvector.
Chris Lattner071aade2008-07-14 05:10:41 +0000136/// This handles breaking down a vector undef into undef elements, etc. For
137/// constant exprs and other cases we can't handle, we return an empty vector.
Owen Anderson0a5372e2009-07-13 04:09:18 +0000138void Constant::getVectorElements(LLVMContext &Context,
139 SmallVectorImpl<Constant*> &Elts) const {
Chris Lattner86381442008-07-10 00:28:11 +0000140 assert(isa<VectorType>(getType()) && "Not a vector constant!");
141
142 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this)) {
143 for (unsigned i = 0, e = CV->getNumOperands(); i != e; ++i)
144 Elts.push_back(CV->getOperand(i));
145 return;
146 }
147
148 const VectorType *VT = cast<VectorType>(getType());
149 if (isa<ConstantAggregateZero>(this)) {
150 Elts.assign(VT->getNumElements(),
Owen Anderson0a5372e2009-07-13 04:09:18 +0000151 Context.getNullValue(VT->getElementType()));
Chris Lattner86381442008-07-10 00:28:11 +0000152 return;
153 }
154
Chris Lattner071aade2008-07-14 05:10:41 +0000155 if (isa<UndefValue>(this)) {
Owen Anderson0a5372e2009-07-13 04:09:18 +0000156 Elts.assign(VT->getNumElements(), Context.getUndef(VT->getElementType()));
Chris Lattner071aade2008-07-14 05:10:41 +0000157 return;
158 }
159
160 // Unknown type, must be constant expr etc.
Chris Lattner86381442008-07-10 00:28:11 +0000161}
162
163
164
Chris Lattner00950542001-06-06 20:29:01 +0000165//===----------------------------------------------------------------------===//
Chris Lattner6b6f6ba2007-02-20 06:39:57 +0000166// ConstantInt
Chris Lattner00950542001-06-06 20:29:01 +0000167//===----------------------------------------------------------------------===//
168
Reid Spencer532d0ce2007-02-26 23:54:03 +0000169ConstantInt::ConstantInt(const IntegerType *Ty, const APInt& V)
Chris Lattnereb41bdd2007-02-20 05:55:46 +0000170 : Constant(Ty, ConstantIntVal, 0, 0), Val(V) {
Reid Spencer532d0ce2007-02-26 23:54:03 +0000171 assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
Chris Lattner00950542001-06-06 20:29:01 +0000172}
173
Owen Andersoneed707b2009-07-24 23:12:02 +0000174// Get a ConstantInt from an APInt. Note that the value stored in the DenseMap
175// as the key, is a DenseMapAPIntKeyInfo::KeyTy which has provided the
176// operator== and operator!= to ensure that the DenseMap doesn't attempt to
177// compare APInt's of different widths, which would violate an APInt class
178// invariant which generates an assertion.
179ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt& V) {
180 // Get the corresponding integer type for the bit width of the value.
181 const IntegerType *ITy = Context.getIntegerType(V.getBitWidth());
182 // get an existing value or the insertion position
183 DenseMapAPIntKeyInfo::KeyTy Key(V, ITy);
184
185 Context.pImpl->ConstantsLock.reader_acquire();
186 ConstantInt *&Slot = Context.pImpl->IntConstants[Key];
187 Context.pImpl->ConstantsLock.reader_release();
188
189 if (!Slot) {
190 sys::SmartScopedWriter<true> Writer(Context.pImpl->ConstantsLock);
191 ConstantInt *&NewSlot = Context.pImpl->IntConstants[Key];
192 if (!Slot) {
193 NewSlot = new ConstantInt(ITy, V);
194 }
195
196 return NewSlot;
197 } else {
198 return Slot;
199 }
200}
201
202Constant* ConstantInt::get(const Type* Ty, uint64_t V, bool isSigned) {
203 Constant *C = get(cast<IntegerType>(Ty->getScalarType()),
204 V, isSigned);
205
206 // For vectors, broadcast the value.
207 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
Owen Andersonaf7ec972009-07-28 21:19:26 +0000208 return ConstantVector::get(
Owen Andersoneed707b2009-07-24 23:12:02 +0000209 std::vector<Constant *>(VTy->getNumElements(), C));
210
211 return C;
212}
213
214ConstantInt* ConstantInt::get(const IntegerType* Ty, uint64_t V,
215 bool isSigned) {
216 return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
217}
218
219ConstantInt* ConstantInt::getSigned(const IntegerType* Ty, int64_t V) {
220 return get(Ty, V, true);
221}
222
223Constant *ConstantInt::getSigned(const Type *Ty, int64_t V) {
224 return get(Ty, V, true);
225}
226
227Constant* ConstantInt::get(const Type* Ty, const APInt& V) {
228 ConstantInt *C = get(Ty->getContext(), V);
229 assert(C->getType() == Ty->getScalarType() &&
230 "ConstantInt type doesn't match the type implied by its value!");
231
232 // For vectors, broadcast the value.
233 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
Owen Andersonaf7ec972009-07-28 21:19:26 +0000234 return ConstantVector::get(
Owen Andersoneed707b2009-07-24 23:12:02 +0000235 std::vector<Constant *>(VTy->getNumElements(), C));
236
237 return C;
238}
239
Chris Lattner6b6f6ba2007-02-20 06:39:57 +0000240//===----------------------------------------------------------------------===//
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000241// ConstantFP
Chris Lattner6b6f6ba2007-02-20 06:39:57 +0000242//===----------------------------------------------------------------------===//
243
Rafael Espindola87d1f472009-07-15 17:40:42 +0000244static const fltSemantics *TypeToFloatSemantics(const Type *Ty) {
245 if (Ty == Type::FloatTy)
246 return &APFloat::IEEEsingle;
247 if (Ty == Type::DoubleTy)
248 return &APFloat::IEEEdouble;
249 if (Ty == Type::X86_FP80Ty)
250 return &APFloat::x87DoubleExtended;
251 else if (Ty == Type::FP128Ty)
252 return &APFloat::IEEEquad;
253
254 assert(Ty == Type::PPC_FP128Ty && "Unknown FP format");
255 return &APFloat::PPCDoubleDouble;
256}
257
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000258/// get() - This returns a constant fp for the specified value in the
259/// specified type. This should only be used for simple constant values like
260/// 2.0/1.0 etc, that are known-valid both as double and as the target format.
261Constant* ConstantFP::get(const Type* Ty, double V) {
262 LLVMContext &Context = Ty->getContext();
263
264 APFloat FV(V);
265 bool ignored;
266 FV.convert(*TypeToFloatSemantics(Ty->getScalarType()),
267 APFloat::rmNearestTiesToEven, &ignored);
268 Constant *C = get(Context, FV);
269
270 // For vectors, broadcast the value.
271 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
Owen Andersonaf7ec972009-07-28 21:19:26 +0000272 return ConstantVector::get(
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000273 std::vector<Constant *>(VTy->getNumElements(), C));
274
275 return C;
276}
277
278ConstantFP* ConstantFP::getNegativeZero(const Type* Ty) {
279 LLVMContext &Context = Ty->getContext();
280 APFloat apf = cast <ConstantFP>(Context.getNullValue(Ty))->getValueAPF();
281 apf.changeSign();
282 return get(Context, apf);
283}
284
285
286Constant* ConstantFP::getZeroValueForNegation(const Type* Ty) {
287 LLVMContext &Context = Ty->getContext();
288 if (const VectorType *PTy = dyn_cast<VectorType>(Ty))
289 if (PTy->getElementType()->isFloatingPoint()) {
290 std::vector<Constant*> zeros(PTy->getNumElements(),
291 getNegativeZero(PTy->getElementType()));
Owen Andersonaf7ec972009-07-28 21:19:26 +0000292 return ConstantVector::get(PTy, zeros);
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000293 }
294
295 if (Ty->isFloatingPoint())
296 return getNegativeZero(Ty);
297
298 return Context.getNullValue(Ty);
299}
300
301
302// ConstantFP accessors.
303ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) {
304 DenseMapAPFloatKeyInfo::KeyTy Key(V);
305
306 LLVMContextImpl* pImpl = Context.pImpl;
307
308 pImpl->ConstantsLock.reader_acquire();
309 ConstantFP *&Slot = pImpl->FPConstants[Key];
310 pImpl->ConstantsLock.reader_release();
311
312 if (!Slot) {
313 sys::SmartScopedWriter<true> Writer(pImpl->ConstantsLock);
314 ConstantFP *&NewSlot = pImpl->FPConstants[Key];
315 if (!NewSlot) {
316 const Type *Ty;
317 if (&V.getSemantics() == &APFloat::IEEEsingle)
318 Ty = Type::FloatTy;
319 else if (&V.getSemantics() == &APFloat::IEEEdouble)
320 Ty = Type::DoubleTy;
321 else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
322 Ty = Type::X86_FP80Ty;
323 else if (&V.getSemantics() == &APFloat::IEEEquad)
324 Ty = Type::FP128Ty;
325 else {
326 assert(&V.getSemantics() == &APFloat::PPCDoubleDouble &&
327 "Unknown FP format");
328 Ty = Type::PPC_FP128Ty;
329 }
330 NewSlot = new ConstantFP(Ty, V);
331 }
332
333 return NewSlot;
334 }
335
336 return Slot;
337}
338
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000339ConstantFP::ConstantFP(const Type *Ty, const APFloat& V)
340 : Constant(Ty, ConstantFPVal, 0, 0), Val(V) {
Chris Lattner288e78f2008-04-09 06:38:30 +0000341 assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
342 "FP type Mismatch");
Chris Lattner00950542001-06-06 20:29:01 +0000343}
344
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000345bool ConstantFP::isNullValue() const {
Dale Johannesen343e7702007-08-24 00:56:33 +0000346 return Val.isZero() && !Val.isNegative();
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000347}
348
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000349bool ConstantFP::isExactlyValue(const APFloat& V) const {
350 return Val.bitwiseIsEqual(V);
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000351}
352
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000353//===----------------------------------------------------------------------===//
354// ConstantXXX Classes
355//===----------------------------------------------------------------------===//
356
357
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000358ConstantArray::ConstantArray(const ArrayType *T,
Chris Lattnere4671472005-01-29 00:34:39 +0000359 const std::vector<Constant*> &V)
Gabor Greifefe65362008-05-10 08:32:32 +0000360 : Constant(T, ConstantArrayVal,
361 OperandTraits<ConstantArray>::op_end(this) - V.size(),
362 V.size()) {
Alkis Evlogimenose0de1d62004-09-15 02:32:15 +0000363 assert(V.size() == T->getNumElements() &&
364 "Invalid initializer vector for constant array");
Chris Lattnere4671472005-01-29 00:34:39 +0000365 Use *OL = OperandList;
Chris Lattnerdfdd6c52005-10-03 21:56:24 +0000366 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
367 I != E; ++I, ++OL) {
Chris Lattner71abaab2005-10-07 05:23:36 +0000368 Constant *C = *I;
369 assert((C->getType() == T->getElementType() ||
Alkis Evlogimenoscad90ad2004-09-10 04:16:59 +0000370 (T->isAbstract() &&
Chris Lattner71abaab2005-10-07 05:23:36 +0000371 C->getType()->getTypeID() == T->getElementType()->getTypeID())) &&
Alkis Evlogimenoscad90ad2004-09-10 04:16:59 +0000372 "Initializer for array element doesn't match array element type!");
Gabor Greif6c80c382008-05-26 21:33:52 +0000373 *OL = C;
Chris Lattner00950542001-06-06 20:29:01 +0000374 }
375}
376
Owen Anderson1fd70962009-07-28 18:32:17 +0000377Constant *ConstantArray::get(const ArrayType *Ty,
378 const std::vector<Constant*> &V) {
379 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
380 // If this is an all-zero array, return a ConstantAggregateZero object
381 if (!V.empty()) {
382 Constant *C = V[0];
383 if (!C->isNullValue()) {
384 // Implicitly locked.
385 return pImpl->ArrayConstants.getOrCreate(Ty, V);
386 }
387 for (unsigned i = 1, e = V.size(); i != e; ++i)
388 if (V[i] != C) {
389 // Implicitly locked.
390 return pImpl->ArrayConstants.getOrCreate(Ty, V);
391 }
392 }
393
394 return Ty->getContext().getConstantAggregateZero(Ty);
395}
396
397
398Constant* ConstantArray::get(const ArrayType* T, Constant* const* Vals,
399 unsigned NumVals) {
400 // FIXME: make this the primary ctor method.
401 return get(T, std::vector<Constant*>(Vals, Vals+NumVals));
402}
403
404/// ConstantArray::get(const string&) - Return an array that is initialized to
405/// contain the specified string. If length is zero then a null terminator is
406/// added to the specified string so that it may be used in a natural way.
407/// Otherwise, the length parameter specifies how much of the string to use
408/// and it won't be null terminated.
409///
410Constant* ConstantArray::get(const StringRef &Str, bool AddNull) {
411 std::vector<Constant*> ElementVals;
412 for (unsigned i = 0; i < Str.size(); ++i)
413 ElementVals.push_back(ConstantInt::get(Type::Int8Ty, Str[i]));
414
415 // Add a null terminator to the string...
416 if (AddNull) {
417 ElementVals.push_back(ConstantInt::get(Type::Int8Ty, 0));
418 }
419
420 ArrayType *ATy = ArrayType::get(Type::Int8Ty, ElementVals.size());
421 return get(ATy, ElementVals);
422}
423
424
Chris Lattnere4671472005-01-29 00:34:39 +0000425
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000426ConstantStruct::ConstantStruct(const StructType *T,
Chris Lattnere4671472005-01-29 00:34:39 +0000427 const std::vector<Constant*> &V)
Gabor Greifefe65362008-05-10 08:32:32 +0000428 : Constant(T, ConstantStructVal,
429 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
430 V.size()) {
Chris Lattnerd21cd802004-02-09 04:37:31 +0000431 assert(V.size() == T->getNumElements() &&
Vikram S. Adve345e0cf2002-07-14 23:13:17 +0000432 "Invalid initializer vector for constant structure");
Chris Lattnere4671472005-01-29 00:34:39 +0000433 Use *OL = OperandList;
Chris Lattnerdfdd6c52005-10-03 21:56:24 +0000434 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
435 I != E; ++I, ++OL) {
Chris Lattner71abaab2005-10-07 05:23:36 +0000436 Constant *C = *I;
437 assert((C->getType() == T->getElementType(I-V.begin()) ||
Chris Lattnerdfdd6c52005-10-03 21:56:24 +0000438 ((T->getElementType(I-V.begin())->isAbstract() ||
Chris Lattner71abaab2005-10-07 05:23:36 +0000439 C->getType()->isAbstract()) &&
Chris Lattnerdfdd6c52005-10-03 21:56:24 +0000440 T->getElementType(I-V.begin())->getTypeID() ==
Chris Lattner71abaab2005-10-07 05:23:36 +0000441 C->getType()->getTypeID())) &&
Chris Lattnerb8438892003-06-02 17:42:47 +0000442 "Initializer for struct element doesn't match struct element type!");
Gabor Greif6c80c382008-05-26 21:33:52 +0000443 *OL = C;
Chris Lattner00950542001-06-06 20:29:01 +0000444 }
445}
446
Owen Anderson8fa33382009-07-27 22:29:26 +0000447// ConstantStruct accessors.
448Constant* ConstantStruct::get(const StructType* T,
449 const std::vector<Constant*>& V) {
450 LLVMContextImpl* pImpl = T->getContext().pImpl;
451
452 // Create a ConstantAggregateZero value if all elements are zeros...
453 for (unsigned i = 0, e = V.size(); i != e; ++i)
454 if (!V[i]->isNullValue())
455 // Implicitly locked.
456 return pImpl->StructConstants.getOrCreate(T, V);
457
458 return T->getContext().getConstantAggregateZero(T);
459}
460
461Constant* ConstantStruct::get(const std::vector<Constant*>& V, bool packed) {
462 std::vector<const Type*> StructEls;
463 StructEls.reserve(V.size());
464 for (unsigned i = 0, e = V.size(); i != e; ++i)
465 StructEls.push_back(V[i]->getType());
466 return get(StructType::get(StructEls, packed), V);
467}
468
469Constant* ConstantStruct::get(Constant* const *Vals, unsigned NumVals,
470 bool Packed) {
471 // FIXME: make this the primary ctor method.
472 return get(std::vector<Constant*>(Vals, Vals+NumVals), Packed);
473}
Chris Lattnere4671472005-01-29 00:34:39 +0000474
Reid Spencer9d6565a2007-02-15 02:26:10 +0000475ConstantVector::ConstantVector(const VectorType *T,
Chris Lattnere4671472005-01-29 00:34:39 +0000476 const std::vector<Constant*> &V)
Gabor Greifefe65362008-05-10 08:32:32 +0000477 : Constant(T, ConstantVectorVal,
478 OperandTraits<ConstantVector>::op_end(this) - V.size(),
479 V.size()) {
Chris Lattnere4671472005-01-29 00:34:39 +0000480 Use *OL = OperandList;
Chris Lattnerdfdd6c52005-10-03 21:56:24 +0000481 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
482 I != E; ++I, ++OL) {
Chris Lattner71abaab2005-10-07 05:23:36 +0000483 Constant *C = *I;
484 assert((C->getType() == T->getElementType() ||
Alkis Evlogimenoscad90ad2004-09-10 04:16:59 +0000485 (T->isAbstract() &&
Chris Lattner71abaab2005-10-07 05:23:36 +0000486 C->getType()->getTypeID() == T->getElementType()->getTypeID())) &&
Dan Gohmanfa73ea22007-05-24 14:36:04 +0000487 "Initializer for vector element doesn't match vector element type!");
Gabor Greif6c80c382008-05-26 21:33:52 +0000488 *OL = C;
Brian Gaeke715c90b2004-08-20 06:00:58 +0000489 }
490}
491
Owen Andersonaf7ec972009-07-28 21:19:26 +0000492// ConstantVector accessors.
493Constant* ConstantVector::get(const VectorType* T,
494 const std::vector<Constant*>& V) {
495 assert(!V.empty() && "Vectors can't be empty");
496 LLVMContext &Context = T->getContext();
497 LLVMContextImpl *pImpl = Context.pImpl;
498
499 // If this is an all-undef or alll-zero vector, return a
500 // ConstantAggregateZero or UndefValue.
501 Constant *C = V[0];
502 bool isZero = C->isNullValue();
503 bool isUndef = isa<UndefValue>(C);
504
505 if (isZero || isUndef) {
506 for (unsigned i = 1, e = V.size(); i != e; ++i)
507 if (V[i] != C) {
508 isZero = isUndef = false;
509 break;
510 }
511 }
512
513 if (isZero)
514 return Context.getConstantAggregateZero(T);
515 if (isUndef)
516 return Context.getUndef(T);
517
518 // Implicitly locked.
519 return pImpl->VectorConstants.getOrCreate(T, V);
520}
521
522Constant* ConstantVector::get(const std::vector<Constant*>& V) {
523 assert(!V.empty() && "Cannot infer type if V is empty");
524 return get(VectorType::get(V.front()->getType(),V.size()), V);
525}
526
527Constant* ConstantVector::get(Constant* const* Vals, unsigned NumVals) {
528 // FIXME: make this the primary ctor method.
529 return get(std::vector<Constant*>(Vals, Vals+NumVals));
530}
531
Vikram S. Adve345e0cf2002-07-14 23:13:17 +0000532
Gabor Greifefe65362008-05-10 08:32:32 +0000533namespace llvm {
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000534// We declare several classes private to this file, so use an anonymous
535// namespace
536namespace {
Reid Spencer728b6db2006-12-03 05:48:19 +0000537
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000538/// UnaryConstantExpr - This class is private to Constants.cpp, and is used
539/// behind the scenes to implement unary constant exprs.
540class VISIBILITY_HIDDEN UnaryConstantExpr : public ConstantExpr {
Gabor Greif051a9502008-04-06 20:25:17 +0000541 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000542public:
Gabor Greif051a9502008-04-06 20:25:17 +0000543 // allocate space for exactly one operand
544 void *operator new(size_t s) {
545 return User::operator new(s, 1);
546 }
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000547 UnaryConstantExpr(unsigned Opcode, Constant *C, const Type *Ty)
Gabor Greifefe65362008-05-10 08:32:32 +0000548 : ConstantExpr(Ty, Opcode, &Op<0>(), 1) {
549 Op<0>() = C;
550 }
551 /// Transparently provide more efficient getOperand methods.
552 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000553};
Reid Spencer728b6db2006-12-03 05:48:19 +0000554
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000555/// BinaryConstantExpr - This class is private to Constants.cpp, and is used
556/// behind the scenes to implement binary constant exprs.
557class VISIBILITY_HIDDEN BinaryConstantExpr : public ConstantExpr {
Gabor Greif051a9502008-04-06 20:25:17 +0000558 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000559public:
Gabor Greif051a9502008-04-06 20:25:17 +0000560 // allocate space for exactly two operands
561 void *operator new(size_t s) {
562 return User::operator new(s, 2);
563 }
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000564 BinaryConstantExpr(unsigned Opcode, Constant *C1, Constant *C2)
Gabor Greifefe65362008-05-10 08:32:32 +0000565 : ConstantExpr(C1->getType(), Opcode, &Op<0>(), 2) {
Gabor Greif6c80c382008-05-26 21:33:52 +0000566 Op<0>() = C1;
567 Op<1>() = C2;
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000568 }
Gabor Greifefe65362008-05-10 08:32:32 +0000569 /// Transparently provide more efficient getOperand methods.
570 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000571};
Vikram S. Adve345e0cf2002-07-14 23:13:17 +0000572
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000573/// SelectConstantExpr - This class is private to Constants.cpp, and is used
574/// behind the scenes to implement select constant exprs.
575class VISIBILITY_HIDDEN SelectConstantExpr : public ConstantExpr {
Gabor Greif051a9502008-04-06 20:25:17 +0000576 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000577public:
Gabor Greif051a9502008-04-06 20:25:17 +0000578 // allocate space for exactly three operands
579 void *operator new(size_t s) {
580 return User::operator new(s, 3);
581 }
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000582 SelectConstantExpr(Constant *C1, Constant *C2, Constant *C3)
Gabor Greifefe65362008-05-10 08:32:32 +0000583 : ConstantExpr(C2->getType(), Instruction::Select, &Op<0>(), 3) {
Gabor Greif6c80c382008-05-26 21:33:52 +0000584 Op<0>() = C1;
585 Op<1>() = C2;
586 Op<2>() = C3;
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000587 }
Gabor Greifefe65362008-05-10 08:32:32 +0000588 /// Transparently provide more efficient getOperand methods.
589 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000590};
Chris Lattnere4671472005-01-29 00:34:39 +0000591
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000592/// ExtractElementConstantExpr - This class is private to
593/// Constants.cpp, and is used behind the scenes to implement
594/// extractelement constant exprs.
595class VISIBILITY_HIDDEN ExtractElementConstantExpr : public ConstantExpr {
Gabor Greif051a9502008-04-06 20:25:17 +0000596 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000597public:
Gabor Greif051a9502008-04-06 20:25:17 +0000598 // allocate space for exactly two operands
599 void *operator new(size_t s) {
600 return User::operator new(s, 2);
601 }
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000602 ExtractElementConstantExpr(Constant *C1, Constant *C2)
603 : ConstantExpr(cast<VectorType>(C1->getType())->getElementType(),
Gabor Greifefe65362008-05-10 08:32:32 +0000604 Instruction::ExtractElement, &Op<0>(), 2) {
Gabor Greif6c80c382008-05-26 21:33:52 +0000605 Op<0>() = C1;
606 Op<1>() = C2;
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000607 }
Gabor Greifefe65362008-05-10 08:32:32 +0000608 /// Transparently provide more efficient getOperand methods.
609 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000610};
Robert Bocchinob52ee7f2006-01-10 19:05:34 +0000611
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000612/// InsertElementConstantExpr - This class is private to
613/// Constants.cpp, and is used behind the scenes to implement
614/// insertelement constant exprs.
615class VISIBILITY_HIDDEN InsertElementConstantExpr : public ConstantExpr {
Gabor Greif051a9502008-04-06 20:25:17 +0000616 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000617public:
Gabor Greif051a9502008-04-06 20:25:17 +0000618 // allocate space for exactly three operands
619 void *operator new(size_t s) {
620 return User::operator new(s, 3);
621 }
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000622 InsertElementConstantExpr(Constant *C1, Constant *C2, Constant *C3)
623 : ConstantExpr(C1->getType(), Instruction::InsertElement,
Gabor Greifefe65362008-05-10 08:32:32 +0000624 &Op<0>(), 3) {
Gabor Greif6c80c382008-05-26 21:33:52 +0000625 Op<0>() = C1;
626 Op<1>() = C2;
627 Op<2>() = C3;
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000628 }
Gabor Greifefe65362008-05-10 08:32:32 +0000629 /// Transparently provide more efficient getOperand methods.
630 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000631};
Robert Bocchinoc152f9c2006-01-17 20:07:22 +0000632
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000633/// ShuffleVectorConstantExpr - This class is private to
634/// Constants.cpp, and is used behind the scenes to implement
635/// shufflevector constant exprs.
636class VISIBILITY_HIDDEN ShuffleVectorConstantExpr : public ConstantExpr {
Gabor Greif051a9502008-04-06 20:25:17 +0000637 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000638public:
Gabor Greif051a9502008-04-06 20:25:17 +0000639 // allocate space for exactly three operands
640 void *operator new(size_t s) {
641 return User::operator new(s, 3);
642 }
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000643 ShuffleVectorConstantExpr(Constant *C1, Constant *C2, Constant *C3)
Nate Begeman0f123cf2009-02-12 21:28:33 +0000644 : ConstantExpr(VectorType::get(
645 cast<VectorType>(C1->getType())->getElementType(),
646 cast<VectorType>(C3->getType())->getNumElements()),
647 Instruction::ShuffleVector,
Gabor Greifefe65362008-05-10 08:32:32 +0000648 &Op<0>(), 3) {
Gabor Greif6c80c382008-05-26 21:33:52 +0000649 Op<0>() = C1;
650 Op<1>() = C2;
651 Op<2>() = C3;
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000652 }
Gabor Greifefe65362008-05-10 08:32:32 +0000653 /// Transparently provide more efficient getOperand methods.
654 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000655};
656
Dan Gohman041e2eb2008-05-15 19:50:34 +0000657/// ExtractValueConstantExpr - This class is private to
658/// Constants.cpp, and is used behind the scenes to implement
659/// extractvalue constant exprs.
660class VISIBILITY_HIDDEN ExtractValueConstantExpr : public ConstantExpr {
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000661 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Dan Gohman041e2eb2008-05-15 19:50:34 +0000662public:
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000663 // allocate space for exactly one operand
664 void *operator new(size_t s) {
665 return User::operator new(s, 1);
Dan Gohman041e2eb2008-05-15 19:50:34 +0000666 }
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000667 ExtractValueConstantExpr(Constant *Agg,
668 const SmallVector<unsigned, 4> &IdxList,
669 const Type *DestTy)
670 : ConstantExpr(DestTy, Instruction::ExtractValue, &Op<0>(), 1),
671 Indices(IdxList) {
672 Op<0>() = Agg;
673 }
674
Dan Gohman35651cd2008-05-31 19:09:08 +0000675 /// Indices - These identify which value to extract.
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000676 const SmallVector<unsigned, 4> Indices;
677
Dan Gohman041e2eb2008-05-15 19:50:34 +0000678 /// Transparently provide more efficient getOperand methods.
679 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
680};
681
682/// InsertValueConstantExpr - This class is private to
683/// Constants.cpp, and is used behind the scenes to implement
684/// insertvalue constant exprs.
685class VISIBILITY_HIDDEN InsertValueConstantExpr : public ConstantExpr {
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000686 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
Dan Gohman041e2eb2008-05-15 19:50:34 +0000687public:
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000688 // allocate space for exactly one operand
689 void *operator new(size_t s) {
690 return User::operator new(s, 2);
Dan Gohman041e2eb2008-05-15 19:50:34 +0000691 }
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000692 InsertValueConstantExpr(Constant *Agg, Constant *Val,
693 const SmallVector<unsigned, 4> &IdxList,
694 const Type *DestTy)
695 : ConstantExpr(DestTy, Instruction::InsertValue, &Op<0>(), 2),
696 Indices(IdxList) {
697 Op<0>() = Agg;
698 Op<1>() = Val;
699 }
700
Dan Gohman35651cd2008-05-31 19:09:08 +0000701 /// Indices - These identify the position for the insertion.
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000702 const SmallVector<unsigned, 4> Indices;
703
Dan Gohman041e2eb2008-05-15 19:50:34 +0000704 /// Transparently provide more efficient getOperand methods.
705 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
706};
707
708
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000709/// GetElementPtrConstantExpr - This class is private to Constants.cpp, and is
710/// used behind the scenes to implement getelementpr constant exprs.
Gabor Greif051a9502008-04-06 20:25:17 +0000711class VISIBILITY_HIDDEN GetElementPtrConstantExpr : public ConstantExpr {
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000712 GetElementPtrConstantExpr(Constant *C, const std::vector<Constant*> &IdxList,
Gabor Greifefe65362008-05-10 08:32:32 +0000713 const Type *DestTy);
Gabor Greif051a9502008-04-06 20:25:17 +0000714public:
Gabor Greifb1dbcd82008-05-15 10:04:30 +0000715 static GetElementPtrConstantExpr *Create(Constant *C,
716 const std::vector<Constant*>&IdxList,
Gabor Greifefe65362008-05-10 08:32:32 +0000717 const Type *DestTy) {
Dan Gohmanf2411742009-07-20 17:43:30 +0000718 return
719 new(IdxList.size() + 1) GetElementPtrConstantExpr(C, IdxList, DestTy);
Gabor Greif051a9502008-04-06 20:25:17 +0000720 }
Gabor Greifefe65362008-05-10 08:32:32 +0000721 /// Transparently provide more efficient getOperand methods.
722 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000723};
724
725// CompareConstantExpr - This class is private to Constants.cpp, and is used
726// behind the scenes to implement ICmp and FCmp constant expressions. This is
727// needed in order to store the predicate value for these instructions.
728struct VISIBILITY_HIDDEN CompareConstantExpr : public ConstantExpr {
Gabor Greif051a9502008-04-06 20:25:17 +0000729 void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
730 // allocate space for exactly two operands
731 void *operator new(size_t s) {
732 return User::operator new(s, 2);
733 }
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000734 unsigned short predicate;
Nate Begemanac80ade2008-05-12 19:01:56 +0000735 CompareConstantExpr(const Type *ty, Instruction::OtherOps opc,
736 unsigned short pred, Constant* LHS, Constant* RHS)
737 : ConstantExpr(ty, opc, &Op<0>(), 2), predicate(pred) {
Gabor Greif6c80c382008-05-26 21:33:52 +0000738 Op<0>() = LHS;
739 Op<1>() = RHS;
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000740 }
Gabor Greifefe65362008-05-10 08:32:32 +0000741 /// Transparently provide more efficient getOperand methods.
742 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
Gordon Henriksenafba8fe2007-12-10 02:14:30 +0000743};
744
745} // end anonymous namespace
746
Gabor Greifefe65362008-05-10 08:32:32 +0000747template <>
748struct OperandTraits<UnaryConstantExpr> : FixedNumOperandTraits<1> {
749};
750DEFINE_TRANSPARENT_OPERAND_ACCESSORS(UnaryConstantExpr, Value)
751
752template <>
753struct OperandTraits<BinaryConstantExpr> : FixedNumOperandTraits<2> {
754};
755DEFINE_TRANSPARENT_OPERAND_ACCESSORS(BinaryConstantExpr, Value)
756
757template <>
758struct OperandTraits<SelectConstantExpr> : FixedNumOperandTraits<3> {
759};
760DEFINE_TRANSPARENT_OPERAND_ACCESSORS(SelectConstantExpr, Value)
761
762template <>
763struct OperandTraits<ExtractElementConstantExpr> : FixedNumOperandTraits<2> {
764};
765DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ExtractElementConstantExpr, Value)
766
767template <>
768struct OperandTraits<InsertElementConstantExpr> : FixedNumOperandTraits<3> {
769};
770DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InsertElementConstantExpr, Value)
771
772template <>
773struct OperandTraits<ShuffleVectorConstantExpr> : FixedNumOperandTraits<3> {
774};
775DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ShuffleVectorConstantExpr, Value)
776
Dan Gohman041e2eb2008-05-15 19:50:34 +0000777template <>
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000778struct OperandTraits<ExtractValueConstantExpr> : FixedNumOperandTraits<1> {
Dan Gohman041e2eb2008-05-15 19:50:34 +0000779};
Dan Gohman041e2eb2008-05-15 19:50:34 +0000780DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ExtractValueConstantExpr, Value)
781
782template <>
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000783struct OperandTraits<InsertValueConstantExpr> : FixedNumOperandTraits<2> {
Dan Gohman041e2eb2008-05-15 19:50:34 +0000784};
Dan Gohman041e2eb2008-05-15 19:50:34 +0000785DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InsertValueConstantExpr, Value)
786
Gabor Greifefe65362008-05-10 08:32:32 +0000787template <>
788struct OperandTraits<GetElementPtrConstantExpr> : VariadicOperandTraits<1> {
789};
790
791GetElementPtrConstantExpr::GetElementPtrConstantExpr
792 (Constant *C,
793 const std::vector<Constant*> &IdxList,
794 const Type *DestTy)
795 : ConstantExpr(DestTy, Instruction::GetElementPtr,
796 OperandTraits<GetElementPtrConstantExpr>::op_end(this)
797 - (IdxList.size()+1),
798 IdxList.size()+1) {
Gabor Greif6c80c382008-05-26 21:33:52 +0000799 OperandList[0] = C;
Gabor Greifefe65362008-05-10 08:32:32 +0000800 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
Gabor Greif6c80c382008-05-26 21:33:52 +0000801 OperandList[i+1] = IdxList[i];
Gabor Greifefe65362008-05-10 08:32:32 +0000802}
803
804DEFINE_TRANSPARENT_OPERAND_ACCESSORS(GetElementPtrConstantExpr, Value)
805
806
807template <>
808struct OperandTraits<CompareConstantExpr> : FixedNumOperandTraits<2> {
809};
810DEFINE_TRANSPARENT_OPERAND_ACCESSORS(CompareConstantExpr, Value)
811
812
813} // End llvm namespace
814
Reid Spencer3da59db2006-11-27 01:05:10 +0000815
816// Utility function for determining if a ConstantExpr is a CastOp or not. This
817// can't be inline because we don't want to #include Instruction.h into
818// Constant.h
819bool ConstantExpr::isCast() const {
820 return Instruction::isCast(getOpcode());
821}
822
Reid Spencer077d0eb2006-12-04 05:19:50 +0000823bool ConstantExpr::isCompare() const {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +0000824 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
Reid Spencer077d0eb2006-12-04 05:19:50 +0000825}
826
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000827bool ConstantExpr::hasIndices() const {
828 return getOpcode() == Instruction::ExtractValue ||
829 getOpcode() == Instruction::InsertValue;
830}
831
832const SmallVector<unsigned, 4> &ConstantExpr::getIndices() const {
833 if (const ExtractValueConstantExpr *EVCE =
834 dyn_cast<ExtractValueConstantExpr>(this))
835 return EVCE->Indices;
Dan Gohman1a203572008-06-23 16:39:44 +0000836
837 return cast<InsertValueConstantExpr>(this)->Indices;
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000838}
839
Reid Spencer728b6db2006-12-03 05:48:19 +0000840unsigned ConstantExpr::getPredicate() const {
Nate Begemanac80ade2008-05-12 19:01:56 +0000841 assert(getOpcode() == Instruction::FCmp ||
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +0000842 getOpcode() == Instruction::ICmp);
Chris Lattnerb7daa842007-10-18 16:26:24 +0000843 return ((const CompareConstantExpr*)this)->predicate;
Reid Spencer728b6db2006-12-03 05:48:19 +0000844}
Chris Lattnerf4ba6c72001-10-03 06:12:09 +0000845
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000846/// getWithOperandReplaced - Return a constant expression identical to this
847/// one, but with the specified operand set to the specified value.
Reid Spencer3da59db2006-11-27 01:05:10 +0000848Constant *
849ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000850 assert(OpNo < getNumOperands() && "Operand num is out of range!");
851 assert(Op->getType() == getOperand(OpNo)->getType() &&
852 "Replacing operand with value of different type!");
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000853 if (getOperand(OpNo) == Op)
854 return const_cast<ConstantExpr*>(this);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000855
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000856 Constant *Op0, *Op1, *Op2;
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000857 switch (getOpcode()) {
Reid Spencer3da59db2006-11-27 01:05:10 +0000858 case Instruction::Trunc:
859 case Instruction::ZExt:
860 case Instruction::SExt:
861 case Instruction::FPTrunc:
862 case Instruction::FPExt:
863 case Instruction::UIToFP:
864 case Instruction::SIToFP:
865 case Instruction::FPToUI:
866 case Instruction::FPToSI:
867 case Instruction::PtrToInt:
868 case Instruction::IntToPtr:
869 case Instruction::BitCast:
870 return ConstantExpr::getCast(getOpcode(), Op, getType());
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000871 case Instruction::Select:
872 Op0 = (OpNo == 0) ? Op : getOperand(0);
873 Op1 = (OpNo == 1) ? Op : getOperand(1);
874 Op2 = (OpNo == 2) ? Op : getOperand(2);
875 return ConstantExpr::getSelect(Op0, Op1, Op2);
876 case Instruction::InsertElement:
877 Op0 = (OpNo == 0) ? Op : getOperand(0);
878 Op1 = (OpNo == 1) ? Op : getOperand(1);
879 Op2 = (OpNo == 2) ? Op : getOperand(2);
880 return ConstantExpr::getInsertElement(Op0, Op1, Op2);
881 case Instruction::ExtractElement:
882 Op0 = (OpNo == 0) ? Op : getOperand(0);
883 Op1 = (OpNo == 1) ? Op : getOperand(1);
884 return ConstantExpr::getExtractElement(Op0, Op1);
885 case Instruction::ShuffleVector:
886 Op0 = (OpNo == 0) ? Op : getOperand(0);
887 Op1 = (OpNo == 1) ? Op : getOperand(1);
888 Op2 = (OpNo == 2) ? Op : getOperand(2);
889 return ConstantExpr::getShuffleVector(Op0, Op1, Op2);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000890 case Instruction::GetElementPtr: {
Chris Lattnerf9021ff2007-02-19 20:01:23 +0000891 SmallVector<Constant*, 8> Ops;
Dan Gohman041e2eb2008-05-15 19:50:34 +0000892 Ops.resize(getNumOperands()-1);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000893 for (unsigned i = 1, e = getNumOperands(); i != e; ++i)
Dan Gohman041e2eb2008-05-15 19:50:34 +0000894 Ops[i-1] = getOperand(i);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000895 if (OpNo == 0)
Chris Lattnerf9021ff2007-02-19 20:01:23 +0000896 return ConstantExpr::getGetElementPtr(Op, &Ops[0], Ops.size());
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000897 Ops[OpNo-1] = Op;
Chris Lattnerf9021ff2007-02-19 20:01:23 +0000898 return ConstantExpr::getGetElementPtr(getOperand(0), &Ops[0], Ops.size());
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000899 }
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000900 default:
901 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000902 Op0 = (OpNo == 0) ? Op : getOperand(0);
903 Op1 = (OpNo == 1) ? Op : getOperand(1);
904 return ConstantExpr::get(getOpcode(), Op0, Op1);
905 }
906}
907
908/// getWithOperands - This returns the current constant expression with the
909/// operands replaced with the specified values. The specified operands must
910/// match count and type with the existing ones.
911Constant *ConstantExpr::
Chris Lattnerb054bfd2008-08-20 22:27:40 +0000912getWithOperands(Constant* const *Ops, unsigned NumOps) const {
913 assert(NumOps == getNumOperands() && "Operand count mismatch!");
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000914 bool AnyChange = false;
Chris Lattnerb054bfd2008-08-20 22:27:40 +0000915 for (unsigned i = 0; i != NumOps; ++i) {
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000916 assert(Ops[i]->getType() == getOperand(i)->getType() &&
917 "Operand type mismatch!");
918 AnyChange |= Ops[i] != getOperand(i);
919 }
920 if (!AnyChange) // No operands changed, return self.
921 return const_cast<ConstantExpr*>(this);
922
923 switch (getOpcode()) {
Reid Spencer3da59db2006-11-27 01:05:10 +0000924 case Instruction::Trunc:
925 case Instruction::ZExt:
926 case Instruction::SExt:
927 case Instruction::FPTrunc:
928 case Instruction::FPExt:
929 case Instruction::UIToFP:
930 case Instruction::SIToFP:
931 case Instruction::FPToUI:
932 case Instruction::FPToSI:
933 case Instruction::PtrToInt:
934 case Instruction::IntToPtr:
935 case Instruction::BitCast:
936 return ConstantExpr::getCast(getOpcode(), Ops[0], getType());
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000937 case Instruction::Select:
938 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]);
939 case Instruction::InsertElement:
940 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]);
941 case Instruction::ExtractElement:
942 return ConstantExpr::getExtractElement(Ops[0], Ops[1]);
943 case Instruction::ShuffleVector:
944 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2]);
Chris Lattnerf9021ff2007-02-19 20:01:23 +0000945 case Instruction::GetElementPtr:
Chris Lattnerb054bfd2008-08-20 22:27:40 +0000946 return ConstantExpr::getGetElementPtr(Ops[0], &Ops[1], NumOps-1);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000947 case Instruction::ICmp:
948 case Instruction::FCmp:
949 return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1]);
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000950 default:
951 assert(getNumOperands() == 2 && "Must be binary operator?");
952 return ConstantExpr::get(getOpcode(), Ops[0], Ops[1]);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000953 }
954}
955
Chris Lattner00950542001-06-06 20:29:01 +0000956
957//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +0000958// isValueValidForType implementations
959
Reid Spencer9b11d512006-12-19 01:28:19 +0000960bool ConstantInt::isValueValidForType(const Type *Ty, uint64_t Val) {
Reid Spencera54b7cb2007-01-12 07:05:14 +0000961 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
Reid Spencera54b7cb2007-01-12 07:05:14 +0000962 if (Ty == Type::Int1Ty)
963 return Val == 0 || Val == 1;
Reid Spencer554cec62007-02-05 23:47:56 +0000964 if (NumBits >= 64)
Reid Spencera54b7cb2007-01-12 07:05:14 +0000965 return true; // always true, has to fit in largest type
966 uint64_t Max = (1ll << NumBits) - 1;
967 return Val <= Max;
Reid Spencer9b11d512006-12-19 01:28:19 +0000968}
969
Reid Spencerb83eb642006-10-20 07:07:24 +0000970bool ConstantInt::isValueValidForType(const Type *Ty, int64_t Val) {
Reid Spencera54b7cb2007-01-12 07:05:14 +0000971 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
Reid Spencera54b7cb2007-01-12 07:05:14 +0000972 if (Ty == Type::Int1Ty)
Reid Spencerc1030572007-01-19 21:13:56 +0000973 return Val == 0 || Val == 1 || Val == -1;
Reid Spencer554cec62007-02-05 23:47:56 +0000974 if (NumBits >= 64)
Reid Spencera54b7cb2007-01-12 07:05:14 +0000975 return true; // always true, has to fit in largest type
976 int64_t Min = -(1ll << (NumBits-1));
977 int64_t Max = (1ll << (NumBits-1)) - 1;
978 return (Val >= Min && Val <= Max);
Chris Lattner00950542001-06-06 20:29:01 +0000979}
980
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000981bool ConstantFP::isValueValidForType(const Type *Ty, const APFloat& Val) {
982 // convert modifies in place, so make a copy.
983 APFloat Val2 = APFloat(Val);
Dale Johannesen23a98552008-10-09 23:00:39 +0000984 bool losesInfo;
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000985 switch (Ty->getTypeID()) {
Chris Lattner00950542001-06-06 20:29:01 +0000986 default:
987 return false; // These can't be represented as floating point!
988
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000989 // FIXME rounding mode needs to be more flexible
Dale Johannesen23a98552008-10-09 23:00:39 +0000990 case Type::FloatTyID: {
991 if (&Val2.getSemantics() == &APFloat::IEEEsingle)
992 return true;
993 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
994 return !losesInfo;
995 }
996 case Type::DoubleTyID: {
997 if (&Val2.getSemantics() == &APFloat::IEEEsingle ||
998 &Val2.getSemantics() == &APFloat::IEEEdouble)
999 return true;
1000 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
1001 return !losesInfo;
1002 }
Dale Johannesenebbc95d2007-08-09 22:51:36 +00001003 case Type::X86_FP80TyID:
Dale Johannesen9d5f4562007-09-12 03:30:33 +00001004 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
1005 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1006 &Val2.getSemantics() == &APFloat::x87DoubleExtended;
Dale Johannesenebbc95d2007-08-09 22:51:36 +00001007 case Type::FP128TyID:
Dale Johannesen9d5f4562007-09-12 03:30:33 +00001008 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
1009 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1010 &Val2.getSemantics() == &APFloat::IEEEquad;
Dale Johannesena471c2e2007-10-11 18:07:22 +00001011 case Type::PPC_FP128TyID:
1012 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
1013 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1014 &Val2.getSemantics() == &APFloat::PPCDoubleDouble;
Chris Lattner00950542001-06-06 20:29:01 +00001015 }
Chris Lattnerd74ea2b2006-05-24 17:04:05 +00001016}
Chris Lattner37bf6302001-07-20 19:16:02 +00001017
Chris Lattner531daef2001-09-07 16:46:31 +00001018//===----------------------------------------------------------------------===//
Chris Lattner531daef2001-09-07 16:46:31 +00001019// Factory Function Implementation
1020
Dan Gohman0f8b53f2009-03-03 02:55:14 +00001021/// destroyConstant - Remove the constant from the constant table...
1022///
Owen Anderson04fb7c32009-06-20 00:24:58 +00001023void ConstantAggregateZero::destroyConstant() {
Owen Anderson31c36f02009-06-17 20:10:08 +00001024 // Implicitly locked.
Owen Anderson16e298f2009-07-21 20:13:12 +00001025 getType()->getContext().erase(this);
Chris Lattner40bbeb52004-02-15 05:53:04 +00001026 destroyConstantImpl();
1027}
1028
Dan Gohman0f8b53f2009-03-03 02:55:14 +00001029/// destroyConstant - Remove the constant from the constant table...
1030///
Owen Anderson04fb7c32009-06-20 00:24:58 +00001031void ConstantArray::destroyConstant() {
Owen Anderson1f0ba8c2009-06-19 18:34:09 +00001032 // Implicitly locked.
Owen Anderson1fd70962009-07-28 18:32:17 +00001033 getType()->getContext().pImpl->ArrayConstants.remove(this);
Chris Lattner02ec5ed2003-05-23 20:03:32 +00001034 destroyConstantImpl();
1035}
1036
Reid Spencer3d10b0b2007-01-26 07:37:34 +00001037/// isString - This method returns true if the array is an array of i8, and
1038/// if the elements of the array are all ConstantInt's.
Chris Lattner13cfdea2004-01-14 17:06:38 +00001039bool ConstantArray::isString() const {
Reid Spencer3d10b0b2007-01-26 07:37:34 +00001040 // Check the element type for i8...
Reid Spencer79e21d32006-12-31 05:26:44 +00001041 if (getType()->getElementType() != Type::Int8Ty)
Chris Lattner13cfdea2004-01-14 17:06:38 +00001042 return false;
1043 // Check the elements to make sure they are all integers, not constant
1044 // expressions.
1045 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1046 if (!isa<ConstantInt>(getOperand(i)))
1047 return false;
1048 return true;
1049}
1050
Evan Cheng22c70302006-10-26 19:15:05 +00001051/// isCString - This method returns true if the array is a string (see
Dan Gohman0f8b53f2009-03-03 02:55:14 +00001052/// isString) and it ends in a null byte \\0 and does not contains any other
Evan Cheng22c70302006-10-26 19:15:05 +00001053/// null bytes except its terminator.
Owen Anderson1ca29d32009-07-13 21:27:19 +00001054bool ConstantArray::isCString() const {
Reid Spencer3d10b0b2007-01-26 07:37:34 +00001055 // Check the element type for i8...
Reid Spencer79e21d32006-12-31 05:26:44 +00001056 if (getType()->getElementType() != Type::Int8Ty)
Evan Chengabf63452006-10-26 21:48:03 +00001057 return false;
Owen Anderson1ca29d32009-07-13 21:27:19 +00001058
Evan Chengabf63452006-10-26 21:48:03 +00001059 // Last element must be a null.
Owen Anderson1ca29d32009-07-13 21:27:19 +00001060 if (!getOperand(getNumOperands()-1)->isNullValue())
Evan Chengabf63452006-10-26 21:48:03 +00001061 return false;
1062 // Other elements must be non-null integers.
1063 for (unsigned i = 0, e = getNumOperands()-1; i != e; ++i) {
1064 if (!isa<ConstantInt>(getOperand(i)))
Evan Cheng22c70302006-10-26 19:15:05 +00001065 return false;
Owen Anderson1ca29d32009-07-13 21:27:19 +00001066 if (getOperand(i)->isNullValue())
Evan Chengabf63452006-10-26 21:48:03 +00001067 return false;
1068 }
Evan Cheng22c70302006-10-26 19:15:05 +00001069 return true;
1070}
1071
1072
Dan Gohman0f8b53f2009-03-03 02:55:14 +00001073/// getAsString - If the sub-element type of this array is i8
1074/// then this method converts the array to an std::string and returns it.
1075/// Otherwise, it asserts out.
1076///
Chris Lattner93aeea32002-08-26 17:53:56 +00001077std::string ConstantArray::getAsString() const {
Chris Lattner13cfdea2004-01-14 17:06:38 +00001078 assert(isString() && "Not a string!");
Chris Lattner93aeea32002-08-26 17:53:56 +00001079 std::string Result;
Owen Anderson45e39582008-06-24 21:58:29 +00001080 Result.reserve(getNumOperands());
Chris Lattnerc07736a2003-07-23 15:22:26 +00001081 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Owen Andersone4f6ee52008-06-25 01:05:05 +00001082 Result.push_back((char)cast<ConstantInt>(getOperand(i))->getZExtValue());
Chris Lattner93aeea32002-08-26 17:53:56 +00001083 return Result;
1084}
1085
1086
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001087//---- ConstantStruct::get() implementation...
Chris Lattner531daef2001-09-07 16:46:31 +00001088//
Chris Lattnered468e372003-10-05 00:17:43 +00001089
Chris Lattner31f84992003-11-21 20:23:48 +00001090namespace llvm {
Misha Brukmanfd939082005-04-21 23:48:37 +00001091
Chris Lattner531daef2001-09-07 16:46:31 +00001092}
Chris Lattner6a57baa2001-10-03 15:39:36 +00001093
Chris Lattnerf5ec48d2001-10-13 06:57:33 +00001094// destroyConstant - Remove the constant from the constant table...
Chris Lattner6a57baa2001-10-03 15:39:36 +00001095//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001096void ConstantStruct::destroyConstant() {
Owen Anderson1f0ba8c2009-06-19 18:34:09 +00001097 // Implicitly locked.
Owen Anderson8fa33382009-07-27 22:29:26 +00001098 getType()->getContext().pImpl->StructConstants.remove(this);
Chris Lattnerf5ec48d2001-10-13 06:57:33 +00001099 destroyConstantImpl();
1100}
Chris Lattner6a57baa2001-10-03 15:39:36 +00001101
Brian Gaeke715c90b2004-08-20 06:00:58 +00001102// destroyConstant - Remove the constant from the constant table...
1103//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001104void ConstantVector::destroyConstant() {
Owen Anderson1f0ba8c2009-06-19 18:34:09 +00001105 // Implicitly locked.
Owen Andersonaf7ec972009-07-28 21:19:26 +00001106 getType()->getContext().pImpl->VectorConstants.remove(this);
Brian Gaeke715c90b2004-08-20 06:00:58 +00001107 destroyConstantImpl();
1108}
1109
Dan Gohmanfa73ea22007-05-24 14:36:04 +00001110/// This function will return true iff every element in this vector constant
Jim Laskeyfa301822007-01-12 22:39:14 +00001111/// is set to all ones.
1112/// @returns true iff this constant's emements are all set to all ones.
1113/// @brief Determine if the value is all ones.
Reid Spencer9d6565a2007-02-15 02:26:10 +00001114bool ConstantVector::isAllOnesValue() const {
Jim Laskeyfa301822007-01-12 22:39:14 +00001115 // Check out first element.
1116 const Constant *Elt = getOperand(0);
1117 const ConstantInt *CI = dyn_cast<ConstantInt>(Elt);
1118 if (!CI || !CI->isAllOnesValue()) return false;
1119 // Then make sure all remaining elements point to the same value.
1120 for (unsigned I = 1, E = getNumOperands(); I < E; ++I) {
1121 if (getOperand(I) != Elt) return false;
1122 }
1123 return true;
1124}
1125
Dan Gohman3b7cf0a2007-10-17 17:51:30 +00001126/// getSplatValue - If this is a splat constant, where all of the
1127/// elements have the same value, return that value. Otherwise return null.
1128Constant *ConstantVector::getSplatValue() {
1129 // Check out first element.
1130 Constant *Elt = getOperand(0);
1131 // Then make sure all remaining elements point to the same value.
1132 for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
1133 if (getOperand(I) != Elt) return 0;
1134 return Elt;
1135}
1136
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001137//---- ConstantPointerNull::get() implementation...
Chris Lattnerf5ec48d2001-10-13 06:57:33 +00001138//
Chris Lattner02ec5ed2003-05-23 20:03:32 +00001139
Chris Lattner31f84992003-11-21 20:23:48 +00001140namespace llvm {
1141 // ConstantPointerNull does not take extra "value" argument...
1142 template<class ValType>
1143 struct ConstantCreator<ConstantPointerNull, PointerType, ValType> {
1144 static ConstantPointerNull *create(const PointerType *Ty, const ValType &V){
1145 return new ConstantPointerNull(Ty);
1146 }
1147 };
Chris Lattner02ec5ed2003-05-23 20:03:32 +00001148
Chris Lattner31f84992003-11-21 20:23:48 +00001149 template<>
1150 struct ConvertConstantType<ConstantPointerNull, PointerType> {
1151 static void convert(ConstantPointerNull *OldC, const PointerType *NewTy) {
1152 // Make everyone now use a constant of the new type...
Owen Anderson04fb7c32009-06-20 00:24:58 +00001153 Constant *New = ConstantPointerNull::get(NewTy);
Chris Lattner31f84992003-11-21 20:23:48 +00001154 assert(New != OldC && "Didn't replace constant??");
1155 OldC->uncheckedReplaceAllUsesWith(New);
Owen Anderson04fb7c32009-06-20 00:24:58 +00001156 OldC->destroyConstant(); // This constant is now dead, destroy it.
Chris Lattner31f84992003-11-21 20:23:48 +00001157 }
1158 };
1159}
Chris Lattnered468e372003-10-05 00:17:43 +00001160
Chris Lattner8a94bf12006-09-28 00:35:06 +00001161static ManagedStatic<ValueMap<char, PointerType,
1162 ConstantPointerNull> > NullPtrConstants;
Chris Lattnerf5ec48d2001-10-13 06:57:33 +00001163
Chris Lattner6823c9f2004-08-04 04:48:01 +00001164static char getValType(ConstantPointerNull *) {
1165 return 0;
1166}
1167
1168
Owen Anderson04fb7c32009-06-20 00:24:58 +00001169ConstantPointerNull *ConstantPointerNull::get(const PointerType *Ty) {
Owen Anderson31c36f02009-06-17 20:10:08 +00001170 // Implicitly locked.
Owen Anderson04fb7c32009-06-20 00:24:58 +00001171 return NullPtrConstants->getOrCreate(Ty, 0);
Chris Lattner6a57baa2001-10-03 15:39:36 +00001172}
1173
Chris Lattner41661fd2002-08-18 00:40:04 +00001174// destroyConstant - Remove the constant from the constant table...
1175//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001176void ConstantPointerNull::destroyConstant() {
Owen Anderson1f0ba8c2009-06-19 18:34:09 +00001177 // Implicitly locked.
Owen Anderson04fb7c32009-06-20 00:24:58 +00001178 NullPtrConstants->remove(this);
Chris Lattner41661fd2002-08-18 00:40:04 +00001179 destroyConstantImpl();
1180}
1181
1182
Chris Lattnerb9f18592004-10-16 18:07:16 +00001183//---- UndefValue::get() implementation...
1184//
1185
1186namespace llvm {
1187 // UndefValue does not take extra "value" argument...
1188 template<class ValType>
1189 struct ConstantCreator<UndefValue, Type, ValType> {
1190 static UndefValue *create(const Type *Ty, const ValType &V) {
1191 return new UndefValue(Ty);
1192 }
1193 };
1194
1195 template<>
1196 struct ConvertConstantType<UndefValue, Type> {
1197 static void convert(UndefValue *OldC, const Type *NewTy) {
1198 // Make everyone now use a constant of the new type.
Owen Anderson04fb7c32009-06-20 00:24:58 +00001199 Constant *New = UndefValue::get(NewTy);
Chris Lattnerb9f18592004-10-16 18:07:16 +00001200 assert(New != OldC && "Didn't replace constant??");
1201 OldC->uncheckedReplaceAllUsesWith(New);
Owen Anderson04fb7c32009-06-20 00:24:58 +00001202 OldC->destroyConstant(); // This constant is now dead, destroy it.
Chris Lattnerb9f18592004-10-16 18:07:16 +00001203 }
1204 };
1205}
1206
Chris Lattner8a94bf12006-09-28 00:35:06 +00001207static ManagedStatic<ValueMap<char, Type, UndefValue> > UndefValueConstants;
Chris Lattnerb9f18592004-10-16 18:07:16 +00001208
1209static char getValType(UndefValue *) {
1210 return 0;
1211}
1212
1213
Owen Anderson04fb7c32009-06-20 00:24:58 +00001214UndefValue *UndefValue::get(const Type *Ty) {
1215 // Implicitly locked.
1216 return UndefValueConstants->getOrCreate(Ty, 0);
Chris Lattnerb9f18592004-10-16 18:07:16 +00001217}
1218
1219// destroyConstant - Remove the constant from the constant table.
1220//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001221void UndefValue::destroyConstant() {
Owen Anderson31c36f02009-06-17 20:10:08 +00001222 // Implicitly locked.
Owen Anderson04fb7c32009-06-20 00:24:58 +00001223 UndefValueConstants->remove(this);
Chris Lattnerb9f18592004-10-16 18:07:16 +00001224 destroyConstantImpl();
1225}
1226
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001227//---- ConstantExpr::get() implementations...
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001228//
Reid Spencer79e21d32006-12-31 05:26:44 +00001229
Dan Gohman844731a2008-05-13 00:00:25 +00001230namespace {
1231
Reid Spencer077d0eb2006-12-04 05:19:50 +00001232struct ExprMapKeyType {
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001233 typedef SmallVector<unsigned, 4> IndexList;
1234
1235 ExprMapKeyType(unsigned opc,
1236 const std::vector<Constant*> &ops,
1237 unsigned short pred = 0,
1238 const IndexList &inds = IndexList())
1239 : opcode(opc), predicate(pred), operands(ops), indices(inds) {}
Reid Spencer8d5a6ae2006-12-04 18:38:05 +00001240 uint16_t opcode;
1241 uint16_t predicate;
Reid Spencer077d0eb2006-12-04 05:19:50 +00001242 std::vector<Constant*> operands;
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001243 IndexList indices;
Reid Spencer077d0eb2006-12-04 05:19:50 +00001244 bool operator==(const ExprMapKeyType& that) const {
1245 return this->opcode == that.opcode &&
1246 this->predicate == that.predicate &&
Bill Wendling9a20afd2008-10-26 00:19:56 +00001247 this->operands == that.operands &&
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001248 this->indices == that.indices;
Reid Spencer077d0eb2006-12-04 05:19:50 +00001249 }
1250 bool operator<(const ExprMapKeyType & that) const {
1251 return this->opcode < that.opcode ||
1252 (this->opcode == that.opcode && this->predicate < that.predicate) ||
1253 (this->opcode == that.opcode && this->predicate == that.predicate &&
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001254 this->operands < that.operands) ||
1255 (this->opcode == that.opcode && this->predicate == that.predicate &&
1256 this->operands == that.operands && this->indices < that.indices);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001257 }
1258
1259 bool operator!=(const ExprMapKeyType& that) const {
1260 return !(*this == that);
1261 }
1262};
Chris Lattner02ec5ed2003-05-23 20:03:32 +00001263
Dan Gohman844731a2008-05-13 00:00:25 +00001264}
1265
Chris Lattner31f84992003-11-21 20:23:48 +00001266namespace llvm {
1267 template<>
1268 struct ConstantCreator<ConstantExpr, Type, ExprMapKeyType> {
Reid Spencer728b6db2006-12-03 05:48:19 +00001269 static ConstantExpr *create(const Type *Ty, const ExprMapKeyType &V,
1270 unsigned short pred = 0) {
Reid Spencer077d0eb2006-12-04 05:19:50 +00001271 if (Instruction::isCast(V.opcode))
1272 return new UnaryConstantExpr(V.opcode, V.operands[0], Ty);
1273 if ((V.opcode >= Instruction::BinaryOpsBegin &&
Reid Spencer832254e2007-02-02 02:16:23 +00001274 V.opcode < Instruction::BinaryOpsEnd))
Reid Spencer077d0eb2006-12-04 05:19:50 +00001275 return new BinaryConstantExpr(V.opcode, V.operands[0], V.operands[1]);
1276 if (V.opcode == Instruction::Select)
1277 return new SelectConstantExpr(V.operands[0], V.operands[1],
1278 V.operands[2]);
1279 if (V.opcode == Instruction::ExtractElement)
1280 return new ExtractElementConstantExpr(V.operands[0], V.operands[1]);
1281 if (V.opcode == Instruction::InsertElement)
1282 return new InsertElementConstantExpr(V.operands[0], V.operands[1],
1283 V.operands[2]);
1284 if (V.opcode == Instruction::ShuffleVector)
1285 return new ShuffleVectorConstantExpr(V.operands[0], V.operands[1],
1286 V.operands[2]);
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001287 if (V.opcode == Instruction::InsertValue)
1288 return new InsertValueConstantExpr(V.operands[0], V.operands[1],
1289 V.indices, Ty);
1290 if (V.opcode == Instruction::ExtractValue)
1291 return new ExtractValueConstantExpr(V.operands[0], V.indices, Ty);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001292 if (V.opcode == Instruction::GetElementPtr) {
1293 std::vector<Constant*> IdxList(V.operands.begin()+1, V.operands.end());
Gabor Greif051a9502008-04-06 20:25:17 +00001294 return GetElementPtrConstantExpr::Create(V.operands[0], IdxList, Ty);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001295 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001296
Reid Spencer077d0eb2006-12-04 05:19:50 +00001297 // The compare instructions are weird. We have to encode the predicate
1298 // value and it is combined with the instruction opcode by multiplying
1299 // the opcode by one hundred. We must decode this to get the predicate.
1300 if (V.opcode == Instruction::ICmp)
Nate Begemanac80ade2008-05-12 19:01:56 +00001301 return new CompareConstantExpr(Ty, Instruction::ICmp, V.predicate,
Reid Spencer077d0eb2006-12-04 05:19:50 +00001302 V.operands[0], V.operands[1]);
1303 if (V.opcode == Instruction::FCmp)
Nate Begemanac80ade2008-05-12 19:01:56 +00001304 return new CompareConstantExpr(Ty, Instruction::FCmp, V.predicate,
1305 V.operands[0], V.operands[1]);
Torok Edwinc23197a2009-07-14 16:55:14 +00001306 llvm_unreachable("Invalid ConstantExpr!");
Jeff Cohen6ebe2352006-12-15 21:47:01 +00001307 return 0;
Chris Lattnered468e372003-10-05 00:17:43 +00001308 }
Chris Lattner31f84992003-11-21 20:23:48 +00001309 };
Chris Lattnered468e372003-10-05 00:17:43 +00001310
Chris Lattner31f84992003-11-21 20:23:48 +00001311 template<>
1312 struct ConvertConstantType<ConstantExpr, Type> {
1313 static void convert(ConstantExpr *OldC, const Type *NewTy) {
1314 Constant *New;
1315 switch (OldC->getOpcode()) {
Reid Spencer3da59db2006-11-27 01:05:10 +00001316 case Instruction::Trunc:
1317 case Instruction::ZExt:
1318 case Instruction::SExt:
1319 case Instruction::FPTrunc:
1320 case Instruction::FPExt:
1321 case Instruction::UIToFP:
1322 case Instruction::SIToFP:
1323 case Instruction::FPToUI:
1324 case Instruction::FPToSI:
1325 case Instruction::PtrToInt:
1326 case Instruction::IntToPtr:
1327 case Instruction::BitCast:
Reid Spencerd977d862006-12-12 23:36:14 +00001328 New = ConstantExpr::getCast(OldC->getOpcode(), OldC->getOperand(0),
Owen Anderson04fb7c32009-06-20 00:24:58 +00001329 NewTy);
Chris Lattner31f84992003-11-21 20:23:48 +00001330 break;
Chris Lattner08a45cc2004-03-12 05:54:04 +00001331 case Instruction::Select:
1332 New = ConstantExpr::getSelectTy(NewTy, OldC->getOperand(0),
1333 OldC->getOperand(1),
Owen Anderson04fb7c32009-06-20 00:24:58 +00001334 OldC->getOperand(2));
Chris Lattner08a45cc2004-03-12 05:54:04 +00001335 break;
Chris Lattner31f84992003-11-21 20:23:48 +00001336 default:
1337 assert(OldC->getOpcode() >= Instruction::BinaryOpsBegin &&
Reid Spencer0a783f72006-11-02 01:53:59 +00001338 OldC->getOpcode() < Instruction::BinaryOpsEnd);
Chris Lattner31f84992003-11-21 20:23:48 +00001339 New = ConstantExpr::getTy(NewTy, OldC->getOpcode(), OldC->getOperand(0),
Owen Anderson04fb7c32009-06-20 00:24:58 +00001340 OldC->getOperand(1));
Chris Lattner31f84992003-11-21 20:23:48 +00001341 break;
1342 case Instruction::GetElementPtr:
Misha Brukmanfd939082005-04-21 23:48:37 +00001343 // Make everyone now use a constant of the new type...
Chris Lattner7fa6e662004-10-11 22:52:25 +00001344 std::vector<Value*> Idx(OldC->op_begin()+1, OldC->op_end());
Chris Lattner2b9a5da2007-01-31 04:40:28 +00001345 New = ConstantExpr::getGetElementPtrTy(NewTy, OldC->getOperand(0),
Owen Anderson04fb7c32009-06-20 00:24:58 +00001346 &Idx[0], Idx.size());
Chris Lattner31f84992003-11-21 20:23:48 +00001347 break;
1348 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001349
Chris Lattner31f84992003-11-21 20:23:48 +00001350 assert(New != OldC && "Didn't replace constant??");
1351 OldC->uncheckedReplaceAllUsesWith(New);
Owen Anderson04fb7c32009-06-20 00:24:58 +00001352 OldC->destroyConstant(); // This constant is now dead, destroy it.
Chris Lattner31f84992003-11-21 20:23:48 +00001353 }
1354 };
1355} // end namespace llvm
Chris Lattnered468e372003-10-05 00:17:43 +00001356
1357
Chris Lattner6823c9f2004-08-04 04:48:01 +00001358static ExprMapKeyType getValType(ConstantExpr *CE) {
1359 std::vector<Constant*> Operands;
1360 Operands.reserve(CE->getNumOperands());
1361 for (unsigned i = 0, e = CE->getNumOperands(); i != e; ++i)
1362 Operands.push_back(cast<Constant>(CE->getOperand(i)));
Reid Spencer077d0eb2006-12-04 05:19:50 +00001363 return ExprMapKeyType(CE->getOpcode(), Operands,
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001364 CE->isCompare() ? CE->getPredicate() : 0,
1365 CE->hasIndices() ?
1366 CE->getIndices() : SmallVector<unsigned, 4>());
Chris Lattner6823c9f2004-08-04 04:48:01 +00001367}
1368
Chris Lattner8a94bf12006-09-28 00:35:06 +00001369static ManagedStatic<ValueMap<ExprMapKeyType, Type,
1370 ConstantExpr> > ExprConstants;
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00001371
Reid Spencer3da59db2006-11-27 01:05:10 +00001372/// This is a utility function to handle folding of casts and lookup of the
Duncan Sands66a1a052008-03-30 19:38:55 +00001373/// cast in the ExprConstants map. It is used by the various get* methods below.
Reid Spencer3da59db2006-11-27 01:05:10 +00001374static inline Constant *getFoldedCast(
Owen Anderson04fb7c32009-06-20 00:24:58 +00001375 Instruction::CastOps opc, Constant *C, const Type *Ty) {
Chris Lattner9eacf8a2003-10-07 22:19:19 +00001376 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
Reid Spencer3da59db2006-11-27 01:05:10 +00001377 // Fold a few common cases
Owen Anderson0a5372e2009-07-13 04:09:18 +00001378 if (Constant *FC =
1379 ConstantFoldCastInstruction(getGlobalContext(), opc, C, Ty))
Reid Spencer3da59db2006-11-27 01:05:10 +00001380 return FC;
Chris Lattnerd628f6a2003-04-17 19:24:48 +00001381
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00001382 // Look up the constant in the table first to ensure uniqueness
Chris Lattner9bc02a42003-05-13 21:37:02 +00001383 std::vector<Constant*> argVec(1, C);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001384 ExprMapKeyType Key(opc, argVec);
Owen Anderson3e456ab2009-06-17 18:40:29 +00001385
Owen Anderson31c36f02009-06-17 20:10:08 +00001386 // Implicitly locked.
Owen Anderson04fb7c32009-06-20 00:24:58 +00001387 return ExprConstants->getOrCreate(Ty, Key);
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001388}
Reid Spencer7858b332006-12-05 19:14:13 +00001389
Owen Anderson04fb7c32009-06-20 00:24:58 +00001390Constant *ConstantExpr::getCast(unsigned oc, Constant *C, const Type *Ty) {
Reid Spencer3da59db2006-11-27 01:05:10 +00001391 Instruction::CastOps opc = Instruction::CastOps(oc);
1392 assert(Instruction::isCast(opc) && "opcode out of range");
1393 assert(C && Ty && "Null arguments to getCast");
1394 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
1395
1396 switch (opc) {
1397 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001398 llvm_unreachable("Invalid cast opcode");
Reid Spencer3da59db2006-11-27 01:05:10 +00001399 break;
Owen Anderson04fb7c32009-06-20 00:24:58 +00001400 case Instruction::Trunc: return getTrunc(C, Ty);
1401 case Instruction::ZExt: return getZExt(C, Ty);
1402 case Instruction::SExt: return getSExt(C, Ty);
1403 case Instruction::FPTrunc: return getFPTrunc(C, Ty);
1404 case Instruction::FPExt: return getFPExtend(C, Ty);
1405 case Instruction::UIToFP: return getUIToFP(C, Ty);
1406 case Instruction::SIToFP: return getSIToFP(C, Ty);
1407 case Instruction::FPToUI: return getFPToUI(C, Ty);
1408 case Instruction::FPToSI: return getFPToSI(C, Ty);
1409 case Instruction::PtrToInt: return getPtrToInt(C, Ty);
1410 case Instruction::IntToPtr: return getIntToPtr(C, Ty);
1411 case Instruction::BitCast: return getBitCast(C, Ty);
Chris Lattnerf5ac6c22005-01-01 15:59:57 +00001412 }
Reid Spencer3da59db2006-11-27 01:05:10 +00001413 return 0;
Reid Spencer7858b332006-12-05 19:14:13 +00001414}
1415
Reid Spencer848414e2006-12-04 20:17:56 +00001416Constant *ConstantExpr::getZExtOrBitCast(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001417 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Reid Spencer848414e2006-12-04 20:17:56 +00001418 return getCast(Instruction::BitCast, C, Ty);
1419 return getCast(Instruction::ZExt, C, Ty);
1420}
1421
Owen Anderson04fb7c32009-06-20 00:24:58 +00001422Constant *ConstantExpr::getSExtOrBitCast(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001423 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Owen Anderson04fb7c32009-06-20 00:24:58 +00001424 return getCast(Instruction::BitCast, C, Ty);
1425 return getCast(Instruction::SExt, C, Ty);
Reid Spencer848414e2006-12-04 20:17:56 +00001426}
1427
1428Constant *ConstantExpr::getTruncOrBitCast(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001429 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Reid Spencer848414e2006-12-04 20:17:56 +00001430 return getCast(Instruction::BitCast, C, Ty);
1431 return getCast(Instruction::Trunc, C, Ty);
1432}
1433
Owen Anderson04fb7c32009-06-20 00:24:58 +00001434Constant *ConstantExpr::getPointerCast(Constant *S, const Type *Ty) {
Reid Spencerc0459fb2006-12-05 03:25:26 +00001435 assert(isa<PointerType>(S->getType()) && "Invalid cast");
Chris Lattner42a75512007-01-15 02:27:26 +00001436 assert((Ty->isInteger() || isa<PointerType>(Ty)) && "Invalid cast");
Reid Spencerc0459fb2006-12-05 03:25:26 +00001437
Chris Lattner42a75512007-01-15 02:27:26 +00001438 if (Ty->isInteger())
Owen Anderson04fb7c32009-06-20 00:24:58 +00001439 return getCast(Instruction::PtrToInt, S, Ty);
1440 return getCast(Instruction::BitCast, S, Ty);
Reid Spencerc0459fb2006-12-05 03:25:26 +00001441}
1442
Reid Spencer84f3eab2006-12-12 00:51:07 +00001443Constant *ConstantExpr::getIntegerCast(Constant *C, const Type *Ty,
1444 bool isSigned) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001445 assert(C->getType()->isIntOrIntVector() &&
1446 Ty->isIntOrIntVector() && "Invalid cast");
1447 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1448 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer84f3eab2006-12-12 00:51:07 +00001449 Instruction::CastOps opcode =
1450 (SrcBits == DstBits ? Instruction::BitCast :
1451 (SrcBits > DstBits ? Instruction::Trunc :
1452 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1453 return getCast(opcode, C, Ty);
1454}
1455
1456Constant *ConstantExpr::getFPCast(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001457 assert(C->getType()->isFPOrFPVector() && Ty->isFPOrFPVector() &&
Reid Spencer84f3eab2006-12-12 00:51:07 +00001458 "Invalid cast");
Dan Gohman6de29f82009-06-15 22:12:54 +00001459 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1460 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencerf25212a2006-12-12 05:38:50 +00001461 if (SrcBits == DstBits)
1462 return C; // Avoid a useless cast
Reid Spencer84f3eab2006-12-12 00:51:07 +00001463 Instruction::CastOps opcode =
Reid Spencerf25212a2006-12-12 05:38:50 +00001464 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
Reid Spencer84f3eab2006-12-12 00:51:07 +00001465 return getCast(opcode, C, Ty);
1466}
1467
Owen Anderson04fb7c32009-06-20 00:24:58 +00001468Constant *ConstantExpr::getTrunc(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001469#ifndef NDEBUG
1470 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1471 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1472#endif
1473 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1474 assert(C->getType()->isIntOrIntVector() && "Trunc operand must be integer");
1475 assert(Ty->isIntOrIntVector() && "Trunc produces only integral");
1476 assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001477 "SrcTy must be larger than DestTy for Trunc!");
1478
Owen Anderson04fb7c32009-06-20 00:24:58 +00001479 return getFoldedCast(Instruction::Trunc, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001480}
1481
Owen Anderson04fb7c32009-06-20 00:24:58 +00001482Constant *ConstantExpr::getSExt(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001483#ifndef NDEBUG
1484 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1485 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1486#endif
1487 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1488 assert(C->getType()->isIntOrIntVector() && "SExt operand must be integral");
1489 assert(Ty->isIntOrIntVector() && "SExt produces only integer");
1490 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001491 "SrcTy must be smaller than DestTy for SExt!");
1492
Owen Anderson04fb7c32009-06-20 00:24:58 +00001493 return getFoldedCast(Instruction::SExt, C, Ty);
Chris Lattnerd144f422004-04-04 23:20:30 +00001494}
1495
Owen Anderson04fb7c32009-06-20 00:24:58 +00001496Constant *ConstantExpr::getZExt(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001497#ifndef NDEBUG
1498 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1499 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1500#endif
1501 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1502 assert(C->getType()->isIntOrIntVector() && "ZEXt operand must be integral");
1503 assert(Ty->isIntOrIntVector() && "ZExt produces only integer");
1504 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001505 "SrcTy must be smaller than DestTy for ZExt!");
1506
Owen Anderson04fb7c32009-06-20 00:24:58 +00001507 return getFoldedCast(Instruction::ZExt, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001508}
1509
Owen Anderson04fb7c32009-06-20 00:24:58 +00001510Constant *ConstantExpr::getFPTrunc(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001511#ifndef NDEBUG
1512 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1513 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1514#endif
1515 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1516 assert(C->getType()->isFPOrFPVector() && Ty->isFPOrFPVector() &&
1517 C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001518 "This is an illegal floating point truncation!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001519 return getFoldedCast(Instruction::FPTrunc, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001520}
1521
Owen Anderson04fb7c32009-06-20 00:24:58 +00001522Constant *ConstantExpr::getFPExtend(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001523#ifndef NDEBUG
1524 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1525 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1526#endif
1527 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1528 assert(C->getType()->isFPOrFPVector() && Ty->isFPOrFPVector() &&
1529 C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001530 "This is an illegal floating point extension!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001531 return getFoldedCast(Instruction::FPExt, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001532}
1533
Owen Anderson04fb7c32009-06-20 00:24:58 +00001534Constant *ConstantExpr::getUIToFP(Constant *C, const Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001535#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001536 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1537 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001538#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001539 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1540 assert(C->getType()->isIntOrIntVector() && Ty->isFPOrFPVector() &&
1541 "This is an illegal uint to floating point cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001542 return getFoldedCast(Instruction::UIToFP, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001543}
1544
Owen Anderson04fb7c32009-06-20 00:24:58 +00001545Constant *ConstantExpr::getSIToFP(Constant *C, const Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001546#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001547 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1548 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001549#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001550 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1551 assert(C->getType()->isIntOrIntVector() && Ty->isFPOrFPVector() &&
Reid Spencer3da59db2006-11-27 01:05:10 +00001552 "This is an illegal sint to floating point cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001553 return getFoldedCast(Instruction::SIToFP, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001554}
1555
Owen Anderson04fb7c32009-06-20 00:24:58 +00001556Constant *ConstantExpr::getFPToUI(Constant *C, const Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001557#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001558 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1559 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001560#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001561 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1562 assert(C->getType()->isFPOrFPVector() && Ty->isIntOrIntVector() &&
1563 "This is an illegal floating point to uint cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001564 return getFoldedCast(Instruction::FPToUI, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001565}
1566
Owen Anderson04fb7c32009-06-20 00:24:58 +00001567Constant *ConstantExpr::getFPToSI(Constant *C, const Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001568#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001569 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1570 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001571#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001572 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1573 assert(C->getType()->isFPOrFPVector() && Ty->isIntOrIntVector() &&
1574 "This is an illegal floating point to sint cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001575 return getFoldedCast(Instruction::FPToSI, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001576}
1577
Owen Anderson04fb7c32009-06-20 00:24:58 +00001578Constant *ConstantExpr::getPtrToInt(Constant *C, const Type *DstTy) {
Reid Spencer3da59db2006-11-27 01:05:10 +00001579 assert(isa<PointerType>(C->getType()) && "PtrToInt source must be pointer");
Chris Lattner42a75512007-01-15 02:27:26 +00001580 assert(DstTy->isInteger() && "PtrToInt destination must be integral");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001581 return getFoldedCast(Instruction::PtrToInt, C, DstTy);
Reid Spencer3da59db2006-11-27 01:05:10 +00001582}
1583
Owen Anderson04fb7c32009-06-20 00:24:58 +00001584Constant *ConstantExpr::getIntToPtr(Constant *C, const Type *DstTy) {
Chris Lattner42a75512007-01-15 02:27:26 +00001585 assert(C->getType()->isInteger() && "IntToPtr source must be integral");
Reid Spencer3da59db2006-11-27 01:05:10 +00001586 assert(isa<PointerType>(DstTy) && "IntToPtr destination must be a pointer");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001587 return getFoldedCast(Instruction::IntToPtr, C, DstTy);
Reid Spencer3da59db2006-11-27 01:05:10 +00001588}
1589
Owen Anderson04fb7c32009-06-20 00:24:58 +00001590Constant *ConstantExpr::getBitCast(Constant *C, const Type *DstTy) {
Reid Spencer3da59db2006-11-27 01:05:10 +00001591 // BitCast implies a no-op cast of type only. No bits change. However, you
1592 // can't cast pointers to anything but pointers.
Devang Patelb6dc9352008-11-03 23:20:04 +00001593#ifndef NDEBUG
Reid Spencer3da59db2006-11-27 01:05:10 +00001594 const Type *SrcTy = C->getType();
1595 assert((isa<PointerType>(SrcTy) == isa<PointerType>(DstTy)) &&
Reid Spencer848414e2006-12-04 20:17:56 +00001596 "BitCast cannot cast pointer to non-pointer and vice versa");
Reid Spencer3da59db2006-11-27 01:05:10 +00001597
1598 // Now we know we're not dealing with mismatched pointer casts (ptr->nonptr
1599 // or nonptr->ptr). For all the other types, the cast is okay if source and
1600 // destination bit widths are identical.
1601 unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
1602 unsigned DstBitSize = DstTy->getPrimitiveSizeInBits();
Devang Patelb6dc9352008-11-03 23:20:04 +00001603#endif
Chris Lattnercf1bb082009-03-08 04:06:26 +00001604 assert(SrcBitSize == DstBitSize && "BitCast requires types of same width");
Chris Lattner8c7f24a2009-03-21 06:55:54 +00001605
1606 // It is common to ask for a bitcast of a value to its own type, handle this
1607 // speedily.
1608 if (C->getType() == DstTy) return C;
1609
Owen Anderson04fb7c32009-06-20 00:24:58 +00001610 return getFoldedCast(Instruction::BitCast, C, DstTy);
Chris Lattnerd144f422004-04-04 23:20:30 +00001611}
1612
Chris Lattnered468e372003-10-05 00:17:43 +00001613Constant *ConstantExpr::getTy(const Type *ReqTy, unsigned Opcode,
Owen Anderson04fb7c32009-06-20 00:24:58 +00001614 Constant *C1, Constant *C2) {
Chris Lattnerf31f5832003-05-21 17:49:25 +00001615 // Check the operands for consistency first
Reid Spencer0a783f72006-11-02 01:53:59 +00001616 assert(Opcode >= Instruction::BinaryOpsBegin &&
1617 Opcode < Instruction::BinaryOpsEnd &&
Chris Lattnerf31f5832003-05-21 17:49:25 +00001618 "Invalid opcode in binary constant expression");
1619 assert(C1->getType() == C2->getType() &&
1620 "Operand types in binary constant expression should match");
Chris Lattnered468e372003-10-05 00:17:43 +00001621
Reid Spencer4fe16d62007-01-11 18:21:29 +00001622 if (ReqTy == C1->getType() || ReqTy == Type::Int1Ty)
Owen Anderson0a5372e2009-07-13 04:09:18 +00001623 if (Constant *FC = ConstantFoldBinaryInstruction(
1624 getGlobalContext(), Opcode, C1, C2))
Chris Lattnered468e372003-10-05 00:17:43 +00001625 return FC; // Fold a few common cases...
Chris Lattnerd628f6a2003-04-17 19:24:48 +00001626
Chris Lattner9bc02a42003-05-13 21:37:02 +00001627 std::vector<Constant*> argVec(1, C1); argVec.push_back(C2);
Reid Spencer67263fe2006-12-04 21:35:24 +00001628 ExprMapKeyType Key(Opcode, argVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001629
Owen Anderson04fb7c32009-06-20 00:24:58 +00001630 // Implicitly locked.
1631 return ExprConstants->getOrCreate(ReqTy, Key);
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001632}
1633
Reid Spencere4d87aa2006-12-23 06:05:41 +00001634Constant *ConstantExpr::getCompareTy(unsigned short predicate,
Nate Begemanff795a82008-07-25 17:56:27 +00001635 Constant *C1, Constant *C2) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00001636 switch (predicate) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001637 default: llvm_unreachable("Invalid CmpInst predicate");
Nate Begemanb5557ab2008-07-25 17:35:37 +00001638 case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
1639 case CmpInst::FCMP_OGE: case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE:
1640 case CmpInst::FCMP_ONE: case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO:
1641 case CmpInst::FCMP_UEQ: case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE:
1642 case CmpInst::FCMP_ULT: case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
1643 case CmpInst::FCMP_TRUE:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00001644 return getFCmp(predicate, C1, C2);
1645
Nate Begemanb5557ab2008-07-25 17:35:37 +00001646 case CmpInst::ICMP_EQ: case CmpInst::ICMP_NE: case CmpInst::ICMP_UGT:
1647 case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE:
1648 case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT:
1649 case CmpInst::ICMP_SLE:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00001650 return getICmp(predicate, C1, C2);
Reid Spencere4d87aa2006-12-23 06:05:41 +00001651 }
Reid Spencer67263fe2006-12-04 21:35:24 +00001652}
1653
Owen Anderson04fb7c32009-06-20 00:24:58 +00001654Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2) {
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001655 // API compatibility: Adjust integer opcodes to floating-point opcodes.
1656 if (C1->getType()->isFPOrFPVector()) {
1657 if (Opcode == Instruction::Add) Opcode = Instruction::FAdd;
1658 else if (Opcode == Instruction::Sub) Opcode = Instruction::FSub;
1659 else if (Opcode == Instruction::Mul) Opcode = Instruction::FMul;
1660 }
Chris Lattner91b362b2004-08-17 17:28:46 +00001661#ifndef NDEBUG
1662 switch (Opcode) {
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001663 case Instruction::Add:
Reid Spencer0a783f72006-11-02 01:53:59 +00001664 case Instruction::Sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001665 case Instruction::Mul:
Chris Lattner91b362b2004-08-17 17:28:46 +00001666 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001667 assert(C1->getType()->isIntOrIntVector() &&
1668 "Tried to create an integer operation on a non-integer type!");
1669 break;
1670 case Instruction::FAdd:
1671 case Instruction::FSub:
1672 case Instruction::FMul:
1673 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1674 assert(C1->getType()->isFPOrFPVector() &&
1675 "Tried to create a floating-point operation on a "
1676 "non-floating-point type!");
Chris Lattner91b362b2004-08-17 17:28:46 +00001677 break;
Reid Spencer1628cec2006-10-26 06:15:43 +00001678 case Instruction::UDiv:
1679 case Instruction::SDiv:
1680 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Dan Gohmanf57478f2009-06-15 22:25:12 +00001681 assert(C1->getType()->isIntOrIntVector() &&
Reid Spencer1628cec2006-10-26 06:15:43 +00001682 "Tried to create an arithmetic operation on a non-arithmetic type!");
1683 break;
1684 case Instruction::FDiv:
1685 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Dan Gohmanf57478f2009-06-15 22:25:12 +00001686 assert(C1->getType()->isFPOrFPVector() &&
1687 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer1628cec2006-10-26 06:15:43 +00001688 break;
Reid Spencer0a783f72006-11-02 01:53:59 +00001689 case Instruction::URem:
1690 case Instruction::SRem:
1691 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Dan Gohmanf57478f2009-06-15 22:25:12 +00001692 assert(C1->getType()->isIntOrIntVector() &&
Reid Spencer0a783f72006-11-02 01:53:59 +00001693 "Tried to create an arithmetic operation on a non-arithmetic type!");
1694 break;
1695 case Instruction::FRem:
1696 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Dan Gohmanf57478f2009-06-15 22:25:12 +00001697 assert(C1->getType()->isFPOrFPVector() &&
1698 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer0a783f72006-11-02 01:53:59 +00001699 break;
Chris Lattner91b362b2004-08-17 17:28:46 +00001700 case Instruction::And:
1701 case Instruction::Or:
1702 case Instruction::Xor:
1703 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Dan Gohmanf57478f2009-06-15 22:25:12 +00001704 assert(C1->getType()->isIntOrIntVector() &&
Misha Brukman1bae2912005-01-27 06:46:38 +00001705 "Tried to create a logical operation on a non-integral type!");
Chris Lattner91b362b2004-08-17 17:28:46 +00001706 break;
Chris Lattner91b362b2004-08-17 17:28:46 +00001707 case Instruction::Shl:
Reid Spencer3822ff52006-11-08 06:47:33 +00001708 case Instruction::LShr:
1709 case Instruction::AShr:
Reid Spencer832254e2007-02-02 02:16:23 +00001710 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Dan Gohmanc1317932009-03-14 17:09:17 +00001711 assert(C1->getType()->isIntOrIntVector() &&
Chris Lattner91b362b2004-08-17 17:28:46 +00001712 "Tried to create a shift operation on a non-integer type!");
1713 break;
1714 default:
1715 break;
1716 }
1717#endif
1718
Owen Anderson04fb7c32009-06-20 00:24:58 +00001719 return getTy(C1->getType(), Opcode, C1, C2);
Reid Spencer67263fe2006-12-04 21:35:24 +00001720}
1721
Owen Andersonbaf3c402009-07-29 18:55:55 +00001722Constant* ConstantExpr::getSizeOf(const Type* Ty) {
1723 // sizeof is implemented as: (i64) gep (Ty*)null, 1
1724 // Note that a non-inbounds gep is used, as null isn't within any object.
1725 LLVMContext &Context = Ty->getContext();
1726 Constant *GEPIdx = ConstantInt::get(Type::Int32Ty, 1);
1727 Constant *GEP = getGetElementPtr(
1728 Context.getNullValue(PointerType::getUnqual(Ty)), &GEPIdx, 1);
1729 return getCast(Instruction::PtrToInt, GEP, Type::Int64Ty);
1730}
1731
1732Constant* ConstantExpr::getAlignOf(const Type* Ty) {
1733 LLVMContext &Context = Ty->getContext();
1734 // alignof is implemented as: (i64) gep ({i8,Ty}*)null, 0, 1
1735 const Type *AligningTy = StructType::get(Type::Int8Ty, Ty, NULL);
1736 Constant *NullPtr = Context.getNullValue(AligningTy->getPointerTo());
1737 Constant *Zero = ConstantInt::get(Type::Int32Ty, 0);
1738 Constant *One = ConstantInt::get(Type::Int32Ty, 1);
1739 Constant *Indices[2] = { Zero, One };
1740 Constant *GEP = getGetElementPtr(NullPtr, Indices, 2);
1741 return getCast(Instruction::PtrToInt, GEP, Type::Int32Ty);
1742}
1743
1744
Reid Spencere4d87aa2006-12-23 06:05:41 +00001745Constant *ConstantExpr::getCompare(unsigned short pred,
Reid Spencer67263fe2006-12-04 21:35:24 +00001746 Constant *C1, Constant *C2) {
1747 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Reid Spencere4d87aa2006-12-23 06:05:41 +00001748 return getCompareTy(pred, C1, C2);
Chris Lattnerc3d12f02004-08-04 18:50:09 +00001749}
1750
Chris Lattner08a45cc2004-03-12 05:54:04 +00001751Constant *ConstantExpr::getSelectTy(const Type *ReqTy, Constant *C,
Owen Anderson04fb7c32009-06-20 00:24:58 +00001752 Constant *V1, Constant *V2) {
Chris Lattner9ace0cd2008-12-29 00:16:12 +00001753 assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
Chris Lattner08a45cc2004-03-12 05:54:04 +00001754
1755 if (ReqTy == V1->getType())
Owen Anderson0a5372e2009-07-13 04:09:18 +00001756 if (Constant *SC = ConstantFoldSelectInstruction(
1757 getGlobalContext(), C, V1, V2))
Chris Lattner08a45cc2004-03-12 05:54:04 +00001758 return SC; // Fold common cases
1759
1760 std::vector<Constant*> argVec(3, C);
1761 argVec[1] = V1;
1762 argVec[2] = V2;
Reid Spencer077d0eb2006-12-04 05:19:50 +00001763 ExprMapKeyType Key(Instruction::Select, argVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001764
Owen Anderson04fb7c32009-06-20 00:24:58 +00001765 // Implicitly locked.
1766 return ExprConstants->getOrCreate(ReqTy, Key);
Chris Lattner08a45cc2004-03-12 05:54:04 +00001767}
1768
Chris Lattnered468e372003-10-05 00:17:43 +00001769Constant *ConstantExpr::getGetElementPtrTy(const Type *ReqTy, Constant *C,
Chris Lattner2b9a5da2007-01-31 04:40:28 +00001770 Value* const *Idxs,
Owen Anderson04fb7c32009-06-20 00:24:58 +00001771 unsigned NumIdx) {
Dan Gohman041e2eb2008-05-15 19:50:34 +00001772 assert(GetElementPtrInst::getIndexedType(C->getType(), Idxs,
1773 Idxs+NumIdx) ==
1774 cast<PointerType>(ReqTy)->getElementType() &&
1775 "GEP indices invalid!");
Chris Lattner2e9bb1a2004-02-16 20:46:13 +00001776
Owen Anderson0a5372e2009-07-13 04:09:18 +00001777 if (Constant *FC = ConstantFoldGetElementPtr(
1778 getGlobalContext(), C, (Constant**)Idxs, NumIdx))
Chris Lattnerd628f6a2003-04-17 19:24:48 +00001779 return FC; // Fold a few common cases...
Chris Lattner2e9bb1a2004-02-16 20:46:13 +00001780
Chris Lattnered468e372003-10-05 00:17:43 +00001781 assert(isa<PointerType>(C->getType()) &&
Chris Lattner02ec5ed2003-05-23 20:03:32 +00001782 "Non-pointer type for constant GetElementPtr expression");
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00001783 // Look up the constant in the table first to ensure uniqueness
Chris Lattner7fa6e662004-10-11 22:52:25 +00001784 std::vector<Constant*> ArgVec;
Chris Lattner2b9a5da2007-01-31 04:40:28 +00001785 ArgVec.reserve(NumIdx+1);
Chris Lattner7fa6e662004-10-11 22:52:25 +00001786 ArgVec.push_back(C);
Chris Lattner2b9a5da2007-01-31 04:40:28 +00001787 for (unsigned i = 0; i != NumIdx; ++i)
1788 ArgVec.push_back(cast<Constant>(Idxs[i]));
1789 const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001790
1791 // Implicitly locked.
Owen Anderson04fb7c32009-06-20 00:24:58 +00001792 return ExprConstants->getOrCreate(ReqTy, Key);
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00001793}
1794
Chris Lattner2b9a5da2007-01-31 04:40:28 +00001795Constant *ConstantExpr::getGetElementPtr(Constant *C, Value* const *Idxs,
Owen Anderson04fb7c32009-06-20 00:24:58 +00001796 unsigned NumIdx) {
Chris Lattnered468e372003-10-05 00:17:43 +00001797 // Get the result type of the getelementptr!
Chris Lattner2b9a5da2007-01-31 04:40:28 +00001798 const Type *Ty =
Dan Gohman041e2eb2008-05-15 19:50:34 +00001799 GetElementPtrInst::getIndexedType(C->getType(), Idxs, Idxs+NumIdx);
Chris Lattnered468e372003-10-05 00:17:43 +00001800 assert(Ty && "GEP indices invalid!");
Christopher Lambfe63fb92007-12-11 08:59:05 +00001801 unsigned As = cast<PointerType>(C->getType())->getAddressSpace();
Owen Anderson04fb7c32009-06-20 00:24:58 +00001802 return getGetElementPtrTy(PointerType::get(Ty, As), C, Idxs, NumIdx);
Chris Lattner7fa6e662004-10-11 22:52:25 +00001803}
1804
Chris Lattner2b9a5da2007-01-31 04:40:28 +00001805Constant *ConstantExpr::getGetElementPtr(Constant *C, Constant* const *Idxs,
Owen Anderson04fb7c32009-06-20 00:24:58 +00001806 unsigned NumIdx) {
1807 return getGetElementPtr(C, (Value* const *)Idxs, NumIdx);
Chris Lattnered468e372003-10-05 00:17:43 +00001808}
1809
Chris Lattner2b9a5da2007-01-31 04:40:28 +00001810
Reid Spencer077d0eb2006-12-04 05:19:50 +00001811Constant *
1812ConstantExpr::getICmp(unsigned short pred, Constant* LHS, Constant* RHS) {
1813 assert(LHS->getType() == RHS->getType());
1814 assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE &&
1815 pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid ICmp Predicate");
1816
Owen Anderson0a5372e2009-07-13 04:09:18 +00001817 if (Constant *FC = ConstantFoldCompareInstruction(
1818 getGlobalContext(),pred, LHS, RHS))
Reid Spencer077d0eb2006-12-04 05:19:50 +00001819 return FC; // Fold a few common cases...
1820
1821 // Look up the constant in the table first to ensure uniqueness
1822 std::vector<Constant*> ArgVec;
1823 ArgVec.push_back(LHS);
1824 ArgVec.push_back(RHS);
Reid Spencer4fa021a2006-12-24 18:42:29 +00001825 // Get the key type with both the opcode and predicate
Reid Spencer077d0eb2006-12-04 05:19:50 +00001826 const ExprMapKeyType Key(Instruction::ICmp, ArgVec, pred);
Owen Anderson31c36f02009-06-17 20:10:08 +00001827
1828 // Implicitly locked.
1829 return ExprConstants->getOrCreate(Type::Int1Ty, Key);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001830}
1831
1832Constant *
1833ConstantExpr::getFCmp(unsigned short pred, Constant* LHS, Constant* RHS) {
1834 assert(LHS->getType() == RHS->getType());
1835 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate");
1836
Owen Anderson0a5372e2009-07-13 04:09:18 +00001837 if (Constant *FC = ConstantFoldCompareInstruction(
1838 getGlobalContext(), pred, LHS, RHS))
Reid Spencer077d0eb2006-12-04 05:19:50 +00001839 return FC; // Fold a few common cases...
1840
1841 // Look up the constant in the table first to ensure uniqueness
1842 std::vector<Constant*> ArgVec;
1843 ArgVec.push_back(LHS);
1844 ArgVec.push_back(RHS);
Reid Spencer4fa021a2006-12-24 18:42:29 +00001845 // Get the key type with both the opcode and predicate
Reid Spencer077d0eb2006-12-04 05:19:50 +00001846 const ExprMapKeyType Key(Instruction::FCmp, ArgVec, pred);
Owen Anderson31c36f02009-06-17 20:10:08 +00001847
1848 // Implicitly locked.
1849 return ExprConstants->getOrCreate(Type::Int1Ty, Key);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001850}
1851
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00001852Constant *ConstantExpr::getExtractElementTy(const Type *ReqTy, Constant *Val,
1853 Constant *Idx) {
Owen Anderson0a5372e2009-07-13 04:09:18 +00001854 if (Constant *FC = ConstantFoldExtractElementInstruction(
1855 getGlobalContext(), Val, Idx))
Robert Bocchinobb90a7a2006-01-10 20:03:46 +00001856 return FC; // Fold a few common cases...
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00001857 // Look up the constant in the table first to ensure uniqueness
1858 std::vector<Constant*> ArgVec(1, Val);
1859 ArgVec.push_back(Idx);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001860 const ExprMapKeyType Key(Instruction::ExtractElement,ArgVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001861
1862 // Implicitly locked.
1863 return ExprConstants->getOrCreate(ReqTy, Key);
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00001864}
1865
1866Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00001867 assert(isa<VectorType>(Val->getType()) &&
Reid Spencerac9dcb92007-02-15 03:39:18 +00001868 "Tried to create extractelement operation on non-vector type!");
Reid Spencer79e21d32006-12-31 05:26:44 +00001869 assert(Idx->getType() == Type::Int32Ty &&
Reid Spencer3d10b0b2007-01-26 07:37:34 +00001870 "Extractelement index must be i32 type!");
Reid Spencer9d6565a2007-02-15 02:26:10 +00001871 return getExtractElementTy(cast<VectorType>(Val->getType())->getElementType(),
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00001872 Val, Idx);
1873}
Chris Lattnered468e372003-10-05 00:17:43 +00001874
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001875Constant *ConstantExpr::getInsertElementTy(const Type *ReqTy, Constant *Val,
1876 Constant *Elt, Constant *Idx) {
Owen Anderson0a5372e2009-07-13 04:09:18 +00001877 if (Constant *FC = ConstantFoldInsertElementInstruction(
1878 getGlobalContext(), Val, Elt, Idx))
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001879 return FC; // Fold a few common cases...
1880 // Look up the constant in the table first to ensure uniqueness
1881 std::vector<Constant*> ArgVec(1, Val);
1882 ArgVec.push_back(Elt);
1883 ArgVec.push_back(Idx);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001884 const ExprMapKeyType Key(Instruction::InsertElement,ArgVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001885
1886 // Implicitly locked.
1887 return ExprConstants->getOrCreate(ReqTy, Key);
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001888}
1889
1890Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
1891 Constant *Idx) {
Reid Spencer9d6565a2007-02-15 02:26:10 +00001892 assert(isa<VectorType>(Val->getType()) &&
Reid Spencerac9dcb92007-02-15 03:39:18 +00001893 "Tried to create insertelement operation on non-vector type!");
Reid Spencer9d6565a2007-02-15 02:26:10 +00001894 assert(Elt->getType() == cast<VectorType>(Val->getType())->getElementType()
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001895 && "Insertelement types must match!");
Reid Spencer79e21d32006-12-31 05:26:44 +00001896 assert(Idx->getType() == Type::Int32Ty &&
Reid Spencer3d10b0b2007-01-26 07:37:34 +00001897 "Insertelement index must be i32 type!");
Gordon Henriksen699609c2008-08-30 15:41:51 +00001898 return getInsertElementTy(Val->getType(), Val, Elt, Idx);
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001899}
1900
Chris Lattner00f10232006-04-08 01:18:18 +00001901Constant *ConstantExpr::getShuffleVectorTy(const Type *ReqTy, Constant *V1,
1902 Constant *V2, Constant *Mask) {
Owen Anderson0a5372e2009-07-13 04:09:18 +00001903 if (Constant *FC = ConstantFoldShuffleVectorInstruction(
1904 getGlobalContext(), V1, V2, Mask))
Chris Lattner00f10232006-04-08 01:18:18 +00001905 return FC; // Fold a few common cases...
1906 // Look up the constant in the table first to ensure uniqueness
1907 std::vector<Constant*> ArgVec(1, V1);
1908 ArgVec.push_back(V2);
1909 ArgVec.push_back(Mask);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001910 const ExprMapKeyType Key(Instruction::ShuffleVector,ArgVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001911
1912 // Implicitly locked.
1913 return ExprConstants->getOrCreate(ReqTy, Key);
Chris Lattner00f10232006-04-08 01:18:18 +00001914}
1915
1916Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
1917 Constant *Mask) {
1918 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
1919 "Invalid shuffle vector constant expr operands!");
Nate Begeman0f123cf2009-02-12 21:28:33 +00001920
1921 unsigned NElts = cast<VectorType>(Mask->getType())->getNumElements();
1922 const Type *EltTy = cast<VectorType>(V1->getType())->getElementType();
1923 const Type *ShufTy = VectorType::get(EltTy, NElts);
1924 return getShuffleVectorTy(ShufTy, V1, V2, Mask);
Chris Lattner00f10232006-04-08 01:18:18 +00001925}
1926
Dan Gohman041e2eb2008-05-15 19:50:34 +00001927Constant *ConstantExpr::getInsertValueTy(const Type *ReqTy, Constant *Agg,
1928 Constant *Val,
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001929 const unsigned *Idxs, unsigned NumIdx) {
Dan Gohman041e2eb2008-05-15 19:50:34 +00001930 assert(ExtractValueInst::getIndexedType(Agg->getType(), Idxs,
1931 Idxs+NumIdx) == Val->getType() &&
1932 "insertvalue indices invalid!");
1933 assert(Agg->getType() == ReqTy &&
1934 "insertvalue type invalid!");
Dan Gohmane4569942008-05-23 00:36:11 +00001935 assert(Agg->getType()->isFirstClassType() &&
1936 "Non-first-class type for constant InsertValue expression");
Owen Anderson0a5372e2009-07-13 04:09:18 +00001937 Constant *FC = ConstantFoldInsertValueInstruction(
1938 getGlobalContext(), Agg, Val, Idxs, NumIdx);
Dan Gohmane0891602008-07-21 23:30:30 +00001939 assert(FC && "InsertValue constant expr couldn't be folded!");
1940 return FC;
Dan Gohman041e2eb2008-05-15 19:50:34 +00001941}
1942
1943Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001944 const unsigned *IdxList, unsigned NumIdx) {
Dan Gohmane4569942008-05-23 00:36:11 +00001945 assert(Agg->getType()->isFirstClassType() &&
1946 "Tried to create insertelement operation on non-first-class type!");
Dan Gohman041e2eb2008-05-15 19:50:34 +00001947
Dan Gohmane4569942008-05-23 00:36:11 +00001948 const Type *ReqTy = Agg->getType();
Devang Patelb6dc9352008-11-03 23:20:04 +00001949#ifndef NDEBUG
Dan Gohmane4569942008-05-23 00:36:11 +00001950 const Type *ValTy =
Dan Gohman041e2eb2008-05-15 19:50:34 +00001951 ExtractValueInst::getIndexedType(Agg->getType(), IdxList, IdxList+NumIdx);
Devang Patelb6dc9352008-11-03 23:20:04 +00001952#endif
Dan Gohmane4569942008-05-23 00:36:11 +00001953 assert(ValTy == Val->getType() && "insertvalue indices invalid!");
Dan Gohman041e2eb2008-05-15 19:50:34 +00001954 return getInsertValueTy(ReqTy, Agg, Val, IdxList, NumIdx);
1955}
1956
1957Constant *ConstantExpr::getExtractValueTy(const Type *ReqTy, Constant *Agg,
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001958 const unsigned *Idxs, unsigned NumIdx) {
Dan Gohman041e2eb2008-05-15 19:50:34 +00001959 assert(ExtractValueInst::getIndexedType(Agg->getType(), Idxs,
1960 Idxs+NumIdx) == ReqTy &&
1961 "extractvalue indices invalid!");
Dan Gohmane4569942008-05-23 00:36:11 +00001962 assert(Agg->getType()->isFirstClassType() &&
1963 "Non-first-class type for constant extractvalue expression");
Owen Anderson0a5372e2009-07-13 04:09:18 +00001964 Constant *FC = ConstantFoldExtractValueInstruction(
1965 getGlobalContext(), Agg, Idxs, NumIdx);
Dan Gohmane0891602008-07-21 23:30:30 +00001966 assert(FC && "ExtractValue constant expr couldn't be folded!");
1967 return FC;
Dan Gohman041e2eb2008-05-15 19:50:34 +00001968}
1969
1970Constant *ConstantExpr::getExtractValue(Constant *Agg,
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001971 const unsigned *IdxList, unsigned NumIdx) {
Dan Gohmane4569942008-05-23 00:36:11 +00001972 assert(Agg->getType()->isFirstClassType() &&
1973 "Tried to create extractelement operation on non-first-class type!");
Dan Gohman041e2eb2008-05-15 19:50:34 +00001974
1975 const Type *ReqTy =
1976 ExtractValueInst::getIndexedType(Agg->getType(), IdxList, IdxList+NumIdx);
1977 assert(ReqTy && "extractvalue indices invalid!");
1978 return getExtractValueTy(ReqTy, Agg, IdxList, NumIdx);
1979}
1980
Owen Andersonbaf3c402009-07-29 18:55:55 +00001981Constant* ConstantExpr::getNeg(Constant* C) {
1982 // API compatibility: Adjust integer opcodes to floating-point opcodes.
1983 if (C->getType()->isFPOrFPVector())
1984 return getFNeg(C);
1985 assert(C->getType()->isIntOrIntVector() &&
1986 "Cannot NEG a nonintegral value!");
1987 return get(Instruction::Sub,
1988 ConstantFP::getZeroValueForNegation(C->getType()),
1989 C);
1990}
1991
1992Constant* ConstantExpr::getFNeg(Constant* C) {
1993 assert(C->getType()->isFPOrFPVector() &&
1994 "Cannot FNEG a non-floating-point value!");
1995 return get(Instruction::FSub,
1996 ConstantFP::getZeroValueForNegation(C->getType()),
1997 C);
1998}
1999
2000Constant* ConstantExpr::getNot(Constant* C) {
2001 assert(C->getType()->isIntOrIntVector() &&
2002 "Cannot NOT a nonintegral value!");
2003 LLVMContext &Context = C->getType()->getContext();
2004 return get(Instruction::Xor, C, Context.getAllOnesValue(C->getType()));
2005}
2006
2007Constant* ConstantExpr::getAdd(Constant* C1, Constant* C2) {
2008 return get(Instruction::Add, C1, C2);
2009}
2010
2011Constant* ConstantExpr::getFAdd(Constant* C1, Constant* C2) {
2012 return get(Instruction::FAdd, C1, C2);
2013}
2014
2015Constant* ConstantExpr::getSub(Constant* C1, Constant* C2) {
2016 return get(Instruction::Sub, C1, C2);
2017}
2018
2019Constant* ConstantExpr::getFSub(Constant* C1, Constant* C2) {
2020 return get(Instruction::FSub, C1, C2);
2021}
2022
2023Constant* ConstantExpr::getMul(Constant* C1, Constant* C2) {
2024 return get(Instruction::Mul, C1, C2);
2025}
2026
2027Constant* ConstantExpr::getFMul(Constant* C1, Constant* C2) {
2028 return get(Instruction::FMul, C1, C2);
2029}
2030
2031Constant* ConstantExpr::getUDiv(Constant* C1, Constant* C2) {
2032 return get(Instruction::UDiv, C1, C2);
2033}
2034
2035Constant* ConstantExpr::getSDiv(Constant* C1, Constant* C2) {
2036 return get(Instruction::SDiv, C1, C2);
2037}
2038
2039Constant* ConstantExpr::getFDiv(Constant* C1, Constant* C2) {
2040 return get(Instruction::FDiv, C1, C2);
2041}
2042
2043Constant* ConstantExpr::getURem(Constant* C1, Constant* C2) {
2044 return get(Instruction::URem, C1, C2);
2045}
2046
2047Constant* ConstantExpr::getSRem(Constant* C1, Constant* C2) {
2048 return get(Instruction::SRem, C1, C2);
2049}
2050
2051Constant* ConstantExpr::getFRem(Constant* C1, Constant* C2) {
2052 return get(Instruction::FRem, C1, C2);
2053}
2054
2055Constant* ConstantExpr::getAnd(Constant* C1, Constant* C2) {
2056 return get(Instruction::And, C1, C2);
2057}
2058
2059Constant* ConstantExpr::getOr(Constant* C1, Constant* C2) {
2060 return get(Instruction::Or, C1, C2);
2061}
2062
2063Constant* ConstantExpr::getXor(Constant* C1, Constant* C2) {
2064 return get(Instruction::Xor, C1, C2);
2065}
2066
2067Constant* ConstantExpr::getShl(Constant* C1, Constant* C2) {
2068 return get(Instruction::Shl, C1, C2);
2069}
2070
2071Constant* ConstantExpr::getLShr(Constant* C1, Constant* C2) {
2072 return get(Instruction::LShr, C1, C2);
2073}
2074
2075Constant* ConstantExpr::getAShr(Constant* C1, Constant* C2) {
2076 return get(Instruction::AShr, C1, C2);
2077}
2078
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00002079// destroyConstant - Remove the constant from the constant table...
2080//
Owen Anderson04fb7c32009-06-20 00:24:58 +00002081void ConstantExpr::destroyConstant() {
2082 // Implicitly locked.
2083 ExprConstants->remove(this);
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00002084 destroyConstantImpl();
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00002085}
2086
Chris Lattnerc188eeb2002-07-30 18:54:25 +00002087const char *ConstantExpr::getOpcodeName() const {
2088 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00002089}
Reid Spencer1c9c8e62004-07-17 23:48:33 +00002090
Chris Lattner5cbade92005-10-03 21:58:36 +00002091//===----------------------------------------------------------------------===//
2092// replaceUsesOfWithOnConstant implementations
2093
Chris Lattner54984052007-08-21 00:55:23 +00002094/// replaceUsesOfWithOnConstant - Update this constant array to change uses of
2095/// 'From' to be uses of 'To'. This must update the uniquing data structures
2096/// etc.
2097///
2098/// Note that we intentionally replace all uses of From with To here. Consider
2099/// a large array that uses 'From' 1000 times. By handling this case all here,
2100/// ConstantArray::replaceUsesOfWithOnConstant is only invoked once, and that
2101/// single invocation handles all 1000 uses. Handling them one at a time would
2102/// work, but would be really slow because it would have to unique each updated
2103/// array instance.
Owen Anderson1fd70962009-07-28 18:32:17 +00002104
2105static std::vector<Constant*> getValType(ConstantArray *CA) {
2106 std::vector<Constant*> Elements;
2107 Elements.reserve(CA->getNumOperands());
2108 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
2109 Elements.push_back(cast<Constant>(CA->getOperand(i)));
2110 return Elements;
2111}
2112
2113
Chris Lattner5cbade92005-10-03 21:58:36 +00002114void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002115 Use *U) {
Owen Anderson1fd70962009-07-28 18:32:17 +00002116 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2117 Constant *ToC = cast<Constant>(To);
2118
2119 LLVMContext &Context = getType()->getContext();
2120 LLVMContextImpl *pImpl = Context.pImpl;
2121
2122 std::pair<LLVMContextImpl::ArrayConstantsTy::MapKey, Constant*> Lookup;
2123 Lookup.first.first = getType();
2124 Lookup.second = this;
2125
2126 std::vector<Constant*> &Values = Lookup.first.second;
2127 Values.reserve(getNumOperands()); // Build replacement array.
2128
2129 // Fill values with the modified operands of the constant array. Also,
2130 // compute whether this turns into an all-zeros array.
2131 bool isAllZeros = false;
2132 unsigned NumUpdated = 0;
2133 if (!ToC->isNullValue()) {
2134 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2135 Constant *Val = cast<Constant>(O->get());
2136 if (Val == From) {
2137 Val = ToC;
2138 ++NumUpdated;
2139 }
2140 Values.push_back(Val);
2141 }
2142 } else {
2143 isAllZeros = true;
2144 for (Use *O = OperandList, *E = OperandList+getNumOperands();O != E; ++O) {
2145 Constant *Val = cast<Constant>(O->get());
2146 if (Val == From) {
2147 Val = ToC;
2148 ++NumUpdated;
2149 }
2150 Values.push_back(Val);
2151 if (isAllZeros) isAllZeros = Val->isNullValue();
2152 }
2153 }
2154
2155 Constant *Replacement = 0;
2156 if (isAllZeros) {
2157 Replacement = Context.getConstantAggregateZero(getType());
2158 } else {
2159 // Check to see if we have this array type already.
2160 sys::SmartScopedWriter<true> Writer(pImpl->ConstantsLock);
2161 bool Exists;
2162 LLVMContextImpl::ArrayConstantsTy::MapTy::iterator I =
2163 pImpl->ArrayConstants.InsertOrGetItem(Lookup, Exists);
2164
2165 if (Exists) {
2166 Replacement = I->second;
2167 } else {
2168 // Okay, the new shape doesn't exist in the system yet. Instead of
2169 // creating a new constant array, inserting it, replaceallusesof'ing the
2170 // old with the new, then deleting the old... just update the current one
2171 // in place!
2172 pImpl->ArrayConstants.MoveConstantToNewSlot(this, I);
2173
2174 // Update to the new value. Optimize for the case when we have a single
2175 // operand that we're changing, but handle bulk updates efficiently.
2176 if (NumUpdated == 1) {
2177 unsigned OperandToUpdate = U - OperandList;
2178 assert(getOperand(OperandToUpdate) == From &&
2179 "ReplaceAllUsesWith broken!");
2180 setOperand(OperandToUpdate, ToC);
2181 } else {
2182 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
2183 if (getOperand(i) == From)
2184 setOperand(i, ToC);
2185 }
2186 return;
2187 }
2188 }
Chris Lattnercea141f2005-10-03 22:51:37 +00002189
2190 // Otherwise, I do need to replace this with an existing value.
Chris Lattner5cbade92005-10-03 21:58:36 +00002191 assert(Replacement != this && "I didn't contain From!");
2192
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002193 // Everyone using this now uses the replacement.
2194 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattner5cbade92005-10-03 21:58:36 +00002195
2196 // Delete the old constant!
2197 destroyConstant();
2198}
2199
Owen Anderson8fa33382009-07-27 22:29:26 +00002200static std::vector<Constant*> getValType(ConstantStruct *CS) {
2201 std::vector<Constant*> Elements;
2202 Elements.reserve(CS->getNumOperands());
2203 for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i)
2204 Elements.push_back(cast<Constant>(CS->getOperand(i)));
2205 return Elements;
2206}
2207
Chris Lattner5cbade92005-10-03 21:58:36 +00002208void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002209 Use *U) {
Owen Anderson8fa33382009-07-27 22:29:26 +00002210 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2211 Constant *ToC = cast<Constant>(To);
2212
2213 unsigned OperandToUpdate = U-OperandList;
2214 assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!");
2215
2216 std::pair<LLVMContextImpl::StructConstantsTy::MapKey, Constant*> Lookup;
2217 Lookup.first.first = getType();
2218 Lookup.second = this;
2219 std::vector<Constant*> &Values = Lookup.first.second;
2220 Values.reserve(getNumOperands()); // Build replacement struct.
2221
2222
2223 // Fill values with the modified operands of the constant struct. Also,
2224 // compute whether this turns into an all-zeros struct.
2225 bool isAllZeros = false;
2226 if (!ToC->isNullValue()) {
2227 for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O)
2228 Values.push_back(cast<Constant>(O->get()));
2229 } else {
2230 isAllZeros = true;
2231 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2232 Constant *Val = cast<Constant>(O->get());
2233 Values.push_back(Val);
2234 if (isAllZeros) isAllZeros = Val->isNullValue();
2235 }
2236 }
2237 Values[OperandToUpdate] = ToC;
2238
2239 LLVMContext &Context = getType()->getContext();
2240 LLVMContextImpl *pImpl = Context.pImpl;
2241
2242 Constant *Replacement = 0;
2243 if (isAllZeros) {
2244 Replacement = Context.getConstantAggregateZero(getType());
2245 } else {
2246 // Check to see if we have this array type already.
2247 sys::SmartScopedWriter<true> Writer(pImpl->ConstantsLock);
2248 bool Exists;
2249 LLVMContextImpl::StructConstantsTy::MapTy::iterator I =
2250 pImpl->StructConstants.InsertOrGetItem(Lookup, Exists);
2251
2252 if (Exists) {
2253 Replacement = I->second;
2254 } else {
2255 // Okay, the new shape doesn't exist in the system yet. Instead of
2256 // creating a new constant struct, inserting it, replaceallusesof'ing the
2257 // old with the new, then deleting the old... just update the current one
2258 // in place!
2259 pImpl->StructConstants.MoveConstantToNewSlot(this, I);
2260
2261 // Update to the new value.
2262 setOperand(OperandToUpdate, ToC);
2263 return;
2264 }
2265 }
2266
2267 assert(Replacement != this && "I didn't contain From!");
Chris Lattner5cbade92005-10-03 21:58:36 +00002268
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002269 // Everyone using this now uses the replacement.
2270 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattner5cbade92005-10-03 21:58:36 +00002271
2272 // Delete the old constant!
2273 destroyConstant();
2274}
2275
Owen Andersonaf7ec972009-07-28 21:19:26 +00002276static std::vector<Constant*> getValType(ConstantVector *CP) {
2277 std::vector<Constant*> Elements;
2278 Elements.reserve(CP->getNumOperands());
2279 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
2280 Elements.push_back(CP->getOperand(i));
2281 return Elements;
2282}
2283
Reid Spencer9d6565a2007-02-15 02:26:10 +00002284void ConstantVector::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002285 Use *U) {
Chris Lattner5cbade92005-10-03 21:58:36 +00002286 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2287
2288 std::vector<Constant*> Values;
2289 Values.reserve(getNumOperands()); // Build replacement array...
2290 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2291 Constant *Val = getOperand(i);
2292 if (Val == From) Val = cast<Constant>(To);
2293 Values.push_back(Val);
2294 }
2295
Owen Andersonaf7ec972009-07-28 21:19:26 +00002296 Constant *Replacement = get(getType(), Values);
Chris Lattner5cbade92005-10-03 21:58:36 +00002297 assert(Replacement != this && "I didn't contain From!");
2298
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002299 // Everyone using this now uses the replacement.
2300 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattner5cbade92005-10-03 21:58:36 +00002301
2302 // Delete the old constant!
2303 destroyConstant();
2304}
2305
2306void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002307 Use *U) {
Chris Lattner5cbade92005-10-03 21:58:36 +00002308 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
2309 Constant *To = cast<Constant>(ToV);
2310
2311 Constant *Replacement = 0;
2312 if (getOpcode() == Instruction::GetElementPtr) {
Chris Lattnerf9021ff2007-02-19 20:01:23 +00002313 SmallVector<Constant*, 8> Indices;
Chris Lattner5cbade92005-10-03 21:58:36 +00002314 Constant *Pointer = getOperand(0);
2315 Indices.reserve(getNumOperands()-1);
2316 if (Pointer == From) Pointer = To;
2317
2318 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
2319 Constant *Val = getOperand(i);
2320 if (Val == From) Val = To;
2321 Indices.push_back(Val);
2322 }
Chris Lattnerf9021ff2007-02-19 20:01:23 +00002323 Replacement = ConstantExpr::getGetElementPtr(Pointer,
2324 &Indices[0], Indices.size());
Dan Gohman041e2eb2008-05-15 19:50:34 +00002325 } else if (getOpcode() == Instruction::ExtractValue) {
Dan Gohman041e2eb2008-05-15 19:50:34 +00002326 Constant *Agg = getOperand(0);
Dan Gohman041e2eb2008-05-15 19:50:34 +00002327 if (Agg == From) Agg = To;
2328
Dan Gohman81a0c0b2008-05-31 00:58:22 +00002329 const SmallVector<unsigned, 4> &Indices = getIndices();
Dan Gohman041e2eb2008-05-15 19:50:34 +00002330 Replacement = ConstantExpr::getExtractValue(Agg,
2331 &Indices[0], Indices.size());
2332 } else if (getOpcode() == Instruction::InsertValue) {
Dan Gohman041e2eb2008-05-15 19:50:34 +00002333 Constant *Agg = getOperand(0);
2334 Constant *Val = getOperand(1);
Dan Gohman041e2eb2008-05-15 19:50:34 +00002335 if (Agg == From) Agg = To;
2336 if (Val == From) Val = To;
2337
Dan Gohman81a0c0b2008-05-31 00:58:22 +00002338 const SmallVector<unsigned, 4> &Indices = getIndices();
Dan Gohman041e2eb2008-05-15 19:50:34 +00002339 Replacement = ConstantExpr::getInsertValue(Agg, Val,
2340 &Indices[0], Indices.size());
Reid Spencer3da59db2006-11-27 01:05:10 +00002341 } else if (isCast()) {
Chris Lattner5cbade92005-10-03 21:58:36 +00002342 assert(getOperand(0) == From && "Cast only has one use!");
Reid Spencer3da59db2006-11-27 01:05:10 +00002343 Replacement = ConstantExpr::getCast(getOpcode(), To, getType());
Chris Lattner5cbade92005-10-03 21:58:36 +00002344 } else if (getOpcode() == Instruction::Select) {
2345 Constant *C1 = getOperand(0);
2346 Constant *C2 = getOperand(1);
2347 Constant *C3 = getOperand(2);
2348 if (C1 == From) C1 = To;
2349 if (C2 == From) C2 = To;
2350 if (C3 == From) C3 = To;
2351 Replacement = ConstantExpr::getSelect(C1, C2, C3);
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00002352 } else if (getOpcode() == Instruction::ExtractElement) {
2353 Constant *C1 = getOperand(0);
2354 Constant *C2 = getOperand(1);
2355 if (C1 == From) C1 = To;
2356 if (C2 == From) C2 = To;
2357 Replacement = ConstantExpr::getExtractElement(C1, C2);
Chris Lattner42b55802006-04-08 05:09:48 +00002358 } else if (getOpcode() == Instruction::InsertElement) {
2359 Constant *C1 = getOperand(0);
2360 Constant *C2 = getOperand(1);
2361 Constant *C3 = getOperand(1);
2362 if (C1 == From) C1 = To;
2363 if (C2 == From) C2 = To;
2364 if (C3 == From) C3 = To;
2365 Replacement = ConstantExpr::getInsertElement(C1, C2, C3);
2366 } else if (getOpcode() == Instruction::ShuffleVector) {
2367 Constant *C1 = getOperand(0);
2368 Constant *C2 = getOperand(1);
2369 Constant *C3 = getOperand(2);
2370 if (C1 == From) C1 = To;
2371 if (C2 == From) C2 = To;
2372 if (C3 == From) C3 = To;
2373 Replacement = ConstantExpr::getShuffleVector(C1, C2, C3);
Reid Spencer077d0eb2006-12-04 05:19:50 +00002374 } else if (isCompare()) {
2375 Constant *C1 = getOperand(0);
2376 Constant *C2 = getOperand(1);
2377 if (C1 == From) C1 = To;
2378 if (C2 == From) C2 = To;
2379 if (getOpcode() == Instruction::ICmp)
2380 Replacement = ConstantExpr::getICmp(getPredicate(), C1, C2);
Chris Lattnerbbedb0e2008-07-14 05:17:31 +00002381 else {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002382 assert(getOpcode() == Instruction::FCmp);
2383 Replacement = ConstantExpr::getFCmp(getPredicate(), C1, C2);
Chris Lattnerbbedb0e2008-07-14 05:17:31 +00002384 }
Chris Lattner5cbade92005-10-03 21:58:36 +00002385 } else if (getNumOperands() == 2) {
2386 Constant *C1 = getOperand(0);
2387 Constant *C2 = getOperand(1);
2388 if (C1 == From) C1 = To;
2389 if (C2 == From) C2 = To;
2390 Replacement = ConstantExpr::get(getOpcode(), C1, C2);
2391 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +00002392 llvm_unreachable("Unknown ConstantExpr type!");
Chris Lattner5cbade92005-10-03 21:58:36 +00002393 return;
2394 }
2395
2396 assert(Replacement != this && "I didn't contain From!");
2397
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002398 // Everyone using this now uses the replacement.
2399 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattner5cbade92005-10-03 21:58:36 +00002400
2401 // Delete the old constant!
2402 destroyConstant();
Matthijs Kooijman10b9de62008-07-03 07:46:41 +00002403}
Nick Lewycky21cc4462009-04-04 07:22:01 +00002404