2007-10-26 20:44:02 +00:00
|
|
|
//===-- llvm/ADT/APSInt.h - Arbitrary Precision Signed Int -----*- C++ -*--===//
|
2007-04-05 05:20:11 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 19:59:42 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-04-05 05:20:11 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the APSInt class, which is a simple class that
|
|
|
|
// represents an arbitrary sized integer that knows its signedness.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-01-10 00:45:19 +00:00
|
|
|
#ifndef LLVM_ADT_APSINT_H
|
|
|
|
#define LLVM_ADT_APSINT_H
|
2007-04-05 05:20:11 +00:00
|
|
|
|
|
|
|
#include "llvm/ADT/APInt.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
2009-01-09 19:25:42 +00:00
|
|
|
|
2007-04-05 05:20:11 +00:00
|
|
|
class APSInt : public APInt {
|
|
|
|
bool IsUnsigned;
|
|
|
|
public:
|
2008-08-13 20:53:17 +00:00
|
|
|
/// Default constructor that creates an uninitialized APInt.
|
2012-12-20 03:59:24 +00:00
|
|
|
explicit APSInt() : IsUnsigned(false) {}
|
2008-08-13 20:53:17 +00:00
|
|
|
|
2007-04-05 05:20:11 +00:00
|
|
|
/// APSInt ctor - Create an APSInt with the specified width, default to
|
|
|
|
/// unsigned.
|
2009-01-09 19:25:42 +00:00
|
|
|
explicit APSInt(uint32_t BitWidth, bool isUnsigned = true)
|
2008-01-29 18:55:14 +00:00
|
|
|
: APInt(BitWidth, 0), IsUnsigned(isUnsigned) {}
|
2008-01-24 18:59:52 +00:00
|
|
|
|
2014-03-02 20:56:28 +00:00
|
|
|
explicit APSInt(APInt I, bool isUnsigned = true)
|
|
|
|
: APInt(std::move(I)), IsUnsigned(isUnsigned) {}
|
2007-04-05 05:20:11 +00:00
|
|
|
|
2014-03-02 20:56:28 +00:00
|
|
|
APSInt &operator=(APInt RHS) {
|
2007-04-05 05:20:11 +00:00
|
|
|
// Retain our current sign.
|
2014-03-02 20:56:28 +00:00
|
|
|
APInt::operator=(std::move(RHS));
|
2007-04-05 05:20:11 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
APSInt &operator=(uint64_t RHS) {
|
|
|
|
// Retain our current sign.
|
2009-01-09 19:25:42 +00:00
|
|
|
APInt::operator=(RHS);
|
2007-04-05 05:20:11 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Query sign information.
|
|
|
|
bool isSigned() const { return !IsUnsigned; }
|
|
|
|
bool isUnsigned() const { return IsUnsigned; }
|
|
|
|
void setIsUnsigned(bool Val) { IsUnsigned = Val; }
|
2007-07-15 23:32:03 +00:00
|
|
|
void setIsSigned(bool Val) { IsUnsigned = !Val; }
|
2009-01-09 19:25:42 +00:00
|
|
|
|
2008-08-17 07:19:36 +00:00
|
|
|
/// toString - Append this APSInt to the specified SmallString.
|
|
|
|
void toString(SmallVectorImpl<char> &Str, unsigned Radix = 10) const {
|
2009-02-09 12:31:26 +00:00
|
|
|
APInt::toString(Str, Radix, isSigned());
|
2008-08-17 07:19:36 +00:00
|
|
|
}
|
|
|
|
/// toString - Converts an APInt to a std::string. This is an inefficient
|
2014-06-18 18:08:55 +00:00
|
|
|
/// method; you should prefer passing in a SmallString instead.
|
2008-08-17 07:19:36 +00:00
|
|
|
std::string toString(unsigned Radix) const {
|
2007-08-23 05:20:48 +00:00
|
|
|
return APInt::toString(Radix, isSigned());
|
2007-08-23 05:15:32 +00:00
|
|
|
}
|
2008-08-17 07:19:36 +00:00
|
|
|
using APInt::toString;
|
2009-01-09 19:25:42 +00:00
|
|
|
|
2015-02-05 00:17:43 +00:00
|
|
|
/// \brief Get the correctly-extended \c int64_t value.
|
|
|
|
int64_t getExtValue() const {
|
|
|
|
assert(getMinSignedBits() <= 64 && "Too many bits for int64_t");
|
|
|
|
return isSigned() ? getSExtValue() : getZExtValue();
|
|
|
|
}
|
|
|
|
|
2013-11-16 16:25:41 +00:00
|
|
|
APSInt LLVM_ATTRIBUTE_UNUSED_RESULT trunc(uint32_t width) const {
|
2010-12-07 08:25:19 +00:00
|
|
|
return APSInt(APInt::trunc(width), IsUnsigned);
|
|
|
|
}
|
|
|
|
|
2013-11-16 16:25:41 +00:00
|
|
|
APSInt LLVM_ATTRIBUTE_UNUSED_RESULT extend(uint32_t width) const {
|
2008-01-24 18:59:52 +00:00
|
|
|
if (IsUnsigned)
|
2010-12-07 08:25:19 +00:00
|
|
|
return APSInt(zext(width), IsUnsigned);
|
2008-01-24 18:59:52 +00:00
|
|
|
else
|
2010-12-07 08:25:19 +00:00
|
|
|
return APSInt(sext(width), IsUnsigned);
|
2008-01-24 18:59:52 +00:00
|
|
|
}
|
2009-01-09 19:25:42 +00:00
|
|
|
|
2013-11-16 16:25:41 +00:00
|
|
|
APSInt LLVM_ATTRIBUTE_UNUSED_RESULT extOrTrunc(uint32_t width) const {
|
2008-01-24 18:59:52 +00:00
|
|
|
if (IsUnsigned)
|
2010-12-07 08:25:19 +00:00
|
|
|
return APSInt(zextOrTrunc(width), IsUnsigned);
|
2008-01-24 18:59:52 +00:00
|
|
|
else
|
2010-12-07 08:25:19 +00:00
|
|
|
return APSInt(sextOrTrunc(width), IsUnsigned);
|
2008-01-24 18:59:52 +00:00
|
|
|
}
|
2009-01-09 19:25:42 +00:00
|
|
|
|
2007-04-05 05:20:11 +00:00
|
|
|
const APSInt &operator%=(const APSInt &RHS) {
|
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
|
|
|
if (IsUnsigned)
|
|
|
|
*this = urem(RHS);
|
|
|
|
else
|
|
|
|
*this = srem(RHS);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
const APSInt &operator/=(const APSInt &RHS) {
|
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
|
|
|
if (IsUnsigned)
|
|
|
|
*this = udiv(RHS);
|
|
|
|
else
|
|
|
|
*this = sdiv(RHS);
|
|
|
|
return *this;
|
|
|
|
}
|
2007-04-10 07:06:21 +00:00
|
|
|
APSInt operator%(const APSInt &RHS) const {
|
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
2008-01-24 18:59:52 +00:00
|
|
|
return IsUnsigned ? APSInt(urem(RHS), true) : APSInt(srem(RHS), false);
|
2007-04-10 07:06:21 +00:00
|
|
|
}
|
|
|
|
APSInt operator/(const APSInt &RHS) const {
|
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
2008-01-24 18:59:52 +00:00
|
|
|
return IsUnsigned ? APSInt(udiv(RHS), true) : APSInt(sdiv(RHS), false);
|
2007-04-10 07:06:21 +00:00
|
|
|
}
|
2009-01-09 19:25:42 +00:00
|
|
|
|
2008-01-24 18:59:52 +00:00
|
|
|
APSInt operator>>(unsigned Amt) const {
|
|
|
|
return IsUnsigned ? APSInt(lshr(Amt), true) : APSInt(ashr(Amt), false);
|
2007-04-05 05:20:11 +00:00
|
|
|
}
|
2008-01-24 18:59:52 +00:00
|
|
|
APSInt& operator>>=(unsigned Amt) {
|
|
|
|
*this = *this >> Amt;
|
2007-08-02 06:00:13 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2009-01-09 19:25:42 +00:00
|
|
|
|
2007-04-05 05:20:11 +00:00
|
|
|
inline bool operator<(const APSInt& RHS) const {
|
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
|
|
|
return IsUnsigned ? ult(RHS) : slt(RHS);
|
|
|
|
}
|
|
|
|
inline bool operator>(const APSInt& RHS) const {
|
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
|
|
|
return IsUnsigned ? ugt(RHS) : sgt(RHS);
|
|
|
|
}
|
|
|
|
inline bool operator<=(const APSInt& RHS) const {
|
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
|
|
|
return IsUnsigned ? ule(RHS) : sle(RHS);
|
|
|
|
}
|
|
|
|
inline bool operator>=(const APSInt& RHS) const {
|
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
|
|
|
return IsUnsigned ? uge(RHS) : sge(RHS);
|
|
|
|
}
|
2012-07-23 20:24:23 +00:00
|
|
|
inline bool operator==(const APSInt& RHS) const {
|
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
|
|
|
return eq(RHS);
|
|
|
|
}
|
|
|
|
inline bool operator!=(const APSInt& RHS) const {
|
|
|
|
return !((*this) == RHS);
|
|
|
|
}
|
2015-02-05 00:17:43 +00:00
|
|
|
|
|
|
|
bool operator==(int64_t RHS) const {
|
|
|
|
return compareValues(*this, get(RHS)) == 0;
|
|
|
|
}
|
|
|
|
bool operator!=(int64_t RHS) const {
|
|
|
|
return compareValues(*this, get(RHS)) != 0;
|
|
|
|
}
|
|
|
|
bool operator<=(int64_t RHS) const {
|
|
|
|
return compareValues(*this, get(RHS)) <= 0;
|
|
|
|
}
|
|
|
|
bool operator>=(int64_t RHS) const {
|
|
|
|
return compareValues(*this, get(RHS)) >= 0;
|
|
|
|
}
|
|
|
|
bool operator<(int64_t RHS) const {
|
|
|
|
return compareValues(*this, get(RHS)) < 0;
|
|
|
|
}
|
|
|
|
bool operator>(int64_t RHS) const {
|
|
|
|
return compareValues(*this, get(RHS)) > 0;
|
2012-07-23 20:24:23 +00:00
|
|
|
}
|
2009-01-09 19:25:42 +00:00
|
|
|
|
2008-01-24 18:59:52 +00:00
|
|
|
// The remaining operators just wrap the logic of APInt, but retain the
|
|
|
|
// signedness information.
|
2009-01-09 19:25:42 +00:00
|
|
|
|
2008-02-08 07:14:19 +00:00
|
|
|
APSInt operator<<(unsigned Bits) const {
|
|
|
|
return APSInt(static_cast<const APInt&>(*this) << Bits, IsUnsigned);
|
2009-01-09 19:25:42 +00:00
|
|
|
}
|
2008-01-24 18:59:52 +00:00
|
|
|
APSInt& operator<<=(unsigned Amt) {
|
|
|
|
*this = *this << Amt;
|
|
|
|
return *this;
|
|
|
|
}
|
2009-01-09 19:25:42 +00:00
|
|
|
|
2008-01-24 18:59:52 +00:00
|
|
|
APSInt& operator++() {
|
2013-03-20 23:56:19 +00:00
|
|
|
++(static_cast<APInt&>(*this));
|
2008-01-24 18:59:52 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
APSInt& operator--() {
|
2013-03-20 23:56:19 +00:00
|
|
|
--(static_cast<APInt&>(*this));
|
2008-01-24 18:59:52 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
APSInt operator++(int) {
|
|
|
|
return APSInt(++static_cast<APInt&>(*this), IsUnsigned);
|
|
|
|
}
|
|
|
|
APSInt operator--(int) {
|
|
|
|
return APSInt(--static_cast<APInt&>(*this), IsUnsigned);
|
2009-01-09 19:25:42 +00:00
|
|
|
}
|
2008-01-24 18:59:52 +00:00
|
|
|
APSInt operator-() const {
|
|
|
|
return APSInt(-static_cast<const APInt&>(*this), IsUnsigned);
|
2009-01-09 19:25:42 +00:00
|
|
|
}
|
2008-01-24 18:59:52 +00:00
|
|
|
APSInt& operator+=(const APSInt& RHS) {
|
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
|
|
|
static_cast<APInt&>(*this) += RHS;
|
|
|
|
return *this;
|
2009-01-09 19:25:42 +00:00
|
|
|
}
|
2008-01-24 18:59:52 +00:00
|
|
|
APSInt& operator-=(const APSInt& RHS) {
|
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
|
|
|
static_cast<APInt&>(*this) -= RHS;
|
|
|
|
return *this;
|
2009-01-09 19:25:42 +00:00
|
|
|
}
|
2008-01-24 18:59:52 +00:00
|
|
|
APSInt& operator*=(const APSInt& RHS) {
|
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
|
|
|
static_cast<APInt&>(*this) *= RHS;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
APSInt& operator&=(const APSInt& RHS) {
|
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
|
|
|
static_cast<APInt&>(*this) &= RHS;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
APSInt& operator|=(const APSInt& RHS) {
|
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
|
|
|
static_cast<APInt&>(*this) |= RHS;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
APSInt& operator^=(const APSInt& RHS) {
|
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
|
|
|
static_cast<APInt&>(*this) ^= RHS;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2009-01-09 19:25:42 +00:00
|
|
|
APSInt operator&(const APSInt& RHS) const {
|
2008-01-24 18:59:52 +00:00
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
|
|
|
return APSInt(static_cast<const APInt&>(*this) & RHS, IsUnsigned);
|
|
|
|
}
|
2013-11-16 16:25:41 +00:00
|
|
|
APSInt LLVM_ATTRIBUTE_UNUSED_RESULT And(const APSInt& RHS) const {
|
2008-01-24 18:59:52 +00:00
|
|
|
return this->operator&(RHS);
|
|
|
|
}
|
2009-01-09 19:25:42 +00:00
|
|
|
|
|
|
|
APSInt operator|(const APSInt& RHS) const {
|
2008-01-24 18:59:52 +00:00
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
|
|
|
return APSInt(static_cast<const APInt&>(*this) | RHS, IsUnsigned);
|
|
|
|
}
|
2013-11-16 16:25:41 +00:00
|
|
|
APSInt LLVM_ATTRIBUTE_UNUSED_RESULT Or(const APSInt& RHS) const {
|
2008-01-24 18:59:52 +00:00
|
|
|
return this->operator|(RHS);
|
|
|
|
}
|
2009-01-09 19:25:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
APSInt operator^(const APSInt& RHS) const {
|
2008-01-24 18:59:52 +00:00
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
|
|
|
return APSInt(static_cast<const APInt&>(*this) ^ RHS, IsUnsigned);
|
|
|
|
}
|
2013-11-16 16:25:41 +00:00
|
|
|
APSInt LLVM_ATTRIBUTE_UNUSED_RESULT Xor(const APSInt& RHS) const {
|
2008-01-24 18:59:52 +00:00
|
|
|
return this->operator^(RHS);
|
2009-01-09 19:25:42 +00:00
|
|
|
}
|
|
|
|
|
2008-01-24 18:59:52 +00:00
|
|
|
APSInt operator*(const APSInt& RHS) const {
|
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
|
|
|
return APSInt(static_cast<const APInt&>(*this) * RHS, IsUnsigned);
|
|
|
|
}
|
2009-01-09 19:25:42 +00:00
|
|
|
APSInt operator+(const APSInt& RHS) const {
|
2008-01-24 18:59:52 +00:00
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
|
|
|
return APSInt(static_cast<const APInt&>(*this) + RHS, IsUnsigned);
|
|
|
|
}
|
|
|
|
APSInt operator-(const APSInt& RHS) const {
|
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
|
|
|
return APSInt(static_cast<const APInt&>(*this) - RHS, IsUnsigned);
|
|
|
|
}
|
2009-01-09 19:25:42 +00:00
|
|
|
APSInt operator~() const {
|
2008-01-24 18:59:52 +00:00
|
|
|
return APSInt(~static_cast<const APInt&>(*this), IsUnsigned);
|
|
|
|
}
|
2009-01-09 19:25:42 +00:00
|
|
|
|
2008-09-19 18:01:14 +00:00
|
|
|
/// getMaxValue - Return the APSInt representing the maximum integer value
|
|
|
|
/// with the given bit width and signedness.
|
2009-01-30 01:58:19 +00:00
|
|
|
static APSInt getMaxValue(uint32_t numBits, bool Unsigned) {
|
|
|
|
return APSInt(Unsigned ? APInt::getMaxValue(numBits)
|
|
|
|
: APInt::getSignedMaxValue(numBits), Unsigned);
|
2008-09-19 18:01:14 +00:00
|
|
|
}
|
2009-01-09 19:25:42 +00:00
|
|
|
|
2008-09-19 18:01:14 +00:00
|
|
|
/// getMinValue - Return the APSInt representing the minimum integer value
|
|
|
|
/// with the given bit width and signedness.
|
2009-01-30 01:58:19 +00:00
|
|
|
static APSInt getMinValue(uint32_t numBits, bool Unsigned) {
|
|
|
|
return APSInt(Unsigned ? APInt::getMinValue(numBits)
|
|
|
|
: APInt::getSignedMinValue(numBits), Unsigned);
|
2008-09-19 18:01:14 +00:00
|
|
|
}
|
2009-01-09 19:25:42 +00:00
|
|
|
|
2012-07-15 00:23:36 +00:00
|
|
|
/// \brief Determine if two APSInts have the same value, zero- or
|
|
|
|
/// sign-extending as needed.
|
|
|
|
static bool isSameValue(const APSInt &I1, const APSInt &I2) {
|
2015-02-05 00:17:43 +00:00
|
|
|
return !compareValues(I1, I2);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// \brief Compare underlying values of two numbers.
|
|
|
|
static int compareValues(const APSInt &I1, const APSInt &I2) {
|
2012-07-15 00:23:36 +00:00
|
|
|
if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned())
|
2015-02-05 00:17:43 +00:00
|
|
|
return I1 == I2 ? 0 : I1 > I2 ? 1 : -1;
|
2012-07-15 00:23:36 +00:00
|
|
|
|
|
|
|
// Check for a bit-width mismatch.
|
|
|
|
if (I1.getBitWidth() > I2.getBitWidth())
|
2015-02-05 00:17:43 +00:00
|
|
|
return compareValues(I1, I2.extend(I1.getBitWidth()));
|
2012-07-15 00:23:36 +00:00
|
|
|
else if (I2.getBitWidth() > I1.getBitWidth())
|
2015-02-05 00:17:43 +00:00
|
|
|
return compareValues(I1.extend(I2.getBitWidth()), I2);
|
2012-07-15 00:23:36 +00:00
|
|
|
|
2014-10-12 15:36:31 +00:00
|
|
|
// We have a signedness mismatch. Check for negative values and do an
|
2015-02-05 00:17:43 +00:00
|
|
|
// unsigned compare if both are positive.
|
|
|
|
if (I1.isSigned()) {
|
|
|
|
assert(!I2.isSigned() && "Expected signed mismatch");
|
|
|
|
if (I1.isNegative())
|
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
assert(I2.isSigned() && "Expected signed mismatch");
|
|
|
|
if (I2.isNegative())
|
|
|
|
return 1;
|
|
|
|
}
|
2012-07-15 00:23:36 +00:00
|
|
|
|
2015-02-05 00:17:43 +00:00
|
|
|
return I1.eq(I2) ? 0 : I1.ugt(I2) ? 1 : -1;
|
2012-07-15 00:23:36 +00:00
|
|
|
}
|
|
|
|
|
2015-02-05 00:17:43 +00:00
|
|
|
static APSInt get(int64_t X) { return APSInt(APInt(64, X), false); }
|
|
|
|
static APSInt getUnsigned(uint64_t X) { return APSInt(APInt(64, X), true); }
|
|
|
|
|
2008-01-19 04:31:12 +00:00
|
|
|
/// Profile - Used to insert APSInt objects, or objects that contain APSInt
|
|
|
|
/// objects, into FoldingSets.
|
|
|
|
void Profile(FoldingSetNodeID& ID) const;
|
2007-04-05 05:20:11 +00:00
|
|
|
};
|
2009-01-09 19:25:42 +00:00
|
|
|
|
2015-02-05 00:17:43 +00:00
|
|
|
inline bool operator==(int64_t V1, const APSInt &V2) { return V2 == V1; }
|
|
|
|
inline bool operator!=(int64_t V1, const APSInt &V2) { return V2 != V1; }
|
|
|
|
inline bool operator<=(int64_t V1, const APSInt &V2) { return V2 >= V1; }
|
|
|
|
inline bool operator>=(int64_t V1, const APSInt &V2) { return V2 <= V1; }
|
|
|
|
inline bool operator<(int64_t V1, const APSInt &V2) { return V2 > V1; }
|
|
|
|
inline bool operator>(int64_t V1, const APSInt &V2) { return V2 < V1; }
|
2012-07-23 20:24:23 +00:00
|
|
|
|
2008-08-23 22:23:09 +00:00
|
|
|
inline raw_ostream &operator<<(raw_ostream &OS, const APSInt &I) {
|
2008-08-17 07:19:36 +00:00
|
|
|
I.print(OS, I.isSigned());
|
|
|
|
return OS;
|
|
|
|
}
|
2009-01-09 19:25:42 +00:00
|
|
|
|
2007-04-05 05:20:11 +00:00
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|