summaryrefslogtreecommitdiff
path: root/release_23/include/llvm/ADT/APSInt.h
diff options
context:
space:
mode:
Diffstat (limited to 'release_23/include/llvm/ADT/APSInt.h')
-rw-r--r--release_23/include/llvm/ADT/APSInt.h237
1 files changed, 0 insertions, 237 deletions
diff --git a/release_23/include/llvm/ADT/APSInt.h b/release_23/include/llvm/ADT/APSInt.h
deleted file mode 100644
index 705585c8a0c9..000000000000
--- a/release_23/include/llvm/ADT/APSInt.h
+++ /dev/null
@@ -1,237 +0,0 @@
-//===-- llvm/ADT/APSInt.h - Arbitrary Precision Signed Int -----*- C++ -*--===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// 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 {
-
-
-class APSInt : public APInt {
- bool IsUnsigned;
-public:
- /// APSInt ctor - Create an APSInt with the specified width, default to
- /// unsigned.
- explicit APSInt(uint32_t BitWidth, bool isUnsigned = true)
- : APInt(BitWidth, 0), IsUnsigned(isUnsigned) {}
-
- explicit APSInt(const APInt &I, bool isUnsigned = true)
- : APInt(I), IsUnsigned(isUnsigned) {}
-
- APSInt &operator=(const APSInt &RHS) {
- APInt::operator=(RHS);
- IsUnsigned = RHS.IsUnsigned;
- return *this;
- }
-
- APSInt &operator=(const APInt &RHS) {
- // Retain our current sign.
- APInt::operator=(RHS);
- return *this;
- }
-
- APSInt &operator=(uint64_t RHS) {
- // Retain our current sign.
- APInt::operator=(RHS);
- return *this;
- }
-
- // Query sign information.
- bool isSigned() const { return !IsUnsigned; }
- bool isUnsigned() const { return IsUnsigned; }
- void setIsUnsigned(bool Val) { IsUnsigned = Val; }
- void setIsSigned(bool Val) { IsUnsigned = !Val; }
-
- /// This is used internally to convert an APInt to a string.
- /// @brief Converts an APInt to a std::string
- std::string toString(uint8_t Radix = 10) const {
- return APInt::toString(Radix, isSigned());
- }
-
- APSInt& extend(uint32_t width) {
- if (IsUnsigned)
- zext(width);
- else
- sext(width);
- return *this;
- }
-
- APSInt& extOrTrunc(uint32_t width) {
- if (IsUnsigned)
- zextOrTrunc(width);
- else
- sextOrTrunc(width);
- return *this;
- }
-
- 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;
- }
- APSInt operator%(const APSInt &RHS) const {
- assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
- return IsUnsigned ? APSInt(urem(RHS), true) : APSInt(srem(RHS), false);
- }
- APSInt operator/(const APSInt &RHS) const {
- assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
- return IsUnsigned ? APSInt(udiv(RHS), true) : APSInt(sdiv(RHS), false);
- }
-
- APSInt operator>>(unsigned Amt) const {
- return IsUnsigned ? APSInt(lshr(Amt), true) : APSInt(ashr(Amt), false);
- }
- APSInt& operator>>=(unsigned Amt) {
- *this = *this >> Amt;
- return *this;
- }
-
- 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);
- }
-
- // The remaining operators just wrap the logic of APInt, but retain the
- // signedness information.
-
- APSInt operator<<(unsigned Bits) const {
- return APSInt(static_cast<const APInt&>(*this) << Bits, IsUnsigned);
- }
- APSInt& operator<<=(unsigned Amt) {
- *this = *this << Amt;
- return *this;
- }
-
- APSInt& operator++() {
- static_cast<APInt&>(*this)++;
- return *this;
- }
- APSInt& operator--() {
- static_cast<APInt&>(*this)++;
- return *this;
- }
- APSInt operator++(int) {
- return APSInt(++static_cast<APInt&>(*this), IsUnsigned);
- }
- APSInt operator--(int) {
- return APSInt(--static_cast<APInt&>(*this), IsUnsigned);
- }
- APSInt operator-() const {
- return APSInt(-static_cast<const APInt&>(*this), IsUnsigned);
- }
- 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;
- }
- 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) const {
- 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);
- }
-
- APSInt operator|(const APSInt& RHS) const {
- 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);
- }
-
-
- APSInt operator^(const APSInt& RHS) const {
- 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);
- }
-
- APSInt operator*(const APSInt& RHS) const {
- 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);
- }
- APSInt operator-(const APSInt& RHS) const {
- assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
- return APSInt(static_cast<const APInt&>(*this) - RHS, IsUnsigned);
- }
- APSInt operator~() const {
- return APSInt(~static_cast<const APInt&>(*this), IsUnsigned);
- }
-
- /// Profile - Used to insert APSInt objects, or objects that contain APSInt
- /// objects, into FoldingSets.
- void Profile(FoldingSetNodeID& ID) const;
-};
-
-} // end namespace llvm
-
-#endif