2003-09-30 20:37:50 +02:00
|
|
|
//===-- llvm/Constants.h - Constant class subclass definitions --*- C++ -*-===//
|
2005-04-21 22:19:05 +02:00
|
|
|
//
|
2003-10-20 22:19:47 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:59:42 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 22:19:05 +02:00
|
|
|
//
|
2003-10-20 22:19:47 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-06 22:29:01 +02:00
|
|
|
//
|
2009-03-03 03:55:14 +01:00
|
|
|
/// @file
|
|
|
|
/// This file contains the declarations for the subclasses of Constant,
|
2006-08-25 19:43:11 +02:00
|
|
|
/// which represent the different flavors of constant values that live in LLVM.
|
|
|
|
/// Note that Constants are immutable (once created they never change) and are
|
|
|
|
/// fully shared by structural equivalence. This means that two structurally
|
|
|
|
/// equivalent constants will always have the same address. Constant's are
|
|
|
|
/// created on demand as needed and never deleted: thus clients don't have to
|
|
|
|
/// worry about the lifetime of the objects.
|
2001-06-06 22:29:01 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-04-28 21:55:58 +02:00
|
|
|
#ifndef LLVM_CONSTANTS_H
|
|
|
|
#define LLVM_CONSTANTS_H
|
2001-06-06 22:29:01 +02:00
|
|
|
|
2002-04-28 21:55:58 +02:00
|
|
|
#include "llvm/Constant.h"
|
2008-05-10 10:32:32 +02:00
|
|
|
#include "llvm/OperandTraits.h"
|
2007-02-27 00:54:03 +01:00
|
|
|
#include "llvm/ADT/APInt.h"
|
2007-08-24 02:56:33 +02:00
|
|
|
#include "llvm/ADT/APFloat.h"
|
2009-10-20 13:44:38 +02:00
|
|
|
#include <vector>
|
2001-06-06 22:29:01 +02:00
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
namespace llvm {
|
|
|
|
|
2001-06-06 22:29:01 +02:00
|
|
|
class ArrayType;
|
2009-10-20 13:44:38 +02:00
|
|
|
class IntegerType;
|
2001-06-06 22:29:01 +02:00
|
|
|
class StructType;
|
2001-09-30 22:14:07 +02:00
|
|
|
class PointerType;
|
2007-02-15 03:26:10 +01:00
|
|
|
class VectorType;
|
2001-06-06 22:29:01 +02:00
|
|
|
|
2003-05-23 22:02:05 +02:00
|
|
|
template<class ConstantClass, class TypeClass, class ValType>
|
|
|
|
struct ConstantCreator;
|
2003-10-05 02:13:28 +02:00
|
|
|
template<class ConstantClass, class TypeClass>
|
2009-09-03 03:39:20 +02:00
|
|
|
struct ConvertConstantType;
|
2010-09-14 22:49:00 +02:00
|
|
|
template<typename T, unsigned N>
|
|
|
|
class SmallVector;
|
2003-10-05 02:13:28 +02:00
|
|
|
|
2004-10-13 06:44:53 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-01-21 01:29:26 +01:00
|
|
|
/// This is the shared class of boolean and integer constants. This class
|
2007-01-11 13:24:14 +01:00
|
|
|
/// represents both boolean and integral constants.
|
|
|
|
/// @brief Class for constant integers.
|
|
|
|
class ConstantInt : public Constant {
|
2008-04-06 22:25:17 +02:00
|
|
|
void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
|
2007-01-11 13:24:14 +01:00
|
|
|
ConstantInt(const ConstantInt &); // DO NOT IMPLEMENT
|
2007-02-27 00:54:03 +01:00
|
|
|
ConstantInt(const IntegerType *Ty, const APInt& V);
|
|
|
|
APInt Val;
|
2008-04-06 22:25:17 +02:00
|
|
|
protected:
|
|
|
|
// allocate space for exactly zero operands
|
|
|
|
void *operator new(size_t s) {
|
|
|
|
return User::operator new(s, 0);
|
|
|
|
}
|
2002-08-12 23:21:21 +02:00
|
|
|
public:
|
2009-10-11 06:03:22 +02:00
|
|
|
static ConstantInt *getTrue(LLVMContext &Context);
|
|
|
|
static ConstantInt *getFalse(LLVMContext &Context);
|
2009-07-31 19:39:07 +02:00
|
|
|
|
2009-07-25 01:12:02 +02:00
|
|
|
/// If Ty is a vector type, return a Constant with a splat of the given
|
|
|
|
/// value. Otherwise return a ConstantInt for the given value.
|
2009-10-11 06:03:22 +02:00
|
|
|
static Constant *get(const Type *Ty, uint64_t V, bool isSigned = false);
|
2009-07-25 01:12:02 +02:00
|
|
|
|
|
|
|
/// Return a ConstantInt with the specified integer value for the specified
|
|
|
|
/// type. If the type is wider than 64 bits, the value will be zero-extended
|
|
|
|
/// to fit the type, unless isSigned is true, in which case the value will
|
|
|
|
/// be interpreted as a 64-bit signed integer and sign-extended to fit
|
|
|
|
/// the type.
|
|
|
|
/// @brief Get a ConstantInt for a specific value.
|
2009-10-11 06:03:22 +02:00
|
|
|
static ConstantInt *get(const IntegerType *Ty, uint64_t V,
|
2009-07-25 01:12:02 +02:00
|
|
|
bool isSigned = false);
|
|
|
|
|
|
|
|
/// Return a ConstantInt with the specified value for the specified type. The
|
|
|
|
/// value V will be canonicalized to a an unsigned APInt. Accessing it with
|
|
|
|
/// either getSExtValue() or getZExtValue() will yield a correctly sized and
|
|
|
|
/// signed value for the type Ty.
|
|
|
|
/// @brief Get a ConstantInt for a specific signed value.
|
2009-10-11 06:03:22 +02:00
|
|
|
static ConstantInt *getSigned(const IntegerType *Ty, int64_t V);
|
2009-07-25 01:12:02 +02:00
|
|
|
static Constant *getSigned(const Type *Ty, int64_t V);
|
|
|
|
|
|
|
|
/// Return a ConstantInt with the specified value and an implied Type. The
|
|
|
|
/// type is the integer type that corresponds to the bit width of the value.
|
2009-10-11 06:03:22 +02:00
|
|
|
static ConstantInt *get(LLVMContext &Context, const APInt &V);
|
2009-08-17 01:36:33 +02:00
|
|
|
|
|
|
|
/// Return a ConstantInt constructed from the string strStart with the given
|
|
|
|
/// radix.
|
2009-11-06 11:58:06 +01:00
|
|
|
static ConstantInt *get(const IntegerType *Ty, StringRef Str,
|
2009-08-17 01:36:33 +02:00
|
|
|
uint8_t radix);
|
2009-07-25 01:12:02 +02:00
|
|
|
|
|
|
|
/// If Ty is a vector type, return a Constant with a splat of the given
|
|
|
|
/// value. Otherwise return a ConstantInt for the given value.
|
2009-10-11 06:03:22 +02:00
|
|
|
static Constant *get(const Type* Ty, const APInt& V);
|
2009-07-25 01:12:02 +02:00
|
|
|
|
2007-02-27 00:54:03 +01:00
|
|
|
/// Return the constant as an APInt value reference. This allows clients to
|
|
|
|
/// obtain a copy of the value, with all its precision in tact.
|
|
|
|
/// @brief Return the constant's value.
|
2009-10-11 06:03:22 +02:00
|
|
|
inline const APInt &getValue() const {
|
2007-02-27 00:54:03 +01:00
|
|
|
return Val;
|
|
|
|
}
|
2007-04-03 03:41:34 +02:00
|
|
|
|
|
|
|
/// getBitWidth - Return the bitwidth of this constant.
|
|
|
|
unsigned getBitWidth() const { return Val.getBitWidth(); }
|
2007-02-27 00:54:03 +01:00
|
|
|
|
2006-08-25 19:43:11 +02:00
|
|
|
/// Return the constant as a 64-bit unsigned integer value after it
|
2007-02-27 00:54:03 +01:00
|
|
|
/// has been zero extended as appropriate for the type of this constant. Note
|
|
|
|
/// that this method can assert if the value does not fit in 64 bits.
|
|
|
|
/// @deprecated
|
2006-08-25 19:43:11 +02:00
|
|
|
/// @brief Return the zero extended value.
|
2005-09-25 00:57:28 +02:00
|
|
|
inline uint64_t getZExtValue() const {
|
2007-02-27 00:54:03 +01:00
|
|
|
return Val.getZExtValue();
|
2005-09-25 00:57:28 +02:00
|
|
|
}
|
2004-06-21 14:12:12 +02:00
|
|
|
|
2006-08-25 19:43:11 +02:00
|
|
|
/// Return the constant as a 64-bit integer value after it has been sign
|
2009-02-26 01:58:09 +01:00
|
|
|
/// extended as appropriate for the type of this constant. Note that
|
2007-02-27 00:54:03 +01:00
|
|
|
/// this method can assert if the value does not fit in 64 bits.
|
|
|
|
/// @deprecated
|
2006-09-18 06:58:06 +02:00
|
|
|
/// @brief Return the sign extended value.
|
2005-09-25 00:57:28 +02:00
|
|
|
inline int64_t getSExtValue() const {
|
2007-02-27 00:54:03 +01:00
|
|
|
return Val.getSExtValue();
|
2005-09-25 00:57:28 +02:00
|
|
|
}
|
2007-02-27 00:54:03 +01:00
|
|
|
|
2006-08-25 19:43:11 +02:00
|
|
|
/// A helper method that can be used to determine if the constant contained
|
|
|
|
/// within is equal to a constant. This only works for very small values,
|
|
|
|
/// because this is all that can be represented with all types.
|
|
|
|
/// @brief Determine if this constant's value is same as an unsigned char.
|
2007-02-27 00:54:03 +01:00
|
|
|
bool equalsInt(uint64_t V) const {
|
2006-10-20 09:07:24 +02:00
|
|
|
return Val == V;
|
2001-07-20 21:13:28 +02:00
|
|
|
}
|
|
|
|
|
2007-01-19 22:13:56 +01:00
|
|
|
/// getType - Specialize the getType() method to always return an IntegerType,
|
|
|
|
/// which reduces the amount of casting needed in parts of the compiler.
|
|
|
|
///
|
|
|
|
inline const IntegerType *getType() const {
|
|
|
|
return reinterpret_cast<const IntegerType*>(Value::getType());
|
|
|
|
}
|
|
|
|
|
2006-08-25 19:43:11 +02:00
|
|
|
/// This static method returns true if the type Ty is big enough to
|
|
|
|
/// represent the value V. This can be used to avoid having the get method
|
2006-12-19 02:34:39 +01:00
|
|
|
/// assert when V is larger than Ty can represent. Note that there are two
|
|
|
|
/// versions of this method, one for unsigned and one for signed integers.
|
|
|
|
/// Although ConstantInt canonicalizes everything to an unsigned integer,
|
|
|
|
/// the signed version avoids callers having to convert a signed quantity
|
|
|
|
/// to the appropriate unsigned type before calling the method.
|
2006-08-25 19:43:11 +02:00
|
|
|
/// @returns true if V is a valid value for type Ty
|
|
|
|
/// @brief Determine if the value is in range for the given type.
|
2006-12-19 02:28:19 +01:00
|
|
|
static bool isValueValidForType(const Type *Ty, uint64_t V);
|
2001-06-06 22:29:01 +02:00
|
|
|
static bool isValueValidForType(const Type *Ty, int64_t V);
|
2002-08-26 19:53:56 +02:00
|
|
|
|
2007-01-11 13:24:14 +01:00
|
|
|
/// This function will return true iff this constant represents the "null"
|
|
|
|
/// value that would be returned by the getNullValue method.
|
2006-10-20 09:07:24 +02:00
|
|
|
/// @returns true if this is the null integer value.
|
2007-01-11 13:24:14 +01:00
|
|
|
/// @brief Determine if the value is null.
|
|
|
|
virtual bool isNullValue() const {
|
|
|
|
return Val == 0;
|
|
|
|
}
|
2001-10-13 08:11:10 +02:00
|
|
|
|
2007-03-02 01:27:06 +01:00
|
|
|
/// This is just a convenience method to make client code smaller for a
|
|
|
|
/// common code. It also correctly performs the comparison without the
|
|
|
|
/// potential for an assertion from getZExtValue().
|
|
|
|
bool isZero() const {
|
|
|
|
return Val == 0;
|
|
|
|
}
|
|
|
|
|
2007-03-01 22:50:41 +01:00
|
|
|
/// This is just a convenience method to make client code smaller for a
|
2007-03-02 01:27:06 +01:00
|
|
|
/// common case. It also correctly performs the comparison without the
|
|
|
|
/// potential for an assertion from getZExtValue().
|
2007-03-01 22:50:41 +01:00
|
|
|
/// @brief Determine if the value is one.
|
2007-03-02 01:27:06 +01:00
|
|
|
bool isOne() const {
|
2007-03-01 22:50:41 +01:00
|
|
|
return Val == 1;
|
|
|
|
}
|
|
|
|
|
2007-01-11 13:24:14 +01:00
|
|
|
/// This function will return true iff every bit in this constant is set
|
|
|
|
/// to true.
|
2006-08-25 19:43:11 +02:00
|
|
|
/// @returns true iff this constant's bits are all set to true.
|
2007-01-11 13:24:14 +01:00
|
|
|
/// @brief Determine if the value is all ones.
|
2007-01-12 05:24:46 +01:00
|
|
|
bool isAllOnesValue() const {
|
2007-02-27 00:54:03 +01:00
|
|
|
return Val.isAllOnesValue();
|
2007-01-11 13:24:14 +01:00
|
|
|
}
|
2003-03-10 23:39:02 +01:00
|
|
|
|
2007-01-11 13:24:14 +01:00
|
|
|
/// This function will return true iff this constant represents the largest
|
|
|
|
/// value that may be represented by the constant's type.
|
2006-08-25 19:43:11 +02:00
|
|
|
/// @returns true iff this is the largest value that may be represented
|
|
|
|
/// by this type.
|
2007-01-11 13:24:14 +01:00
|
|
|
/// @brief Determine if the value is maximal.
|
2007-01-12 05:24:46 +01:00
|
|
|
bool isMaxValue(bool isSigned) const {
|
2007-02-27 00:54:03 +01:00
|
|
|
if (isSigned)
|
|
|
|
return Val.isMaxSignedValue();
|
|
|
|
else
|
|
|
|
return Val.isMaxValue();
|
2002-08-12 23:21:21 +02:00
|
|
|
}
|
|
|
|
|
2007-01-11 13:24:14 +01:00
|
|
|
/// This function will return true iff this constant represents the smallest
|
|
|
|
/// value that may be represented by this constant's type.
|
2006-08-25 19:43:11 +02:00
|
|
|
/// @returns true if this is the smallest value that may be represented by
|
|
|
|
/// this type.
|
2007-01-11 13:24:14 +01:00
|
|
|
/// @brief Determine if the value is minimal.
|
2007-01-12 05:24:46 +01:00
|
|
|
bool isMinValue(bool isSigned) const {
|
2007-02-27 00:54:03 +01:00
|
|
|
if (isSigned)
|
|
|
|
return Val.isMinSignedValue();
|
|
|
|
else
|
|
|
|
return Val.isMinValue();
|
2002-08-12 23:21:21 +02:00
|
|
|
}
|
|
|
|
|
2007-03-30 05:22:55 +02:00
|
|
|
/// This function will return true iff this constant represents a value with
|
|
|
|
/// active bits bigger than 64 bits or a value greater than the given uint64_t
|
|
|
|
/// value.
|
|
|
|
/// @returns true iff this constant is greater or equal to the given number.
|
|
|
|
/// @brief Determine if the value is greater or equal to the given number.
|
2007-03-30 07:10:59 +02:00
|
|
|
bool uge(uint64_t Num) {
|
|
|
|
return Val.getActiveBits() > 64 || Val.getZExtValue() >= Num;
|
2007-03-30 05:22:55 +02:00
|
|
|
}
|
|
|
|
|
2008-12-20 18:06:39 +01:00
|
|
|
/// getLimitedValue - If the value is smaller than the specified limit,
|
|
|
|
/// return it, otherwise return the limit value. This causes the value
|
|
|
|
/// to saturate to the limit.
|
|
|
|
/// @returns the min of the value of the constant and the specified value
|
|
|
|
/// @brief Get the constant's value with a saturation limit
|
2007-04-10 08:44:12 +02:00
|
|
|
uint64_t getLimitedValue(uint64_t Limit = ~0ULL) const {
|
|
|
|
return Val.getLimitedValue(Limit);
|
2007-03-30 05:22:55 +02:00
|
|
|
}
|
|
|
|
|
2006-10-20 09:07:24 +02:00
|
|
|
/// @brief Methods to support type inquiry through isa, cast, and dyn_cast.
|
|
|
|
static inline bool classof(const ConstantInt *) { return true; }
|
2004-07-19 02:58:47 +02:00
|
|
|
static bool classof(const Value *V) {
|
2007-04-13 20:12:09 +02:00
|
|
|
return V->getValueID() == ConstantIntVal;
|
2001-10-13 08:11:10 +02:00
|
|
|
}
|
2001-06-06 22:29:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-10-13 06:44:53 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-08-26 19:53:56 +02:00
|
|
|
/// ConstantFP - Floating Point Values [float, double]
|
|
|
|
///
|
2001-12-03 23:26:30 +01:00
|
|
|
class ConstantFP : public Constant {
|
2007-08-24 02:56:33 +02:00
|
|
|
APFloat Val;
|
2008-04-06 22:25:17 +02:00
|
|
|
void *operator new(size_t, unsigned);// DO NOT IMPLEMENT
|
2001-12-03 23:26:30 +01:00
|
|
|
ConstantFP(const ConstantFP &); // DO NOT IMPLEMENT
|
2009-08-11 19:45:13 +02:00
|
|
|
friend class LLVMContextImpl;
|
2001-09-07 18:18:19 +02:00
|
|
|
protected:
|
2007-08-30 02:23:21 +02:00
|
|
|
ConstantFP(const Type *Ty, const APFloat& V);
|
2008-04-06 22:25:17 +02:00
|
|
|
protected:
|
|
|
|
// allocate space for exactly zero operands
|
|
|
|
void *operator new(size_t s) {
|
|
|
|
return User::operator new(s, 0);
|
|
|
|
}
|
2001-06-06 22:29:01 +02:00
|
|
|
public:
|
2009-07-27 22:59:43 +02:00
|
|
|
/// Floating point negation must be implemented with f(x) = -0.0 - x. This
|
|
|
|
/// method returns the negative zero constant for floating point or vector
|
|
|
|
/// floating point types; for all other types, it returns the null value.
|
2009-10-11 06:03:22 +02:00
|
|
|
static Constant *getZeroValueForNegation(const Type *Ty);
|
2009-07-27 22:59:43 +02:00
|
|
|
|
|
|
|
/// get() - This returns a ConstantFP, or a vector containing a splat of a
|
|
|
|
/// ConstantFP, for the specified value in the specified type. This should
|
|
|
|
/// only be used for simple constant values like 2.0/1.0 etc, that are
|
|
|
|
/// known-valid both as host double and as the target format.
|
2009-10-11 06:03:22 +02:00
|
|
|
static Constant *get(const Type* Ty, double V);
|
2009-11-06 11:58:06 +01:00
|
|
|
static Constant *get(const Type* Ty, StringRef Str);
|
2009-10-11 06:03:22 +02:00
|
|
|
static ConstantFP *get(LLVMContext &Context, const APFloat &V);
|
|
|
|
static ConstantFP *getNegativeZero(const Type* Ty);
|
|
|
|
static ConstantFP *getInfinity(const Type *Ty, bool Negative = false);
|
2009-07-27 22:59:43 +02:00
|
|
|
|
2002-08-26 19:53:56 +02:00
|
|
|
/// isValueValidForType - return true if Ty is big enough to represent V.
|
2009-10-11 06:03:22 +02:00
|
|
|
static bool isValueValidForType(const Type *Ty, const APFloat &V);
|
2007-08-30 02:23:21 +02:00
|
|
|
inline const APFloat& getValueAPF() const { return Val; }
|
2001-10-13 08:11:10 +02:00
|
|
|
|
2002-08-26 19:53:56 +02:00
|
|
|
/// isNullValue - Return true if this is the value that would be returned by
|
2004-02-01 23:48:09 +01:00
|
|
|
/// getNullValue. Don't depend on == for doubles to tell us it's zero, it
|
|
|
|
/// considers -0.0 to be null as well as 0.0. :(
|
2005-08-17 22:06:22 +02:00
|
|
|
virtual bool isNullValue() const;
|
2009-07-14 00:18:28 +02:00
|
|
|
|
|
|
|
/// isNegativeZeroValue - Return true if the value is what would be returned
|
|
|
|
/// by getZeroValueForNegation.
|
|
|
|
virtual bool isNegativeZeroValue() const {
|
|
|
|
return Val.isZero() && Val.isNegative();
|
|
|
|
}
|
2001-11-01 06:53:56 +01:00
|
|
|
|
2010-02-24 07:52:40 +01:00
|
|
|
/// isZero - Return true if the value is positive or negative zero.
|
|
|
|
bool isZero() const { return Val.isZero(); }
|
|
|
|
|
|
|
|
/// isNaN - Return true if the value is a NaN.
|
|
|
|
bool isNaN() const { return Val.isNaN(); }
|
|
|
|
|
2004-02-02 19:40:29 +01:00
|
|
|
/// isExactlyValue - We don't rely on operator== working on double values, as
|
|
|
|
/// it returns true for things that are clearly not equal, like -0.0 and 0.0.
|
|
|
|
/// As such, this method can be used to do an exact bit-for-bit comparison of
|
2007-09-06 20:13:44 +02:00
|
|
|
/// two floating point values. The version with a double operand is retained
|
|
|
|
/// because it's so convenient to write isExactlyValue(2.0), but please use
|
2008-04-09 02:03:58 +02:00
|
|
|
/// it only for simple constants.
|
2009-10-11 06:03:22 +02:00
|
|
|
bool isExactlyValue(const APFloat &V) const;
|
2007-09-06 20:13:44 +02:00
|
|
|
|
2007-08-30 02:23:21 +02:00
|
|
|
bool isExactlyValue(double V) const {
|
2008-10-10 01:01:07 +02:00
|
|
|
bool ignored;
|
2008-04-28 21:46:58 +02:00
|
|
|
// convert is not supported on this type
|
|
|
|
if (&Val.getSemantics() == &APFloat::PPCDoubleDouble)
|
|
|
|
return false;
|
2008-04-09 02:03:58 +02:00
|
|
|
APFloat FV(V);
|
2008-10-10 01:01:07 +02:00
|
|
|
FV.convert(Val.getSemantics(), APFloat::rmNearestTiesToEven, &ignored);
|
2008-04-09 02:03:58 +02:00
|
|
|
return isExactlyValue(FV);
|
2007-08-30 02:23:21 +02:00
|
|
|
}
|
2002-08-26 19:53:56 +02:00
|
|
|
/// Methods for support type inquiry through isa, cast, and dyn_cast:
|
2001-12-03 23:26:30 +01:00
|
|
|
static inline bool classof(const ConstantFP *) { return true; }
|
2004-07-19 02:58:47 +02:00
|
|
|
static bool classof(const Value *V) {
|
2007-04-13 20:12:09 +02:00
|
|
|
return V->getValueID() == ConstantFPVal;
|
2001-10-13 08:11:10 +02:00
|
|
|
}
|
2001-06-06 22:29:01 +02:00
|
|
|
};
|
|
|
|
|
2004-10-13 06:44:53 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2004-02-15 06:53:04 +01:00
|
|
|
/// ConstantAggregateZero - All zero aggregate value
|
|
|
|
///
|
|
|
|
class ConstantAggregateZero : public Constant {
|
|
|
|
friend struct ConstantCreator<ConstantAggregateZero, Type, char>;
|
2008-04-06 22:25:17 +02:00
|
|
|
void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
|
2004-02-15 06:53:04 +01:00
|
|
|
ConstantAggregateZero(const ConstantAggregateZero &); // DO NOT IMPLEMENT
|
|
|
|
protected:
|
2008-05-19 22:15:12 +02:00
|
|
|
explicit ConstantAggregateZero(const Type *ty)
|
|
|
|
: Constant(ty, ConstantAggregateZeroVal, 0, 0) {}
|
2008-04-06 22:25:17 +02:00
|
|
|
protected:
|
|
|
|
// allocate space for exactly zero operands
|
|
|
|
void *operator new(size_t s) {
|
|
|
|
return User::operator new(s, 0);
|
|
|
|
}
|
2004-02-15 06:53:04 +01:00
|
|
|
public:
|
2009-10-11 06:03:22 +02:00
|
|
|
static ConstantAggregateZero* get(const Type *Ty);
|
2009-07-31 01:03:37 +02:00
|
|
|
|
2004-02-15 06:53:04 +01:00
|
|
|
/// isNullValue - Return true if this is the value that would be returned by
|
|
|
|
/// getNullValue.
|
|
|
|
virtual bool isNullValue() const { return true; }
|
|
|
|
|
2009-06-20 02:24:58 +02:00
|
|
|
virtual void destroyConstant();
|
2004-02-15 06:53:04 +01:00
|
|
|
|
|
|
|
/// Methods for support type inquiry through isa, cast, and dyn_cast:
|
|
|
|
///
|
2004-07-19 02:58:47 +02:00
|
|
|
static bool classof(const ConstantAggregateZero *) { return true; }
|
|
|
|
static bool classof(const Value *V) {
|
2007-04-13 20:12:09 +02:00
|
|
|
return V->getValueID() == ConstantAggregateZeroVal;
|
2004-02-15 06:53:04 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2001-06-06 22:29:01 +02:00
|
|
|
|
2004-10-13 06:44:53 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-08-26 19:53:56 +02:00
|
|
|
/// ConstantArray - Constant Array Declarations
|
|
|
|
///
|
2001-12-03 23:26:30 +01:00
|
|
|
class ConstantArray : public Constant {
|
2003-05-23 22:02:05 +02:00
|
|
|
friend struct ConstantCreator<ConstantArray, ArrayType,
|
|
|
|
std::vector<Constant*> >;
|
2001-12-03 23:26:30 +01:00
|
|
|
ConstantArray(const ConstantArray &); // DO NOT IMPLEMENT
|
2001-09-07 18:18:19 +02:00
|
|
|
protected:
|
2002-01-20 23:54:45 +01:00
|
|
|
ConstantArray(const ArrayType *T, const std::vector<Constant*> &Val);
|
2001-06-06 22:29:01 +02:00
|
|
|
public:
|
2009-07-28 20:32:17 +02:00
|
|
|
// ConstantArray accessors
|
2009-10-11 06:03:22 +02:00
|
|
|
static Constant *get(const ArrayType *T, const std::vector<Constant*> &V);
|
|
|
|
static Constant *get(const ArrayType *T, Constant *const *Vals,
|
2009-07-28 20:32:17 +02:00
|
|
|
unsigned NumVals);
|
|
|
|
|
|
|
|
/// This method constructs a ConstantArray and initializes it with a text
|
|
|
|
/// string. The default behavior (AddNull==true) causes a null terminator to
|
|
|
|
/// be placed at the end of the array. This effectively increases the length
|
|
|
|
/// of the array by one (you've been warned). However, in some situations
|
|
|
|
/// this is not desired so if AddNull==false then the string is copied without
|
|
|
|
/// null termination.
|
2009-11-06 11:58:06 +01:00
|
|
|
static Constant *get(LLVMContext &Context, StringRef Initializer,
|
2009-08-13 23:58:54 +02:00
|
|
|
bool AddNull = true);
|
2009-07-28 20:32:17 +02:00
|
|
|
|
2008-05-10 10:32:32 +02:00
|
|
|
/// Transparently provide more efficient getOperand methods.
|
|
|
|
DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Constant);
|
|
|
|
|
2002-08-26 19:53:56 +02:00
|
|
|
/// getType - Specialize the getType() method to always return an ArrayType,
|
|
|
|
/// which reduces the amount of casting needed in parts of the compiler.
|
|
|
|
///
|
2001-12-13 01:38:57 +01:00
|
|
|
inline const ArrayType *getType() const {
|
2003-11-16 21:21:15 +01:00
|
|
|
return reinterpret_cast<const ArrayType*>(Value::getType());
|
2001-12-13 01:38:57 +01:00
|
|
|
}
|
2001-06-06 22:29:01 +02:00
|
|
|
|
2008-03-20 07:19:51 +01:00
|
|
|
/// isString - This method returns true if the array is an array of i8 and
|
|
|
|
/// the elements of the array are all ConstantInt's.
|
2004-01-14 18:06:21 +01:00
|
|
|
bool isString() const;
|
|
|
|
|
2006-10-26 21:15:05 +02:00
|
|
|
/// isCString - This method returns true if the array is a string (see
|
2007-08-05 22:06:04 +02:00
|
|
|
/// @verbatim
|
2006-10-26 21:15:05 +02:00
|
|
|
/// isString) and it ends in a null byte \0 and does not contains any other
|
2007-08-05 22:06:04 +02:00
|
|
|
/// @endverbatim
|
2006-10-26 21:15:05 +02:00
|
|
|
/// null bytes except its terminator.
|
2009-07-13 23:27:19 +02:00
|
|
|
bool isCString() const;
|
2006-10-26 21:15:05 +02:00
|
|
|
|
2004-01-14 18:06:21 +01:00
|
|
|
/// getAsString - If this array is isString(), then this method converts the
|
|
|
|
/// array to an std::string and returns it. Otherwise, it asserts out.
|
2002-08-26 19:53:56 +02:00
|
|
|
///
|
|
|
|
std::string getAsString() const;
|
|
|
|
|
|
|
|
/// isNullValue - Return true if this is the value that would be returned by
|
2004-02-15 06:53:04 +01:00
|
|
|
/// getNullValue. This always returns false because zero arrays are always
|
|
|
|
/// created as ConstantAggregateZero objects.
|
|
|
|
virtual bool isNullValue() const { return false; }
|
2001-11-01 06:53:56 +01:00
|
|
|
|
2009-06-20 02:24:58 +02:00
|
|
|
virtual void destroyConstant();
|
2005-10-04 20:12:13 +02:00
|
|
|
virtual void replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U);
|
2002-08-18 02:39:59 +02:00
|
|
|
|
2002-08-26 19:53:56 +02:00
|
|
|
/// Methods for support type inquiry through isa, cast, and dyn_cast:
|
2001-12-03 23:26:30 +01:00
|
|
|
static inline bool classof(const ConstantArray *) { return true; }
|
2004-07-19 02:58:47 +02:00
|
|
|
static bool classof(const Value *V) {
|
2007-04-13 20:12:09 +02:00
|
|
|
return V->getValueID() == ConstantArrayVal;
|
2001-10-13 08:11:10 +02:00
|
|
|
}
|
2001-06-06 22:29:01 +02:00
|
|
|
};
|
|
|
|
|
2008-05-10 10:32:32 +02:00
|
|
|
template <>
|
2009-09-06 10:55:57 +02:00
|
|
|
struct OperandTraits<ConstantArray> : public VariadicOperandTraits<> {
|
2008-05-10 10:32:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
DEFINE_TRANSPARENT_CASTED_OPERAND_ACCESSORS(ConstantArray, Constant)
|
2001-06-06 22:29:01 +02:00
|
|
|
|
2004-10-13 06:44:53 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-12-03 23:26:30 +01:00
|
|
|
// ConstantStruct - Constant Struct Declarations
|
2001-06-06 22:29:01 +02:00
|
|
|
//
|
2001-12-03 23:26:30 +01:00
|
|
|
class ConstantStruct : public Constant {
|
2003-05-23 22:02:05 +02:00
|
|
|
friend struct ConstantCreator<ConstantStruct, StructType,
|
|
|
|
std::vector<Constant*> >;
|
2001-12-03 23:26:30 +01:00
|
|
|
ConstantStruct(const ConstantStruct &); // DO NOT IMPLEMENT
|
2001-09-07 18:18:19 +02:00
|
|
|
protected:
|
2002-01-20 23:54:45 +01:00
|
|
|
ConstantStruct(const StructType *T, const std::vector<Constant*> &Val);
|
2001-06-06 22:29:01 +02:00
|
|
|
public:
|
2009-07-28 00:29:26 +02:00
|
|
|
// ConstantStruct accessors
|
2009-10-11 06:03:22 +02:00
|
|
|
static Constant *get(const StructType *T, const std::vector<Constant*> &V);
|
|
|
|
static Constant *get(LLVMContext &Context,
|
|
|
|
const std::vector<Constant*> &V, bool Packed);
|
|
|
|
static Constant *get(LLVMContext &Context,
|
|
|
|
Constant *const *Vals, unsigned NumVals, bool Packed);
|
2009-09-19 22:30:26 +02:00
|
|
|
|
2008-05-10 10:32:32 +02:00
|
|
|
/// Transparently provide more efficient getOperand methods.
|
|
|
|
DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Constant);
|
|
|
|
|
2002-08-26 19:53:56 +02:00
|
|
|
/// getType() specialization - Reduce amount of casting...
|
2004-07-12 22:36:08 +02:00
|
|
|
///
|
2001-12-13 01:38:57 +01:00
|
|
|
inline const StructType *getType() const {
|
2003-11-16 21:21:15 +01:00
|
|
|
return reinterpret_cast<const StructType*>(Value::getType());
|
2001-12-13 01:38:57 +01:00
|
|
|
}
|
2001-06-06 22:29:01 +02:00
|
|
|
|
2002-08-26 19:53:56 +02:00
|
|
|
/// isNullValue - Return true if this is the value that would be returned by
|
2004-02-15 06:53:04 +01:00
|
|
|
/// getNullValue. This always returns false because zero structs are always
|
|
|
|
/// created as ConstantAggregateZero objects.
|
2003-03-06 22:02:43 +01:00
|
|
|
virtual bool isNullValue() const {
|
2004-02-15 06:53:04 +01:00
|
|
|
return false;
|
2003-03-06 22:02:43 +01:00
|
|
|
}
|
2001-11-01 06:53:56 +01:00
|
|
|
|
2009-06-20 02:24:58 +02:00
|
|
|
virtual void destroyConstant();
|
2005-10-04 20:12:13 +02:00
|
|
|
virtual void replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U);
|
2005-04-21 22:19:05 +02:00
|
|
|
|
2002-08-26 19:53:56 +02:00
|
|
|
/// Methods for support type inquiry through isa, cast, and dyn_cast:
|
2001-12-03 23:26:30 +01:00
|
|
|
static inline bool classof(const ConstantStruct *) { return true; }
|
2004-07-19 02:58:47 +02:00
|
|
|
static bool classof(const Value *V) {
|
2007-04-13 20:12:09 +02:00
|
|
|
return V->getValueID() == ConstantStructVal;
|
2001-10-13 08:11:10 +02:00
|
|
|
}
|
2001-06-06 22:29:01 +02:00
|
|
|
};
|
|
|
|
|
2008-05-10 10:32:32 +02:00
|
|
|
template <>
|
2009-09-06 10:55:57 +02:00
|
|
|
struct OperandTraits<ConstantStruct> : public VariadicOperandTraits<> {
|
2008-05-10 10:32:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
DEFINE_TRANSPARENT_CASTED_OPERAND_ACCESSORS(ConstantStruct, Constant)
|
|
|
|
|
2010-02-12 21:49:41 +01:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2007-02-15 03:26:10 +01:00
|
|
|
/// ConstantVector - Constant Vector Declarations
|
2004-08-20 08:00:58 +02:00
|
|
|
///
|
2007-02-15 03:26:10 +01:00
|
|
|
class ConstantVector : public Constant {
|
|
|
|
friend struct ConstantCreator<ConstantVector, VectorType,
|
2004-08-20 08:00:58 +02:00
|
|
|
std::vector<Constant*> >;
|
2007-02-15 03:26:10 +01:00
|
|
|
ConstantVector(const ConstantVector &); // DO NOT IMPLEMENT
|
2004-08-20 08:00:58 +02:00
|
|
|
protected:
|
2007-02-15 03:26:10 +01:00
|
|
|
ConstantVector(const VectorType *T, const std::vector<Constant*> &Val);
|
2004-08-20 08:00:58 +02:00
|
|
|
public:
|
2009-07-28 23:19:26 +02:00
|
|
|
// ConstantVector accessors
|
2009-10-11 06:03:22 +02:00
|
|
|
static Constant *get(const VectorType *T, const std::vector<Constant*> &V);
|
|
|
|
static Constant *get(const std::vector<Constant*> &V);
|
|
|
|
static Constant *get(Constant *const *Vals, unsigned NumVals);
|
2009-07-28 23:19:26 +02:00
|
|
|
|
2008-05-10 10:32:32 +02:00
|
|
|
/// Transparently provide more efficient getOperand methods.
|
|
|
|
DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Constant);
|
|
|
|
|
2007-05-24 16:36:04 +02:00
|
|
|
/// getType - Specialize the getType() method to always return a VectorType,
|
2004-08-20 08:00:58 +02:00
|
|
|
/// which reduces the amount of casting needed in parts of the compiler.
|
|
|
|
///
|
2007-02-15 03:26:10 +01:00
|
|
|
inline const VectorType *getType() const {
|
|
|
|
return reinterpret_cast<const VectorType*>(Value::getType());
|
2004-08-20 08:00:58 +02:00
|
|
|
}
|
2007-01-04 02:49:26 +01:00
|
|
|
|
2004-08-20 08:00:58 +02:00
|
|
|
/// isNullValue - Return true if this is the value that would be returned by
|
2007-07-16 16:29:03 +02:00
|
|
|
/// getNullValue. This always returns false because zero vectors are always
|
2004-08-20 08:00:58 +02:00
|
|
|
/// created as ConstantAggregateZero objects.
|
|
|
|
virtual bool isNullValue() const { return false; }
|
|
|
|
|
2007-05-24 16:36:04 +02:00
|
|
|
/// This function will return true iff every element in this vector constant
|
2007-01-12 23:39:14 +01:00
|
|
|
/// is set to all ones.
|
|
|
|
/// @returns true iff this constant's emements are all set to all ones.
|
|
|
|
/// @brief Determine if the value is all ones.
|
2007-01-13 00:39:50 +01:00
|
|
|
bool isAllOnesValue() const;
|
2007-01-12 23:39:14 +01:00
|
|
|
|
2007-10-17 19:51:30 +02:00
|
|
|
/// getSplatValue - If this is a splat constant, meaning that all of the
|
|
|
|
/// elements have the same value, return that value. Otherwise return NULL.
|
|
|
|
Constant *getSplatValue();
|
|
|
|
|
2009-06-20 02:24:58 +02:00
|
|
|
virtual void destroyConstant();
|
2005-10-04 20:12:13 +02:00
|
|
|
virtual void replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U);
|
2004-08-20 08:00:58 +02:00
|
|
|
|
|
|
|
/// Methods for support type inquiry through isa, cast, and dyn_cast:
|
2007-02-15 03:26:10 +01:00
|
|
|
static inline bool classof(const ConstantVector *) { return true; }
|
2004-08-20 08:00:58 +02:00
|
|
|
static bool classof(const Value *V) {
|
2007-04-13 20:12:09 +02:00
|
|
|
return V->getValueID() == ConstantVectorVal;
|
2004-08-20 08:00:58 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2008-05-10 10:32:32 +02:00
|
|
|
template <>
|
2009-09-06 10:55:57 +02:00
|
|
|
struct OperandTraits<ConstantVector> : public VariadicOperandTraits<> {
|
2008-05-10 10:32:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
DEFINE_TRANSPARENT_CASTED_OPERAND_ACCESSORS(ConstantVector, Constant)
|
|
|
|
|
2004-10-13 06:44:53 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-08-26 19:53:56 +02:00
|
|
|
/// ConstantPointerNull - a constant pointer value that points to null
|
|
|
|
///
|
2003-11-17 20:47:21 +01:00
|
|
|
class ConstantPointerNull : public Constant {
|
2003-05-23 22:02:05 +02:00
|
|
|
friend struct ConstantCreator<ConstantPointerNull, PointerType, char>;
|
2008-04-06 22:25:17 +02:00
|
|
|
void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
|
2001-12-03 23:26:30 +01:00
|
|
|
ConstantPointerNull(const ConstantPointerNull &); // DO NOT IMPLEMENT
|
2001-10-13 08:11:10 +02:00
|
|
|
protected:
|
2007-03-23 19:44:11 +01:00
|
|
|
explicit ConstantPointerNull(const PointerType *T)
|
2005-01-29 01:33:00 +01:00
|
|
|
: Constant(reinterpret_cast<const Type*>(T),
|
2005-09-27 08:08:32 +02:00
|
|
|
Value::ConstantPointerNullVal, 0, 0) {}
|
2007-12-10 03:14:30 +01:00
|
|
|
|
2008-04-06 22:25:17 +02:00
|
|
|
protected:
|
|
|
|
// allocate space for exactly zero operands
|
|
|
|
void *operator new(size_t s) {
|
|
|
|
return User::operator new(s, 0);
|
|
|
|
}
|
2001-10-13 08:11:10 +02:00
|
|
|
public:
|
2002-08-26 19:53:56 +02:00
|
|
|
/// get() - Static factory methods - Return objects of the specified value
|
2009-06-20 02:24:58 +02:00
|
|
|
static ConstantPointerNull *get(const PointerType *T);
|
2001-10-13 08:11:10 +02:00
|
|
|
|
2002-08-26 19:53:56 +02:00
|
|
|
/// isNullValue - Return true if this is the value that would be returned by
|
|
|
|
/// getNullValue.
|
2001-11-01 06:53:56 +01:00
|
|
|
virtual bool isNullValue() const { return true; }
|
|
|
|
|
2009-06-20 02:24:58 +02:00
|
|
|
virtual void destroyConstant();
|
2002-08-18 02:39:59 +02:00
|
|
|
|
2004-08-04 04:42:17 +02:00
|
|
|
/// getType - Specialize the getType() method to always return an PointerType,
|
|
|
|
/// which reduces the amount of casting needed in parts of the compiler.
|
|
|
|
///
|
|
|
|
inline const PointerType *getType() const {
|
|
|
|
return reinterpret_cast<const PointerType*>(Value::getType());
|
|
|
|
}
|
|
|
|
|
2002-08-26 19:53:56 +02:00
|
|
|
/// Methods for support type inquiry through isa, cast, and dyn_cast:
|
2001-12-03 23:26:30 +01:00
|
|
|
static inline bool classof(const ConstantPointerNull *) { return true; }
|
2004-07-19 02:58:47 +02:00
|
|
|
static bool classof(const Value *V) {
|
2007-04-13 20:12:09 +02:00
|
|
|
return V->getValueID() == ConstantPointerNullVal;
|
2001-10-13 08:11:10 +02:00
|
|
|
}
|
2001-09-30 22:14:07 +02:00
|
|
|
};
|
|
|
|
|
2009-10-28 01:01:44 +01:00
|
|
|
/// BlockAddress - The address of a basic block.
|
|
|
|
///
|
|
|
|
class BlockAddress : public Constant {
|
|
|
|
void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
|
|
|
|
void *operator new(size_t s) { return User::operator new(s, 2); }
|
|
|
|
BlockAddress(Function *F, BasicBlock *BB);
|
|
|
|
public:
|
|
|
|
/// get - Return a BlockAddress for the specified function and basic block.
|
|
|
|
static BlockAddress *get(Function *F, BasicBlock *BB);
|
|
|
|
|
|
|
|
/// get - Return a BlockAddress for the specified basic block. The basic
|
|
|
|
/// block must be embedded into a function.
|
|
|
|
static BlockAddress *get(BasicBlock *BB);
|
|
|
|
|
|
|
|
/// Transparently provide more efficient getOperand methods.
|
2009-10-28 06:14:34 +01:00
|
|
|
DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
|
2009-10-28 01:01:44 +01:00
|
|
|
|
|
|
|
Function *getFunction() const { return (Function*)Op<0>().get(); }
|
|
|
|
BasicBlock *getBasicBlock() const { return (BasicBlock*)Op<1>().get(); }
|
|
|
|
|
|
|
|
/// isNullValue - Return true if this is the value that would be returned by
|
|
|
|
/// getNullValue.
|
|
|
|
virtual bool isNullValue() const { return false; }
|
|
|
|
|
|
|
|
virtual void destroyConstant();
|
|
|
|
virtual void replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U);
|
|
|
|
|
|
|
|
/// Methods for support type inquiry through isa, cast, and dyn_cast:
|
|
|
|
static inline bool classof(const BlockAddress *) { return true; }
|
|
|
|
static inline bool classof(const Value *V) {
|
|
|
|
return V->getValueID() == BlockAddressVal;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct OperandTraits<BlockAddress> : public FixedNumOperandTraits<2> {
|
|
|
|
};
|
2001-10-03 08:12:09 +02:00
|
|
|
|
2009-10-28 06:14:34 +01:00
|
|
|
DEFINE_TRANSPARENT_CASTED_OPERAND_ACCESSORS(BlockAddress, Value)
|
2009-10-28 01:01:44 +01:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2004-10-13 06:44:53 +02:00
|
|
|
/// ConstantExpr - a constant value that is initialized with an expression using
|
2005-02-05 03:00:12 +01:00
|
|
|
/// other constant values.
|
2004-10-13 06:44:53 +02:00
|
|
|
///
|
2005-02-05 03:00:12 +01:00
|
|
|
/// This class uses the standard Instruction opcodes to define the various
|
|
|
|
/// constant expressions. The Opcode field for the ConstantExpr class is
|
|
|
|
/// maintained in the Value::SubclassData field.
|
2002-07-15 00:47:54 +02:00
|
|
|
class ConstantExpr : public Constant {
|
2003-05-23 22:02:05 +02:00
|
|
|
friend struct ConstantCreator<ConstantExpr,Type,
|
|
|
|
std::pair<unsigned, std::vector<Constant*> > >;
|
2009-09-03 03:39:20 +02:00
|
|
|
friend struct ConvertConstantType<ConstantExpr, Type>;
|
2005-04-21 22:19:05 +02:00
|
|
|
|
2003-05-23 22:02:05 +02:00
|
|
|
protected:
|
2008-05-19 22:15:12 +02:00
|
|
|
ConstantExpr(const Type *ty, unsigned Opcode, Use *Ops, unsigned NumOps)
|
|
|
|
: Constant(ty, ConstantExprVal, Ops, NumOps) {
|
2005-02-05 03:00:12 +01:00
|
|
|
// Operation type (an Instruction opcode) is stored as the SubclassData.
|
2009-12-29 03:14:09 +01:00
|
|
|
setValueSubclassData(Opcode);
|
2005-02-05 03:00:12 +01:00
|
|
|
}
|
2003-10-05 02:13:28 +02:00
|
|
|
|
|
|
|
// These private methods are used by the type resolution code to create
|
|
|
|
// ConstantExprs in intermediate forms.
|
|
|
|
static Constant *getTy(const Type *Ty, unsigned Opcode,
|
2009-09-08 01:54:19 +02:00
|
|
|
Constant *C1, Constant *C2,
|
|
|
|
unsigned Flags = 0);
|
2008-07-25 19:56:27 +02:00
|
|
|
static Constant *getCompareTy(unsigned short pred, Constant *C1,
|
|
|
|
Constant *C2);
|
2009-06-20 02:24:58 +02:00
|
|
|
static Constant *getSelectTy(const Type *Ty,
|
|
|
|
Constant *C1, Constant *C2, Constant *C3);
|
2003-10-05 02:13:28 +02:00
|
|
|
static Constant *getGetElementPtrTy(const Type *Ty, Constant *C,
|
2009-06-20 02:24:58 +02:00
|
|
|
Value* const *Idxs, unsigned NumIdxs);
|
2009-09-08 01:54:19 +02:00
|
|
|
static Constant *getInBoundsGetElementPtrTy(const Type *Ty, Constant *C,
|
|
|
|
Value* const *Idxs,
|
|
|
|
unsigned NumIdxs);
|
2006-01-10 20:04:13 +01:00
|
|
|
static Constant *getExtractElementTy(const Type *Ty, Constant *Val,
|
|
|
|
Constant *Idx);
|
2006-01-17 21:05:59 +01:00
|
|
|
static Constant *getInsertElementTy(const Type *Ty, Constant *Val,
|
|
|
|
Constant *Elt, Constant *Idx);
|
2006-04-08 03:15:18 +02:00
|
|
|
static Constant *getShuffleVectorTy(const Type *Ty, Constant *V1,
|
|
|
|
Constant *V2, Constant *Mask);
|
2008-05-15 21:50:34 +02:00
|
|
|
static Constant *getExtractValueTy(const Type *Ty, Constant *Agg,
|
2008-05-31 02:58:22 +02:00
|
|
|
const unsigned *Idxs, unsigned NumIdxs);
|
2008-05-15 21:50:34 +02:00
|
|
|
static Constant *getInsertValueTy(const Type *Ty, Constant *Agg,
|
|
|
|
Constant *Val,
|
2008-05-31 02:58:22 +02:00
|
|
|
const unsigned *Idxs, unsigned NumIdxs);
|
2005-04-21 22:19:05 +02:00
|
|
|
|
2002-07-15 00:47:54 +02:00
|
|
|
public:
|
2003-04-17 00:40:51 +02:00
|
|
|
// Static methods to construct a ConstantExpr of different kinds. Note that
|
2003-05-23 19:13:15 +02:00
|
|
|
// these methods may return a object that is not an instance of the
|
|
|
|
// ConstantExpr class, because they will attempt to fold the constant
|
|
|
|
// expression into something simpler if possible.
|
2005-04-21 22:19:05 +02:00
|
|
|
|
2009-07-29 20:55:55 +02:00
|
|
|
/// getAlignOf constant expr - computes the alignment of a type in a target
|
2010-01-28 03:43:22 +01:00
|
|
|
/// independent way (Note: the return type is an i64).
|
2009-10-11 06:03:22 +02:00
|
|
|
static Constant *getAlignOf(const Type* Ty);
|
2009-07-29 20:55:55 +02:00
|
|
|
|
2010-02-25 16:55:28 +01:00
|
|
|
/// getSizeOf constant expr - computes the (alloc) size of a type (in
|
|
|
|
/// address-units, not bits) in a target independent way (Note: the return
|
|
|
|
/// type is an i64).
|
2009-07-29 20:55:55 +02:00
|
|
|
///
|
2009-10-11 06:03:22 +02:00
|
|
|
static Constant *getSizeOf(const Type* Ty);
|
2009-08-16 23:26:11 +02:00
|
|
|
|
2010-02-01 17:37:38 +01:00
|
|
|
/// getOffsetOf constant expr - computes the offset of a struct field in a
|
|
|
|
/// target independent way (Note: the return type is an i64).
|
|
|
|
///
|
|
|
|
static Constant *getOffsetOf(const StructType* STy, unsigned FieldNo);
|
|
|
|
|
|
|
|
/// getOffsetOf constant expr - This is a generalized form of getOffsetOf,
|
|
|
|
/// which supports any aggregate type, and any Constant index.
|
2009-08-16 23:26:11 +02:00
|
|
|
///
|
2010-02-01 17:37:38 +01:00
|
|
|
static Constant *getOffsetOf(const Type* Ty, Constant *FieldNo);
|
2009-07-29 20:55:55 +02:00
|
|
|
|
2009-10-11 06:03:22 +02:00
|
|
|
static Constant *getNeg(Constant *C);
|
|
|
|
static Constant *getFNeg(Constant *C);
|
|
|
|
static Constant *getNot(Constant *C);
|
|
|
|
static Constant *getAdd(Constant *C1, Constant *C2);
|
|
|
|
static Constant *getFAdd(Constant *C1, Constant *C2);
|
|
|
|
static Constant *getSub(Constant *C1, Constant *C2);
|
|
|
|
static Constant *getFSub(Constant *C1, Constant *C2);
|
|
|
|
static Constant *getMul(Constant *C1, Constant *C2);
|
|
|
|
static Constant *getFMul(Constant *C1, Constant *C2);
|
|
|
|
static Constant *getUDiv(Constant *C1, Constant *C2);
|
|
|
|
static Constant *getSDiv(Constant *C1, Constant *C2);
|
|
|
|
static Constant *getFDiv(Constant *C1, Constant *C2);
|
|
|
|
static Constant *getURem(Constant *C1, Constant *C2);
|
|
|
|
static Constant *getSRem(Constant *C1, Constant *C2);
|
|
|
|
static Constant *getFRem(Constant *C1, Constant *C2);
|
|
|
|
static Constant *getAnd(Constant *C1, Constant *C2);
|
|
|
|
static Constant *getOr(Constant *C1, Constant *C2);
|
|
|
|
static Constant *getXor(Constant *C1, Constant *C2);
|
|
|
|
static Constant *getShl(Constant *C1, Constant *C2);
|
|
|
|
static Constant *getLShr(Constant *C1, Constant *C2);
|
|
|
|
static Constant *getAShr(Constant *C1, Constant *C2);
|
2009-06-20 02:24:58 +02:00
|
|
|
static Constant *getTrunc (Constant *C, const Type *Ty);
|
|
|
|
static Constant *getSExt (Constant *C, const Type *Ty);
|
|
|
|
static Constant *getZExt (Constant *C, const Type *Ty);
|
|
|
|
static Constant *getFPTrunc (Constant *C, const Type *Ty);
|
|
|
|
static Constant *getFPExtend(Constant *C, const Type *Ty);
|
|
|
|
static Constant *getUIToFP (Constant *C, const Type *Ty);
|
|
|
|
static Constant *getSIToFP (Constant *C, const Type *Ty);
|
|
|
|
static Constant *getFPToUI (Constant *C, const Type *Ty);
|
|
|
|
static Constant *getFPToSI (Constant *C, const Type *Ty);
|
|
|
|
static Constant *getPtrToInt(Constant *C, const Type *Ty);
|
|
|
|
static Constant *getIntToPtr(Constant *C, const Type *Ty);
|
|
|
|
static Constant *getBitCast (Constant *C, const Type *Ty);
|
2006-11-27 02:05:10 +01:00
|
|
|
|
2009-12-18 03:58:50 +01:00
|
|
|
static Constant *getNSWNeg(Constant *C);
|
2010-02-02 13:53:04 +01:00
|
|
|
static Constant *getNUWNeg(Constant *C);
|
2009-10-11 06:03:22 +02:00
|
|
|
static Constant *getNSWAdd(Constant *C1, Constant *C2);
|
2010-02-02 13:53:04 +01:00
|
|
|
static Constant *getNUWAdd(Constant *C1, Constant *C2);
|
2009-10-11 06:03:22 +02:00
|
|
|
static Constant *getNSWSub(Constant *C1, Constant *C2);
|
2010-02-02 13:53:04 +01:00
|
|
|
static Constant *getNUWSub(Constant *C1, Constant *C2);
|
2009-12-18 04:10:26 +01:00
|
|
|
static Constant *getNSWMul(Constant *C1, Constant *C2);
|
2010-02-02 13:53:04 +01:00
|
|
|
static Constant *getNUWMul(Constant *C1, Constant *C2);
|
2009-10-11 06:03:22 +02:00
|
|
|
static Constant *getExactSDiv(Constant *C1, Constant *C2);
|
2009-09-04 01:34:49 +02:00
|
|
|
|
2008-05-10 10:32:32 +02:00
|
|
|
/// Transparently provide more efficient getOperand methods.
|
|
|
|
DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Constant);
|
|
|
|
|
2006-11-27 02:05:10 +01:00
|
|
|
// @brief Convenience function for getting one of the casting operations
|
|
|
|
// using a CastOps opcode.
|
|
|
|
static Constant *getCast(
|
|
|
|
unsigned ops, ///< The opcode for the conversion
|
|
|
|
Constant *C, ///< The constant to be converted
|
2009-06-20 02:24:58 +02:00
|
|
|
const Type *Ty ///< The type to which the constant is converted
|
2006-11-27 02:05:10 +01:00
|
|
|
);
|
|
|
|
|
2006-12-04 21:17:56 +01:00
|
|
|
// @brief Create a ZExt or BitCast cast constant expression
|
|
|
|
static Constant *getZExtOrBitCast(
|
|
|
|
Constant *C, ///< The constant to zext or bitcast
|
|
|
|
const Type *Ty ///< The type to zext or bitcast C to
|
|
|
|
);
|
|
|
|
|
|
|
|
// @brief Create a SExt or BitCast cast constant expression
|
|
|
|
static Constant *getSExtOrBitCast(
|
2006-12-04 22:34:17 +01:00
|
|
|
Constant *C, ///< The constant to sext or bitcast
|
2009-06-20 02:24:58 +02:00
|
|
|
const Type *Ty ///< The type to sext or bitcast C to
|
2006-12-04 21:17:56 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
// @brief Create a Trunc or BitCast cast constant expression
|
|
|
|
static Constant *getTruncOrBitCast(
|
2006-12-04 22:34:17 +01:00
|
|
|
Constant *C, ///< The constant to trunc or bitcast
|
|
|
|
const Type *Ty ///< The type to trunc or bitcast C to
|
2006-12-04 21:17:56 +01:00
|
|
|
);
|
|
|
|
|
2006-12-05 00:14:27 +01:00
|
|
|
/// @brief Create a BitCast or a PtrToInt cast constant expression
|
|
|
|
static Constant *getPointerCast(
|
|
|
|
Constant *C, ///< The pointer value to be casted (operand 0)
|
2009-06-20 02:24:58 +02:00
|
|
|
const Type *Ty ///< The type to which cast should be made
|
2006-12-05 00:14:27 +01:00
|
|
|
);
|
|
|
|
|
2006-12-12 01:51:07 +01:00
|
|
|
/// @brief Create a ZExt, Bitcast or Trunc for integer -> integer casts
|
|
|
|
static Constant *getIntegerCast(
|
|
|
|
Constant *C, ///< The integer constant to be casted
|
|
|
|
const Type *Ty, ///< The integer type to cast to
|
|
|
|
bool isSigned ///< Whether C should be treated as signed or not
|
|
|
|
);
|
|
|
|
|
|
|
|
/// @brief Create a FPExt, Bitcast or FPTrunc for fp -> fp casts
|
|
|
|
static Constant *getFPCast(
|
|
|
|
Constant *C, ///< The integer constant to be casted
|
|
|
|
const Type *Ty ///< The integer type to cast to
|
|
|
|
);
|
|
|
|
|
2006-11-27 02:05:10 +01:00
|
|
|
/// @brief Return true if this is a convert constant expression
|
|
|
|
bool isCast() const;
|
|
|
|
|
2006-12-04 06:19:02 +01:00
|
|
|
/// @brief Return true if this is a compare constant expression
|
|
|
|
bool isCompare() const;
|
|
|
|
|
2008-05-31 02:58:22 +02:00
|
|
|
/// @brief Return true if this is an insertvalue or extractvalue expression,
|
|
|
|
/// and the getIndices() method may be used.
|
|
|
|
bool hasIndices() const;
|
|
|
|
|
2009-09-11 01:37:55 +02:00
|
|
|
/// @brief Return true if this is a getelementptr expression and all
|
|
|
|
/// the index operands are compile-time known integers within the
|
|
|
|
/// corresponding notional static array extents. Note that this is
|
|
|
|
/// not equivalant to, a subset of, or a superset of the "inbounds"
|
|
|
|
/// property.
|
|
|
|
bool isGEPWithNoNotionalOverIndexing() const;
|
|
|
|
|
2004-03-12 06:50:39 +01:00
|
|
|
/// Select constant expr
|
|
|
|
///
|
|
|
|
static Constant *getSelect(Constant *C, Constant *V1, Constant *V2) {
|
|
|
|
return getSelectTy(V1->getType(), C, V1, V2);
|
|
|
|
}
|
|
|
|
|
2009-07-29 20:55:55 +02:00
|
|
|
/// get - Return a binary or shift operator constant expression,
|
2004-01-12 20:37:26 +01:00
|
|
|
/// folding if possible.
|
2003-10-05 02:13:28 +02:00
|
|
|
///
|
2009-09-08 01:54:19 +02:00
|
|
|
static Constant *get(unsigned Opcode, Constant *C1, Constant *C2,
|
|
|
|
unsigned Flags = 0);
|
2006-12-04 22:34:17 +01:00
|
|
|
|
2009-07-08 05:04:38 +02:00
|
|
|
/// @brief Return an ICmp or FCmp comparison operator constant expression.
|
2006-12-23 07:05:41 +01:00
|
|
|
static Constant *getCompare(unsigned short pred, Constant *C1, Constant *C2);
|
2002-07-30 20:54:22 +02:00
|
|
|
|
2009-07-29 20:55:55 +02:00
|
|
|
/// get* - Return some common constants without having to
|
2004-03-29 04:37:53 +02:00
|
|
|
/// specify the full Instruction::OPCODE identifier.
|
|
|
|
///
|
2007-10-06 16:29:36 +02:00
|
|
|
static Constant *getICmp(unsigned short pred, Constant *LHS, Constant *RHS);
|
|
|
|
static Constant *getFCmp(unsigned short pred, Constant *LHS, Constant *RHS);
|
2004-05-25 07:32:13 +02:00
|
|
|
|
2004-10-12 00:52:25 +02:00
|
|
|
/// Getelementptr form. std::vector<Value*> is only accepted for convenience:
|
|
|
|
/// all elements must be Constant's.
|
2003-10-05 02:13:28 +02:00
|
|
|
///
|
2009-06-20 02:24:58 +02:00
|
|
|
static Constant *getGetElementPtr(Constant *C,
|
2009-10-11 06:03:22 +02:00
|
|
|
Constant *const *IdxList, unsigned NumIdx);
|
2009-06-20 02:24:58 +02:00
|
|
|
static Constant *getGetElementPtr(Constant *C,
|
|
|
|
Value* const *IdxList, unsigned NumIdx);
|
2009-08-11 19:57:01 +02:00
|
|
|
|
2009-09-04 01:34:49 +02:00
|
|
|
/// Create an "inbounds" getelementptr. See the documentation for the
|
|
|
|
/// "inbounds" flag in LangRef.html for details.
|
|
|
|
static Constant *getInBoundsGetElementPtr(Constant *C,
|
2009-10-11 06:03:22 +02:00
|
|
|
Constant *const *IdxList,
|
2009-09-04 01:34:49 +02:00
|
|
|
unsigned NumIdx);
|
|
|
|
static Constant *getInBoundsGetElementPtr(Constant *C,
|
|
|
|
Value* const *IdxList,
|
|
|
|
unsigned NumIdx);
|
|
|
|
|
2006-04-08 03:15:18 +02:00
|
|
|
static Constant *getExtractElement(Constant *Vec, Constant *Idx);
|
|
|
|
static Constant *getInsertElement(Constant *Vec, Constant *Elt,Constant *Idx);
|
|
|
|
static Constant *getShuffleVector(Constant *V1, Constant *V2, Constant *Mask);
|
2008-05-15 21:50:34 +02:00
|
|
|
static Constant *getExtractValue(Constant *Agg,
|
2008-05-31 02:58:22 +02:00
|
|
|
const unsigned *IdxList, unsigned NumIdx);
|
2008-05-15 21:50:34 +02:00
|
|
|
static Constant *getInsertValue(Constant *Agg, Constant *Val,
|
2008-05-31 02:58:22 +02:00
|
|
|
const unsigned *IdxList, unsigned NumIdx);
|
2006-12-03 06:48:19 +01:00
|
|
|
|
2002-08-26 19:53:56 +02:00
|
|
|
/// isNullValue - Return true if this is the value that would be returned by
|
|
|
|
/// getNullValue.
|
2002-07-15 00:47:54 +02:00
|
|
|
virtual bool isNullValue() const { return false; }
|
2005-04-21 22:19:05 +02:00
|
|
|
|
2002-08-26 19:53:56 +02:00
|
|
|
/// getOpcode - Return the opcode at the root of this constant expression
|
2009-12-29 03:14:09 +01:00
|
|
|
unsigned getOpcode() const { return getSubclassDataFromValue(); }
|
2002-07-15 00:47:54 +02:00
|
|
|
|
2006-12-03 06:48:19 +01:00
|
|
|
/// getPredicate - Return the ICMP or FCMP predicate value. Assert if this is
|
|
|
|
/// not an ICMP or FCMP constant expression.
|
|
|
|
unsigned getPredicate() const;
|
|
|
|
|
2008-05-31 02:58:22 +02:00
|
|
|
/// getIndices - Assert that this is an insertvalue or exactvalue
|
|
|
|
/// expression and return the list of indices.
|
|
|
|
const SmallVector<unsigned, 4> &getIndices() const;
|
|
|
|
|
2002-08-26 19:53:56 +02:00
|
|
|
/// getOpcodeName - Return a string representation for an opcode.
|
2002-07-30 20:54:22 +02:00
|
|
|
const char *getOpcodeName() const;
|
2005-04-21 22:19:05 +02:00
|
|
|
|
2006-07-14 21:37:01 +02:00
|
|
|
/// getWithOperandReplaced - Return a constant expression identical to this
|
|
|
|
/// one, but with the specified operand set to the specified value.
|
|
|
|
Constant *getWithOperandReplaced(unsigned OpNo, Constant *Op) const;
|
|
|
|
|
2006-07-15 00:19:18 +02:00
|
|
|
/// getWithOperands - This returns the current constant expression with the
|
|
|
|
/// operands replaced with the specified values. The specified operands must
|
|
|
|
/// match count and type with the existing ones.
|
2008-08-21 00:27:40 +02:00
|
|
|
Constant *getWithOperands(const std::vector<Constant*> &Ops) const {
|
2008-09-19 20:34:40 +02:00
|
|
|
return getWithOperands(&Ops[0], (unsigned)Ops.size());
|
2008-08-21 00:27:40 +02:00
|
|
|
}
|
2009-10-11 06:03:22 +02:00
|
|
|
Constant *getWithOperands(Constant *const *Ops, unsigned NumOps) const;
|
2006-07-14 21:37:01 +02:00
|
|
|
|
2009-06-20 02:24:58 +02:00
|
|
|
virtual void destroyConstant();
|
2005-10-04 20:12:13 +02:00
|
|
|
virtual void replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U);
|
2005-04-21 22:19:05 +02:00
|
|
|
|
2002-08-26 19:53:56 +02:00
|
|
|
/// Methods for support type inquiry through isa, cast, and dyn_cast:
|
2002-07-15 00:47:54 +02:00
|
|
|
static inline bool classof(const ConstantExpr *) { return true; }
|
|
|
|
static inline bool classof(const Value *V) {
|
2007-04-13 20:12:09 +02:00
|
|
|
return V->getValueID() == ConstantExprVal;
|
2002-07-15 00:47:54 +02:00
|
|
|
}
|
2009-12-29 03:14:09 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
// Shadow Value::setValueSubclassData with a private forwarding method so that
|
|
|
|
// subclasses cannot accidentally use it.
|
|
|
|
void setValueSubclassData(unsigned short D) {
|
|
|
|
Value::setValueSubclassData(D);
|
|
|
|
}
|
2002-07-15 00:47:54 +02:00
|
|
|
};
|
|
|
|
|
2008-05-10 10:32:32 +02:00
|
|
|
template <>
|
2009-09-06 10:55:57 +02:00
|
|
|
struct OperandTraits<ConstantExpr> : public VariadicOperandTraits<1> {
|
2008-05-10 10:32:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
DEFINE_TRANSPARENT_CASTED_OPERAND_ACCESSORS(ConstantExpr, Constant)
|
2004-10-16 20:05:25 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// UndefValue - 'undef' values are things that do not have specified contents.
|
|
|
|
/// These are used for a variety of purposes, including global variable
|
|
|
|
/// initializers and operands to instructions. 'undef' values can occur with
|
2010-05-15 01:01:02 +02:00
|
|
|
/// any first-class type.
|
|
|
|
///
|
|
|
|
/// Undef values aren't exactly constants; if they have multiple uses, they
|
|
|
|
/// can appear to have different bit patterns at each use. See
|
|
|
|
/// LangRef.html#undefvalues for details.
|
2004-10-16 20:05:25 +02:00
|
|
|
///
|
|
|
|
class UndefValue : public Constant {
|
|
|
|
friend struct ConstantCreator<UndefValue, Type, char>;
|
2008-04-06 22:25:17 +02:00
|
|
|
void *operator new(size_t, unsigned); // DO NOT IMPLEMENT
|
2004-10-16 20:05:25 +02:00
|
|
|
UndefValue(const UndefValue &); // DO NOT IMPLEMENT
|
|
|
|
protected:
|
2007-03-23 19:44:11 +01:00
|
|
|
explicit UndefValue(const Type *T) : Constant(T, UndefValueVal, 0, 0) {}
|
2008-04-06 22:25:17 +02:00
|
|
|
protected:
|
|
|
|
// allocate space for exactly zero operands
|
|
|
|
void *operator new(size_t s) {
|
|
|
|
return User::operator new(s, 0);
|
|
|
|
}
|
2004-10-16 20:05:25 +02:00
|
|
|
public:
|
|
|
|
/// get() - Static factory methods - Return an 'undef' object of the specified
|
|
|
|
/// type.
|
|
|
|
///
|
2009-06-20 02:24:58 +02:00
|
|
|
static UndefValue *get(const Type *T);
|
2004-10-16 20:05:25 +02:00
|
|
|
|
|
|
|
/// isNullValue - Return true if this is the value that would be returned by
|
|
|
|
/// getNullValue.
|
|
|
|
virtual bool isNullValue() const { return false; }
|
|
|
|
|
2009-06-20 02:24:58 +02:00
|
|
|
virtual void destroyConstant();
|
2004-10-16 20:05:25 +02:00
|
|
|
|
|
|
|
/// Methods for support type inquiry through isa, cast, and dyn_cast:
|
|
|
|
static inline bool classof(const UndefValue *) { return true; }
|
|
|
|
static bool classof(const Value *V) {
|
2007-04-13 20:12:09 +02:00
|
|
|
return V->getValueID() == UndefValueVal;
|
2004-10-16 20:05:25 +02:00
|
|
|
}
|
|
|
|
};
|
2010-05-15 01:01:02 +02:00
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2001-06-06 22:29:01 +02:00
|
|
|
#endif
|