blob: a4e21e16b3fcfb31f2e9774656738f34cf4eb0f6 [file] [log] [blame]
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001//===-- Constants.cpp - Implement Constant nodes --------------------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00009//
Chris Lattnere17322b2011-02-07 20:03:14 +000010// This file implements the Constant* classes.
Chris Lattner2f7c9632001-06-06 20:29:01 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattnerca142372002-04-28 19:55:58 +000014#include "llvm/Constants.h"
Chris Lattner78683a72009-08-23 04:02:03 +000015#include "LLVMContextImpl.h"
Chris Lattner33e93b82007-02-27 03:05:06 +000016#include "ConstantFold.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000017#include "llvm/DerivedTypes.h"
Reid Spencer1ebe1ab2004-07-17 23:48:33 +000018#include "llvm/GlobalValue.h"
Misha Brukman63b38bd2004-07-29 17:30:56 +000019#include "llvm/Instructions.h"
Chris Lattnerd7a73302001-10-13 06:57:33 +000020#include "llvm/Module.h"
Dan Gohman7d82e132009-07-18 01:49:22 +000021#include "llvm/Operator.h"
Nick Lewycky49f89192009-04-04 07:22:01 +000022#include "llvm/ADT/FoldingSet.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000023#include "llvm/ADT/StringExtras.h"
Nick Lewycky49f89192009-04-04 07:22:01 +000024#include "llvm/ADT/StringMap.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000025#include "llvm/Support/Compiler.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000026#include "llvm/Support/Debug.h"
Torok Edwinccb29cd2009-07-11 13:10:19 +000027#include "llvm/Support/ErrorHandling.h"
Chris Lattner69edc982006-09-28 00:35:06 +000028#include "llvm/Support/ManagedStatic.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000029#include "llvm/Support/MathExtras.h"
Chris Lattner78683a72009-08-23 04:02:03 +000030#include "llvm/Support/raw_ostream.h"
Dan Gohman7190d482009-09-10 23:37:55 +000031#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattnera80bf0b2007-02-20 06:39:57 +000032#include "llvm/ADT/DenseMap.h"
Chris Lattnerb5d70302007-02-19 20:01:23 +000033#include "llvm/ADT/SmallVector.h"
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000034#include "llvm/ADT/STLExtras.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000035#include <algorithm>
Talin3a0a30d2011-02-28 23:53:27 +000036#include <cstdarg>
Chris Lattner189d19f2003-11-21 20:23:48 +000037using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000038
Chris Lattner2f7c9632001-06-06 20:29:01 +000039//===----------------------------------------------------------------------===//
Chris Lattner3462ae32001-12-03 22:26:30 +000040// Constant Class
Chris Lattner2f7c9632001-06-06 20:29:01 +000041//===----------------------------------------------------------------------===//
42
David Blaikiea379b1812011-12-20 02:50:00 +000043void Constant::anchor() { }
44
Chris Lattnerac5fb562011-07-15 05:58:04 +000045bool Constant::isNegativeZeroValue() const {
46 // Floating point values have an explicit -0.0 value.
47 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
48 return CFP->isZero() && CFP->isNegative();
Galina Kistanovafc259902012-07-13 01:25:27 +000049
Chris Lattnerac5fb562011-07-15 05:58:04 +000050 // Otherwise, just use +0.0.
51 return isNullValue();
52}
53
Chris Lattnerbe6610c2011-07-15 06:14:08 +000054bool Constant::isNullValue() const {
55 // 0 is null.
56 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
57 return CI->isZero();
Galina Kistanovafc259902012-07-13 01:25:27 +000058
Chris Lattnerbe6610c2011-07-15 06:14:08 +000059 // +0.0 is null.
60 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
61 return CFP->isZero() && !CFP->isNegative();
62
63 // constant zero is zero for aggregates and cpnull is null for pointers.
64 return isa<ConstantAggregateZero>(this) || isa<ConstantPointerNull>(this);
65}
66
Nadav Rotem365af6f2011-08-24 20:18:38 +000067bool Constant::isAllOnesValue() const {
68 // Check for -1 integers
69 if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
70 return CI->isMinusOne();
71
72 // Check for FP which are bitcasted from -1 integers
73 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
74 return CFP->getValueAPF().bitcastToAPInt().isAllOnesValue();
75
Benjamin Kramer42d098e2011-11-14 19:12:20 +000076 // Check for constant vectors which are splats of -1 values.
Nadav Rotem365af6f2011-08-24 20:18:38 +000077 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
Benjamin Kramer42d098e2011-11-14 19:12:20 +000078 if (Constant *Splat = CV->getSplatValue())
79 return Splat->isAllOnesValue();
Nadav Rotem365af6f2011-08-24 20:18:38 +000080
Chris Lattnerf14a67f2012-01-26 02:31:22 +000081 // Check for constant vectors which are splats of -1 values.
82 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
83 if (Constant *Splat = CV->getSplatValue())
84 return Splat->isAllOnesValue();
85
Nadav Rotem365af6f2011-08-24 20:18:38 +000086 return false;
87}
Benjamin Kramer42d098e2011-11-14 19:12:20 +000088
Owen Anderson5a1acd92009-07-31 20:28:14 +000089// Constructor to create a '0' constant of arbitrary type...
Chris Lattner229907c2011-07-18 04:54:35 +000090Constant *Constant::getNullValue(Type *Ty) {
Owen Anderson5a1acd92009-07-31 20:28:14 +000091 switch (Ty->getTypeID()) {
92 case Type::IntegerTyID:
93 return ConstantInt::get(Ty, 0);
Dan Gohman518cda42011-12-17 00:04:22 +000094 case Type::HalfTyID:
95 return ConstantFP::get(Ty->getContext(),
96 APFloat::getZero(APFloat::IEEEhalf));
Owen Anderson5a1acd92009-07-31 20:28:14 +000097 case Type::FloatTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +000098 return ConstantFP::get(Ty->getContext(),
99 APFloat::getZero(APFloat::IEEEsingle));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000100 case Type::DoubleTyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000101 return ConstantFP::get(Ty->getContext(),
102 APFloat::getZero(APFloat::IEEEdouble));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000103 case Type::X86_FP80TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000104 return ConstantFP::get(Ty->getContext(),
105 APFloat::getZero(APFloat::x87DoubleExtended));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000106 case Type::FP128TyID:
107 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000108 APFloat::getZero(APFloat::IEEEquad));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000109 case Type::PPC_FP128TyID:
Benjamin Kramer8ceebfa2010-12-04 14:22:24 +0000110 return ConstantFP::get(Ty->getContext(),
Benjamin Kramer6f88fcb2010-12-04 14:43:08 +0000111 APFloat(APInt::getNullValue(128)));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000112 case Type::PointerTyID:
113 return ConstantPointerNull::get(cast<PointerType>(Ty));
114 case Type::StructTyID:
115 case Type::ArrayTyID:
116 case Type::VectorTyID:
117 return ConstantAggregateZero::get(Ty);
118 default:
119 // Function, Label, or Opaque type?
Craig Topperc514b542012-02-05 22:14:15 +0000120 llvm_unreachable("Cannot create a null constant of that type!");
Owen Anderson5a1acd92009-07-31 20:28:14 +0000121 }
122}
123
Chris Lattner229907c2011-07-18 04:54:35 +0000124Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) {
125 Type *ScalarTy = Ty->getScalarType();
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000126
127 // Create the base integer constant.
128 Constant *C = ConstantInt::get(Ty->getContext(), V);
129
130 // Convert an integer to a pointer, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000131 if (PointerType *PTy = dyn_cast<PointerType>(ScalarTy))
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000132 C = ConstantExpr::getIntToPtr(C, PTy);
133
134 // Broadcast a scalar to a vector, if necessary.
Chris Lattner229907c2011-07-18 04:54:35 +0000135 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000136 C = ConstantVector::getSplat(VTy->getNumElements(), C);
Dan Gohmanf011f5a2009-08-03 22:07:33 +0000137
138 return C;
139}
140
Chris Lattner229907c2011-07-18 04:54:35 +0000141Constant *Constant::getAllOnesValue(Type *Ty) {
142 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
Owen Anderson5a1acd92009-07-31 20:28:14 +0000143 return ConstantInt::get(Ty->getContext(),
144 APInt::getAllOnesValue(ITy->getBitWidth()));
Nadav Rotem7cc6d122011-02-17 21:22:27 +0000145
146 if (Ty->isFloatingPointTy()) {
147 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
148 !Ty->isPPC_FP128Ty());
149 return ConstantFP::get(Ty->getContext(), FL);
150 }
151
Chris Lattner229907c2011-07-18 04:54:35 +0000152 VectorType *VTy = cast<VectorType>(Ty);
Chris Lattnere9eed292012-01-25 05:19:54 +0000153 return ConstantVector::getSplat(VTy->getNumElements(),
154 getAllOnesValue(VTy->getElementType()));
Owen Anderson5a1acd92009-07-31 20:28:14 +0000155}
156
Chris Lattner7e683d12012-01-25 06:16:32 +0000157/// getAggregateElement - For aggregates (struct/array/vector) return the
158/// constant that corresponds to the specified element if possible, or null if
159/// not. This can return null if the element index is a ConstantExpr, or if
160/// 'this' is a constant expr.
161Constant *Constant::getAggregateElement(unsigned Elt) const {
162 if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(this))
163 return Elt < CS->getNumOperands() ? CS->getOperand(Elt) : 0;
Galina Kistanovafc259902012-07-13 01:25:27 +0000164
Chris Lattner7e683d12012-01-25 06:16:32 +0000165 if (const ConstantArray *CA = dyn_cast<ConstantArray>(this))
166 return Elt < CA->getNumOperands() ? CA->getOperand(Elt) : 0;
Galina Kistanovafc259902012-07-13 01:25:27 +0000167
Chris Lattner7e683d12012-01-25 06:16:32 +0000168 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
169 return Elt < CV->getNumOperands() ? CV->getOperand(Elt) : 0;
Galina Kistanovafc259902012-07-13 01:25:27 +0000170
Chris Lattner7e683d12012-01-25 06:16:32 +0000171 if (const ConstantAggregateZero *CAZ =dyn_cast<ConstantAggregateZero>(this))
172 return CAZ->getElementValue(Elt);
Galina Kistanovafc259902012-07-13 01:25:27 +0000173
Chris Lattner7e683d12012-01-25 06:16:32 +0000174 if (const UndefValue *UV = dyn_cast<UndefValue>(this))
175 return UV->getElementValue(Elt);
Galina Kistanovafc259902012-07-13 01:25:27 +0000176
Chris Lattner8326bd82012-01-26 00:42:34 +0000177 if (const ConstantDataSequential *CDS =dyn_cast<ConstantDataSequential>(this))
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000178 return Elt < CDS->getNumElements() ? CDS->getElementAsConstant(Elt) : 0;
Chris Lattner7e683d12012-01-25 06:16:32 +0000179 return 0;
180}
181
182Constant *Constant::getAggregateElement(Constant *Elt) const {
183 assert(isa<IntegerType>(Elt->getType()) && "Index must be an integer");
184 if (ConstantInt *CI = dyn_cast<ConstantInt>(Elt))
185 return getAggregateElement(CI->getZExtValue());
186 return 0;
187}
188
189
Chris Lattner3462ae32001-12-03 22:26:30 +0000190void Constant::destroyConstantImpl() {
191 // When a Constant is destroyed, there may be lingering
Chris Lattnerd7a73302001-10-13 06:57:33 +0000192 // references to the constant by other constants in the constant pool. These
Misha Brukmanbe372b92003-08-21 22:14:26 +0000193 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerd7a73302001-10-13 06:57:33 +0000194 // but they don't know that. Because we only find out when the CPV is
195 // deleted, we must now notify all of our users (that should only be
Chris Lattner3462ae32001-12-03 22:26:30 +0000196 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerd7a73302001-10-13 06:57:33 +0000197 //
198 while (!use_empty()) {
199 Value *V = use_back();
200#ifndef NDEBUG // Only in -g mode...
Chris Lattner78683a72009-08-23 04:02:03 +0000201 if (!isa<Constant>(V)) {
David Greene1e27a132010-01-05 01:29:19 +0000202 dbgs() << "While deleting: " << *this
Chris Lattner78683a72009-08-23 04:02:03 +0000203 << "\n\nUse still stuck around after Def is destroyed: "
204 << *V << "\n\n";
205 }
Chris Lattnerd7a73302001-10-13 06:57:33 +0000206#endif
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000207 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Chris Lattner8326bd82012-01-26 00:42:34 +0000208 cast<Constant>(V)->destroyConstant();
Chris Lattnerd7a73302001-10-13 06:57:33 +0000209
210 // The constant should remove itself from our use list...
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000211 assert((use_empty() || use_back() != V) && "Constant not removed!");
Chris Lattnerd7a73302001-10-13 06:57:33 +0000212 }
213
214 // Value has no outstanding references it is safe to delete it now...
215 delete this;
Chris Lattner38569342001-10-01 20:11:19 +0000216}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000217
Chris Lattner23dd1f62006-10-20 00:27:06 +0000218/// canTrap - Return true if evaluation of this constant could trap. This is
219/// true for things like constant expressions that could divide by zero.
220bool Constant::canTrap() const {
221 assert(getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
222 // The only thing that could possibly trap are constant exprs.
223 const ConstantExpr *CE = dyn_cast<ConstantExpr>(this);
224 if (!CE) return false;
Galina Kistanovafc259902012-07-13 01:25:27 +0000225
226 // ConstantExpr traps if any operands can trap.
Chris Lattner23dd1f62006-10-20 00:27:06 +0000227 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Galina Kistanovafc259902012-07-13 01:25:27 +0000228 if (CE->getOperand(i)->canTrap())
Chris Lattner23dd1f62006-10-20 00:27:06 +0000229 return true;
230
231 // Otherwise, only specific operations can trap.
232 switch (CE->getOpcode()) {
233 default:
234 return false;
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000235 case Instruction::UDiv:
236 case Instruction::SDiv:
237 case Instruction::FDiv:
Reid Spencer7eb55b32006-11-02 01:53:59 +0000238 case Instruction::URem:
239 case Instruction::SRem:
240 case Instruction::FRem:
Chris Lattner23dd1f62006-10-20 00:27:06 +0000241 // Div and rem can trap if the RHS is not known to be non-zero.
Chris Lattnera91a5632009-10-28 05:14:34 +0000242 if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
Chris Lattner23dd1f62006-10-20 00:27:06 +0000243 return true;
244 return false;
245 }
246}
247
Chris Lattner253bc772009-11-01 18:11:50 +0000248/// isConstantUsed - Return true if the constant has users other than constant
249/// exprs and other dangling things.
250bool Constant::isConstantUsed() const {
Gabor Greifc78d7202010-03-25 23:06:16 +0000251 for (const_use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
Chris Lattner253bc772009-11-01 18:11:50 +0000252 const Constant *UC = dyn_cast<Constant>(*UI);
253 if (UC == 0 || isa<GlobalValue>(UC))
254 return true;
Galina Kistanovafc259902012-07-13 01:25:27 +0000255
Chris Lattner253bc772009-11-01 18:11:50 +0000256 if (UC->isConstantUsed())
257 return true;
258 }
259 return false;
260}
261
262
Chris Lattner4565ef52009-07-22 00:05:44 +0000263
264/// getRelocationInfo - This method classifies the entry according to
265/// whether or not it may generate a relocation entry. This must be
266/// conservative, so if it might codegen to a relocatable entry, it should say
267/// so. The return values are:
268///
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000269/// NoRelocation: This constant pool entry is guaranteed to never have a
270/// relocation applied to it (because it holds a simple constant like
271/// '4').
272/// LocalRelocation: This entry has relocations, but the entries are
273/// guaranteed to be resolvable by the static linker, so the dynamic
274/// linker will never see them.
275/// GlobalRelocations: This entry may have arbitrary relocations.
Chris Lattner4565ef52009-07-22 00:05:44 +0000276///
277/// FIXME: This really should not be in VMCore.
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000278Constant::PossibleRelocationsTy Constant::getRelocationInfo() const {
279 if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
Chris Lattner4565ef52009-07-22 00:05:44 +0000280 if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000281 return LocalRelocation; // Local to this file/library.
282 return GlobalRelocations; // Global reference.
Anton Korobeynikov7437b592009-03-29 17:13:18 +0000283 }
Chris Lattner4565ef52009-07-22 00:05:44 +0000284
Chris Lattner2cb85b42009-10-28 04:12:16 +0000285 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
286 return BA->getFunction()->getRelocationInfo();
287
Chris Lattnera7cfc432010-01-03 18:09:40 +0000288 // While raw uses of blockaddress need to be relocated, differences between
289 // two of them don't when they are for labels in the same function. This is a
290 // common idiom when creating a table for the indirect goto extension, so we
291 // handle it efficiently here.
292 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(this))
293 if (CE->getOpcode() == Instruction::Sub) {
294 ConstantExpr *LHS = dyn_cast<ConstantExpr>(CE->getOperand(0));
295 ConstantExpr *RHS = dyn_cast<ConstantExpr>(CE->getOperand(1));
296 if (LHS && RHS &&
297 LHS->getOpcode() == Instruction::PtrToInt &&
298 RHS->getOpcode() == Instruction::PtrToInt &&
299 isa<BlockAddress>(LHS->getOperand(0)) &&
300 isa<BlockAddress>(RHS->getOperand(0)) &&
301 cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
302 cast<BlockAddress>(RHS->getOperand(0))->getFunction())
303 return NoRelocation;
304 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000305
Chris Lattner5cd4dd32009-07-24 03:27:21 +0000306 PossibleRelocationsTy Result = NoRelocation;
Evan Chengf9e003b2007-03-08 00:59:12 +0000307 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Chris Lattnera91a5632009-10-28 05:14:34 +0000308 Result = std::max(Result,
309 cast<Constant>(getOperand(i))->getRelocationInfo());
Galina Kistanovafc259902012-07-13 01:25:27 +0000310
Chris Lattner4565ef52009-07-22 00:05:44 +0000311 return Result;
Evan Chengf9e003b2007-03-08 00:59:12 +0000312}
313
Chris Lattner84886402011-02-18 04:41:42 +0000314/// removeDeadUsersOfConstant - If the specified constantexpr is dead, remove
315/// it. This involves recursively eliminating any dead users of the
316/// constantexpr.
317static bool removeDeadUsersOfConstant(const Constant *C) {
318 if (isa<GlobalValue>(C)) return false; // Cannot remove this
Galina Kistanovafc259902012-07-13 01:25:27 +0000319
Chris Lattner84886402011-02-18 04:41:42 +0000320 while (!C->use_empty()) {
321 const Constant *User = dyn_cast<Constant>(C->use_back());
322 if (!User) return false; // Non-constant usage;
323 if (!removeDeadUsersOfConstant(User))
324 return false; // Constant wasn't dead
325 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000326
Chris Lattner84886402011-02-18 04:41:42 +0000327 const_cast<Constant*>(C)->destroyConstant();
328 return true;
329}
330
331
332/// removeDeadConstantUsers - If there are any dead constant users dangling
333/// off of this constant, remove them. This method is useful for clients
334/// that want to check to see if a global is unused, but don't want to deal
335/// with potentially dead constants hanging off of the globals.
336void Constant::removeDeadConstantUsers() const {
337 Value::const_use_iterator I = use_begin(), E = use_end();
338 Value::const_use_iterator LastNonDeadUser = E;
339 while (I != E) {
340 const Constant *User = dyn_cast<Constant>(*I);
341 if (User == 0) {
342 LastNonDeadUser = I;
343 ++I;
344 continue;
345 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000346
Chris Lattner84886402011-02-18 04:41:42 +0000347 if (!removeDeadUsersOfConstant(User)) {
348 // If the constant wasn't dead, remember that this was the last live use
349 // and move on to the next constant.
350 LastNonDeadUser = I;
351 ++I;
352 continue;
353 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000354
Chris Lattner84886402011-02-18 04:41:42 +0000355 // If the constant was dead, then the iterator is invalidated.
356 if (LastNonDeadUser == E) {
357 I = use_begin();
358 if (I == E) break;
359 } else {
360 I = LastNonDeadUser;
361 ++I;
362 }
363 }
364}
365
366
Chris Lattner2105d662008-07-10 00:28:11 +0000367
Chris Lattner2f7c9632001-06-06 20:29:01 +0000368//===----------------------------------------------------------------------===//
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000369// ConstantInt
Chris Lattner2f7c9632001-06-06 20:29:01 +0000370//===----------------------------------------------------------------------===//
371
David Blaikiea379b1812011-12-20 02:50:00 +0000372void ConstantInt::anchor() { }
373
Chris Lattner229907c2011-07-18 04:54:35 +0000374ConstantInt::ConstantInt(IntegerType *Ty, const APInt& V)
Chris Lattner5db2f472007-02-20 05:55:46 +0000375 : Constant(Ty, ConstantIntVal, 0, 0), Val(V) {
Reid Spencerb31bffe2007-02-26 23:54:03 +0000376 assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000377}
378
Nick Lewycky92db8e82011-03-06 03:36:19 +0000379ConstantInt *ConstantInt::getTrue(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000380 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000381 if (!pImpl->TheTrueVal)
382 pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1);
383 return pImpl->TheTrueVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000384}
385
Nick Lewycky92db8e82011-03-06 03:36:19 +0000386ConstantInt *ConstantInt::getFalse(LLVMContext &Context) {
Owen Anderson23a204d2009-07-31 17:39:07 +0000387 LLVMContextImpl *pImpl = Context.pImpl;
Benjamin Kramerddd1b7b2010-11-20 18:43:35 +0000388 if (!pImpl->TheFalseVal)
389 pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0);
390 return pImpl->TheFalseVal;
Owen Anderson23a204d2009-07-31 17:39:07 +0000391}
392
Chris Lattner229907c2011-07-18 04:54:35 +0000393Constant *ConstantInt::getTrue(Type *Ty) {
394 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-03-06 03:36:19 +0000395 if (!VTy) {
396 assert(Ty->isIntegerTy(1) && "True must be i1 or vector of i1.");
397 return ConstantInt::getTrue(Ty->getContext());
398 }
399 assert(VTy->getElementType()->isIntegerTy(1) &&
400 "True must be vector of i1 or i1.");
Chris Lattnere9eed292012-01-25 05:19:54 +0000401 return ConstantVector::getSplat(VTy->getNumElements(),
402 ConstantInt::getTrue(Ty->getContext()));
Nick Lewycky92db8e82011-03-06 03:36:19 +0000403}
404
Chris Lattner229907c2011-07-18 04:54:35 +0000405Constant *ConstantInt::getFalse(Type *Ty) {
406 VectorType *VTy = dyn_cast<VectorType>(Ty);
Nick Lewycky92db8e82011-03-06 03:36:19 +0000407 if (!VTy) {
408 assert(Ty->isIntegerTy(1) && "False must be i1 or vector of i1.");
409 return ConstantInt::getFalse(Ty->getContext());
410 }
411 assert(VTy->getElementType()->isIntegerTy(1) &&
412 "False must be vector of i1 or i1.");
Chris Lattnere9eed292012-01-25 05:19:54 +0000413 return ConstantVector::getSplat(VTy->getNumElements(),
414 ConstantInt::getFalse(Ty->getContext()));
Nick Lewycky92db8e82011-03-06 03:36:19 +0000415}
416
Owen Anderson23a204d2009-07-31 17:39:07 +0000417
Owen Andersonedb4a702009-07-24 23:12:02 +0000418// Get a ConstantInt from an APInt. Note that the value stored in the DenseMap
419// as the key, is a DenseMapAPIntKeyInfo::KeyTy which has provided the
420// operator== and operator!= to ensure that the DenseMap doesn't attempt to
421// compare APInt's of different widths, which would violate an APInt class
422// invariant which generates an assertion.
Nick Lewycky92db8e82011-03-06 03:36:19 +0000423ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt &V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000424 // Get the corresponding integer type for the bit width of the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000425 IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
Owen Andersonedb4a702009-07-24 23:12:02 +0000426 // get an existing value or the insertion position
427 DenseMapAPIntKeyInfo::KeyTy Key(V, ITy);
Owen Andersonedb4a702009-07-24 23:12:02 +0000428 ConstantInt *&Slot = Context.pImpl->IntConstants[Key];
Owen Anderson5dab84c2009-10-19 20:11:52 +0000429 if (!Slot) Slot = new ConstantInt(ITy, V);
430 return Slot;
Owen Andersonedb4a702009-07-24 23:12:02 +0000431}
432
Chris Lattner229907c2011-07-18 04:54:35 +0000433Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) {
Nick Lewycky92db8e82011-03-06 03:36:19 +0000434 Constant *C = get(cast<IntegerType>(Ty->getScalarType()), V, isSigned);
Owen Andersonedb4a702009-07-24 23:12:02 +0000435
436 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000437 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000438 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Andersonedb4a702009-07-24 23:12:02 +0000439
440 return C;
441}
442
Chris Lattner0256be92012-01-27 03:08:05 +0000443ConstantInt *ConstantInt::get(IntegerType *Ty, uint64_t V,
Owen Andersonedb4a702009-07-24 23:12:02 +0000444 bool isSigned) {
445 return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
446}
447
Chris Lattner0256be92012-01-27 03:08:05 +0000448ConstantInt *ConstantInt::getSigned(IntegerType *Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000449 return get(Ty, V, true);
450}
451
Chris Lattner229907c2011-07-18 04:54:35 +0000452Constant *ConstantInt::getSigned(Type *Ty, int64_t V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000453 return get(Ty, V, true);
454}
455
Chris Lattner0256be92012-01-27 03:08:05 +0000456Constant *ConstantInt::get(Type *Ty, const APInt& V) {
Owen Andersonedb4a702009-07-24 23:12:02 +0000457 ConstantInt *C = get(Ty->getContext(), V);
458 assert(C->getType() == Ty->getScalarType() &&
459 "ConstantInt type doesn't match the type implied by its value!");
460
461 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000462 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000463 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Andersonedb4a702009-07-24 23:12:02 +0000464
465 return C;
466}
467
Chris Lattner0256be92012-01-27 03:08:05 +0000468ConstantInt *ConstantInt::get(IntegerType* Ty, StringRef Str,
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000469 uint8_t radix) {
470 return get(Ty->getContext(), APInt(Ty->getBitWidth(), Str, radix));
471}
472
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000473//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000474// ConstantFP
Chris Lattnera80bf0b2007-02-20 06:39:57 +0000475//===----------------------------------------------------------------------===//
476
Chris Lattner229907c2011-07-18 04:54:35 +0000477static const fltSemantics *TypeToFloatSemantics(Type *Ty) {
Dan Gohman518cda42011-12-17 00:04:22 +0000478 if (Ty->isHalfTy())
479 return &APFloat::IEEEhalf;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000480 if (Ty->isFloatTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000481 return &APFloat::IEEEsingle;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000482 if (Ty->isDoubleTy())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000483 return &APFloat::IEEEdouble;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000484 if (Ty->isX86_FP80Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000485 return &APFloat::x87DoubleExtended;
Chris Lattnerfdd87902009-10-05 05:54:46 +0000486 else if (Ty->isFP128Ty())
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000487 return &APFloat::IEEEquad;
Galina Kistanovafc259902012-07-13 01:25:27 +0000488
Chris Lattnerfdd87902009-10-05 05:54:46 +0000489 assert(Ty->isPPC_FP128Ty() && "Unknown FP format");
Rafael Espindolaf5d53d42009-07-15 17:40:42 +0000490 return &APFloat::PPCDoubleDouble;
491}
492
David Blaikiea379b1812011-12-20 02:50:00 +0000493void ConstantFP::anchor() { }
494
Owen Anderson69c464d2009-07-27 20:59:43 +0000495/// get() - This returns a constant fp for the specified value in the
496/// specified type. This should only be used for simple constant values like
497/// 2.0/1.0 etc, that are known-valid both as double and as the target format.
Chris Lattner0256be92012-01-27 03:08:05 +0000498Constant *ConstantFP::get(Type *Ty, double V) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000499 LLVMContext &Context = Ty->getContext();
Galina Kistanovafc259902012-07-13 01:25:27 +0000500
Owen Anderson69c464d2009-07-27 20:59:43 +0000501 APFloat FV(V);
502 bool ignored;
503 FV.convert(*TypeToFloatSemantics(Ty->getScalarType()),
504 APFloat::rmNearestTiesToEven, &ignored);
505 Constant *C = get(Context, FV);
506
507 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000508 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000509 return ConstantVector::getSplat(VTy->getNumElements(), C);
Owen Anderson69c464d2009-07-27 20:59:43 +0000510
511 return C;
512}
513
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000514
Chris Lattner0256be92012-01-27 03:08:05 +0000515Constant *ConstantFP::get(Type *Ty, StringRef Str) {
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000516 LLVMContext &Context = Ty->getContext();
517
518 APFloat FV(*TypeToFloatSemantics(Ty->getScalarType()), Str);
519 Constant *C = get(Context, FV);
520
521 // For vectors, broadcast the value.
Chris Lattner229907c2011-07-18 04:54:35 +0000522 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
Chris Lattnere9eed292012-01-25 05:19:54 +0000523 return ConstantVector::getSplat(VTy->getNumElements(), C);
Erick Tryzelaarfc2280d2009-08-16 23:36:33 +0000524
525 return C;
526}
527
528
Chris Lattnere9eed292012-01-25 05:19:54 +0000529ConstantFP *ConstantFP::getNegativeZero(Type *Ty) {
Owen Anderson69c464d2009-07-27 20:59:43 +0000530 LLVMContext &Context = Ty->getContext();
Chris Lattnere9eed292012-01-25 05:19:54 +0000531 APFloat apf = cast<ConstantFP>(Constant::getNullValue(Ty))->getValueAPF();
Owen Anderson69c464d2009-07-27 20:59:43 +0000532 apf.changeSign();
533 return get(Context, apf);
534}
535
536
Chris Lattnere9eed292012-01-25 05:19:54 +0000537Constant *ConstantFP::getZeroValueForNegation(Type *Ty) {
538 Type *ScalarTy = Ty->getScalarType();
539 if (ScalarTy->isFloatingPointTy()) {
540 Constant *C = getNegativeZero(ScalarTy);
541 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
542 return ConstantVector::getSplat(VTy->getNumElements(), C);
543 return C;
544 }
Owen Anderson69c464d2009-07-27 20:59:43 +0000545
Owen Anderson5a1acd92009-07-31 20:28:14 +0000546 return Constant::getNullValue(Ty);
Owen Anderson69c464d2009-07-27 20:59:43 +0000547}
548
549
550// ConstantFP accessors.
551ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) {
552 DenseMapAPFloatKeyInfo::KeyTy Key(V);
Galina Kistanovafc259902012-07-13 01:25:27 +0000553
Owen Anderson69c464d2009-07-27 20:59:43 +0000554 LLVMContextImpl* pImpl = Context.pImpl;
Galina Kistanovafc259902012-07-13 01:25:27 +0000555
Owen Anderson69c464d2009-07-27 20:59:43 +0000556 ConstantFP *&Slot = pImpl->FPConstants[Key];
Galina Kistanovafc259902012-07-13 01:25:27 +0000557
Owen Anderson69c464d2009-07-27 20:59:43 +0000558 if (!Slot) {
Chris Lattner229907c2011-07-18 04:54:35 +0000559 Type *Ty;
Dan Gohman518cda42011-12-17 00:04:22 +0000560 if (&V.getSemantics() == &APFloat::IEEEhalf)
561 Ty = Type::getHalfTy(Context);
562 else if (&V.getSemantics() == &APFloat::IEEEsingle)
Owen Anderson5dab84c2009-10-19 20:11:52 +0000563 Ty = Type::getFloatTy(Context);
564 else if (&V.getSemantics() == &APFloat::IEEEdouble)
565 Ty = Type::getDoubleTy(Context);
566 else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
567 Ty = Type::getX86_FP80Ty(Context);
568 else if (&V.getSemantics() == &APFloat::IEEEquad)
569 Ty = Type::getFP128Ty(Context);
570 else {
571 assert(&V.getSemantics() == &APFloat::PPCDoubleDouble &&
572 "Unknown FP format");
573 Ty = Type::getPPC_FP128Ty(Context);
Owen Anderson69c464d2009-07-27 20:59:43 +0000574 }
Owen Anderson5dab84c2009-10-19 20:11:52 +0000575 Slot = new ConstantFP(Ty, V);
Owen Anderson69c464d2009-07-27 20:59:43 +0000576 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000577
Owen Anderson69c464d2009-07-27 20:59:43 +0000578 return Slot;
579}
580
Chris Lattner229907c2011-07-18 04:54:35 +0000581ConstantFP *ConstantFP::getInfinity(Type *Ty, bool Negative) {
Dan Gohmanfeb50212009-09-25 23:00:48 +0000582 const fltSemantics &Semantics = *TypeToFloatSemantics(Ty);
583 return ConstantFP::get(Ty->getContext(),
584 APFloat::getInf(Semantics, Negative));
585}
586
Chris Lattner229907c2011-07-18 04:54:35 +0000587ConstantFP::ConstantFP(Type *Ty, const APFloat& V)
Dale Johannesend246b2c2007-08-30 00:23:21 +0000588 : Constant(Ty, ConstantFPVal, 0, 0), Val(V) {
Chris Lattner98bd9392008-04-09 06:38:30 +0000589 assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
590 "FP type Mismatch");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000591}
592
Chris Lattnerbe6610c2011-07-15 06:14:08 +0000593bool ConstantFP::isExactlyValue(const APFloat &V) const {
Dale Johannesend246b2c2007-08-30 00:23:21 +0000594 return Val.bitwiseIsEqual(V);
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000595}
596
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000597//===----------------------------------------------------------------------===//
Chris Lattner030af792012-01-24 05:42:11 +0000598// ConstantAggregateZero Implementation
599//===----------------------------------------------------------------------===//
600
601/// getSequentialElement - If this CAZ has array or vector type, return a zero
602/// with the right element type.
Chris Lattner7e683d12012-01-25 06:16:32 +0000603Constant *ConstantAggregateZero::getSequentialElement() const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000604 return Constant::getNullValue(getType()->getSequentialElementType());
Chris Lattner030af792012-01-24 05:42:11 +0000605}
606
607/// getStructElement - If this CAZ has struct type, return a zero with the
608/// right element type for the specified element.
Chris Lattner7e683d12012-01-25 06:16:32 +0000609Constant *ConstantAggregateZero::getStructElement(unsigned Elt) const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000610 return Constant::getNullValue(getType()->getStructElementType(Elt));
Chris Lattner030af792012-01-24 05:42:11 +0000611}
612
613/// getElementValue - Return a zero of the right value for the specified GEP
614/// index if we can, otherwise return null (e.g. if C is a ConstantExpr).
Chris Lattner7e683d12012-01-25 06:16:32 +0000615Constant *ConstantAggregateZero::getElementValue(Constant *C) const {
Chris Lattner030af792012-01-24 05:42:11 +0000616 if (isa<SequentialType>(getType()))
617 return getSequentialElement();
618 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
619}
620
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000621/// getElementValue - Return a zero of the right value for the specified GEP
622/// index.
Chris Lattner7e683d12012-01-25 06:16:32 +0000623Constant *ConstantAggregateZero::getElementValue(unsigned Idx) const {
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000624 if (isa<SequentialType>(getType()))
625 return getSequentialElement();
626 return getStructElement(Idx);
627}
628
629
Chris Lattner030af792012-01-24 05:42:11 +0000630//===----------------------------------------------------------------------===//
631// UndefValue Implementation
632//===----------------------------------------------------------------------===//
633
634/// getSequentialElement - If this undef has array or vector type, return an
635/// undef with the right element type.
Chris Lattner7e683d12012-01-25 06:16:32 +0000636UndefValue *UndefValue::getSequentialElement() const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000637 return UndefValue::get(getType()->getSequentialElementType());
Chris Lattner030af792012-01-24 05:42:11 +0000638}
639
640/// getStructElement - If this undef has struct type, return a zero with the
641/// right element type for the specified element.
Chris Lattner7e683d12012-01-25 06:16:32 +0000642UndefValue *UndefValue::getStructElement(unsigned Elt) const {
Chris Lattner8326bd82012-01-26 00:42:34 +0000643 return UndefValue::get(getType()->getStructElementType(Elt));
Chris Lattner030af792012-01-24 05:42:11 +0000644}
645
646/// getElementValue - Return an undef of the right value for the specified GEP
647/// index if we can, otherwise return null (e.g. if C is a ConstantExpr).
Chris Lattner7e683d12012-01-25 06:16:32 +0000648UndefValue *UndefValue::getElementValue(Constant *C) const {
Chris Lattner030af792012-01-24 05:42:11 +0000649 if (isa<SequentialType>(getType()))
650 return getSequentialElement();
651 return getStructElement(cast<ConstantInt>(C)->getZExtValue());
652}
653
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000654/// getElementValue - Return an undef of the right value for the specified GEP
655/// index.
Chris Lattner7e683d12012-01-25 06:16:32 +0000656UndefValue *UndefValue::getElementValue(unsigned Idx) const {
Chris Lattnerf7eb5432012-01-24 07:54:10 +0000657 if (isa<SequentialType>(getType()))
658 return getSequentialElement();
659 return getStructElement(Idx);
660}
661
662
Chris Lattner030af792012-01-24 05:42:11 +0000663
664//===----------------------------------------------------------------------===//
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000665// ConstantXXX Classes
666//===----------------------------------------------------------------------===//
667
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000668template <typename ItTy, typename EltTy>
669static bool rangeOnlyContains(ItTy Start, ItTy End, EltTy Elt) {
670 for (; Start != End; ++Start)
671 if (*Start != Elt)
672 return false;
673 return true;
674}
Chris Lattnerc6ee77d2007-02-20 07:17:17 +0000675
Jay Foad89d9b812011-07-25 10:14:44 +0000676ConstantArray::ConstantArray(ArrayType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000677 : Constant(T, ConstantArrayVal,
678 OperandTraits<ConstantArray>::op_end(this) - V.size(),
679 V.size()) {
Alkis Evlogimenos0507ffe2004-09-15 02:32:15 +0000680 assert(V.size() == T->getNumElements() &&
681 "Invalid initializer vector for constant array");
Jay Foad89d9b812011-07-25 10:14:44 +0000682 for (unsigned i = 0, e = V.size(); i != e; ++i)
683 assert(V[i]->getType() == T->getElementType() &&
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000684 "Initializer for array element doesn't match array element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000685 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000686}
687
Chris Lattner229907c2011-07-18 04:54:35 +0000688Constant *ConstantArray::get(ArrayType *Ty, ArrayRef<Constant*> V) {
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000689 // Empty arrays are canonicalized to ConstantAggregateZero.
690 if (V.empty())
691 return ConstantAggregateZero::get(Ty);
692
Jeffrey Yasskin8ce67f82009-09-30 21:08:08 +0000693 for (unsigned i = 0, e = V.size(); i != e; ++i) {
694 assert(V[i]->getType() == Ty->getElementType() &&
695 "Wrong type in array element initializer");
696 }
Owen Andersonc2c79322009-07-28 18:32:17 +0000697 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
Galina Kistanovafc259902012-07-13 01:25:27 +0000698
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000699 // If this is an all-zero array, return a ConstantAggregateZero object. If
700 // all undef, return an UndefValue, if "all simple", then return a
701 // ConstantDataArray.
702 Constant *C = V[0];
703 if (isa<UndefValue>(C) && rangeOnlyContains(V.begin(), V.end(), C))
704 return UndefValue::get(Ty);
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000705
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000706 if (C->isNullValue() && rangeOnlyContains(V.begin(), V.end(), C))
707 return ConstantAggregateZero::get(Ty);
708
709 // Check to see if all of the elements are ConstantFP or ConstantInt and if
710 // the element type is compatible with ConstantDataVector. If so, use it.
711 if (ConstantDataSequential::isElementTypeCompatible(C->getType())) {
712 // We speculatively build the elements here even if it turns out that there
713 // is a constantexpr or something else weird in the array, since it is so
714 // uncommon for that to happen.
715 if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) {
716 if (CI->getType()->isIntegerTy(8)) {
717 SmallVector<uint8_t, 16> Elts;
718 for (unsigned i = 0, e = V.size(); i != e; ++i)
719 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
720 Elts.push_back(CI->getZExtValue());
721 else
722 break;
723 if (Elts.size() == V.size())
724 return ConstantDataArray::get(C->getContext(), Elts);
725 } else if (CI->getType()->isIntegerTy(16)) {
726 SmallVector<uint16_t, 16> Elts;
727 for (unsigned i = 0, e = V.size(); i != e; ++i)
728 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
729 Elts.push_back(CI->getZExtValue());
730 else
731 break;
732 if (Elts.size() == V.size())
733 return ConstantDataArray::get(C->getContext(), Elts);
734 } else if (CI->getType()->isIntegerTy(32)) {
735 SmallVector<uint32_t, 16> Elts;
736 for (unsigned i = 0, e = V.size(); i != e; ++i)
737 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
738 Elts.push_back(CI->getZExtValue());
739 else
740 break;
741 if (Elts.size() == V.size())
742 return ConstantDataArray::get(C->getContext(), Elts);
743 } else if (CI->getType()->isIntegerTy(64)) {
744 SmallVector<uint64_t, 16> Elts;
745 for (unsigned i = 0, e = V.size(); i != e; ++i)
746 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
747 Elts.push_back(CI->getZExtValue());
748 else
749 break;
750 if (Elts.size() == V.size())
751 return ConstantDataArray::get(C->getContext(), Elts);
752 }
753 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000754
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000755 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
756 if (CFP->getType()->isFloatTy()) {
757 SmallVector<float, 16> Elts;
758 for (unsigned i = 0, e = V.size(); i != e; ++i)
759 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
760 Elts.push_back(CFP->getValueAPF().convertToFloat());
761 else
762 break;
763 if (Elts.size() == V.size())
764 return ConstantDataArray::get(C->getContext(), Elts);
765 } else if (CFP->getType()->isDoubleTy()) {
766 SmallVector<double, 16> Elts;
767 for (unsigned i = 0, e = V.size(); i != e; ++i)
768 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
769 Elts.push_back(CFP->getValueAPF().convertToDouble());
770 else
771 break;
772 if (Elts.size() == V.size())
773 return ConstantDataArray::get(C->getContext(), Elts);
774 }
775 }
Owen Andersonc2c79322009-07-28 18:32:17 +0000776 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000777
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000778 // Otherwise, we really do want to create a ConstantArray.
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000779 return pImpl->ArrayConstants.getOrCreate(Ty, V);
Owen Andersonc2c79322009-07-28 18:32:17 +0000780}
781
Chris Lattnercc19efa2011-06-20 04:01:31 +0000782/// getTypeForElements - Return an anonymous struct type to use for a constant
783/// with the specified set of elements. The list must not be empty.
784StructType *ConstantStruct::getTypeForElements(LLVMContext &Context,
785 ArrayRef<Constant*> V,
786 bool Packed) {
Bill Wendling3ae7dd32012-02-07 01:27:51 +0000787 unsigned VecSize = V.size();
788 SmallVector<Type*, 16> EltTypes(VecSize);
789 for (unsigned i = 0; i != VecSize; ++i)
790 EltTypes[i] = V[i]->getType();
Galina Kistanovafc259902012-07-13 01:25:27 +0000791
Chris Lattnercc19efa2011-06-20 04:01:31 +0000792 return StructType::get(Context, EltTypes, Packed);
793}
794
795
796StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V,
797 bool Packed) {
798 assert(!V.empty() &&
799 "ConstantStruct::getTypeForElements cannot be called on empty list");
800 return getTypeForElements(V[0]->getContext(), V, Packed);
801}
802
803
Jay Foad89d9b812011-07-25 10:14:44 +0000804ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000805 : Constant(T, ConstantStructVal,
806 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
807 V.size()) {
Chris Lattnerc3e74cd2011-08-07 04:18:48 +0000808 assert(V.size() == T->getNumElements() &&
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000809 "Invalid initializer vector for constant structure");
Jay Foad89d9b812011-07-25 10:14:44 +0000810 for (unsigned i = 0, e = V.size(); i != e; ++i)
811 assert((T->isOpaque() || V[i]->getType() == T->getElementType(i)) &&
Chris Lattner93c8f142003-06-02 17:42:47 +0000812 "Initializer for struct element doesn't match struct element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000813 std::copy(V.begin(), V.end(), op_begin());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000814}
815
Owen Anderson45308b52009-07-27 22:29:26 +0000816// ConstantStruct accessors.
Chris Lattner229907c2011-07-18 04:54:35 +0000817Constant *ConstantStruct::get(StructType *ST, ArrayRef<Constant*> V) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000818 assert((ST->isOpaque() || ST->getNumElements() == V.size()) &&
819 "Incorrect # elements specified to ConstantStruct::get");
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000820
821 // Create a ConstantAggregateZero value if all elements are zeros.
822 bool isZero = true;
823 bool isUndef = false;
824
825 if (!V.empty()) {
826 isUndef = isa<UndefValue>(V[0]);
827 isZero = V[0]->isNullValue();
828 if (isUndef || isZero) {
829 for (unsigned i = 0, e = V.size(); i != e; ++i) {
830 if (!V[i]->isNullValue())
831 isZero = false;
832 if (!isa<UndefValue>(V[i]))
833 isUndef = false;
834 }
835 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000836 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000837 if (isZero)
838 return ConstantAggregateZero::get(ST);
839 if (isUndef)
840 return UndefValue::get(ST);
Galina Kistanovafc259902012-07-13 01:25:27 +0000841
Chris Lattnerf14a67f2012-01-26 02:31:22 +0000842 return ST->getContext().pImpl->StructConstants.getOrCreate(ST, V);
Owen Anderson45308b52009-07-27 22:29:26 +0000843}
844
Chris Lattnerc3e74cd2011-08-07 04:18:48 +0000845Constant *ConstantStruct::get(StructType *T, ...) {
Talin3a0a30d2011-02-28 23:53:27 +0000846 va_list ap;
Chris Lattnercc19efa2011-06-20 04:01:31 +0000847 SmallVector<Constant*, 8> Values;
848 va_start(ap, T);
849 while (Constant *Val = va_arg(ap, llvm::Constant*))
Talin3a0a30d2011-02-28 23:53:27 +0000850 Values.push_back(Val);
Talinde422be2011-03-01 18:00:49 +0000851 va_end(ap);
Chris Lattnercc19efa2011-06-20 04:01:31 +0000852 return get(T, Values);
Talin3a0a30d2011-02-28 23:53:27 +0000853}
854
Jay Foad89d9b812011-07-25 10:14:44 +0000855ConstantVector::ConstantVector(VectorType *T, ArrayRef<Constant *> V)
Gabor Greiff6caff662008-05-10 08:32:32 +0000856 : Constant(T, ConstantVectorVal,
857 OperandTraits<ConstantVector>::op_end(this) - V.size(),
858 V.size()) {
Jay Foad89d9b812011-07-25 10:14:44 +0000859 for (size_t i = 0, e = V.size(); i != e; i++)
860 assert(V[i]->getType() == T->getElementType() &&
Dan Gohman30978072007-05-24 14:36:04 +0000861 "Initializer for vector element doesn't match vector element type!");
Jay Foad89d9b812011-07-25 10:14:44 +0000862 std::copy(V.begin(), V.end(), op_begin());
Brian Gaeke02209042004-08-20 06:00:58 +0000863}
864
Owen Anderson4aa32952009-07-28 21:19:26 +0000865// ConstantVector accessors.
Jay Foadb8a8bed32011-06-22 09:10:19 +0000866Constant *ConstantVector::get(ArrayRef<Constant*> V) {
Jay Foad9f32cfd2011-01-27 14:44:55 +0000867 assert(!V.empty() && "Vectors can't be empty");
Chris Lattner229907c2011-07-18 04:54:35 +0000868 VectorType *T = VectorType::get(V.front()->getType(), V.size());
Chris Lattner69229312011-02-15 00:14:00 +0000869 LLVMContextImpl *pImpl = T->getContext().pImpl;
Jay Foad9f32cfd2011-01-27 14:44:55 +0000870
Chris Lattner69229312011-02-15 00:14:00 +0000871 // If this is an all-undef or all-zero vector, return a
Owen Anderson4aa32952009-07-28 21:19:26 +0000872 // ConstantAggregateZero or UndefValue.
873 Constant *C = V[0];
874 bool isZero = C->isNullValue();
875 bool isUndef = isa<UndefValue>(C);
876
877 if (isZero || isUndef) {
878 for (unsigned i = 1, e = V.size(); i != e; ++i)
879 if (V[i] != C) {
880 isZero = isUndef = false;
881 break;
882 }
883 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000884
Owen Anderson4aa32952009-07-28 21:19:26 +0000885 if (isZero)
Owen Andersonb292b8c2009-07-30 23:03:37 +0000886 return ConstantAggregateZero::get(T);
Owen Anderson4aa32952009-07-28 21:19:26 +0000887 if (isUndef)
Owen Andersonb292b8c2009-07-30 23:03:37 +0000888 return UndefValue::get(T);
Galina Kistanovafc259902012-07-13 01:25:27 +0000889
Chris Lattner978fe0c2012-01-30 06:21:21 +0000890 // Check to see if all of the elements are ConstantFP or ConstantInt and if
891 // the element type is compatible with ConstantDataVector. If so, use it.
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000892 if (ConstantDataSequential::isElementTypeCompatible(C->getType())) {
Chris Lattner978fe0c2012-01-30 06:21:21 +0000893 // We speculatively build the elements here even if it turns out that there
894 // is a constantexpr or something else weird in the array, since it is so
895 // uncommon for that to happen.
896 if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) {
897 if (CI->getType()->isIntegerTy(8)) {
898 SmallVector<uint8_t, 16> Elts;
899 for (unsigned i = 0, e = V.size(); i != e; ++i)
900 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
901 Elts.push_back(CI->getZExtValue());
902 else
903 break;
904 if (Elts.size() == V.size())
905 return ConstantDataVector::get(C->getContext(), Elts);
906 } else if (CI->getType()->isIntegerTy(16)) {
907 SmallVector<uint16_t, 16> Elts;
908 for (unsigned i = 0, e = V.size(); i != e; ++i)
909 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
910 Elts.push_back(CI->getZExtValue());
911 else
912 break;
913 if (Elts.size() == V.size())
914 return ConstantDataVector::get(C->getContext(), Elts);
915 } else if (CI->getType()->isIntegerTy(32)) {
916 SmallVector<uint32_t, 16> Elts;
917 for (unsigned i = 0, e = V.size(); i != e; ++i)
918 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
919 Elts.push_back(CI->getZExtValue());
920 else
921 break;
922 if (Elts.size() == V.size())
923 return ConstantDataVector::get(C->getContext(), Elts);
924 } else if (CI->getType()->isIntegerTy(64)) {
925 SmallVector<uint64_t, 16> Elts;
926 for (unsigned i = 0, e = V.size(); i != e; ++i)
927 if (ConstantInt *CI = dyn_cast<ConstantInt>(V[i]))
928 Elts.push_back(CI->getZExtValue());
929 else
930 break;
931 if (Elts.size() == V.size())
932 return ConstantDataVector::get(C->getContext(), Elts);
933 }
934 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000935
Chris Lattner978fe0c2012-01-30 06:21:21 +0000936 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
937 if (CFP->getType()->isFloatTy()) {
938 SmallVector<float, 16> Elts;
939 for (unsigned i = 0, e = V.size(); i != e; ++i)
940 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
941 Elts.push_back(CFP->getValueAPF().convertToFloat());
942 else
943 break;
944 if (Elts.size() == V.size())
945 return ConstantDataVector::get(C->getContext(), Elts);
946 } else if (CFP->getType()->isDoubleTy()) {
947 SmallVector<double, 16> Elts;
948 for (unsigned i = 0, e = V.size(); i != e; ++i)
949 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V[i]))
950 Elts.push_back(CFP->getValueAPF().convertToDouble());
951 else
952 break;
953 if (Elts.size() == V.size())
954 return ConstantDataVector::get(C->getContext(), Elts);
955 }
956 }
957 }
Galina Kistanovafc259902012-07-13 01:25:27 +0000958
Chris Lattner978fe0c2012-01-30 06:21:21 +0000959 // Otherwise, the element type isn't compatible with ConstantDataVector, or
960 // the operand list constants a ConstantExpr or something else strange.
Owen Anderson4aa32952009-07-28 21:19:26 +0000961 return pImpl->VectorConstants.getOrCreate(T, V);
962}
963
Chris Lattnere9eed292012-01-25 05:19:54 +0000964Constant *ConstantVector::getSplat(unsigned NumElts, Constant *V) {
Chris Lattner978fe0c2012-01-30 06:21:21 +0000965 // If this splat is compatible with ConstantDataVector, use it instead of
966 // ConstantVector.
967 if ((isa<ConstantFP>(V) || isa<ConstantInt>(V)) &&
968 ConstantDataSequential::isElementTypeCompatible(V->getType()))
969 return ConstantDataVector::getSplat(NumElts, V);
Galina Kistanovafc259902012-07-13 01:25:27 +0000970
Chris Lattnere9eed292012-01-25 05:19:54 +0000971 SmallVector<Constant*, 32> Elts(NumElts, V);
972 return get(Elts);
973}
974
975
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000976// Utility function for determining if a ConstantExpr is a CastOp or not. This
977// can't be inline because we don't want to #include Instruction.h into
978// Constant.h
979bool ConstantExpr::isCast() const {
980 return Instruction::isCast(getOpcode());
981}
982
Reid Spenceree3c9912006-12-04 05:19:50 +0000983bool ConstantExpr::isCompare() const {
Nick Lewyckya21d3da2009-07-08 03:04:38 +0000984 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
Reid Spenceree3c9912006-12-04 05:19:50 +0000985}
986
Dan Gohman7190d482009-09-10 23:37:55 +0000987bool ConstantExpr::isGEPWithNoNotionalOverIndexing() const {
988 if (getOpcode() != Instruction::GetElementPtr) return false;
989
990 gep_type_iterator GEPI = gep_type_begin(this), E = gep_type_end(this);
Oscar Fuentes40b31ad2010-08-02 06:00:15 +0000991 User::const_op_iterator OI = llvm::next(this->op_begin());
Dan Gohman7190d482009-09-10 23:37:55 +0000992
993 // Skip the first index, as it has no static limit.
994 ++GEPI;
995 ++OI;
996
997 // The remaining indices must be compile-time known integers within the
998 // bounds of the corresponding notional static array types.
999 for (; GEPI != E; ++GEPI, ++OI) {
1000 ConstantInt *CI = dyn_cast<ConstantInt>(*OI);
1001 if (!CI) return false;
Chris Lattner229907c2011-07-18 04:54:35 +00001002 if (ArrayType *ATy = dyn_cast<ArrayType>(*GEPI))
Dan Gohman7190d482009-09-10 23:37:55 +00001003 if (CI->getValue().getActiveBits() > 64 ||
1004 CI->getZExtValue() >= ATy->getNumElements())
1005 return false;
1006 }
1007
1008 // All the indices checked out.
1009 return true;
1010}
1011
Dan Gohman1ecaf452008-05-31 00:58:22 +00001012bool ConstantExpr::hasIndices() const {
1013 return getOpcode() == Instruction::ExtractValue ||
1014 getOpcode() == Instruction::InsertValue;
1015}
1016
Jay Foad0091fe82011-04-13 15:22:40 +00001017ArrayRef<unsigned> ConstantExpr::getIndices() const {
Dan Gohman1ecaf452008-05-31 00:58:22 +00001018 if (const ExtractValueConstantExpr *EVCE =
1019 dyn_cast<ExtractValueConstantExpr>(this))
1020 return EVCE->Indices;
Dan Gohmana469bdb2008-06-23 16:39:44 +00001021
1022 return cast<InsertValueConstantExpr>(this)->Indices;
Dan Gohman1ecaf452008-05-31 00:58:22 +00001023}
1024
Reid Spencer10fbf0e2006-12-03 05:48:19 +00001025unsigned ConstantExpr::getPredicate() const {
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001026 assert(isCompare());
Chris Lattneref650092007-10-18 16:26:24 +00001027 return ((const CompareConstantExpr*)this)->predicate;
Reid Spencer10fbf0e2006-12-03 05:48:19 +00001028}
Chris Lattner60e0dd72001-10-03 06:12:09 +00001029
Chris Lattner7c1018a2006-07-14 19:37:40 +00001030/// getWithOperandReplaced - Return a constant expression identical to this
1031/// one, but with the specified operand set to the specified value.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001032Constant *
1033ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
Chris Lattner7c1018a2006-07-14 19:37:40 +00001034 assert(Op->getType() == getOperand(OpNo)->getType() &&
1035 "Replacing operand with value of different type!");
Chris Lattner227816342006-07-14 22:20:01 +00001036 if (getOperand(OpNo) == Op)
1037 return const_cast<ConstantExpr*>(this);
Chris Lattner37e38352012-01-26 20:37:11 +00001038
1039 SmallVector<Constant*, 8> NewOps;
1040 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1041 NewOps.push_back(i == OpNo ? Op : getOperand(i));
Galina Kistanovafc259902012-07-13 01:25:27 +00001042
Chris Lattner37e38352012-01-26 20:37:11 +00001043 return getWithOperands(NewOps);
Chris Lattner227816342006-07-14 22:20:01 +00001044}
1045
1046/// getWithOperands - This returns the current constant expression with the
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001047/// operands replaced with the specified values. The specified array must
1048/// have the same number of operands as our current one.
Chris Lattner227816342006-07-14 22:20:01 +00001049Constant *ConstantExpr::
Chris Lattner229907c2011-07-18 04:54:35 +00001050getWithOperands(ArrayRef<Constant*> Ops, Type *Ty) const {
Jay Foad5c984e562011-04-13 13:46:01 +00001051 assert(Ops.size() == getNumOperands() && "Operand count mismatch!");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001052 bool AnyChange = Ty != getType();
1053 for (unsigned i = 0; i != Ops.size(); ++i)
Chris Lattner227816342006-07-14 22:20:01 +00001054 AnyChange |= Ops[i] != getOperand(i);
Galina Kistanovafc259902012-07-13 01:25:27 +00001055
Chris Lattner227816342006-07-14 22:20:01 +00001056 if (!AnyChange) // No operands changed, return self.
1057 return const_cast<ConstantExpr*>(this);
1058
1059 switch (getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001060 case Instruction::Trunc:
1061 case Instruction::ZExt:
1062 case Instruction::SExt:
1063 case Instruction::FPTrunc:
1064 case Instruction::FPExt:
1065 case Instruction::UIToFP:
1066 case Instruction::SIToFP:
1067 case Instruction::FPToUI:
1068 case Instruction::FPToSI:
1069 case Instruction::PtrToInt:
1070 case Instruction::IntToPtr:
1071 case Instruction::BitCast:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001072 return ConstantExpr::getCast(getOpcode(), Ops[0], Ty);
Chris Lattner227816342006-07-14 22:20:01 +00001073 case Instruction::Select:
1074 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]);
1075 case Instruction::InsertElement:
1076 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]);
1077 case Instruction::ExtractElement:
1078 return ConstantExpr::getExtractElement(Ops[0], Ops[1]);
Chris Lattner37e38352012-01-26 20:37:11 +00001079 case Instruction::InsertValue:
1080 return ConstantExpr::getInsertValue(Ops[0], Ops[1], getIndices());
1081 case Instruction::ExtractValue:
1082 return ConstantExpr::getExtractValue(Ops[0], getIndices());
Chris Lattner227816342006-07-14 22:20:01 +00001083 case Instruction::ShuffleVector:
1084 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2]);
Chris Lattnerb5d70302007-02-19 20:01:23 +00001085 case Instruction::GetElementPtr:
Chris Lattner37e38352012-01-26 20:37:11 +00001086 return ConstantExpr::getGetElementPtr(Ops[0], Ops.slice(1),
1087 cast<GEPOperator>(this)->isInBounds());
Reid Spencer266e42b2006-12-23 06:05:41 +00001088 case Instruction::ICmp:
1089 case Instruction::FCmp:
1090 return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1]);
Chris Lattner227816342006-07-14 22:20:01 +00001091 default:
1092 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattnerb9c86512009-12-29 02:14:09 +00001093 return ConstantExpr::get(getOpcode(), Ops[0], Ops[1], SubclassOptionalData);
Chris Lattner7c1018a2006-07-14 19:37:40 +00001094 }
1095}
1096
Chris Lattner2f7c9632001-06-06 20:29:01 +00001097
1098//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00001099// isValueValidForType implementations
1100
Chris Lattner229907c2011-07-18 04:54:35 +00001101bool ConstantInt::isValueValidForType(Type *Ty, uint64_t Val) {
Chris Lattner8326bd82012-01-26 00:42:34 +00001102 unsigned NumBits = Ty->getIntegerBitWidth(); // assert okay
1103 if (Ty->isIntegerTy(1))
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001104 return Val == 0 || Val == 1;
Reid Spencerd7a00d72007-02-05 23:47:56 +00001105 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001106 return true; // always true, has to fit in largest type
1107 uint64_t Max = (1ll << NumBits) - 1;
1108 return Val <= Max;
Reid Spencere7334722006-12-19 01:28:19 +00001109}
1110
Chris Lattner229907c2011-07-18 04:54:35 +00001111bool ConstantInt::isValueValidForType(Type *Ty, int64_t Val) {
Chris Lattner8326bd82012-01-26 00:42:34 +00001112 unsigned NumBits = Ty->getIntegerBitWidth();
1113 if (Ty->isIntegerTy(1))
Reid Spencera94d3942007-01-19 21:13:56 +00001114 return Val == 0 || Val == 1 || Val == -1;
Reid Spencerd7a00d72007-02-05 23:47:56 +00001115 if (NumBits >= 64)
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001116 return true; // always true, has to fit in largest type
1117 int64_t Min = -(1ll << (NumBits-1));
1118 int64_t Max = (1ll << (NumBits-1)) - 1;
1119 return (Val >= Min && Val <= Max);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001120}
1121
Chris Lattner229907c2011-07-18 04:54:35 +00001122bool ConstantFP::isValueValidForType(Type *Ty, const APFloat& Val) {
Dale Johannesend246b2c2007-08-30 00:23:21 +00001123 // convert modifies in place, so make a copy.
1124 APFloat Val2 = APFloat(Val);
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001125 bool losesInfo;
Chris Lattner6b727592004-06-17 18:19:28 +00001126 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001127 default:
1128 return false; // These can't be represented as floating point!
1129
Dale Johannesend246b2c2007-08-30 00:23:21 +00001130 // FIXME rounding mode needs to be more flexible
Dan Gohman518cda42011-12-17 00:04:22 +00001131 case Type::HalfTyID: {
1132 if (&Val2.getSemantics() == &APFloat::IEEEhalf)
1133 return true;
1134 Val2.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &losesInfo);
1135 return !losesInfo;
1136 }
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001137 case Type::FloatTyID: {
1138 if (&Val2.getSemantics() == &APFloat::IEEEsingle)
1139 return true;
1140 Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
1141 return !losesInfo;
1142 }
1143 case Type::DoubleTyID: {
Dan Gohman518cda42011-12-17 00:04:22 +00001144 if (&Val2.getSemantics() == &APFloat::IEEEhalf ||
1145 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen4f0bd682008-10-09 23:00:39 +00001146 &Val2.getSemantics() == &APFloat::IEEEdouble)
1147 return true;
1148 Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
1149 return !losesInfo;
1150 }
Dale Johannesenbdad8092007-08-09 22:51:36 +00001151 case Type::X86_FP80TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001152 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1153 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen028084e2007-09-12 03:30:33 +00001154 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1155 &Val2.getSemantics() == &APFloat::x87DoubleExtended;
Dale Johannesenbdad8092007-08-09 22:51:36 +00001156 case Type::FP128TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001157 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1158 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen028084e2007-09-12 03:30:33 +00001159 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1160 &Val2.getSemantics() == &APFloat::IEEEquad;
Dale Johannesen007aa372007-10-11 18:07:22 +00001161 case Type::PPC_FP128TyID:
Dan Gohman518cda42011-12-17 00:04:22 +00001162 return &Val2.getSemantics() == &APFloat::IEEEhalf ||
1163 &Val2.getSemantics() == &APFloat::IEEEsingle ||
Dale Johannesen007aa372007-10-11 18:07:22 +00001164 &Val2.getSemantics() == &APFloat::IEEEdouble ||
1165 &Val2.getSemantics() == &APFloat::PPCDoubleDouble;
Chris Lattner2f7c9632001-06-06 20:29:01 +00001166 }
Chris Lattneraa2372562006-05-24 17:04:05 +00001167}
Chris Lattner9655e542001-07-20 19:16:02 +00001168
Chris Lattner030af792012-01-24 05:42:11 +00001169
Chris Lattner49d855c2001-09-07 16:46:31 +00001170//===----------------------------------------------------------------------===//
Chris Lattner49d855c2001-09-07 16:46:31 +00001171// Factory Function Implementation
1172
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001173ConstantAggregateZero *ConstantAggregateZero::get(Type *Ty) {
Chris Lattner13ee7952010-08-28 04:09:24 +00001174 assert((Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()) &&
Owen Andersonb292b8c2009-07-30 23:03:37 +00001175 "Cannot create an aggregate zero of non-aggregate type!");
1176
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001177 ConstantAggregateZero *&Entry = Ty->getContext().pImpl->CAZConstants[Ty];
1178 if (Entry == 0)
1179 Entry = new ConstantAggregateZero(Ty);
Galina Kistanovafc259902012-07-13 01:25:27 +00001180
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001181 return Entry;
Owen Andersonb292b8c2009-07-30 23:03:37 +00001182}
1183
Chris Lattner030af792012-01-24 05:42:11 +00001184/// destroyConstant - Remove the constant from the constant table.
Dan Gohman92b551b2009-03-03 02:55:14 +00001185///
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001186void ConstantAggregateZero::destroyConstant() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001187 getContext().pImpl->CAZConstants.erase(getType());
Chris Lattner9fba3da2004-02-15 05:53:04 +00001188 destroyConstantImpl();
1189}
1190
Dan Gohman92b551b2009-03-03 02:55:14 +00001191/// destroyConstant - Remove the constant from the constant table...
1192///
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001193void ConstantArray::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001194 getType()->getContext().pImpl->ArrayConstants.remove(this);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001195 destroyConstantImpl();
1196}
1197
Chris Lattner81fabb02002-08-26 17:53:56 +00001198
Chris Lattner3462ae32001-12-03 22:26:30 +00001199//---- ConstantStruct::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +00001200//
Chris Lattnerb50d1352003-10-05 00:17:43 +00001201
Chris Lattnerd7a73302001-10-13 06:57:33 +00001202// destroyConstant - Remove the constant from the constant table...
Chris Lattner883ad0b2001-10-03 15:39:36 +00001203//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001204void ConstantStruct::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001205 getType()->getContext().pImpl->StructConstants.remove(this);
Chris Lattnerd7a73302001-10-13 06:57:33 +00001206 destroyConstantImpl();
1207}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001208
Brian Gaeke02209042004-08-20 06:00:58 +00001209// destroyConstant - Remove the constant from the constant table...
1210//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001211void ConstantVector::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001212 getType()->getContext().pImpl->VectorConstants.remove(this);
Brian Gaeke02209042004-08-20 06:00:58 +00001213 destroyConstantImpl();
1214}
1215
Dan Gohman07159202007-10-17 17:51:30 +00001216/// getSplatValue - If this is a splat constant, where all of the
1217/// elements have the same value, return that value. Otherwise return null.
Duncan Sandscf0ff032011-02-01 08:39:12 +00001218Constant *ConstantVector::getSplatValue() const {
Dan Gohman07159202007-10-17 17:51:30 +00001219 // Check out first element.
1220 Constant *Elt = getOperand(0);
1221 // Then make sure all remaining elements point to the same value.
1222 for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
Chris Lattnerd04e32d2011-07-17 06:01:30 +00001223 if (getOperand(I) != Elt)
1224 return 0;
Dan Gohman07159202007-10-17 17:51:30 +00001225 return Elt;
1226}
1227
Chris Lattner31b132c2009-10-28 00:01:44 +00001228//---- ConstantPointerNull::get() implementation.
Chris Lattnerd7a73302001-10-13 06:57:33 +00001229//
Chris Lattner98fa07b2003-05-23 20:03:32 +00001230
Chris Lattner229907c2011-07-18 04:54:35 +00001231ConstantPointerNull *ConstantPointerNull::get(PointerType *Ty) {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001232 ConstantPointerNull *&Entry = Ty->getContext().pImpl->CPNConstants[Ty];
1233 if (Entry == 0)
1234 Entry = new ConstantPointerNull(Ty);
Galina Kistanovafc259902012-07-13 01:25:27 +00001235
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001236 return Entry;
Chris Lattner883ad0b2001-10-03 15:39:36 +00001237}
1238
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001239// destroyConstant - Remove the constant from the constant table...
1240//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001241void ConstantPointerNull::destroyConstant() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001242 getContext().pImpl->CPNConstants.erase(getType());
1243 // Free the constant and any dangling references to it.
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001244 destroyConstantImpl();
1245}
1246
1247
Chris Lattner31b132c2009-10-28 00:01:44 +00001248//---- UndefValue::get() implementation.
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001249//
1250
Chris Lattner229907c2011-07-18 04:54:35 +00001251UndefValue *UndefValue::get(Type *Ty) {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001252 UndefValue *&Entry = Ty->getContext().pImpl->UVConstants[Ty];
1253 if (Entry == 0)
1254 Entry = new UndefValue(Ty);
Galina Kistanovafc259902012-07-13 01:25:27 +00001255
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001256 return Entry;
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001257}
1258
1259// destroyConstant - Remove the constant from the constant table.
1260//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001261void UndefValue::destroyConstant() {
Chris Lattnerc7f9fd42012-01-23 15:20:12 +00001262 // Free the constant and any dangling references to it.
1263 getContext().pImpl->UVConstants.erase(getType());
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001264 destroyConstantImpl();
1265}
1266
Chris Lattner31b132c2009-10-28 00:01:44 +00001267//---- BlockAddress::get() implementation.
1268//
1269
1270BlockAddress *BlockAddress::get(BasicBlock *BB) {
1271 assert(BB->getParent() != 0 && "Block must have a parent");
1272 return get(BB->getParent(), BB);
1273}
1274
1275BlockAddress *BlockAddress::get(Function *F, BasicBlock *BB) {
1276 BlockAddress *&BA =
1277 F->getContext().pImpl->BlockAddresses[std::make_pair(F, BB)];
1278 if (BA == 0)
1279 BA = new BlockAddress(F, BB);
Galina Kistanovafc259902012-07-13 01:25:27 +00001280
Chris Lattner31b132c2009-10-28 00:01:44 +00001281 assert(BA->getFunction() == F && "Basic block moved between functions");
1282 return BA;
1283}
1284
1285BlockAddress::BlockAddress(Function *F, BasicBlock *BB)
1286: Constant(Type::getInt8PtrTy(F->getContext()), Value::BlockAddressVal,
1287 &Op<0>(), 2) {
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001288 setOperand(0, F);
1289 setOperand(1, BB);
Chris Lattneraa99c942009-11-01 01:27:45 +00001290 BB->AdjustBlockAddressRefCount(1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001291}
1292
1293
1294// destroyConstant - Remove the constant from the constant table.
1295//
1296void BlockAddress::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001297 getFunction()->getType()->getContext().pImpl
Chris Lattner31b132c2009-10-28 00:01:44 +00001298 ->BlockAddresses.erase(std::make_pair(getFunction(), getBasicBlock()));
Chris Lattneraa99c942009-11-01 01:27:45 +00001299 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001300 destroyConstantImpl();
1301}
1302
1303void BlockAddress::replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U) {
1304 // This could be replacing either the Basic Block or the Function. In either
1305 // case, we have to remove the map entry.
1306 Function *NewF = getFunction();
1307 BasicBlock *NewBB = getBasicBlock();
Galina Kistanovafc259902012-07-13 01:25:27 +00001308
Chris Lattner31b132c2009-10-28 00:01:44 +00001309 if (U == &Op<0>())
1310 NewF = cast<Function>(To);
1311 else
1312 NewBB = cast<BasicBlock>(To);
Galina Kistanovafc259902012-07-13 01:25:27 +00001313
Chris Lattner31b132c2009-10-28 00:01:44 +00001314 // See if the 'new' entry already exists, if not, just update this in place
1315 // and return early.
1316 BlockAddress *&NewBA =
1317 getContext().pImpl->BlockAddresses[std::make_pair(NewF, NewBB)];
1318 if (NewBA == 0) {
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001319 getBasicBlock()->AdjustBlockAddressRefCount(-1);
Galina Kistanovafc259902012-07-13 01:25:27 +00001320
Chris Lattner31b132c2009-10-28 00:01:44 +00001321 // Remove the old entry, this can't cause the map to rehash (just a
1322 // tombstone will get added).
1323 getContext().pImpl->BlockAddresses.erase(std::make_pair(getFunction(),
1324 getBasicBlock()));
1325 NewBA = this;
Chris Lattnerc559a9f2009-11-01 03:03:03 +00001326 setOperand(0, NewF);
1327 setOperand(1, NewBB);
1328 getBasicBlock()->AdjustBlockAddressRefCount(1);
Chris Lattner31b132c2009-10-28 00:01:44 +00001329 return;
1330 }
1331
1332 // Otherwise, I do need to replace this with an existing value.
1333 assert(NewBA != this && "I didn't contain From!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001334
Chris Lattner31b132c2009-10-28 00:01:44 +00001335 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00001336 replaceAllUsesWith(NewBA);
Galina Kistanovafc259902012-07-13 01:25:27 +00001337
Chris Lattner31b132c2009-10-28 00:01:44 +00001338 destroyConstant();
1339}
1340
1341//---- ConstantExpr::get() implementations.
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001342//
Reid Spencer8d9336d2006-12-31 05:26:44 +00001343
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001344/// This is a utility function to handle folding of casts and lookup of the
Duncan Sands7d6c8ae2008-03-30 19:38:55 +00001345/// cast in the ExprConstants map. It is used by the various get* methods below.
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001346static inline Constant *getFoldedCast(
Chris Lattner229907c2011-07-18 04:54:35 +00001347 Instruction::CastOps opc, Constant *C, Type *Ty) {
Chris Lattner815ae2b2003-10-07 22:19:19 +00001348 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001349 // Fold a few common cases
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001350 if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001351 return FC;
Chris Lattneracdbe712003-04-17 19:24:48 +00001352
Owen Anderson1584a292009-08-04 20:25:11 +00001353 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
1354
Vikram S. Adve4c485332002-07-15 18:19:33 +00001355 // Look up the constant in the table first to ensure uniqueness
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001356 std::vector<Constant*> argVec(1, C);
Reid Spenceree3c9912006-12-04 05:19:50 +00001357 ExprMapKeyType Key(opc, argVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00001358
Owen Anderson1584a292009-08-04 20:25:11 +00001359 return pImpl->ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001360}
Galina Kistanovafc259902012-07-13 01:25:27 +00001361
Chris Lattner229907c2011-07-18 04:54:35 +00001362Constant *ConstantExpr::getCast(unsigned oc, Constant *C, Type *Ty) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001363 Instruction::CastOps opc = Instruction::CastOps(oc);
1364 assert(Instruction::isCast(opc) && "opcode out of range");
1365 assert(C && Ty && "Null arguments to getCast");
Chris Lattner37bc78a2010-01-26 21:51:43 +00001366 assert(CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!");
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001367
1368 switch (opc) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001369 default:
1370 llvm_unreachable("Invalid cast opcode");
Chris Lattner37bc78a2010-01-26 21:51:43 +00001371 case Instruction::Trunc: return getTrunc(C, Ty);
1372 case Instruction::ZExt: return getZExt(C, Ty);
1373 case Instruction::SExt: return getSExt(C, Ty);
1374 case Instruction::FPTrunc: return getFPTrunc(C, Ty);
1375 case Instruction::FPExt: return getFPExtend(C, Ty);
1376 case Instruction::UIToFP: return getUIToFP(C, Ty);
1377 case Instruction::SIToFP: return getSIToFP(C, Ty);
1378 case Instruction::FPToUI: return getFPToUI(C, Ty);
1379 case Instruction::FPToSI: return getFPToSI(C, Ty);
1380 case Instruction::PtrToInt: return getPtrToInt(C, Ty);
1381 case Instruction::IntToPtr: return getIntToPtr(C, Ty);
1382 case Instruction::BitCast: return getBitCast(C, Ty);
Chris Lattner1ece6f82005-01-01 15:59:57 +00001383 }
Galina Kistanovafc259902012-07-13 01:25:27 +00001384}
Reid Spencerf37dc652006-12-05 19:14:13 +00001385
Chris Lattner229907c2011-07-18 04:54:35 +00001386Constant *ConstantExpr::getZExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001387 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001388 return getBitCast(C, Ty);
1389 return getZExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001390}
1391
Chris Lattner229907c2011-07-18 04:54:35 +00001392Constant *ConstantExpr::getSExtOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001393 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001394 return getBitCast(C, Ty);
1395 return getSExt(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001396}
1397
Chris Lattner229907c2011-07-18 04:54:35 +00001398Constant *ConstantExpr::getTruncOrBitCast(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001399 if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001400 return getBitCast(C, Ty);
1401 return getTrunc(C, Ty);
Reid Spencer5c140882006-12-04 20:17:56 +00001402}
1403
Chris Lattner229907c2011-07-18 04:54:35 +00001404Constant *ConstantExpr::getPointerCast(Constant *S, Type *Ty) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001405 assert(S->getType()->isPointerTy() && "Invalid cast");
1406 assert((Ty->isIntegerTy() || Ty->isPointerTy()) && "Invalid cast");
Reid Spencerbc245a02006-12-05 03:25:26 +00001407
Duncan Sands9dff9be2010-02-15 16:12:20 +00001408 if (Ty->isIntegerTy())
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001409 return getPtrToInt(S, Ty);
1410 return getBitCast(S, Ty);
Reid Spencerbc245a02006-12-05 03:25:26 +00001411}
1412
Chris Lattner229907c2011-07-18 04:54:35 +00001413Constant *ConstantExpr::getIntegerCast(Constant *C, Type *Ty,
Reid Spencer56521c42006-12-12 00:51:07 +00001414 bool isSigned) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001415 assert(C->getType()->isIntOrIntVectorTy() &&
1416 Ty->isIntOrIntVectorTy() && "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001417 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1418 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencer56521c42006-12-12 00:51:07 +00001419 Instruction::CastOps opcode =
1420 (SrcBits == DstBits ? Instruction::BitCast :
1421 (SrcBits > DstBits ? Instruction::Trunc :
1422 (isSigned ? Instruction::SExt : Instruction::ZExt)));
1423 return getCast(opcode, C, Ty);
1424}
1425
Chris Lattner229907c2011-07-18 04:54:35 +00001426Constant *ConstantExpr::getFPCast(Constant *C, Type *Ty) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001427 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer56521c42006-12-12 00:51:07 +00001428 "Invalid cast");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001429 unsigned SrcBits = C->getType()->getScalarSizeInBits();
1430 unsigned DstBits = Ty->getScalarSizeInBits();
Reid Spencerca104e82006-12-12 05:38:50 +00001431 if (SrcBits == DstBits)
1432 return C; // Avoid a useless cast
Reid Spencer56521c42006-12-12 00:51:07 +00001433 Instruction::CastOps opcode =
Jay Foad9f32cfd2011-01-27 14:44:55 +00001434 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
Reid Spencer56521c42006-12-12 00:51:07 +00001435 return getCast(opcode, C, Ty);
1436}
1437
Chris Lattner229907c2011-07-18 04:54:35 +00001438Constant *ConstantExpr::getTrunc(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001439#ifndef NDEBUG
1440 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1441 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1442#endif
1443 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001444 assert(C->getType()->isIntOrIntVectorTy() && "Trunc operand must be integer");
1445 assert(Ty->isIntOrIntVectorTy() && "Trunc produces only integral");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001446 assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001447 "SrcTy must be larger than DestTy for Trunc!");
1448
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001449 return getFoldedCast(Instruction::Trunc, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001450}
1451
Chris Lattner229907c2011-07-18 04:54:35 +00001452Constant *ConstantExpr::getSExt(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001453#ifndef NDEBUG
1454 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1455 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1456#endif
1457 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001458 assert(C->getType()->isIntOrIntVectorTy() && "SExt operand must be integral");
1459 assert(Ty->isIntOrIntVectorTy() && "SExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001460 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001461 "SrcTy must be smaller than DestTy for SExt!");
1462
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001463 return getFoldedCast(Instruction::SExt, C, Ty);
Chris Lattnerdd284742004-04-04 23:20:30 +00001464}
1465
Chris Lattner229907c2011-07-18 04:54:35 +00001466Constant *ConstantExpr::getZExt(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001467#ifndef NDEBUG
1468 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1469 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1470#endif
1471 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001472 assert(C->getType()->isIntOrIntVectorTy() && "ZEXt operand must be integral");
1473 assert(Ty->isIntOrIntVectorTy() && "ZExt produces only integer");
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001474 assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001475 "SrcTy must be smaller than DestTy for ZExt!");
1476
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001477 return getFoldedCast(Instruction::ZExt, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001478}
1479
Chris Lattner229907c2011-07-18 04:54:35 +00001480Constant *ConstantExpr::getFPTrunc(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001481#ifndef NDEBUG
1482 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1483 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1484#endif
1485 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001486 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001487 C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001488 "This is an illegal floating point truncation!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001489 return getFoldedCast(Instruction::FPTrunc, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001490}
1491
Chris Lattner229907c2011-07-18 04:54:35 +00001492Constant *ConstantExpr::getFPExtend(Constant *C, Type *Ty) {
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001493#ifndef NDEBUG
1494 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1495 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1496#endif
1497 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001498 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
Dan Gohman7ccc52f2009-06-15 22:12:54 +00001499 C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001500 "This is an illegal floating point extension!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001501 return getFoldedCast(Instruction::FPExt, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001502}
1503
Chris Lattner229907c2011-07-18 04:54:35 +00001504Constant *ConstantExpr::getUIToFP(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001505#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001506 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1507 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001508#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001509 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001510 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001511 "This is an illegal uint to floating point cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001512 return getFoldedCast(Instruction::UIToFP, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001513}
1514
Chris Lattner229907c2011-07-18 04:54:35 +00001515Constant *ConstantExpr::getSIToFP(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001516#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001517 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1518 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001519#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001520 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001521 assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001522 "This is an illegal sint to floating point cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001523 return getFoldedCast(Instruction::SIToFP, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001524}
1525
Chris Lattner229907c2011-07-18 04:54:35 +00001526Constant *ConstantExpr::getFPToUI(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001527#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001528 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1529 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001530#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001531 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001532 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001533 "This is an illegal floating point to uint cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001534 return getFoldedCast(Instruction::FPToUI, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001535}
1536
Chris Lattner229907c2011-07-18 04:54:35 +00001537Constant *ConstantExpr::getFPToSI(Constant *C, Type *Ty) {
Devang Pateld26344d2008-11-03 23:20:04 +00001538#ifndef NDEBUG
Nate Begemand4d45c22007-11-17 03:58:34 +00001539 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1540 bool toVec = Ty->getTypeID() == Type::VectorTyID;
Devang Pateld26344d2008-11-03 23:20:04 +00001541#endif
Nate Begemand4d45c22007-11-17 03:58:34 +00001542 assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001543 assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
Nate Begemand4d45c22007-11-17 03:58:34 +00001544 "This is an illegal floating point to sint cast!");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001545 return getFoldedCast(Instruction::FPToSI, C, Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001546}
1547
Chris Lattner229907c2011-07-18 04:54:35 +00001548Constant *ConstantExpr::getPtrToInt(Constant *C, Type *DstTy) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00001549 assert(C->getType()->getScalarType()->isPointerTy() &&
1550 "PtrToInt source must be pointer or pointer vector");
1551 assert(DstTy->getScalarType()->isIntegerTy() &&
1552 "PtrToInt destination must be integer or integer vector");
Chris Lattner8a3df542012-01-25 01:32:59 +00001553 assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
Nick Lewyckyff509622012-01-25 03:20:12 +00001554 if (isa<VectorType>(C->getType()))
Chris Lattner8326bd82012-01-26 00:42:34 +00001555 assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&&
Chris Lattner8a3df542012-01-25 01:32:59 +00001556 "Invalid cast between a different number of vector elements");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001557 return getFoldedCast(Instruction::PtrToInt, C, DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001558}
1559
Chris Lattner229907c2011-07-18 04:54:35 +00001560Constant *ConstantExpr::getIntToPtr(Constant *C, Type *DstTy) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00001561 assert(C->getType()->getScalarType()->isIntegerTy() &&
1562 "IntToPtr source must be integer or integer vector");
1563 assert(DstTy->getScalarType()->isPointerTy() &&
1564 "IntToPtr destination must be a pointer or pointer vector");
Chris Lattner8a3df542012-01-25 01:32:59 +00001565 assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
Nick Lewyckyff509622012-01-25 03:20:12 +00001566 if (isa<VectorType>(C->getType()))
Chris Lattner8326bd82012-01-26 00:42:34 +00001567 assert(C->getType()->getVectorNumElements()==DstTy->getVectorNumElements()&&
Chris Lattner8a3df542012-01-25 01:32:59 +00001568 "Invalid cast between a different number of vector elements");
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001569 return getFoldedCast(Instruction::IntToPtr, C, DstTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001570}
1571
Chris Lattner229907c2011-07-18 04:54:35 +00001572Constant *ConstantExpr::getBitCast(Constant *C, Type *DstTy) {
Chris Lattner37bc78a2010-01-26 21:51:43 +00001573 assert(CastInst::castIsValid(Instruction::BitCast, C, DstTy) &&
1574 "Invalid constantexpr bitcast!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001575
Chris Lattnercbeda872009-03-21 06:55:54 +00001576 // It is common to ask for a bitcast of a value to its own type, handle this
1577 // speedily.
1578 if (C->getType() == DstTy) return C;
Galina Kistanovafc259902012-07-13 01:25:27 +00001579
Owen Anderson0d2de8c2009-06-20 00:24:58 +00001580 return getFoldedCast(Instruction::BitCast, C, DstTy);
Chris Lattnerdd284742004-04-04 23:20:30 +00001581}
1582
Chris Lattner887ecac2011-07-09 18:23:52 +00001583Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2,
1584 unsigned Flags) {
1585 // Check the operands for consistency first.
Reid Spencer7eb55b32006-11-02 01:53:59 +00001586 assert(Opcode >= Instruction::BinaryOpsBegin &&
1587 Opcode < Instruction::BinaryOpsEnd &&
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001588 "Invalid opcode in binary constant expression");
1589 assert(C1->getType() == C2->getType() &&
1590 "Operand types in binary constant expression should match");
Galina Kistanovafc259902012-07-13 01:25:27 +00001591
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001592#ifndef NDEBUG
1593 switch (Opcode) {
Dan Gohmana5b96452009-06-04 22:49:04 +00001594 case Instruction::Add:
Reid Spencer7eb55b32006-11-02 01:53:59 +00001595 case Instruction::Sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00001596 case Instruction::Mul:
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001597 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001598 assert(C1->getType()->isIntOrIntVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001599 "Tried to create an integer operation on a non-integer type!");
1600 break;
1601 case Instruction::FAdd:
1602 case Instruction::FSub:
1603 case Instruction::FMul:
1604 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001605 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohmana5b96452009-06-04 22:49:04 +00001606 "Tried to create a floating-point operation on a "
1607 "non-floating-point type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001608 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001609 case Instruction::UDiv:
1610 case Instruction::SDiv:
1611 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001612 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001613 "Tried to create an arithmetic operation on a non-arithmetic type!");
1614 break;
1615 case Instruction::FDiv:
1616 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001617 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001618 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001619 break;
Reid Spencer7eb55b32006-11-02 01:53:59 +00001620 case Instruction::URem:
1621 case Instruction::SRem:
1622 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001623 assert(C1->getType()->isIntOrIntVectorTy() &&
Reid Spencer7eb55b32006-11-02 01:53:59 +00001624 "Tried to create an arithmetic operation on a non-arithmetic type!");
1625 break;
1626 case Instruction::FRem:
1627 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001628 assert(C1->getType()->isFPOrFPVectorTy() &&
Dan Gohman7889f2b2009-06-15 22:25:12 +00001629 "Tried to create an arithmetic operation on a non-arithmetic type!");
Reid Spencer7eb55b32006-11-02 01:53:59 +00001630 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001631 case Instruction::And:
1632 case Instruction::Or:
1633 case Instruction::Xor:
1634 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001635 assert(C1->getType()->isIntOrIntVectorTy() &&
Misha Brukman3852f652005-01-27 06:46:38 +00001636 "Tried to create a logical operation on a non-integral type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001637 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001638 case Instruction::Shl:
Reid Spencerfdff9382006-11-08 06:47:33 +00001639 case Instruction::LShr:
1640 case Instruction::AShr:
Reid Spencer2341c222007-02-02 02:16:23 +00001641 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001642 assert(C1->getType()->isIntOrIntVectorTy() &&
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001643 "Tried to create a shift operation on a non-integer type!");
1644 break;
1645 default:
1646 break;
1647 }
1648#endif
1649
Chris Lattner887ecac2011-07-09 18:23:52 +00001650 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1651 return FC; // Fold a few common cases.
Galina Kistanovafc259902012-07-13 01:25:27 +00001652
Chris Lattner887ecac2011-07-09 18:23:52 +00001653 std::vector<Constant*> argVec(1, C1);
1654 argVec.push_back(C2);
1655 ExprMapKeyType Key(Opcode, argVec, 0, Flags);
Galina Kistanovafc259902012-07-13 01:25:27 +00001656
Chris Lattner887ecac2011-07-09 18:23:52 +00001657 LLVMContextImpl *pImpl = C1->getContext().pImpl;
1658 return pImpl->ExprConstants.getOrCreate(C1->getType(), Key);
Reid Spencera009d0d2006-12-04 21:35:24 +00001659}
1660
Chris Lattner229907c2011-07-18 04:54:35 +00001661Constant *ConstantExpr::getSizeOf(Type* Ty) {
Owen Anderson487375e2009-07-29 18:55:55 +00001662 // sizeof is implemented as: (i64) gep (Ty*)null, 1
1663 // Note that a non-inbounds gep is used, as null isn't within any object.
Owen Anderson55f1c092009-08-13 21:58:54 +00001664 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001665 Constant *GEP = getGetElementPtr(
Jay Foaded8db7d2011-07-21 14:31:17 +00001666 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001667 return getPtrToInt(GEP,
1668 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001669}
1670
Chris Lattner229907c2011-07-18 04:54:35 +00001671Constant *ConstantExpr::getAlignOf(Type* Ty) {
Dan Gohmancf913832010-01-28 02:15:55 +00001672 // alignof is implemented as: (i64) gep ({i1,Ty}*)null, 0, 1
Dan Gohman50c09d02009-08-11 17:57:01 +00001673 // Note that a non-inbounds gep is used, as null isn't within any object.
Chris Lattner229907c2011-07-18 04:54:35 +00001674 Type *AligningTy =
Chris Lattnerf3f545e2011-06-18 22:48:56 +00001675 StructType::get(Type::getInt1Ty(Ty->getContext()), Ty, NULL);
Micah Villmow51e72462012-10-24 17:25:11 +00001676 Constant *NullPtr = Constant::getNullValue(AligningTy->getPointerTo());
Dan Gohmana9be7392010-01-28 02:43:22 +00001677 Constant *Zero = ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0);
Owen Anderson55f1c092009-08-13 21:58:54 +00001678 Constant *One = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
Owen Anderson487375e2009-07-29 18:55:55 +00001679 Constant *Indices[2] = { Zero, One };
Jay Foaded8db7d2011-07-21 14:31:17 +00001680 Constant *GEP = getGetElementPtr(NullPtr, Indices);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001681 return getPtrToInt(GEP,
1682 Type::getInt64Ty(Ty->getContext()));
Owen Anderson487375e2009-07-29 18:55:55 +00001683}
1684
Chris Lattner229907c2011-07-18 04:54:35 +00001685Constant *ConstantExpr::getOffsetOf(StructType* STy, unsigned FieldNo) {
Dan Gohmanede94e62010-02-01 16:37:38 +00001686 return getOffsetOf(STy, ConstantInt::get(Type::getInt32Ty(STy->getContext()),
1687 FieldNo));
1688}
1689
Chris Lattner229907c2011-07-18 04:54:35 +00001690Constant *ConstantExpr::getOffsetOf(Type* Ty, Constant *FieldNo) {
Dan Gohmanff3af7252009-08-16 21:26:11 +00001691 // offsetof is implemented as: (i64) gep (Ty*)null, 0, FieldNo
1692 // Note that a non-inbounds gep is used, as null isn't within any object.
1693 Constant *GEPIdx[] = {
Dan Gohmanede94e62010-02-01 16:37:38 +00001694 ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0),
1695 FieldNo
Dan Gohmanff3af7252009-08-16 21:26:11 +00001696 };
1697 Constant *GEP = getGetElementPtr(
Jay Foaded8db7d2011-07-21 14:31:17 +00001698 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
Dan Gohman3cdcc3f2010-04-12 22:12:29 +00001699 return getPtrToInt(GEP,
1700 Type::getInt64Ty(Ty->getContext()));
Dan Gohmanff3af7252009-08-16 21:26:11 +00001701}
Owen Anderson487375e2009-07-29 18:55:55 +00001702
Chris Lattner887ecac2011-07-09 18:23:52 +00001703Constant *ConstantExpr::getCompare(unsigned short Predicate,
1704 Constant *C1, Constant *C2) {
Reid Spencera009d0d2006-12-04 21:35:24 +00001705 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001706
Chris Lattner887ecac2011-07-09 18:23:52 +00001707 switch (Predicate) {
1708 default: llvm_unreachable("Invalid CmpInst predicate");
1709 case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
1710 case CmpInst::FCMP_OGE: case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE:
1711 case CmpInst::FCMP_ONE: case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO:
1712 case CmpInst::FCMP_UEQ: case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE:
1713 case CmpInst::FCMP_ULT: case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
1714 case CmpInst::FCMP_TRUE:
1715 return getFCmp(Predicate, C1, C2);
Galina Kistanovafc259902012-07-13 01:25:27 +00001716
Chris Lattner887ecac2011-07-09 18:23:52 +00001717 case CmpInst::ICMP_EQ: case CmpInst::ICMP_NE: case CmpInst::ICMP_UGT:
1718 case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE:
1719 case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT:
1720 case CmpInst::ICMP_SLE:
1721 return getICmp(Predicate, C1, C2);
1722 }
Chris Lattner29ca2c62004-08-04 18:50:09 +00001723}
1724
Chris Lattner887ecac2011-07-09 18:23:52 +00001725Constant *ConstantExpr::getSelect(Constant *C, Constant *V1, Constant *V2) {
Chris Lattner41632132008-12-29 00:16:12 +00001726 assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
Chris Lattner6e415c02004-03-12 05:54:04 +00001727
Chris Lattner887ecac2011-07-09 18:23:52 +00001728 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
1729 return SC; // Fold common cases
Chris Lattner6e415c02004-03-12 05:54:04 +00001730
1731 std::vector<Constant*> argVec(3, C);
1732 argVec[1] = V1;
1733 argVec[2] = V2;
Reid Spenceree3c9912006-12-04 05:19:50 +00001734 ExprMapKeyType Key(Instruction::Select, argVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00001735
Chris Lattner887ecac2011-07-09 18:23:52 +00001736 LLVMContextImpl *pImpl = C->getContext().pImpl;
1737 return pImpl->ExprConstants.getOrCreate(V1->getType(), Key);
Chris Lattner6e415c02004-03-12 05:54:04 +00001738}
1739
Jay Foaded8db7d2011-07-21 14:31:17 +00001740Constant *ConstantExpr::getGetElementPtr(Constant *C, ArrayRef<Value *> Idxs,
1741 bool InBounds) {
1742 if (Constant *FC = ConstantFoldGetElementPtr(C, InBounds, Idxs))
Chris Lattner94c8d292011-02-11 05:34:33 +00001743 return FC; // Fold a few common cases.
Dan Gohman1b849082009-09-07 23:54:19 +00001744
Chris Lattner887ecac2011-07-09 18:23:52 +00001745 // Get the result type of the getelementptr!
Jay Foadd1b78492011-07-25 09:48:08 +00001746 Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), Idxs);
Chris Lattner887ecac2011-07-09 18:23:52 +00001747 assert(Ty && "GEP indices invalid!");
Chris Lattner8326bd82012-01-26 00:42:34 +00001748 unsigned AS = C->getType()->getPointerAddressSpace();
Chris Lattner887ecac2011-07-09 18:23:52 +00001749 Type *ReqTy = Ty->getPointerTo(AS);
Galina Kistanovafc259902012-07-13 01:25:27 +00001750
Duncan Sands19d0b472010-02-16 11:11:14 +00001751 assert(C->getType()->isPointerTy() &&
Dan Gohman1b849082009-09-07 23:54:19 +00001752 "Non-pointer type for constant GetElementPtr expression");
1753 // Look up the constant in the table first to ensure uniqueness
1754 std::vector<Constant*> ArgVec;
Jay Foaded8db7d2011-07-21 14:31:17 +00001755 ArgVec.reserve(1 + Idxs.size());
Dan Gohman1b849082009-09-07 23:54:19 +00001756 ArgVec.push_back(C);
Jay Foaded8db7d2011-07-21 14:31:17 +00001757 for (unsigned i = 0, e = Idxs.size(); i != e; ++i)
Dan Gohman1b849082009-09-07 23:54:19 +00001758 ArgVec.push_back(cast<Constant>(Idxs[i]));
1759 const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec, 0,
Chris Lattner94c8d292011-02-11 05:34:33 +00001760 InBounds ? GEPOperator::IsInBounds : 0);
Galina Kistanovafc259902012-07-13 01:25:27 +00001761
Chris Lattner887ecac2011-07-09 18:23:52 +00001762 LLVMContextImpl *pImpl = C->getContext().pImpl;
Dan Gohman1b849082009-09-07 23:54:19 +00001763 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
1764}
1765
Reid Spenceree3c9912006-12-04 05:19:50 +00001766Constant *
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001767ConstantExpr::getICmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spenceree3c9912006-12-04 05:19:50 +00001768 assert(LHS->getType() == RHS->getType());
1769 assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE &&
1770 pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid ICmp Predicate");
1771
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001772 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00001773 return FC; // Fold a few common cases...
1774
1775 // Look up the constant in the table first to ensure uniqueness
1776 std::vector<Constant*> ArgVec;
1777 ArgVec.push_back(LHS);
1778 ArgVec.push_back(RHS);
Reid Spencerb1537492006-12-24 18:42:29 +00001779 // Get the key type with both the opcode and predicate
Reid Spenceree3c9912006-12-04 05:19:50 +00001780 const ExprMapKeyType Key(Instruction::ICmp, ArgVec, pred);
Owen Anderson61794042009-06-17 20:10:08 +00001781
Chris Lattner229907c2011-07-18 04:54:35 +00001782 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1783 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001784 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1785
Owen Anderson1584a292009-08-04 20:25:11 +00001786 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001787 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00001788}
1789
1790Constant *
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001791ConstantExpr::getFCmp(unsigned short pred, Constant *LHS, Constant *RHS) {
Reid Spenceree3c9912006-12-04 05:19:50 +00001792 assert(LHS->getType() == RHS->getType());
1793 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate");
1794
Chris Lattnerf5edeeb2010-02-01 20:48:08 +00001795 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
Reid Spenceree3c9912006-12-04 05:19:50 +00001796 return FC; // Fold a few common cases...
1797
1798 // Look up the constant in the table first to ensure uniqueness
1799 std::vector<Constant*> ArgVec;
1800 ArgVec.push_back(LHS);
1801 ArgVec.push_back(RHS);
Reid Spencerb1537492006-12-24 18:42:29 +00001802 // Get the key type with both the opcode and predicate
Reid Spenceree3c9912006-12-04 05:19:50 +00001803 const ExprMapKeyType Key(Instruction::FCmp, ArgVec, pred);
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001804
Chris Lattner229907c2011-07-18 04:54:35 +00001805 Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1806 if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001807 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1808
Owen Anderson1584a292009-08-04 20:25:11 +00001809 LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
Nick Lewycky9e26c1c2010-01-21 07:03:21 +00001810 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
Reid Spenceree3c9912006-12-04 05:19:50 +00001811}
1812
Robert Bocchino23004482006-01-10 19:05:34 +00001813Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001814 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00001815 "Tried to create extractelement operation on non-vector type!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001816 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer2546b762007-01-26 07:37:34 +00001817 "Extractelement index must be i32 type!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001818
Chris Lattner887ecac2011-07-09 18:23:52 +00001819 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
Chris Lattner09660c92009-12-30 20:25:09 +00001820 return FC; // Fold a few common cases.
Galina Kistanovafc259902012-07-13 01:25:27 +00001821
Robert Bocchinoca27f032006-01-17 20:07:22 +00001822 // Look up the constant in the table first to ensure uniqueness
1823 std::vector<Constant*> ArgVec(1, Val);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001824 ArgVec.push_back(Idx);
Chris Lattner887ecac2011-07-09 18:23:52 +00001825 const ExprMapKeyType Key(Instruction::ExtractElement,ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00001826
Chris Lattner887ecac2011-07-09 18:23:52 +00001827 LLVMContextImpl *pImpl = Val->getContext().pImpl;
Chris Lattner8326bd82012-01-26 00:42:34 +00001828 Type *ReqTy = Val->getType()->getVectorElementType();
Owen Anderson1584a292009-08-04 20:25:11 +00001829 return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001830}
1831
1832Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
1833 Constant *Idx) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001834 assert(Val->getType()->isVectorTy() &&
Reid Spencer09575ba2007-02-15 03:39:18 +00001835 "Tried to create insertelement operation on non-vector type!");
Chris Lattner8326bd82012-01-26 00:42:34 +00001836 assert(Elt->getType() == Val->getType()->getVectorElementType() &&
1837 "Insertelement types must match!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00001838 assert(Idx->getType()->isIntegerTy(32) &&
Reid Spencer2546b762007-01-26 07:37:34 +00001839 "Insertelement index must be i32 type!");
Robert Bocchinoca27f032006-01-17 20:07:22 +00001840
Chris Lattner887ecac2011-07-09 18:23:52 +00001841 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
1842 return FC; // Fold a few common cases.
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001843 // Look up the constant in the table first to ensure uniqueness
Chris Lattner887ecac2011-07-09 18:23:52 +00001844 std::vector<Constant*> ArgVec(1, Val);
1845 ArgVec.push_back(Elt);
1846 ArgVec.push_back(Idx);
1847 const ExprMapKeyType Key(Instruction::InsertElement,ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00001848
Chris Lattner887ecac2011-07-09 18:23:52 +00001849 LLVMContextImpl *pImpl = Val->getContext().pImpl;
1850 return pImpl->ExprConstants.getOrCreate(Val->getType(), Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001851}
1852
1853Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
1854 Constant *Mask) {
1855 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
1856 "Invalid shuffle vector constant expr operands!");
Nate Begeman94aa38d2009-02-12 21:28:33 +00001857
Chris Lattner887ecac2011-07-09 18:23:52 +00001858 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
1859 return FC; // Fold a few common cases.
1860
Chris Lattner8326bd82012-01-26 00:42:34 +00001861 unsigned NElts = Mask->getType()->getVectorNumElements();
1862 Type *EltTy = V1->getType()->getVectorElementType();
Chris Lattner229907c2011-07-18 04:54:35 +00001863 Type *ShufTy = VectorType::get(EltTy, NElts);
Chris Lattner887ecac2011-07-09 18:23:52 +00001864
1865 // Look up the constant in the table first to ensure uniqueness
1866 std::vector<Constant*> ArgVec(1, V1);
1867 ArgVec.push_back(V2);
1868 ArgVec.push_back(Mask);
1869 const ExprMapKeyType Key(Instruction::ShuffleVector,ArgVec);
Galina Kistanovafc259902012-07-13 01:25:27 +00001870
Chris Lattner887ecac2011-07-09 18:23:52 +00001871 LLVMContextImpl *pImpl = ShufTy->getContext().pImpl;
1872 return pImpl->ExprConstants.getOrCreate(ShufTy, Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001873}
1874
Chris Lattner887ecac2011-07-09 18:23:52 +00001875Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
Jay Foad57aa6362011-07-13 10:26:04 +00001876 ArrayRef<unsigned> Idxs) {
1877 assert(ExtractValueInst::getIndexedType(Agg->getType(),
1878 Idxs) == Val->getType() &&
Dan Gohman12fce772008-05-15 19:50:34 +00001879 "insertvalue indices invalid!");
Dan Gohman0752bff2008-05-23 00:36:11 +00001880 assert(Agg->getType()->isFirstClassType() &&
Chris Lattner6ebfbf52011-07-12 05:26:21 +00001881 "Non-first-class type for constant insertvalue expression");
Jay Foad57aa6362011-07-13 10:26:04 +00001882 Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs);
Chris Lattner6ebfbf52011-07-12 05:26:21 +00001883 assert(FC && "insertvalue constant expr couldn't be folded!");
Dan Gohmand5d24f62008-07-21 23:30:30 +00001884 return FC;
Dan Gohman12fce772008-05-15 19:50:34 +00001885}
1886
Chris Lattner887ecac2011-07-09 18:23:52 +00001887Constant *ConstantExpr::getExtractValue(Constant *Agg,
Jay Foad57aa6362011-07-13 10:26:04 +00001888 ArrayRef<unsigned> Idxs) {
Dan Gohman0752bff2008-05-23 00:36:11 +00001889 assert(Agg->getType()->isFirstClassType() &&
Chris Lattner887ecac2011-07-09 18:23:52 +00001890 "Tried to create extractelement operation on non-first-class type!");
Dan Gohman12fce772008-05-15 19:50:34 +00001891
Chris Lattner229907c2011-07-18 04:54:35 +00001892 Type *ReqTy = ExtractValueInst::getIndexedType(Agg->getType(), Idxs);
Chandler Carruth9db56b82011-07-10 09:45:35 +00001893 (void)ReqTy;
Chris Lattner887ecac2011-07-09 18:23:52 +00001894 assert(ReqTy && "extractvalue indices invalid!");
Galina Kistanovafc259902012-07-13 01:25:27 +00001895
Dan Gohman0752bff2008-05-23 00:36:11 +00001896 assert(Agg->getType()->isFirstClassType() &&
1897 "Non-first-class type for constant extractvalue expression");
Jay Foad57aa6362011-07-13 10:26:04 +00001898 Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs);
Dan Gohmand5d24f62008-07-21 23:30:30 +00001899 assert(FC && "ExtractValue constant expr couldn't be folded!");
1900 return FC;
Dan Gohman12fce772008-05-15 19:50:34 +00001901}
1902
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001903Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001904 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00001905 "Cannot NEG a nonintegral value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001906 return getSub(ConstantFP::getZeroValueForNegation(C->getType()),
1907 C, HasNUW, HasNSW);
Owen Anderson487375e2009-07-29 18:55:55 +00001908}
1909
Chris Lattnera676c0f2011-02-07 16:40:21 +00001910Constant *ConstantExpr::getFNeg(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001911 assert(C->getType()->isFPOrFPVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00001912 "Cannot FNEG a non-floating-point value!");
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001913 return getFSub(ConstantFP::getZeroValueForNegation(C->getType()), C);
Owen Anderson487375e2009-07-29 18:55:55 +00001914}
1915
Chris Lattnera676c0f2011-02-07 16:40:21 +00001916Constant *ConstantExpr::getNot(Constant *C) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00001917 assert(C->getType()->isIntOrIntVectorTy() &&
Owen Anderson487375e2009-07-29 18:55:55 +00001918 "Cannot NOT a nonintegral value!");
Owen Anderson5a1acd92009-07-31 20:28:14 +00001919 return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType()));
Owen Anderson487375e2009-07-29 18:55:55 +00001920}
1921
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001922Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2,
1923 bool HasNUW, bool HasNSW) {
1924 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1925 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1926 return get(Instruction::Add, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001927}
1928
Chris Lattnera676c0f2011-02-07 16:40:21 +00001929Constant *ConstantExpr::getFAdd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001930 return get(Instruction::FAdd, C1, C2);
1931}
1932
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001933Constant *ConstantExpr::getSub(Constant *C1, Constant *C2,
1934 bool HasNUW, bool HasNSW) {
1935 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1936 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1937 return get(Instruction::Sub, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001938}
1939
Chris Lattnera676c0f2011-02-07 16:40:21 +00001940Constant *ConstantExpr::getFSub(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001941 return get(Instruction::FSub, C1, C2);
1942}
1943
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001944Constant *ConstantExpr::getMul(Constant *C1, Constant *C2,
1945 bool HasNUW, bool HasNSW) {
1946 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1947 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1948 return get(Instruction::Mul, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001949}
1950
Chris Lattnera676c0f2011-02-07 16:40:21 +00001951Constant *ConstantExpr::getFMul(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001952 return get(Instruction::FMul, C1, C2);
1953}
1954
Chris Lattner0d75eac2011-02-09 16:43:07 +00001955Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2, bool isExact) {
1956 return get(Instruction::UDiv, C1, C2,
1957 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001958}
1959
Chris Lattner0d75eac2011-02-09 16:43:07 +00001960Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2, bool isExact) {
1961 return get(Instruction::SDiv, C1, C2,
1962 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00001963}
1964
Chris Lattnera676c0f2011-02-07 16:40:21 +00001965Constant *ConstantExpr::getFDiv(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001966 return get(Instruction::FDiv, C1, C2);
1967}
1968
Chris Lattnera676c0f2011-02-07 16:40:21 +00001969Constant *ConstantExpr::getURem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001970 return get(Instruction::URem, C1, C2);
1971}
1972
Chris Lattnera676c0f2011-02-07 16:40:21 +00001973Constant *ConstantExpr::getSRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001974 return get(Instruction::SRem, C1, C2);
1975}
1976
Chris Lattnera676c0f2011-02-07 16:40:21 +00001977Constant *ConstantExpr::getFRem(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001978 return get(Instruction::FRem, C1, C2);
1979}
1980
Chris Lattnera676c0f2011-02-07 16:40:21 +00001981Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001982 return get(Instruction::And, C1, C2);
1983}
1984
Chris Lattnera676c0f2011-02-07 16:40:21 +00001985Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001986 return get(Instruction::Or, C1, C2);
1987}
1988
Chris Lattnera676c0f2011-02-07 16:40:21 +00001989Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
Owen Anderson487375e2009-07-29 18:55:55 +00001990 return get(Instruction::Xor, C1, C2);
1991}
1992
Chris Lattnere9b4ad72011-02-10 07:01:55 +00001993Constant *ConstantExpr::getShl(Constant *C1, Constant *C2,
1994 bool HasNUW, bool HasNSW) {
1995 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1996 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1997 return get(Instruction::Shl, C1, C2, Flags);
Owen Anderson487375e2009-07-29 18:55:55 +00001998}
1999
Chris Lattner0d75eac2011-02-09 16:43:07 +00002000Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2, bool isExact) {
2001 return get(Instruction::LShr, C1, C2,
2002 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002003}
2004
Chris Lattner0d75eac2011-02-09 16:43:07 +00002005Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2, bool isExact) {
2006 return get(Instruction::AShr, C1, C2,
2007 isExact ? PossiblyExactOperator::IsExact : 0);
Owen Anderson487375e2009-07-29 18:55:55 +00002008}
2009
Duncan Sandsd7aeefe2012-06-12 14:33:56 +00002010/// getBinOpIdentity - Return the identity for the given binary operation,
2011/// i.e. a constant C such that X op C = X and C op X = X for every X. It
Duncan Sands318a89d2012-06-13 09:42:13 +00002012/// returns null if the operator doesn't have an identity.
Duncan Sandsd7aeefe2012-06-12 14:33:56 +00002013Constant *ConstantExpr::getBinOpIdentity(unsigned Opcode, Type *Ty) {
2014 switch (Opcode) {
2015 default:
Duncan Sands318a89d2012-06-13 09:42:13 +00002016 // Doesn't have an identity.
2017 return 0;
2018
Duncan Sandsd7aeefe2012-06-12 14:33:56 +00002019 case Instruction::Add:
2020 case Instruction::Or:
2021 case Instruction::Xor:
2022 return Constant::getNullValue(Ty);
2023
2024 case Instruction::Mul:
2025 return ConstantInt::get(Ty, 1);
2026
2027 case Instruction::And:
2028 return Constant::getAllOnesValue(Ty);
2029 }
2030}
2031
Duncan Sands318a89d2012-06-13 09:42:13 +00002032/// getBinOpAbsorber - Return the absorbing element for the given binary
2033/// operation, i.e. a constant C such that X op C = C and C op X = C for
2034/// every X. For example, this returns zero for integer multiplication.
2035/// It returns null if the operator doesn't have an absorbing element.
2036Constant *ConstantExpr::getBinOpAbsorber(unsigned Opcode, Type *Ty) {
2037 switch (Opcode) {
2038 default:
2039 // Doesn't have an absorber.
2040 return 0;
2041
2042 case Instruction::Or:
2043 return Constant::getAllOnesValue(Ty);
2044
2045 case Instruction::And:
2046 case Instruction::Mul:
2047 return Constant::getNullValue(Ty);
2048 }
2049}
2050
Vikram S. Adve4c485332002-07-15 18:19:33 +00002051// destroyConstant - Remove the constant from the constant table...
2052//
Owen Anderson0d2de8c2009-06-20 00:24:58 +00002053void ConstantExpr::destroyConstant() {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002054 getType()->getContext().pImpl->ExprConstants.remove(this);
Vikram S. Adve4c485332002-07-15 18:19:33 +00002055 destroyConstantImpl();
Vikram S. Adve4e537b22002-07-14 23:13:17 +00002056}
2057
Chris Lattner3cd8c562002-07-30 18:54:25 +00002058const char *ConstantExpr::getOpcodeName() const {
2059 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve4e537b22002-07-14 23:13:17 +00002060}
Reid Spencer1ebe1ab2004-07-17 23:48:33 +00002061
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002062
2063
2064GetElementPtrConstantExpr::
Chris Lattnera474bb22012-01-26 20:40:56 +00002065GetElementPtrConstantExpr(Constant *C, ArrayRef<Constant*> IdxList,
Chris Lattner229907c2011-07-18 04:54:35 +00002066 Type *DestTy)
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002067 : ConstantExpr(DestTy, Instruction::GetElementPtr,
2068 OperandTraits<GetElementPtrConstantExpr>::op_end(this)
2069 - (IdxList.size()+1), IdxList.size()+1) {
2070 OperandList[0] = C;
2071 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
2072 OperandList[i+1] = IdxList[i];
2073}
2074
Chris Lattner3756b912012-01-23 22:57:10 +00002075//===----------------------------------------------------------------------===//
2076// ConstantData* implementations
2077
2078void ConstantDataArray::anchor() {}
2079void ConstantDataVector::anchor() {}
2080
Chris Lattnere4f3f102012-01-24 04:43:41 +00002081/// getElementType - Return the element type of the array/vector.
2082Type *ConstantDataSequential::getElementType() const {
2083 return getType()->getElementType();
2084}
2085
Chris Lattner5d4497b2012-01-24 09:31:43 +00002086StringRef ConstantDataSequential::getRawDataValues() const {
Chris Lattner00245f42012-01-24 13:41:11 +00002087 return StringRef(DataElements, getNumElements()*getElementByteSize());
Chris Lattner5d4497b2012-01-24 09:31:43 +00002088}
2089
Chris Lattner030af792012-01-24 05:42:11 +00002090/// isElementTypeCompatible - Return true if a ConstantDataSequential can be
2091/// formed with a vector or array of the specified element type.
2092/// ConstantDataArray only works with normal float and int types that are
2093/// stored densely in memory, not with things like i42 or x86_f80.
2094bool ConstantDataSequential::isElementTypeCompatible(const Type *Ty) {
Chris Lattnere4f3f102012-01-24 04:43:41 +00002095 if (Ty->isFloatTy() || Ty->isDoubleTy()) return true;
2096 if (const IntegerType *IT = dyn_cast<IntegerType>(Ty)) {
2097 switch (IT->getBitWidth()) {
2098 case 8:
2099 case 16:
2100 case 32:
2101 case 64:
2102 return true;
2103 default: break;
2104 }
2105 }
2106 return false;
2107}
2108
Chris Lattner00245f42012-01-24 13:41:11 +00002109/// getNumElements - Return the number of elements in the array or vector.
2110unsigned ConstantDataSequential::getNumElements() const {
Chris Lattner8a3df542012-01-25 01:32:59 +00002111 if (ArrayType *AT = dyn_cast<ArrayType>(getType()))
2112 return AT->getNumElements();
Chris Lattner8326bd82012-01-26 00:42:34 +00002113 return getType()->getVectorNumElements();
Chris Lattner00245f42012-01-24 13:41:11 +00002114}
2115
2116
Chris Lattnere4f3f102012-01-24 04:43:41 +00002117/// getElementByteSize - Return the size in bytes of the elements in the data.
2118uint64_t ConstantDataSequential::getElementByteSize() const {
2119 return getElementType()->getPrimitiveSizeInBits()/8;
2120}
2121
2122/// getElementPointer - Return the start of the specified element.
2123const char *ConstantDataSequential::getElementPointer(unsigned Elt) const {
Chris Lattner00245f42012-01-24 13:41:11 +00002124 assert(Elt < getNumElements() && "Invalid Elt");
Chris Lattnere4f3f102012-01-24 04:43:41 +00002125 return DataElements+Elt*getElementByteSize();
2126}
2127
2128
Chris Lattner3756b912012-01-23 22:57:10 +00002129/// isAllZeros - return true if the array is empty or all zeros.
2130static bool isAllZeros(StringRef Arr) {
2131 for (StringRef::iterator I = Arr.begin(), E = Arr.end(); I != E; ++I)
2132 if (*I != 0)
2133 return false;
2134 return true;
2135}
Chris Lattner030af792012-01-24 05:42:11 +00002136
Chris Lattner3756b912012-01-23 22:57:10 +00002137/// getImpl - This is the underlying implementation of all of the
2138/// ConstantDataSequential::get methods. They all thunk down to here, providing
Chris Lattnerf06039b2012-01-30 18:19:30 +00002139/// the correct element type. We take the bytes in as a StringRef because
Chris Lattner3756b912012-01-23 22:57:10 +00002140/// we *want* an underlying "char*" to avoid TBAA type punning violations.
2141Constant *ConstantDataSequential::getImpl(StringRef Elements, Type *Ty) {
Chris Lattner8326bd82012-01-26 00:42:34 +00002142 assert(isElementTypeCompatible(Ty->getSequentialElementType()));
Chris Lattner139822f2012-01-24 14:17:05 +00002143 // If the elements are all zero or there are no elements, return a CAZ, which
2144 // is more dense and canonical.
Chris Lattner3756b912012-01-23 22:57:10 +00002145 if (isAllZeros(Elements))
2146 return ConstantAggregateZero::get(Ty);
2147
2148 // Do a lookup to see if we have already formed one of these.
2149 StringMap<ConstantDataSequential*>::MapEntryTy &Slot =
2150 Ty->getContext().pImpl->CDSConstants.GetOrCreateValue(Elements);
Galina Kistanovafc259902012-07-13 01:25:27 +00002151
Chris Lattner3756b912012-01-23 22:57:10 +00002152 // The bucket can point to a linked list of different CDS's that have the same
2153 // body but different types. For example, 0,0,0,1 could be a 4 element array
2154 // of i8, or a 1-element array of i32. They'll both end up in the same
2155 /// StringMap bucket, linked up by their Next pointers. Walk the list.
2156 ConstantDataSequential **Entry = &Slot.getValue();
2157 for (ConstantDataSequential *Node = *Entry; Node != 0;
2158 Entry = &Node->Next, Node = *Entry)
2159 if (Node->getType() == Ty)
2160 return Node;
Galina Kistanovafc259902012-07-13 01:25:27 +00002161
Chris Lattner3756b912012-01-23 22:57:10 +00002162 // Okay, we didn't get a hit. Create a node of the right class, link it in,
2163 // and return it.
2164 if (isa<ArrayType>(Ty))
2165 return *Entry = new ConstantDataArray(Ty, Slot.getKeyData());
2166
2167 assert(isa<VectorType>(Ty));
2168 return *Entry = new ConstantDataVector(Ty, Slot.getKeyData());
2169}
2170
2171void ConstantDataSequential::destroyConstant() {
Chris Lattner3756b912012-01-23 22:57:10 +00002172 // Remove the constant from the StringMap.
2173 StringMap<ConstantDataSequential*> &CDSConstants =
2174 getType()->getContext().pImpl->CDSConstants;
Galina Kistanovafc259902012-07-13 01:25:27 +00002175
Chris Lattner3756b912012-01-23 22:57:10 +00002176 StringMap<ConstantDataSequential*>::iterator Slot =
Chris Lattner5d4497b2012-01-24 09:31:43 +00002177 CDSConstants.find(getRawDataValues());
Chris Lattner3756b912012-01-23 22:57:10 +00002178
2179 assert(Slot != CDSConstants.end() && "CDS not found in uniquing table");
2180
2181 ConstantDataSequential **Entry = &Slot->getValue();
2182
2183 // Remove the entry from the hash table.
2184 if ((*Entry)->Next == 0) {
2185 // If there is only one value in the bucket (common case) it must be this
2186 // entry, and removing the entry should remove the bucket completely.
2187 assert((*Entry) == this && "Hash mismatch in ConstantDataSequential");
2188 getContext().pImpl->CDSConstants.erase(Slot);
2189 } else {
2190 // Otherwise, there are multiple entries linked off the bucket, unlink the
2191 // node we care about but keep the bucket around.
2192 for (ConstantDataSequential *Node = *Entry; ;
2193 Entry = &Node->Next, Node = *Entry) {
2194 assert(Node && "Didn't find entry in its uniquing hash table!");
2195 // If we found our entry, unlink it from the list and we're done.
2196 if (Node == this) {
2197 *Entry = Node->Next;
2198 break;
2199 }
2200 }
2201 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002202
Chris Lattner3756b912012-01-23 22:57:10 +00002203 // If we were part of a list, make sure that we don't delete the list that is
2204 // still owned by the uniquing map.
2205 Next = 0;
Galina Kistanovafc259902012-07-13 01:25:27 +00002206
Chris Lattner3756b912012-01-23 22:57:10 +00002207 // Finally, actually delete it.
2208 destroyConstantImpl();
2209}
2210
2211/// get() constructors - Return a constant with array type with an element
2212/// count and element type matching the ArrayRef passed in. Note that this
2213/// can return a ConstantAggregateZero object.
Chris Lattner20683932012-01-24 14:04:40 +00002214Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint8_t> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002215 Type *Ty = ArrayType::get(Type::getInt8Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002216 const char *Data = reinterpret_cast<const char *>(Elts.data());
2217 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*1), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002218}
Chris Lattner20683932012-01-24 14:04:40 +00002219Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002220 Type *Ty = ArrayType::get(Type::getInt16Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002221 const char *Data = reinterpret_cast<const char *>(Elts.data());
2222 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*2), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002223}
Chris Lattner20683932012-01-24 14:04:40 +00002224Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002225 Type *Ty = ArrayType::get(Type::getInt32Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002226 const char *Data = reinterpret_cast<const char *>(Elts.data());
2227 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002228}
Chris Lattner20683932012-01-24 14:04:40 +00002229Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002230 Type *Ty = ArrayType::get(Type::getInt64Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002231 const char *Data = reinterpret_cast<const char *>(Elts.data());
2232 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002233}
Chris Lattner20683932012-01-24 14:04:40 +00002234Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<float> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002235 Type *Ty = ArrayType::get(Type::getFloatTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002236 const char *Data = reinterpret_cast<const char *>(Elts.data());
2237 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002238}
Chris Lattner20683932012-01-24 14:04:40 +00002239Constant *ConstantDataArray::get(LLVMContext &Context, ArrayRef<double> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002240 Type *Ty = ArrayType::get(Type::getDoubleTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002241 const char *Data = reinterpret_cast<const char *>(Elts.data());
2242 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002243}
2244
Chris Lattner20683932012-01-24 14:04:40 +00002245/// getString - This method constructs a CDS and initializes it with a text
2246/// string. The default behavior (AddNull==true) causes a null terminator to
2247/// be placed at the end of the array (increasing the length of the string by
2248/// one more than the StringRef would normally indicate. Pass AddNull=false
2249/// to disable this behavior.
2250Constant *ConstantDataArray::getString(LLVMContext &Context,
2251 StringRef Str, bool AddNull) {
Galina Kistanovafc259902012-07-13 01:25:27 +00002252 if (!AddNull) {
2253 const uint8_t *Data = reinterpret_cast<const uint8_t *>(Str.data());
2254 return get(Context, ArrayRef<uint8_t>(const_cast<uint8_t *>(Data),
2255 Str.size()));
2256 }
2257
Chris Lattner20683932012-01-24 14:04:40 +00002258 SmallVector<uint8_t, 64> ElementVals;
2259 ElementVals.append(Str.begin(), Str.end());
2260 ElementVals.push_back(0);
2261 return get(Context, ElementVals);
2262}
Chris Lattner3756b912012-01-23 22:57:10 +00002263
2264/// get() constructors - Return a constant with vector type with an element
2265/// count and element type matching the ArrayRef passed in. Note that this
2266/// can return a ConstantAggregateZero object.
Chris Lattner20683932012-01-24 14:04:40 +00002267Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint8_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002268 Type *Ty = VectorType::get(Type::getInt8Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002269 const char *Data = reinterpret_cast<const char *>(Elts.data());
2270 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*1), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002271}
Chris Lattner20683932012-01-24 14:04:40 +00002272Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002273 Type *Ty = VectorType::get(Type::getInt16Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002274 const char *Data = reinterpret_cast<const char *>(Elts.data());
2275 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*2), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002276}
Chris Lattner20683932012-01-24 14:04:40 +00002277Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002278 Type *Ty = VectorType::get(Type::getInt32Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002279 const char *Data = reinterpret_cast<const char *>(Elts.data());
2280 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002281}
Chris Lattner20683932012-01-24 14:04:40 +00002282Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
Chris Lattner3756b912012-01-23 22:57:10 +00002283 Type *Ty = VectorType::get(Type::getInt64Ty(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002284 const char *Data = reinterpret_cast<const char *>(Elts.data());
2285 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002286}
Chris Lattner20683932012-01-24 14:04:40 +00002287Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<float> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002288 Type *Ty = VectorType::get(Type::getFloatTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002289 const char *Data = reinterpret_cast<const char *>(Elts.data());
2290 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*4), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002291}
Chris Lattner20683932012-01-24 14:04:40 +00002292Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<double> Elts) {
Chris Lattner3756b912012-01-23 22:57:10 +00002293 Type *Ty = VectorType::get(Type::getDoubleTy(Context), Elts.size());
Galina Kistanovafc259902012-07-13 01:25:27 +00002294 const char *Data = reinterpret_cast<const char *>(Elts.data());
2295 return getImpl(StringRef(const_cast<char *>(Data), Elts.size()*8), Ty);
Chris Lattner3756b912012-01-23 22:57:10 +00002296}
2297
Chris Lattnere9eed292012-01-25 05:19:54 +00002298Constant *ConstantDataVector::getSplat(unsigned NumElts, Constant *V) {
2299 assert(isElementTypeCompatible(V->getType()) &&
2300 "Element type not compatible with ConstantData");
2301 if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
2302 if (CI->getType()->isIntegerTy(8)) {
2303 SmallVector<uint8_t, 16> Elts(NumElts, CI->getZExtValue());
2304 return get(V->getContext(), Elts);
2305 }
2306 if (CI->getType()->isIntegerTy(16)) {
2307 SmallVector<uint16_t, 16> Elts(NumElts, CI->getZExtValue());
2308 return get(V->getContext(), Elts);
2309 }
2310 if (CI->getType()->isIntegerTy(32)) {
2311 SmallVector<uint32_t, 16> Elts(NumElts, CI->getZExtValue());
2312 return get(V->getContext(), Elts);
2313 }
2314 assert(CI->getType()->isIntegerTy(64) && "Unsupported ConstantData type");
2315 SmallVector<uint64_t, 16> Elts(NumElts, CI->getZExtValue());
2316 return get(V->getContext(), Elts);
2317 }
2318
Chris Lattner978fe0c2012-01-30 06:21:21 +00002319 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V)) {
2320 if (CFP->getType()->isFloatTy()) {
2321 SmallVector<float, 16> Elts(NumElts, CFP->getValueAPF().convertToFloat());
2322 return get(V->getContext(), Elts);
2323 }
2324 if (CFP->getType()->isDoubleTy()) {
2325 SmallVector<double, 16> Elts(NumElts,
2326 CFP->getValueAPF().convertToDouble());
2327 return get(V->getContext(), Elts);
2328 }
Chris Lattnere9eed292012-01-25 05:19:54 +00002329 }
Chris Lattner978fe0c2012-01-30 06:21:21 +00002330 return ConstantVector::getSplat(NumElts, V);
Chris Lattnere9eed292012-01-25 05:19:54 +00002331}
2332
2333
Chris Lattnere4f3f102012-01-24 04:43:41 +00002334/// getElementAsInteger - If this is a sequential container of integers (of
2335/// any size), return the specified element in the low bits of a uint64_t.
2336uint64_t ConstantDataSequential::getElementAsInteger(unsigned Elt) const {
2337 assert(isa<IntegerType>(getElementType()) &&
2338 "Accessor can only be used when element is an integer");
2339 const char *EltPtr = getElementPointer(Elt);
Galina Kistanovafc259902012-07-13 01:25:27 +00002340
Chris Lattnere4f3f102012-01-24 04:43:41 +00002341 // The data is stored in host byte order, make sure to cast back to the right
2342 // type to load with the right endianness.
Chris Lattner8326bd82012-01-26 00:42:34 +00002343 switch (getElementType()->getIntegerBitWidth()) {
Craig Topperc514b542012-02-05 22:14:15 +00002344 default: llvm_unreachable("Invalid bitwidth for CDS");
Galina Kistanovafc259902012-07-13 01:25:27 +00002345 case 8:
2346 return *const_cast<uint8_t *>(reinterpret_cast<const uint8_t *>(EltPtr));
2347 case 16:
2348 return *const_cast<uint16_t *>(reinterpret_cast<const uint16_t *>(EltPtr));
2349 case 32:
2350 return *const_cast<uint32_t *>(reinterpret_cast<const uint32_t *>(EltPtr));
2351 case 64:
2352 return *const_cast<uint64_t *>(reinterpret_cast<const uint64_t *>(EltPtr));
Chris Lattnere4f3f102012-01-24 04:43:41 +00002353 }
2354}
2355
2356/// getElementAsAPFloat - If this is a sequential container of floating point
2357/// type, return the specified element as an APFloat.
2358APFloat ConstantDataSequential::getElementAsAPFloat(unsigned Elt) const {
2359 const char *EltPtr = getElementPointer(Elt);
2360
2361 switch (getElementType()->getTypeID()) {
Nick Lewyckyff509622012-01-25 03:20:12 +00002362 default:
Craig Topperc514b542012-02-05 22:14:15 +00002363 llvm_unreachable("Accessor can only be used when element is float/double!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002364 case Type::FloatTyID: {
2365 const float *FloatPrt = reinterpret_cast<const float *>(EltPtr);
2366 return APFloat(*const_cast<float *>(FloatPrt));
2367 }
2368 case Type::DoubleTyID: {
2369 const double *DoublePtr = reinterpret_cast<const double *>(EltPtr);
2370 return APFloat(*const_cast<double *>(DoublePtr));
2371 }
Chris Lattnere4f3f102012-01-24 04:43:41 +00002372 }
2373}
2374
2375/// getElementAsFloat - If this is an sequential container of floats, return
2376/// the specified element as a float.
2377float ConstantDataSequential::getElementAsFloat(unsigned Elt) const {
2378 assert(getElementType()->isFloatTy() &&
2379 "Accessor can only be used when element is a 'float'");
Galina Kistanovafc259902012-07-13 01:25:27 +00002380 const float *EltPtr = reinterpret_cast<const float *>(getElementPointer(Elt));
2381 return *const_cast<float *>(EltPtr);
Chris Lattnere4f3f102012-01-24 04:43:41 +00002382}
2383
2384/// getElementAsDouble - If this is an sequential container of doubles, return
2385/// the specified element as a float.
2386double ConstantDataSequential::getElementAsDouble(unsigned Elt) const {
2387 assert(getElementType()->isDoubleTy() &&
2388 "Accessor can only be used when element is a 'float'");
Galina Kistanovafc259902012-07-13 01:25:27 +00002389 const double *EltPtr =
2390 reinterpret_cast<const double *>(getElementPointer(Elt));
2391 return *const_cast<double *>(EltPtr);
Chris Lattnere4f3f102012-01-24 04:43:41 +00002392}
2393
2394/// getElementAsConstant - Return a Constant for a specified index's element.
2395/// Note that this has to compute a new constant to return, so it isn't as
2396/// efficient as getElementAsInteger/Float/Double.
2397Constant *ConstantDataSequential::getElementAsConstant(unsigned Elt) const {
2398 if (getElementType()->isFloatTy() || getElementType()->isDoubleTy())
2399 return ConstantFP::get(getContext(), getElementAsAPFloat(Elt));
Galina Kistanovafc259902012-07-13 01:25:27 +00002400
Chris Lattnere4f3f102012-01-24 04:43:41 +00002401 return ConstantInt::get(getElementType(), getElementAsInteger(Elt));
2402}
2403
Chris Lattner5dd4d872012-01-24 09:01:07 +00002404/// isString - This method returns true if this is an array of i8.
2405bool ConstantDataSequential::isString() const {
2406 return isa<ArrayType>(getType()) && getElementType()->isIntegerTy(8);
2407}
Chris Lattner3756b912012-01-23 22:57:10 +00002408
Chris Lattner5dd4d872012-01-24 09:01:07 +00002409/// isCString - This method returns true if the array "isString", ends with a
2410/// nul byte, and does not contains any other nul bytes.
2411bool ConstantDataSequential::isCString() const {
2412 if (!isString())
2413 return false;
Galina Kistanovafc259902012-07-13 01:25:27 +00002414
Chris Lattner5dd4d872012-01-24 09:01:07 +00002415 StringRef Str = getAsString();
Galina Kistanovafc259902012-07-13 01:25:27 +00002416
Chris Lattner5dd4d872012-01-24 09:01:07 +00002417 // The last value must be nul.
2418 if (Str.back() != 0) return false;
Galina Kistanovafc259902012-07-13 01:25:27 +00002419
Chris Lattner5dd4d872012-01-24 09:01:07 +00002420 // Other elements must be non-nul.
2421 return Str.drop_back().find(0) == StringRef::npos;
2422}
Chris Lattner3756b912012-01-23 22:57:10 +00002423
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002424/// getSplatValue - If this is a splat constant, meaning that all of the
2425/// elements have the same value, return that value. Otherwise return NULL.
2426Constant *ConstantDataVector::getSplatValue() const {
2427 const char *Base = getRawDataValues().data();
Galina Kistanovafc259902012-07-13 01:25:27 +00002428
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002429 // Compare elements 1+ to the 0'th element.
2430 unsigned EltSize = getElementByteSize();
2431 for (unsigned i = 1, e = getNumElements(); i != e; ++i)
2432 if (memcmp(Base, Base+i*EltSize, EltSize))
2433 return 0;
Galina Kistanovafc259902012-07-13 01:25:27 +00002434
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002435 // If they're all the same, return the 0th one as a representative.
2436 return getElementAsConstant(0);
2437}
Chris Lattnera3b94ba2010-03-30 20:48:48 +00002438
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002439//===----------------------------------------------------------------------===//
2440// replaceUsesOfWithOnConstant implementations
2441
Chris Lattner913849b2007-08-21 00:55:23 +00002442/// replaceUsesOfWithOnConstant - Update this constant array to change uses of
2443/// 'From' to be uses of 'To'. This must update the uniquing data structures
2444/// etc.
2445///
2446/// Note that we intentionally replace all uses of From with To here. Consider
2447/// a large array that uses 'From' 1000 times. By handling this case all here,
2448/// ConstantArray::replaceUsesOfWithOnConstant is only invoked once, and that
2449/// single invocation handles all 1000 uses. Handling them one at a time would
2450/// work, but would be really slow because it would have to unique each updated
2451/// array instance.
Chris Lattner31b132c2009-10-28 00:01:44 +00002452///
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002453void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002454 Use *U) {
Owen Andersonc2c79322009-07-28 18:32:17 +00002455 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2456 Constant *ToC = cast<Constant>(To);
2457
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002458 LLVMContextImpl *pImpl = getType()->getContext().pImpl;
Owen Andersonc2c79322009-07-28 18:32:17 +00002459
Talin46e9b442012-02-05 20:54:10 +00002460 SmallVector<Constant*, 8> Values;
2461 LLVMContextImpl::ArrayConstantsTy::LookupKey Lookup;
2462 Lookup.first = cast<ArrayType>(getType());
Owen Andersonc2c79322009-07-28 18:32:17 +00002463 Values.reserve(getNumOperands()); // Build replacement array.
2464
Galina Kistanovafc259902012-07-13 01:25:27 +00002465 // Fill values with the modified operands of the constant array. Also,
Owen Andersonc2c79322009-07-28 18:32:17 +00002466 // compute whether this turns into an all-zeros array.
Owen Andersonc2c79322009-07-28 18:32:17 +00002467 unsigned NumUpdated = 0;
Galina Kistanovafc259902012-07-13 01:25:27 +00002468
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002469 // Keep track of whether all the values in the array are "ToC".
2470 bool AllSame = true;
2471 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2472 Constant *Val = cast<Constant>(O->get());
2473 if (Val == From) {
2474 Val = ToC;
2475 ++NumUpdated;
Owen Andersonc2c79322009-07-28 18:32:17 +00002476 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002477 Values.push_back(Val);
Talin46e9b442012-02-05 20:54:10 +00002478 AllSame &= Val == ToC;
Owen Andersonc2c79322009-07-28 18:32:17 +00002479 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002480
Owen Andersonc2c79322009-07-28 18:32:17 +00002481 Constant *Replacement = 0;
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002482 if (AllSame && ToC->isNullValue()) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002483 Replacement = ConstantAggregateZero::get(getType());
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002484 } else if (AllSame && isa<UndefValue>(ToC)) {
2485 Replacement = UndefValue::get(getType());
Owen Andersonc2c79322009-07-28 18:32:17 +00002486 } else {
2487 // Check to see if we have this array type already.
Talin46e9b442012-02-05 20:54:10 +00002488 Lookup.second = makeArrayRef(Values);
Owen Andersonc2c79322009-07-28 18:32:17 +00002489 LLVMContextImpl::ArrayConstantsTy::MapTy::iterator I =
Talin46e9b442012-02-05 20:54:10 +00002490 pImpl->ArrayConstants.find(Lookup);
Galina Kistanovafc259902012-07-13 01:25:27 +00002491
Talin46e9b442012-02-05 20:54:10 +00002492 if (I != pImpl->ArrayConstants.map_end()) {
2493 Replacement = I->first;
Owen Andersonc2c79322009-07-28 18:32:17 +00002494 } else {
2495 // Okay, the new shape doesn't exist in the system yet. Instead of
2496 // creating a new constant array, inserting it, replaceallusesof'ing the
2497 // old with the new, then deleting the old... just update the current one
2498 // in place!
Talin46e9b442012-02-05 20:54:10 +00002499 pImpl->ArrayConstants.remove(this);
Galina Kistanovafc259902012-07-13 01:25:27 +00002500
Owen Andersonc2c79322009-07-28 18:32:17 +00002501 // Update to the new value. Optimize for the case when we have a single
2502 // operand that we're changing, but handle bulk updates efficiently.
2503 if (NumUpdated == 1) {
2504 unsigned OperandToUpdate = U - OperandList;
2505 assert(getOperand(OperandToUpdate) == From &&
2506 "ReplaceAllUsesWith broken!");
2507 setOperand(OperandToUpdate, ToC);
2508 } else {
2509 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
2510 if (getOperand(i) == From)
2511 setOperand(i, ToC);
2512 }
Talin46e9b442012-02-05 20:54:10 +00002513 pImpl->ArrayConstants.insert(this);
Owen Andersonc2c79322009-07-28 18:32:17 +00002514 return;
2515 }
2516 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002517
Chris Lattnerb64419a2005-10-03 22:51:37 +00002518 // Otherwise, I do need to replace this with an existing value.
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002519 assert(Replacement != this && "I didn't contain From!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002520
Chris Lattner7a1450d2005-10-04 18:13:04 +00002521 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002522 replaceAllUsesWith(Replacement);
Galina Kistanovafc259902012-07-13 01:25:27 +00002523
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002524 // Delete the old constant!
2525 destroyConstant();
2526}
2527
2528void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002529 Use *U) {
Owen Anderson45308b52009-07-27 22:29:26 +00002530 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2531 Constant *ToC = cast<Constant>(To);
2532
2533 unsigned OperandToUpdate = U-OperandList;
2534 assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!");
2535
Talin46e9b442012-02-05 20:54:10 +00002536 SmallVector<Constant*, 8> Values;
2537 LLVMContextImpl::StructConstantsTy::LookupKey Lookup;
2538 Lookup.first = cast<StructType>(getType());
Owen Anderson45308b52009-07-27 22:29:26 +00002539 Values.reserve(getNumOperands()); // Build replacement struct.
Galina Kistanovafc259902012-07-13 01:25:27 +00002540
2541 // Fill values with the modified operands of the constant struct. Also,
Owen Anderson45308b52009-07-27 22:29:26 +00002542 // compute whether this turns into an all-zeros struct.
2543 bool isAllZeros = false;
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002544 bool isAllUndef = false;
2545 if (ToC->isNullValue()) {
Owen Anderson45308b52009-07-27 22:29:26 +00002546 isAllZeros = true;
2547 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2548 Constant *Val = cast<Constant>(O->get());
2549 Values.push_back(Val);
2550 if (isAllZeros) isAllZeros = Val->isNullValue();
2551 }
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002552 } else if (isa<UndefValue>(ToC)) {
2553 isAllUndef = true;
2554 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2555 Constant *Val = cast<Constant>(O->get());
2556 Values.push_back(Val);
2557 if (isAllUndef) isAllUndef = isa<UndefValue>(Val);
2558 }
2559 } else {
2560 for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O)
2561 Values.push_back(cast<Constant>(O->get()));
Owen Anderson45308b52009-07-27 22:29:26 +00002562 }
2563 Values[OperandToUpdate] = ToC;
Galina Kistanovafc259902012-07-13 01:25:27 +00002564
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002565 LLVMContextImpl *pImpl = getContext().pImpl;
Galina Kistanovafc259902012-07-13 01:25:27 +00002566
Owen Anderson45308b52009-07-27 22:29:26 +00002567 Constant *Replacement = 0;
2568 if (isAllZeros) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002569 Replacement = ConstantAggregateZero::get(getType());
Chris Lattnerf14a67f2012-01-26 02:31:22 +00002570 } else if (isAllUndef) {
2571 Replacement = UndefValue::get(getType());
Owen Anderson45308b52009-07-27 22:29:26 +00002572 } else {
Chris Lattner718da702010-07-17 06:13:52 +00002573 // Check to see if we have this struct type already.
Talin46e9b442012-02-05 20:54:10 +00002574 Lookup.second = makeArrayRef(Values);
Owen Anderson45308b52009-07-27 22:29:26 +00002575 LLVMContextImpl::StructConstantsTy::MapTy::iterator I =
Talin46e9b442012-02-05 20:54:10 +00002576 pImpl->StructConstants.find(Lookup);
Galina Kistanovafc259902012-07-13 01:25:27 +00002577
Talin46e9b442012-02-05 20:54:10 +00002578 if (I != pImpl->StructConstants.map_end()) {
2579 Replacement = I->first;
Owen Anderson45308b52009-07-27 22:29:26 +00002580 } else {
2581 // Okay, the new shape doesn't exist in the system yet. Instead of
2582 // creating a new constant struct, inserting it, replaceallusesof'ing the
2583 // old with the new, then deleting the old... just update the current one
2584 // in place!
Talin46e9b442012-02-05 20:54:10 +00002585 pImpl->StructConstants.remove(this);
Galina Kistanovafc259902012-07-13 01:25:27 +00002586
Owen Anderson45308b52009-07-27 22:29:26 +00002587 // Update to the new value.
2588 setOperand(OperandToUpdate, ToC);
Talin46e9b442012-02-05 20:54:10 +00002589 pImpl->StructConstants.insert(this);
Owen Anderson45308b52009-07-27 22:29:26 +00002590 return;
2591 }
2592 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002593
Owen Anderson45308b52009-07-27 22:29:26 +00002594 assert(Replacement != this && "I didn't contain From!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002595
Chris Lattner7a1450d2005-10-04 18:13:04 +00002596 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002597 replaceAllUsesWith(Replacement);
Galina Kistanovafc259902012-07-13 01:25:27 +00002598
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002599 // Delete the old constant!
2600 destroyConstant();
2601}
2602
Reid Spencerd84d35b2007-02-15 02:26:10 +00002603void ConstantVector::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002604 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002605 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002606
Chris Lattnera474bb22012-01-26 20:40:56 +00002607 SmallVector<Constant*, 8> Values;
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002608 Values.reserve(getNumOperands()); // Build replacement array...
2609 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2610 Constant *Val = getOperand(i);
2611 if (Val == From) Val = cast<Constant>(To);
2612 Values.push_back(Val);
2613 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002614
Jay Foadb8a8bed32011-06-22 09:10:19 +00002615 Constant *Replacement = get(Values);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002616 assert(Replacement != this && "I didn't contain From!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002617
Chris Lattner7a1450d2005-10-04 18:13:04 +00002618 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002619 replaceAllUsesWith(Replacement);
Galina Kistanovafc259902012-07-13 01:25:27 +00002620
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002621 // Delete the old constant!
2622 destroyConstant();
2623}
2624
2625void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
Chris Lattner7a1450d2005-10-04 18:13:04 +00002626 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002627 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
2628 Constant *To = cast<Constant>(ToV);
Galina Kistanovafc259902012-07-13 01:25:27 +00002629
Chris Lattner37e38352012-01-26 20:37:11 +00002630 SmallVector<Constant*, 8> NewOps;
2631 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2632 Constant *Op = getOperand(i);
2633 NewOps.push_back(Op == From ? To : Op);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002634 }
Galina Kistanovafc259902012-07-13 01:25:27 +00002635
Chris Lattner37e38352012-01-26 20:37:11 +00002636 Constant *Replacement = getWithOperands(NewOps);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002637 assert(Replacement != this && "I didn't contain From!");
Galina Kistanovafc259902012-07-13 01:25:27 +00002638
Chris Lattner7a1450d2005-10-04 18:13:04 +00002639 // Everyone using this now uses the replacement.
Chris Lattneraf1783f2011-07-15 06:18:52 +00002640 replaceAllUsesWith(Replacement);
Galina Kistanovafc259902012-07-13 01:25:27 +00002641
Chris Lattnerc4062ba2005-10-03 21:58:36 +00002642 // Delete the old constant!
2643 destroyConstant();
Matthijs Kooijmanba5d7ef2008-07-03 07:46:41 +00002644}