2007-10-26 22:44:02 +02:00
|
|
|
//===-- llvm/ADT/APSInt.h - Arbitrary Precision Signed Int -----*- C++ -*--===//
|
2007-04-05 07:20:11 +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.
|
2007-04-05 07:20:11 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the APSInt class, which is a simple class that
|
|
|
|
// represents an arbitrary sized integer that knows its signedness.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_APSINT_H
|
|
|
|
#define LLVM_APSINT_H
|
|
|
|
|
|
|
|
#include "llvm/ADT/APInt.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
2009-01-09 20:25:42 +01:00
|
|
|
|
2007-04-05 07:20:11 +02:00
|
|
|
class APSInt : public APInt {
|
|
|
|
bool IsUnsigned;
|
|
|
|
public:
|
2008-08-13 22:53:17 +02:00
|
|
|
/// Default constructor that creates an uninitialized APInt.
|
|
|
|
explicit APSInt() {}
|
|
|
|
|
2007-04-05 07:20:11 +02:00
|
|
|
/// APSInt ctor - Create an APSInt with the specified width, default to
|
|
|
|
/// unsigned.
|
2009-01-09 20:25:42 +01:00
|
|
|
explicit APSInt(uint32_t BitWidth, bool isUnsigned = true)
|
2008-01-29 19:55:14 +01:00
|
|
|
: APInt(BitWidth, 0), IsUnsigned(isUnsigned) {}
|
2008-01-24 19:59:52 +01:00
|
|
|
|
2009-01-09 20:25:42 +01:00
|
|
|
explicit APSInt(const APInt &I, bool isUnsigned = true)
|
2008-01-24 19:59:52 +01:00
|
|
|
: APInt(I), IsUnsigned(isUnsigned) {}
|
2007-04-05 07:20:11 +02:00
|
|
|
|
|
|
|
APSInt &operator=(const APSInt &RHS) {
|
2009-01-09 20:25:42 +01:00
|
|
|
APInt::operator=(RHS);
|
2007-04-05 07:20:11 +02:00
|
|
|
IsUnsigned = RHS.IsUnsigned;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
APSInt &operator=(const APInt &RHS) {
|
|
|
|
// Retain our current sign.
|
2009-01-09 20:25:42 +01:00
|
|
|
APInt::operator=(RHS);
|
2007-04-05 07:20:11 +02:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
APSInt &operator=(uint64_t RHS) {
|
|
|
|
// Retain our current sign.
|
2009-01-09 20:25:42 +01:00
|
|
|
APInt::operator=(RHS);
|
2007-04-05 07:20:11 +02:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Query sign information.
|
|
|
|
bool isSigned() const { return !IsUnsigned; }
|
|
|
|
bool isUnsigned() const { return IsUnsigned; }
|
|
|
|
void setIsUnsigned(bool Val) { IsUnsigned = Val; }
|
2007-07-16 01:32:03 +02:00
|
|
|
void setIsSigned(bool Val) { IsUnsigned = !Val; }
|
2009-01-09 20:25:42 +01:00
|
|
|
|
2008-08-17 09:19:36 +02:00
|
|
|
/// toString - Append this APSInt to the specified SmallString.
|
|
|
|
void toString(SmallVectorImpl<char> &Str, unsigned Radix = 10) const {
|
2009-02-09 13:31:26 +01:00
|
|
|
APInt::toString(Str, Radix, isSigned());
|
2008-08-17 09:19:36 +02:00
|
|
|
}
|
|
|
|
/// toString - Converts an APInt to a std::string. This is an inefficient
|
|
|
|
/// method, your should prefer passing in a SmallString instead.
|
|
|
|
std::string toString(unsigned Radix) const {
|
2007-08-23 07:20:48 +02:00
|
|
|
return APInt::toString(Radix, isSigned());
|
2007-08-23 07:15:32 +02:00
|
|
|
}
|
2008-08-17 09:19:36 +02:00
|
|
|
using APInt::toString;
|
2009-01-09 20:25:42 +01:00
|
|
|
|
2008-01-24 19:59:52 +01:00
|
|
|
APSInt& extend(uint32_t width) {
|
|
|
|
if (IsUnsigned)
|
|
|
|
zext(width);
|
|
|
|
else
|
|
|
|
sext(width);
|
|
|
|
return *this;
|
|
|
|
}
|
2009-01-09 20:25:42 +01:00
|
|
|
|
2008-01-24 19:59:52 +01:00
|
|
|
APSInt& extOrTrunc(uint32_t width) {
|
|
|
|
if (IsUnsigned)
|
|
|
|
zextOrTrunc(width);
|
|
|
|
else
|
|
|
|
sextOrTrunc(width);
|
|
|
|
return *this;
|
|
|
|
}
|
2009-01-09 20:25:42 +01:00
|
|
|
|
2007-04-05 07:20:11 +02: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 09:06:21 +02:00
|
|
|
APSInt operator%(const APSInt &RHS) const {
|
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
2008-01-24 19:59:52 +01:00
|
|
|
return IsUnsigned ? APSInt(urem(RHS), true) : APSInt(srem(RHS), false);
|
2007-04-10 09:06:21 +02:00
|
|
|
}
|
|
|
|
APSInt operator/(const APSInt &RHS) const {
|
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
2008-01-24 19:59:52 +01:00
|
|
|
return IsUnsigned ? APSInt(udiv(RHS), true) : APSInt(sdiv(RHS), false);
|
2007-04-10 09:06:21 +02:00
|
|
|
}
|
2009-01-09 20:25:42 +01:00
|
|
|
|
2008-01-24 19:59:52 +01:00
|
|
|
APSInt operator>>(unsigned Amt) const {
|
|
|
|
return IsUnsigned ? APSInt(lshr(Amt), true) : APSInt(ashr(Amt), false);
|
2007-04-05 07:20:11 +02:00
|
|
|
}
|
2008-01-24 19:59:52 +01:00
|
|
|
APSInt& operator>>=(unsigned Amt) {
|
|
|
|
*this = *this >> Amt;
|
2007-08-02 08:00:13 +02:00
|
|
|
return *this;
|
|
|
|
}
|
2009-01-09 20:25:42 +01:00
|
|
|
|
2007-04-05 07:20:11 +02: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);
|
|
|
|
}
|
2009-01-09 20:25:42 +01:00
|
|
|
|
2008-01-24 19:59:52 +01:00
|
|
|
// The remaining operators just wrap the logic of APInt, but retain the
|
|
|
|
// signedness information.
|
2009-01-09 20:25:42 +01:00
|
|
|
|
2008-02-08 08:14:19 +01:00
|
|
|
APSInt operator<<(unsigned Bits) const {
|
|
|
|
return APSInt(static_cast<const APInt&>(*this) << Bits, IsUnsigned);
|
2009-01-09 20:25:42 +01:00
|
|
|
}
|
2008-01-24 19:59:52 +01:00
|
|
|
APSInt& operator<<=(unsigned Amt) {
|
|
|
|
*this = *this << Amt;
|
|
|
|
return *this;
|
|
|
|
}
|
2009-01-09 20:25:42 +01:00
|
|
|
|
2008-01-24 19:59:52 +01:00
|
|
|
APSInt& operator++() {
|
|
|
|
static_cast<APInt&>(*this)++;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
APSInt& operator--() {
|
2009-02-16 23:39:08 +01:00
|
|
|
static_cast<APInt&>(*this)--;
|
2008-01-24 19:59:52 +01: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 20:25:42 +01:00
|
|
|
}
|
2008-01-24 19:59:52 +01:00
|
|
|
APSInt operator-() const {
|
|
|
|
return APSInt(-static_cast<const APInt&>(*this), IsUnsigned);
|
2009-01-09 20:25:42 +01:00
|
|
|
}
|
2008-01-24 19:59:52 +01:00
|
|
|
APSInt& operator+=(const APSInt& RHS) {
|
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
|
|
|
static_cast<APInt&>(*this) += RHS;
|
|
|
|
return *this;
|
2009-01-09 20:25:42 +01:00
|
|
|
}
|
2008-01-24 19:59:52 +01:00
|
|
|
APSInt& operator-=(const APSInt& RHS) {
|
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
|
|
|
static_cast<APInt&>(*this) -= RHS;
|
|
|
|
return *this;
|
2009-01-09 20:25:42 +01:00
|
|
|
}
|
2008-01-24 19:59:52 +01: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 20:25:42 +01:00
|
|
|
APSInt operator&(const APSInt& RHS) const {
|
2008-01-24 19:59:52 +01:00
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
|
|
|
return APSInt(static_cast<const APInt&>(*this) & RHS, IsUnsigned);
|
|
|
|
}
|
|
|
|
APSInt And(const APSInt& RHS) const {
|
|
|
|
return this->operator&(RHS);
|
|
|
|
}
|
2009-01-09 20:25:42 +01:00
|
|
|
|
|
|
|
APSInt operator|(const APSInt& RHS) const {
|
2008-01-24 19:59:52 +01:00
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
|
|
|
return APSInt(static_cast<const APInt&>(*this) | RHS, IsUnsigned);
|
|
|
|
}
|
|
|
|
APSInt Or(const APSInt& RHS) const {
|
|
|
|
return this->operator|(RHS);
|
|
|
|
}
|
2009-01-09 20:25:42 +01:00
|
|
|
|
|
|
|
|
|
|
|
APSInt operator^(const APSInt& RHS) const {
|
2008-01-24 19:59:52 +01:00
|
|
|
assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
|
|
|
|
return APSInt(static_cast<const APInt&>(*this) ^ RHS, IsUnsigned);
|
|
|
|
}
|
|
|
|
APSInt Xor(const APSInt& RHS) const {
|
|
|
|
return this->operator^(RHS);
|
2009-01-09 20:25:42 +01:00
|
|
|
}
|
|
|
|
|
2008-01-24 19:59:52 +01: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 20:25:42 +01:00
|
|
|
APSInt operator+(const APSInt& RHS) const {
|
2008-01-24 19:59:52 +01: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 20:25:42 +01:00
|
|
|
APSInt operator~() const {
|
2008-01-24 19:59:52 +01:00
|
|
|
return APSInt(~static_cast<const APInt&>(*this), IsUnsigned);
|
|
|
|
}
|
2009-01-09 20:25:42 +01:00
|
|
|
|
2008-09-19 20:01:14 +02:00
|
|
|
/// getMaxValue - Return the APSInt representing the maximum integer value
|
|
|
|
/// with the given bit width and signedness.
|
2009-01-30 02:58:19 +01:00
|
|
|
static APSInt getMaxValue(uint32_t numBits, bool Unsigned) {
|
|
|
|
return APSInt(Unsigned ? APInt::getMaxValue(numBits)
|
|
|
|
: APInt::getSignedMaxValue(numBits), Unsigned);
|
2008-09-19 20:01:14 +02:00
|
|
|
}
|
2009-01-09 20:25:42 +01:00
|
|
|
|
2008-09-19 20:01:14 +02:00
|
|
|
/// getMinValue - Return the APSInt representing the minimum integer value
|
|
|
|
/// with the given bit width and signedness.
|
2009-01-30 02:58:19 +01:00
|
|
|
static APSInt getMinValue(uint32_t numBits, bool Unsigned) {
|
|
|
|
return APSInt(Unsigned ? APInt::getMinValue(numBits)
|
|
|
|
: APInt::getSignedMinValue(numBits), Unsigned);
|
2008-09-19 20:01:14 +02:00
|
|
|
}
|
2009-01-09 20:25:42 +01:00
|
|
|
|
2008-01-19 05:31:12 +01:00
|
|
|
/// Profile - Used to insert APSInt objects, or objects that contain APSInt
|
|
|
|
/// objects, into FoldingSets.
|
|
|
|
void Profile(FoldingSetNodeID& ID) const;
|
2007-04-05 07:20:11 +02:00
|
|
|
};
|
2009-01-09 20:25:42 +01:00
|
|
|
|
2008-08-24 00:23:09 +02:00
|
|
|
inline raw_ostream &operator<<(raw_ostream &OS, const APSInt &I) {
|
2008-08-17 09:19:36 +02:00
|
|
|
I.print(OS, I.isSigned());
|
|
|
|
return OS;
|
|
|
|
}
|
2009-01-09 20:25:42 +01:00
|
|
|
|
|
|
|
|
2007-04-05 07:20:11 +02:00
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|