blob: a2ac768d22118f6791f3793b1f157d9f14af59ea [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 Lattnereb59ca92011-02-07 20:03:14 +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...
Chris Lattner38211762009-10-30 22:33:29 +000043Constant *Constant::getNullValue(const Type *Ty) {
Owen Andersona7235ea2009-07-31 20:28:14 +000044 switch (Ty->getTypeID()) {
45 case Type::IntegerTyID:
46 return ConstantInt::get(Ty, 0);
47 case Type::FloatTyID:
Benjamin Kramer98383962010-12-04 14:22:24 +000048 return ConstantFP::get(Ty->getContext(),
49 APFloat::getZero(APFloat::IEEEsingle));
Owen Andersona7235ea2009-07-31 20:28:14 +000050 case Type::DoubleTyID:
Benjamin Kramer98383962010-12-04 14:22:24 +000051 return ConstantFP::get(Ty->getContext(),
52 APFloat::getZero(APFloat::IEEEdouble));
Owen Andersona7235ea2009-07-31 20:28:14 +000053 case Type::X86_FP80TyID:
Benjamin Kramer98383962010-12-04 14:22:24 +000054 return ConstantFP::get(Ty->getContext(),
55 APFloat::getZero(APFloat::x87DoubleExtended));
Owen Andersona7235ea2009-07-31 20:28:14 +000056 case Type::FP128TyID:
57 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer98383962010-12-04 14:22:24 +000058 APFloat::getZero(APFloat::IEEEquad));
Owen Andersona7235ea2009-07-31 20:28:14 +000059 case Type::PPC_FP128TyID:
Benjamin Kramer98383962010-12-04 14:22:24 +000060 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer299ee182010-12-04 14:43:08 +000061 APFloat(APInt::getNullValue(128)));
Owen Andersona7235ea2009-07-31 20:28:14 +000062 case Type::PointerTyID:
63 return ConstantPointerNull::get(cast<PointerType>(Ty));
64 case Type::StructTyID:
65 case Type::ArrayTyID:
66 case Type::VectorTyID:
67 return ConstantAggregateZero::get(Ty);
68 default:
69 // Function, Label, or Opaque type?
70 assert(!"Cannot create a null constant of that type!");
71 return 0;
72 }
73}
74
Chris Lattnerf067d582011-02-07 16:40:21 +000075Constant *Constant::getIntegerValue(const Type *Ty, const APInt &V) {
Dan Gohman43ee5f72009-08-03 22:07:33 +000076 const Type *ScalarTy = Ty->getScalarType();
77
78 // Create the base integer constant.
79 Constant *C = ConstantInt::get(Ty->getContext(), V);
80
81 // Convert an integer to a pointer, if necessary.
82 if (const PointerType *PTy = dyn_cast<PointerType>(ScalarTy))
83 C = ConstantExpr::getIntToPtr(C, PTy);
84
85 // Broadcast a scalar to a vector, if necessary.
86 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
87 C = ConstantVector::get(std::vector<Constant *>(VTy->getNumElements(), C));
88
89 return C;
90}
91
Chris Lattnerf067d582011-02-07 16:40:21 +000092Constant *Constant::getAllOnesValue(const Type *Ty) {
Chris Lattner38211762009-10-30 22:33:29 +000093 if (const IntegerType *ITy = dyn_cast<IntegerType>(Ty))
Owen Andersona7235ea2009-07-31 20:28:14 +000094 return ConstantInt::get(Ty->getContext(),
95 APInt::getAllOnesValue(ITy->getBitWidth()));
Nadav Rotem093399c2011-02-17 21:22:27 +000096
97 if (Ty->isFloatingPointTy()) {
98 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
99 !Ty->isPPC_FP128Ty());
100 return ConstantFP::get(Ty->getContext(), FL);
101 }
102
Chris Lattner2ca5c862011-02-15 00:14:00 +0000103 SmallVector<Constant*, 16> Elts;
Chris Lattner38211762009-10-30 22:33:29 +0000104 const VectorType *VTy = cast<VectorType>(Ty);
Owen Andersona7235ea2009-07-31 20:28:14 +0000105 Elts.resize(VTy->getNumElements(), getAllOnesValue(VTy->getElementType()));
106 assert(Elts[0] && "Not a vector integer type!");
107 return cast<ConstantVector>(ConstantVector::get(Elts));
108}
109
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000110void Constant::destroyConstantImpl() {
111 // When a Constant is destroyed, there may be lingering
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000112 // references to the constant by other constants in the constant pool. These
Misha Brukmanef6a6a62003-08-21 22:14:26 +0000113 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000114 // but they don't know that. Because we only find out when the CPV is
115 // deleted, we must now notify all of our users (that should only be
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000116 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000117 //
118 while (!use_empty()) {
119 Value *V = use_back();
120#ifndef NDEBUG // Only in -g mode...
Chris Lattner37f077a2009-08-23 04:02:03 +0000121 if (!isa<Constant>(V)) {
David Greened2e63b72010-01-05 01:29:19 +0000122 dbgs() << "While deleting: " << *this
Chris Lattner37f077a2009-08-23 04:02:03 +0000123 << "\n\nUse still stuck around after Def is destroyed: "
124 << *V << "\n\n";
125 }
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000126#endif
Vikram S. Adve345e0cf2002-07-14 23:13:17 +0000127 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Reid Spencer1c9c8e62004-07-17 23:48:33 +0000128 Constant *CV = cast<Constant>(V);
129 CV->destroyConstant();
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000130
131 // The constant should remove itself from our use list...
Vikram S. Adve345e0cf2002-07-14 23:13:17 +0000132 assert((use_empty() || use_back() != V) && "Constant not removed!");
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000133 }
134
135 // Value has no outstanding references it is safe to delete it now...
136 delete this;
Chris Lattner1d87bcf2001-10-01 20:11:19 +0000137}
Chris Lattner00950542001-06-06 20:29:01 +0000138
Chris Lattner35b89fa2006-10-20 00:27:06 +0000139/// canTrap - Return true if evaluation of this constant could trap. This is
140/// true for things like constant expressions that could divide by zero.
141bool Constant::canTrap() const {
142 assert(getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
143 // The only thing that could possibly trap are constant exprs.
144 const ConstantExpr *CE = dyn_cast<ConstantExpr>(this);
145 if (!CE) return false;
146
147 // ConstantExpr traps if any operands can trap.
148 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattner0eeb9132009-10-28 05:14:34 +0000149 if (CE->getOperand(i)->canTrap())
Chris Lattner35b89fa2006-10-20 00:27:06 +0000150 return true;
151
152 // Otherwise, only specific operations can trap.
153 switch (CE->getOpcode()) {
154 default:
155 return false;
Reid Spencer1628cec2006-10-26 06:15:43 +0000156 case Instruction::UDiv:
157 case Instruction::SDiv:
158 case Instruction::FDiv:
Reid Spencer0a783f72006-11-02 01:53:59 +0000159 case Instruction::URem:
160 case Instruction::SRem:
161 case Instruction::FRem:
Chris Lattner35b89fa2006-10-20 00:27:06 +0000162 // Div and rem can trap if the RHS is not known to be non-zero.
Chris Lattner0eeb9132009-10-28 05:14:34 +0000163 if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
Chris Lattner35b89fa2006-10-20 00:27:06 +0000164 return true;
165 return false;
166 }
167}
168
Chris Lattner4a7642e2009-11-01 18:11:50 +0000169/// isConstantUsed - Return true if the constant has users other than constant
170/// exprs and other dangling things.
171bool Constant::isConstantUsed() const {
Gabor Greif60ad7812010-03-25 23:06:16 +0000172 for (const_use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
Chris Lattner4a7642e2009-11-01 18:11:50 +0000173 const Constant *UC = dyn_cast<Constant>(*UI);
174 if (UC == 0 || isa<GlobalValue>(UC))
175 return true;
176
177 if (UC->isConstantUsed())
178 return true;
179 }
180 return false;
181}
182
183
Chris Lattner7cf12c72009-07-22 00:05:44 +0000184
185/// getRelocationInfo - This method classifies the entry according to
186/// whether or not it may generate a relocation entry. This must be
187/// conservative, so if it might codegen to a relocatable entry, it should say
188/// so. The return values are:
189///
Chris Lattner083a1e02009-07-24 03:27:21 +0000190/// NoRelocation: This constant pool entry is guaranteed to never have a
191/// relocation applied to it (because it holds a simple constant like
192/// '4').
193/// LocalRelocation: This entry has relocations, but the entries are
194/// guaranteed to be resolvable by the static linker, so the dynamic
195/// linker will never see them.
196/// GlobalRelocations: This entry may have arbitrary relocations.
Chris Lattner7cf12c72009-07-22 00:05:44 +0000197///
198/// FIXME: This really should not be in VMCore.
Chris Lattner083a1e02009-07-24 03:27:21 +0000199Constant::PossibleRelocationsTy Constant::getRelocationInfo() const {
200 if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
Chris Lattner7cf12c72009-07-22 00:05:44 +0000201 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
Chris Lattner083a1e02009-07-24 03:27:21 +0000202 return LocalRelocation; // Local to this file/library.
203 return GlobalRelocations; // Global reference.
Anton Korobeynikovab267a22009-03-29 17:13:18 +0000204 }
Chris Lattner7cf12c72009-07-22 00:05:44 +0000205
Chris Lattner5d81bef2009-10-28 04:12:16 +0000206 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
207 return BA->getFunction()->getRelocationInfo();
208
Chris Lattner5099b312010-01-03 18:09:40 +0000209 // While raw uses of blockaddress need to be relocated, differences between
210 // two of them don't when they are for labels in the same function. This is a
211 // common idiom when creating a table for the indirect goto extension, so we
212 // handle it efficiently here.
213 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(this))
214 if (CE->getOpcode() == Instruction::Sub) {
215 ConstantExpr *LHS = dyn_cast<ConstantExpr>(CE->getOperand(0));
216 ConstantExpr *RHS = dyn_cast<ConstantExpr>(CE->getOperand(1));
217 if (LHS && RHS &&
218 LHS->getOpcode() == Instruction::PtrToInt &&
219 RHS->getOpcode() == Instruction::PtrToInt &&
220 isa<BlockAddress>(LHS->getOperand(0)) &&
221 isa<BlockAddress>(RHS->getOperand(0)) &&
222 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
223 cast<BlockAddress>(RHS->getOperand(0))->getFunction())
224 return NoRelocation;
225 }
226
Chris Lattner083a1e02009-07-24 03:27:21 +0000227 PossibleRelocationsTy Result = NoRelocation;
Evan Chengafe15812007-03-08 00:59:12 +0000228 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattner0eeb9132009-10-28 05:14:34 +0000229 Result = std::max(Result,
230 cast<Constant>(getOperand(i))->getRelocationInfo());
Chris Lattner7cf12c72009-07-22 00:05:44 +0000231
232 return Result;
Evan Chengafe15812007-03-08 00:59:12 +0000233}
234
Chris Lattner7cf12c72009-07-22 00:05:44 +0000235
Chris Lattner86381442008-07-10 00:28:11 +0000236/// getVectorElements - This method, which is only valid on constant of vector
237/// type, returns the elements of the vector in the specified smallvector.
Chris Lattner071aade2008-07-14 05:10:41 +0000238/// This handles breaking down a vector undef into undef elements, etc. For
239/// constant exprs and other cases we can't handle, we return an empty vector.
Chris Lattnerb29d5962010-02-01 20:48:08 +0000240void Constant::getVectorElements(SmallVectorImpl<Constant*> &Elts) const {
Duncan Sands1df98592010-02-16 11:11:14 +0000241 assert(getType()->isVectorTy() && "Not a vector constant!");
Chris Lattner86381442008-07-10 00:28:11 +0000242
243 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this)) {
244 for (unsigned i = 0, e = CV->getNumOperands(); i != e; ++i)
245 Elts.push_back(CV->getOperand(i));
246 return;
247 }
248
249 const VectorType *VT = cast<VectorType>(getType());
250 if (isa<ConstantAggregateZero>(this)) {
251 Elts.assign(VT->getNumElements(),
Owen Andersona7235ea2009-07-31 20:28:14 +0000252 Constant::getNullValue(VT->getElementType()));
Chris Lattner86381442008-07-10 00:28:11 +0000253 return;
254 }
255
Chris Lattner071aade2008-07-14 05:10:41 +0000256 if (isa<UndefValue>(this)) {
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000257 Elts.assign(VT->getNumElements(), UndefValue::get(VT->getElementType()));
Chris Lattner071aade2008-07-14 05:10:41 +0000258 return;
259 }
260
261 // Unknown type, must be constant expr etc.
Chris Lattner86381442008-07-10 00:28:11 +0000262}
263
264
265
Chris Lattner00950542001-06-06 20:29:01 +0000266//===----------------------------------------------------------------------===//
Chris Lattner6b6f6ba2007-02-20 06:39:57 +0000267// ConstantInt
Chris Lattner00950542001-06-06 20:29:01 +0000268//===----------------------------------------------------------------------===//
269
Reid Spencer532d0ce2007-02-26 23:54:03 +0000270ConstantInt::ConstantInt(const IntegerType *Ty, const APInt& V)
Chris Lattnereb41bdd2007-02-20 05:55:46 +0000271 : Constant(Ty, ConstantIntVal, 0, 0), Val(V) {
Reid Spencer532d0ce2007-02-26 23:54:03 +0000272 assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
Chris Lattner00950542001-06-06 20:29:01 +0000273}
274
Owen Anderson5defacc2009-07-31 17:39:07 +0000275ConstantInt* ConstantInt::getTrue(LLVMContext &Context) {
276 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerf601d6d2010-11-20 18:43:35 +0000277 if (!pImpl->TheTrueVal)
278 pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1);
279 return pImpl->TheTrueVal;
Owen Anderson5defacc2009-07-31 17:39:07 +0000280}
281
282ConstantInt* ConstantInt::getFalse(LLVMContext &Context) {
283 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerf601d6d2010-11-20 18:43:35 +0000284 if (!pImpl->TheFalseVal)
285 pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0);
286 return pImpl->TheFalseVal;
Owen Anderson5defacc2009-07-31 17:39:07 +0000287}
288
289
Owen Andersoneed707b2009-07-24 23:12:02 +0000290// Get a ConstantInt from an APInt. Note that the value stored in the DenseMap
291// as the key, is a DenseMapAPIntKeyInfo::KeyTy which has provided the
292// operator== and operator!= to ensure that the DenseMap doesn't attempt to
293// compare APInt's of different widths, which would violate an APInt class
294// invariant which generates an assertion.
295ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt& V) {
296 // Get the corresponding integer type for the bit width of the value.
Owen Anderson1d0be152009-08-13 21:58:54 +0000297 const IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
Owen Andersoneed707b2009-07-24 23:12:02 +0000298 // get an existing value or the insertion position
299 DenseMapAPIntKeyInfo::KeyTy Key(V, ITy);
Owen Andersoneed707b2009-07-24 23:12:02 +0000300 ConstantInt *&Slot = Context.pImpl->IntConstants[Key];
Owen Anderson59d5aac2009-10-19 20:11:52 +0000301 if (!Slot) Slot = new ConstantInt(ITy, V);
302 return Slot;
Owen Andersoneed707b2009-07-24 23:12:02 +0000303}
304
Chris Lattnerf067d582011-02-07 16:40:21 +0000305Constant *ConstantInt::get(const Type* Ty, uint64_t V, bool isSigned) {
Owen Andersoneed707b2009-07-24 23:12:02 +0000306 Constant *C = get(cast<IntegerType>(Ty->getScalarType()),
307 V, isSigned);
308
309 // For vectors, broadcast the value.
310 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattner2ca5c862011-02-15 00:14:00 +0000311 return ConstantVector::get(SmallVector<Constant*,
312 16>(VTy->getNumElements(), C));
Owen Andersoneed707b2009-07-24 23:12:02 +0000313
314 return C;
315}
316
317ConstantInt* ConstantInt::get(const IntegerType* Ty, uint64_t V,
318 bool isSigned) {
319 return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
320}
321
322ConstantInt* ConstantInt::getSigned(const IntegerType* Ty, int64_t V) {
323 return get(Ty, V, true);
324}
325
326Constant *ConstantInt::getSigned(const Type *Ty, int64_t V) {
327 return get(Ty, V, true);
328}
329
Chris Lattnerf067d582011-02-07 16:40:21 +0000330Constant *ConstantInt::get(const Type* Ty, const APInt& V) {
Owen Andersoneed707b2009-07-24 23:12:02 +0000331 ConstantInt *C = get(Ty->getContext(), V);
332 assert(C->getType() == Ty->getScalarType() &&
333 "ConstantInt type doesn't match the type implied by its value!");
334
335 // For vectors, broadcast the value.
336 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
Owen Andersonaf7ec972009-07-28 21:19:26 +0000337 return ConstantVector::get(
Chris Lattner2ca5c862011-02-15 00:14:00 +0000338 SmallVector<Constant *, 16>(VTy->getNumElements(), C));
Owen Andersoneed707b2009-07-24 23:12:02 +0000339
340 return C;
341}
342
Daniel Dunbar2928c832009-11-06 10:58:06 +0000343ConstantInt* ConstantInt::get(const IntegerType* Ty, StringRef Str,
Erick Tryzelaar0e81f662009-08-16 23:36:33 +0000344 uint8_t radix) {
345 return get(Ty->getContext(), APInt(Ty->getBitWidth(), Str, radix));
346}
347
Chris Lattner6b6f6ba2007-02-20 06:39:57 +0000348//===----------------------------------------------------------------------===//
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000349// ConstantFP
Chris Lattner6b6f6ba2007-02-20 06:39:57 +0000350//===----------------------------------------------------------------------===//
351
Rafael Espindola87d1f472009-07-15 17:40:42 +0000352static const fltSemantics *TypeToFloatSemantics(const Type *Ty) {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000353 if (Ty->isFloatTy())
Rafael Espindola87d1f472009-07-15 17:40:42 +0000354 return &APFloat::IEEEsingle;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000355 if (Ty->isDoubleTy())
Rafael Espindola87d1f472009-07-15 17:40:42 +0000356 return &APFloat::IEEEdouble;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000357 if (Ty->isX86_FP80Ty())
Rafael Espindola87d1f472009-07-15 17:40:42 +0000358 return &APFloat::x87DoubleExtended;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000359 else if (Ty->isFP128Ty())
Rafael Espindola87d1f472009-07-15 17:40:42 +0000360 return &APFloat::IEEEquad;
361
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000362 assert(Ty->isPPC_FP128Ty() && "Unknown FP format");
Rafael Espindola87d1f472009-07-15 17:40:42 +0000363 return &APFloat::PPCDoubleDouble;
364}
365
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000366/// get() - This returns a constant fp for the specified value in the
367/// specified type. This should only be used for simple constant values like
368/// 2.0/1.0 etc, that are known-valid both as double and as the target format.
Chris Lattnerf067d582011-02-07 16:40:21 +0000369Constant *ConstantFP::get(const Type* Ty, double V) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000370 LLVMContext &Context = Ty->getContext();
371
372 APFloat FV(V);
373 bool ignored;
374 FV.convert(*TypeToFloatSemantics(Ty->getScalarType()),
375 APFloat::rmNearestTiesToEven, &ignored);
376 Constant *C = get(Context, FV);
377
378 // For vectors, broadcast the value.
379 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
Owen Andersonaf7ec972009-07-28 21:19:26 +0000380 return ConstantVector::get(
Chris Lattner2ca5c862011-02-15 00:14:00 +0000381 SmallVector<Constant *, 16>(VTy->getNumElements(), C));
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000382
383 return C;
384}
385
Erick Tryzelaar0e81f662009-08-16 23:36:33 +0000386
Chris Lattnerf067d582011-02-07 16:40:21 +0000387Constant *ConstantFP::get(const Type* Ty, StringRef Str) {
Erick Tryzelaar0e81f662009-08-16 23:36:33 +0000388 LLVMContext &Context = Ty->getContext();
389
390 APFloat FV(*TypeToFloatSemantics(Ty->getScalarType()), Str);
391 Constant *C = get(Context, FV);
392
393 // For vectors, broadcast the value.
394 if (const VectorType *VTy = dyn_cast<VectorType>(Ty))
395 return ConstantVector::get(
Chris Lattner2ca5c862011-02-15 00:14:00 +0000396 SmallVector<Constant *, 16>(VTy->getNumElements(), C));
Erick Tryzelaar0e81f662009-08-16 23:36:33 +0000397
398 return C;
399}
400
401
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000402ConstantFP* ConstantFP::getNegativeZero(const Type* Ty) {
403 LLVMContext &Context = Ty->getContext();
Owen Andersona7235ea2009-07-31 20:28:14 +0000404 APFloat apf = cast <ConstantFP>(Constant::getNullValue(Ty))->getValueAPF();
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000405 apf.changeSign();
406 return get(Context, apf);
407}
408
409
Chris Lattnerf067d582011-02-07 16:40:21 +0000410Constant *ConstantFP::getZeroValueForNegation(const Type* Ty) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000411 if (const VectorType *PTy = dyn_cast<VectorType>(Ty))
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000412 if (PTy->getElementType()->isFloatingPointTy()) {
Chris Lattner2ca5c862011-02-15 00:14:00 +0000413 SmallVector<Constant*, 16> zeros(PTy->getNumElements(),
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000414 getNegativeZero(PTy->getElementType()));
Chris Lattner2ca5c862011-02-15 00:14:00 +0000415 return ConstantVector::get(zeros);
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000416 }
417
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000418 if (Ty->isFloatingPointTy())
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000419 return getNegativeZero(Ty);
420
Owen Andersona7235ea2009-07-31 20:28:14 +0000421 return Constant::getNullValue(Ty);
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000422}
423
424
425// ConstantFP accessors.
426ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) {
427 DenseMapAPFloatKeyInfo::KeyTy Key(V);
428
429 LLVMContextImpl* pImpl = Context.pImpl;
430
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000431 ConstantFP *&Slot = pImpl->FPConstants[Key];
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000432
433 if (!Slot) {
Owen Anderson59d5aac2009-10-19 20:11:52 +0000434 const Type *Ty;
435 if (&V.getSemantics() == &APFloat::IEEEsingle)
436 Ty = Type::getFloatTy(Context);
437 else if (&V.getSemantics() == &APFloat::IEEEdouble)
438 Ty = Type::getDoubleTy(Context);
439 else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
440 Ty = Type::getX86_FP80Ty(Context);
441 else if (&V.getSemantics() == &APFloat::IEEEquad)
442 Ty = Type::getFP128Ty(Context);
443 else {
444 assert(&V.getSemantics() == &APFloat::PPCDoubleDouble &&
445 "Unknown FP format");
446 Ty = Type::getPPC_FP128Ty(Context);
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000447 }
Owen Anderson59d5aac2009-10-19 20:11:52 +0000448 Slot = new ConstantFP(Ty, V);
Owen Anderson6f83c9c2009-07-27 20:59:43 +0000449 }
450
451 return Slot;
452}
453
Dan Gohmana23643d2009-09-25 23:40:21 +0000454ConstantFP *ConstantFP::getInfinity(const Type *Ty, bool Negative) {
Dan Gohmanf344f7f2009-09-25 23:00:48 +0000455 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty);
456 return ConstantFP::get(Ty->getContext(),
457 APFloat::getInf(Semantics, Negative));
458}
459
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000460ConstantFP::ConstantFP(const Type *Ty, const APFloat& V)
461 : Constant(Ty, ConstantFPVal, 0, 0), Val(V) {
Chris Lattner288e78f2008-04-09 06:38:30 +0000462 assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
463 "FP type Mismatch");
Chris Lattner00950542001-06-06 20:29:01 +0000464}
465
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000466bool ConstantFP::isNullValue() const {
Dale Johannesen343e7702007-08-24 00:56:33 +0000467 return Val.isZero() && !Val.isNegative();
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000468}
469
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000470bool ConstantFP::isExactlyValue(const APFloat& V) const {
471 return Val.bitwiseIsEqual(V);
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000472}
473
Chris Lattner9b4ee0c2007-02-20 07:17:17 +0000474//===----------------------------------------------------------------------===//
475// ConstantXXX Classes
476//===----------------------------------------------------------------------===//
477
478
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000479ConstantArray::ConstantArray(const ArrayType *T,
Chris Lattnere4671472005-01-29 00:34:39 +0000480 const std::vector<Constant*> &V)
Gabor Greifefe65362008-05-10 08:32:32 +0000481 : Constant(T, ConstantArrayVal,
482 OperandTraits<ConstantArray>::op_end(this) - V.size(),
483 V.size()) {
Alkis Evlogimenose0de1d62004-09-15 02:32:15 +0000484 assert(V.size() == T->getNumElements() &&
485 "Invalid initializer vector for constant array");
Chris Lattnere4671472005-01-29 00:34:39 +0000486 Use *OL = OperandList;
Chris Lattnerdfdd6c52005-10-03 21:56:24 +0000487 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
488 I != E; ++I, ++OL) {
Chris Lattner71abaab2005-10-07 05:23:36 +0000489 Constant *C = *I;
Nick Lewyckyb13105f2009-10-03 19:30:43 +0000490 assert(C->getType() == T->getElementType() &&
Alkis Evlogimenoscad90ad2004-09-10 04:16:59 +0000491 "Initializer for array element doesn't match array element type!");
Gabor Greif6c80c382008-05-26 21:33:52 +0000492 *OL = C;
Chris Lattner00950542001-06-06 20:29:01 +0000493 }
494}
495
Owen Anderson1fd70962009-07-28 18:32:17 +0000496Constant *ConstantArray::get(const ArrayType *Ty,
497 const std::vector<Constant*> &V) {
Jeffrey Yasskin1fb613c2009-09-30 21:08:08 +0000498 for (unsigned i = 0, e = V.size(); i != e; ++i) {
499 assert(V[i]->getType() == Ty->getElementType() &&
500 "Wrong type in array element initializer");
501 }
Owen Anderson1fd70962009-07-28 18:32:17 +0000502 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
503 // If this is an all-zero array, return a ConstantAggregateZero object
504 if (!V.empty()) {
505 Constant *C = V[0];
Chris Lattner83738a22009-12-30 20:25:09 +0000506 if (!C->isNullValue())
Owen Anderson1fd70962009-07-28 18:32:17 +0000507 return pImpl->ArrayConstants.getOrCreate(Ty, V);
Chris Lattner83738a22009-12-30 20:25:09 +0000508
Owen Anderson1fd70962009-07-28 18:32:17 +0000509 for (unsigned i = 1, e = V.size(); i != e; ++i)
Chris Lattner83738a22009-12-30 20:25:09 +0000510 if (V[i] != C)
Owen Anderson1fd70962009-07-28 18:32:17 +0000511 return pImpl->ArrayConstants.getOrCreate(Ty, V);
Owen Anderson1fd70962009-07-28 18:32:17 +0000512 }
513
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000514 return ConstantAggregateZero::get(Ty);
Owen Anderson1fd70962009-07-28 18:32:17 +0000515}
516
517
Chris Lattnerf067d582011-02-07 16:40:21 +0000518Constant *ConstantArray::get(const ArrayType* T, Constant *const* Vals,
Owen Anderson1fd70962009-07-28 18:32:17 +0000519 unsigned NumVals) {
520 // FIXME: make this the primary ctor method.
521 return get(T, std::vector<Constant*>(Vals, Vals+NumVals));
522}
523
524/// ConstantArray::get(const string&) - Return an array that is initialized to
525/// contain the specified string. If length is zero then a null terminator is
526/// added to the specified string so that it may be used in a natural way.
527/// Otherwise, the length parameter specifies how much of the string to use
528/// and it won't be null terminated.
529///
Chris Lattnerf067d582011-02-07 16:40:21 +0000530Constant *ConstantArray::get(LLVMContext &Context, StringRef Str,
Owen Anderson1d0be152009-08-13 21:58:54 +0000531 bool AddNull) {
Owen Anderson1fd70962009-07-28 18:32:17 +0000532 std::vector<Constant*> ElementVals;
Benjamin Kramerad2b04c2010-08-01 11:43:26 +0000533 ElementVals.reserve(Str.size() + size_t(AddNull));
Owen Anderson1fd70962009-07-28 18:32:17 +0000534 for (unsigned i = 0; i < Str.size(); ++i)
Owen Anderson1d0be152009-08-13 21:58:54 +0000535 ElementVals.push_back(ConstantInt::get(Type::getInt8Ty(Context), Str[i]));
Owen Anderson1fd70962009-07-28 18:32:17 +0000536
537 // Add a null terminator to the string...
538 if (AddNull) {
Owen Anderson1d0be152009-08-13 21:58:54 +0000539 ElementVals.push_back(ConstantInt::get(Type::getInt8Ty(Context), 0));
Owen Anderson1fd70962009-07-28 18:32:17 +0000540 }
541
Owen Anderson1d0be152009-08-13 21:58:54 +0000542 ArrayType *ATy = ArrayType::get(Type::getInt8Ty(Context), ElementVals.size());
Owen Anderson1fd70962009-07-28 18:32:17 +0000543 return get(ATy, ElementVals);
544}
545
546
Chris Lattnere4671472005-01-29 00:34:39 +0000547
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000548ConstantStruct::ConstantStruct(const StructType *T,
Chris Lattnere4671472005-01-29 00:34:39 +0000549 const std::vector<Constant*> &V)
Gabor Greifefe65362008-05-10 08:32:32 +0000550 : Constant(T, ConstantStructVal,
551 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
552 V.size()) {
Chris Lattnerd21cd802004-02-09 04:37:31 +0000553 assert(V.size() == T->getNumElements() &&
Vikram S. Adve345e0cf2002-07-14 23:13:17 +0000554 "Invalid initializer vector for constant structure");
Chris Lattnere4671472005-01-29 00:34:39 +0000555 Use *OL = OperandList;
Chris Lattnerdfdd6c52005-10-03 21:56:24 +0000556 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
557 I != E; ++I, ++OL) {
Chris Lattner71abaab2005-10-07 05:23:36 +0000558 Constant *C = *I;
Nick Lewyckyb13105f2009-10-03 19:30:43 +0000559 assert(C->getType() == T->getElementType(I-V.begin()) &&
Chris Lattnerb8438892003-06-02 17:42:47 +0000560 "Initializer for struct element doesn't match struct element type!");
Gabor Greif6c80c382008-05-26 21:33:52 +0000561 *OL = C;
Chris Lattner00950542001-06-06 20:29:01 +0000562 }
563}
564
Owen Anderson8fa33382009-07-27 22:29:26 +0000565// ConstantStruct accessors.
Chris Lattnerf067d582011-02-07 16:40:21 +0000566Constant *ConstantStruct::get(const StructType* T,
Owen Anderson8fa33382009-07-27 22:29:26 +0000567 const std::vector<Constant*>& V) {
568 LLVMContextImpl* pImpl = T->getContext().pImpl;
569
570 // Create a ConstantAggregateZero value if all elements are zeros...
571 for (unsigned i = 0, e = V.size(); i != e; ++i)
572 if (!V[i]->isNullValue())
Owen Anderson8fa33382009-07-27 22:29:26 +0000573 return pImpl->StructConstants.getOrCreate(T, V);
574
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000575 return ConstantAggregateZero::get(T);
Owen Anderson8fa33382009-07-27 22:29:26 +0000576}
577
Chris Lattnerf067d582011-02-07 16:40:21 +0000578Constant *ConstantStruct::get(LLVMContext &Context,
Owen Andersond7f2a6c2009-08-05 23:16:16 +0000579 const std::vector<Constant*>& V, bool packed) {
Owen Anderson8fa33382009-07-27 22:29:26 +0000580 std::vector<const Type*> StructEls;
581 StructEls.reserve(V.size());
582 for (unsigned i = 0, e = V.size(); i != e; ++i)
583 StructEls.push_back(V[i]->getType());
Owen Andersond7f2a6c2009-08-05 23:16:16 +0000584 return get(StructType::get(Context, StructEls, packed), V);
Owen Anderson8fa33382009-07-27 22:29:26 +0000585}
586
Chris Lattnerf067d582011-02-07 16:40:21 +0000587Constant *ConstantStruct::get(LLVMContext &Context,
588 Constant *const *Vals, unsigned NumVals,
Owen Anderson8fa33382009-07-27 22:29:26 +0000589 bool Packed) {
590 // FIXME: make this the primary ctor method.
Owen Andersond7f2a6c2009-08-05 23:16:16 +0000591 return get(Context, std::vector<Constant*>(Vals, Vals+NumVals), Packed);
Owen Anderson8fa33382009-07-27 22:29:26 +0000592}
Chris Lattnere4671472005-01-29 00:34:39 +0000593
Reid Spencer9d6565a2007-02-15 02:26:10 +0000594ConstantVector::ConstantVector(const VectorType *T,
Chris Lattnere4671472005-01-29 00:34:39 +0000595 const std::vector<Constant*> &V)
Gabor Greifefe65362008-05-10 08:32:32 +0000596 : Constant(T, ConstantVectorVal,
597 OperandTraits<ConstantVector>::op_end(this) - V.size(),
598 V.size()) {
Chris Lattnere4671472005-01-29 00:34:39 +0000599 Use *OL = OperandList;
Jay Foad9afc5272011-01-27 14:44:55 +0000600 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
601 I != E; ++I, ++OL) {
602 Constant *C = *I;
603 assert(C->getType() == T->getElementType() &&
Dan Gohmanfa73ea22007-05-24 14:36:04 +0000604 "Initializer for vector element doesn't match vector element type!");
Gabor Greif6c80c382008-05-26 21:33:52 +0000605 *OL = C;
Brian Gaeke715c90b2004-08-20 06:00:58 +0000606 }
607}
608
Owen Andersonaf7ec972009-07-28 21:19:26 +0000609// ConstantVector accessors.
Chris Lattner2ca5c862011-02-15 00:14:00 +0000610Constant *ConstantVector::get(const VectorType *T,
611 const std::vector<Constant*> &V) {
Jay Foad9afc5272011-01-27 14:44:55 +0000612 assert(!V.empty() && "Vectors can't be empty");
Chris Lattner2ca5c862011-02-15 00:14:00 +0000613 LLVMContextImpl *pImpl = T->getContext().pImpl;
Jay Foad9afc5272011-01-27 14:44:55 +0000614
Chris Lattner2ca5c862011-02-15 00:14:00 +0000615 // If this is an all-undef or all-zero vector, return a
Owen Andersonaf7ec972009-07-28 21:19:26 +0000616 // ConstantAggregateZero or UndefValue.
617 Constant *C = V[0];
618 bool isZero = C->isNullValue();
619 bool isUndef = isa<UndefValue>(C);
620
621 if (isZero || isUndef) {
622 for (unsigned i = 1, e = V.size(); i != e; ++i)
623 if (V[i] != C) {
624 isZero = isUndef = false;
625 break;
626 }
627 }
628
629 if (isZero)
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000630 return ConstantAggregateZero::get(T);
Owen Andersonaf7ec972009-07-28 21:19:26 +0000631 if (isUndef)
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000632 return UndefValue::get(T);
Owen Andersonaf7ec972009-07-28 21:19:26 +0000633
Owen Andersonaf7ec972009-07-28 21:19:26 +0000634 return pImpl->VectorConstants.getOrCreate(T, V);
635}
636
Chris Lattner2ca5c862011-02-15 00:14:00 +0000637Constant *ConstantVector::get(ArrayRef<Constant*> V) {
Owen Andersonaf7ec972009-07-28 21:19:26 +0000638 // FIXME: make this the primary ctor method.
Chris Lattner2ca5c862011-02-15 00:14:00 +0000639 assert(!V.empty() && "Vectors cannot be empty");
640 return get(VectorType::get(V.front()->getType(), V.size()), V.vec());
Owen Andersonaf7ec972009-07-28 21:19:26 +0000641}
642
Reid Spencer3da59db2006-11-27 01:05:10 +0000643// Utility function for determining if a ConstantExpr is a CastOp or not. This
644// can't be inline because we don't want to #include Instruction.h into
645// Constant.h
646bool ConstantExpr::isCast() const {
647 return Instruction::isCast(getOpcode());
648}
649
Reid Spencer077d0eb2006-12-04 05:19:50 +0000650bool ConstantExpr::isCompare() const {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +0000651 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
Reid Spencer077d0eb2006-12-04 05:19:50 +0000652}
653
Dan Gohmane6992f72009-09-10 23:37:55 +0000654bool ConstantExpr::isGEPWithNoNotionalOverIndexing() const {
655 if (getOpcode() != Instruction::GetElementPtr) return false;
656
657 gep_type_iterator GEPI = gep_type_begin(this), E = gep_type_end(this);
Oscar Fuentesee56c422010-08-02 06:00:15 +0000658 User::const_op_iterator OI = llvm::next(this->op_begin());
Dan Gohmane6992f72009-09-10 23:37:55 +0000659
660 // Skip the first index, as it has no static limit.
661 ++GEPI;
662 ++OI;
663
664 // The remaining indices must be compile-time known integers within the
665 // bounds of the corresponding notional static array types.
666 for (; GEPI != E; ++GEPI, ++OI) {
667 ConstantInt *CI = dyn_cast<ConstantInt>(*OI);
668 if (!CI) return false;
669 if (const ArrayType *ATy = dyn_cast<ArrayType>(*GEPI))
670 if (CI->getValue().getActiveBits() > 64 ||
671 CI->getZExtValue() >= ATy->getNumElements())
672 return false;
673 }
674
675 // All the indices checked out.
676 return true;
677}
678
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000679bool ConstantExpr::hasIndices() const {
680 return getOpcode() == Instruction::ExtractValue ||
681 getOpcode() == Instruction::InsertValue;
682}
683
684const SmallVector<unsigned, 4> &ConstantExpr::getIndices() const {
685 if (const ExtractValueConstantExpr *EVCE =
686 dyn_cast<ExtractValueConstantExpr>(this))
687 return EVCE->Indices;
Dan Gohman1a203572008-06-23 16:39:44 +0000688
689 return cast<InsertValueConstantExpr>(this)->Indices;
Dan Gohman81a0c0b2008-05-31 00:58:22 +0000690}
691
Reid Spencer728b6db2006-12-03 05:48:19 +0000692unsigned ConstantExpr::getPredicate() const {
Nate Begemanac80ade2008-05-12 19:01:56 +0000693 assert(getOpcode() == Instruction::FCmp ||
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +0000694 getOpcode() == Instruction::ICmp);
Chris Lattnerb7daa842007-10-18 16:26:24 +0000695 return ((const CompareConstantExpr*)this)->predicate;
Reid Spencer728b6db2006-12-03 05:48:19 +0000696}
Chris Lattnerf4ba6c72001-10-03 06:12:09 +0000697
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000698/// getWithOperandReplaced - Return a constant expression identical to this
699/// one, but with the specified operand set to the specified value.
Reid Spencer3da59db2006-11-27 01:05:10 +0000700Constant *
701ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000702 assert(OpNo < getNumOperands() && "Operand num is out of range!");
703 assert(Op->getType() == getOperand(OpNo)->getType() &&
704 "Replacing operand with value of different type!");
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000705 if (getOperand(OpNo) == Op)
706 return const_cast<ConstantExpr*>(this);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000707
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000708 Constant *Op0, *Op1, *Op2;
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000709 switch (getOpcode()) {
Reid Spencer3da59db2006-11-27 01:05:10 +0000710 case Instruction::Trunc:
711 case Instruction::ZExt:
712 case Instruction::SExt:
713 case Instruction::FPTrunc:
714 case Instruction::FPExt:
715 case Instruction::UIToFP:
716 case Instruction::SIToFP:
717 case Instruction::FPToUI:
718 case Instruction::FPToSI:
719 case Instruction::PtrToInt:
720 case Instruction::IntToPtr:
721 case Instruction::BitCast:
722 return ConstantExpr::getCast(getOpcode(), Op, getType());
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000723 case Instruction::Select:
724 Op0 = (OpNo == 0) ? Op : getOperand(0);
725 Op1 = (OpNo == 1) ? Op : getOperand(1);
726 Op2 = (OpNo == 2) ? Op : getOperand(2);
727 return ConstantExpr::getSelect(Op0, Op1, Op2);
728 case Instruction::InsertElement:
729 Op0 = (OpNo == 0) ? Op : getOperand(0);
730 Op1 = (OpNo == 1) ? Op : getOperand(1);
731 Op2 = (OpNo == 2) ? Op : getOperand(2);
732 return ConstantExpr::getInsertElement(Op0, Op1, Op2);
733 case Instruction::ExtractElement:
734 Op0 = (OpNo == 0) ? Op : getOperand(0);
735 Op1 = (OpNo == 1) ? Op : getOperand(1);
736 return ConstantExpr::getExtractElement(Op0, Op1);
737 case Instruction::ShuffleVector:
738 Op0 = (OpNo == 0) ? Op : getOperand(0);
739 Op1 = (OpNo == 1) ? Op : getOperand(1);
740 Op2 = (OpNo == 2) ? Op : getOperand(2);
741 return ConstantExpr::getShuffleVector(Op0, Op1, Op2);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000742 case Instruction::GetElementPtr: {
Chris Lattnerf9021ff2007-02-19 20:01:23 +0000743 SmallVector<Constant*, 8> Ops;
Dan Gohman041e2eb2008-05-15 19:50:34 +0000744 Ops.resize(getNumOperands()-1);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000745 for (unsigned i = 1, e = getNumOperands(); i != e; ++i)
Dan Gohman041e2eb2008-05-15 19:50:34 +0000746 Ops[i-1] = getOperand(i);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000747 if (OpNo == 0)
Dan Gohmanf8dbee72009-09-07 23:54:19 +0000748 return cast<GEPOperator>(this)->isInBounds() ?
749 ConstantExpr::getInBoundsGetElementPtr(Op, &Ops[0], Ops.size()) :
750 ConstantExpr::getGetElementPtr(Op, &Ops[0], Ops.size());
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000751 Ops[OpNo-1] = Op;
Dan Gohmanf8dbee72009-09-07 23:54:19 +0000752 return cast<GEPOperator>(this)->isInBounds() ?
Chris Lattnercafe9bb2009-12-29 02:14:09 +0000753 ConstantExpr::getInBoundsGetElementPtr(getOperand(0), &Ops[0],Ops.size()):
Dan Gohmanf8dbee72009-09-07 23:54:19 +0000754 ConstantExpr::getGetElementPtr(getOperand(0), &Ops[0], Ops.size());
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000755 }
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000756 default:
757 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000758 Op0 = (OpNo == 0) ? Op : getOperand(0);
759 Op1 = (OpNo == 1) ? Op : getOperand(1);
Chris Lattnercafe9bb2009-12-29 02:14:09 +0000760 return ConstantExpr::get(getOpcode(), Op0, Op1, SubclassOptionalData);
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000761 }
762}
763
764/// getWithOperands - This returns the current constant expression with the
765/// operands replaced with the specified values. The specified operands must
766/// match count and type with the existing ones.
767Constant *ConstantExpr::
Chris Lattnerf067d582011-02-07 16:40:21 +0000768getWithOperands(Constant *const *Ops, unsigned NumOps) const {
Chris Lattnerb054bfd2008-08-20 22:27:40 +0000769 assert(NumOps == getNumOperands() && "Operand count mismatch!");
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000770 bool AnyChange = false;
Chris Lattnerb054bfd2008-08-20 22:27:40 +0000771 for (unsigned i = 0; i != NumOps; ++i) {
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000772 assert(Ops[i]->getType() == getOperand(i)->getType() &&
773 "Operand type mismatch!");
774 AnyChange |= Ops[i] != getOperand(i);
775 }
776 if (!AnyChange) // No operands changed, return self.
777 return const_cast<ConstantExpr*>(this);
778
779 switch (getOpcode()) {
Reid Spencer3da59db2006-11-27 01:05:10 +0000780 case Instruction::Trunc:
781 case Instruction::ZExt:
782 case Instruction::SExt:
783 case Instruction::FPTrunc:
784 case Instruction::FPExt:
785 case Instruction::UIToFP:
786 case Instruction::SIToFP:
787 case Instruction::FPToUI:
788 case Instruction::FPToSI:
789 case Instruction::PtrToInt:
790 case Instruction::IntToPtr:
791 case Instruction::BitCast:
792 return ConstantExpr::getCast(getOpcode(), Ops[0], getType());
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000793 case Instruction::Select:
794 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]);
795 case Instruction::InsertElement:
796 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]);
797 case Instruction::ExtractElement:
798 return ConstantExpr::getExtractElement(Ops[0], Ops[1]);
799 case Instruction::ShuffleVector:
800 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2]);
Chris Lattnerf9021ff2007-02-19 20:01:23 +0000801 case Instruction::GetElementPtr:
Dan Gohmanf8dbee72009-09-07 23:54:19 +0000802 return cast<GEPOperator>(this)->isInBounds() ?
803 ConstantExpr::getInBoundsGetElementPtr(Ops[0], &Ops[1], NumOps-1) :
804 ConstantExpr::getGetElementPtr(Ops[0], &Ops[1], NumOps-1);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000805 case Instruction::ICmp:
806 case Instruction::FCmp:
807 return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1]);
Chris Lattnerb88a7fb2006-07-14 22:20:01 +0000808 default:
809 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattnercafe9bb2009-12-29 02:14:09 +0000810 return ConstantExpr::get(getOpcode(), Ops[0], Ops[1], SubclassOptionalData);
Chris Lattner1fe8f6b2006-07-14 19:37:40 +0000811 }
812}
813
Chris Lattner00950542001-06-06 20:29:01 +0000814
815//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +0000816// isValueValidForType implementations
817
Reid Spencer9b11d512006-12-19 01:28:19 +0000818bool ConstantInt::isValueValidForType(const Type *Ty, uint64_t Val) {
Reid Spencera54b7cb2007-01-12 07:05:14 +0000819 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
Owen Anderson1d0be152009-08-13 21:58:54 +0000820 if (Ty == Type::getInt1Ty(Ty->getContext()))
Reid Spencera54b7cb2007-01-12 07:05:14 +0000821 return Val == 0 || Val == 1;
Reid Spencer554cec62007-02-05 23:47:56 +0000822 if (NumBits >= 64)
Reid Spencera54b7cb2007-01-12 07:05:14 +0000823 return true; // always true, has to fit in largest type
824 uint64_t Max = (1ll << NumBits) - 1;
825 return Val <= Max;
Reid Spencer9b11d512006-12-19 01:28:19 +0000826}
827
Reid Spencerb83eb642006-10-20 07:07:24 +0000828bool ConstantInt::isValueValidForType(const Type *Ty, int64_t Val) {
Reid Spencera54b7cb2007-01-12 07:05:14 +0000829 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
Owen Anderson1d0be152009-08-13 21:58:54 +0000830 if (Ty == Type::getInt1Ty(Ty->getContext()))
Reid Spencerc1030572007-01-19 21:13:56 +0000831 return Val == 0 || Val == 1 || Val == -1;
Reid Spencer554cec62007-02-05 23:47:56 +0000832 if (NumBits >= 64)
Reid Spencera54b7cb2007-01-12 07:05:14 +0000833 return true; // always true, has to fit in largest type
834 int64_t Min = -(1ll << (NumBits-1));
835 int64_t Max = (1ll << (NumBits-1)) - 1;
836 return (Val >= Min && Val <= Max);
Chris Lattner00950542001-06-06 20:29:01 +0000837}
838
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000839bool ConstantFP::isValueValidForType(const Type *Ty, const APFloat& Val) {
840 // convert modifies in place, so make a copy.
841 APFloat Val2 = APFloat(Val);
Dale Johannesen23a98552008-10-09 23:00:39 +0000842 bool losesInfo;
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000843 switch (Ty->getTypeID()) {
Chris Lattner00950542001-06-06 20:29:01 +0000844 default:
845 return false; // These can't be represented as floating point!
846
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000847 // FIXME rounding mode needs to be more flexible
Dale Johannesen23a98552008-10-09 23:00:39 +0000848 case Type::FloatTyID: {
849 if (&Val2.getSemantics() == &APFloat::IEEEsingle)
850 return true;
851 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
852 return !losesInfo;
853 }
854 case Type::DoubleTyID: {
855 if (&Val2.getSemantics() == &APFloat::IEEEsingle ||
856 &Val2.getSemantics() == &APFloat::IEEEdouble)
857 return true;
858 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
859 return !losesInfo;
860 }
Dale Johannesenebbc95d2007-08-09 22:51:36 +0000861 case Type::X86_FP80TyID:
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000862 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
863 &Val2.getSemantics() == &APFloat::IEEEdouble ||
864 &Val2.getSemantics() == &APFloat::x87DoubleExtended;
Dale Johannesenebbc95d2007-08-09 22:51:36 +0000865 case Type::FP128TyID:
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000866 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
867 &Val2.getSemantics() == &APFloat::IEEEdouble ||
868 &Val2.getSemantics() == &APFloat::IEEEquad;
Dale Johannesena471c2e2007-10-11 18:07:22 +0000869 case Type::PPC_FP128TyID:
870 return &Val2.getSemantics() == &APFloat::IEEEsingle ||
871 &Val2.getSemantics() == &APFloat::IEEEdouble ||
872 &Val2.getSemantics() == &APFloat::PPCDoubleDouble;
Chris Lattner00950542001-06-06 20:29:01 +0000873 }
Chris Lattnerd74ea2b2006-05-24 17:04:05 +0000874}
Chris Lattner37bf6302001-07-20 19:16:02 +0000875
Chris Lattner531daef2001-09-07 16:46:31 +0000876//===----------------------------------------------------------------------===//
Chris Lattner531daef2001-09-07 16:46:31 +0000877// Factory Function Implementation
878
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000879ConstantAggregateZero* ConstantAggregateZero::get(const Type* Ty) {
Chris Lattner61c70e92010-08-28 04:09:24 +0000880 assert((Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()) &&
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000881 "Cannot create an aggregate zero of non-aggregate type!");
882
883 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000884 return pImpl->AggZeroConstants.getOrCreate(Ty, 0);
885}
886
Dan Gohman0f8b53f2009-03-03 02:55:14 +0000887/// destroyConstant - Remove the constant from the constant table...
888///
Owen Anderson04fb7c32009-06-20 00:24:58 +0000889void ConstantAggregateZero::destroyConstant() {
Chris Lattner93604b62010-07-17 06:13:52 +0000890 getRawType()->getContext().pImpl->AggZeroConstants.remove(this);
Chris Lattner40bbeb52004-02-15 05:53:04 +0000891 destroyConstantImpl();
892}
893
Dan Gohman0f8b53f2009-03-03 02:55:14 +0000894/// destroyConstant - Remove the constant from the constant table...
895///
Owen Anderson04fb7c32009-06-20 00:24:58 +0000896void ConstantArray::destroyConstant() {
Chris Lattner93604b62010-07-17 06:13:52 +0000897 getRawType()->getContext().pImpl->ArrayConstants.remove(this);
Chris Lattner02ec5ed2003-05-23 20:03:32 +0000898 destroyConstantImpl();
899}
900
Reid Spencer3d10b0b2007-01-26 07:37:34 +0000901/// isString - This method returns true if the array is an array of i8, and
902/// if the elements of the array are all ConstantInt's.
Chris Lattner13cfdea2004-01-14 17:06:38 +0000903bool ConstantArray::isString() const {
Reid Spencer3d10b0b2007-01-26 07:37:34 +0000904 // Check the element type for i8...
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000905 if (!getType()->getElementType()->isIntegerTy(8))
Chris Lattner13cfdea2004-01-14 17:06:38 +0000906 return false;
907 // Check the elements to make sure they are all integers, not constant
908 // expressions.
909 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
910 if (!isa<ConstantInt>(getOperand(i)))
911 return false;
912 return true;
913}
914
Evan Cheng22c70302006-10-26 19:15:05 +0000915/// isCString - This method returns true if the array is a string (see
Dan Gohman0f8b53f2009-03-03 02:55:14 +0000916/// isString) and it ends in a null byte \\0 and does not contains any other
Evan Cheng22c70302006-10-26 19:15:05 +0000917/// null bytes except its terminator.
Owen Anderson1ca29d32009-07-13 21:27:19 +0000918bool ConstantArray::isCString() const {
Reid Spencer3d10b0b2007-01-26 07:37:34 +0000919 // Check the element type for i8...
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000920 if (!getType()->getElementType()->isIntegerTy(8))
Evan Chengabf63452006-10-26 21:48:03 +0000921 return false;
Owen Anderson1ca29d32009-07-13 21:27:19 +0000922
Evan Chengabf63452006-10-26 21:48:03 +0000923 // Last element must be a null.
Owen Anderson1ca29d32009-07-13 21:27:19 +0000924 if (!getOperand(getNumOperands()-1)->isNullValue())
Evan Chengabf63452006-10-26 21:48:03 +0000925 return false;
926 // Other elements must be non-null integers.
927 for (unsigned i = 0, e = getNumOperands()-1; i != e; ++i) {
928 if (!isa<ConstantInt>(getOperand(i)))
Evan Cheng22c70302006-10-26 19:15:05 +0000929 return false;
Owen Anderson1ca29d32009-07-13 21:27:19 +0000930 if (getOperand(i)->isNullValue())
Evan Chengabf63452006-10-26 21:48:03 +0000931 return false;
932 }
Evan Cheng22c70302006-10-26 19:15:05 +0000933 return true;
934}
935
936
Dan Gohman0f8b53f2009-03-03 02:55:14 +0000937/// getAsString - If the sub-element type of this array is i8
938/// then this method converts the array to an std::string and returns it.
939/// Otherwise, it asserts out.
940///
Chris Lattner93aeea32002-08-26 17:53:56 +0000941std::string ConstantArray::getAsString() const {
Chris Lattner13cfdea2004-01-14 17:06:38 +0000942 assert(isString() && "Not a string!");
Chris Lattner93aeea32002-08-26 17:53:56 +0000943 std::string Result;
Owen Anderson45e39582008-06-24 21:58:29 +0000944 Result.reserve(getNumOperands());
Chris Lattnerc07736a2003-07-23 15:22:26 +0000945 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Owen Andersone4f6ee52008-06-25 01:05:05 +0000946 Result.push_back((char)cast<ConstantInt>(getOperand(i))->getZExtValue());
Chris Lattner93aeea32002-08-26 17:53:56 +0000947 return Result;
948}
949
950
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000951//---- ConstantStruct::get() implementation...
Chris Lattner531daef2001-09-07 16:46:31 +0000952//
Chris Lattnered468e372003-10-05 00:17:43 +0000953
Chris Lattner31f84992003-11-21 20:23:48 +0000954namespace llvm {
Misha Brukmanfd939082005-04-21 23:48:37 +0000955
Chris Lattner531daef2001-09-07 16:46:31 +0000956}
Chris Lattner6a57baa2001-10-03 15:39:36 +0000957
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000958// destroyConstant - Remove the constant from the constant table...
Chris Lattner6a57baa2001-10-03 15:39:36 +0000959//
Owen Anderson04fb7c32009-06-20 00:24:58 +0000960void ConstantStruct::destroyConstant() {
Chris Lattner93604b62010-07-17 06:13:52 +0000961 getRawType()->getContext().pImpl->StructConstants.remove(this);
Chris Lattnerf5ec48d2001-10-13 06:57:33 +0000962 destroyConstantImpl();
963}
Chris Lattner6a57baa2001-10-03 15:39:36 +0000964
Brian Gaeke715c90b2004-08-20 06:00:58 +0000965// destroyConstant - Remove the constant from the constant table...
966//
Owen Anderson04fb7c32009-06-20 00:24:58 +0000967void ConstantVector::destroyConstant() {
Chris Lattner93604b62010-07-17 06:13:52 +0000968 getRawType()->getContext().pImpl->VectorConstants.remove(this);
Brian Gaeke715c90b2004-08-20 06:00:58 +0000969 destroyConstantImpl();
970}
971
Dan Gohmanfa73ea22007-05-24 14:36:04 +0000972/// This function will return true iff every element in this vector constant
Jim Laskeyfa301822007-01-12 22:39:14 +0000973/// is set to all ones.
974/// @returns true iff this constant's emements are all set to all ones.
975/// @brief Determine if the value is all ones.
Reid Spencer9d6565a2007-02-15 02:26:10 +0000976bool ConstantVector::isAllOnesValue() const {
Jim Laskeyfa301822007-01-12 22:39:14 +0000977 // Check out first element.
978 const Constant *Elt = getOperand(0);
979 const ConstantInt *CI = dyn_cast<ConstantInt>(Elt);
980 if (!CI || !CI->isAllOnesValue()) return false;
981 // Then make sure all remaining elements point to the same value.
982 for (unsigned I = 1, E = getNumOperands(); I < E; ++I) {
983 if (getOperand(I) != Elt) return false;
984 }
985 return true;
986}
987
Dan Gohman3b7cf0a2007-10-17 17:51:30 +0000988/// getSplatValue - If this is a splat constant, where all of the
989/// elements have the same value, return that value. Otherwise return null.
Duncan Sands7681c6d2011-02-01 08:39:12 +0000990Constant *ConstantVector::getSplatValue() const {
Dan Gohman3b7cf0a2007-10-17 17:51:30 +0000991 // Check out first element.
992 Constant *Elt = getOperand(0);
993 // Then make sure all remaining elements point to the same value.
994 for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
995 if (getOperand(I) != Elt) return 0;
996 return Elt;
997}
998
Chris Lattner2ee11ec2009-10-28 00:01:44 +0000999//---- ConstantPointerNull::get() implementation.
Chris Lattnerf5ec48d2001-10-13 06:57:33 +00001000//
Chris Lattner02ec5ed2003-05-23 20:03:32 +00001001
Owen Anderson04fb7c32009-06-20 00:24:58 +00001002ConstantPointerNull *ConstantPointerNull::get(const PointerType *Ty) {
Owen Anderson7e3142b2009-07-31 22:45:43 +00001003 return Ty->getContext().pImpl->NullPtrConstants.getOrCreate(Ty, 0);
Chris Lattner6a57baa2001-10-03 15:39:36 +00001004}
1005
Chris Lattner41661fd2002-08-18 00:40:04 +00001006// destroyConstant - Remove the constant from the constant table...
1007//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001008void ConstantPointerNull::destroyConstant() {
Chris Lattner93604b62010-07-17 06:13:52 +00001009 getRawType()->getContext().pImpl->NullPtrConstants.remove(this);
Chris Lattner41661fd2002-08-18 00:40:04 +00001010 destroyConstantImpl();
1011}
1012
1013
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001014//---- UndefValue::get() implementation.
Chris Lattnerb9f18592004-10-16 18:07:16 +00001015//
1016
Owen Anderson04fb7c32009-06-20 00:24:58 +00001017UndefValue *UndefValue::get(const Type *Ty) {
Owen Anderson7e3142b2009-07-31 22:45:43 +00001018 return Ty->getContext().pImpl->UndefValueConstants.getOrCreate(Ty, 0);
Chris Lattnerb9f18592004-10-16 18:07:16 +00001019}
1020
1021// destroyConstant - Remove the constant from the constant table.
1022//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001023void UndefValue::destroyConstant() {
Chris Lattner93604b62010-07-17 06:13:52 +00001024 getRawType()->getContext().pImpl->UndefValueConstants.remove(this);
Chris Lattnerb9f18592004-10-16 18:07:16 +00001025 destroyConstantImpl();
1026}
1027
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001028//---- BlockAddress::get() implementation.
1029//
1030
1031BlockAddress *BlockAddress::get(BasicBlock *BB) {
1032 assert(BB->getParent() != 0 && "Block must have a parent");
1033 return get(BB->getParent(), BB);
1034}
1035
1036BlockAddress *BlockAddress::get(Function *F, BasicBlock *BB) {
1037 BlockAddress *&BA =
1038 F->getContext().pImpl->BlockAddresses[std::make_pair(F, BB)];
1039 if (BA == 0)
1040 BA = new BlockAddress(F, BB);
1041
1042 assert(BA->getFunction() == F && "Basic block moved between functions");
1043 return BA;
1044}
1045
1046BlockAddress::BlockAddress(Function *F, BasicBlock *BB)
1047: Constant(Type::getInt8PtrTy(F->getContext()), Value::BlockAddressVal,
1048 &Op<0>(), 2) {
Chris Lattnerd0ec2352009-11-01 03:03:03 +00001049 setOperand(0, F);
1050 setOperand(1, BB);
Chris Lattnercdfc9402009-11-01 01:27:45 +00001051 BB->AdjustBlockAddressRefCount(1);
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001052}
1053
1054
1055// destroyConstant - Remove the constant from the constant table.
1056//
1057void BlockAddress::destroyConstant() {
Chris Lattner93604b62010-07-17 06:13:52 +00001058 getFunction()->getRawType()->getContext().pImpl
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001059 ->BlockAddresses.erase(std::make_pair(getFunction(), getBasicBlock()));
Chris Lattnercdfc9402009-11-01 01:27:45 +00001060 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001061 destroyConstantImpl();
1062}
1063
1064void BlockAddress::replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U) {
1065 // This could be replacing either the Basic Block or the Function. In either
1066 // case, we have to remove the map entry.
1067 Function *NewF = getFunction();
1068 BasicBlock *NewBB = getBasicBlock();
1069
1070 if (U == &Op<0>())
1071 NewF = cast<Function>(To);
1072 else
1073 NewBB = cast<BasicBlock>(To);
1074
1075 // See if the 'new' entry already exists, if not, just update this in place
1076 // and return early.
1077 BlockAddress *&NewBA =
1078 getContext().pImpl->BlockAddresses[std::make_pair(NewF, NewBB)];
1079 if (NewBA == 0) {
Chris Lattnerd0ec2352009-11-01 03:03:03 +00001080 getBasicBlock()->AdjustBlockAddressRefCount(-1);
1081
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001082 // Remove the old entry, this can't cause the map to rehash (just a
1083 // tombstone will get added).
1084 getContext().pImpl->BlockAddresses.erase(std::make_pair(getFunction(),
1085 getBasicBlock()));
1086 NewBA = this;
Chris Lattnerd0ec2352009-11-01 03:03:03 +00001087 setOperand(0, NewF);
1088 setOperand(1, NewBB);
1089 getBasicBlock()->AdjustBlockAddressRefCount(1);
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001090 return;
1091 }
1092
1093 // Otherwise, I do need to replace this with an existing value.
1094 assert(NewBA != this && "I didn't contain From!");
1095
1096 // Everyone using this now uses the replacement.
1097 uncheckedReplaceAllUsesWith(NewBA);
1098
1099 destroyConstant();
1100}
1101
1102//---- ConstantExpr::get() implementations.
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001103//
Reid Spencer79e21d32006-12-31 05:26:44 +00001104
Reid Spencer3da59db2006-11-27 01:05:10 +00001105/// This is a utility function to handle folding of casts and lookup of the
Duncan Sands66a1a052008-03-30 19:38:55 +00001106/// cast in the ExprConstants map. It is used by the various get* methods below.
Reid Spencer3da59db2006-11-27 01:05:10 +00001107static inline Constant *getFoldedCast(
Owen Anderson04fb7c32009-06-20 00:24:58 +00001108 Instruction::CastOps opc, Constant *C, const Type *Ty) {
Chris Lattner9eacf8a2003-10-07 22:19:19 +00001109 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
Reid Spencer3da59db2006-11-27 01:05:10 +00001110 // Fold a few common cases
Chris Lattnerb29d5962010-02-01 20:48:08 +00001111 if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
Reid Spencer3da59db2006-11-27 01:05:10 +00001112 return FC;
Chris Lattnerd628f6a2003-04-17 19:24:48 +00001113
Owen Andersond03eecd2009-08-04 20:25:11 +00001114 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
1115
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00001116 // Look up the constant in the table first to ensure uniqueness
Chris Lattner9bc02a42003-05-13 21:37:02 +00001117 std::vector<Constant*> argVec(1, C);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001118 ExprMapKeyType Key(opc, argVec);
Owen Anderson3e456ab2009-06-17 18:40:29 +00001119
Owen Andersond03eecd2009-08-04 20:25:11 +00001120 return pImpl->ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001121}
Reid Spencer7858b332006-12-05 19:14:13 +00001122
Owen Anderson04fb7c32009-06-20 00:24:58 +00001123Constant *ConstantExpr::getCast(unsigned oc, Constant *C, const Type *Ty) {
Reid Spencer3da59db2006-11-27 01:05:10 +00001124 Instruction::CastOps opc = Instruction::CastOps(oc);
1125 assert(Instruction::isCast(opc) && "opcode out of range");
1126 assert(C && Ty && "Null arguments to getCast");
Chris Lattner0b68a002010-01-26 21:51:43 +00001127 assert(CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!");
Reid Spencer3da59db2006-11-27 01:05:10 +00001128
1129 switch (opc) {
Chris Lattner0b68a002010-01-26 21:51:43 +00001130 default:
1131 llvm_unreachable("Invalid cast opcode");
1132 break;
1133 case Instruction::Trunc: return getTrunc(C, Ty);
1134 case Instruction::ZExt: return getZExt(C, Ty);
1135 case Instruction::SExt: return getSExt(C, Ty);
1136 case Instruction::FPTrunc: return getFPTrunc(C, Ty);
1137 case Instruction::FPExt: return getFPExtend(C, Ty);
1138 case Instruction::UIToFP: return getUIToFP(C, Ty);
1139 case Instruction::SIToFP: return getSIToFP(C, Ty);
1140 case Instruction::FPToUI: return getFPToUI(C, Ty);
1141 case Instruction::FPToSI: return getFPToSI(C, Ty);
1142 case Instruction::PtrToInt: return getPtrToInt(C, Ty);
1143 case Instruction::IntToPtr: return getIntToPtr(C, Ty);
1144 case Instruction::BitCast: return getBitCast(C, Ty);
Chris Lattnerf5ac6c22005-01-01 15:59:57 +00001145 }
Reid Spencer3da59db2006-11-27 01:05:10 +00001146 return 0;
Reid Spencer7858b332006-12-05 19:14:13 +00001147}
1148
Reid Spencer848414e2006-12-04 20:17:56 +00001149Constant *ConstantExpr::getZExtOrBitCast(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001150 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3b490632010-04-12 22:12:29 +00001151 return getBitCast(C, Ty);
1152 return getZExt(C, Ty);
Reid Spencer848414e2006-12-04 20:17:56 +00001153}
1154
Owen Anderson04fb7c32009-06-20 00:24:58 +00001155Constant *ConstantExpr::getSExtOrBitCast(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001156 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3b490632010-04-12 22:12:29 +00001157 return getBitCast(C, Ty);
1158 return getSExt(C, Ty);
Reid Spencer848414e2006-12-04 20:17:56 +00001159}
1160
1161Constant *ConstantExpr::getTruncOrBitCast(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001162 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3b490632010-04-12 22:12:29 +00001163 return getBitCast(C, Ty);
1164 return getTrunc(C, Ty);
Reid Spencer848414e2006-12-04 20:17:56 +00001165}
1166
Owen Anderson04fb7c32009-06-20 00:24:58 +00001167Constant *ConstantExpr::getPointerCast(Constant *S, const Type *Ty) {
Duncan Sands1df98592010-02-16 11:11:14 +00001168 assert(S->getType()->isPointerTy() && "Invalid cast");
1169 assert((Ty->isIntegerTy() || Ty->isPointerTy()) && "Invalid cast");
Reid Spencerc0459fb2006-12-05 03:25:26 +00001170
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001171 if (Ty->isIntegerTy())
Dan Gohman3b490632010-04-12 22:12:29 +00001172 return getPtrToInt(S, Ty);
1173 return getBitCast(S, Ty);
Reid Spencerc0459fb2006-12-05 03:25:26 +00001174}
1175
Reid Spencer84f3eab2006-12-12 00:51:07 +00001176Constant *ConstantExpr::getIntegerCast(Constant *C, const Type *Ty,
1177 bool isSigned) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001178 assert(C->getType()->isIntOrIntVectorTy() &&
1179 Ty->isIntOrIntVectorTy() && "Invalid cast");
Dan Gohman6de29f82009-06-15 22:12:54 +00001180 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1181 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer84f3eab2006-12-12 00:51:07 +00001182 Instruction::CastOps opcode =
1183 (SrcBits == DstBits ? Instruction::BitCast :
1184 (SrcBits > DstBits ? Instruction::Trunc :
1185 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1186 return getCast(opcode, C, Ty);
1187}
1188
1189Constant *ConstantExpr::getFPCast(Constant *C, const Type *Ty) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001190 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer84f3eab2006-12-12 00:51:07 +00001191 "Invalid cast");
Dan Gohman6de29f82009-06-15 22:12:54 +00001192 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1193 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencerf25212a2006-12-12 05:38:50 +00001194 if (SrcBits == DstBits)
1195 return C; // Avoid a useless cast
Reid Spencer84f3eab2006-12-12 00:51:07 +00001196 Instruction::CastOps opcode =
Jay Foad9afc5272011-01-27 14:44:55 +00001197 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
Reid Spencer84f3eab2006-12-12 00:51:07 +00001198 return getCast(opcode, C, Ty);
1199}
1200
Owen Anderson04fb7c32009-06-20 00:24:58 +00001201Constant *ConstantExpr::getTrunc(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001202#ifndef NDEBUG
1203 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1204 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1205#endif
1206 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001207 assert(C->getType()->isIntOrIntVectorTy() && "Trunc operand must be integer");
1208 assert(Ty->isIntOrIntVectorTy() && "Trunc produces only integral");
Dan Gohman6de29f82009-06-15 22:12:54 +00001209 assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001210 "SrcTy must be larger than DestTy for Trunc!");
1211
Owen Anderson04fb7c32009-06-20 00:24:58 +00001212 return getFoldedCast(Instruction::Trunc, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001213}
1214
Owen Anderson04fb7c32009-06-20 00:24:58 +00001215Constant *ConstantExpr::getSExt(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001216#ifndef NDEBUG
1217 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1218 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1219#endif
1220 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001221 assert(C->getType()->isIntOrIntVectorTy() && "SExt operand must be integral");
1222 assert(Ty->isIntOrIntVectorTy() && "SExt produces only integer");
Dan Gohman6de29f82009-06-15 22:12:54 +00001223 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001224 "SrcTy must be smaller than DestTy for SExt!");
1225
Owen Anderson04fb7c32009-06-20 00:24:58 +00001226 return getFoldedCast(Instruction::SExt, C, Ty);
Chris Lattnerd144f422004-04-04 23:20:30 +00001227}
1228
Owen Anderson04fb7c32009-06-20 00:24:58 +00001229Constant *ConstantExpr::getZExt(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001230#ifndef NDEBUG
1231 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1232 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1233#endif
1234 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001235 assert(C->getType()->isIntOrIntVectorTy() && "ZEXt operand must be integral");
1236 assert(Ty->isIntOrIntVectorTy() && "ZExt produces only integer");
Dan Gohman6de29f82009-06-15 22:12:54 +00001237 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001238 "SrcTy must be smaller than DestTy for ZExt!");
1239
Owen Anderson04fb7c32009-06-20 00:24:58 +00001240 return getFoldedCast(Instruction::ZExt, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001241}
1242
Owen Anderson04fb7c32009-06-20 00:24:58 +00001243Constant *ConstantExpr::getFPTrunc(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001244#ifndef NDEBUG
1245 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1246 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1247#endif
1248 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001249 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman6de29f82009-06-15 22:12:54 +00001250 C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001251 "This is an illegal floating point truncation!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001252 return getFoldedCast(Instruction::FPTrunc, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001253}
1254
Owen Anderson04fb7c32009-06-20 00:24:58 +00001255Constant *ConstantExpr::getFPExtend(Constant *C, const Type *Ty) {
Dan Gohman6de29f82009-06-15 22:12:54 +00001256#ifndef NDEBUG
1257 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1258 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1259#endif
1260 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001261 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman6de29f82009-06-15 22:12:54 +00001262 C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer3da59db2006-11-27 01:05:10 +00001263 "This is an illegal floating point extension!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001264 return getFoldedCast(Instruction::FPExt, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001265}
1266
Owen Anderson04fb7c32009-06-20 00:24:58 +00001267Constant *ConstantExpr::getUIToFP(Constant *C, const Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001268#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001269 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1270 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001271#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001272 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001273 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Nate Begemanb348d182007-11-17 03:58:34 +00001274 "This is an illegal uint to floating point cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001275 return getFoldedCast(Instruction::UIToFP, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001276}
1277
Owen Anderson04fb7c32009-06-20 00:24:58 +00001278Constant *ConstantExpr::getSIToFP(Constant *C, const Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001279#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001280 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1281 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001282#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001283 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001284 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer3da59db2006-11-27 01:05:10 +00001285 "This is an illegal sint to floating point cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001286 return getFoldedCast(Instruction::SIToFP, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001287}
1288
Owen Anderson04fb7c32009-06-20 00:24:58 +00001289Constant *ConstantExpr::getFPToUI(Constant *C, const Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001290#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001291 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1292 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001293#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001294 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001295 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemanb348d182007-11-17 03:58:34 +00001296 "This is an illegal floating point to uint cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001297 return getFoldedCast(Instruction::FPToUI, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001298}
1299
Owen Anderson04fb7c32009-06-20 00:24:58 +00001300Constant *ConstantExpr::getFPToSI(Constant *C, const Type *Ty) {
Devang Patelb6dc9352008-11-03 23:20:04 +00001301#ifndef NDEBUG
Nate Begemanb348d182007-11-17 03:58:34 +00001302 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1303 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Patelb6dc9352008-11-03 23:20:04 +00001304#endif
Nate Begemanb348d182007-11-17 03:58:34 +00001305 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001306 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemanb348d182007-11-17 03:58:34 +00001307 "This is an illegal floating point to sint cast!");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001308 return getFoldedCast(Instruction::FPToSI, C, Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +00001309}
1310
Owen Anderson04fb7c32009-06-20 00:24:58 +00001311Constant *ConstantExpr::getPtrToInt(Constant *C, const Type *DstTy) {
Duncan Sands1df98592010-02-16 11:11:14 +00001312 assert(C->getType()->isPointerTy() && "PtrToInt source must be pointer");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001313 assert(DstTy->isIntegerTy() && "PtrToInt destination must be integral");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001314 return getFoldedCast(Instruction::PtrToInt, C, DstTy);
Reid Spencer3da59db2006-11-27 01:05:10 +00001315}
1316
Owen Anderson04fb7c32009-06-20 00:24:58 +00001317Constant *ConstantExpr::getIntToPtr(Constant *C, const Type *DstTy) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001318 assert(C->getType()->isIntegerTy() && "IntToPtr source must be integral");
Duncan Sands1df98592010-02-16 11:11:14 +00001319 assert(DstTy->isPointerTy() && "IntToPtr destination must be a pointer");
Owen Anderson04fb7c32009-06-20 00:24:58 +00001320 return getFoldedCast(Instruction::IntToPtr, C, DstTy);
Reid Spencer3da59db2006-11-27 01:05:10 +00001321}
1322
Owen Anderson04fb7c32009-06-20 00:24:58 +00001323Constant *ConstantExpr::getBitCast(Constant *C, const Type *DstTy) {
Chris Lattner0b68a002010-01-26 21:51:43 +00001324 assert(CastInst::castIsValid(Instruction::BitCast, C, DstTy) &&
1325 "Invalid constantexpr bitcast!");
Chris Lattner8c7f24a2009-03-21 06:55:54 +00001326
1327 // It is common to ask for a bitcast of a value to its own type, handle this
1328 // speedily.
1329 if (C->getType() == DstTy) return C;
1330
Owen Anderson04fb7c32009-06-20 00:24:58 +00001331 return getFoldedCast(Instruction::BitCast, C, DstTy);
Chris Lattnerd144f422004-04-04 23:20:30 +00001332}
1333
Chris Lattnered468e372003-10-05 00:17:43 +00001334Constant *ConstantExpr::getTy(const Type *ReqTy, unsigned Opcode,
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001335 Constant *C1, Constant *C2,
1336 unsigned Flags) {
Chris Lattnerf31f5832003-05-21 17:49:25 +00001337 // Check the operands for consistency first
Reid Spencer0a783f72006-11-02 01:53:59 +00001338 assert(Opcode >= Instruction::BinaryOpsBegin &&
1339 Opcode < Instruction::BinaryOpsEnd &&
Chris Lattnerf31f5832003-05-21 17:49:25 +00001340 "Invalid opcode in binary constant expression");
1341 assert(C1->getType() == C2->getType() &&
1342 "Operand types in binary constant expression should match");
Chris Lattnered468e372003-10-05 00:17:43 +00001343
Owen Anderson1d0be152009-08-13 21:58:54 +00001344 if (ReqTy == C1->getType() || ReqTy == Type::getInt1Ty(ReqTy->getContext()))
Chris Lattnerb29d5962010-02-01 20:48:08 +00001345 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
Chris Lattnered468e372003-10-05 00:17:43 +00001346 return FC; // Fold a few common cases...
Chris Lattnerd628f6a2003-04-17 19:24:48 +00001347
Chris Lattner9bc02a42003-05-13 21:37:02 +00001348 std::vector<Constant*> argVec(1, C1); argVec.push_back(C2);
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001349 ExprMapKeyType Key(Opcode, argVec, 0, Flags);
Owen Anderson31c36f02009-06-17 20:10:08 +00001350
Owen Andersond03eecd2009-08-04 20:25:11 +00001351 LLVMContextImpl *pImpl = ReqTy->getContext().pImpl;
Owen Andersond03eecd2009-08-04 20:25:11 +00001352 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001353}
1354
Reid Spencere4d87aa2006-12-23 06:05:41 +00001355Constant *ConstantExpr::getCompareTy(unsigned short predicate,
Nate Begemanff795a82008-07-25 17:56:27 +00001356 Constant *C1, Constant *C2) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00001357 switch (predicate) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001358 default: llvm_unreachable("Invalid CmpInst predicate");
Nate Begemanb5557ab2008-07-25 17:35:37 +00001359 case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
1360 case CmpInst::FCMP_OGE: case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE:
1361 case CmpInst::FCMP_ONE: case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO:
1362 case CmpInst::FCMP_UEQ: case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE:
1363 case CmpInst::FCMP_ULT: case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
1364 case CmpInst::FCMP_TRUE:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00001365 return getFCmp(predicate, C1, C2);
1366
Nate Begemanb5557ab2008-07-25 17:35:37 +00001367 case CmpInst::ICMP_EQ: case CmpInst::ICMP_NE: case CmpInst::ICMP_UGT:
1368 case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE:
1369 case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT:
1370 case CmpInst::ICMP_SLE:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00001371 return getICmp(predicate, C1, C2);
Reid Spencere4d87aa2006-12-23 06:05:41 +00001372 }
Reid Spencer67263fe2006-12-04 21:35:24 +00001373}
1374
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001375Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2,
1376 unsigned Flags) {
Chris Lattner91b362b2004-08-17 17:28:46 +00001377#ifndef NDEBUG
1378 switch (Opcode) {
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001379 case Instruction::Add:
Reid Spencer0a783f72006-11-02 01:53:59 +00001380 case Instruction::Sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001381 case Instruction::Mul:
Chris Lattner91b362b2004-08-17 17:28:46 +00001382 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001383 assert(C1->getType()->isIntOrIntVectorTy() &&
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001384 "Tried to create an integer operation on a non-integer type!");
1385 break;
1386 case Instruction::FAdd:
1387 case Instruction::FSub:
1388 case Instruction::FMul:
1389 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001390 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmanae3a0be2009-06-04 22:49:04 +00001391 "Tried to create a floating-point operation on a "
1392 "non-floating-point type!");
Chris Lattner91b362b2004-08-17 17:28:46 +00001393 break;
Reid Spencer1628cec2006-10-26 06:15:43 +00001394 case Instruction::UDiv:
1395 case Instruction::SDiv:
1396 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001397 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer1628cec2006-10-26 06:15:43 +00001398 "Tried to create an arithmetic operation on a non-arithmetic type!");
1399 break;
1400 case Instruction::FDiv:
1401 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001402 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmanf57478f2009-06-15 22:25:12 +00001403 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer1628cec2006-10-26 06:15:43 +00001404 break;
Reid Spencer0a783f72006-11-02 01:53:59 +00001405 case Instruction::URem:
1406 case Instruction::SRem:
1407 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001408 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer0a783f72006-11-02 01:53:59 +00001409 "Tried to create an arithmetic operation on a non-arithmetic type!");
1410 break;
1411 case Instruction::FRem:
1412 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001413 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmanf57478f2009-06-15 22:25:12 +00001414 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer0a783f72006-11-02 01:53:59 +00001415 break;
Chris Lattner91b362b2004-08-17 17:28:46 +00001416 case Instruction::And:
1417 case Instruction::Or:
1418 case Instruction::Xor:
1419 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001420 assert(C1->getType()->isIntOrIntVectorTy() &&
Misha Brukman1bae2912005-01-27 06:46:38 +00001421 "Tried to create a logical operation on a non-integral type!");
Chris Lattner91b362b2004-08-17 17:28:46 +00001422 break;
Chris Lattner91b362b2004-08-17 17:28:46 +00001423 case Instruction::Shl:
Reid Spencer3822ff52006-11-08 06:47:33 +00001424 case Instruction::LShr:
1425 case Instruction::AShr:
Reid Spencer832254e2007-02-02 02:16:23 +00001426 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001427 assert(C1->getType()->isIntOrIntVectorTy() &&
Chris Lattner91b362b2004-08-17 17:28:46 +00001428 "Tried to create a shift operation on a non-integer type!");
1429 break;
1430 default:
1431 break;
1432 }
1433#endif
1434
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001435 return getTy(C1->getType(), Opcode, C1, C2, Flags);
Reid Spencer67263fe2006-12-04 21:35:24 +00001436}
1437
Chris Lattnerf067d582011-02-07 16:40:21 +00001438Constant *ConstantExpr::getSizeOf(const Type* Ty) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001439 // sizeof is implemented as: (i64) gep (Ty*)null, 1
1440 // Note that a non-inbounds gep is used, as null isn't within any object.
Owen Anderson1d0be152009-08-13 21:58:54 +00001441 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001442 Constant *GEP = getGetElementPtr(
Owen Andersona7235ea2009-07-31 20:28:14 +00001443 Constant::getNullValue(PointerType::getUnqual(Ty)), &GEPIdx, 1);
Dan Gohman3b490632010-04-12 22:12:29 +00001444 return getPtrToInt(GEP,
1445 Type::getInt64Ty(Ty->getContext()));
Owen Andersonbaf3c402009-07-29 18:55:55 +00001446}
1447
Chris Lattnerf067d582011-02-07 16:40:21 +00001448Constant *ConstantExpr::getAlignOf(const Type* Ty) {
Dan Gohman0f5efe52010-01-28 02:15:55 +00001449 // alignof is implemented as: (i64) gep ({i1,Ty}*)null, 0, 1
Dan Gohmane2574d32009-08-11 17:57:01 +00001450 // Note that a non-inbounds gep is used, as null isn't within any object.
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001451 const Type *AligningTy = StructType::get(Ty->getContext(),
Dan Gohman0f5efe52010-01-28 02:15:55 +00001452 Type::getInt1Ty(Ty->getContext()), Ty, NULL);
Owen Andersona7235ea2009-07-31 20:28:14 +00001453 Constant *NullPtr = Constant::getNullValue(AligningTy->getPointerTo());
Dan Gohman06ed3e72010-01-28 02:43:22 +00001454 Constant *Zero = ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0);
Owen Anderson1d0be152009-08-13 21:58:54 +00001455 Constant *One = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001456 Constant *Indices[2] = { Zero, One };
1457 Constant *GEP = getGetElementPtr(NullPtr, Indices, 2);
Dan Gohman3b490632010-04-12 22:12:29 +00001458 return getPtrToInt(GEP,
1459 Type::getInt64Ty(Ty->getContext()));
Owen Andersonbaf3c402009-07-29 18:55:55 +00001460}
1461
Chris Lattnerf067d582011-02-07 16:40:21 +00001462Constant *ConstantExpr::getOffsetOf(const StructType* STy, unsigned FieldNo) {
Dan Gohman2544a1d2010-02-01 16:37:38 +00001463 return getOffsetOf(STy, ConstantInt::get(Type::getInt32Ty(STy->getContext()),
1464 FieldNo));
1465}
1466
Chris Lattnerf067d582011-02-07 16:40:21 +00001467Constant *ConstantExpr::getOffsetOf(const Type* Ty, Constant *FieldNo) {
Dan Gohman3778f212009-08-16 21:26:11 +00001468 // offsetof is implemented as: (i64) gep (Ty*)null, 0, FieldNo
1469 // Note that a non-inbounds gep is used, as null isn't within any object.
1470 Constant *GEPIdx[] = {
Dan Gohman2544a1d2010-02-01 16:37:38 +00001471 ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0),
1472 FieldNo
Dan Gohman3778f212009-08-16 21:26:11 +00001473 };
1474 Constant *GEP = getGetElementPtr(
Dan Gohman2544a1d2010-02-01 16:37:38 +00001475 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx, 2);
Dan Gohman3b490632010-04-12 22:12:29 +00001476 return getPtrToInt(GEP,
1477 Type::getInt64Ty(Ty->getContext()));
Dan Gohman3778f212009-08-16 21:26:11 +00001478}
Owen Andersonbaf3c402009-07-29 18:55:55 +00001479
Reid Spencere4d87aa2006-12-23 06:05:41 +00001480Constant *ConstantExpr::getCompare(unsigned short pred,
Reid Spencer67263fe2006-12-04 21:35:24 +00001481 Constant *C1, Constant *C2) {
1482 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Reid Spencere4d87aa2006-12-23 06:05:41 +00001483 return getCompareTy(pred, C1, C2);
Chris Lattnerc3d12f02004-08-04 18:50:09 +00001484}
1485
Chris Lattner08a45cc2004-03-12 05:54:04 +00001486Constant *ConstantExpr::getSelectTy(const Type *ReqTy, Constant *C,
Owen Anderson04fb7c32009-06-20 00:24:58 +00001487 Constant *V1, Constant *V2) {
Chris Lattner9ace0cd2008-12-29 00:16:12 +00001488 assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
Chris Lattner08a45cc2004-03-12 05:54:04 +00001489
1490 if (ReqTy == V1->getType())
Chris Lattnerb29d5962010-02-01 20:48:08 +00001491 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
Chris Lattner08a45cc2004-03-12 05:54:04 +00001492 return SC; // Fold common cases
1493
1494 std::vector<Constant*> argVec(3, C);
1495 argVec[1] = V1;
1496 argVec[2] = V2;
Reid Spencer077d0eb2006-12-04 05:19:50 +00001497 ExprMapKeyType Key(Instruction::Select, argVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001498
Owen Andersond03eecd2009-08-04 20:25:11 +00001499 LLVMContextImpl *pImpl = ReqTy->getContext().pImpl;
Owen Andersond03eecd2009-08-04 20:25:11 +00001500 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Chris Lattner08a45cc2004-03-12 05:54:04 +00001501}
1502
Jay Foad25052d82011-01-14 08:07:43 +00001503template<typename IndexTy>
Chris Lattnered468e372003-10-05 00:17:43 +00001504Constant *ConstantExpr::getGetElementPtrTy(const Type *ReqTy, Constant *C,
Jay Foad25052d82011-01-14 08:07:43 +00001505 IndexTy const *Idxs,
Chris Lattner1f78d512011-02-11 05:34:33 +00001506 unsigned NumIdx, bool InBounds) {
Dan Gohman041e2eb2008-05-15 19:50:34 +00001507 assert(GetElementPtrInst::getIndexedType(C->getType(), Idxs,
1508 Idxs+NumIdx) ==
1509 cast<PointerType>(ReqTy)->getElementType() &&
1510 "GEP indices invalid!");
Chris Lattner2e9bb1a2004-02-16 20:46:13 +00001511
Chris Lattner1f78d512011-02-11 05:34:33 +00001512 if (Constant *FC = ConstantFoldGetElementPtr(C, InBounds, Idxs, NumIdx))
1513 return FC; // Fold a few common cases.
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001514
Duncan Sands1df98592010-02-16 11:11:14 +00001515 assert(C->getType()->isPointerTy() &&
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001516 "Non-pointer type for constant GetElementPtr expression");
1517 // Look up the constant in the table first to ensure uniqueness
1518 std::vector<Constant*> ArgVec;
1519 ArgVec.reserve(NumIdx+1);
1520 ArgVec.push_back(C);
1521 for (unsigned i = 0; i != NumIdx; ++i)
1522 ArgVec.push_back(cast<Constant>(Idxs[i]));
1523 const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec, 0,
Chris Lattner1f78d512011-02-11 05:34:33 +00001524 InBounds ? GEPOperator::IsInBounds : 0);
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001525
1526 LLVMContextImpl *pImpl = ReqTy->getContext().pImpl;
Dan Gohmanf8dbee72009-09-07 23:54:19 +00001527 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
1528}
1529
Jay Foad25052d82011-01-14 08:07:43 +00001530template<typename IndexTy>
1531Constant *ConstantExpr::getGetElementPtrImpl(Constant *C, IndexTy const *Idxs,
Chris Lattner1f78d512011-02-11 05:34:33 +00001532 unsigned NumIdx, bool InBounds) {
Chris Lattnered468e372003-10-05 00:17:43 +00001533 // Get the result type of the getelementptr!
Chris Lattner2b9a5da2007-01-31 04:40:28 +00001534 const Type *Ty =
Dan Gohman041e2eb2008-05-15 19:50:34 +00001535 GetElementPtrInst::getIndexedType(C->getType(), Idxs, Idxs+NumIdx);
Chris Lattnered468e372003-10-05 00:17:43 +00001536 assert(Ty && "GEP indices invalid!");
Christopher Lambfe63fb92007-12-11 08:59:05 +00001537 unsigned As = cast<PointerType>(C->getType())->getAddressSpace();
Chris Lattner1f78d512011-02-11 05:34:33 +00001538 return getGetElementPtrTy(PointerType::get(Ty, As), C, Idxs, NumIdx,InBounds);
Dan Gohman6e7ad952009-09-03 23:34:49 +00001539}
1540
Jay Foad25052d82011-01-14 08:07:43 +00001541Constant *ConstantExpr::getGetElementPtr(Constant *C, Value* const *Idxs,
Chris Lattner1f78d512011-02-11 05:34:33 +00001542 unsigned NumIdx, bool InBounds) {
1543 return getGetElementPtrImpl(C, Idxs, NumIdx, InBounds);
Jay Foad25052d82011-01-14 08:07:43 +00001544}
1545
1546Constant *ConstantExpr::getGetElementPtr(Constant *C, Constant *const *Idxs,
Chris Lattner1f78d512011-02-11 05:34:33 +00001547 unsigned NumIdx, bool InBounds) {
1548 return getGetElementPtrImpl(C, Idxs, NumIdx, InBounds);
Dan Gohman6e7ad952009-09-03 23:34:49 +00001549}
1550
Reid Spencer077d0eb2006-12-04 05:19:50 +00001551Constant *
Nick Lewycky401f3252010-01-21 07:03:21 +00001552ConstantExpr::getICmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spencer077d0eb2006-12-04 05:19:50 +00001553 assert(LHS->getType() == RHS->getType());
1554 assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE &&
1555 pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid ICmp Predicate");
1556
Chris Lattnerb29d5962010-02-01 20:48:08 +00001557 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spencer077d0eb2006-12-04 05:19:50 +00001558 return FC; // Fold a few common cases...
1559
1560 // Look up the constant in the table first to ensure uniqueness
1561 std::vector<Constant*> ArgVec;
1562 ArgVec.push_back(LHS);
1563 ArgVec.push_back(RHS);
Reid Spencer4fa021a2006-12-24 18:42:29 +00001564 // Get the key type with both the opcode and predicate
Reid Spencer077d0eb2006-12-04 05:19:50 +00001565 const ExprMapKeyType Key(Instruction::ICmp, ArgVec, pred);
Owen Anderson31c36f02009-06-17 20:10:08 +00001566
Nick Lewycky401f3252010-01-21 07:03:21 +00001567 const Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1568 if (const VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
1569 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1570
Owen Andersond03eecd2009-08-04 20:25:11 +00001571 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky401f3252010-01-21 07:03:21 +00001572 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001573}
1574
1575Constant *
Nick Lewycky401f3252010-01-21 07:03:21 +00001576ConstantExpr::getFCmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spencer077d0eb2006-12-04 05:19:50 +00001577 assert(LHS->getType() == RHS->getType());
1578 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate");
1579
Chris Lattnerb29d5962010-02-01 20:48:08 +00001580 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spencer077d0eb2006-12-04 05:19:50 +00001581 return FC; // Fold a few common cases...
1582
1583 // Look up the constant in the table first to ensure uniqueness
1584 std::vector<Constant*> ArgVec;
1585 ArgVec.push_back(LHS);
1586 ArgVec.push_back(RHS);
Reid Spencer4fa021a2006-12-24 18:42:29 +00001587 // Get the key type with both the opcode and predicate
Reid Spencer077d0eb2006-12-04 05:19:50 +00001588 const ExprMapKeyType Key(Instruction::FCmp, ArgVec, pred);
Nick Lewycky401f3252010-01-21 07:03:21 +00001589
1590 const Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1591 if (const VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
1592 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1593
Owen Andersond03eecd2009-08-04 20:25:11 +00001594 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky401f3252010-01-21 07:03:21 +00001595 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001596}
1597
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00001598Constant *ConstantExpr::getExtractElementTy(const Type *ReqTy, Constant *Val,
1599 Constant *Idx) {
Chris Lattnerb29d5962010-02-01 20:48:08 +00001600 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
Chris Lattner83738a22009-12-30 20:25:09 +00001601 return FC; // Fold a few common cases.
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00001602 // Look up the constant in the table first to ensure uniqueness
1603 std::vector<Constant*> ArgVec(1, Val);
1604 ArgVec.push_back(Idx);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001605 const ExprMapKeyType Key(Instruction::ExtractElement,ArgVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001606
Owen Andersond03eecd2009-08-04 20:25:11 +00001607 LLVMContextImpl *pImpl = ReqTy->getContext().pImpl;
Owen Andersond03eecd2009-08-04 20:25:11 +00001608 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00001609}
1610
1611Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx) {
Duncan Sands1df98592010-02-16 11:11:14 +00001612 assert(Val->getType()->isVectorTy() &&
Reid Spencerac9dcb92007-02-15 03:39:18 +00001613 "Tried to create extractelement operation on non-vector type!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001614 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer3d10b0b2007-01-26 07:37:34 +00001615 "Extractelement index must be i32 type!");
Reid Spencer9d6565a2007-02-15 02:26:10 +00001616 return getExtractElementTy(cast<VectorType>(Val->getType())->getElementType(),
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00001617 Val, Idx);
1618}
Chris Lattnered468e372003-10-05 00:17:43 +00001619
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001620Constant *ConstantExpr::getInsertElementTy(const Type *ReqTy, Constant *Val,
1621 Constant *Elt, Constant *Idx) {
Chris Lattnerb29d5962010-02-01 20:48:08 +00001622 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
Chris Lattner83738a22009-12-30 20:25:09 +00001623 return FC; // Fold a few common cases.
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001624 // Look up the constant in the table first to ensure uniqueness
1625 std::vector<Constant*> ArgVec(1, Val);
1626 ArgVec.push_back(Elt);
1627 ArgVec.push_back(Idx);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001628 const ExprMapKeyType Key(Instruction::InsertElement,ArgVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001629
Owen Andersond03eecd2009-08-04 20:25:11 +00001630 LLVMContextImpl *pImpl = ReqTy->getContext().pImpl;
Owen Andersond03eecd2009-08-04 20:25:11 +00001631 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001632}
1633
1634Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
1635 Constant *Idx) {
Duncan Sands1df98592010-02-16 11:11:14 +00001636 assert(Val->getType()->isVectorTy() &&
Reid Spencerac9dcb92007-02-15 03:39:18 +00001637 "Tried to create insertelement operation on non-vector type!");
Reid Spencer9d6565a2007-02-15 02:26:10 +00001638 assert(Elt->getType() == cast<VectorType>(Val->getType())->getElementType()
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001639 && "Insertelement types must match!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001640 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer3d10b0b2007-01-26 07:37:34 +00001641 "Insertelement index must be i32 type!");
Gordon Henriksen699609c2008-08-30 15:41:51 +00001642 return getInsertElementTy(Val->getType(), Val, Elt, Idx);
Robert Bocchinoc152f9c2006-01-17 20:07:22 +00001643}
1644
Chris Lattner00f10232006-04-08 01:18:18 +00001645Constant *ConstantExpr::getShuffleVectorTy(const Type *ReqTy, Constant *V1,
1646 Constant *V2, Constant *Mask) {
Chris Lattnerb29d5962010-02-01 20:48:08 +00001647 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
Chris Lattner00f10232006-04-08 01:18:18 +00001648 return FC; // Fold a few common cases...
1649 // Look up the constant in the table first to ensure uniqueness
1650 std::vector<Constant*> ArgVec(1, V1);
1651 ArgVec.push_back(V2);
1652 ArgVec.push_back(Mask);
Reid Spencer077d0eb2006-12-04 05:19:50 +00001653 const ExprMapKeyType Key(Instruction::ShuffleVector,ArgVec);
Owen Anderson31c36f02009-06-17 20:10:08 +00001654
Owen Andersond03eecd2009-08-04 20:25:11 +00001655 LLVMContextImpl *pImpl = ReqTy->getContext().pImpl;
Owen Andersond03eecd2009-08-04 20:25:11 +00001656 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Chris Lattner00f10232006-04-08 01:18:18 +00001657}
1658
1659Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
1660 Constant *Mask) {
1661 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
1662 "Invalid shuffle vector constant expr operands!");
Nate Begeman0f123cf2009-02-12 21:28:33 +00001663
1664 unsigned NElts = cast<VectorType>(Mask->getType())->getNumElements();
1665 const Type *EltTy = cast<VectorType>(V1->getType())->getElementType();
1666 const Type *ShufTy = VectorType::get(EltTy, NElts);
1667 return getShuffleVectorTy(ShufTy, V1, V2, Mask);
Chris Lattner00f10232006-04-08 01:18:18 +00001668}
1669
Dan Gohman041e2eb2008-05-15 19:50:34 +00001670Constant *ConstantExpr::getInsertValueTy(const Type *ReqTy, Constant *Agg,
1671 Constant *Val,
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001672 const unsigned *Idxs, unsigned NumIdx) {
Dan Gohman041e2eb2008-05-15 19:50:34 +00001673 assert(ExtractValueInst::getIndexedType(Agg->getType(), Idxs,
1674 Idxs+NumIdx) == Val->getType() &&
1675 "insertvalue indices invalid!");
1676 assert(Agg->getType() == ReqTy &&
1677 "insertvalue type invalid!");
Dan Gohmane4569942008-05-23 00:36:11 +00001678 assert(Agg->getType()->isFirstClassType() &&
1679 "Non-first-class type for constant InsertValue expression");
Chris Lattnerb29d5962010-02-01 20:48:08 +00001680 Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs, NumIdx);
Dan Gohmane0891602008-07-21 23:30:30 +00001681 assert(FC && "InsertValue constant expr couldn't be folded!");
1682 return FC;
Dan Gohman041e2eb2008-05-15 19:50:34 +00001683}
1684
1685Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001686 const unsigned *IdxList, unsigned NumIdx) {
Dan Gohmane4569942008-05-23 00:36:11 +00001687 assert(Agg->getType()->isFirstClassType() &&
1688 "Tried to create insertelement operation on non-first-class type!");
Dan Gohman041e2eb2008-05-15 19:50:34 +00001689
Dan Gohmane4569942008-05-23 00:36:11 +00001690 const Type *ReqTy = Agg->getType();
Devang Patelb6dc9352008-11-03 23:20:04 +00001691#ifndef NDEBUG
Dan Gohmane4569942008-05-23 00:36:11 +00001692 const Type *ValTy =
Dan Gohman041e2eb2008-05-15 19:50:34 +00001693 ExtractValueInst::getIndexedType(Agg->getType(), IdxList, IdxList+NumIdx);
Devang Patelb6dc9352008-11-03 23:20:04 +00001694#endif
Dan Gohmane4569942008-05-23 00:36:11 +00001695 assert(ValTy == Val->getType() && "insertvalue indices invalid!");
Dan Gohman041e2eb2008-05-15 19:50:34 +00001696 return getInsertValueTy(ReqTy, Agg, Val, IdxList, NumIdx);
1697}
1698
1699Constant *ConstantExpr::getExtractValueTy(const Type *ReqTy, Constant *Agg,
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001700 const unsigned *Idxs, unsigned NumIdx) {
Dan Gohman041e2eb2008-05-15 19:50:34 +00001701 assert(ExtractValueInst::getIndexedType(Agg->getType(), Idxs,
1702 Idxs+NumIdx) == ReqTy &&
1703 "extractvalue indices invalid!");
Dan Gohmane4569942008-05-23 00:36:11 +00001704 assert(Agg->getType()->isFirstClassType() &&
1705 "Non-first-class type for constant extractvalue expression");
Chris Lattnerb29d5962010-02-01 20:48:08 +00001706 Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs, NumIdx);
Dan Gohmane0891602008-07-21 23:30:30 +00001707 assert(FC && "ExtractValue constant expr couldn't be folded!");
1708 return FC;
Dan Gohman041e2eb2008-05-15 19:50:34 +00001709}
1710
1711Constant *ConstantExpr::getExtractValue(Constant *Agg,
Dan Gohman81a0c0b2008-05-31 00:58:22 +00001712 const unsigned *IdxList, unsigned NumIdx) {
Dan Gohmane4569942008-05-23 00:36:11 +00001713 assert(Agg->getType()->isFirstClassType() &&
1714 "Tried to create extractelement operation on non-first-class type!");
Dan Gohman041e2eb2008-05-15 19:50:34 +00001715
1716 const Type *ReqTy =
1717 ExtractValueInst::getIndexedType(Agg->getType(), IdxList, IdxList+NumIdx);
1718 assert(ReqTy && "extractvalue indices invalid!");
1719 return getExtractValueTy(ReqTy, Agg, IdxList, NumIdx);
1720}
1721
Chris Lattner81baf142011-02-10 07:01:55 +00001722Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001723 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Andersonbaf3c402009-07-29 18:55:55 +00001724 "Cannot NEG a nonintegral value!");
Chris Lattner81baf142011-02-10 07:01:55 +00001725 return getSub(ConstantFP::getZeroValueForNegation(C->getType()),
1726 C, HasNUW, HasNSW);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001727}
1728
Chris Lattnerf067d582011-02-07 16:40:21 +00001729Constant *ConstantExpr::getFNeg(Constant *C) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001730 assert(C->getType()->isFPOrFPVectorTy() &&
Owen Andersonbaf3c402009-07-29 18:55:55 +00001731 "Cannot FNEG a non-floating-point value!");
Chris Lattner81baf142011-02-10 07:01:55 +00001732 return getFSub(ConstantFP::getZeroValueForNegation(C->getType()), C);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001733}
1734
Chris Lattnerf067d582011-02-07 16:40:21 +00001735Constant *ConstantExpr::getNot(Constant *C) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001736 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Andersonbaf3c402009-07-29 18:55:55 +00001737 "Cannot NOT a nonintegral value!");
Owen Andersona7235ea2009-07-31 20:28:14 +00001738 return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType()));
Owen Andersonbaf3c402009-07-29 18:55:55 +00001739}
1740
Chris Lattner81baf142011-02-10 07:01:55 +00001741Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2,
1742 bool HasNUW, bool HasNSW) {
1743 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1744 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1745 return get(Instruction::Add, C1, C2, Flags);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001746}
1747
Chris Lattnerf067d582011-02-07 16:40:21 +00001748Constant *ConstantExpr::getFAdd(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001749 return get(Instruction::FAdd, C1, C2);
1750}
1751
Chris Lattner81baf142011-02-10 07:01:55 +00001752Constant *ConstantExpr::getSub(Constant *C1, Constant *C2,
1753 bool HasNUW, bool HasNSW) {
1754 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1755 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1756 return get(Instruction::Sub, C1, C2, Flags);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001757}
1758
Chris Lattnerf067d582011-02-07 16:40:21 +00001759Constant *ConstantExpr::getFSub(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001760 return get(Instruction::FSub, C1, C2);
1761}
1762
Chris Lattner81baf142011-02-10 07:01:55 +00001763Constant *ConstantExpr::getMul(Constant *C1, Constant *C2,
1764 bool HasNUW, bool HasNSW) {
1765 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1766 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1767 return get(Instruction::Mul, C1, C2, Flags);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001768}
1769
Chris Lattnerf067d582011-02-07 16:40:21 +00001770Constant *ConstantExpr::getFMul(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001771 return get(Instruction::FMul, C1, C2);
1772}
1773
Chris Lattner74f5c5a2011-02-09 16:43:07 +00001774Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2, bool isExact) {
1775 return get(Instruction::UDiv, C1, C2,
1776 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001777}
1778
Chris Lattner74f5c5a2011-02-09 16:43:07 +00001779Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2, bool isExact) {
1780 return get(Instruction::SDiv, C1, C2,
1781 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001782}
1783
Chris Lattnerf067d582011-02-07 16:40:21 +00001784Constant *ConstantExpr::getFDiv(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001785 return get(Instruction::FDiv, C1, C2);
1786}
1787
Chris Lattnerf067d582011-02-07 16:40:21 +00001788Constant *ConstantExpr::getURem(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001789 return get(Instruction::URem, C1, C2);
1790}
1791
Chris Lattnerf067d582011-02-07 16:40:21 +00001792Constant *ConstantExpr::getSRem(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001793 return get(Instruction::SRem, C1, C2);
1794}
1795
Chris Lattnerf067d582011-02-07 16:40:21 +00001796Constant *ConstantExpr::getFRem(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001797 return get(Instruction::FRem, C1, C2);
1798}
1799
Chris Lattnerf067d582011-02-07 16:40:21 +00001800Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001801 return get(Instruction::And, C1, C2);
1802}
1803
Chris Lattnerf067d582011-02-07 16:40:21 +00001804Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001805 return get(Instruction::Or, C1, C2);
1806}
1807
Chris Lattnerf067d582011-02-07 16:40:21 +00001808Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001809 return get(Instruction::Xor, C1, C2);
1810}
1811
Chris Lattner81baf142011-02-10 07:01:55 +00001812Constant *ConstantExpr::getShl(Constant *C1, Constant *C2,
1813 bool HasNUW, bool HasNSW) {
1814 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1815 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1816 return get(Instruction::Shl, C1, C2, Flags);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001817}
1818
Chris Lattner74f5c5a2011-02-09 16:43:07 +00001819Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2, bool isExact) {
1820 return get(Instruction::LShr, C1, C2,
1821 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001822}
1823
Chris Lattner74f5c5a2011-02-09 16:43:07 +00001824Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2, bool isExact) {
1825 return get(Instruction::AShr, C1, C2,
1826 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Andersonbaf3c402009-07-29 18:55:55 +00001827}
1828
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00001829// destroyConstant - Remove the constant from the constant table...
1830//
Owen Anderson04fb7c32009-06-20 00:24:58 +00001831void ConstantExpr::destroyConstant() {
Chris Lattner93604b62010-07-17 06:13:52 +00001832 getRawType()->getContext().pImpl->ExprConstants.remove(this);
Vikram S. Adved0b1bb02002-07-15 18:19:33 +00001833 destroyConstantImpl();
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001834}
1835
Chris Lattnerc188eeb2002-07-30 18:54:25 +00001836const char *ConstantExpr::getOpcodeName() const {
1837 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve345e0cf2002-07-14 23:13:17 +00001838}
Reid Spencer1c9c8e62004-07-17 23:48:33 +00001839
Chris Lattner04e3b1e2010-03-30 20:48:48 +00001840
1841
1842GetElementPtrConstantExpr::
1843GetElementPtrConstantExpr(Constant *C, const std::vector<Constant*> &IdxList,
1844 const Type *DestTy)
1845 : ConstantExpr(DestTy, Instruction::GetElementPtr,
1846 OperandTraits<GetElementPtrConstantExpr>::op_end(this)
1847 - (IdxList.size()+1), IdxList.size()+1) {
1848 OperandList[0] = C;
1849 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
1850 OperandList[i+1] = IdxList[i];
1851}
1852
1853
Chris Lattner5cbade92005-10-03 21:58:36 +00001854//===----------------------------------------------------------------------===//
1855// replaceUsesOfWithOnConstant implementations
1856
Chris Lattner54984052007-08-21 00:55:23 +00001857/// replaceUsesOfWithOnConstant - Update this constant array to change uses of
1858/// 'From' to be uses of 'To'. This must update the uniquing data structures
1859/// etc.
1860///
1861/// Note that we intentionally replace all uses of From with To here. Consider
1862/// a large array that uses 'From' 1000 times. By handling this case all here,
1863/// ConstantArray::replaceUsesOfWithOnConstant is only invoked once, and that
1864/// single invocation handles all 1000 uses. Handling them one at a time would
1865/// work, but would be really slow because it would have to unique each updated
1866/// array instance.
Chris Lattner2ee11ec2009-10-28 00:01:44 +00001867///
Chris Lattner5cbade92005-10-03 21:58:36 +00001868void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00001869 Use *U) {
Owen Anderson1fd70962009-07-28 18:32:17 +00001870 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
1871 Constant *ToC = cast<Constant>(To);
1872
Chris Lattner93604b62010-07-17 06:13:52 +00001873 LLVMContextImpl *pImpl = getRawType()->getContext().pImpl;
Owen Anderson1fd70962009-07-28 18:32:17 +00001874
Dan Gohmane3394d42009-09-15 15:58:07 +00001875 std::pair<LLVMContextImpl::ArrayConstantsTy::MapKey, ConstantArray*> Lookup;
Chris Lattner93604b62010-07-17 06:13:52 +00001876 Lookup.first.first = cast<ArrayType>(getRawType());
Owen Anderson1fd70962009-07-28 18:32:17 +00001877 Lookup.second = this;
1878
1879 std::vector<Constant*> &Values = Lookup.first.second;
1880 Values.reserve(getNumOperands()); // Build replacement array.
1881
1882 // Fill values with the modified operands of the constant array. Also,
1883 // compute whether this turns into an all-zeros array.
1884 bool isAllZeros = false;
1885 unsigned NumUpdated = 0;
1886 if (!ToC->isNullValue()) {
1887 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
1888 Constant *Val = cast<Constant>(O->get());
1889 if (Val == From) {
1890 Val = ToC;
1891 ++NumUpdated;
1892 }
1893 Values.push_back(Val);
1894 }
1895 } else {
1896 isAllZeros = true;
1897 for (Use *O = OperandList, *E = OperandList+getNumOperands();O != E; ++O) {
1898 Constant *Val = cast<Constant>(O->get());
1899 if (Val == From) {
1900 Val = ToC;
1901 ++NumUpdated;
1902 }
1903 Values.push_back(Val);
1904 if (isAllZeros) isAllZeros = Val->isNullValue();
1905 }
1906 }
1907
1908 Constant *Replacement = 0;
1909 if (isAllZeros) {
Chris Lattner93604b62010-07-17 06:13:52 +00001910 Replacement = ConstantAggregateZero::get(getRawType());
Owen Anderson1fd70962009-07-28 18:32:17 +00001911 } else {
1912 // Check to see if we have this array type already.
Owen Anderson1fd70962009-07-28 18:32:17 +00001913 bool Exists;
1914 LLVMContextImpl::ArrayConstantsTy::MapTy::iterator I =
1915 pImpl->ArrayConstants.InsertOrGetItem(Lookup, Exists);
1916
1917 if (Exists) {
Devang Patel5f4ac842009-09-03 01:39:20 +00001918 Replacement = I->second;
Owen Anderson1fd70962009-07-28 18:32:17 +00001919 } else {
1920 // Okay, the new shape doesn't exist in the system yet. Instead of
1921 // creating a new constant array, inserting it, replaceallusesof'ing the
1922 // old with the new, then deleting the old... just update the current one
1923 // in place!
1924 pImpl->ArrayConstants.MoveConstantToNewSlot(this, I);
1925
1926 // Update to the new value. Optimize for the case when we have a single
1927 // operand that we're changing, but handle bulk updates efficiently.
1928 if (NumUpdated == 1) {
1929 unsigned OperandToUpdate = U - OperandList;
1930 assert(getOperand(OperandToUpdate) == From &&
1931 "ReplaceAllUsesWith broken!");
1932 setOperand(OperandToUpdate, ToC);
1933 } else {
1934 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1935 if (getOperand(i) == From)
1936 setOperand(i, ToC);
1937 }
1938 return;
1939 }
1940 }
Chris Lattnercea141f2005-10-03 22:51:37 +00001941
1942 // Otherwise, I do need to replace this with an existing value.
Chris Lattner5cbade92005-10-03 21:58:36 +00001943 assert(Replacement != this && "I didn't contain From!");
1944
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00001945 // Everyone using this now uses the replacement.
1946 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattner5cbade92005-10-03 21:58:36 +00001947
1948 // Delete the old constant!
1949 destroyConstant();
1950}
1951
1952void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00001953 Use *U) {
Owen Anderson8fa33382009-07-27 22:29:26 +00001954 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
1955 Constant *ToC = cast<Constant>(To);
1956
1957 unsigned OperandToUpdate = U-OperandList;
1958 assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!");
1959
Dan Gohmane3394d42009-09-15 15:58:07 +00001960 std::pair<LLVMContextImpl::StructConstantsTy::MapKey, ConstantStruct*> Lookup;
Chris Lattner93604b62010-07-17 06:13:52 +00001961 Lookup.first.first = cast<StructType>(getRawType());
Owen Anderson8fa33382009-07-27 22:29:26 +00001962 Lookup.second = this;
1963 std::vector<Constant*> &Values = Lookup.first.second;
1964 Values.reserve(getNumOperands()); // Build replacement struct.
1965
1966
1967 // Fill values with the modified operands of the constant struct. Also,
1968 // compute whether this turns into an all-zeros struct.
1969 bool isAllZeros = false;
1970 if (!ToC->isNullValue()) {
1971 for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O)
1972 Values.push_back(cast<Constant>(O->get()));
1973 } else {
1974 isAllZeros = true;
1975 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
1976 Constant *Val = cast<Constant>(O->get());
1977 Values.push_back(Val);
1978 if (isAllZeros) isAllZeros = Val->isNullValue();
1979 }
1980 }
1981 Values[OperandToUpdate] = ToC;
1982
Chris Lattner93604b62010-07-17 06:13:52 +00001983 LLVMContextImpl *pImpl = getRawType()->getContext().pImpl;
Owen Anderson8fa33382009-07-27 22:29:26 +00001984
1985 Constant *Replacement = 0;
1986 if (isAllZeros) {
Chris Lattner93604b62010-07-17 06:13:52 +00001987 Replacement = ConstantAggregateZero::get(getRawType());
Owen Anderson8fa33382009-07-27 22:29:26 +00001988 } else {
Chris Lattner93604b62010-07-17 06:13:52 +00001989 // Check to see if we have this struct type already.
Owen Anderson8fa33382009-07-27 22:29:26 +00001990 bool Exists;
1991 LLVMContextImpl::StructConstantsTy::MapTy::iterator I =
1992 pImpl->StructConstants.InsertOrGetItem(Lookup, Exists);
1993
1994 if (Exists) {
Devang Patel5f4ac842009-09-03 01:39:20 +00001995 Replacement = I->second;
Owen Anderson8fa33382009-07-27 22:29:26 +00001996 } else {
1997 // Okay, the new shape doesn't exist in the system yet. Instead of
1998 // creating a new constant struct, inserting it, replaceallusesof'ing the
1999 // old with the new, then deleting the old... just update the current one
2000 // in place!
2001 pImpl->StructConstants.MoveConstantToNewSlot(this, I);
2002
2003 // Update to the new value.
2004 setOperand(OperandToUpdate, ToC);
2005 return;
2006 }
2007 }
2008
2009 assert(Replacement != this && "I didn't contain From!");
Chris Lattner5cbade92005-10-03 21:58:36 +00002010
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002011 // Everyone using this now uses the replacement.
2012 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattner5cbade92005-10-03 21:58:36 +00002013
2014 // Delete the old constant!
2015 destroyConstant();
2016}
2017
Reid Spencer9d6565a2007-02-15 02:26:10 +00002018void ConstantVector::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002019 Use *U) {
Chris Lattner5cbade92005-10-03 21:58:36 +00002020 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2021
2022 std::vector<Constant*> Values;
2023 Values.reserve(getNumOperands()); // Build replacement array...
2024 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2025 Constant *Val = getOperand(i);
2026 if (Val == From) Val = cast<Constant>(To);
2027 Values.push_back(Val);
2028 }
2029
Chris Lattner93604b62010-07-17 06:13:52 +00002030 Constant *Replacement = get(cast<VectorType>(getRawType()), Values);
Chris Lattner5cbade92005-10-03 21:58:36 +00002031 assert(Replacement != this && "I didn't contain From!");
2032
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002033 // Everyone using this now uses the replacement.
2034 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattner5cbade92005-10-03 21:58:36 +00002035
2036 // Delete the old constant!
2037 destroyConstant();
2038}
2039
2040void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002041 Use *U) {
Chris Lattner5cbade92005-10-03 21:58:36 +00002042 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
2043 Constant *To = cast<Constant>(ToV);
2044
2045 Constant *Replacement = 0;
2046 if (getOpcode() == Instruction::GetElementPtr) {
Chris Lattnerf9021ff2007-02-19 20:01:23 +00002047 SmallVector<Constant*, 8> Indices;
Chris Lattner5cbade92005-10-03 21:58:36 +00002048 Constant *Pointer = getOperand(0);
2049 Indices.reserve(getNumOperands()-1);
2050 if (Pointer == From) Pointer = To;
2051
2052 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
2053 Constant *Val = getOperand(i);
2054 if (Val == From) Val = To;
2055 Indices.push_back(Val);
2056 }
Chris Lattnerf9021ff2007-02-19 20:01:23 +00002057 Replacement = ConstantExpr::getGetElementPtr(Pointer,
Chris Lattner33a8f332011-02-11 05:37:21 +00002058 &Indices[0], Indices.size(),
2059 cast<GEPOperator>(this)->isInBounds());
Dan Gohman041e2eb2008-05-15 19:50:34 +00002060 } else if (getOpcode() == Instruction::ExtractValue) {
Dan Gohman041e2eb2008-05-15 19:50:34 +00002061 Constant *Agg = getOperand(0);
Dan Gohman041e2eb2008-05-15 19:50:34 +00002062 if (Agg == From) Agg = To;
2063
Dan Gohman81a0c0b2008-05-31 00:58:22 +00002064 const SmallVector<unsigned, 4> &Indices = getIndices();
Dan Gohman041e2eb2008-05-15 19:50:34 +00002065 Replacement = ConstantExpr::getExtractValue(Agg,
2066 &Indices[0], Indices.size());
2067 } else if (getOpcode() == Instruction::InsertValue) {
Dan Gohman041e2eb2008-05-15 19:50:34 +00002068 Constant *Agg = getOperand(0);
2069 Constant *Val = getOperand(1);
Dan Gohman041e2eb2008-05-15 19:50:34 +00002070 if (Agg == From) Agg = To;
2071 if (Val == From) Val = To;
2072
Dan Gohman81a0c0b2008-05-31 00:58:22 +00002073 const SmallVector<unsigned, 4> &Indices = getIndices();
Dan Gohman041e2eb2008-05-15 19:50:34 +00002074 Replacement = ConstantExpr::getInsertValue(Agg, Val,
2075 &Indices[0], Indices.size());
Reid Spencer3da59db2006-11-27 01:05:10 +00002076 } else if (isCast()) {
Chris Lattner5cbade92005-10-03 21:58:36 +00002077 assert(getOperand(0) == From && "Cast only has one use!");
Chris Lattner93604b62010-07-17 06:13:52 +00002078 Replacement = ConstantExpr::getCast(getOpcode(), To, getRawType());
Chris Lattner5cbade92005-10-03 21:58:36 +00002079 } else if (getOpcode() == Instruction::Select) {
2080 Constant *C1 = getOperand(0);
2081 Constant *C2 = getOperand(1);
2082 Constant *C3 = getOperand(2);
2083 if (C1 == From) C1 = To;
2084 if (C2 == From) C2 = To;
2085 if (C3 == From) C3 = To;
2086 Replacement = ConstantExpr::getSelect(C1, C2, C3);
Robert Bocchinob52ee7f2006-01-10 19:05:34 +00002087 } else if (getOpcode() == Instruction::ExtractElement) {
2088 Constant *C1 = getOperand(0);
2089 Constant *C2 = getOperand(1);
2090 if (C1 == From) C1 = To;
2091 if (C2 == From) C2 = To;
2092 Replacement = ConstantExpr::getExtractElement(C1, C2);
Chris Lattner42b55802006-04-08 05:09:48 +00002093 } else if (getOpcode() == Instruction::InsertElement) {
2094 Constant *C1 = getOperand(0);
2095 Constant *C2 = getOperand(1);
2096 Constant *C3 = getOperand(1);
2097 if (C1 == From) C1 = To;
2098 if (C2 == From) C2 = To;
2099 if (C3 == From) C3 = To;
2100 Replacement = ConstantExpr::getInsertElement(C1, C2, C3);
2101 } else if (getOpcode() == Instruction::ShuffleVector) {
2102 Constant *C1 = getOperand(0);
2103 Constant *C2 = getOperand(1);
2104 Constant *C3 = getOperand(2);
2105 if (C1 == From) C1 = To;
2106 if (C2 == From) C2 = To;
2107 if (C3 == From) C3 = To;
2108 Replacement = ConstantExpr::getShuffleVector(C1, C2, C3);
Reid Spencer077d0eb2006-12-04 05:19:50 +00002109 } else if (isCompare()) {
2110 Constant *C1 = getOperand(0);
2111 Constant *C2 = getOperand(1);
2112 if (C1 == From) C1 = To;
2113 if (C2 == From) C2 = To;
2114 if (getOpcode() == Instruction::ICmp)
2115 Replacement = ConstantExpr::getICmp(getPredicate(), C1, C2);
Chris Lattnerbbedb0e2008-07-14 05:17:31 +00002116 else {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002117 assert(getOpcode() == Instruction::FCmp);
2118 Replacement = ConstantExpr::getFCmp(getPredicate(), C1, C2);
Chris Lattnerbbedb0e2008-07-14 05:17:31 +00002119 }
Chris Lattner5cbade92005-10-03 21:58:36 +00002120 } else if (getNumOperands() == 2) {
2121 Constant *C1 = getOperand(0);
2122 Constant *C2 = getOperand(1);
2123 if (C1 == From) C1 = To;
2124 if (C2 == From) C2 = To;
Chris Lattnercafe9bb2009-12-29 02:14:09 +00002125 Replacement = ConstantExpr::get(getOpcode(), C1, C2, SubclassOptionalData);
Chris Lattner5cbade92005-10-03 21:58:36 +00002126 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +00002127 llvm_unreachable("Unknown ConstantExpr type!");
Chris Lattner5cbade92005-10-03 21:58:36 +00002128 return;
2129 }
2130
2131 assert(Replacement != this && "I didn't contain From!");
2132
Chris Lattnerd0ff1ad2005-10-04 18:13:04 +00002133 // Everyone using this now uses the replacement.
2134 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattner5cbade92005-10-03 21:58:36 +00002135
2136 // Delete the old constant!
2137 destroyConstant();
Matthijs Kooijman10b9de62008-07-03 07:46:41 +00002138}