blob: b833c4eaa47ff2a61c1c0b608bf49c56e5e4c689 [file] [log] [blame]
Chris Lattner9bc02a42003-05-13 21:37:02 +00001//===-- Constants.cpp - Implement Constant nodes --------------------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +00009//
Chris Lattnerd0ec2352009-11-01 03:03:03 +000010// This file implements the Constant* classes.
Chris Lattner00950542001-06-06 20:29:01 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner31bcdb82002-04-28 19:55:58 +000014#include "llvm/Constants.h"
Chris Lattner37f077a2009-08-23 04:02:03 +000015#include "LLVMContextImpl.h"
Chris Lattner92f6fea2007-02-27 03:05:06 +000016#include "ConstantFold.h"
Chris Lattner00950542001-06-06 20:29:01 +000017#include "llvm/DerivedTypes.h"
Reid Spencer1c9c8e62004-07-17 23:48:33 +000018#include "llvm/GlobalValue.h"
Misha Brukman47b14a42004-07-29 17:30:56 +000019#include "llvm/Instructions.h"
Chris Lattnerf5ec48d2001-10-13 06:57:33 +000020#include "llvm/Module.h"
Dan Gohman5a206ee2009-07-18 01:49:22 +000021#include "llvm/Operator.h"
Nick Lewycky21cc4462009-04-04 07:22:01 +000022#include "llvm/ADT/FoldingSet.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000023#include "llvm/ADT/StringExtras.h"
Nick Lewycky21cc4462009-04-04 07:22:01 +000024#include "llvm/ADT/StringMap.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000025#include "llvm/Support/Compiler.h"
Bill Wendling2e3def12006-11-17 08:03:48 +000026#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000027#include "llvm/Support/ErrorHandling.h"
Chris Lattner8a94bf12006-09-28 00:35:06 +000028#include "llvm/Support/ManagedStatic.h"
Bill Wendling2e3def12006-11-17 08:03:48 +000029#include "llvm/Support/MathExtras.h"
Chris Lattner37f077a2009-08-23 04:02:03 +000030#include "llvm/Support/raw_ostream.h"
Dan Gohmane6992f72009-09-10 23:37:55 +000031#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattner6b6f6ba2007-02-20 06:39:57 +000032#include "llvm/ADT/DenseMap.h"
Chris Lattnerf9021ff2007-02-19 20:01:23 +000033#include "llvm/ADT/SmallVector.h"
Chris Lattner00950542001-06-06 20:29:01 +000034#include <algorithm>
Reid Spenceref9b9a72007-02-05 20:47:22 +000035#include <map>
Chris Lattner31f84992003-11-21 20:23:48 +000036using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000037
Chris Lattner00950542001-06-06 20:29:01 +000038//===----------------------------------------------------------------------===//
Chris Lattnere9bb2df2001-12-03 22:26:30 +000039// Constant Class
Chris Lattner00950542001-06-06 20:29:01 +000040//===----------------------------------------------------------------------===//
41
Owen Andersona7235ea2009-07-31 20:28:14 +000042// Constructor to create a '0' constant of arbitrary type...
43static const uint64_t zero[2] = {0, 0};
Chris Lattner38211762009-10-30 22:33:29 +000044Constant *Constant::getNullValue(const Type *Ty) {
Owen Andersona7235ea2009-07-31 20:28:14 +000045 switch (Ty->getTypeID()) {
46 case Type::IntegerTyID:
47 return ConstantInt::get(Ty, 0);
48 case Type::FloatTyID:
49 return ConstantFP::get(Ty->getContext(), APFloat(APInt(32, 0)));
50 case Type::DoubleTyID:
51 return ConstantFP::get(Ty->getContext(), APFloat(APInt(64, 0)));
52 case Type::X86_FP80TyID:
53 return ConstantFP::get(Ty->getContext(), APFloat(APInt(80, 2, zero)));
54 case Type::FP128TyID:
55 return ConstantFP::get(Ty->getContext(),
56 APFloat(APInt(128, 2, zero), true));
57 case Type::PPC_FP128TyID:
58 return ConstantFP::get(Ty->getContext(), APFloat(APInt(128, 2, zero)));
59 case Type::PointerTyID:
60 return ConstantPointerNull::get(cast<PointerType>(Ty));
61 case Type::StructTyID:
Chris Lattnerd7ba0f22010-03-29 17:36:02 +000062 case Type::UnionTyID:
Owen Andersona7235ea2009-07-31 20:28:14 +000063 case Type::ArrayTyID:
64 case Type::VectorTyID:
65 return ConstantAggregateZero::get(Ty);
66 default:
67 // Function, Label, or Opaque type?
68 assert(!"Cannot create a null constant of that type!");
69 return 0;
70 }
71}
72
Chris Lattner38211762009-10-30 22:33:29 +000073Constant* Constant::getIntegerValue(const Type *Ty, const APInt &V) {
Dan Gohman43ee5f72009-08-03 22:07:33 +000074 const Type *ScalarTy = Ty->getScalarType();
75
76 // Create the base integer constant.
77 Constant *C = ConstantInt::get(Ty->getContext(), V);
78
79 // Convert an integer to a pointer, if necessary.
80 if (const PointerType *PTy = dyn_cast<PointerType>(ScalarTy))
81 C = ConstantExpr::getIntToPtr(C, PTy);
82
83 // Broadcast a scalar to a vector, if necessary.
84 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
85 C = ConstantVector::get(std::vector<Constant *>(VTy->getNumElements(), C));
86
87 return C;
88}
89
Chris Lattner38211762009-10-30 22:33:29 +000090Constant* Constant::getAllOnesValue(const Type *Ty) {
91 if (const IntegerType *ITy = dyn_cast<IntegerType>(Ty))
Owen Andersona7235ea2009-07-31 20:28:14 +000092 return ConstantInt::get(Ty->getContext(),
93 APInt::getAllOnesValue(ITy->getBitWidth()));
94
95 std::vector<Constant*> Elts;
Chris Lattner38211762009-10-30 22:33:29 +000096 const VectorType *VTy = cast<VectorType>(Ty);
Owen Andersona7235ea2009-07-31 20:28:14 +000097 Elts.resize(VTy->getNumElements(), getAllOnesValue(VTy->getElementType()));
98 assert(Elts[0] && "Not a vector integer type!");
99 return cast<ConstantVector>(ConstantVector::get(Elts));
100}
101
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000102void Constant::destroyConstantImpl() {
103 // When a Constant is destroyed, there may be lingering
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000104 // references to the constant by other constants in the constant pool. These
Misha Brukmanef6a6a62003-08-21 22:14:26 +0000105 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000106 // but they don't know that. Because we only find out when the CPV is
107 // deleted, we must now notify all of our users (that should only be
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000108 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000109 //
110 while (!use_empty()) {
111 Value *V = use_back();
112#ifndef NDEBUG // Only in -g mode...
Chris Lattner37f077a2009-08-23 04:02:03 +0000113 if (!isa<Constant>(V)) {
David Greened2e63b72010-01-05 01:29:19 +0000114 dbgs() << "While deleting: " << *this
Chris Lattner37f077a2009-08-23 04:02:03 +0000115 << "\n\nUse still stuck around after Def is destroyed: "
116 << *V << "\n\n";
117 }
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000118#endif
Vikram S. Adve345e0cf2002-07-14 23:13:17 +0000119 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Reid Spencer1c9c8e62004-07-17 23:48:33 +0000120 Constant *CV = cast<Constant>(V);
121 CV->destroyConstant();
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000122
123 // The constant should remove itself from our use list...
Vikram S. Adve345e0cf2002-07-14 23:13:17 +0000124 assert((use_empty() || use_back() != V) && "Constant not removed!");
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000125 }
126
127 // Value has no outstanding references it is safe to delete it now...
128 delete this;
Chris Lattner1d87bcf2001-10-01 20:11:19 +0000129}
Chris Lattner00950542001-06-06 20:29:01 +0000130
Chris Lattner35b89fa2006-10-20 00:27:06 +0000131/// canTrap - Return true if evaluation of this constant could trap. This is
132/// true for things like constant expressions that could divide by zero.
133bool Constant::canTrap() const {
134 assert(getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
135 // The only thing that could possibly trap are constant exprs.
136 const ConstantExpr *CE = dyn_cast<ConstantExpr>(this);
137 if (!CE) return false;
138
139 // ConstantExpr traps if any operands can trap.
140 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattner0eeb9132009-10-28 05:14:34 +0000141 if (CE->getOperand(i)->canTrap())
Chris Lattner35b89fa2006-10-20 00:27:06 +0000142 return true;
143
144 // Otherwise, only specific operations can trap.
145 switch (CE->getOpcode()) {
146 default:
147 return false;
Reid Spencer1628cec2006-10-26 06:15:43 +0000148 case Instruction::UDiv:
149 case Instruction::SDiv:
150 case Instruction::FDiv:
Reid Spencer0a783f72006-11-02 01:53:59 +0000151 case Instruction::URem:
152 case Instruction::SRem:
153 case Instruction::FRem:
Chris Lattner35b89fa2006-10-20 00:27:06 +0000154 // Div and rem can trap if the RHS is not known to be non-zero.
Chris Lattner0eeb9132009-10-28 05:14:34 +0000155 if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
Chris Lattner35b89fa2006-10-20 00:27:06 +0000156 return true;
157 return false;
158 }
159}
160
Chris Lattner4a7642e2009-11-01 18:11:50 +0000161/// isConstantUsed - Return true if the constant has users other than constant
162/// exprs and other dangling things.
163bool Constant::isConstantUsed() const {
Gabor Greif60ad7812010-03-25 23:06:16 +0000164 for (const_use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
Chris Lattner4a7642e2009-11-01 18:11:50 +0000165 const Constant *UC = dyn_cast<Constant>(*UI);
166 if (UC == 0 || isa<GlobalValue>(UC))
167 return true;
168
169 if (UC->isConstantUsed())
170 return true;
171 }
172 return false;
173}
174
175
Chris Lattner7cf12c72009-07-22 00:05:44 +0000176
177/// getRelocationInfo - This method classifies the entry according to
178/// whether or not it may generate a relocation entry. This must be
179/// conservative, so if it might codegen to a relocatable entry, it should say
180/// so. The return values are:
181///
Chris Lattner083a1e02009-07-24 03:27:21 +0000182/// NoRelocation: This constant pool entry is guaranteed to never have a
183/// relocation applied to it (because it holds a simple constant like
184/// '4').
185/// LocalRelocation: This entry has relocations, but the entries are
186/// guaranteed to be resolvable by the static linker, so the dynamic
187/// linker will never see them.
188/// GlobalRelocations: This entry may have arbitrary relocations.
Chris Lattner7cf12c72009-07-22 00:05:44 +0000189///
190/// FIXME: This really should not be in VMCore.
Chris Lattner083a1e02009-07-24 03:27:21 +0000191Constant::PossibleRelocationsTy Constant::getRelocationInfo() const {
192 if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
Chris Lattner7cf12c72009-07-22 00:05:44 +0000193 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
Chris Lattner083a1e02009-07-24 03:27:21 +0000194 return LocalRelocation; // Local to this file/library.
195 return GlobalRelocations; // Global reference.
Anton Korobeynikovab267a22009-03-29 17:13:18 +0000196 }
Chris Lattner7cf12c72009-07-22 00:05:44 +0000197
Chris Lattner5d81bef2009-10-28 04:12:16 +0000198 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
199 return BA->getFunction()->getRelocationInfo();
200
Chris Lattner5099b312010-01-03 18:09:40 +0000201 // While raw uses of blockaddress need to be relocated, differences between
202 // two of them don't when they are for labels in the same function. This is a
203 // common idiom when creating a table for the indirect goto extension, so we
204 // handle it efficiently here.
205 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(this))
206 if (CE->getOpcode() == Instruction::Sub) {
207 ConstantExpr *LHS = dyn_cast<ConstantExpr>(CE->getOperand(0));
208 ConstantExpr *RHS = dyn_cast<ConstantExpr>(CE->getOperand(1));
209 if (LHS && RHS &&
210 LHS->getOpcode() == Instruction::PtrToInt &&
211 RHS->getOpcode() == Instruction::PtrToInt &&
212 isa<BlockAddress>(LHS->getOperand(0)) &&
213 isa<BlockAddress>(RHS->getOperand(0)) &&
214 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
215 cast<BlockAddress>(RHS->getOperand(0))->getFunction())
216 return NoRelocation;
217 }
218
Chris Lattner083a1e02009-07-24 03:27:21 +0000219 PossibleRelocationsTy Result = NoRelocation;
Evan Chengafe15812007-03-08 00:59:12 +0000220 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattner0eeb9132009-10-28 05:14:34 +0000221 Result = std::max(Result,
222 cast<Constant>(getOperand(i))->getRelocationInfo());
Chris Lattner7cf12c72009-07-22 00:05:44 +0000223
224 return Result;
Evan Chengafe15812007-03-08 00:59:12 +0000225}
226
Chris Lattner7cf12c72009-07-22 00:05:44 +0000227
Chris Lattner86381442008-07-10 00:28:11 +0000228/// getVectorElements - This method, which is only valid on constant of vector
229/// type, returns the elements of the vector in the specified smallvector.
Chris Lattner071aade2008-07-14 05:10:41 +0000230/// This handles breaking down a vector undef into undef elements, etc. For
231/// constant exprs and other cases we can't handle, we return an empty vector.
Chris Lattnerb29d5962010-02-01 20:48:08 +0000232void Constant::getVectorElements(SmallVectorImpl<Constant*> &Elts) const {
Duncan Sands1df98592010-02-16 11:11:14 +0000233 assert(getType()->isVectorTy() && "Not a vector constant!");
Chris Lattner86381442008-07-10 00:28:11 +0000234
235 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this)) {
236 for (unsigned i = 0, e = CV->getNumOperands(); i != e; ++i)
237 Elts.push_back(CV->getOperand(i));
238 return;
239 }
240
241 const VectorType *VT = cast<VectorType>(getType());
242 if (isa<ConstantAggregateZero>(this)) {
243 Elts.assign(VT->getNumElements(),
Owen Andersona7235ea2009-07-31 20:28:14 +0000244 Constant::getNullValue(VT->getElementType()));
Chris Lattner86381442008-07-10 00:28:11 +0000245 return;
246 }
247
Chris Lattner071aade2008-07-14 05:10:41 +0000248 if (isa<UndefValue>(this)) {
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000249 Elts.assign(VT->getNumElements(), UndefValue::get(VT->getElementType()));
Chris Lattner071aade2008-07-14 05:10:41 +0000250 return;
251 }
252
253 // Unknown type, must be constant expr etc.
Chris Lattner86381442008-07-10 00:28:11 +0000254}
255
256
257
Chris Lattner00950542001-06-06 20:29:01 +0000258//===----------------------------------------------------------------------===//
Chris Lattner6b6f6ba2007-02-20 06:39:57 +0000259// ConstantInt
Chris Lattner00950542001-06-06 20:29:01 +0000260//===----------------------------------------------------------------------===//
261
Reid Spencer532d0ce2007-02-26 23:54:03 +0000262ConstantInt::ConstantInt(const IntegerType *Ty, const APInt& V)
Chris Lattnereb41bdd2007-02-20 05:55:46 +0000263 : Constant(Ty, ConstantIntVal, 0, 0), Val(V) {
Reid Spencer532d0ce2007-02-26 23:54:03 +0000264 assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
Chris Lattner00950542001-06-06 20:29:01 +0000265}
266
Owen Anderson5defacc2009-07-31 17:39:07 +0000267ConstantInt* ConstantInt::getTrue(LLVMContext &Context) {
268 LLVMContextImpl *pImpl = Context.pImpl;
Owen Anderson5defacc2009-07-31 17:39:07 +0000269 if (pImpl->TheTrueVal)
270 return pImpl->TheTrueVal;
271 else
Owen Anderson1d0be152009-08-13 21:58:54 +0000272 return (pImpl->TheTrueVal =
273 ConstantInt::get(IntegerType::get(Context, 1), 1));
Owen Anderson5defacc2009-07-31 17:39:07 +0000274}
275
276ConstantInt* ConstantInt::getFalse(LLVMContext &Context) {
277 LLVMContextImpl *pImpl = Context.pImpl;
Owen Anderson5defacc2009-07-31 17:39:07 +0000278 if (pImpl->TheFalseVal)
279 return pImpl->TheFalseVal;
280 else
Owen Anderson1d0be152009-08-13 21:58:54 +0000281 return (pImpl->TheFalseVal =
282 ConstantInt::get(IntegerType::get(Context, 1), 0));
Owen Anderson5defacc2009-07-31 17:39:07 +0000283}
284
285
Owen Andersoneed707b2009-07-24 23:12:02 +0000286// Get a ConstantInt from an APInt. Note that the value stored in the DenseMap
287// as the key, is a DenseMapAPIntKeyInfo::KeyTy which has provided the
288// operator== and operator!= to ensure that the DenseMap doesn't attempt to
289// compare APInt's of different widths, which would violate an APInt class
290// invariant which generates an assertion.
291ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt& V) {
292 // Get the corresponding integer type for the bit width of the value.
Owen Anderson1d0be152009-08-13 21:58:54 +0000293 const IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
Owen Andersoneed707b2009-07-24 23:12:02 +0000294 // get an existing value or the insertion position
295 DenseMapAPIntKeyInfo::KeyTy Key(V, ITy);
Owen Andersoneed707b2009-07-24 23:12:02 +0000296 ConstantInt *&Slot = Context.pImpl->IntConstants[Key];
Owen Anderson59d5aac2009-10-19 20:11:52 +0000297 if (!Slot) Slot = new ConstantInt(ITy, V);
298 return Slot;
Owen Andersoneed707b2009-07-24 23:12:02 +0000299}
300
301Constant* ConstantInt::get(const Type* Ty, uint64_t V, bool isSigned) {
302 Constant *C = get(cast<IntegerType>(Ty->getScalarType()),
303 V, isSigned);
304
305 // For vectors, broadcast the value.
306 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
Owen Andersonaf7ec972009-07-28 21:19:26 +0000307 return ConstantVector::get(
Owen Andersoneed707b2009-07-24 23:12:02 +0000308 std::vector<Constant *>(VTy->getNumElements(), C));
309
310 return C;
311}
312
313ConstantInt* ConstantInt::get(const IntegerType* Ty, uint64_t V,
314 bool isSigned) {
315 return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
316}
317
318ConstantInt* ConstantInt::getSigned(const IntegerType* Ty, int64_t V) {
319 return get(Ty, V, true);
320}
321
322Constant *ConstantInt::getSigned(const Type *Ty, int64_t V) {
323 return get(Ty, V, true);
324}
325
326Constant* ConstantInt::get(const Type* Ty, const APInt& V) {
327 ConstantInt *C = get(Ty->getContext(), V);
328 assert(C->getType() == Ty->getScalarType() &&
329 "ConstantInt type doesn't match the type implied by its value!");
330
331 // For vectors, broadcast the value.
332 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
Owen Andersonaf7ec972009-07-28 21:19:26 +0000333 return ConstantVector::get(
Owen Andersoneed707b2009-07-24 23:12:02 +0000334 std::vector<Constant *>(VTy->getNumElements(), C));
335
336 return C;
337}
338
Daniel Dunbar2928c832009-11-06 10:58:06 +0000339ConstantInt* ConstantInt::get(const IntegerType* Ty, StringRef Str,
Erick Tryzelaar0e81f662009-08-16 23:36:33 +0000340 uint8_t radix) {
341 return get(Ty->getContext(), APInt(Ty->getBitWidth(), Str, radix));
342}
343
Chris Lattner6b6f6ba2007-02-20 06:39:57 +0000344//===----------------------------------------------------------------------===//
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000345// ConstantFP
Chris Lattner6b6f6ba2007-02-20 06:39:57 +0000346//===----------------------------------------------------------------------===//
347
Rafael Espindola87d1f472009-07-15 17:40:42 +0000348static const fltSemantics *TypeToFloatSemantics(const Type *Ty) {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000349 if (Ty->isFloatTy())
Rafael Espindola87d1f472009-07-15 17:40:42 +0000350 return &APFloat::IEEEsingle;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000351 if (Ty->isDoubleTy())
Rafael Espindola87d1f472009-07-15 17:40:42 +0000352 return &APFloat::IEEEdouble;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000353 if (Ty->isX86_FP80Ty())
Rafael Espindola87d1f472009-07-15 17:40:42 +0000354 return &APFloat::x87DoubleExtended;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000355 else if (Ty->isFP128Ty())
Rafael Espindola87d1f472009-07-15 17:40:42 +0000356 return &APFloat::IEEEquad;
357
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000358 assert(Ty->isPPC_FP128Ty() && "Unknown FP format");
Rafael Espindola87d1f472009-07-15 17:40:42 +0000359 return &APFloat::PPCDoubleDouble;
360}
361
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000362/// get() - This returns a constant fp for the specified value in the
363/// specified type. This should only be used for simple constant values like
364/// 2.0/1.0 etc, that are known-valid both as double and as the target format.
365Constant* ConstantFP::get(const Type* Ty, double V) {
366 LLVMContext &Context = Ty->getContext();
367
368 APFloat FV(V);
369 bool ignored;
370 FV.convert(*TypeToFloatSemantics(Ty->getScalarType()),
371 APFloat::rmNearestTiesToEven, &ignored);
372 Constant *C = get(Context, FV);
373
374 // For vectors, broadcast the value.
375 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
Owen Andersonaf7ec972009-07-28 21:19:26 +0000376 return ConstantVector::get(
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000377 std::vector<Constant *>(VTy->getNumElements(), C));
378
379 return C;
380}
381
Erick Tryzelaar0e81f662009-08-16 23:36:33 +0000382
Daniel Dunbar2928c832009-11-06 10:58:06 +0000383Constant* ConstantFP::get(const Type* Ty, StringRef Str) {
Erick Tryzelaar0e81f662009-08-16 23:36:33 +0000384 LLVMContext &Context = Ty->getContext();
385
386 APFloat FV(*TypeToFloatSemantics(Ty->getScalarType()), Str);
387 Constant *C = get(Context, FV);
388
389 // For vectors, broadcast the value.
390 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
391 return ConstantVector::get(
392 std::vector<Constant *>(VTy->getNumElements(), C));
393
394 return C;
395}
396
397
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000398ConstantFP* ConstantFP::getNegativeZero(const Type* Ty) {
399 LLVMContext &Context = Ty->getContext();
Owen Andersona7235ea2009-07-31 20:28:14 +0000400 APFloat apf = cast <ConstantFP>(Constant::getNullValue(Ty))->getValueAPF();
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000401 apf.changeSign();
402 return get(Context, apf);
403}
404
405
406Constant* ConstantFP::getZeroValueForNegation(const Type* Ty) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000407 if (const VectorType *PTy = dyn_cast<VectorType>(Ty))
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000408 if (PTy->getElementType()->isFloatingPointTy()) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000409 std::vector<Constant*> zeros(PTy->getNumElements(),
410 getNegativeZero(PTy->getElementType()));
Owen Andersonaf7ec972009-07-28 21:19:26 +0000411 return ConstantVector::get(PTy, zeros);
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000412 }
413
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000414 if (Ty->isFloatingPointTy())
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000415 return getNegativeZero(Ty);
416
Owen Andersona7235ea2009-07-31 20:28:14 +0000417 return Constant::getNullValue(Ty);
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000418}
419
420
421// ConstantFP accessors.
422ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) {
423 DenseMapAPFloatKeyInfo::KeyTy Key(V);
424
425 LLVMContextImpl* pImpl = Context.pImpl;
426
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000427 ConstantFP *&Slot = pImpl->FPConstants[Key];
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000428
429 if (!Slot) {
Owen Anderson59d5aac2009-10-19 20:11:52 +0000430 const Type *Ty;
431 if (&V.getSemantics() == &APFloat::IEEEsingle)
432 Ty = Type::getFloatTy(Context);
433 else if (&V.getSemantics() == &APFloat::IEEEdouble)
434 Ty = Type::getDoubleTy(Context);
435 else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
436 Ty = Type::getX86_FP80Ty(Context);
437 else if (&V.getSemantics() == &APFloat::IEEEquad)
438 Ty = Type::getFP128Ty(Context);
439 else {
440 assert(&V.getSemantics() == &APFloat::PPCDoubleDouble &&
441 "Unknown FP format");
442 Ty = Type::getPPC_FP128Ty(Context);
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000443 }
Owen Anderson59d5aac2009-10-19 20:11:52 +0000444 Slot = new ConstantFP(Ty, V);
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000445 }
446
447 return Slot;
448}
449
Dan Gohmana23643d2009-09-25 23:40:21 +0000450ConstantFP *ConstantFP::getInfinity(const Type *Ty, bool Negative) {
Dan Gohmanf344f7f2009-09-25 23:00:48 +0000451 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty);
452 return ConstantFP::get(Ty->getContext(),
453 APFloat::getInf(Semantics, Negative));
454}
455
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000456ConstantFP::ConstantFP(const Type *Ty, const APFloat& V)
457 : Constant(Ty, ConstantFPVal, 0, 0), Val(V) {
Chris Lattner288e78f2008-04-09 06:38:30 +0000458 assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
459 "FP type Mismatch");
Chris Lattner00950542001-06-06 20:29:01 +0000460}
461
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000462bool ConstantFP::isNullValue() const {
Dale Johannesen343e7702007-08-24 00:56:33 +0000463 return Val.isZero() && !Val.isNegative();
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000464}
465
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000466bool ConstantFP::isExactlyValue(const APFloat& V) const {
467 return Val.bitwiseIsEqual(V);
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000468}
469
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000470//===----------------------------------------------------------------------===//
471// ConstantXXX Classes
472//===----------------------------------------------------------------------===//
473
474
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000475ConstantArray::ConstantArray(const ArrayType *T,
Chris Lattnere4671472005-01-29 00:34:39 +0000476 const std::vector<Constant*> &V)
Gabor Greifefe65362008-05-10 08:32:32 +0000477 : Constant(T, ConstantArrayVal,
478 OperandTraits<ConstantArray>::op_end(this) - V.size(),
479 V.size()) {
Alkis Evlogimenose0de1d62004-09-15 02:32:15 +0000480 assert(V.size() == T->getNumElements() &&
481 "Invalid initializer vector for constant array");
Chris Lattnere4671472005-01-29 00:34:39 +0000482 Use *OL = OperandList;
Chris Lattnerdfdd6c52005-10-03 21:56:24 +0000483 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
484 I != E; ++I, ++OL) {
Chris Lattner71abaab2005-10-07 05:23:36 +0000485 Constant *C = *I;
Nick Lewyckyb13105f2009-10-03 19:30:43 +0000486 assert(C->getType() == T->getElementType() &&
Alkis Evlogimenoscad90ad2004-09-10 04:16:59 +0000487 "Initializer for array element doesn't match array element type!");
Gabor Greif6c80c382008-05-26 21:33:52 +0000488 *OL = C;
Chris Lattner00950542001-06-06 20:29:01 +0000489 }
490}
491
Owen Anderson1fd70962009-07-28 18:32:17 +0000492Constant *ConstantArray::get(const ArrayType *Ty,
493 const std::vector<Constant*> &V) {
Jeffrey Yasskin1fb613c2009-09-30 21:08:08 +0000494 for (unsigned i = 0, e = V.size(); i != e; ++i) {
495 assert(V[i]->getType() == Ty->getElementType() &&
496 "Wrong type in array element initializer");
497 }
Owen Anderson1fd70962009-07-28 18:32:17 +0000498 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
499 // If this is an all-zero array, return a ConstantAggregateZero object
500 if (!V.empty()) {
501 Constant *C = V[0];
Chris Lattner83738a22009-12-30 20:25:09 +0000502 if (!C->isNullValue())
Owen Anderson1fd70962009-07-28 18:32:17 +0000503 return pImpl->ArrayConstants.getOrCreate(Ty, V);
Chris Lattner83738a22009-12-30 20:25:09 +0000504
Owen Anderson1fd70962009-07-28 18:32:17 +0000505 for (unsigned i = 1, e = V.size(); i != e; ++i)
Chris Lattner83738a22009-12-30 20:25:09 +0000506 if (V[i] != C)
Owen Anderson1fd70962009-07-28 18:32:17 +0000507 return pImpl->ArrayConstants.getOrCreate(Ty, V);
Owen Anderson1fd70962009-07-28 18:32:17 +0000508 }
509
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000510 return ConstantAggregateZero::get(Ty);
Owen Anderson1fd70962009-07-28 18:32:17 +0000511}
512
513
514Constant* ConstantArray::get(const ArrayType* T, Constant* const* Vals,
515 unsigned NumVals) {
516 // FIXME: make this the primary ctor method.
517 return get(T, std::vector<Constant*>(Vals, Vals+NumVals));
518}
519
520/// ConstantArray::get(const string&) - Return an array that is initialized to
521/// contain the specified string. If length is zero then a null terminator is
522/// added to the specified string so that it may be used in a natural way.
523/// Otherwise, the length parameter specifies how much of the string to use
524/// and it won't be null terminated.
525///
Daniel Dunbar2928c832009-11-06 10:58:06 +0000526Constant* ConstantArray::get(LLVMContext &Context, StringRef Str,
Owen Anderson1d0be152009-08-13 21:58:54 +0000527 bool AddNull) {
Owen Anderson1fd70962009-07-28 18:32:17 +0000528 std::vector<Constant*> ElementVals;
529 for (unsigned i = 0; i < Str.size(); ++i)
Owen Anderson1d0be152009-08-13 21:58:54 +0000530 ElementVals.push_back(ConstantInt::get(Type::getInt8Ty(Context), Str[i]));
Owen Anderson1fd70962009-07-28 18:32:17 +0000531
532 // Add a null terminator to the string...
533 if (AddNull) {
Owen Anderson1d0be152009-08-13 21:58:54 +0000534 ElementVals.push_back(ConstantInt::get(Type::getInt8Ty(Context), 0));
Owen Anderson1fd70962009-07-28 18:32:17 +0000535 }
536
Owen Anderson1d0be152009-08-13 21:58:54 +0000537 ArrayType *ATy = ArrayType::get(Type::getInt8Ty(Context), ElementVals.size());
Owen Anderson1fd70962009-07-28 18:32:17 +0000538 return get(ATy, ElementVals);
539}
540
541
Chris Lattnere4671472005-01-29 00:34:39 +0000542
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000543ConstantStruct::ConstantStruct(const StructType *T,
Chris Lattnere4671472005-01-29 00:34:39 +0000544 const std::vector<Constant*> &V)
Gabor Greifefe65362008-05-10 08:32:32 +0000545 : Constant(T, ConstantStructVal,
546 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
547 V.size()) {
Chris Lattnerd21cd802004-02-09 04:37:31 +0000548 assert(V.size() == T->getNumElements() &&
Vikram S. Adve345e0cf2002-07-14 23:13:17 +0000549 "Invalid initializer vector for constant structure");
Chris Lattnere4671472005-01-29 00:34:39 +0000550 Use *OL = OperandList;
Chris Lattnerdfdd6c52005-10-03 21:56:24 +0000551 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
552 I != E; ++I, ++OL) {
Chris Lattner71abaab2005-10-07 05:23:36 +0000553 Constant *C = *I;
Nick Lewyckyb13105f2009-10-03 19:30:43 +0000554 assert(C->getType() == T->getElementType(I-V.begin()) &&
Chris Lattnerb8438892003-06-02 17:42:47 +0000555 "Initializer for struct element doesn't match struct element type!");
Gabor Greif6c80c382008-05-26 21:33:52 +0000556 *OL = C;
Chris Lattner00950542001-06-06 20:29:01 +0000557 }
558}
559
Owen Anderson8fa33382009-07-27 22:29:26 +0000560// ConstantStruct accessors.
561Constant* ConstantStruct::get(const StructType* T,
562 const std::vector<Constant*>& V) {
563 LLVMContextImpl* pImpl = T->getContext().pImpl;
564
565 // Create a ConstantAggregateZero value if all elements are zeros...
566 for (unsigned i = 0, e = V.size(); i != e; ++i)
567 if (!V[i]->isNullValue())
Owen Anderson8fa33382009-07-27 22:29:26 +0000568 return pImpl->StructConstants.getOrCreate(T, V);
569
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000570 return ConstantAggregateZero::get(T);
Owen Anderson8fa33382009-07-27 22:29:26 +0000571}
572
Owen Andersond7f2a6c2009-08-05 23:16:16 +0000573Constant* ConstantStruct::get(LLVMContext &Context,
574 const std::vector<Constant*>& V, bool packed) {
Owen Anderson8fa33382009-07-27 22:29:26 +0000575 std::vector<const Type*> StructEls;
576 StructEls.reserve(V.size());
577 for (unsigned i = 0, e = V.size(); i != e; ++i)
578 StructEls.push_back(V[i]->getType());
Owen Andersond7f2a6c2009-08-05 23:16:16 +0000579 return get(StructType::get(Context, StructEls, packed), V);
Owen Anderson8fa33382009-07-27 22:29:26 +0000580}
581
Owen Andersond7f2a6c2009-08-05 23:16:16 +0000582Constant* ConstantStruct::get(LLVMContext &Context,
583 Constant* const *Vals, unsigned NumVals,
Owen Anderson8fa33382009-07-27 22:29:26 +0000584 bool Packed) {
585 // FIXME: make this the primary ctor method.
Owen Andersond7f2a6c2009-08-05 23:16:16 +0000586 return get(Context, std::vector<Constant*>(Vals, Vals+NumVals), Packed);
Owen Anderson8fa33382009-07-27 22:29:26 +0000587}
Chris Lattnere4671472005-01-29 00:34:39 +0000588
Chris Lattnerfdfeb692010-02-12 20:49:41 +0000589ConstantUnion::ConstantUnion(const UnionType *T, Constant* V)
590 : Constant(T, ConstantUnionVal,
591 OperandTraits<ConstantUnion>::op_end(this) - 1, 1) {
592 Use *OL = OperandList;
593 assert(T->getElementTypeIndex(V->getType()) >= 0 &&
594 "Initializer for union element isn't a member of union type!");
595 *OL = V;
596}
597
598// ConstantUnion accessors.
599Constant* ConstantUnion::get(const UnionType* T, Constant* V) {
600 LLVMContextImpl* pImpl = T->getContext().pImpl;
601
602 // Create a ConstantAggregateZero value if all elements are zeros...
603 if (!V->isNullValue())
604 return pImpl->UnionConstants.getOrCreate(T, V);
605
606 return ConstantAggregateZero::get(T);
607}
608
609
Reid Spencer9d6565a2007-02-15 02:26:10 +0000610ConstantVector::ConstantVector(const VectorType *T,
Chris Lattnere4671472005-01-29 00:34:39 +0000611 const std::vector<Constant*> &V)
Gabor Greifefe65362008-05-10 08:32:32 +0000612 : Constant(T, ConstantVectorVal,
613 OperandTraits<ConstantVector>::op_end(this) - V.size(),
614 V.size()) {
Chris Lattnere4671472005-01-29 00:34:39 +0000615 Use *OL = OperandList;
Chris Lattnerdfdd6c52005-10-03 21:56:24 +0000616 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
617 I != E; ++I, ++OL) {
Chris Lattner71abaab2005-10-07 05:23:36 +0000618 Constant *C = *I;
Nick Lewyckyb13105f2009-10-03 19:30:43 +0000619 assert(C->getType() == T->getElementType() &&
Dan Gohmanfa73ea22007-05-24 14:36:04 +0000620 "Initializer for vector element doesn't match vector element type!");
Gabor Greif6c80c382008-05-26 21:33:52 +0000621 *OL = C;
Brian Gaeke715c90b2004-08-20 06:00:58 +0000622 }
623}
624
Owen Andersonaf7ec972009-07-28 21:19:26 +0000625// ConstantVector accessors.
626Constant* ConstantVector::get(const VectorType* T,
627 const std::vector<Constant*>& V) {
628 assert(!V.empty() && "Vectors can't be empty");
629 LLVMContext &Context = T->getContext();
630 LLVMContextImpl *pImpl = Context.pImpl;
631
632 // If this is an all-undef or alll-zero vector, return a
633 // ConstantAggregateZero or UndefValue.
634 Constant *C = V[0];
635 bool isZero = C->isNullValue();
636 bool isUndef = isa<UndefValue>(C);
637
638 if (isZero || isUndef) {
639 for (unsigned i = 1, e = V.size(); i != e; ++i)
640 if (V[i] != C) {
641 isZero = isUndef = false;
642 break;
643 }
644 }
645
646 if (isZero)
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000647 return ConstantAggregateZero::get(T);
Owen Andersonaf7ec972009-07-28 21:19:26 +0000648 if (isUndef)
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000649 return UndefValue::get(T);
Owen Andersonaf7ec972009-07-28 21:19:26 +0000650
Owen Andersonaf7ec972009-07-28 21:19:26 +0000651 return pImpl->VectorConstants.getOrCreate(T, V);
652}
653
654Constant* ConstantVector::get(const std::vector<Constant*>& V) {
655 assert(!V.empty() && "Cannot infer type if V is empty");
656 return get(VectorType::get(V.front()->getType(),V.size()), V);
657}
658
659Constant* ConstantVector::get(Constant* const* Vals, unsigned NumVals) {
660 // FIXME: make this the primary ctor method.
661 return get(std::vector<Constant*>(Vals, Vals+NumVals));
662}
663
Dan Gohmanbdc46c62009-12-18 02:58:50 +0000664Constant* ConstantExpr::getNSWNeg(Constant* C) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000665 assert(C->getType()->isIntOrIntVectorTy() &&
Dan Gohmanbdc46c62009-12-18 02:58:50 +0000666 "Cannot NEG a nonintegral value!");
667 return getNSWSub(ConstantFP::getZeroValueForNegation(C->getType()), C);
668}
669
Duncan Sands8991d512010-02-02 12:53:04 +0000670Constant* ConstantExpr::getNUWNeg(Constant* C) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000671 assert(C->getType()->isIntOrIntVectorTy() &&
Duncan Sands8991d512010-02-02 12:53:04 +0000672 "Cannot NEG a nonintegral value!");
673 return getNUWSub(ConstantFP::getZeroValueForNegation(C->getType()), C);
674}
675
Dan Gohman6e7ad952009-09-03 23:34:49 +0000676Constant* ConstantExpr::getNSWAdd(Constant* C1, Constant* C2) {
Dan Gohmanf8dbee72009-09-07 23:54:19 +0000677 return getTy(C1->getType(), Instruction::Add, C1, C2,
678 OverflowingBinaryOperator::NoSignedWrap);
Dan Gohman6e7ad952009-09-03 23:34:49 +0000679}
680
Duncan Sands8991d512010-02-02 12:53:04 +0000681Constant* ConstantExpr::getNUWAdd(Constant* C1, Constant* C2) {
682 return getTy(C1->getType(), Instruction::Add, C1, C2,
683 OverflowingBinaryOperator::NoUnsignedWrap);
684}
685
Duncan Sands3548ea82009-09-26 15:35:35 +0000686Constant* ConstantExpr::getNSWSub(Constant* C1, Constant* C2) {
687 return getTy(C1->getType(), Instruction::Sub, C1, C2,
688 OverflowingBinaryOperator::NoSignedWrap);
689}
690
Duncan Sands8991d512010-02-02 12:53:04 +0000691Constant* ConstantExpr::getNUWSub(Constant* C1, Constant* C2) {
692 return getTy(C1->getType(), Instruction::Sub, C1, C2,
Dan Gohmand75ff312010-02-01 16:38:14 +0000693 OverflowingBinaryOperator::NoUnsignedWrap);
694}
695
Dan Gohman41198482009-12-18 03:10:26 +0000696Constant* ConstantExpr::getNSWMul(Constant* C1, Constant* C2) {
697 return getTy(C1->getType(), Instruction::Mul, C1, C2,
698 OverflowingBinaryOperator::NoSignedWrap);
699}
700
Duncan Sands8991d512010-02-02 12:53:04 +0000701Constant* ConstantExpr::getNUWMul(Constant* C1, Constant* C2) {
702 return getTy(C1->getType(), Instruction::Mul, C1, C2,
703 OverflowingBinaryOperator::NoUnsignedWrap);
704}
705
Dan Gohman6e7ad952009-09-03 23:34:49 +0000706Constant* ConstantExpr::getExactSDiv(Constant* C1, Constant* C2) {
Dan Gohmanf8dbee72009-09-07 23:54:19 +0000707 return getTy(C1->getType(), Instruction::SDiv, C1, C2,
708 SDivOperator::IsExact);
Dan Gohman6e7ad952009-09-03 23:34:49 +0000709}
710
Reid Spencer3da59db2006-11-27 01:05:10 +0000711// Utility function for determining if a ConstantExpr is a CastOp or not. This
712// can't be inline because we don't want to #include Instruction.h into
713// Constant.h
714bool ConstantExpr::isCast() const {
715 return Instruction::isCast(getOpcode());
716}
717
Reid Spencer077d0eb2006-12-04 05:19:50 +0000718bool ConstantExpr::isCompare() const {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +0000719 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
Reid Spencer077d0eb2006-12-04 05:19:50 +0000720}
721
Dan Gohmane6992f72009-09-10 23:37:55 +0000722bool ConstantExpr::isGEPWithNoNotionalOverIndexing() const {
723 if (getOpcode() != Instruction::GetElementPtr) return false;
724
725 gep_type_iterator GEPI = gep_type_begin(this), E = gep_type_end(this);
726 User::const_op_iterator OI = next(this->op_begin());
727
728 // Skip the first index, as it has no static limit.
729 ++GEPI;
730 ++OI;
731
732 // The remaining indices must be compile-time known integers within the
733 // bounds of the corresponding notional static array types.
734 for (; GEPI != E; ++GEPI, ++OI) {
735 ConstantInt *CI = dyn_cast<ConstantInt>(*OI);
736 if (!CI) return false;
737 if (const ArrayType *ATy = dyn_cast<ArrayType>(*GEPI))
738 if (CI->getValue().getActiveBits() > 64 ||
739 CI->getZExtValue() >= ATy->getNumElements())
740 return false;
741 }
742
743 // All the indices checked out.
744 return true;
745}
746
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000747bool ConstantExpr::hasIndices() const {
748 return getOpcode() == Instruction::ExtractValue ||
749 getOpcode() == Instruction::InsertValue;
750}
751
752const SmallVector<unsigned, 4> &ConstantExpr::getIndices() const {
753 if (const ExtractValueConstantExpr *EVCE =
754 dyn_cast<ExtractValueConstantExpr>(this))
755 return EVCE->Indices;
Dan Gohman1a203572008-06-23 16:39:44 +0000756
757 return cast<InsertValueConstantExpr>(this)->Indices;
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000758}
759
Reid Spencer728b6db2006-12-03 05:48:19 +0000760unsigned ConstantExpr::getPredicate() const {
Nate Begemanac80ade2008-05-12 19:01:56 +0000761 assert(getOpcode() == Instruction::FCmp ||
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +0000762 getOpcode() == Instruction::ICmp);
Chris Lattnerb7daa842007-10-18 16:26:24 +0000763 return ((const CompareConstantExpr*)this)->predicate;
Reid Spencer728b6db2006-12-03 05:48:19 +0000764}
Chris Lattnerf4ba6c72001-10-03 06:12:09 +0000765
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000766/// getWithOperandReplaced - Return a constant expression identical to this
767/// one, but with the specified operand set to the specified value.
Reid Spencer3da59db2006-11-27 01:05:10 +0000768Constant *
769ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000770 assert(OpNo < getNumOperands() && "Operand num is out of range!");
771 assert(Op->getType() == getOperand(OpNo)->getType() &&
772 "Replacing operand with value of different type!");
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000773 if (getOperand(OpNo) == Op)
774 return const_cast<ConstantExpr*>(this);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000775
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000776 Constant *Op0, *Op1, *Op2;
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000777 switch (getOpcode()) {
Reid Spencer3da59db2006-11-27 01:05:10 +0000778 case Instruction::Trunc:
779 case Instruction::ZExt:
780 case Instruction::SExt:
781 case Instruction::FPTrunc:
782 case Instruction::FPExt:
783 case Instruction::UIToFP:
784 case Instruction::SIToFP:
785 case Instruction::FPToUI:
786 case Instruction::FPToSI:
787 case Instruction::PtrToInt:
788 case Instruction::IntToPtr:
789 case Instruction::BitCast:
790 return ConstantExpr::getCast(getOpcode(), Op, getType());
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000791 case Instruction::Select:
792 Op0 = (OpNo == 0) ? Op : getOperand(0);
793 Op1 = (OpNo == 1) ? Op : getOperand(1);
794 Op2 = (OpNo == 2) ? Op : getOperand(2);
795 return ConstantExpr::getSelect(Op0, Op1, Op2);
796 case Instruction::InsertElement:
797 Op0 = (OpNo == 0) ? Op : getOperand(0);
798 Op1 = (OpNo == 1) ? Op : getOperand(1);
799 Op2 = (OpNo == 2) ? Op : getOperand(2);
800 return ConstantExpr::getInsertElement(Op0, Op1, Op2);
801 case Instruction::ExtractElement:
802 Op0 = (OpNo == 0) ? Op : getOperand(0);
803 Op1 = (OpNo == 1) ? Op : getOperand(1);
804 return ConstantExpr::getExtractElement(Op0, Op1);
805 case Instruction::ShuffleVector:
806 Op0 = (OpNo == 0) ? Op : getOperand(0);
807 Op1 = (OpNo == 1) ? Op : getOperand(1);
808 Op2 = (OpNo == 2) ? Op : getOperand(2);
809 return ConstantExpr::getShuffleVector(Op0, Op1, Op2);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000810 case Instruction::GetElementPtr: {
Chris Lattnerf9021ff2007-02-19 20:01:23 +0000811 SmallVector<Constant*, 8> Ops;
Dan Gohman041e2eb2008-05-15 19:50:34 +0000812 Ops.resize(getNumOperands()-1);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000813 for (unsigned i = 1, e = getNumOperands(); i != e; ++i)
Dan Gohman041e2eb2008-05-15 19:50:34 +0000814 Ops[i-1] = getOperand(i);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000815 if (OpNo == 0)
Dan Gohmanf8dbee72009-09-07 23:54:19 +0000816 return cast<GEPOperator>(this)->isInBounds() ?
817 ConstantExpr::getInBoundsGetElementPtr(Op, &Ops[0], Ops.size()) :
818 ConstantExpr::getGetElementPtr(Op, &Ops[0], Ops.size());
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000819 Ops[OpNo-1] = Op;
Dan Gohmanf8dbee72009-09-07 23:54:19 +0000820 return cast<GEPOperator>(this)->isInBounds() ?
Chris Lattnercafe9bb2009-12-29 02:14:09 +0000821 ConstantExpr::getInBoundsGetElementPtr(getOperand(0), &Ops[0],Ops.size()):
Dan Gohmanf8dbee72009-09-07 23:54:19 +0000822 ConstantExpr::getGetElementPtr(getOperand(0), &Ops[0], Ops.size());
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000823 }
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000824 default:
825 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000826 Op0 = (OpNo == 0) ? Op : getOperand(0);
827 Op1 = (OpNo == 1) ? Op : getOperand(1);
Chris Lattnercafe9bb2009-12-29 02:14:09 +0000828 return ConstantExpr::get(getOpcode(), Op0, Op1, SubclassOptionalData);
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000829 }
830}
831
832/// getWithOperands - This returns the current constant expression with the
833/// operands replaced with the specified values. The specified operands must
834/// match count and type with the existing ones.
835Constant *ConstantExpr::
Chris Lattnerb054bfd2008-08-20 22:27:40 +0000836getWithOperands(Constant* const *Ops, unsigned NumOps) const {
837 assert(NumOps == getNumOperands() && "Operand count mismatch!");
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000838 bool AnyChange = false;
Chris Lattnerb054bfd2008-08-20 22:27:40 +0000839 for (unsigned i = 0; i != NumOps; ++i) {
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000840 assert(Ops[i]->getType() == getOperand(i)->getType() &&
841 "Operand type mismatch!");
842 AnyChange |= Ops[i] != getOperand(i);
843 }
844 if (!AnyChange) // No operands changed, return self.
845 return const_cast<ConstantExpr*>(this);
846
847 switch (getOpcode()) {
Reid Spencer3da59db2006-11-27 01:05:10 +0000848 case Instruction::Trunc:
849 case Instruction::ZExt:
850 case Instruction::SExt:
851 case Instruction::FPTrunc:
852 case Instruction::FPExt:
853 case Instruction::UIToFP:
854 case Instruction::SIToFP:
855 case Instruction::FPToUI:
856 case Instruction::FPToSI:
857 case Instruction::PtrToInt:
858 case Instruction::IntToPtr:
859 case Instruction::BitCast:
860 return ConstantExpr::getCast(getOpcode(), Ops[0], getType());
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000861 case Instruction::Select:
862 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]);
863 case Instruction::InsertElement:
864 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]);
865 case Instruction::ExtractElement:
866 return ConstantExpr::getExtractElement(Ops[0], Ops[1]);
867 case Instruction::ShuffleVector:
868 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2]);
Chris Lattnerf9021ff2007-02-19 20:01:23 +0000869 case Instruction::GetElementPtr:
Dan Gohmanf8dbee72009-09-07 23:54:19 +0000870 return cast<GEPOperator>(this)->isInBounds() ?
871 ConstantExpr::getInBoundsGetElementPtr(Ops[0], &Ops[1], NumOps-1) :
872 ConstantExpr::getGetElementPtr(Ops[0], &Ops[1], NumOps-1);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000873 case Instruction::ICmp:
874 case Instruction::FCmp:
875 return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1]);
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000876 default:
877 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattnercafe9bb2009-12-29 02:14:09 +0000878 return ConstantExpr::get(getOpcode(), Ops[0], Ops[1], SubclassOptionalData);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000879 }
880}
881
Chris Lattner00950542001-06-06 20:29:01 +0000882
883//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +0000884// isValueValidForType implementations
885
Reid Spencer9b11d512006-12-19 01:28:19 +0000886bool ConstantInt::isValueValidForType(const Type *Ty, uint64_t Val) {
Reid Spencera54b7cb2007-01-12 07:05:14 +0000887 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
Owen Anderson1d0be152009-08-13 21:58:54 +0000888 if (Ty == Type::getInt1Ty(Ty->getContext()))
Reid Spencera54b7cb2007-01-12 07:05:14 +0000889 return Val == 0 || Val == 1;
Reid Spencer554cec62007-02-05 23:47:56 +0000890 if (NumBits >= 64)
Reid Spencera54b7cb2007-01-12 07:05:14 +0000891 return true; // always true, has to fit in largest type
892 uint64_t Max = (1ll << NumBits) - 1;
893 return Val <= Max;
Reid Spencer9b11d512006-12-19 01:28:19 +0000894}
895
Reid Spencerb83eb642006-10-20 07:07:24 +0000896bool ConstantInt::isValueValidForType(const Type *Ty, int64_t Val) {
Reid Spencera54b7cb2007-01-12 07:05:14 +0000897 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
Owen Anderson1d0be152009-08-13 21:58:54 +0000898 if (Ty == Type::getInt1Ty(Ty->getContext()))
Reid Spencerc1030572007-01-19 21:13:56 +0000899 return Val == 0 || Val == 1 || Val == -1;
Reid Spencer554cec62007-02-05 23:47:56 +0000900 if (NumBits >= 64)
Reid Spencera54b7cb2007-01-12 07:05:14 +0000901 return true; // always true, has to fit in largest type
902 int64_t Min = -(1ll << (NumBits-1));
903 int64_t Max = (1ll << (NumBits-1)) - 1;
904 return (Val >= Min && Val <= Max);
Chris Lattner00950542001-06-06 20:29:01 +0000905}
906
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000907bool ConstantFP::isValueValidForType(const Type *Ty, const APFloat& Val) {
908 // convert modifies in place, so make a copy.
909 APFloat Val2 = APFloat(Val);
Dale Johannesen23a98552008-10-09 23:00:39 +0000910 bool losesInfo;
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000911 switch (Ty->getTypeID()) {
Chris Lattner00950542001-06-06 20:29:01 +0000912 default:
913 return false; // These can't be represented as floating point!
914
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000915 // FIXME rounding mode needs to be more flexible
Dale Johannesen23a98552008-10-09 23:00:39 +0000916 case Type::FloatTyID: {
917 if (&Val2.getSemantics() == &APFloat::IEEEsingle)
918 return true;
919 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
920 return !losesInfo;
921 }
922 case Type::DoubleTyID: {
923 if (&Val2.getSemantics() == &APFloat::IEEEsingle ||
924 &Val2.getSemantics() == &APFloat::IEEEdouble)
925 return true;
926 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
927 return !losesInfo;
928 }
Dale Johannesenebbc95d2007-08-09 22:51:36 +0000929 case Type::X86_FP80TyID:
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000930 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
931 &Val2.getSemantics() == &APFloat::IEEEdouble ||
932 &Val2.getSemantics() == &APFloat::x87DoubleExtended;
Dale Johannesenebbc95d2007-08-09 22:51:36 +0000933 case Type::FP128TyID:
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000934 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
935 &Val2.getSemantics() == &APFloat::IEEEdouble ||
936 &Val2.getSemantics() == &APFloat::IEEEquad;
Dale Johannesena471c2e2007-10-11 18:07:22 +0000937 case Type::PPC_FP128TyID:
938 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
939 &Val2.getSemantics() == &APFloat::IEEEdouble ||
940 &Val2.getSemantics() == &APFloat::PPCDoubleDouble;
Chris Lattner00950542001-06-06 20:29:01 +0000941 }
Chris Lattnerd74ea2b2006-05-24 17:04:05 +0000942}
Chris Lattner37bf6302001-07-20 19:16:02 +0000943
Chris Lattner531daef2001-09-07 16:46:31 +0000944//===----------------------------------------------------------------------===//
Chris Lattner531daef2001-09-07 16:46:31 +0000945// Factory Function Implementation
946
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000947ConstantAggregateZero* ConstantAggregateZero::get(const Type* Ty) {
Chris Lattnerd7ba0f22010-03-29 17:36:02 +0000948 assert((Ty->isStructTy() || Ty->isUnionTy()
949 || Ty->isArrayTy() || Ty->isVectorTy()) &&
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000950 "Cannot create an aggregate zero of non-aggregate type!");
951
952 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000953 return pImpl->AggZeroConstants.getOrCreate(Ty, 0);
954}
955
Dan Gohman0f8b53f2009-03-03 02:55:14 +0000956/// destroyConstant - Remove the constant from the constant table...
957///
Owen Anderson04fb7c32009-06-20 00:24:58 +0000958void ConstantAggregateZero::destroyConstant() {
Chris Lattner93604b62010-07-17 06:13:52 +0000959 getRawType()->getContext().pImpl->AggZeroConstants.remove(this);
Chris Lattner40bbeb52004-02-15 05:53:04 +0000960 destroyConstantImpl();
961}
962
Dan Gohman0f8b53f2009-03-03 02:55:14 +0000963/// destroyConstant - Remove the constant from the constant table...
964///
Owen Anderson04fb7c32009-06-20 00:24:58 +0000965void ConstantArray::destroyConstant() {
Chris Lattner93604b62010-07-17 06:13:52 +0000966 getRawType()->getContext().pImpl->ArrayConstants.remove(this);
Chris Lattner02ec5ed2003-05-23 20:03:32 +0000967 destroyConstantImpl();
968}
969
Reid Spencer3d10b0b2007-01-26 07:37:34 +0000970/// isString - This method returns true if the array is an array of i8, and
971/// if the elements of the array are all ConstantInt's.
Chris Lattner13cfdea2004-01-14 17:06:38 +0000972bool ConstantArray::isString() const {
Reid Spencer3d10b0b2007-01-26 07:37:34 +0000973 // Check the element type for i8...
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000974 if (!getType()->getElementType()->isIntegerTy(8))
Chris Lattner13cfdea2004-01-14 17:06:38 +0000975 return false;
976 // Check the elements to make sure they are all integers, not constant
977 // expressions.
978 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
979 if (!isa<ConstantInt>(getOperand(i)))
980 return false;
981 return true;
982}
983
Evan Cheng22c70302006-10-26 19:15:05 +0000984/// isCString - This method returns true if the array is a string (see
Dan Gohman0f8b53f2009-03-03 02:55:14 +0000985/// isString) and it ends in a null byte \\0 and does not contains any other
Evan Cheng22c70302006-10-26 19:15:05 +0000986/// null bytes except its terminator.
Owen Anderson1ca29d32009-07-13 21:27:19 +0000987bool ConstantArray::isCString() const {
Reid Spencer3d10b0b2007-01-26 07:37:34 +0000988 // Check the element type for i8...
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000989 if (!getType()->getElementType()->isIntegerTy(8))
Evan Chengabf63452006-10-26 21:48:03 +0000990 return false;
Owen Anderson1ca29d32009-07-13 21:27:19 +0000991
Evan Chengabf63452006-10-26 21:48:03 +0000992 // Last element must be a null.
Owen Anderson1ca29d32009-07-13 21:27:19 +0000993 if (!getOperand(getNumOperands()-1)->isNullValue())
Evan Chengabf63452006-10-26 21:48:03 +0000994 return false;
995 // Other elements must be non-null integers.
996 for (unsigned i = 0, e = getNumOperands()-1; i != e; ++i) {
997 if (!isa<ConstantInt>(getOperand(i)))
Evan Cheng22c70302006-10-26 19:15:05 +0000998 return false;
Owen Anderson1ca29d32009-07-13 21:27:19 +0000999 if (getOperand(i)->isNullValue())
Evan Chengabf63452006-10-26 21:48:03 +00001000 return false;
1001 }
Evan Cheng22c70302006-10-26 19:15:05 +00001002 return true;
1003}
1004
1005
Dan Gohman0f8b53f2009-03-03 02:55:14 +00001006/// getAsString - If the sub-element type of this array is i8
1007/// then this method converts the array to an std::string and returns it.
1008/// Otherwise, it asserts out.
1009///
Chris Lattner93aeea32002-08-26 17:53:56 +00001010std::string ConstantArray::getAsString() const {
Chris Lattner13cfdea2004-01-14 17:06:38 +00001011 assert(isString() && "Not a string!");
Chris Lattner93aeea32002-08-26 17:53:56 +00001012 std::string Result;
Owen Anderson45e39582008-06-24 21:58:29 +00001013 Result.reserve(getNumOperands());
Chris Lattnerc07736a2003-07-23 15:22:26 +00001014 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Owen Andersone4f6ee52008-06-25 01:05:05 +00001015 Result.push_back((char)cast<ConstantInt>(getOperand(i))->getZExtValue());
Chris Lattner93aeea32002-08-26 17:53:56 +00001016 return Result;
1017}
1018
1019
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001020//---- ConstantStruct::get() implementation...
Chris Lattner531daef2001-09-07 16:46:31 +00001021//
Chris Lattnered468e372003-10-05 00:17:43 +00001022
Chris Lattner31f84992003-11-21 20:23:48 +00001023namespace llvm {
Misha Brukmanfd939082005-04-21 23:48:37 +00001024
Chris Lattner531daef2001-09-07 16:46:31 +00001025}
Chris Lattner6a57baa2001-10-03 15:39:36 +00001026
Chris Lattnerf5ec48d2001-10-13 06:57:33 +00001027// destroyConstant - Remove the constant from the constant table...
Chris Lattner6a57baa2001-10-03 15:39:36 +00001028//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001029void ConstantStruct::destroyConstant() {
Chris Lattner93604b62010-07-17 06:13:52 +00001030 getRawType()->getContext().pImpl->StructConstants.remove(this);
Chris Lattnerf5ec48d2001-10-13 06:57:33 +00001031 destroyConstantImpl();
1032}
Chris Lattner6a57baa2001-10-03 15:39:36 +00001033
Brian Gaeke715c90b2004-08-20 06:00:58 +00001034// destroyConstant - Remove the constant from the constant table...
1035//
Chris Lattnerfdfeb692010-02-12 20:49:41 +00001036void ConstantUnion::destroyConstant() {
Chris Lattner93604b62010-07-17 06:13:52 +00001037 getRawType()->getContext().pImpl->UnionConstants.remove(this);
Chris Lattnerfdfeb692010-02-12 20:49:41 +00001038 destroyConstantImpl();
1039}
1040
1041// destroyConstant - Remove the constant from the constant table...
1042//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001043void ConstantVector::destroyConstant() {
Chris Lattner93604b62010-07-17 06:13:52 +00001044 getRawType()->getContext().pImpl->VectorConstants.remove(this);
Brian Gaeke715c90b2004-08-20 06:00:58 +00001045 destroyConstantImpl();
1046}
1047
Dan Gohmanfa73ea22007-05-24 14:36:04 +00001048/// This function will return true iff every element in this vector constant
Jim Laskeyfa301822007-01-12 22:39:14 +00001049/// is set to all ones.
1050/// @returns true iff this constant's emements are all set to all ones.
1051/// @brief Determine if the value is all ones.
Reid Spencer9d6565a2007-02-15 02:26:10 +00001052bool ConstantVector::isAllOnesValue() const {
Jim Laskeyfa301822007-01-12 22:39:14 +00001053 // Check out first element.
1054 const Constant *Elt = getOperand(0);
1055 const ConstantInt *CI = dyn_cast<ConstantInt>(Elt);
1056 if (!CI || !CI->isAllOnesValue()) return false;
1057 // Then make sure all remaining elements point to the same value.
1058 for (unsigned I = 1, E = getNumOperands(); I < E; ++I) {
1059 if (getOperand(I) != Elt) return false;
1060 }
1061 return true;
1062}
1063
Dan Gohman3b7cf0a2007-10-17 17:51:30 +00001064/// getSplatValue - If this is a splat constant, where all of the
1065/// elements have the same value, return that value. Otherwise return null.
1066Constant *ConstantVector::getSplatValue() {
1067 // Check out first element.
1068 Constant *Elt = getOperand(0);
1069 // Then make sure all remaining elements point to the same value.
1070 for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
1071 if (getOperand(I) != Elt) return 0;
1072 return Elt;
1073}
1074
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001075//---- ConstantPointerNull::get() implementation.
Chris Lattnerf5ec48d2001-10-13 06:57:33 +00001076//
Chris Lattner02ec5ed2003-05-23 20:03:32 +00001077
Owen Anderson04fb7c32009-06-20 00:24:58 +00001078ConstantPointerNull *ConstantPointerNull::get(const PointerType *Ty) {
Owen Anderson7e3142b2009-07-31 22:45:43 +00001079 return Ty->getContext().pImpl->NullPtrConstants.getOrCreate(Ty, 0);
Chris Lattner6a57baa2001-10-03 15:39:36 +00001080}
1081
Chris Lattner41661fd2002-08-18 00:40:04 +00001082// destroyConstant - Remove the constant from the constant table...
1083//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001084void ConstantPointerNull::destroyConstant() {
Chris Lattner93604b62010-07-17 06:13:52 +00001085 getRawType()->getContext().pImpl->NullPtrConstants.remove(this);
Chris Lattner41661fd2002-08-18 00:40:04 +00001086 destroyConstantImpl();
1087}
1088
1089
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001090//---- UndefValue::get() implementation.
Chris Lattnerb9f18592004-10-16 18:07:16 +00001091//
1092
Owen Anderson04fb7c32009-06-20 00:24:58 +00001093UndefValue *UndefValue::get(const Type *Ty) {
Owen Anderson7e3142b2009-07-31 22:45:43 +00001094 return Ty->getContext().pImpl->UndefValueConstants.getOrCreate(Ty, 0);
Chris Lattnerb9f18592004-10-16 18:07:16 +00001095}
1096
1097// destroyConstant - Remove the constant from the constant table.
1098//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001099void UndefValue::destroyConstant() {
Chris Lattner93604b62010-07-17 06:13:52 +00001100 getRawType()->getContext().pImpl->UndefValueConstants.remove(this);
Chris Lattnerb9f18592004-10-16 18:07:16 +00001101 destroyConstantImpl();
1102}
1103
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001104//---- BlockAddress::get() implementation.
1105//
1106
1107BlockAddress *BlockAddress::get(BasicBlock *BB) {
1108 assert(BB->getParent() != 0 && "Block must have a parent");
1109 return get(BB->getParent(), BB);
1110}
1111
1112BlockAddress *BlockAddress::get(Function *F, BasicBlock *BB) {
1113 BlockAddress *&BA =
1114 F->getContext().pImpl->BlockAddresses[std::make_pair(F, BB)];
1115 if (BA == 0)
1116 BA = new BlockAddress(F, BB);
1117
1118 assert(BA->getFunction() == F && "Basic block moved between functions");
1119 return BA;
1120}
1121
1122BlockAddress::BlockAddress(Function *F, BasicBlock *BB)
1123: Constant(Type::getInt8PtrTy(F->getContext()), Value::BlockAddressVal,
1124 &Op<0>(), 2) {
Chris Lattnerd0ec2352009-11-01 03:03:03 +00001125 setOperand(0, F);
1126 setOperand(1, BB);
Chris Lattnercdfc9402009-11-01 01:27:45 +00001127 BB->AdjustBlockAddressRefCount(1);
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001128}
1129
1130
1131// destroyConstant - Remove the constant from the constant table.
1132//
1133void BlockAddress::destroyConstant() {
Chris Lattner93604b62010-07-17 06:13:52 +00001134 getFunction()->getRawType()->getContext().pImpl
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001135 ->BlockAddresses.erase(std::make_pair(getFunction(), getBasicBlock()));
Chris Lattnercdfc9402009-11-01 01:27:45 +00001136 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001137 destroyConstantImpl();
1138}
1139
1140void BlockAddress::replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U) {
1141 // This could be replacing either the Basic Block or the Function. In either
1142 // case, we have to remove the map entry.
1143 Function *NewF = getFunction();
1144 BasicBlock *NewBB = getBasicBlock();
1145
1146 if (U == &Op<0>())
1147 NewF = cast<Function>(To);
1148 else
1149 NewBB = cast<BasicBlock>(To);
1150
1151 // See if the 'new' entry already exists, if not, just update this in place
1152 // and return early.
1153 BlockAddress *&NewBA =
1154 getContext().pImpl->BlockAddresses[std::make_pair(NewF, NewBB)];
1155 if (NewBA == 0) {
Chris Lattnerd0ec2352009-11-01 03:03:03 +00001156 getBasicBlock()->AdjustBlockAddressRefCount(-1);
1157
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001158 // Remove the old entry, this can't cause the map to rehash (just a
1159 // tombstone will get added).
1160 getContext().pImpl->BlockAddresses.erase(std::make_pair(getFunction(),
1161 getBasicBlock()));
1162 NewBA = this;
Chris Lattnerd0ec2352009-11-01 03:03:03 +00001163 setOperand(0, NewF);
1164 setOperand(1, NewBB);
1165 getBasicBlock()->AdjustBlockAddressRefCount(1);
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001166 return;
1167 }
1168
1169 // Otherwise, I do need to replace this with an existing value.
1170 assert(NewBA != this && "I didn't contain From!");
1171
1172 // Everyone using this now uses the replacement.
1173 uncheckedReplaceAllUsesWith(NewBA);
1174
1175 destroyConstant();
1176}
1177
1178//---- ConstantExpr::get() implementations.
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001179//
Reid Spencer79e21d32006-12-31 05:26:44 +00001180
Reid Spencer3da59db2006-11-27 01:05:10 +00001181/// This is a utility function to handle folding of casts and lookup of the
Duncan Sands66a1a052008-03-30 19:38:55 +00001182/// cast in the ExprConstants map. It is used by the various get* methods below.
Reid Spencer3da59db2006-11-27 01:05:10 +00001183static inline Constant *getFoldedCast(
Owen Anderson04fb7c32009-06-20 00:24:58 +00001184 Instruction::CastOps opc, Constant *C, const Type *Ty) {
Chris Lattner9eacf8a2003-10-07 22:19:19 +00001185 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
Reid Spencer3da59db2006-11-27 01:05:10 +00001186 // Fold a few common cases
Chris Lattnerb29d5962010-02-01 20:48:08 +00001187 if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
Reid Spencer3da59db2006-11-27 01:05:10 +00001188 return FC;
Chris Lattnerd628f6a2003-04-17 19:24:48 +00001189
Owen Andersond03eecd2009-08-04 20:25:11 +00001190 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
1191
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00001192 // Look up the constant in the table first to ensure uniqueness
Chris Lattner9bc02a42003-05-13 21:37:02 +00001193 std::vector<Constant*> argVec(1, C);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001194 ExprMapKeyType Key(opc, argVec);
Owen Anderson3e456ab2009-06-17 18:40:29 +00001195
Owen Andersond03eecd2009-08-04 20:25:11 +00001196 return pImpl->ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001197}
Reid Spencer7858b332006-12-05 19:14:13 +00001198
Owen Anderson04fb7c32009-06-20 00:24:58 +00001199Constant *ConstantExpr::getCast(unsigned oc, Constant *C, const Type *Ty) {
Reid Spencer3da59db2006-11-27 01:05:10 +00001200 Instruction::CastOps opc = Instruction::CastOps(oc);
1201 assert(Instruction::isCast(opc) && "opcode out of range");
1202 assert(C && Ty && "Null arguments to getCast");
Chris Lattner0b68a002010-01-26 21:51:43 +00001203 assert(CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!");
Reid Spencer3da59db2006-11-27 01:05:10 +00001204
1205 switch (opc) {
Chris Lattner0b68a002010-01-26 21:51:43 +00001206 default:
1207 llvm_unreachable("Invalid cast opcode");
1208 break;
1209 case Instruction::Trunc: return getTrunc(C, Ty);
1210 case Instruction::ZExt: return getZExt(C, Ty);
1211 case Instruction::SExt: return getSExt(C, Ty);
1212 case Instruction::FPTrunc: return getFPTrunc(C, Ty);
1213 case Instruction::FPExt: return getFPExtend(C, Ty);
1214 case Instruction::UIToFP: return getUIToFP(C, Ty);
1215 case Instruction::SIToFP: return getSIToFP(C, Ty);
1216 case Instruction::FPToUI: return getFPToUI(C, Ty);
1217 case Instruction::FPToSI: return getFPToSI(C, Ty);
1218 case Instruction::PtrToInt: return getPtrToInt(C, Ty);
1219 case Instruction::IntToPtr: return getIntToPtr(C, Ty);
1220 case Instruction::BitCast: return getBitCast(C, Ty);
Chris Lattnerf5ac6c22005-01-01 15:59:57 +00001221 }
Reid Spencer3da59db2006-11-27 01:05:10 +00001222 return 0;
Reid Spencer7858b332006-12-05 19:14:13 +00001223}
1224
Reid Spencer848414e2006-12-04 20:17:56 +00001225Constant *ConstantExpr::getZExtOrBitCast(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001226 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3b490632010-04-12 22:12:29 +00001227 return getBitCast(C, Ty);
1228 return getZExt(C, Ty);
Reid Spencer848414e2006-12-04 20:17:56 +00001229}
1230
Owen Anderson04fb7c32009-06-20 00:24:58 +00001231Constant *ConstantExpr::getSExtOrBitCast(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001232 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3b490632010-04-12 22:12:29 +00001233 return getBitCast(C, Ty);
1234 return getSExt(C, Ty);
Reid Spencer848414e2006-12-04 20:17:56 +00001235}
1236
1237Constant *ConstantExpr::getTruncOrBitCast(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001238 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3b490632010-04-12 22:12:29 +00001239 return getBitCast(C, Ty);
1240 return getTrunc(C, Ty);
Reid Spencer848414e2006-12-04 20:17:56 +00001241}
1242
Owen Anderson04fb7c32009-06-20 00:24:58 +00001243Constant *ConstantExpr::getPointerCast(Constant *S, const Type *Ty) {
Duncan Sands1df98592010-02-16 11:11:14 +00001244 assert(S->getType()->isPointerTy() && "Invalid cast");
1245 assert((Ty->isIntegerTy() || Ty->isPointerTy()) && "Invalid cast");
Reid Spencerc0459fb2006-12-05 03:25:26 +00001246
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001247 if (Ty->isIntegerTy())
Dan Gohman3b490632010-04-12 22:12:29 +00001248 return getPtrToInt(S, Ty);
1249 return getBitCast(S, Ty);
Reid Spencerc0459fb2006-12-05 03:25:26 +00001250}
1251
Reid Spencer84f3eab2006-12-12 00:51:07 +00001252Constant *ConstantExpr::getIntegerCast(Constant *C, const Type *Ty,
1253 bool isSigned) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001254 assert(C->getType()->isIntOrIntVectorTy() &&
1255 Ty->isIntOrIntVectorTy() && "Invalid cast");
Dan Gohman6de29f82009-06-15 22:12:54 +00001256 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1257 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer84f3eab2006-12-12 00:51:07 +00001258 Instruction::CastOps opcode =
1259 (SrcBits == DstBits ? Instruction::BitCast :
1260 (SrcBits > DstBits ? Instruction::Trunc :
1261 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1262 return getCast(opcode, C, Ty);
1263}
1264
1265Constant *ConstantExpr::getFPCast(Constant *C, const Type *Ty) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001266 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer84f3eab2006-12-12 00:51:07 +00001267 "Invalid cast");
Dan Gohman6de29f82009-06-15 22:12:54 +00001268 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1269 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencerf25212a2006-12-12 05:38:50 +00001270 if (SrcBits == DstBits)
1271 return C; // Avoid a useless cast
Reid Spencer84f3eab2006-12-12 00:51:07 +00001272 Instruction::CastOps opcode =
Reid Spencerf25212a2006-12-12 05:38:50 +00001273 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
Reid Spencer84f3eab2006-12-12 00:51:07 +00001274 return getCast(opcode, C, Ty);
1275}
1276
Owen Anderson04fb7c32009-06-20 00:24:58 +00001277Constant *ConstantExpr::getTrunc(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001278#ifndef NDEBUG
1279 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1280 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1281#endif
1282 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001283 assert(C->getType()->isIntOrIntVectorTy() && "Trunc operand must be integer");
1284 assert(Ty->isIntOrIntVectorTy() && "Trunc produces only integral");
Dan Gohman6de29f82009-06-15 22:12:54 +00001285 assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001286 "SrcTy must be larger than DestTy for Trunc!");
1287
Owen Anderson04fb7c32009-06-20 00:24:58 +00001288 return getFoldedCast(Instruction::Trunc, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001289}
1290
Owen Anderson04fb7c32009-06-20 00:24:58 +00001291Constant *ConstantExpr::getSExt(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001292#ifndef NDEBUG
1293 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1294 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1295#endif
1296 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001297 assert(C->getType()->isIntOrIntVectorTy() && "SExt operand must be integral");
1298 assert(Ty->isIntOrIntVectorTy() && "SExt produces only integer");
Dan Gohman6de29f82009-06-15 22:12:54 +00001299 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001300 "SrcTy must be smaller than DestTy for SExt!");
1301
Owen Anderson04fb7c32009-06-20 00:24:58 +00001302 return getFoldedCast(Instruction::SExt, C, Ty);
Chris Lattnerd144f422004-04-04 23:20:30 +00001303}
1304
Owen Anderson04fb7c32009-06-20 00:24:58 +00001305Constant *ConstantExpr::getZExt(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001306#ifndef NDEBUG
1307 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1308 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1309#endif
1310 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001311 assert(C->getType()->isIntOrIntVectorTy() && "ZEXt operand must be integral");
1312 assert(Ty->isIntOrIntVectorTy() && "ZExt produces only integer");
Dan Gohman6de29f82009-06-15 22:12:54 +00001313 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001314 "SrcTy must be smaller than DestTy for ZExt!");
1315
Owen Anderson04fb7c32009-06-20 00:24:58 +00001316 return getFoldedCast(Instruction::ZExt, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001317}
1318
Owen Anderson04fb7c32009-06-20 00:24:58 +00001319Constant *ConstantExpr::getFPTrunc(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001320#ifndef NDEBUG
1321 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1322 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1323#endif
1324 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001325 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman6de29f82009-06-15 22:12:54 +00001326 C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001327 "This is an illegal floating point truncation!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001328 return getFoldedCast(Instruction::FPTrunc, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001329}
1330
Owen Anderson04fb7c32009-06-20 00:24:58 +00001331Constant *ConstantExpr::getFPExtend(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001332#ifndef NDEBUG
1333 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1334 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1335#endif
1336 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001337 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman6de29f82009-06-15 22:12:54 +00001338 C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001339 "This is an illegal floating point extension!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001340 return getFoldedCast(Instruction::FPExt, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001341}
1342
Owen Anderson04fb7c32009-06-20 00:24:58 +00001343Constant *ConstantExpr::getUIToFP(Constant *C, const Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001344#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001345 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1346 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001347#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001348 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001349 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Nate Begemanb348d182007-11-17 03:58:34 +00001350 "This is an illegal uint to floating point cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001351 return getFoldedCast(Instruction::UIToFP, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001352}
1353
Owen Anderson04fb7c32009-06-20 00:24:58 +00001354Constant *ConstantExpr::getSIToFP(Constant *C, const Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001355#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001356 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1357 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001358#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001359 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001360 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer3da59db2006-11-27 01:05:10 +00001361 "This is an illegal sint to floating point cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001362 return getFoldedCast(Instruction::SIToFP, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001363}
1364
Owen Anderson04fb7c32009-06-20 00:24:58 +00001365Constant *ConstantExpr::getFPToUI(Constant *C, const Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001366#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001367 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1368 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001369#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001370 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001371 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemanb348d182007-11-17 03:58:34 +00001372 "This is an illegal floating point to uint cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001373 return getFoldedCast(Instruction::FPToUI, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001374}
1375
Owen Anderson04fb7c32009-06-20 00:24:58 +00001376Constant *ConstantExpr::getFPToSI(Constant *C, const Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001377#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001378 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1379 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001380#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001381 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001382 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemanb348d182007-11-17 03:58:34 +00001383 "This is an illegal floating point to sint cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001384 return getFoldedCast(Instruction::FPToSI, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001385}
1386
Owen Anderson04fb7c32009-06-20 00:24:58 +00001387Constant *ConstantExpr::getPtrToInt(Constant *C, const Type *DstTy) {
Duncan Sands1df98592010-02-16 11:11:14 +00001388 assert(C->getType()->isPointerTy() && "PtrToInt source must be pointer");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001389 assert(DstTy->isIntegerTy() && "PtrToInt destination must be integral");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001390 return getFoldedCast(Instruction::PtrToInt, C, DstTy);
Reid Spencer3da59db2006-11-27 01:05:10 +00001391}
1392
Owen Anderson04fb7c32009-06-20 00:24:58 +00001393Constant *ConstantExpr::getIntToPtr(Constant *C, const Type *DstTy) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001394 assert(C->getType()->isIntegerTy() && "IntToPtr source must be integral");
Duncan Sands1df98592010-02-16 11:11:14 +00001395 assert(DstTy->isPointerTy() && "IntToPtr destination must be a pointer");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001396 return getFoldedCast(Instruction::IntToPtr, C, DstTy);
Reid Spencer3da59db2006-11-27 01:05:10 +00001397}
1398
Owen Anderson04fb7c32009-06-20 00:24:58 +00001399Constant *ConstantExpr::getBitCast(Constant *C, const Type *DstTy) {
Chris Lattner0b68a002010-01-26 21:51:43 +00001400 assert(CastInst::castIsValid(Instruction::BitCast, C, DstTy) &&
1401 "Invalid constantexpr bitcast!");
Chris Lattner8c7f24a2009-03-21 06:55:54 +00001402
1403 // It is common to ask for a bitcast of a value to its own type, handle this
1404 // speedily.
1405 if (C->getType() == DstTy) return C;
1406
Owen Anderson04fb7c32009-06-20 00:24:58 +00001407 return getFoldedCast(Instruction::BitCast, C, DstTy);
Chris Lattnerd144f422004-04-04 23:20:30 +00001408}
1409
Chris Lattnered468e372003-10-05 00:17:43 +00001410Constant *ConstantExpr::getTy(const Type *ReqTy, unsigned Opcode,
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001411 Constant *C1, Constant *C2,
1412 unsigned Flags) {
Chris Lattnerf31f5832003-05-21 17:49:25 +00001413 // Check the operands for consistency first
Reid Spencer0a783f72006-11-02 01:53:59 +00001414 assert(Opcode >= Instruction::BinaryOpsBegin &&
1415 Opcode < Instruction::BinaryOpsEnd &&
Chris Lattnerf31f5832003-05-21 17:49:25 +00001416 "Invalid opcode in binary constant expression");
1417 assert(C1->getType() == C2->getType() &&
1418 "Operand types in binary constant expression should match");
Chris Lattnered468e372003-10-05 00:17:43 +00001419
Owen Anderson1d0be152009-08-13 21:58:54 +00001420 if (ReqTy == C1->getType() || ReqTy == Type::getInt1Ty(ReqTy->getContext()))
Chris Lattnerb29d5962010-02-01 20:48:08 +00001421 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
Chris Lattnered468e372003-10-05 00:17:43 +00001422 return FC; // Fold a few common cases...
Chris Lattnerd628f6a2003-04-17 19:24:48 +00001423
Chris Lattner9bc02a42003-05-13 21:37:02 +00001424 std::vector<Constant*> argVec(1, C1); argVec.push_back(C2);
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001425 ExprMapKeyType Key(Opcode, argVec, 0, Flags);
Owen Anderson31c36f02009-06-17 20:10:08 +00001426
Owen Andersond03eecd2009-08-04 20:25:11 +00001427 LLVMContextImpl *pImpl = ReqTy->getContext().pImpl;
Owen Andersond03eecd2009-08-04 20:25:11 +00001428 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001429}
1430
Reid Spencere4d87aa2006-12-23 06:05:41 +00001431Constant *ConstantExpr::getCompareTy(unsigned short predicate,
Nate Begemanff795a82008-07-25 17:56:27 +00001432 Constant *C1, Constant *C2) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00001433 switch (predicate) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001434 default: llvm_unreachable("Invalid CmpInst predicate");
Nate Begemanb5557ab2008-07-25 17:35:37 +00001435 case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
1436 case CmpInst::FCMP_OGE: case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE:
1437 case CmpInst::FCMP_ONE: case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO:
1438 case CmpInst::FCMP_UEQ: case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE:
1439 case CmpInst::FCMP_ULT: case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
1440 case CmpInst::FCMP_TRUE:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00001441 return getFCmp(predicate, C1, C2);
1442
Nate Begemanb5557ab2008-07-25 17:35:37 +00001443 case CmpInst::ICMP_EQ: case CmpInst::ICMP_NE: case CmpInst::ICMP_UGT:
1444 case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE:
1445 case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT:
1446 case CmpInst::ICMP_SLE:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00001447 return getICmp(predicate, C1, C2);
Reid Spencere4d87aa2006-12-23 06:05:41 +00001448 }
Reid Spencer67263fe2006-12-04 21:35:24 +00001449}
1450
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001451Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2,
1452 unsigned Flags) {
Chris Lattner91b362b2004-08-17 17:28:46 +00001453#ifndef NDEBUG
1454 switch (Opcode) {
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001455 case Instruction::Add:
Reid Spencer0a783f72006-11-02 01:53:59 +00001456 case Instruction::Sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001457 case Instruction::Mul:
Chris Lattner91b362b2004-08-17 17:28:46 +00001458 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001459 assert(C1->getType()->isIntOrIntVectorTy() &&
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001460 "Tried to create an integer operation on a non-integer type!");
1461 break;
1462 case Instruction::FAdd:
1463 case Instruction::FSub:
1464 case Instruction::FMul:
1465 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001466 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001467 "Tried to create a floating-point operation on a "
1468 "non-floating-point type!");
Chris Lattner91b362b2004-08-17 17:28:46 +00001469 break;
Reid Spencer1628cec2006-10-26 06:15:43 +00001470 case Instruction::UDiv:
1471 case Instruction::SDiv:
1472 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001473 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer1628cec2006-10-26 06:15:43 +00001474 "Tried to create an arithmetic operation on a non-arithmetic type!");
1475 break;
1476 case Instruction::FDiv:
1477 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001478 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmanf57478f2009-06-15 22:25:12 +00001479 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer1628cec2006-10-26 06:15:43 +00001480 break;
Reid Spencer0a783f72006-11-02 01:53:59 +00001481 case Instruction::URem:
1482 case Instruction::SRem:
1483 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001484 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer0a783f72006-11-02 01:53:59 +00001485 "Tried to create an arithmetic operation on a non-arithmetic type!");
1486 break;
1487 case Instruction::FRem:
1488 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001489 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmanf57478f2009-06-15 22:25:12 +00001490 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer0a783f72006-11-02 01:53:59 +00001491 break;
Chris Lattner91b362b2004-08-17 17:28:46 +00001492 case Instruction::And:
1493 case Instruction::Or:
1494 case Instruction::Xor:
1495 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001496 assert(C1->getType()->isIntOrIntVectorTy() &&
Misha Brukman1bae2912005-01-27 06:46:38 +00001497 "Tried to create a logical operation on a non-integral type!");
Chris Lattner91b362b2004-08-17 17:28:46 +00001498 break;
Chris Lattner91b362b2004-08-17 17:28:46 +00001499 case Instruction::Shl:
Reid Spencer3822ff52006-11-08 06:47:33 +00001500 case Instruction::LShr:
1501 case Instruction::AShr:
Reid Spencer832254e2007-02-02 02:16:23 +00001502 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001503 assert(C1->getType()->isIntOrIntVectorTy() &&
Chris Lattner91b362b2004-08-17 17:28:46 +00001504 "Tried to create a shift operation on a non-integer type!");
1505 break;
1506 default:
1507 break;
1508 }
1509#endif
1510
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001511 return getTy(C1->getType(), Opcode, C1, C2, Flags);
Reid Spencer67263fe2006-12-04 21:35:24 +00001512}
1513
Owen Andersonbaf3c402009-07-29 18:55:55 +00001514Constant* ConstantExpr::getSizeOf(const Type* Ty) {
1515 // sizeof is implemented as: (i64) gep (Ty*)null, 1
1516 // Note that a non-inbounds gep is used, as null isn't within any object.
Owen Anderson1d0be152009-08-13 21:58:54 +00001517 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001518 Constant *GEP = getGetElementPtr(
Owen Andersona7235ea2009-07-31 20:28:14 +00001519 Constant::getNullValue(PointerType::getUnqual(Ty)), &GEPIdx, 1);
Dan Gohman3b490632010-04-12 22:12:29 +00001520 return getPtrToInt(GEP,
1521 Type::getInt64Ty(Ty->getContext()));
Owen Andersonbaf3c402009-07-29 18:55:55 +00001522}
1523
1524Constant* ConstantExpr::getAlignOf(const Type* Ty) {
Dan Gohman0f5efe52010-01-28 02:15:55 +00001525 // alignof is implemented as: (i64) gep ({i1,Ty}*)null, 0, 1
Dan Gohmane2574d32009-08-11 17:57:01 +00001526 // Note that a non-inbounds gep is used, as null isn't within any object.
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001527 const Type *AligningTy = StructType::get(Ty->getContext(),
Dan Gohman0f5efe52010-01-28 02:15:55 +00001528 Type::getInt1Ty(Ty->getContext()), Ty, NULL);
Owen Andersona7235ea2009-07-31 20:28:14 +00001529 Constant *NullPtr = Constant::getNullValue(AligningTy->getPointerTo());
Dan Gohman06ed3e72010-01-28 02:43:22 +00001530 Constant *Zero = ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0);
Owen Anderson1d0be152009-08-13 21:58:54 +00001531 Constant *One = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001532 Constant *Indices[2] = { Zero, One };
1533 Constant *GEP = getGetElementPtr(NullPtr, Indices, 2);
Dan Gohman3b490632010-04-12 22:12:29 +00001534 return getPtrToInt(GEP,
1535 Type::getInt64Ty(Ty->getContext()));
Owen Andersonbaf3c402009-07-29 18:55:55 +00001536}
1537
Dan Gohman3778f212009-08-16 21:26:11 +00001538Constant* ConstantExpr::getOffsetOf(const StructType* STy, unsigned FieldNo) {
Dan Gohman2544a1d2010-02-01 16:37:38 +00001539 return getOffsetOf(STy, ConstantInt::get(Type::getInt32Ty(STy->getContext()),
1540 FieldNo));
1541}
1542
1543Constant* ConstantExpr::getOffsetOf(const Type* Ty, Constant *FieldNo) {
Dan Gohman3778f212009-08-16 21:26:11 +00001544 // offsetof is implemented as: (i64) gep (Ty*)null, 0, FieldNo
1545 // Note that a non-inbounds gep is used, as null isn't within any object.
1546 Constant *GEPIdx[] = {
Dan Gohman2544a1d2010-02-01 16:37:38 +00001547 ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0),
1548 FieldNo
Dan Gohman3778f212009-08-16 21:26:11 +00001549 };
1550 Constant *GEP = getGetElementPtr(
Dan Gohman2544a1d2010-02-01 16:37:38 +00001551 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx, 2);
Dan Gohman3b490632010-04-12 22:12:29 +00001552 return getPtrToInt(GEP,
1553 Type::getInt64Ty(Ty->getContext()));
Dan Gohman3778f212009-08-16 21:26:11 +00001554}
Owen Andersonbaf3c402009-07-29 18:55:55 +00001555
Reid Spencere4d87aa2006-12-23 06:05:41 +00001556Constant *ConstantExpr::getCompare(unsigned short pred,
Reid Spencer67263fe2006-12-04 21:35:24 +00001557 Constant *C1, Constant *C2) {
1558 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Reid Spencere4d87aa2006-12-23 06:05:41 +00001559 return getCompareTy(pred, C1, C2);
Chris Lattnerc3d12f02004-08-04 18:50:09 +00001560}
1561
Chris Lattner08a45cc2004-03-12 05:54:04 +00001562Constant *ConstantExpr::getSelectTy(const Type *ReqTy, Constant *C,
Owen Anderson04fb7c32009-06-20 00:24:58 +00001563 Constant *V1, Constant *V2) {
Chris Lattner9ace0cd2008-12-29 00:16:12 +00001564 assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
Chris Lattner08a45cc2004-03-12 05:54:04 +00001565
1566 if (ReqTy == V1->getType())
Chris Lattnerb29d5962010-02-01 20:48:08 +00001567 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
Chris Lattner08a45cc2004-03-12 05:54:04 +00001568 return SC; // Fold common cases
1569
1570 std::vector<Constant*> argVec(3, C);
1571 argVec[1] = V1;
1572 argVec[2] = V2;
Reid Spencer077d0eb2006-12-04 05:19:50 +00001573 ExprMapKeyType Key(Instruction::Select, argVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001574
Owen Andersond03eecd2009-08-04 20:25:11 +00001575 LLVMContextImpl *pImpl = ReqTy->getContext().pImpl;
Owen Andersond03eecd2009-08-04 20:25:11 +00001576 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Chris Lattner08a45cc2004-03-12 05:54:04 +00001577}
1578
Chris Lattnered468e372003-10-05 00:17:43 +00001579Constant *ConstantExpr::getGetElementPtrTy(const Type *ReqTy, Constant *C,
Chris Lattner2b9a5da2007-01-31 04:40:28 +00001580 Value* const *Idxs,
Owen Anderson04fb7c32009-06-20 00:24:58 +00001581 unsigned NumIdx) {
Dan Gohman041e2eb2008-05-15 19:50:34 +00001582 assert(GetElementPtrInst::getIndexedType(C->getType(), Idxs,
1583 Idxs+NumIdx) ==
1584 cast<PointerType>(ReqTy)->getElementType() &&
1585 "GEP indices invalid!");
Chris Lattner2e9bb1a2004-02-16 20:46:13 +00001586
Chris Lattnerb29d5962010-02-01 20:48:08 +00001587 if (Constant *FC = ConstantFoldGetElementPtr(C, /*inBounds=*/false,
1588 (Constant**)Idxs, NumIdx))
Chris Lattnerd628f6a2003-04-17 19:24:48 +00001589 return FC; // Fold a few common cases...
Chris Lattner2e9bb1a2004-02-16 20:46:13 +00001590
Duncan Sands1df98592010-02-16 11:11:14 +00001591 assert(C->getType()->isPointerTy() &&
Chris Lattner02ec5ed2003-05-23 20:03:32 +00001592 "Non-pointer type for constant GetElementPtr expression");
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00001593 // Look up the constant in the table first to ensure uniqueness
Chris Lattner7fa6e662004-10-11 22:52:25 +00001594 std::vector<Constant*> ArgVec;
Chris Lattner2b9a5da2007-01-31 04:40:28 +00001595 ArgVec.reserve(NumIdx+1);
Chris Lattner7fa6e662004-10-11 22:52:25 +00001596 ArgVec.push_back(C);
Chris Lattner2b9a5da2007-01-31 04:40:28 +00001597 for (unsigned i = 0; i != NumIdx; ++i)
1598 ArgVec.push_back(cast<Constant>(Idxs[i]));
1599 const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001600
Owen Andersond03eecd2009-08-04 20:25:11 +00001601 LLVMContextImpl *pImpl = ReqTy->getContext().pImpl;
Owen Andersond03eecd2009-08-04 20:25:11 +00001602 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00001603}
1604
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001605Constant *ConstantExpr::getInBoundsGetElementPtrTy(const Type *ReqTy,
1606 Constant *C,
Chris Lattner399ac532009-12-08 05:31:46 +00001607 Value *const *Idxs,
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001608 unsigned NumIdx) {
1609 assert(GetElementPtrInst::getIndexedType(C->getType(), Idxs,
1610 Idxs+NumIdx) ==
1611 cast<PointerType>(ReqTy)->getElementType() &&
1612 "GEP indices invalid!");
1613
Chris Lattnerb29d5962010-02-01 20:48:08 +00001614 if (Constant *FC = ConstantFoldGetElementPtr(C, /*inBounds=*/true,
1615 (Constant**)Idxs, NumIdx))
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001616 return FC; // Fold a few common cases...
1617
Duncan Sands1df98592010-02-16 11:11:14 +00001618 assert(C->getType()->isPointerTy() &&
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001619 "Non-pointer type for constant GetElementPtr expression");
1620 // Look up the constant in the table first to ensure uniqueness
1621 std::vector<Constant*> ArgVec;
1622 ArgVec.reserve(NumIdx+1);
1623 ArgVec.push_back(C);
1624 for (unsigned i = 0; i != NumIdx; ++i)
1625 ArgVec.push_back(cast<Constant>(Idxs[i]));
1626 const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec, 0,
1627 GEPOperator::IsInBounds);
1628
1629 LLVMContextImpl *pImpl = ReqTy->getContext().pImpl;
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001630 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
1631}
1632
Chris Lattner2b9a5da2007-01-31 04:40:28 +00001633Constant *ConstantExpr::getGetElementPtr(Constant *C, Value* const *Idxs,
Owen Anderson04fb7c32009-06-20 00:24:58 +00001634 unsigned NumIdx) {
Chris Lattnered468e372003-10-05 00:17:43 +00001635 // Get the result type of the getelementptr!
Chris Lattner2b9a5da2007-01-31 04:40:28 +00001636 const Type *Ty =
Dan Gohman041e2eb2008-05-15 19:50:34 +00001637 GetElementPtrInst::getIndexedType(C->getType(), Idxs, Idxs+NumIdx);
Chris Lattnered468e372003-10-05 00:17:43 +00001638 assert(Ty && "GEP indices invalid!");
Christopher Lambfe63fb92007-12-11 08:59:05 +00001639 unsigned As = cast<PointerType>(C->getType())->getAddressSpace();
Owen Anderson04fb7c32009-06-20 00:24:58 +00001640 return getGetElementPtrTy(PointerType::get(Ty, As), C, Idxs, NumIdx);
Chris Lattner7fa6e662004-10-11 22:52:25 +00001641}
1642
Dan Gohman6e7ad952009-09-03 23:34:49 +00001643Constant *ConstantExpr::getInBoundsGetElementPtr(Constant *C,
1644 Value* const *Idxs,
1645 unsigned NumIdx) {
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001646 // Get the result type of the getelementptr!
1647 const Type *Ty =
1648 GetElementPtrInst::getIndexedType(C->getType(), Idxs, Idxs+NumIdx);
1649 assert(Ty && "GEP indices invalid!");
1650 unsigned As = cast<PointerType>(C->getType())->getAddressSpace();
1651 return getInBoundsGetElementPtrTy(PointerType::get(Ty, As), C, Idxs, NumIdx);
Dan Gohman6e7ad952009-09-03 23:34:49 +00001652}
1653
Chris Lattner2b9a5da2007-01-31 04:40:28 +00001654Constant *ConstantExpr::getGetElementPtr(Constant *C, Constant* const *Idxs,
Owen Anderson04fb7c32009-06-20 00:24:58 +00001655 unsigned NumIdx) {
1656 return getGetElementPtr(C, (Value* const *)Idxs, NumIdx);
Chris Lattnered468e372003-10-05 00:17:43 +00001657}
1658
Dan Gohman6e7ad952009-09-03 23:34:49 +00001659Constant *ConstantExpr::getInBoundsGetElementPtr(Constant *C,
1660 Constant* const *Idxs,
1661 unsigned NumIdx) {
1662 return getInBoundsGetElementPtr(C, (Value* const *)Idxs, NumIdx);
1663}
1664
Reid Spencer077d0eb2006-12-04 05:19:50 +00001665Constant *
Nick Lewycky401f3252010-01-21 07:03:21 +00001666ConstantExpr::getICmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spencer077d0eb2006-12-04 05:19:50 +00001667 assert(LHS->getType() == RHS->getType());
1668 assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE &&
1669 pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid ICmp Predicate");
1670
Chris Lattnerb29d5962010-02-01 20:48:08 +00001671 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spencer077d0eb2006-12-04 05:19:50 +00001672 return FC; // Fold a few common cases...
1673
1674 // Look up the constant in the table first to ensure uniqueness
1675 std::vector<Constant*> ArgVec;
1676 ArgVec.push_back(LHS);
1677 ArgVec.push_back(RHS);
Reid Spencer4fa021a2006-12-24 18:42:29 +00001678 // Get the key type with both the opcode and predicate
Reid Spencer077d0eb2006-12-04 05:19:50 +00001679 const ExprMapKeyType Key(Instruction::ICmp, ArgVec, pred);
Owen Anderson31c36f02009-06-17 20:10:08 +00001680
Nick Lewycky401f3252010-01-21 07:03:21 +00001681 const Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1682 if (const VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
1683 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1684
Owen Andersond03eecd2009-08-04 20:25:11 +00001685 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky401f3252010-01-21 07:03:21 +00001686 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001687}
1688
1689Constant *
Nick Lewycky401f3252010-01-21 07:03:21 +00001690ConstantExpr::getFCmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spencer077d0eb2006-12-04 05:19:50 +00001691 assert(LHS->getType() == RHS->getType());
1692 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate");
1693
Chris Lattnerb29d5962010-02-01 20:48:08 +00001694 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spencer077d0eb2006-12-04 05:19:50 +00001695 return FC; // Fold a few common cases...
1696
1697 // Look up the constant in the table first to ensure uniqueness
1698 std::vector<Constant*> ArgVec;
1699 ArgVec.push_back(LHS);
1700 ArgVec.push_back(RHS);
Reid Spencer4fa021a2006-12-24 18:42:29 +00001701 // Get the key type with both the opcode and predicate
Reid Spencer077d0eb2006-12-04 05:19:50 +00001702 const ExprMapKeyType Key(Instruction::FCmp, ArgVec, pred);
Nick Lewycky401f3252010-01-21 07:03:21 +00001703
1704 const Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1705 if (const VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
1706 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1707
Owen Andersond03eecd2009-08-04 20:25:11 +00001708 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky401f3252010-01-21 07:03:21 +00001709 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001710}
1711
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00001712Constant *ConstantExpr::getExtractElementTy(const Type *ReqTy, Constant *Val,
1713 Constant *Idx) {
Chris Lattnerb29d5962010-02-01 20:48:08 +00001714 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
Chris Lattner83738a22009-12-30 20:25:09 +00001715 return FC; // Fold a few common cases.
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00001716 // Look up the constant in the table first to ensure uniqueness
1717 std::vector<Constant*> ArgVec(1, Val);
1718 ArgVec.push_back(Idx);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001719 const ExprMapKeyType Key(Instruction::ExtractElement,ArgVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001720
Owen Andersond03eecd2009-08-04 20:25:11 +00001721 LLVMContextImpl *pImpl = ReqTy->getContext().pImpl;
Owen Andersond03eecd2009-08-04 20:25:11 +00001722 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00001723}
1724
1725Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx) {
Duncan Sands1df98592010-02-16 11:11:14 +00001726 assert(Val->getType()->isVectorTy() &&
Reid Spencerac9dcb92007-02-15 03:39:18 +00001727 "Tried to create extractelement operation on non-vector type!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001728 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer3d10b0b2007-01-26 07:37:34 +00001729 "Extractelement index must be i32 type!");
Reid Spencer9d6565a2007-02-15 02:26:10 +00001730 return getExtractElementTy(cast<VectorType>(Val->getType())->getElementType(),
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00001731 Val, Idx);
1732}
Chris Lattnered468e372003-10-05 00:17:43 +00001733
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001734Constant *ConstantExpr::getInsertElementTy(const Type *ReqTy, Constant *Val,
1735 Constant *Elt, Constant *Idx) {
Chris Lattnerb29d5962010-02-01 20:48:08 +00001736 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
Chris Lattner83738a22009-12-30 20:25:09 +00001737 return FC; // Fold a few common cases.
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001738 // Look up the constant in the table first to ensure uniqueness
1739 std::vector<Constant*> ArgVec(1, Val);
1740 ArgVec.push_back(Elt);
1741 ArgVec.push_back(Idx);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001742 const ExprMapKeyType Key(Instruction::InsertElement,ArgVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001743
Owen Andersond03eecd2009-08-04 20:25:11 +00001744 LLVMContextImpl *pImpl = ReqTy->getContext().pImpl;
Owen Andersond03eecd2009-08-04 20:25:11 +00001745 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001746}
1747
1748Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
1749 Constant *Idx) {
Duncan Sands1df98592010-02-16 11:11:14 +00001750 assert(Val->getType()->isVectorTy() &&
Reid Spencerac9dcb92007-02-15 03:39:18 +00001751 "Tried to create insertelement operation on non-vector type!");
Reid Spencer9d6565a2007-02-15 02:26:10 +00001752 assert(Elt->getType() == cast<VectorType>(Val->getType())->getElementType()
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001753 && "Insertelement types must match!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001754 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer3d10b0b2007-01-26 07:37:34 +00001755 "Insertelement index must be i32 type!");
Gordon Henriksen699609c2008-08-30 15:41:51 +00001756 return getInsertElementTy(Val->getType(), Val, Elt, Idx);
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001757}
1758
Chris Lattner00f10232006-04-08 01:18:18 +00001759Constant *ConstantExpr::getShuffleVectorTy(const Type *ReqTy, Constant *V1,
1760 Constant *V2, Constant *Mask) {
Chris Lattnerb29d5962010-02-01 20:48:08 +00001761 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
Chris Lattner00f10232006-04-08 01:18:18 +00001762 return FC; // Fold a few common cases...
1763 // Look up the constant in the table first to ensure uniqueness
1764 std::vector<Constant*> ArgVec(1, V1);
1765 ArgVec.push_back(V2);
1766 ArgVec.push_back(Mask);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001767 const ExprMapKeyType Key(Instruction::ShuffleVector,ArgVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001768
Owen Andersond03eecd2009-08-04 20:25:11 +00001769 LLVMContextImpl *pImpl = ReqTy->getContext().pImpl;
Owen Andersond03eecd2009-08-04 20:25:11 +00001770 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Chris Lattner00f10232006-04-08 01:18:18 +00001771}
1772
1773Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
1774 Constant *Mask) {
1775 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
1776 "Invalid shuffle vector constant expr operands!");
Nate Begeman0f123cf2009-02-12 21:28:33 +00001777
1778 unsigned NElts = cast<VectorType>(Mask->getType())->getNumElements();
1779 const Type *EltTy = cast<VectorType>(V1->getType())->getElementType();
1780 const Type *ShufTy = VectorType::get(EltTy, NElts);
1781 return getShuffleVectorTy(ShufTy, V1, V2, Mask);
Chris Lattner00f10232006-04-08 01:18:18 +00001782}
1783
Dan Gohman041e2eb2008-05-15 19:50:34 +00001784Constant *ConstantExpr::getInsertValueTy(const Type *ReqTy, Constant *Agg,
1785 Constant *Val,
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001786 const unsigned *Idxs, unsigned NumIdx) {
Dan Gohman041e2eb2008-05-15 19:50:34 +00001787 assert(ExtractValueInst::getIndexedType(Agg->getType(), Idxs,
1788 Idxs+NumIdx) == Val->getType() &&
1789 "insertvalue indices invalid!");
1790 assert(Agg->getType() == ReqTy &&
1791 "insertvalue type invalid!");
Dan Gohmane4569942008-05-23 00:36:11 +00001792 assert(Agg->getType()->isFirstClassType() &&
1793 "Non-first-class type for constant InsertValue expression");
Chris Lattnerb29d5962010-02-01 20:48:08 +00001794 Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs, NumIdx);
Dan Gohmane0891602008-07-21 23:30:30 +00001795 assert(FC && "InsertValue constant expr couldn't be folded!");
1796 return FC;
Dan Gohman041e2eb2008-05-15 19:50:34 +00001797}
1798
1799Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001800 const unsigned *IdxList, unsigned NumIdx) {
Dan Gohmane4569942008-05-23 00:36:11 +00001801 assert(Agg->getType()->isFirstClassType() &&
1802 "Tried to create insertelement operation on non-first-class type!");
Dan Gohman041e2eb2008-05-15 19:50:34 +00001803
Dan Gohmane4569942008-05-23 00:36:11 +00001804 const Type *ReqTy = Agg->getType();
Devang Patelb6dc9352008-11-03 23:20:04 +00001805#ifndef NDEBUG
Dan Gohmane4569942008-05-23 00:36:11 +00001806 const Type *ValTy =
Dan Gohman041e2eb2008-05-15 19:50:34 +00001807 ExtractValueInst::getIndexedType(Agg->getType(), IdxList, IdxList+NumIdx);
Devang Patelb6dc9352008-11-03 23:20:04 +00001808#endif
Dan Gohmane4569942008-05-23 00:36:11 +00001809 assert(ValTy == Val->getType() && "insertvalue indices invalid!");
Dan Gohman041e2eb2008-05-15 19:50:34 +00001810 return getInsertValueTy(ReqTy, Agg, Val, IdxList, NumIdx);
1811}
1812
1813Constant *ConstantExpr::getExtractValueTy(const Type *ReqTy, Constant *Agg,
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001814 const unsigned *Idxs, unsigned NumIdx) {
Dan Gohman041e2eb2008-05-15 19:50:34 +00001815 assert(ExtractValueInst::getIndexedType(Agg->getType(), Idxs,
1816 Idxs+NumIdx) == ReqTy &&
1817 "extractvalue indices invalid!");
Dan Gohmane4569942008-05-23 00:36:11 +00001818 assert(Agg->getType()->isFirstClassType() &&
1819 "Non-first-class type for constant extractvalue expression");
Chris Lattnerb29d5962010-02-01 20:48:08 +00001820 Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs, NumIdx);
Dan Gohmane0891602008-07-21 23:30:30 +00001821 assert(FC && "ExtractValue constant expr couldn't be folded!");
1822 return FC;
Dan Gohman041e2eb2008-05-15 19:50:34 +00001823}
1824
1825Constant *ConstantExpr::getExtractValue(Constant *Agg,
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001826 const unsigned *IdxList, unsigned NumIdx) {
Dan Gohmane4569942008-05-23 00:36:11 +00001827 assert(Agg->getType()->isFirstClassType() &&
1828 "Tried to create extractelement operation on non-first-class type!");
Dan Gohman041e2eb2008-05-15 19:50:34 +00001829
1830 const Type *ReqTy =
1831 ExtractValueInst::getIndexedType(Agg->getType(), IdxList, IdxList+NumIdx);
1832 assert(ReqTy && "extractvalue indices invalid!");
1833 return getExtractValueTy(ReqTy, Agg, IdxList, NumIdx);
1834}
1835
Owen Andersonbaf3c402009-07-29 18:55:55 +00001836Constant* ConstantExpr::getNeg(Constant* C) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001837 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Andersonbaf3c402009-07-29 18:55:55 +00001838 "Cannot NEG a nonintegral value!");
1839 return get(Instruction::Sub,
1840 ConstantFP::getZeroValueForNegation(C->getType()),
1841 C);
1842}
1843
1844Constant* ConstantExpr::getFNeg(Constant* C) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001845 assert(C->getType()->isFPOrFPVectorTy() &&
Owen Andersonbaf3c402009-07-29 18:55:55 +00001846 "Cannot FNEG a non-floating-point value!");
1847 return get(Instruction::FSub,
1848 ConstantFP::getZeroValueForNegation(C->getType()),
1849 C);
1850}
1851
1852Constant* ConstantExpr::getNot(Constant* C) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001853 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Andersonbaf3c402009-07-29 18:55:55 +00001854 "Cannot NOT a nonintegral value!");
Owen Andersona7235ea2009-07-31 20:28:14 +00001855 return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType()));
Owen Andersonbaf3c402009-07-29 18:55:55 +00001856}
1857
1858Constant* ConstantExpr::getAdd(Constant* C1, Constant* C2) {
1859 return get(Instruction::Add, C1, C2);
1860}
1861
1862Constant* ConstantExpr::getFAdd(Constant* C1, Constant* C2) {
1863 return get(Instruction::FAdd, C1, C2);
1864}
1865
1866Constant* ConstantExpr::getSub(Constant* C1, Constant* C2) {
1867 return get(Instruction::Sub, C1, C2);
1868}
1869
1870Constant* ConstantExpr::getFSub(Constant* C1, Constant* C2) {
1871 return get(Instruction::FSub, C1, C2);
1872}
1873
1874Constant* ConstantExpr::getMul(Constant* C1, Constant* C2) {
1875 return get(Instruction::Mul, C1, C2);
1876}
1877
1878Constant* ConstantExpr::getFMul(Constant* C1, Constant* C2) {
1879 return get(Instruction::FMul, C1, C2);
1880}
1881
1882Constant* ConstantExpr::getUDiv(Constant* C1, Constant* C2) {
1883 return get(Instruction::UDiv, C1, C2);
1884}
1885
1886Constant* ConstantExpr::getSDiv(Constant* C1, Constant* C2) {
1887 return get(Instruction::SDiv, C1, C2);
1888}
1889
1890Constant* ConstantExpr::getFDiv(Constant* C1, Constant* C2) {
1891 return get(Instruction::FDiv, C1, C2);
1892}
1893
1894Constant* ConstantExpr::getURem(Constant* C1, Constant* C2) {
1895 return get(Instruction::URem, C1, C2);
1896}
1897
1898Constant* ConstantExpr::getSRem(Constant* C1, Constant* C2) {
1899 return get(Instruction::SRem, C1, C2);
1900}
1901
1902Constant* ConstantExpr::getFRem(Constant* C1, Constant* C2) {
1903 return get(Instruction::FRem, C1, C2);
1904}
1905
1906Constant* ConstantExpr::getAnd(Constant* C1, Constant* C2) {
1907 return get(Instruction::And, C1, C2);
1908}
1909
1910Constant* ConstantExpr::getOr(Constant* C1, Constant* C2) {
1911 return get(Instruction::Or, C1, C2);
1912}
1913
1914Constant* ConstantExpr::getXor(Constant* C1, Constant* C2) {
1915 return get(Instruction::Xor, C1, C2);
1916}
1917
1918Constant* ConstantExpr::getShl(Constant* C1, Constant* C2) {
1919 return get(Instruction::Shl, C1, C2);
1920}
1921
1922Constant* ConstantExpr::getLShr(Constant* C1, Constant* C2) {
1923 return get(Instruction::LShr, C1, C2);
1924}
1925
1926Constant* ConstantExpr::getAShr(Constant* C1, Constant* C2) {
1927 return get(Instruction::AShr, C1, C2);
1928}
1929
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00001930// destroyConstant - Remove the constant from the constant table...
1931//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001932void ConstantExpr::destroyConstant() {
Chris Lattner93604b62010-07-17 06:13:52 +00001933 getRawType()->getContext().pImpl->ExprConstants.remove(this);
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00001934 destroyConstantImpl();
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001935}
1936
Chris Lattnerc188eeb2002-07-30 18:54:25 +00001937const char *ConstantExpr::getOpcodeName() const {
1938 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001939}
Reid Spencer1c9c8e62004-07-17 23:48:33 +00001940
Chris Lattner04e3b1e2010-03-30 20:48:48 +00001941
1942
1943GetElementPtrConstantExpr::
1944GetElementPtrConstantExpr(Constant *C, const std::vector<Constant*> &IdxList,
1945 const Type *DestTy)
1946 : ConstantExpr(DestTy, Instruction::GetElementPtr,
1947 OperandTraits<GetElementPtrConstantExpr>::op_end(this)
1948 - (IdxList.size()+1), IdxList.size()+1) {
1949 OperandList[0] = C;
1950 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
1951 OperandList[i+1] = IdxList[i];
1952}
1953
1954
Chris Lattner5cbade92005-10-03 21:58:36 +00001955//===----------------------------------------------------------------------===//
1956// replaceUsesOfWithOnConstant implementations
1957
Chris Lattner54984052007-08-21 00:55:23 +00001958/// replaceUsesOfWithOnConstant - Update this constant array to change uses of
1959/// 'From' to be uses of 'To'. This must update the uniquing data structures
1960/// etc.
1961///
1962/// Note that we intentionally replace all uses of From with To here. Consider
1963/// a large array that uses 'From' 1000 times. By handling this case all here,
1964/// ConstantArray::replaceUsesOfWithOnConstant is only invoked once, and that
1965/// single invocation handles all 1000 uses. Handling them one at a time would
1966/// work, but would be really slow because it would have to unique each updated
1967/// array instance.
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001968///
Chris Lattner5cbade92005-10-03 21:58:36 +00001969void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00001970 Use *U) {
Owen Anderson1fd70962009-07-28 18:32:17 +00001971 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
1972 Constant *ToC = cast<Constant>(To);
1973
Chris Lattner93604b62010-07-17 06:13:52 +00001974 LLVMContextImpl *pImpl = getRawType()->getContext().pImpl;
Owen Anderson1fd70962009-07-28 18:32:17 +00001975
Dan Gohmane3394d42009-09-15 15:58:07 +00001976 std::pair<LLVMContextImpl::ArrayConstantsTy::MapKey, ConstantArray*> Lookup;
Chris Lattner93604b62010-07-17 06:13:52 +00001977 Lookup.first.first = cast<ArrayType>(getRawType());
Owen Anderson1fd70962009-07-28 18:32:17 +00001978 Lookup.second = this;
1979
1980 std::vector<Constant*> &Values = Lookup.first.second;
1981 Values.reserve(getNumOperands()); // Build replacement array.
1982
1983 // Fill values with the modified operands of the constant array. Also,
1984 // compute whether this turns into an all-zeros array.
1985 bool isAllZeros = false;
1986 unsigned NumUpdated = 0;
1987 if (!ToC->isNullValue()) {
1988 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
1989 Constant *Val = cast<Constant>(O->get());
1990 if (Val == From) {
1991 Val = ToC;
1992 ++NumUpdated;
1993 }
1994 Values.push_back(Val);
1995 }
1996 } else {
1997 isAllZeros = true;
1998 for (Use *O = OperandList, *E = OperandList+getNumOperands();O != E; ++O) {
1999 Constant *Val = cast<Constant>(O->get());
2000 if (Val == From) {
2001 Val = ToC;
2002 ++NumUpdated;
2003 }
2004 Values.push_back(Val);
2005 if (isAllZeros) isAllZeros = Val->isNullValue();
2006 }
2007 }
2008
2009 Constant *Replacement = 0;
2010 if (isAllZeros) {
Chris Lattner93604b62010-07-17 06:13:52 +00002011 Replacement = ConstantAggregateZero::get(getRawType());
Owen Anderson1fd70962009-07-28 18:32:17 +00002012 } else {
2013 // Check to see if we have this array type already.
Owen Anderson1fd70962009-07-28 18:32:17 +00002014 bool Exists;
2015 LLVMContextImpl::ArrayConstantsTy::MapTy::iterator I =
2016 pImpl->ArrayConstants.InsertOrGetItem(Lookup, Exists);
2017
2018 if (Exists) {
Devang Patel5f4ac842009-09-03 01:39:20 +00002019 Replacement = I->second;
Owen Anderson1fd70962009-07-28 18:32:17 +00002020 } else {
2021 // Okay, the new shape doesn't exist in the system yet. Instead of
2022 // creating a new constant array, inserting it, replaceallusesof'ing the
2023 // old with the new, then deleting the old... just update the current one
2024 // in place!
2025 pImpl->ArrayConstants.MoveConstantToNewSlot(this, I);
2026
2027 // Update to the new value. Optimize for the case when we have a single
2028 // operand that we're changing, but handle bulk updates efficiently.
2029 if (NumUpdated == 1) {
2030 unsigned OperandToUpdate = U - OperandList;
2031 assert(getOperand(OperandToUpdate) == From &&
2032 "ReplaceAllUsesWith broken!");
2033 setOperand(OperandToUpdate, ToC);
2034 } else {
2035 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
2036 if (getOperand(i) == From)
2037 setOperand(i, ToC);
2038 }
2039 return;
2040 }
2041 }
Chris Lattnercea141f2005-10-03 22:51:37 +00002042
2043 // Otherwise, I do need to replace this with an existing value.
Chris Lattner5cbade92005-10-03 21:58:36 +00002044 assert(Replacement != this && "I didn't contain From!");
2045
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002046 // Everyone using this now uses the replacement.
2047 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattner5cbade92005-10-03 21:58:36 +00002048
2049 // Delete the old constant!
2050 destroyConstant();
2051}
2052
2053void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002054 Use *U) {
Owen Anderson8fa33382009-07-27 22:29:26 +00002055 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2056 Constant *ToC = cast<Constant>(To);
2057
2058 unsigned OperandToUpdate = U-OperandList;
2059 assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!");
2060
Dan Gohmane3394d42009-09-15 15:58:07 +00002061 std::pair<LLVMContextImpl::StructConstantsTy::MapKey, ConstantStruct*> Lookup;
Chris Lattner93604b62010-07-17 06:13:52 +00002062 Lookup.first.first = cast<StructType>(getRawType());
Owen Anderson8fa33382009-07-27 22:29:26 +00002063 Lookup.second = this;
2064 std::vector<Constant*> &Values = Lookup.first.second;
2065 Values.reserve(getNumOperands()); // Build replacement struct.
2066
2067
2068 // Fill values with the modified operands of the constant struct. Also,
2069 // compute whether this turns into an all-zeros struct.
2070 bool isAllZeros = false;
2071 if (!ToC->isNullValue()) {
2072 for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O)
2073 Values.push_back(cast<Constant>(O->get()));
2074 } else {
2075 isAllZeros = true;
2076 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2077 Constant *Val = cast<Constant>(O->get());
2078 Values.push_back(Val);
2079 if (isAllZeros) isAllZeros = Val->isNullValue();
2080 }
2081 }
2082 Values[OperandToUpdate] = ToC;
2083
Chris Lattner93604b62010-07-17 06:13:52 +00002084 LLVMContextImpl *pImpl = getRawType()->getContext().pImpl;
Owen Anderson8fa33382009-07-27 22:29:26 +00002085
2086 Constant *Replacement = 0;
2087 if (isAllZeros) {
Chris Lattner93604b62010-07-17 06:13:52 +00002088 Replacement = ConstantAggregateZero::get(getRawType());
Owen Anderson8fa33382009-07-27 22:29:26 +00002089 } else {
Chris Lattner93604b62010-07-17 06:13:52 +00002090 // Check to see if we have this struct type already.
Owen Anderson8fa33382009-07-27 22:29:26 +00002091 bool Exists;
2092 LLVMContextImpl::StructConstantsTy::MapTy::iterator I =
2093 pImpl->StructConstants.InsertOrGetItem(Lookup, Exists);
2094
2095 if (Exists) {
Devang Patel5f4ac842009-09-03 01:39:20 +00002096 Replacement = I->second;
Owen Anderson8fa33382009-07-27 22:29:26 +00002097 } else {
2098 // Okay, the new shape doesn't exist in the system yet. Instead of
2099 // creating a new constant struct, inserting it, replaceallusesof'ing the
2100 // old with the new, then deleting the old... just update the current one
2101 // in place!
2102 pImpl->StructConstants.MoveConstantToNewSlot(this, I);
2103
2104 // Update to the new value.
2105 setOperand(OperandToUpdate, ToC);
2106 return;
2107 }
2108 }
2109
2110 assert(Replacement != this && "I didn't contain From!");
Chris Lattner5cbade92005-10-03 21:58:36 +00002111
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002112 // Everyone using this now uses the replacement.
2113 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattner5cbade92005-10-03 21:58:36 +00002114
2115 // Delete the old constant!
2116 destroyConstant();
2117}
2118
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002119void ConstantUnion::replaceUsesOfWithOnConstant(Value *From, Value *To,
2120 Use *U) {
Talin196c60a2010-02-18 21:43:45 +00002121 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2122 Constant *ToC = cast<Constant>(To);
2123
2124 assert(U == OperandList && "Union constants can only have one use!");
2125 assert(getNumOperands() == 1 && "Union constants can only have one use!");
2126 assert(getOperand(0) == From && "ReplaceAllUsesWith broken!");
2127
2128 std::pair<LLVMContextImpl::UnionConstantsTy::MapKey, ConstantUnion*> Lookup;
Chris Lattner93604b62010-07-17 06:13:52 +00002129 Lookup.first.first = cast<UnionType>(getRawType());
Talin196c60a2010-02-18 21:43:45 +00002130 Lookup.second = this;
2131 Lookup.first.second = ToC;
2132
Chris Lattner93604b62010-07-17 06:13:52 +00002133 LLVMContextImpl *pImpl = getRawType()->getContext().pImpl;
Talin196c60a2010-02-18 21:43:45 +00002134
2135 Constant *Replacement = 0;
2136 if (ToC->isNullValue()) {
Chris Lattner93604b62010-07-17 06:13:52 +00002137 Replacement = ConstantAggregateZero::get(getRawType());
Talin196c60a2010-02-18 21:43:45 +00002138 } else {
2139 // Check to see if we have this union type already.
2140 bool Exists;
2141 LLVMContextImpl::UnionConstantsTy::MapTy::iterator I =
2142 pImpl->UnionConstants.InsertOrGetItem(Lookup, Exists);
2143
2144 if (Exists) {
2145 Replacement = I->second;
2146 } else {
2147 // Okay, the new shape doesn't exist in the system yet. Instead of
2148 // creating a new constant union, inserting it, replaceallusesof'ing the
2149 // old with the new, then deleting the old... just update the current one
2150 // in place!
2151 pImpl->UnionConstants.MoveConstantToNewSlot(this, I);
2152
2153 // Update to the new value.
2154 setOperand(0, ToC);
2155 return;
2156 }
2157 }
2158
2159 assert(Replacement != this && "I didn't contain From!");
2160
2161 // Everyone using this now uses the replacement.
2162 uncheckedReplaceAllUsesWith(Replacement);
2163
2164 // Delete the old constant!
2165 destroyConstant();
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002166}
2167
Reid Spencer9d6565a2007-02-15 02:26:10 +00002168void ConstantVector::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002169 Use *U) {
Chris Lattner5cbade92005-10-03 21:58:36 +00002170 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2171
2172 std::vector<Constant*> Values;
2173 Values.reserve(getNumOperands()); // Build replacement array...
2174 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2175 Constant *Val = getOperand(i);
2176 if (Val == From) Val = cast<Constant>(To);
2177 Values.push_back(Val);
2178 }
2179
Chris Lattner93604b62010-07-17 06:13:52 +00002180 Constant *Replacement = get(cast<VectorType>(getRawType()), Values);
Chris Lattner5cbade92005-10-03 21:58:36 +00002181 assert(Replacement != this && "I didn't contain From!");
2182
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002183 // Everyone using this now uses the replacement.
2184 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattner5cbade92005-10-03 21:58:36 +00002185
2186 // Delete the old constant!
2187 destroyConstant();
2188}
2189
2190void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002191 Use *U) {
Chris Lattner5cbade92005-10-03 21:58:36 +00002192 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
2193 Constant *To = cast<Constant>(ToV);
2194
2195 Constant *Replacement = 0;
2196 if (getOpcode() == Instruction::GetElementPtr) {
Chris Lattnerf9021ff2007-02-19 20:01:23 +00002197 SmallVector<Constant*, 8> Indices;
Chris Lattner5cbade92005-10-03 21:58:36 +00002198 Constant *Pointer = getOperand(0);
2199 Indices.reserve(getNumOperands()-1);
2200 if (Pointer == From) Pointer = To;
2201
2202 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
2203 Constant *Val = getOperand(i);
2204 if (Val == From) Val = To;
2205 Indices.push_back(Val);
2206 }
Chris Lattnerf9021ff2007-02-19 20:01:23 +00002207 Replacement = ConstantExpr::getGetElementPtr(Pointer,
2208 &Indices[0], Indices.size());
Dan Gohman041e2eb2008-05-15 19:50:34 +00002209 } else if (getOpcode() == Instruction::ExtractValue) {
Dan Gohman041e2eb2008-05-15 19:50:34 +00002210 Constant *Agg = getOperand(0);
Dan Gohman041e2eb2008-05-15 19:50:34 +00002211 if (Agg == From) Agg = To;
2212
Dan Gohman81a0c0b2008-05-31 00:58:22 +00002213 const SmallVector<unsigned, 4> &Indices = getIndices();
Dan Gohman041e2eb2008-05-15 19:50:34 +00002214 Replacement = ConstantExpr::getExtractValue(Agg,
2215 &Indices[0], Indices.size());
2216 } else if (getOpcode() == Instruction::InsertValue) {
Dan Gohman041e2eb2008-05-15 19:50:34 +00002217 Constant *Agg = getOperand(0);
2218 Constant *Val = getOperand(1);
Dan Gohman041e2eb2008-05-15 19:50:34 +00002219 if (Agg == From) Agg = To;
2220 if (Val == From) Val = To;
2221
Dan Gohman81a0c0b2008-05-31 00:58:22 +00002222 const SmallVector<unsigned, 4> &Indices = getIndices();
Dan Gohman041e2eb2008-05-15 19:50:34 +00002223 Replacement = ConstantExpr::getInsertValue(Agg, Val,
2224 &Indices[0], Indices.size());
Reid Spencer3da59db2006-11-27 01:05:10 +00002225 } else if (isCast()) {
Chris Lattner5cbade92005-10-03 21:58:36 +00002226 assert(getOperand(0) == From && "Cast only has one use!");
Chris Lattner93604b62010-07-17 06:13:52 +00002227 Replacement = ConstantExpr::getCast(getOpcode(), To, getRawType());
Chris Lattner5cbade92005-10-03 21:58:36 +00002228 } else if (getOpcode() == Instruction::Select) {
2229 Constant *C1 = getOperand(0);
2230 Constant *C2 = getOperand(1);
2231 Constant *C3 = getOperand(2);
2232 if (C1 == From) C1 = To;
2233 if (C2 == From) C2 = To;
2234 if (C3 == From) C3 = To;
2235 Replacement = ConstantExpr::getSelect(C1, C2, C3);
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00002236 } else if (getOpcode() == Instruction::ExtractElement) {
2237 Constant *C1 = getOperand(0);
2238 Constant *C2 = getOperand(1);
2239 if (C1 == From) C1 = To;
2240 if (C2 == From) C2 = To;
2241 Replacement = ConstantExpr::getExtractElement(C1, C2);
Chris Lattner42b55802006-04-08 05:09:48 +00002242 } else if (getOpcode() == Instruction::InsertElement) {
2243 Constant *C1 = getOperand(0);
2244 Constant *C2 = getOperand(1);
2245 Constant *C3 = getOperand(1);
2246 if (C1 == From) C1 = To;
2247 if (C2 == From) C2 = To;
2248 if (C3 == From) C3 = To;
2249 Replacement = ConstantExpr::getInsertElement(C1, C2, C3);
2250 } else if (getOpcode() == Instruction::ShuffleVector) {
2251 Constant *C1 = getOperand(0);
2252 Constant *C2 = getOperand(1);
2253 Constant *C3 = getOperand(2);
2254 if (C1 == From) C1 = To;
2255 if (C2 == From) C2 = To;
2256 if (C3 == From) C3 = To;
2257 Replacement = ConstantExpr::getShuffleVector(C1, C2, C3);
Reid Spencer077d0eb2006-12-04 05:19:50 +00002258 } else if (isCompare()) {
2259 Constant *C1 = getOperand(0);
2260 Constant *C2 = getOperand(1);
2261 if (C1 == From) C1 = To;
2262 if (C2 == From) C2 = To;
2263 if (getOpcode() == Instruction::ICmp)
2264 Replacement = ConstantExpr::getICmp(getPredicate(), C1, C2);
Chris Lattnerbbedb0e2008-07-14 05:17:31 +00002265 else {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002266 assert(getOpcode() == Instruction::FCmp);
2267 Replacement = ConstantExpr::getFCmp(getPredicate(), C1, C2);
Chris Lattnerbbedb0e2008-07-14 05:17:31 +00002268 }
Chris Lattner5cbade92005-10-03 21:58:36 +00002269 } else if (getNumOperands() == 2) {
2270 Constant *C1 = getOperand(0);
2271 Constant *C2 = getOperand(1);
2272 if (C1 == From) C1 = To;
2273 if (C2 == From) C2 = To;
Chris Lattnercafe9bb2009-12-29 02:14:09 +00002274 Replacement = ConstantExpr::get(getOpcode(), C1, C2, SubclassOptionalData);
Chris Lattner5cbade92005-10-03 21:58:36 +00002275 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +00002276 llvm_unreachable("Unknown ConstantExpr type!");
Chris Lattner5cbade92005-10-03 21:58:36 +00002277 return;
2278 }
2279
2280 assert(Replacement != this && "I didn't contain From!");
2281
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002282 // Everyone using this now uses the replacement.
2283 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattner5cbade92005-10-03 21:58:36 +00002284
2285 // Delete the old constant!
2286 destroyConstant();
Matthijs Kooijman10b9de62008-07-03 07:46:41 +00002287}